diff --git a/backend/app/__pycache__/config.cpython-313.pyc b/backend/app/__pycache__/config.cpython-313.pyc
index e324ee29..380c82ca 100644
Binary files a/backend/app/__pycache__/config.cpython-313.pyc and b/backend/app/__pycache__/config.cpython-313.pyc differ
diff --git a/backend/app/analysis/__pycache__/intraday.cpython-313.pyc b/backend/app/analysis/__pycache__/intraday.cpython-313.pyc
index 4b6315a5..144650cf 100644
Binary files a/backend/app/analysis/__pycache__/intraday.cpython-313.pyc and b/backend/app/analysis/__pycache__/intraday.cpython-313.pyc differ
diff --git a/backend/app/analysis/__pycache__/sector_scanner.cpython-313.pyc b/backend/app/analysis/__pycache__/sector_scanner.cpython-313.pyc
index 90cc2a8f..e63adc7b 100644
Binary files a/backend/app/analysis/__pycache__/sector_scanner.cpython-313.pyc and b/backend/app/analysis/__pycache__/sector_scanner.cpython-313.pyc differ
diff --git a/backend/app/analysis/__pycache__/technical.cpython-313.pyc b/backend/app/analysis/__pycache__/technical.cpython-313.pyc
index 6b5efb55..a20ce5b3 100644
Binary files a/backend/app/analysis/__pycache__/technical.cpython-313.pyc and b/backend/app/analysis/__pycache__/technical.cpython-313.pyc differ
diff --git a/backend/app/analysis/breakout_signals.py b/backend/app/analysis/breakout_signals.py
new file mode 100644
index 00000000..69504999
--- /dev/null
+++ b/backend/app/analysis/breakout_signals.py
@@ -0,0 +1,648 @@
+"""趋势突破入场信号分类 + 供需分析 + 趋势评分
+
+三种入场信号类型:
+- 突破型 (breakout): 放量突破 20 日阻力位
+- 回踩型 (pullback): 上升趋势中缩量回踩均线支撑
+- 启动型 (launch): 高位缩量整理后即将变盘
+"""
+
+import logging
+from enum import Enum
+
+import numpy as np
+import pandas as pd
+
+from app.config import settings
+
+logger = logging.getLogger(__name__)
+
+
+class EntrySignal(str, Enum):
+ BREAKOUT = "breakout"
+ PULLBACK = "pullback"
+ LAUNCH = "launch"
+ NONE = "none"
+
+
+# ── 入场信号检测 ──
+
+
+def classify_entry_signal(df: pd.DataFrame) -> dict:
+ """分类入场信号类型
+
+ 优先级: breakout > pullback > launch
+
+ Returns:
+ {
+ "signal_type": EntrySignal,
+ "signal_score": float (0-100),
+ "details": dict, # 信号相关详情
+ }
+ """
+ if df is None or len(df) < 30:
+ return {"signal_type": EntrySignal.NONE, "signal_score": 0, "details": {}}
+
+ # 优先检测突破型(最符合 1-5 天操作窗口)
+ result = detect_breakout(df)
+ if result:
+ result["signal_score"] = _score_breakout(df, result)
+ return result
+
+ # 回踩型(风险收益比最好)
+ result = detect_pullback(df)
+ if result:
+ result["signal_score"] = _score_pullback(df, result)
+ return result
+
+ # 启动型(需要耐心等待)
+ result = detect_launch(df)
+ if result:
+ result["signal_score"] = _score_launch(df, result)
+ return result
+
+ return {"signal_type": EntrySignal.NONE, "signal_score": 0, "details": {}}
+
+
+def detect_breakout(df: pd.DataFrame) -> dict | None:
+ """突破型检测
+
+ 条件(全部满足):
+ 1. 价格突破 20 日阻力位
+ 2. 量能放大 (vol > vol_ma5 * 1.5)
+ 3. 短期均线多头 (MA5 > MA10 > MA20)
+ 4. 收盘偏强 (close 在当日区间上半部分)
+ """
+ last = df.iloc[-1]
+
+ # 必需指标列
+ required = ["close", "high", "low", "vol", "ma5", "ma10", "ma20", "vol_ma5"]
+ if any(c not in df.columns for c in required):
+ return None
+ if pd.isna(last["vol_ma5"]) or last["vol_ma5"] == 0:
+ return None
+
+ # 1. 突破 20 日阻力(允许距阻力位 1% 以内,贴近即视为突破前兆)
+ if len(df) < 22:
+ return None
+ resist_20d = df["high"].iloc[-21:-1].max()
+ if last["close"] < resist_20d * 0.99:
+ return None
+
+ # 2. 量能放大
+ min_vol_ratio = getattr(settings, "breakout_min_volume_ratio", 1.2)
+ if last["vol"] <= last["vol_ma5"] * min_vol_ratio:
+ return None
+
+ # 3. 短期均线偏多(MA5 > MA20 即可,不要求三线完美排列)
+ if not (last["ma5"] > last["ma20"]):
+ return None
+
+ # 4. 收盘偏强(不低于当日中点)
+ day_range = last["high"] - last["low"]
+ if day_range > 0 and (last["close"] - last["low"]) / day_range < 0.5:
+ return None
+
+ breakout_pct = (last["close"] - resist_20d) / resist_20d * 100
+
+ return {
+ "signal_type": EntrySignal.BREAKOUT,
+ "details": {
+ "resist_level": round(resist_20d, 2),
+ "breakout_pct": round(breakout_pct, 2),
+ "volume_ratio": round(last["vol"] / last["vol_ma5"], 2),
+ },
+ }
+
+
+def detect_pullback(df: pd.DataFrame) -> dict | None:
+ """回踩型检测
+
+ 条件(全部满足):
+ 1. MA20 > MA60 — 中长期上升趋势
+ 2. 近 5 日内有 MA5 > MA20 — 近期处于上升趋势
+ 3. 价格靠近 MA10 或 MA20 (<2%)
+ 4. 缩量回调 (近 3 日均量 < 前 5 日均量 * 0.7)
+ 5. RSI 40-65
+ """
+ last = df.iloc[-1]
+
+ required = ["close", "vol", "ma5", "ma10", "ma20", "ma60", "rsi14"]
+ if any(c not in df.columns for c in required):
+ return None
+ if pd.isna(last["ma60"]) or pd.isna(last["rsi14"]):
+ return None
+
+ # 1. 中长期上升趋势
+ if not (last["ma20"] > last["ma60"]):
+ return None
+
+ # 2. 近 5 日内有 MA5 > MA20
+ recent_5 = df.tail(5)
+ has_uptrend = any(
+ row["ma5"] > row["ma20"]
+ for _, row in recent_5.iterrows()
+ if not pd.isna(row["ma5"]) and not pd.isna(row["ma20"])
+ )
+ if not has_uptrend:
+ return None
+
+ # 3. 价格靠近 MA10 或 MA20(放宽至 4%)
+ near_ma10 = (
+ not pd.isna(last["ma10"])
+ and last["ma10"] > 0
+ and abs(last["close"] - last["ma10"]) / last["ma10"] < 0.04
+ )
+ near_ma20 = (
+ not pd.isna(last["ma20"])
+ and last["ma20"] > 0
+ and abs(last["close"] - last["ma20"]) / last["ma20"] < 0.04
+ )
+ if not (near_ma10 or near_ma20):
+ return None
+
+ # 4. 缩量回调(放宽至 0.85)
+ if len(df) < 8:
+ return None
+ recent_3_vol = df["vol"].tail(3).mean()
+ prev_5_vol = df["vol"].iloc[-8:-3].mean()
+ if prev_5_vol == 0:
+ return None
+ shrink_ratio = recent_3_vol / prev_5_vol
+ max_shrink = getattr(settings, "pullback_max_shrink_ratio", 0.85)
+ if shrink_ratio >= max_shrink:
+ return None
+
+ # 5. RSI 范围(放宽至 35-70)
+ if not (35 <= last["rsi14"] <= 70):
+ return None
+
+ support_ma = "MA10" if near_ma10 else "MA20"
+ support_price = last["ma10"] if near_ma10 else last["ma20"]
+
+ return {
+ "signal_type": EntrySignal.PULLBACK,
+ "details": {
+ "support_ma": support_ma,
+ "support_price": round(support_price, 2),
+ "volume_shrink_ratio": round(shrink_ratio, 2),
+ },
+ }
+
+
+def detect_launch(df: pd.DataFrame) -> dict | None:
+ """启动型检测(高位缩量整理后即将变盘)
+
+ 条件(全部满足):
+ 1. close > MA60 且距 20 日高点 < 5%
+ 2. 近 10 日振幅 < 5%,每日涨跌幅 < 3%
+ 3. 近 5 日均量 < 前 5 日均量 * 0.6
+ 4. MA5 > MA20(多头格局未破)
+ 5. 布林带宽收窄
+ 6. DIF > 0
+ """
+ last = df.iloc[-1]
+
+ required = ["close", "high", "vol", "pct_chg", "ma5", "ma20", "ma60",
+ "dif", "boll_bw"]
+ if any(c not in df.columns for c in required):
+ return None
+ if pd.isna(last["ma60"]) or pd.isna(last["dif"]) or pd.isna(last["boll_bw"]):
+ return None
+
+ # 1. 高位
+ if last["close"] < last["ma60"]:
+ return None
+ high_20d = df["high"].tail(20).max()
+ if (high_20d - last["close"]) / high_20d > 0.05:
+ return None
+
+ # 2. 窄幅整理(放宽振幅至 8%,每日涨跌幅至 4%)
+ if len(df) < 10:
+ return None
+ recent = df.tail(10)
+ close_range = (recent["close"].max() - recent["close"].min()) / recent["close"].min()
+ max_range = getattr(settings, "consolidation_max_range_pct", 8.0) / 100
+ if close_range > max_range:
+ return None
+ if any(abs(row["pct_chg"]) > 4 for _, row in recent.iterrows() if not pd.isna(row.get("pct_chg"))):
+ return None
+
+ # 3. 缩量(放宽至 0.75)
+ if len(df) < 15:
+ return None
+ recent_5_vol = df["vol"].tail(5).mean()
+ earlier_5_vol = df["vol"].iloc[-15:-10].mean()
+ if earlier_5_vol == 0:
+ return None
+ vol_ratio = recent_5_vol / earlier_5_vol
+ if vol_ratio >= 0.75:
+ return None
+
+ # 4. 多头格局未破
+ if last["ma5"] <= last["ma20"]:
+ return None
+
+ # 5-6. 布林收窄 + MACD 零轴上方(软条件,不满足不淘汰)
+ boll_narrowing = False
+ dif_positive = False
+
+ if len(df) >= 20 and not pd.isna(last["boll_bw"]):
+ bw_10d_ago = df.iloc[-10]["boll_bw"]
+ if not pd.isna(bw_10d_ago) and last["boll_bw"] < bw_10d_ago:
+ boll_narrowing = True
+
+ if not pd.isna(last["dif"]) and last["dif"] > 0:
+ dif_positive = True
+
+ return {
+ "signal_type": EntrySignal.LAUNCH,
+ "details": {
+ "consolidation_days": 10,
+ "volume_shrink_ratio": round(vol_ratio, 2),
+ "price_range_pct": round(close_range * 100, 2),
+ "resist_level": round(high_20d, 2),
+ "boll_narrowing": boll_narrowing,
+ "dif_positive": dif_positive,
+ },
+ }
+
+
+# ── 信号质量评分 ──
+
+
+def _score_breakout(df: pd.DataFrame, signal: dict) -> float:
+ """突破型信号质量评分 (0-100)"""
+ last = df.iloc[-1]
+ score = 0
+
+ # 突破力度 (25)
+ breakout_pct = signal["details"].get("breakout_pct", 0)
+ if breakout_pct > 3:
+ score += 25
+ elif breakout_pct > 1.5:
+ score += 18
+ elif breakout_pct > 0.5:
+ score += 10
+
+ # 量能放大程度 (25)
+ vol_ratio = signal["details"].get("volume_ratio", 1)
+ if vol_ratio > 2.5:
+ score += 25
+ elif vol_ratio > 2.0:
+ score += 20
+ elif vol_ratio > 1.5:
+ score += 12
+
+ # 均线完整性 (25)
+ if all(c in df.columns for c in ["ma60"]):
+ if not pd.isna(last["ma60"]) and last["ma5"] > last["ma10"] > last["ma20"] > last["ma60"]:
+ score += 25
+ elif last["ma5"] > last["ma10"] > last["ma20"]:
+ score += 15
+ else:
+ score += 10
+
+ # MACD 状态 (15)
+ if all(c in df.columns for c in ["dif", "dea"]):
+ if not pd.isna(last["dif"]) and last["dif"] > last["dea"] and last["dif"] > 0:
+ score += 15
+ elif not pd.isna(last["dif"]) and last["dif"] > last["dea"]:
+ score += 8
+
+ # RSI 区间 (10)
+ if "rsi14" in df.columns and not pd.isna(last["rsi14"]):
+ if 50 <= last["rsi14"] <= 75:
+ score += 10
+ elif 45 <= last["rsi14"] <= 80:
+ score += 5
+
+ return min(score, 100)
+
+
+def _score_pullback(df: pd.DataFrame, signal: dict) -> float:
+ """回踩型信号质量评分 (0-100)"""
+ last = df.iloc[-1]
+ score = 0
+
+ # 缩量程度 (30)
+ shrink = signal["details"].get("volume_shrink_ratio", 1)
+ if shrink < 0.4:
+ score += 30
+ elif shrink < 0.5:
+ score += 22
+ elif shrink < 0.6:
+ score += 15
+
+ # 支撑有效性 (25)
+ support_ma = signal["details"].get("support_ma", "")
+ if support_ma == "MA20":
+ score += 25 # MA20 支撑更强
+ elif support_ma == "MA10":
+ score += 15
+
+ # 均线多头 (25)
+ if all(c in df.columns for c in ["ma60"]):
+ if not pd.isna(last["ma60"]) and last["ma5"] > last["ma10"] > last["ma20"] > last["ma60"]:
+ score += 25
+ elif last["ma5"] > last["ma10"] > last["ma20"]:
+ score += 15
+
+ # MACD 状态 (10)
+ if all(c in df.columns for c in ["dif", "dea"]):
+ if not pd.isna(last["dif"]) and last["dif"] > 0:
+ score += 10
+ elif not pd.isna(last["dif"]) and last["dif"] > last["dea"]:
+ score += 5
+
+ # RSI (10)
+ if "rsi14" in df.columns and not pd.isna(last["rsi14"]):
+ if 45 <= last["rsi14"] <= 60:
+ score += 10
+ elif 40 <= last["rsi14"] <= 65:
+ score += 5
+
+ return min(score, 100)
+
+
+def _score_launch(df: pd.DataFrame, signal: dict) -> float:
+ """启动型信号质量评分 (0-100)"""
+ last = df.iloc[-1]
+ score = 0
+ details = signal.get("details", {})
+
+ # 整理充分度 (25) — 振幅越小越好
+ range_pct = details.get("price_range_pct", 10)
+ if range_pct < 2:
+ score += 25
+ elif range_pct < 4:
+ score += 18
+ elif range_pct < 8:
+ score += 10
+
+ # 缩量程度 (25)
+ shrink = details.get("volume_shrink_ratio", 1)
+ if shrink < 0.3:
+ score += 25
+ elif shrink < 0.5:
+ score += 18
+ elif shrink < 0.75:
+ score += 10
+
+ # 均线保持 (20)
+ if all(c in df.columns for c in ["ma60"]):
+ if not pd.isna(last["ma60"]) and last["ma5"] > last["ma20"] > last["ma60"]:
+ score += 20
+ elif last["ma5"] > last["ma20"]:
+ score += 10
+
+ # 布林收窄 (15) — 软条件,满足加分
+ if details.get("boll_narrowing"):
+ if "boll_bw" in df.columns and len(df) >= 20:
+ bw_now = last["boll_bw"]
+ bw_10d = df.iloc[-10]["boll_bw"]
+ if not pd.isna(bw_10d) and bw_now > 0:
+ narrowing = (bw_10d - bw_now) / bw_10d * 100
+ if narrowing > 30:
+ score += 15
+ elif narrowing > 15:
+ score += 10
+ else:
+ score += 5
+
+ # MACD (15) — 软条件,满足加分
+ if details.get("dif_positive"):
+ score += 15
+ elif all(c in df.columns for c in ["dif"]) and not pd.isna(last.get("dif")):
+ score += 5
+
+ return min(score, 100)
+
+
+# ── 趋势 & 时机评分 ──
+
+
+def score_trend_timing(df: pd.DataFrame, entry_signal: dict) -> float:
+ """趋势&时机评分 (0-100)
+
+ 维度:
+ - MA 排列 (25)
+ - MA20 方向 (10)
+ - 更高高点形态 (15)
+ - 入场信号质量 (50)
+ """
+ last = df.iloc[-1]
+ score = 0
+
+ # MA 排列 (25)
+ ma_cols = [c for c in ["ma5", "ma10", "ma20", "ma60"] if c in df.columns]
+ if len(ma_cols) >= 4 and not any(pd.isna(last[c]) for c in ma_cols):
+ if last["ma5"] > last["ma10"] > last["ma20"] > last["ma60"]:
+ score += 25
+ elif last["ma5"] > last["ma10"] > last["ma20"]:
+ score += 18
+ elif last["ma5"] > last["ma20"]:
+ score += 10
+
+ # MA20 方向 (10)
+ if "ma20" in df.columns and len(df) >= 3:
+ if not pd.isna(last["ma20"]) and not pd.isna(df.iloc[-3]["ma20"]):
+ if last["ma20"] > df.iloc[-3]["ma20"]:
+ score += 10
+
+ # 更高高点形态 (15)
+ if _check_higher_highs(df):
+ score += 15
+
+ # 入场信号质量 (50)
+ signal_score = entry_signal.get("signal_score", 0)
+ score += signal_score * 0.5
+
+ return min(score, 100)
+
+
+# ── 供需分析评分 ──
+
+
+def score_supply_demand(df: pd.DataFrame) -> float:
+ """供需评分 (0-100)
+
+ 维度:
+ - 上涨日 vs 下跌日量比 (50): 需求主导度
+ - 量能收缩/扩张 (30): 供需变化趋势
+ - 量价配合 (20): 上涨放量+下跌缩量
+ """
+ score = 0
+
+ if len(df) < 10:
+ return 50.0
+
+ recent = df.tail(10)
+ last = df.iloc[-1]
+
+ # 上涨日 vs 下跌日量比 (50)
+ up_days = recent[recent["pct_chg"] > 0]
+ down_days = recent[recent["pct_chg"] <= 0]
+
+ if len(up_days) > 0 and len(down_days) > 0:
+ avg_up_vol = up_days["vol"].mean()
+ avg_down_vol = down_days["vol"].mean()
+ if avg_down_vol > 0:
+ ratio = avg_up_vol / avg_down_vol
+ if ratio > 2.0:
+ score += 50
+ elif ratio > 1.5:
+ score += 38
+ elif ratio > 1.2:
+ score += 25
+ elif ratio > 1.0:
+ score += 12
+ elif len(up_days) > 0:
+ score += 40 # 全部上涨日,需求强劲
+
+ # 量能收缩/扩张 (30)
+ vol_ma_col = "vol_ma10" if "vol_ma10" in df.columns else "vol_ma5"
+ if vol_ma_col in df.columns and not pd.isna(last[vol_ma_col]) and last[vol_ma_col] > 0:
+ recent_3_vol = recent["vol"].tail(3).mean()
+ shrink_ratio = recent_3_vol / last[vol_ma_col]
+
+ if shrink_ratio < 0.4:
+ score += 30 # 极度缩量,供应枯竭
+ elif shrink_ratio < 0.6:
+ score += 22
+ elif shrink_ratio < 0.8:
+ score += 12
+ elif shrink_ratio > 1.5:
+ score += 25 # 放量,需求进入
+ elif shrink_ratio > 1.2:
+ score += 15
+
+ # 量价配合 (20)
+ if _check_bullish_volume_divergence(df):
+ score += 20
+
+ return min(score, 100)
+
+
+def analyze_volume_pattern(df: pd.DataFrame) -> dict:
+ """量价模式分析
+
+ Returns:
+ {
+ "demand_supply_ratio": float, # 上涨日均量/下跌日均量
+ "volume_trend": str, # expanding/contracting/stable
+ "accumulation_score": float, # 0-100
+ }
+ """
+ default = {"demand_supply_ratio": 1.0, "volume_trend": "stable", "accumulation_score": 0}
+
+ if len(df) < 10:
+ return default
+
+ recent = df.tail(10)
+
+ # 需求/供给比
+ up_days = recent[recent["pct_chg"] > 0]
+ down_days = recent[recent["pct_chg"] <= 0]
+ avg_up_vol = up_days["vol"].mean() if len(up_days) > 0 else 0
+ avg_down_vol = down_days["vol"].mean() if len(down_days) > 0 else 1
+ ratio = round(avg_up_vol / max(avg_down_vol, 1), 2)
+
+ # 量能趋势
+ if len(df) >= 10:
+ vol_5d_ago = df["vol"].iloc[-10:-5].mean()
+ vol_recent = df["vol"].tail(5).mean()
+ if vol_5d_ago > 0:
+ trend_ratio = vol_recent / vol_5d_ago
+ trend = "expanding" if trend_ratio > 1.2 else ("contracting" if trend_ratio < 0.8 else "stable")
+ else:
+ trend = "stable"
+ else:
+ trend = "stable"
+
+ # 累积评分
+ accumulation = 0
+ if ratio > 1.5:
+ accumulation += 40
+ if trend == "expanding" and df.iloc[-1]["pct_chg"] > 0:
+ accumulation += 30
+ if _check_volume_dry_up_before_rally(df):
+ accumulation += 30
+
+ return {
+ "demand_supply_ratio": ratio,
+ "volume_trend": trend,
+ "accumulation_score": accumulation,
+ }
+
+
+# ── 辅助函数 ──
+
+
+def _check_higher_highs(df: pd.DataFrame) -> bool:
+ """检查最近是否形成更高高点形态
+
+ 取近 20 日的局部高点,检查是否有上升趋势。
+ """
+ if len(df) < 20:
+ return False
+
+ recent = df.tail(20)
+ highs = recent["high"].values
+
+ # 简单检查:最近的高点是否比之前的高点更高
+ # 将 20 日分为两段,各取最高点
+ first_half_max = highs[:10].max()
+ second_half_max = highs[10:].max()
+
+ return second_half_max >= first_half_max
+
+
+def _check_bullish_volume_divergence(df: pd.DataFrame) -> bool:
+ """检查量价配合是否健康(上涨放量,下跌缩量)"""
+ if len(df) < 6:
+ return False
+
+ recent = df.tail(5)
+ up_days = recent[recent["pct_chg"] > 0]
+ down_days = recent[recent["pct_chg"] <= 0]
+
+ if len(up_days) == 0 or len(down_days) == 0:
+ return len(up_days) > len(down_days) # 主要是上涨日也算
+
+ avg_up_vol = up_days["vol"].mean()
+ avg_down_vol = down_days["vol"].mean()
+
+ return avg_up_vol > avg_down_vol
+
+
+def _check_volume_dry_up_before_rally(df: pd.DataFrame) -> bool:
+ """检查是否有缩量后放量的突破前奏
+
+ 经典突破模式:量能萎缩至极低,然后在突破日放量。
+ """
+ if len(df) < 15:
+ return False
+
+ last = df.iloc[-1]
+
+ # 检查近 5-10 日内是否有极度缩量日
+ vol_ma_col = "vol_ma10" if "vol_ma10" in df.columns else "vol_ma5"
+ if vol_ma_col not in df.columns:
+ return False
+
+ recent_10 = df.tail(10)
+ had_dry_up = any(
+ row["vol"] < row[vol_ma_col] * 0.5
+ for _, row in recent_10.iterrows()
+ if not pd.isna(row[vol_ma_col]) and row[vol_ma_col] > 0
+ )
+
+ # 且当日量能放大
+ vol_ma_col_5 = "vol_ma5" if "vol_ma5" in df.columns else vol_ma_col
+ vol_expanding = (
+ not pd.isna(last[vol_ma_col_5])
+ and last[vol_ma_col_5] > 0
+ and last["vol"] > last[vol_ma_col_5] * 1.2
+ )
+
+ return had_dry_up and vol_expanding
diff --git a/backend/app/analysis/intraday.py b/backend/app/analysis/intraday.py
index 919bdbd9..695476b9 100644
--- a/backend/app/analysis/intraday.py
+++ b/backend/app/analysis/intraday.py
@@ -266,3 +266,64 @@ def _score_intraday(quote: StockQuote) -> float:
score += 3
return score
+
+
+async def intraday_sector_scan(prev_sectors: list[SectorInfo]) -> list[SectorInfo]:
+ """盘中板块热度更新:用腾讯实时行情刷新板块涨幅和涨停数
+
+ 基于前一日的板块列表(来自 Tushare),用成分股的实时行情
+ 重新计算板块涨跌幅和涨停家数。
+ """
+ if not prev_sectors:
+ return prev_sectors
+
+ # 收集所有板块的成分股
+ sector_members: dict[str, list[str]] = {}
+ all_codes = set()
+ for sector in prev_sectors:
+ members = tushare_client.get_ths_members(sector.sector_code)
+ if members.empty or "con_code" not in members.columns:
+ continue
+ codes = [c for c in members["con_code"].tolist() if "." in str(c)]
+ sector_members[sector.sector_code] = codes
+ all_codes.update(codes)
+
+ if not all_codes:
+ return prev_sectors
+
+ # 批量获取实时行情
+ quotes = await tencent_client.get_realtime_quotes_batch(list(all_codes))
+ if not quotes:
+ return prev_sectors
+
+ # 构建涨停集合
+ limit_up_codes = set()
+ for code, q in quotes.items():
+ if q.limit_up and q.price >= q.limit_up * 0.995:
+ limit_up_codes.add(code)
+
+ # 更新每个板块的数据
+ for sector in prev_sectors:
+ codes = sector_members.get(sector.sector_code, [])
+ if not codes:
+ continue
+
+ sector_quotes = [quotes[c] for c in codes if c in quotes]
+ if not sector_quotes:
+ continue
+
+ # 实时涨跌幅(成分股均值)
+ pct_changes = [q.pct_chg for q in sector_quotes if q.pct_chg is not None]
+ if pct_changes:
+ sector.pct_change = round(sum(pct_changes) / len(pct_changes), 2)
+
+ # 实时涨停家数
+ sector.limit_up_count = len([c for c in codes if c in limit_up_codes])
+
+ logger.info(
+ f"盘中板块实时更新: {len(prev_sectors)} 个板块, "
+ f"涨幅最高={max(prev_sectors, key=lambda s: s.pct_change).sector_name} "
+ f"({max(s.pct_change for s in prev_sectors):.1f}%)"
+ )
+
+ return prev_sectors
diff --git a/backend/app/analysis/sector_scanner.py b/backend/app/analysis/sector_scanner.py
index a87c565d..8fbf47aa 100644
--- a/backend/app/analysis/sector_scanner.py
+++ b/backend/app/analysis/sector_scanner.py
@@ -1,11 +1,17 @@
"""板块热度扫描
综合板块涨幅、资金净流入、涨停家数、持续性,
-输出热门板块排名。
+输出热门板块排名及深度分析。
优化策略:先用板块资金流向批量数据预筛 Top 板块,
只对 Top 板块做逐个详细查询(ths_daily/ths_member),
避免遍历全部数百个板块导致大量 API 调用。
+
+增强分析:
+ - 领涨股:每个板块中涨幅前3的成分股
+ - 资金趋势:近5日板块资金净流入走势
+ - 涨跌趋势:近5日板块涨跌幅走势
+ - 主力资金占比
"""
import logging
@@ -37,7 +43,7 @@ def _normalize_score(values: list[float], reverse: bool = False) -> list[float]:
def scan_hot_sectors(trade_date: str = None) -> list[SectorInfo]:
- """扫描热门板块,返回按热度排名的板块列表"""
+ """扫描热门板块,返回按热度排名的板块列表(含深度分析)"""
if not trade_date:
trade_date = tushare_client.get_latest_trade_date()
@@ -54,18 +60,27 @@ def scan_hot_sectors(trade_date: str = None) -> list[SectorInfo]:
logger.info(f"板块资金流向预筛: {len(sector_mf)} 个板块 -> Top {len(top_codes)} 进入详细分析")
# 构建资金流向查找表
+ # Tushare moneyflow_ind_ths 的金额单位是亿元,统一转换为万元
+ _UNIT_CONV = 10000
mf_lookup = {}
+ # 同时构建主力买卖数据(用于计算主力占比)
+ mf_detail = {}
for _, row in sector_mf.iterrows():
- mf_lookup[row["ts_code"]] = float(row["net_amount"])
+ mf_lookup[row["ts_code"]] = float(row["net_amount"]) * _UNIT_CONV
+ mf_detail[row["ts_code"]] = {
+ "net_amount": float(row["net_amount"]) * _UNIT_CONV,
+ "buy_elg_amount": float(row.get("buy_elg_amount", 0)) * _UNIT_CONV if pd.notna(row.get("buy_elg_amount")) else 0,
+ "sell_elg_amount": float(row.get("sell_elg_amount", 0)) * _UNIT_CONV if pd.notna(row.get("sell_elg_amount")) else 0,
+ "buy_lg_amount": float(row.get("buy_lg_amount", 0)) * _UNIT_CONV if pd.notna(row.get("buy_lg_amount")) else 0,
+ "sell_lg_amount": float(row.get("sell_lg_amount", 0)) * _UNIT_CONV if pd.notna(row.get("sell_lg_amount")) else 0,
+ }
# 构建板块名称查找表
- # moneyflow_ind_ths 返回的是行业板块(881XXX.TI),自带 industry 列
name_lookup = {}
if "industry" in sector_mf.columns:
for _, r in sector_mf.iterrows():
if pd.notna(r.get("industry")):
name_lookup[r["ts_code"]] = str(r["industry"])
- # 补充:从 ths_index type=I(行业板块)获取名称
index_list = tushare_client.get_ths_index_list("I")
if not index_list.empty:
for _, r in index_list.iterrows():
@@ -75,22 +90,34 @@ def scan_hot_sectors(trade_date: str = None) -> list[SectorInfo]:
# ── 第二步:获取涨跌停列表(1 次 API 调用)──
limit_df = tushare_client.get_limit_list(trade_date)
limit_up_codes = set()
+ # 同时收集涨停股的涨跌幅信息(用于领涨股展示)
+ limit_up_info: dict[str, dict] = {}
if not limit_df.empty:
up_df = limit_df[limit_df["limit"] == "U"]
up_df = up_df[~up_df["name"].str.contains("ST", na=False)]
limit_up_codes = set(up_df["ts_code"].tolist())
+ for _, row in up_df.iterrows():
+ limit_up_info[row["ts_code"]] = {
+ "name": row["name"],
+ "pct_chg": float(row.get("pct_chg", 10)),
+ "limit_times": int(row.get("limit_times", 1)),
+ }
- # ── 第三步:只对 Top 板块做逐个详细查询 ──
+ # ── 第三步:获取全市场日线数据(用于领涨股计算)──
+ daily_all = tushare_client.get_daily_all(trade_date)
+ stock_basic = tushare_client.get_stock_basic()
+
+ # ── 第四步:只对 Top 板块做逐个详细查询 ──
sectors = []
for ts_code in top_codes:
- # 板块名称从 ths_index 查找表获取
sector_name = name_lookup.get(ts_code, ts_code)
- # 板块日线 - 获取近5日数据(1 次 API)
+ # 板块日线 - 获取近5日数据
ths_daily = tushare_client.get_ths_daily(ts_code, days=5)
pct_change = 0.0
days_continuous = 0
+ pct_trend: list[float] = []
if not ths_daily.empty:
ths_daily = ths_daily.sort_values("trade_date")
@@ -101,6 +128,9 @@ def scan_hot_sectors(trade_date: str = None) -> list[SectorInfo]:
today_data = ths_daily.tail(1)
pct_change = float(today_data["pct_change"].iloc[0]) if not today_data.empty else 0
+ # 近5日涨跌幅趋势
+ pct_trend = [round(float(d["pct_change"]), 2) for _, d in ths_daily.iterrows()]
+
# 连续上涨天数
for _, d in ths_daily.iloc[::-1].iterrows():
if d["pct_change"] > 0:
@@ -108,15 +138,75 @@ def scan_hot_sectors(trade_date: str = None) -> list[SectorInfo]:
else:
break
- # 板块资金净流入(从预筛数据中直接取)
+ # 板块资金净流入
capital_inflow = mf_lookup.get(ts_code, 0.0)
- # 板块内涨停家数(1 次 API)
+ # 主力资金占比 = (特大单净买 + 大单净买) / (特大单买卖总额 + 大单买卖总额)
+ main_force_ratio = 0.0
+ detail = mf_detail.get(ts_code, {})
+ total_main_amount = (detail.get("buy_elg_amount", 0) + detail.get("sell_elg_amount", 0) +
+ detail.get("buy_lg_amount", 0) + detail.get("sell_lg_amount", 0))
+ if total_main_amount > 0:
+ main_force_ratio = round(capital_inflow / total_main_amount * 100, 1)
+
+ # 板块成分股分析
limit_up_count = 0
+ leading_stocks: list[dict] = []
+ member_count = 0
+ turnover_avg = 0.0
+
members = tushare_client.get_ths_members(ts_code)
if not members.empty and "con_code" in members.columns:
- member_codes = set(members["con_code"].tolist())
- limit_up_count = len(limit_up_codes & member_codes)
+ member_codes = list(members["con_code"].tolist())
+ member_set = set(member_codes)
+ member_count = len(member_codes)
+ limit_up_count = len(limit_up_codes & member_set)
+
+ # 领涨股:从当日全市场日级数据中筛选该板块成分股,按涨幅排序取前3
+ if not daily_all.empty:
+ sector_daily = daily_all[daily_all["ts_code"].isin(member_set)].copy()
+ # 排除 ST
+ if not stock_basic.empty:
+ st_set = set(stock_basic[stock_basic["name"].str.contains("ST", na=False)]["ts_code"])
+ sector_daily = sector_daily[~sector_daily["ts_code"].isin(st_set)]
+
+ sector_daily = sector_daily.sort_values("pct_chg", ascending=False)
+ # 计算板块平均换手率
+ if "turnover_rate" in sector_daily.columns:
+ turnover_values = sector_daily["turnover_rate"].dropna()
+ if len(turnover_values) > 0:
+ turnover_avg = round(float(turnover_values.mean()), 2)
+
+ # 构建名称查找
+ name_map = {}
+ if not stock_basic.empty:
+ for _, br in stock_basic.iterrows():
+ name_map[br["ts_code"]] = br["name"]
+ if "con_name" in members.columns:
+ for _, m in members.iterrows():
+ if pd.notna(m.get("con_name")):
+ name_map[m["con_code"]] = m["con_name"]
+
+ # 取涨幅前3
+ for _, sr in sector_daily.head(3).iterrows():
+ leading_stocks.append({
+ "ts_code": sr["ts_code"],
+ "name": name_map.get(sr["ts_code"], sr["ts_code"]),
+ "pct_chg": round(float(sr["pct_chg"]), 2),
+ "amount": round(float(sr.get("amount", 0)), 0),
+ })
+
+ # 涨停股也在成分股中的,补充到领涨股(如未在top3中)
+ for code in (limit_up_codes & member_set):
+ if code not in [s["ts_code"] for s in leading_stocks]:
+ info = limit_up_info.get(code, {})
+ leading_stocks.append({
+ "ts_code": code,
+ "name": info.get("name", code),
+ "pct_chg": info.get("pct_chg", 10),
+ "amount": 0,
+ "limit_times": info.get("limit_times", 1),
+ })
sectors.append(SectorInfo(
sector_code=ts_code,
@@ -125,6 +215,11 @@ def scan_hot_sectors(trade_date: str = None) -> list[SectorInfo]:
capital_inflow=round(capital_inflow, 2),
limit_up_count=limit_up_count,
days_continuous=days_continuous,
+ member_count=member_count,
+ leading_stocks=leading_stocks,
+ pct_trend=pct_trend,
+ turnover_avg=turnover_avg,
+ main_force_ratio=main_force_ratio,
))
if not sectors:
@@ -133,13 +228,13 @@ def scan_hot_sectors(trade_date: str = None) -> list[SectorInfo]:
# ── 板块阶段判定 ──
for s in sectors:
if s.days_continuous <= 2:
- s.stage = "early" # 启动期,安全
+ s.stage = "early"
elif s.days_continuous == 3:
- s.stage = "mid" # 发展期,正常
+ s.stage = "mid"
elif s.days_continuous == 4:
- s.stage = "late" # 后期,谨慎
+ s.stage = "late"
else:
- s.stage = "end" # 尾声,高风险
+ s.stage = "end"
# ── 综合评分 ──
pct_scores = _normalize_score([s.pct_change for s in sectors])
@@ -154,20 +249,17 @@ def scan_hot_sectors(trade_date: str = None) -> list[SectorInfo]:
lim_scores[i] * 0.25 +
con_scores[i] * 0.20
)
- # 连续2日以上资金流入的板块加分
if s.days_continuous >= 2:
heat += 5
- # 首日大涨(昨日涨幅<=0,今日>3%)可视为新热点,加分
if s.days_continuous == 1 and s.pct_change > 3:
heat += 3
- # 板块阶段调整:早期加分,尾声减分(防追高)
if s.stage == "early":
- heat += 8 # 启动期,介入安全,大幅加分
+ heat += 8
elif s.stage == "late":
- heat -= 5 # 后期,风险上升
+ heat -= 5
elif s.stage == "end":
- heat -= 12 # 尾声,大幅减分
+ heat -= 12
s.heat_score = round(max(0, min(heat, 100)), 1)
@@ -175,7 +267,10 @@ def scan_hot_sectors(trade_date: str = None) -> list[SectorInfo]:
top = sectors[:settings.top_sector_count]
for s in top:
- logger.info(f"热门板块: {s.sector_name} 涨幅{s.pct_change}% 资金{s.capital_inflow}万 "
- f"涨停{s.limit_up_count} 连续{s.days_continuous}天 阶段={s.stage} 热度{s.heat_score}")
+ leaders = ", ".join(f'{l["name"]}({l["pct_chg"]}%)' for l in s.leading_stocks[:3])
+ inflow_display = f"{s.capital_inflow / 10000:.1f}亿" if s.capital_inflow >= 10000 else f"{s.capital_inflow:.0f}万"
+ logger.info(f"热门板块: {s.sector_name} 涨幅{s.pct_change}% 资金{inflow_display} "
+ f"涨停{s.limit_up_count} 连续{s.days_continuous}天 阶段={s.stage} 热度{s.heat_score} "
+ f"领涨=[{leaders}]")
return sectors
diff --git a/backend/app/analysis/technical.py b/backend/app/analysis/technical.py
index faa6b0a0..cebe987b 100644
--- a/backend/app/analysis/technical.py
+++ b/backend/app/analysis/technical.py
@@ -83,6 +83,7 @@ def add_all_indicators(df: pd.DataFrame) -> pd.DataFrame:
# 量均线
df["vol_ma5"] = calc_volume_ma(vol, 5)
df["vol_ma10"] = calc_volume_ma(vol, 10)
+ df["vol_ma20"] = calc_volume_ma(vol, 20)
# 涨跌幅(如果没有 pct_chg 列)
if "pct_chg" not in df.columns:
diff --git a/backend/app/analysis/trend_scanner.py b/backend/app/analysis/trend_scanner.py
new file mode 100644
index 00000000..ce0d7a5d
--- /dev/null
+++ b/backend/app/analysis/trend_scanner.py
@@ -0,0 +1,516 @@
+"""趋势突破三阶段扫描管道
+
+Phase 1: 全市场批量预筛 — get_daily_all × 5 天 + get_daily_basic → ~300 候选
+Phase 2: 资金流批量过滤 — get_moneyflow_batch → ~80 候选
+Phase 3: 逐股深度分析 — get_stock_daily(120d) + 入场信号 + 供需评分 → ~20 推荐
+"""
+
+import logging
+from datetime import datetime, timedelta
+
+import numpy as np
+import pandas as pd
+
+from app.config import settings
+from app.data.tushare_client import tushare_client
+from app.analysis.technical import add_all_indicators
+from app.analysis.breakout_signals import (
+ classify_entry_signal,
+ score_trend_timing,
+ score_supply_demand,
+ analyze_volume_pattern,
+ EntrySignal,
+)
+
+logger = logging.getLogger(__name__)
+
+
+async def scan_trend_breakout(
+ trade_date: str = None,
+ market_temp=None,
+ hot_sectors: list = None,
+ intraday: bool = False,
+) -> list[dict]:
+ """统一趋势突破扫描 — 三阶段管道
+
+ Returns:
+ list[dict] — 每个字典包含:
+ ts_code, name, sector, entry_signal_type, entry_signal_score,
+ trend_timing_score, supply_demand_score, capital_score,
+ main_net_inflow, inflow_ratio, turnover_rate, volume_ratio,
+ circ_mv, pe, pb, volume_trend, demand_supply_ratio
+ """
+ if not trade_date:
+ trade_date = tushare_client.get_latest_trade_date()
+
+ logger.info(f"=== 趋势突破扫描 (trade_date={trade_date}) ===")
+
+ # Phase 1: 批量预筛
+ candidates = _bulk_pre_filter(trade_date)
+ if candidates.empty:
+ logger.info("Phase 1 预筛无候选")
+ return []
+
+ logger.info(f"Phase 1 预筛: {len(candidates)} 只候选")
+
+ # Phase 2: 资金流过滤
+ candidates = _bulk_capital_filter(candidates, trade_date)
+ if candidates.empty:
+ logger.info("Phase 2 资金过滤后无候选")
+ return []
+
+ logger.info(f"Phase 2 资金过滤: {len(candidates)} 只候选")
+
+ # Phase 3: 逐股深度分析
+ results = await _deep_analysis(candidates, trade_date, market_temp, hot_sectors or [], intraday)
+
+ logger.info(f"Phase 3 深度分析: {len(results)} 只推荐")
+ return results
+
+
+def _bulk_pre_filter(trade_date: str) -> pd.DataFrame:
+ """Phase 1: 批量预筛
+
+ 利用 get_daily_all × 5 天构建迷你时序,用 5 日趋势初筛。
+ 合并 get_daily_basic 过滤市值/换手率。
+ 排除 ST 和次新股。
+ """
+ # 获取交易日历
+ dates = tushare_client.get_trade_dates()
+ if not dates:
+ logger.warning("Phase 1: 无法获取交易日历")
+ return pd.DataFrame()
+
+ # 取最近 5 个交易日(含当日)
+ recent_dates = dates[-5:] if len(dates) >= 5 else dates
+ if trade_date not in recent_dates:
+ recent_dates = recent_dates[-4:] + [trade_date] if len(recent_dates) >= 4 else [trade_date]
+
+ logger.info(f"Phase 1: 使用交易日 {recent_dates}")
+
+ # 获取多日全市场数据
+ daily_frames = []
+ for d in recent_dates:
+ df = tushare_client.get_daily_all(d)
+ if not df.empty:
+ daily_frames.append(df)
+ logger.debug(f"Phase 1: {d} 获取到 {len(df)} 只股票数据")
+ else:
+ logger.warning(f"Phase 1: {d} 无数据")
+
+ if len(daily_frames) < 2:
+ # 至少需要 2 天数据做趋势判断
+ if daily_frames:
+ logger.info("Phase 1: 仅有1天数据,跳过趋势筛选")
+ return _filter_daily_basic(daily_frames[0], trade_date)
+ logger.warning("Phase 1: 完全无数据")
+ return pd.DataFrame()
+
+ # 拼接多日数据
+ all_daily = pd.concat(daily_frames, ignore_index=True)
+ logger.info(f"Phase 1: 拼接后总记录数 {len(all_daily)}")
+
+ # 计算每只股票的 5 日趋势
+ stock_groups = all_daily.groupby("ts_code")
+
+ # 分步统计
+ total_stocks = len(stock_groups)
+ count_has_data = 0
+ count_main_board = 0
+ count_no_limit = 0
+ count_positive_return = 0
+ count_above_avg = 0
+ count_near_high = 0
+
+ trend_data = []
+ for ts_code, group in stock_groups:
+ if len(group) < 2:
+ continue
+ count_has_data += 1
+
+ group = group.sort_values("trade_date")
+ latest = group.iloc[-1]
+
+ # 排除非主板(只保留 00/30/60 开头)
+ code_prefix = ts_code[:2]
+ if code_prefix not in ("00", "30", "60"):
+ continue
+ count_main_board += 1
+
+ # 排除涨跌停
+ pct = latest["pct_chg"]
+ if pd.isna(pct) or abs(pct) > 9.5:
+ continue
+ count_no_limit += 1
+
+ # 5 日涨幅
+ first_close = group.iloc[0]["close"]
+ last_close = latest["close"]
+ if first_close <= 0:
+ continue
+ ret_5d = (last_close - first_close) / first_close * 100
+
+ # 条件:5 日涨幅 > -2%(允许小幅回调) 且 < 20%(未过热)
+ if ret_5d <= -2 or ret_5d >= 20:
+ continue
+ count_positive_return += 1
+
+ # 5 日均价
+ avg_close = group["close"].mean()
+ if avg_close <= 0:
+ continue
+
+ # 收盘价 >= 5 日均价 * 0.98(允许略低于均线)
+ if last_close < avg_close * 0.98:
+ continue
+ count_above_avg += 1
+
+ # 距 5 日高点 < 8%(放宽,不要求紧贴高点)
+ high_5d = group["high"].max()
+ if high_5d <= 0:
+ continue
+ dist_from_high = (high_5d - last_close) / high_5d * 100
+ if dist_from_high > 8:
+ continue
+ count_near_high += 1
+
+ trend_data.append({
+ "ts_code": ts_code,
+ "close": last_close,
+ "pct_chg_today": pct,
+ "return_5d": round(ret_5d, 2),
+ "dist_from_high_5d": round(dist_from_high, 2),
+ "vol_today": latest["vol"],
+ })
+
+ logger.info(
+ f"Phase 1 趋势筛选: "
+ f"总{total_stocks} → 有数据{count_has_data} → 主板{count_main_board} → "
+ f"非涨跌停{count_no_limit} → 5日涨幅>-2%{count_positive_return} → "
+ f"近均线{count_above_avg} → 近高点{count_near_high}"
+ )
+
+ if not trend_data:
+ return pd.DataFrame()
+
+ candidates = pd.DataFrame(trend_data)
+
+ # 合并 daily_basic 过滤(使用更宽松的换手率)
+ return _filter_daily_basic(candidates, trade_date)
+
+
+def _filter_daily_basic(candidates: pd.DataFrame, trade_date: str) -> pd.DataFrame:
+ """使用 daily_basic 过滤市值、换手率,排除 ST 和次新"""
+ basic = tushare_client.get_daily_basic(trade_date)
+ if basic.empty:
+ logger.warning("Phase 1: daily_basic 无数据")
+ return candidates
+
+ # 股票基本信息(排除 ST 和次新)
+ stock_basic = tushare_client.get_stock_basic()
+ exclude_codes = set()
+ if not stock_basic.empty:
+ # ST
+ st_codes = set(stock_basic[stock_basic["name"].str.contains("ST", na=False)]["ts_code"])
+ exclude_codes.update(st_codes)
+ # 次新
+ cutoff = (datetime.now() - timedelta(days=settings.min_list_days)).strftime("%Y%m%d")
+ new_codes = set(stock_basic[stock_basic["list_date"] > cutoff]["ts_code"])
+ exclude_codes.update(new_codes)
+
+ # Tushare circ_mv 单位是万元,转为亿元
+ basic["circ_mv"] = basic["circ_mv"] / 10000
+
+ # Phase 1 使用更宽松的换手率门槛(2%)以保留更多候选
+ min_tr = min(settings.min_turnover_rate, 2.0)
+ basic_filtered = basic[
+ (basic["circ_mv"] >= settings.min_circ_mv) &
+ (basic["circ_mv"] <= settings.max_circ_mv) &
+ (basic["turnover_rate"] >= min_tr) &
+ (basic["turnover_rate"] <= settings.max_turnover_rate) &
+ (~basic["ts_code"].isin(exclude_codes))
+ ].copy()
+
+ logger.info(
+ f"Phase 1 daily_basic: 全市场{len(basic)}只 → "
+ f"过滤后{len(basic_filtered)}只 "
+ f"(circ_mv {settings.min_circ_mv}-{settings.max_circ_mv}亿, "
+ f"turnover >={min_tr}%)"
+ )
+
+ if basic_filtered.empty:
+ return pd.DataFrame()
+
+ # 合并候选和 basic 数据
+ if "circ_mv" in candidates.columns:
+ merged = candidates
+ else:
+ # candidates 没有 basic 列,通过 ts_code 合并
+ basic_subset = basic_filtered[["ts_code", "turnover_rate", "volume_ratio",
+ "circ_mv", "pe", "pb"]].drop_duplicates("ts_code")
+ # 如果 candidates 有 ts_code 列
+ if "ts_code" in candidates.columns:
+ merged = candidates.merge(basic_subset, on="ts_code", how="inner")
+ else:
+ # candidates 是 get_daily_all 返回的原始 df
+ merged = basic_subset
+
+ logger.info(f"Phase 1 合并后: {len(merged)} 只候选")
+ return merged
+
+
+def _bulk_capital_filter(candidates: pd.DataFrame, trade_date: str) -> pd.DataFrame:
+ """Phase 2: 资金流批量过滤
+
+ 硬条件:主力净流入 > 0(特大单 + 大单净买为正)
+ """
+ mf = tushare_client.get_moneyflow_batch(trade_date)
+ if mf.empty:
+ return candidates
+
+ # 计算主力净流入 = (特大单买入-特大单卖出) + (大单买入-大单卖出)
+ mf["main_net_inflow"] = (
+ (mf["buy_elg_amount"] - mf["sell_elg_amount"]) +
+ (mf["buy_lg_amount"] - mf["sell_lg_amount"])
+ )
+
+ # 计算流入比例
+ total = (
+ mf["buy_elg_amount"] + mf["sell_elg_amount"] +
+ mf["buy_lg_amount"] + mf["sell_lg_amount"] +
+ mf["buy_md_amount"] + mf["sell_md_amount"] +
+ mf["buy_sm_amount"] + mf["sell_sm_amount"]
+ )
+ mf["inflow_ratio"] = mf["main_net_inflow"] / total.replace(0, np.nan) * 100
+ mf["inflow_ratio"] = mf["inflow_ratio"].fillna(0)
+
+ # 只保留主力净流入 > 0 的
+ mf_positive = mf[mf["main_net_inflow"] > 0][["ts_code", "main_net_inflow", "inflow_ratio"]]
+
+ # 合并候选
+ if "ts_code" in candidates.columns:
+ merged = candidates.merge(mf_positive, on="ts_code", how="inner")
+ else:
+ merged = mf_positive
+
+ # 按主力净流入排序,取 top 100
+ if not merged.empty:
+ merged = merged.sort_values("main_net_inflow", ascending=False).head(100)
+
+ return merged.reset_index(drop=True)
+
+
+async def _deep_analysis(
+ candidates: pd.DataFrame,
+ trade_date: str,
+ market_temp,
+ hot_sectors: list,
+ intraday: bool,
+) -> list[dict]:
+ """Phase 3: 逐股深度分析
+
+ 对每只候选获取 120 日 K 线,计算技术指标,
+ 分类入场信号,评分供需关系。
+ """
+ import asyncio
+ from app.analysis.signals import generate_signals
+ from app.analysis.capital_flow import _score_valuation
+
+ # 获取股票名称映射
+ stock_basic = tushare_client.get_stock_basic()
+ name_map = {}
+ industry_map = {}
+ if not stock_basic.empty:
+ for _, row in stock_basic.iterrows():
+ name_map[row["ts_code"]] = row["name"]
+ industry_map[row["ts_code"]] = row.get("industry", "")
+
+ # 获取多日资金流(用于资金持续性评分)
+ mf_history = _get_multi_day_moneyflow(candidates, trade_date)
+
+ results = []
+ total = len(candidates)
+ signal_counts = {"breakout": 0, "pullback": 0, "launch": 0, "none": 0}
+
+ for idx, row in candidates.iterrows():
+ ts_code = row["ts_code"] if "ts_code" in candidates.columns else ""
+
+ if not ts_code:
+ continue
+
+ name = name_map.get(ts_code, ts_code)
+ sector = industry_map.get(ts_code, "")
+
+ try:
+ # 获取 120 日 K 线
+ df = tushare_client.get_stock_daily(ts_code, 120)
+ if df.empty or len(df) < 30:
+ continue
+
+ # 添加技术指标
+ df = add_all_indicators(df)
+
+ # 入场信号分类
+ entry_signal = classify_entry_signal(df)
+ signal_type = entry_signal["signal_type"]
+ if signal_type == EntrySignal.NONE:
+ signal_counts["none"] += 1
+ continue
+ signal_counts[signal_type.value] += 1
+
+ # 趋势&时机评分
+ trend_score = score_trend_timing(df, entry_signal)
+
+ # 供需评分
+ sd_score = score_supply_demand(df)
+
+ # 量价模式分析
+ vol_pattern = analyze_volume_pattern(df)
+
+ # 技术信号(复用现有 generate_signals)
+ tech_signal = generate_signals(ts_code, name)
+
+ # 资金流评分
+ capital_score = _score_capital(
+ row, mf_history.get(ts_code, pd.DataFrame())
+ )
+
+ # 估值评分(作为辅助参考)
+ pe = row.get("pe")
+ pb = row.get("pb")
+ valuation_score = _score_valuation(pe, pb)
+
+ results.append({
+ "ts_code": ts_code,
+ "name": name,
+ "sector": sector,
+ "entry_signal_type": entry_signal["signal_type"].value,
+ "entry_signal_score": round(entry_signal["signal_score"], 1),
+ "entry_signal_details": entry_signal.get("details", {}),
+ "trend_timing_score": round(trend_score, 1),
+ "supply_demand_score": round(sd_score, 1),
+ "capital_score": round(capital_score, 1),
+ "valuation_score": round(valuation_score, 1),
+ "technical_score": round(tech_signal.score, 1),
+ "position_score": round(tech_signal.position_score, 1),
+ "main_net_inflow": row.get("main_net_inflow", 0),
+ "inflow_ratio": round(row.get("inflow_ratio", 0), 2),
+ "turnover_rate": row.get("turnover_rate"),
+ "volume_ratio": row.get("volume_ratio"),
+ "circ_mv": row.get("circ_mv"),
+ "pe": pe,
+ "pb": pb,
+ "volume_trend": vol_pattern["volume_trend"],
+ "demand_supply_ratio": vol_pattern["demand_supply_ratio"],
+ # 技术信号详情(用于生成推荐理由)
+ "tech_signal": tech_signal,
+ })
+
+ if len(results) >= settings.top_stock_count:
+ break
+
+ except Exception as e:
+ logger.debug(f"深度分析 {ts_code} 失败: {e}")
+ continue
+
+ # 让出控制权,避免阻塞事件循环
+ if idx % 10 == 0:
+ await asyncio.sleep(0)
+
+ logger.info(
+ f"Phase 3 入场信号分布: "
+ f"突破={signal_counts['breakout']} 回踩={signal_counts['pullback']} "
+ f"启动={signal_counts['launch']} 无信号={signal_counts['none']} "
+ f"(共分析{total}只)"
+ )
+
+ return results
+
+
+def _get_multi_day_moneyflow(candidates: pd.DataFrame, trade_date: str) -> dict[str, pd.DataFrame]:
+ """获取候选股票近 5 日资金流数据(用于资金持续性评分)
+
+ 利用 get_stock_moneyflow 逐只获取(仅对 Phase 2 过滤后的 ~80 只)。
+ """
+ result = {}
+
+ if "ts_code" not in candidates.columns:
+ return result
+
+ for ts_code in candidates["ts_code"].values[:80]:
+ try:
+ df = tushare_client.get_stock_moneyflow(ts_code, 5)
+ if not df.empty:
+ result[ts_code] = df
+ except Exception:
+ pass
+
+ return result
+
+
+def _score_capital(stock_row: dict | pd.Series, mf_history: pd.DataFrame) -> float:
+ """资金流评分 (0-100)
+
+ 维度:
+ - 当日主力净流入规模 (35)
+ - 资金持续性 (35): 近 N 日中主力净流入为正的天数
+ - 流入比 (15)
+ - 量比 (15)
+ """
+ score = 0
+
+ main_net = stock_row.get("main_net_inflow", 0) or 0
+ inflow_ratio = stock_row.get("inflow_ratio", 0) or 0
+ volume_ratio = stock_row.get("volume_ratio")
+
+ # 当日主力净流入规模 (35)
+ if main_net > 10000:
+ score += 35
+ elif main_net > 5000:
+ score += 28
+ elif main_net > 2000:
+ score += 20
+ elif main_net > 500:
+ score += 12
+ elif main_net > 0:
+ score += 5
+
+ # 资金持续性 (35)
+ if not mf_history.empty and len(mf_history) >= 2:
+ positive_days = 0
+ for _, r in mf_history.iterrows():
+ net = (r.get("buy_elg_amount", 0) - r.get("sell_elg_amount", 0) +
+ r.get("buy_lg_amount", 0) - r.get("sell_lg_amount", 0))
+ if net > 0:
+ positive_days += 1
+ total_days = len(mf_history)
+ if total_days >= 3 and positive_days >= total_days * 0.7:
+ score += 35
+ elif total_days >= 2 and positive_days >= total_days * 0.5:
+ score += 25
+ elif positive_days >= 1:
+ score += 12
+ else:
+ # 只有一天数据且为正(已经通过 Phase 2 过滤)
+ score += 15
+
+ # 流入比 (15)
+ if inflow_ratio > 15:
+ score += 15
+ elif inflow_ratio > 10:
+ score += 12
+ elif inflow_ratio > 5:
+ score += 8
+ elif inflow_ratio > 0:
+ score += 4
+
+ # 量比 (15)
+ if volume_ratio:
+ if volume_ratio > 2.0:
+ score += 15
+ elif volume_ratio > 1.5:
+ score += 10
+ elif volume_ratio > 1.0:
+ score += 5
+
+ return min(score, 100)
diff --git a/backend/app/api/__pycache__/recommendations.cpython-313.pyc b/backend/app/api/__pycache__/recommendations.cpython-313.pyc
index 7baad93e..1a97180f 100644
Binary files a/backend/app/api/__pycache__/recommendations.cpython-313.pyc and b/backend/app/api/__pycache__/recommendations.cpython-313.pyc differ
diff --git a/backend/app/api/__pycache__/sectors.cpython-313.pyc b/backend/app/api/__pycache__/sectors.cpython-313.pyc
index 3fc8af31..ec18ae24 100644
Binary files a/backend/app/api/__pycache__/sectors.cpython-313.pyc and b/backend/app/api/__pycache__/sectors.cpython-313.pyc differ
diff --git a/backend/app/api/recommendations.py b/backend/app/api/recommendations.py
index 54e9c251..8dd8d52b 100644
--- a/backend/app/api/recommendations.py
+++ b/backend/app/api/recommendations.py
@@ -52,6 +52,7 @@ async def get_latest():
"llm_analysis": r.llm_analysis,
"llm_score": r.llm_score,
"strategy": r.strategy,
+ "entry_signal_type": r.entry_signal_type,
"scan_session": r.scan_session,
"created_at": r.created_at.isoformat() if r.created_at else None,
}
@@ -88,6 +89,5 @@ async def get_scan_status():
@router.get("/history")
async def get_history(days: int = 7):
- """获取历史推荐"""
- rows = await get_recommendation_history(days)
- return rows
+ """获取历史推荐(按日期分组)"""
+ return await get_recommendation_history(days)
diff --git a/backend/app/api/sectors.py b/backend/app/api/sectors.py
index 491c0ab0..d510d649 100644
--- a/backend/app/api/sectors.py
+++ b/backend/app/api/sectors.py
@@ -66,13 +66,26 @@ async def _enrich_sectors_realtime(sectors_data: list[dict]) -> list[dict]:
1 for q in member_quotes
if q.limit_up and q.price >= q.limit_up * 0.995
)
+
+ # 盘中更新领涨股
+ sorted_quotes = sorted(member_quotes, key=lambda q: q.pct_chg, reverse=True)
+ s["leading_stocks_realtime"] = [
+ {
+ "ts_code": q.ts_code,
+ "name": q.name or q.ts_code,
+ "pct_chg": round(q.pct_chg, 2),
+ "amount": round(q.amount, 0),
+ }
+ for q in sorted_quotes[:3]
+ ]
else:
s["realtime_pct_change"] = None
s["realtime_limit_up_count"] = None
+ s["leading_stocks_realtime"] = None
s["is_realtime"] = True
- # 盘中按实时涨幅重新排序(涨幅高的排前面)
+ # 盘中按实时涨幅重新排序
sectors_data.sort(key=lambda s: s.get("realtime_pct_change") or 0, reverse=True)
return sectors_data
@@ -92,6 +105,12 @@ async def get_hot_sectors(limit: int = 10):
"days_continuous": s.days_continuous,
"heat_score": s.heat_score,
"stage": s.stage,
+ # 增强分析字段
+ "member_count": s.member_count,
+ "leading_stocks": s.leading_stocks,
+ "pct_trend": s.pct_trend,
+ "turnover_avg": s.turnover_avg,
+ "main_force_ratio": s.main_force_ratio,
}
for s in sectors[:limit]
]
diff --git a/backend/app/config.py b/backend/app/config.py
index 1edfd035..3c6d19fc 100644
--- a/backend/app/config.py
+++ b/backend/app/config.py
@@ -43,6 +43,11 @@ class Settings(BaseSettings):
# 风控
stop_loss_pct: float = 5.0 # 止损比例 %
+ # 趋势突破策略参数
+ breakout_min_volume_ratio: float = 1.2 # 突破型最小量比
+ pullback_max_shrink_ratio: float = 0.85 # 回踩型最大缩量比
+ consolidation_max_range_pct: float = 8.0 # 启动型最大整理振幅 %
+
# LLM (DeepSeek)
deepseek_api_key: str = ""
deepseek_base_url: str = "https://api.deepseek.com/v1"
diff --git a/backend/app/data/__pycache__/models.cpython-313.pyc b/backend/app/data/__pycache__/models.cpython-313.pyc
index 99e8e882..d1a0732c 100644
Binary files a/backend/app/data/__pycache__/models.cpython-313.pyc and b/backend/app/data/__pycache__/models.cpython-313.pyc differ
diff --git a/backend/app/data/models.py b/backend/app/data/models.py
index b799fdf4..0d41e31f 100644
--- a/backend/app/data/models.py
+++ b/backend/app/data/models.py
@@ -57,12 +57,20 @@ class SectorInfo(BaseModel):
sector_code: str
sector_name: str
pct_change: float = 0 # 涨跌幅 %
- capital_inflow: float = 0 # 主力净流入(万)
+ capital_inflow: float = 0 # 主力净流入(万元,原始数据来自Tushare亿元×10000)
limit_up_count: int = 0 # 涨停数
days_continuous: int = 0 # 连续资金流入天数
heat_score: float = 0 # 热度综合评分
stage: str = "mid" # 板块阶段: early/mid/late/end
+ # ── 板块分析增强字段 ──
+ member_count: int = 0 # 成分股数量
+ leading_stocks: list[dict] = [] # 领涨股 [{ts_code, name, pct_chg, amount}]
+ capital_trend: list[float] = [] # 近5日资金净流入趋势(万)
+ pct_trend: list[float] = [] # 近5日涨跌幅趋势
+ turnover_avg: float = 0 # 板块平均换手率
+ main_force_ratio: float = 0 # 主力资金占比(主力净流入/总成交额)
+
class MarketTemperature(BaseModel):
trade_date: str
@@ -119,7 +127,8 @@ class Recommendation(BaseModel):
reasons: list[str] = []
risk_note: str = ""
level: str = "" # 强烈推荐/推荐/观望/回避
- strategy: str = "momentum" # momentum(强中选强) / potential(潜在启动)
+ strategy: str = "trend_breakout" # trend_breakout / momentum(旧) / potential(旧)
+ entry_signal_type: str = "none" # breakout / pullback / launch / none
llm_analysis: str = "" # LLM 深度分析
llm_score: float | None = None # AI 评分 1-10
scan_session: str = ""
diff --git a/backend/app/db/__pycache__/database.cpython-313.pyc b/backend/app/db/__pycache__/database.cpython-313.pyc
index 0484603e..3c2917aa 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 edc039aa..6543f495 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 96b1be3f..dcbb3d44 100644
--- a/backend/app/db/database.py
+++ b/backend/app/db/database.py
@@ -33,6 +33,7 @@ async def init_db():
"ALTER TABLE recommendations ADD COLUMN llm_score REAL",
"ALTER TABLE market_temperature ADD COLUMN max_streak INTEGER",
"ALTER TABLE market_temperature ADD COLUMN broken_rate REAL",
+ "ALTER TABLE recommendations ADD COLUMN entry_signal_type TEXT DEFAULT 'none'",
]:
try:
await conn.execute(
diff --git a/backend/app/db/tables.py b/backend/app/db/tables.py
index 6d9bbb78..05b981fa 100644
--- a/backend/app/db/tables.py
+++ b/backend/app/db/tables.py
@@ -26,7 +26,8 @@ recommendations_table = Table(
Column("stop_loss", Float),
Column("reasons", Text),
Column("llm_analysis", Text, default=""),
- Column("strategy", Text, default="momentum"),
+ Column("strategy", Text, default="trend_breakout"),
+ Column("entry_signal_type", Text, default="none"),
Column("llm_score", Float, default=None),
Column("scan_session", Text),
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 674a1470..c493ec5c 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__/screener.cpython-313.pyc b/backend/app/engine/__pycache__/screener.cpython-313.pyc
index c45da987..b2f800e7 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 60863ef1..e221cbe7 100644
--- a/backend/app/engine/recommender.py
+++ b/backend/app/engine/recommender.py
@@ -60,17 +60,98 @@ async def get_latest_sectors() -> list[SectorInfo]:
async def get_recommendation_history(days: int = 7) -> list[dict]:
- """获取历史推荐记录"""
+ """获取历史推荐记录,按日期分组返回"""
from datetime import timedelta
+ import json
+
start = (datetime.now() - timedelta(days=days)).strftime("%Y-%m-%d")
async with get_db() as db:
- from sqlalchemy import select, text
+ from sqlalchemy import text
+
+ # 查询所有历史推荐,按 ts_code 去重(每天取最新一条)
stmt = text(
- "SELECT * FROM recommendations WHERE created_at >= :start ORDER BY created_at DESC"
+ "SELECT * FROM recommendations "
+ "WHERE created_at >= :start "
+ "AND id IN ("
+ " SELECT MAX(id) FROM recommendations "
+ " WHERE created_at >= :start "
+ " GROUP BY date(created_at), ts_code"
+ ") "
+ "ORDER BY created_at DESC, score DESC"
)
result = await db.execute(stmt, {"start": start})
rows = result.fetchall()
- return [dict(row._mapping) for row in rows]
+
+ # 按日期分组
+ grouped: dict[str, list[dict]] = {}
+ for row in rows:
+ r = row._mapping
+ # SQLite created_at 是字符串 "YYYY-MM-DD HH:MM:SS"
+ ca = r["created_at"]
+ if ca:
+ date_str = str(ca)[:10] # 取前10字符即日期部分
+ created_at_str = str(ca)
+ else:
+ date_str = "unknown"
+ created_at_str = None
+
+ rec_dict = {
+ "ts_code": r["ts_code"],
+ "name": r["name"],
+ "sector": r["sector"] or "",
+ "score": r["score"] or 0,
+ "level": _score_to_level_static(r["score"] or 0),
+ "signal": r["signal"] or "HOLD",
+ "market_temp_score": r["market_temp_score"] or 0,
+ "sector_score": r["sector_score"] or 0,
+ "capital_score": r["capital_score"] or 0,
+ "technical_score": r["technical_score"] or 0,
+ "position_score": r.get("position_score") or 50,
+ "valuation_score": r.get("valuation_score") or 50,
+ "entry_price": r["entry_price"],
+ "target_price": r["target_price"],
+ "stop_loss": r["stop_loss"],
+ "reasons": json.loads(r["reasons"]) if r["reasons"] else [],
+ "risk_note": "",
+ "strategy": r.get("strategy") or "trend_breakout",
+ "entry_signal_type": r.get("entry_signal_type") or "none",
+ "llm_analysis": r.get("llm_analysis") or "",
+ "llm_score": r.get("llm_score"),
+ "scan_session": r["scan_session"] or "",
+ "created_at": created_at_str,
+ }
+
+ if date_str not in grouped:
+ grouped[date_str] = []
+ grouped[date_str].append(rec_dict)
+
+ # 转为列表,按日期降序
+ result_list = []
+ for date_str in sorted(grouped.keys(), reverse=True):
+ recs = grouped[date_str]
+ buy_count = sum(1 for r in recs if r["signal"] == "BUY")
+ avg_score = round(sum(r["score"] for r in recs) / len(recs), 1) if recs else 0
+ result_list.append({
+ "date": date_str,
+ "count": len(recs),
+ "buy_count": buy_count,
+ "avg_score": avg_score,
+ "recommendations": recs,
+ })
+
+ return result_list
+
+
+def _score_to_level_static(score: float) -> str:
+ """根据评分确定推荐等级"""
+ if score >= 75:
+ return "强烈推荐"
+ elif score >= 60:
+ return "推荐"
+ elif score >= 45:
+ return "关注"
+ else:
+ return "观望"
async def _save_to_db(result: dict):
@@ -118,7 +199,12 @@ async def _save_to_db(result: dict):
)
await db.execute(stmt)
- # 保存推荐
+ # 保存推荐(先清除今日旧推荐,避免重复)
+ today_str = datetime.now().strftime("%Y-%m-%d")
+ await db.execute(
+ text("DELETE FROM recommendations WHERE date(created_at) = :today"),
+ {"today": today_str},
+ )
import json
for rec in result.get("recommendations", []):
stmt = tables.recommendations_table.insert().values(
@@ -139,6 +225,7 @@ async def _save_to_db(result: dict):
reasons=json.dumps(rec.reasons, ensure_ascii=False),
llm_analysis=rec.llm_analysis,
strategy=rec.strategy,
+ entry_signal_type=rec.entry_signal_type,
llm_score=rec.llm_score,
scan_session=rec.scan_session,
)
@@ -177,9 +264,11 @@ async def _load_today_from_db() -> dict:
temperature=m["temperature"],
)
- # 加载推荐
+ # 加载推荐(按 ts_code 去重,取最新一条)
result = await db.execute(
- text("SELECT * FROM recommendations WHERE date(created_at) = :today ORDER BY score DESC"),
+ text("SELECT * FROM recommendations WHERE date(created_at) = :today "
+ "AND id IN (SELECT MAX(id) FROM recommendations WHERE date(created_at) = :today GROUP BY ts_code) "
+ "ORDER BY score DESC"),
{"today": today}
)
rows = result.fetchall()
@@ -203,7 +292,8 @@ async def _load_today_from_db() -> dict:
stop_loss=r["stop_loss"],
reasons=json.loads(r["reasons"]) if r["reasons"] else [],
llm_analysis=r.get("llm_analysis") or "",
- strategy=r.get("strategy") or "momentum",
+ strategy=r.get("strategy") or "trend_breakout",
+ entry_signal_type=r.get("entry_signal_type") or "none",
llm_score=r.get("llm_score"),
scan_session=r["scan_session"] or "",
))
diff --git a/backend/app/engine/screener.py b/backend/app/engine/screener.py
index f8c786a5..7243106a 100644
--- a/backend/app/engine/screener.py
+++ b/backend/app/engine/screener.py
@@ -1,7 +1,7 @@
-"""双通道漏斗筛选器
+"""趋势突破统一筛选器
-Channel A(强中选强):市场温度 → 板块热度 → 资金筛选 → 技术信号
-Channel B(潜在启动):全市场技术扫描 → 底部形态 → 估值筛选
+三阶段管道:全市场批量预筛 → 资金流过滤 → 逐股深度分析
+评分公式:趋势&时机30% + 资金流25% + 供需20% + 板块共振15% + 市场温度10%
自动检测是否在交易时段:
- 盘中模式:用前一日 Tushare 数据 + 腾讯实时行情混合筛选
@@ -12,22 +12,17 @@ import logging
from app.analysis.market_temp import calculate_market_temperature
from app.analysis.sector_scanner import scan_hot_sectors
-from app.analysis.capital_flow import filter_stocks_by_capital
-from app.analysis.potential_scanner import scan_potential_breakout
+from app.analysis.trend_scanner import scan_trend_breakout
from app.analysis.signals import generate_signals
-from app.analysis.intraday import intraday_market_temperature, intraday_filter_stocks
+from app.analysis.intraday import intraday_market_temperature, intraday_filter_stocks, intraday_sector_scan
from app.data.models import MarketTemperature, SectorInfo, TechnicalSignal, Recommendation
-from app.config import settings, is_trading_hours
+from app.config import settings, is_trading_hours, is_market_session
logger = logging.getLogger(__name__)
async def run_screening(trade_date: str = None) -> dict:
- """执行双通道筛选流程
-
- 自动检测交易时段:
- - 盘中 → 用前一日板块+实时行情筛选
- - 盘后 → 用当日完整数据筛选
+ """执行趋势突破筛选流程
返回: {
"market_temp": MarketTemperature,
@@ -36,11 +31,11 @@ async def run_screening(trade_date: str = None) -> dict:
"scan_mode": "intraday" | "post_market",
}
"""
- intraday = is_trading_hours()
+ intraday = is_market_session()
scan_mode = "intraday" if intraday else "post_market"
logger.info(f"=== 筛选模式: {'盘中实时' if intraday else '盘后'} ===")
- # ── 市场温度(共享) ──
+ # ── 市场温度 ──
logger.info("=== 市场温度计 ===")
market_temp = calculate_market_temperature(trade_date)
@@ -52,151 +47,147 @@ async def run_screening(trade_date: str = None) -> dict:
market_temp_score = market_temp.temperature
- # ── 板块热度(Channel A 需要) ──
+ # ── 板块热度(用于板块共振评分) ──
logger.info("=== 板块热度扫描 ===")
all_sectors = scan_hot_sectors(trade_date)
hot_sectors = all_sectors[:settings.top_sector_count]
- # ── Channel A:强中选强 ──
- recommendations_a = []
- capital_filtered = []
+ # 盘中用实时行情更新板块涨幅和涨停数
+ if intraday:
+ hot_sectors = await intraday_sector_scan(hot_sectors)
- if hot_sectors:
- if intraday:
- logger.info("=== Channel A:盘中实时个股筛选 ===")
- capital_filtered = await intraday_filter_stocks(hot_sectors)
- else:
- logger.info("=== Channel A:个股资金筛选 ===")
- capital_filtered = await filter_stocks_by_capital(hot_sectors, trade_date)
+ # ── 趋势突破三阶段管道 ──
+ logger.info("=== 趋势突破扫描 ===")
+ candidates = await scan_trend_breakout(
+ trade_date=trade_date,
+ market_temp=market_temp,
+ hot_sectors=hot_sectors,
+ intraday=intraday,
+ )
- if capital_filtered:
- recommendations_a = _build_recommendations(
- capital_filtered, market_temp, hot_sectors,
- market_temp_score=market_temp_score,
- strategy="momentum", intraday=intraday,
- )
+ if not candidates:
+ logger.info("=== 筛选完成: 0 只股票 ===")
+ return {
+ "market_temp": market_temp,
+ "hot_sectors": hot_sectors,
+ "recommendations": [],
+ "scan_mode": scan_mode,
+ }
- logger.info(f"Channel A(强中选强): {len(recommendations_a)} 只")
+ # ── 构建推荐列表 ──
+ recommendations = _build_trend_recommendations(
+ candidates, market_temp, hot_sectors, market_temp_score, intraday,
+ )
- # ── Channel B:潜在启动 ──
- logger.info("=== Channel B:潜在启动扫描 ===")
- exclude_codes = {r.ts_code for r in recommendations_a}
- potential_filtered = scan_potential_breakout(trade_date, exclude_codes)
+ # 过滤低质量推荐
+ recommendations = [r for r in recommendations if r.score >= 40]
- recommendations_b = []
- if potential_filtered:
- recommendations_b = _build_recommendations(
- potential_filtered, market_temp, hot_sectors,
- market_temp_score=market_temp_score,
- strategy="potential", intraday=intraday,
- )
-
- logger.info(f"Channel B(潜在启动): {len(recommendations_b)} 只")
-
- # 合并,按评分排序
- all_recommendations = recommendations_a + recommendations_b
- all_recommendations.sort(key=lambda x: x.score, reverse=True)
-
- # 过滤掉低质量推荐
- all_recommendations = [r for r in all_recommendations if r.score >= 40]
-
- logger.info(f"=== 筛选完成: {len(all_recommendations)} 只股票 ({scan_mode}) ===")
- for r in all_recommendations[:5]:
- strategy_label = "强中选强" if r.strategy == "momentum" else "潜在启动"
- logger.info(f" [{strategy_label}] {r.name}({r.ts_code}) {r.level} 评分={r.score} 信号={r.signal}")
+ logger.info(f"=== 筛选完成: {len(recommendations)} 只股票 ({scan_mode}) ===")
+ for r in recommendations[:5]:
+ signal_map = {"breakout": "突破型", "pullback": "回踩型", "launch": "启动型"}
+ signal_label = signal_map.get(r.entry_signal_type, r.entry_signal_type)
+ logger.info(f" [{signal_label}] {r.name}({r.ts_code}) {r.level} 评分={r.score} 信号={r.signal}")
return {
"market_temp": market_temp,
"hot_sectors": hot_sectors,
- "capital_filtered": capital_filtered,
- "recommendations": all_recommendations,
+ "recommendations": recommendations,
"scan_mode": scan_mode,
}
-def _build_recommendations(
- stocks: list[dict],
+def _build_trend_recommendations(
+ candidates: list[dict],
market_temp: MarketTemperature,
hot_sectors: list[SectorInfo],
market_temp_score: float = 0,
- strategy: str = "momentum",
intraday: bool = False,
) -> list[Recommendation]:
- """从筛选结果构建推荐列表(Channel A/B 共用)"""
+ """从趋势突破扫描结果构建推荐列表
+
+ 评分公式:趋势&时机30% + 资金流25% + 供需20% + 板块共振15% + 市场温度10%
+ """
recommendations = []
- for stock in stocks:
+ for stock in candidates:
ts_code = stock["ts_code"]
name = stock["name"]
sector = stock["sector"]
+ entry_signal_type = stock.get("entry_signal_type", "none")
+ entry_signal_score = stock.get("entry_signal_score", 0)
+ tech_signal = stock.get("tech_signal")
- tech_signal = generate_signals(ts_code, name)
-
- # 板块得分
- if strategy == "momentum":
- sector_score = _get_sector_score(sector, hot_sectors)
- sector_stage = _get_sector_stage(sector, hot_sectors)
- else:
- # Channel B:不在热门板块中,给基础分
- sector_score = 30.0
- sector_stage = "mid"
-
- # 估值安全得分
+ # 各维度得分
+ trend_timing_score = stock.get("trend_timing_score", 50)
+ supply_demand_score = stock.get("supply_demand_score", 50)
+ capital_score = stock.get("capital_score", 50)
+ position_score = stock.get("position_score", 50)
valuation_score = stock.get("valuation_score", 50)
- # 位置安全得分
- position_score = tech_signal.position_score
+ # 板块共振评分
+ sector_score = _score_sector_resonance(sector, hot_sectors)
+ sector_stage = _get_sector_stage(sector, hot_sectors)
- # 综合评分(根据策略调整权重)
- if strategy == "momentum":
- # 强中选强:板块和资金权重高
- # 市场10% + 板块20% + 资金20% + 技术15% + 位置安全15% + 估值安全20%
- final_score = (
- market_temp_score * 0.10 +
- sector_score * 0.20 +
- stock["capital_score"] * 0.20 +
- tech_signal.score * 0.15 +
- position_score * 0.15 +
- valuation_score * 0.20
- )
- else:
- # 潜在启动:技术面和估值权重高
- # 市场10% + 技术25% + 资金(potential_score)15% + 位置安全25% + 估值安全25%
- final_score = (
- market_temp_score * 0.10 +
- tech_signal.score * 0.25 +
- stock["capital_score"] * 0.15 +
- position_score * 0.25 +
- valuation_score * 0.25
- )
+ # 综合评分(新权重)
+ final_score = (
+ trend_timing_score * 0.30 +
+ capital_score * 0.25 +
+ supply_demand_score * 0.20 +
+ sector_score * 0.15 +
+ market_temp_score * 0.10
+ )
- # 板块尾声阶段额外惩罚(仅 Channel A)
- if strategy == "momentum":
- if sector_stage == "end":
- final_score *= 0.85
- elif sector_stage == "late":
- final_score *= 0.92
+ # 风险乘数
+ if tech_signal:
+ if tech_signal.rally_pct_5d > 20:
+ final_score *= 0.65
+ elif tech_signal.rally_pct_5d > 15:
+ final_score *= 0.80
+
+ if sector_stage == "end":
+ final_score *= 0.70
+ elif sector_stage == "late":
+ final_score *= 0.88
+
+ if market_temp_score < 30:
+ final_score *= 0.75
+
+ # 入场信号高置信度奖励
+ if entry_signal_score >= 80:
+ final_score *= 1.10
# 确定信号和等级
- signal = "HOLD"
- if strategy == "momentum":
- if (tech_signal.score >= settings.buy_score_threshold
- and tech_signal.signal_count >= settings.buy_min_signals
- and position_score >= 30):
- signal = "BUY"
- else:
- # Channel B:技术面要求稍低,但位置安全要求更高
- if (tech_signal.score >= settings.buy_score_threshold * 0.7
- and position_score >= 40):
- signal = "BUY"
-
level = _score_to_level(final_score)
+ signal = "HOLD"
+ if entry_signal_type != "none" and entry_signal_score >= 50 and position_score >= 30 and final_score >= 60:
+ signal = "BUY"
+
+ # 价格参考
+ entry_price = None
+ target_price = None
+ stop_loss = None
+ if tech_signal:
+ entry_price = tech_signal.support_price
+ target_price = tech_signal.resist_price
+ stop_loss = tech_signal.stop_loss_price
+
+ # 根据入场信号类型调整参考价
+ details = stock.get("entry_signal_details", {})
+ if entry_signal_type == "breakout" and details.get("resist_level"):
+ entry_price = details["resist_level"]
+ target_price = round(entry_price * 1.05, 2)
+ elif entry_signal_type == "pullback" and details.get("support_price"):
+ entry_price = details["support_price"]
+ target_price = round(entry_price * 1.05, 2)
+ elif entry_signal_type == "launch" and details.get("resist_level"):
+ entry_price = round(details["resist_level"] * 1.01, 2)
+ target_price = round(details["resist_level"] * 1.08, 2)
# 生成推荐理由
- reasons = _generate_reasons(stock, tech_signal, market_temp, intraday, strategy)
+ reasons = _generate_reasons(stock, tech_signal, market_temp, intraday)
# 风险提示
- risk_note = _generate_risk_note(market_temp, tech_signal, intraday, strategy)
+ risk_note = _generate_risk_note(market_temp, tech_signal, stock)
rec = Recommendation(
ts_code=ts_code,
@@ -205,24 +196,41 @@ def _build_recommendations(
score=round(final_score, 1),
market_temp_score=round(market_temp_score, 1),
sector_score=round(sector_score, 1),
- capital_score=round(stock["capital_score"], 1),
- technical_score=round(tech_signal.score, 1),
+ capital_score=round(capital_score, 1),
+ technical_score=round(stock.get("technical_score", 50), 1),
position_score=round(position_score, 1),
valuation_score=round(valuation_score, 1),
signal=signal,
- entry_price=tech_signal.support_price,
- target_price=tech_signal.resist_price,
- stop_loss=tech_signal.stop_loss_price,
+ entry_price=entry_price,
+ target_price=target_price,
+ stop_loss=stop_loss,
reasons=reasons,
risk_note=risk_note,
level=level,
- strategy=strategy,
+ strategy="trend_breakout",
+ entry_signal_type=entry_signal_type,
)
recommendations.append(rec)
return recommendations
+def _score_sector_resonance(sector_name: str, hot_sectors: list[SectorInfo]) -> float:
+ """板块共振评分 (0-100)"""
+ for s in hot_sectors:
+ if s.sector_name == sector_name:
+ score = 40 # 在热门板块列表中
+ score += s.heat_score * 0.3 # 板块热度贡献
+ if s.stage == "early":
+ score += 30
+ elif s.stage == "mid":
+ score += 20
+ elif s.stage == "late":
+ score += 5
+ return min(score, 100)
+ return 10.0 # 不在热门板块
+
+
def _get_sector_score(sector_name: str, hot_sectors: list[SectorInfo]) -> float:
"""获取板块在热门板块中的得分"""
for s in hot_sectors:
@@ -251,99 +259,93 @@ def _score_to_level(score: float) -> str:
def _generate_reasons(
- stock: dict, tech: TechnicalSignal, market: MarketTemperature,
- intraday: bool = False, strategy: str = "momentum",
+ stock: dict, tech: TechnicalSignal | None,
+ market: MarketTemperature, intraday: bool = False,
) -> list[str]:
+ """生成推荐理由"""
reasons = []
+ entry_type = stock.get("entry_signal_type", "none")
+ signal_map = {"breakout": "突破型", "pullback": "回踩型", "launch": "启动型"}
+ entry_label = signal_map.get(entry_type, "")
- if strategy == "potential":
- # Channel B 理由:侧重底部形态和估值
- if tech.position_score >= 70:
- reasons.append("位置处于低位,距高点回调充分")
- if tech.macd_golden:
- reasons.append("MACD底部金叉,反转信号初现")
- if tech.pullback_support:
- reasons.append("缩量回踩支撑位,蓄势充分")
- if tech.big_yang:
- reasons.append("底部出现放量长阳,资金介入")
- if stock.get("valuation_score", 0) >= 60:
- reasons.append("估值安全,下行空间有限")
- if not reasons:
- reasons.append("技术面底部信号显现,关注启动时机")
- elif intraday:
- # Channel A 盘中理由
- pct = stock.get("pct_chg", 0)
- vr = stock.get("volume_ratio")
- if vr and vr > 2:
- reasons.append(f"盘中量比{vr:.1f}倍,资金活跃度高")
- if pct > 3:
- reasons.append(f"盘中涨幅{pct:.1f}%,走势强劲")
- elif pct > 0:
- reasons.append(f"盘中涨幅{pct:.1f}%,温和上攻")
+ # 入场信号
+ if entry_label:
+ details = stock.get("entry_signal_details", {})
+ if entry_type == "breakout":
+ breakout_pct = details.get("breakout_pct", 0)
+ vol_ratio = details.get("volume_ratio", 0)
+ reasons.append(f"放量突破20日阻力位(涨幅{breakout_pct:.1f}%,量比{vol_ratio:.1f}倍)")
+ elif entry_type == "pullback":
+ support = details.get("support_ma", "")
+ shrink = details.get("volume_shrink_ratio", 0)
+ reasons.append(f"缩量回踩{support}支撑(量能收缩至{shrink:.0%})")
+ elif entry_type == "launch":
+ range_pct = details.get("price_range_pct", 0)
+ shrink = details.get("volume_shrink_ratio", 0)
+ reasons.append(f"高位缩量整理{range_pct:.1f}%后即将变盘(量缩至{shrink:.0%})")
- reasons.append(f"所属板块【{stock['sector']}】为当前热门概念")
+ # 供需分析
+ vol_trend = stock.get("volume_trend", "")
+ ds_ratio = stock.get("demand_supply_ratio", 1)
+ if ds_ratio > 1.5:
+ reasons.append(f"需求主导(上涨均量/下跌均量={ds_ratio:.1f})")
+ elif vol_trend == "expanding":
+ reasons.append("量能逐步放大,资金持续介入")
+ # 资金流
+ main_net = stock.get("main_net_inflow", 0)
+ if main_net > 5000:
+ reasons.append(f"主力资金大幅流入{main_net:.0f}万元")
+ elif main_net > 1000:
+ reasons.append(f"主力资金持续流入{main_net:.0f}万元")
+
+ # 板块
+ sector = stock.get("sector", "")
+ if sector:
+ reasons.append(f"所属板块【{sector}】")
+
+ # 技术面
+ if tech:
tech_reasons = []
if tech.ma_bullish:
tech_reasons.append("均线多头排列")
- if tech.volume_breakout:
- tech_reasons.append("放量突破")
- if tech.macd_golden:
- tech_reasons.append("MACD金叉")
- if tech_reasons:
- reasons.append("技术面: " + "、".join(tech_reasons))
- else:
- # Channel A 盘后理由
- inflow = stock.get("main_net_inflow", 0)
- if inflow > 5000:
- reasons.append(f"主力资金大幅流入{inflow:.0f}万元")
- elif inflow > 1000:
- reasons.append(f"主力资金持续流入{inflow:.0f}万元")
-
- reasons.append(f"所属板块【{stock['sector']}】为当前热门概念")
-
- tech_reasons = []
- if tech.ma_bullish:
- tech_reasons.append("均线多头排列")
- if tech.volume_breakout:
- tech_reasons.append("放量突破")
if tech.macd_golden:
tech_reasons.append("MACD金叉")
if tech.pullback_support:
tech_reasons.append("缩量回踩支撑")
- if tech.big_yang:
- tech_reasons.append("底部放量长阳")
if tech_reasons:
reasons.append("技术面: " + "、".join(tech_reasons))
- # 位置安全
- if tech.position_score >= 70:
- reasons.append("位置安全,距高点有空间")
- elif tech.position_score < 30:
- reasons.append("注意:短期涨幅较大,追高风险")
-
return reasons[:3]
def _generate_risk_note(
- market: MarketTemperature, tech: TechnicalSignal,
- intraday: bool = False, strategy: str = "momentum",
+ market: MarketTemperature,
+ tech: TechnicalSignal | None,
+ stock: dict,
) -> str:
+ """生成风险提示"""
notes = []
- if intraday:
- notes.append("盘中数据参考,需结合尾盘确认")
- if strategy == "potential":
- notes.append("底部股票可能继续盘整,注意时间成本")
+ entry_type = stock.get("entry_signal_type", "")
+
+ if entry_type == "breakout":
+ notes.append("突破型需警惕假突破,关注量能是否持续")
+ elif entry_type == "pullback":
+ notes.append("回踩型可能继续下探支撑,注意止损纪律")
+ elif entry_type == "launch":
+ notes.append("启动型整理可能延长,注意时间成本")
+
if market.temperature < 30:
notes.append("市场情绪偏冷,系统性风险较高")
elif market.temperature < 50:
notes.append("市场情绪一般,注意仓位控制")
- if tech.score < 40:
- notes.append("技术面支撑不足")
- if tech.position_score < 30:
- notes.append(f"近期涨幅较大(5日{tech.rally_pct_5d}%),追高风险")
- if tech.rally_pct_10d > 20:
- notes.append(f"10日累涨{tech.rally_pct_10d}%,警惕回调")
+
+ if tech:
+ if tech.position_score < 30:
+ notes.append(f"近期涨幅较大(5日{tech.rally_pct_5d}%),追高风险")
+ if tech.rally_pct_10d > 20:
+ notes.append(f"10日累涨{tech.rally_pct_10d}%,警惕回调")
+
if not notes:
return "注意设好止损,控制仓位"
return ";".join(notes)
diff --git a/backend/app/llm/__pycache__/prompts.cpython-313.pyc b/backend/app/llm/__pycache__/prompts.cpython-313.pyc
index 46468e50..bd78c2ea 100644
Binary files a/backend/app/llm/__pycache__/prompts.cpython-313.pyc and b/backend/app/llm/__pycache__/prompts.cpython-313.pyc differ
diff --git a/backend/app/llm/analysis_agent.py b/backend/app/llm/analysis_agent.py
index 73d363af..43286182 100644
--- a/backend/app/llm/analysis_agent.py
+++ b/backend/app/llm/analysis_agent.py
@@ -10,10 +10,7 @@ import logging
import re
from app.llm.client import chat_completion
-from app.llm.prompts import (
- MOMENTUM_ANALYSIS_PROMPT,
- POTENTIAL_ANALYSIS_PROMPT,
-)
+from app.llm.prompts import TREND_BREAKOUT_ANALYSIS_PROMPT
from app.config import settings
logger = logging.getLogger(__name__)
@@ -62,16 +59,15 @@ async def _do_analyze(result: dict, recommendations: list) -> None:
# 预先获取该股票的详细数据
stock_data = await _fetch_stock_data(rec.ts_code, rec.sector)
- strategy_label = "强中选强" if rec.strategy == "momentum" else "潜在启动"
- system_prompt = (
- MOMENTUM_ANALYSIS_PROMPT
- if rec.strategy == "momentum"
- else POTENTIAL_ANALYSIS_PROMPT
- )
+ strategy_label = "趋势突破"
+ signal_map = {"breakout": "突破型", "pullback": "回踩型", "launch": "启动型", "none": "无信号"}
+ entry_label = signal_map.get(rec.entry_signal_type, "无信号")
+ system_prompt = TREND_BREAKOUT_ANALYSIS_PROMPT
user_msg = _build_user_message(
rec=rec,
strategy_label=strategy_label,
+ entry_label=entry_label,
market_temp=market_temp,
temp_level=temp_level,
sectors_text=sectors_text,
@@ -169,6 +165,7 @@ async def _fetch_stock_data(ts_code: str, sector: str) -> str:
def _build_user_message(
rec,
strategy_label: str,
+ entry_label: str,
market_temp,
temp_level: str,
sectors_text: str,
@@ -179,6 +176,7 @@ def _build_user_message(
- 股票: {rec.name}({rec.ts_code})
- 所属板块: {rec.sector}
- 策略类型: {strategy_label}
+- 入场信号: {entry_label}
- 综合评分: {rec.score}分({rec.level})
- 各维度: 市场{rec.market_temp_score} | 板块{rec.sector_score} | 资金{rec.capital_score} | 技术{rec.technical_score} | 位置{rec.position_score} | 估值{rec.valuation_score}
- 信号: {rec.signal}
diff --git a/backend/app/llm/prompts.py b/backend/app/llm/prompts.py
index bb079208..b1053d18 100644
--- a/backend/app/llm/prompts.py
+++ b/backend/app/llm/prompts.py
@@ -54,63 +54,42 @@ CHAT_SYSTEM_PROMPT = """\
# ── AI 分析 Agent Prompt ──
-MOMENTUM_ANALYSIS_PROMPT = """\
-你是一位专业的 A 股趋势交易分析师。你需要评估一只处于热门板块中的强势股是否值得追入。
+TREND_BREAKOUT_ANALYSIS_PROMPT = """\
+你是一位专业的 A 股趋势突破交易分析师。你需要评估一只处于上升趋势中、即将突破的股票的入场时机。
系统已为你提供了该股票的量化评分、K线数据、资金流向、技术信号、板块数据等详细信息,请基于这些数据进行深度分析。
重点关注:
-1. 当前趋势的持续性:量价是否配合?资金流入是否持续?
-2. 追入的安全性:当前位置高低?短期是否过热?
-3. 入场时机:应该回调到支撑位买入,还是突破追入?
-4. 风险收益比:上行目标空间 vs 下行止损空间
+1. 入场信号类型确认:突破型/回踩型/启动型,信号是否可靠?
+2. 量价配合:上涨放量、回调缩量的特征是否明显?
+3. 资金持续性:主力资金是否持续流入3天以上?
+4. 1-5日操作策略:最佳入场价位、目标价位(2-5%空间)、止损价位
+5. 时机判断:预计突破/反弹在1-3天内发生的概率
请严格按以下格式输出分析报告:
-### 核心逻辑
-(1-2句核心投资逻辑,说明为什么值得关注)
+### 信号类型确认
+(突破型/回踩型/启动型,判断依据,可靠性评估)
-### 趋势分析
-(均线排列、MACD状态、成交量变化趋势,用数据说话)
+### 量价分析
+(成交量变化趋势、供需关系、资金介入程度)
-### 入场策略
-(建议的入场价位和方式:回调买入/突破买入/分批建仓)
+### 操作策略(1-5日)
+(入场价位、分批建仓计划、目标价位、止损价位)
+
+### 时间窗口
+(预计启动时间、关键观察节点)
### 风险提示
-(主要风险因素:板块衰退、大盘系统性风险、量能不济等)
+(主要风险因素:假突破风险、板块衰退、大盘系统性风险等)
### AI 评分
-(给出 1-10 分,格式为纯数字,如:7)
+(给出 1-10 分,格式为纯数字,如:8)
"""
-POTENTIAL_ANALYSIS_PROMPT = """\
-你是一位专业的 A 股底部反转交易分析师。你需要评估一只处于底部的股票是否具备启动条件。
-
-系统已为你提供了该股票的量化评分、K线数据、资金流向、技术信号、板块数据等详细信息,请基于这些数据进行深度分析。
-
-重点关注:
-1. 底部信号的可信度:量价配合如何?多个技术指标是否共振?
-2. 可能的催化剂:板块轮动机会?资金是否有流入迹象?技术面是否接近突破?
-3. 时间窗口:底部蓄势了多久?均线是否收敛?何时可能启动?
-4. 风险:继续下行的概率和幅度?是否有基本面隐患?
-
-请严格按以下格式输出分析报告:
-
-### 底部信号分析
-(底部形态特征、量价变化、技术指标状态)
-
-### 催化剂判断
-(可能的上涨催化剂:板块轮动、资金流入、技术突破等)
-
-### 埋伏策略
-(建议的建仓方式和价位、仓位建议、等待确认信号)
-
-### 风险提示
-(主要风险因素:继续下行风险、底部无效风险、时间成本等)
-
-### AI 评分
-(给出 1-10 分,格式为纯数字,如:6)
-"""
+# 保留旧 prompt 用于向后兼容(旧推荐数据仍可能使用)
+MOMENTUM_ANALYSIS_PROMPT = TREND_BREAKOUT_ANALYSIS_PROMPT
+POTENTIAL_ANALYSIS_PROMPT = TREND_BREAKOUT_ANALYSIS_PROMPT
ANALYSIS_USER_TEMPLATE = """\
## 量化系统数据
diff --git a/backend/astock.db b/backend/astock.db
index 21002f2b..c92b9b83 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 d63303d1..89666692 100644
--- a/frontend/.next/app-build-manifest.json
+++ b/frontend/.next/app-build-manifest.json
@@ -1,5 +1,10 @@
{
"pages": {
+ "/sectors/page": [
+ "static/chunks/webpack.js",
+ "static/chunks/main-app.js",
+ "static/chunks/app/sectors/page.js"
+ ],
"/layout": [
"static/chunks/webpack.js",
"static/chunks/main-app.js",
@@ -11,10 +16,10 @@
"static/chunks/main-app.js",
"static/chunks/app/page.js"
],
- "/stock/[code]/page": [
+ "/recommendations/page": [
"static/chunks/webpack.js",
"static/chunks/main-app.js",
- "static/chunks/app/stock/[code]/page.js"
+ "static/chunks/app/recommendations/page.js"
]
}
}
\ No newline at end of file
diff --git a/frontend/.next/build-manifest.json b/frontend/.next/build-manifest.json
index b4e9156a..018cb67f 100644
--- a/frontend/.next/build-manifest.json
+++ b/frontend/.next/build-manifest.json
@@ -2,9 +2,7 @@
"polyfillFiles": [
"static/chunks/polyfills.js"
],
- "devFiles": [
- "static/chunks/react-refresh.js"
- ],
+ "devFiles": [],
"ampDevFiles": [],
"lowPriorityFiles": [
"static/development/_buildManifest.js",
@@ -15,16 +13,7 @@
"static/chunks/main-app.js"
],
"pages": {
- "/_app": [
- "static/chunks/webpack.js",
- "static/chunks/main.js",
- "static/chunks/pages/_app.js"
- ],
- "/_error": [
- "static/chunks/webpack.js",
- "static/chunks/main.js",
- "static/chunks/pages/_error.js"
- ]
+ "/_app": []
},
"ampFirstPages": []
}
\ No newline at end of file
diff --git a/frontend/.next/cache/.tsbuildinfo b/frontend/.next/cache/.tsbuildinfo
index c6850bc6..b8b4b4d2 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/api/chat/stream/route.ts","../../src/hooks/use-websocket.ts","../../src/lib/api.ts","../../src/lib/utils.ts","../../src/hooks/use-auth.tsx","../../src/components/auth-guard.tsx","../../src/components/change-password-dialog.tsx","../../src/components/user-menu.tsx","../../src/components/nav.tsx","../../src/app/layout.tsx","../../src/components/market-temp.tsx","../../src/components/stock-card.tsx","../../src/components/sector-heatmap.tsx","../../src/app/page.tsx","../../src/app/chat/page.tsx","../../src/app/login/page.tsx","../../src/app/recommendations/page.tsx","../../src/app/sectors/page.tsx","../../node_modules/echarts/types/dist/echarts.d.ts","../../node_modules/echarts/index.d.ts","../../src/components/kline-chart.tsx","../../src/components/capital-flow.tsx","../../src/components/score-radar.tsx","../../src/app/stock/[code]/page.tsx","../../src/app/users/page.tsx","../types/app/page.ts","../types/app/api/chat/stream/route.ts","../types/app/chat/page.ts","../types/app/login/page.ts","../types/app/recommendations/page.ts","../types/app/sectors/page.ts","../types/app/stock/[code]/page.ts","../types/app/users/page.ts","../../node_modules/@types/json5/index.d.ts"],"fileIdsList":[[99,145,405,412],[99,145,360,426],[99,145,360,427],[99,145,360,425],[99,145,360,428],[99,145,360,429],[99,145,360,435],[99,145,360,436],[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,430],[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],[99,145,408,416,417,419,420],[87,99,145,395,416],[87,99,145,413,414,422,423,424],[87,99,145,413,414,423],[87,99,145,413,414,424],[87,99,145,395,414,415,432,433,434],[87,99,145,414,416],[87,99,145,431],[99,145,414,415],[99,145,389,395,416],[87,99,145,416,418]],"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":"3abc57cf86dc493adadc03e206d2efc070bbc9e4f394f9a5c9fa56c467cf724d","signature":false,"affectsGlobalScope":true},{"version":"ce99ae8ab80cdc65e63c946ec05e7b7c0f847b8153555139add78d25f76dc83a","signature":false},{"version":"8849c270a045799bc72a03daf90f670b67878f3dfc9ef1c58e15e96dd643bbed","signature":false},{"version":"1158b4ec8a0db65ed76081ded3e2cf4b70349fb18a71a79a2515c245c3ff8dbd","signature":false},{"version":"5b0db3eecb54b662a0df219dbfce655675980715bd48a0010ea3b019d22d2f3b","signature":false},{"version":"117179c3e83bcb6135ab23f4c7f23c2873c111e2fd4fea91df6c4cce620ec977","signature":false},{"version":"370f98a39917baa5b5c1484f9e87d6544f568d9e90c5ddfcda4c2bdf86f16e18","signature":false},{"version":"4aae7433cc74dbe0abd1192e71755184b9a6a0869fbcf366056e5c09d400fe77","signature":false},{"version":"49ff09ed71411be1575b68fe206b06916a482fa8456a408359a4d6345f070cea","signature":false},{"version":"16b684acd5e3aee1cdaf4a1f4cbe64ea61f0c2b14a0d169f4d4ec9fe69fbe782","signature":false},{"version":"cd95d3123cad05acf27a414d747e4b01fee415a2d416981bf6d4516a7deba0f0","signature":false},{"version":"785d23d8bb17f7004d267960404da38316c6689d68786c597592e7a4f8176f38","signature":false},{"version":"e23326887ec4c4dba728f8ade3e3e089e695413abda7ff165f44751773b743c8","signature":false},{"version":"d974f5d5ee0f75fdaefbd1ee0eb2740a5260524558b3c878ba33e56f37796876","signature":false},{"version":"0f84ec980137d904f174aee09c4a08a8a49dae6ab4f94ec781dbb19b241d6a06","signature":false},{"version":"e9a214ed959bf00c2c0ebc1c9969d64b605b8c920fbf67d32544b486feaa0ba8","signature":false},{"version":"91d0faaa789750b12a3cb62f2f3086a8661d1fc600d06fae1928da349f403fea","signature":false},{"version":"cb6928680e2126533bfd09c6b918cd7f86779fb2ce9b2e90ead0793470e6f6f7","signature":false},{"version":"30b4624b2b3cbb230dc3f8b809a7bb2d3c04208e46d66684f8b639cb4b408dd7","signature":false},{"version":"6392353adcff7db02a3f5dcacb5637b791dbbcb76125aac3075da2519af9785a","signature":false,"impliedFormat":99},{"version":"1f3952b74b8c766a2e602a0ba2db19d3d872d00bab4e01746c6b7229c585086c","signature":false,"impliedFormat":99},{"version":"e67238b39f3733e91e1000f5abf105c096cf61ca75eb1671086f7ec68689f646","signature":false},{"version":"92ff2ee2addc582f09b4c2cc6d19f7010c1dc46a801493a67e816dad1728a702","signature":false},{"version":"8bd310bf0ef673cb7cf4161acf37b52870a644d54adb3880c9fcc93c8920f44f","signature":false},{"version":"a49f9c839d86efb90ca4d9c244b18fc9b304a0da9e748282b88f2a44b74c09aa","signature":false},{"version":"7c653e5a71dfd19c9795aad97844792bd453c09c9318507d2c37398a3b8da62f","signature":false},{"version":"2ab5d412ffa57dbca06de472201ddaea1c41b8a515c74667b7059bf334cbb20f","signature":false},{"version":"034d31e472e4e70878fdac24f6314c3355b5b065c3eba828a75f824a83c20341","signature":false},{"version":"3c0c4a0730704889504deb1457bd552134b43f6e2367cfa0d1378b881e779c81","signature":false},{"version":"76e93d96bc19a32eb66e4fd28c96e4d3ded687202893eabf550f835230add683","signature":false},{"version":"3913d85082a4eda81a195bacbd18a93aeb39103bf930ad397c69e1f7521ddf8d","signature":false},{"version":"623de97f632c3c7091a19759e01b1764a3a64aac3ae2ea890c410cc37fd4258e","signature":false},{"version":"ba9ca691d5427129c4c651d308fc027aa3bccdb6484ec90f016a4f2a77f9e7b9","signature":false},{"version":"2c04659a5a9897aee5307e3aad32283ee831ffc7918fcc2a4b7f50065ccfc25b","signature":false},{"version":"96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","signature":false,"impliedFormat":1}],"root":[[410,429],[432,444]],"options":{"allowJs":true,"composite":false,"declarationMap":false,"emitDeclarationOnly":false,"esModuleInterop":true,"jsx":1,"module":99,"skipLibCheck":true,"strict":true,"tsBuildInfoFile":"./.tsbuildinfo"},"referencedMap":[[438,1],[439,2],[440,3],[437,4],[441,5],[442,6],[443,7],[444,8],[410,9],[363,10],[445,10],[142,11],[143,11],[144,12],[99,13],[145,14],[146,15],[147,16],[94,10],[97,17],[95,10],[96,10],[148,18],[149,19],[150,20],[151,21],[152,22],[153,23],[154,23],[155,24],[156,25],[157,26],[158,27],[100,10],[98,10],[159,28],[160,29],[161,30],[193,31],[162,32],[163,33],[164,34],[165,35],[166,36],[167,37],[168,38],[169,39],[170,40],[171,41],[172,41],[173,42],[174,10],[175,43],[177,44],[176,45],[178,46],[179,47],[180,48],[181,49],[182,50],[183,51],[184,52],[185,53],[186,54],[187,55],[188,56],[189,57],[190,58],[101,10],[102,10],[103,10],[141,59],[191,60],[192,61],[86,10],[198,62],[199,63],[197,64],[195,65],[196,66],[84,10],[87,67],[286,64],[85,10],[431,68],[430,10],[93,69],[366,70],[370,71],[372,72],[219,73],[233,74],[337,75],[265,10],[340,76],[301,77],[310,78],[338,79],[220,80],[264,10],[266,81],[339,82],[240,83],[221,84],[245,83],[234,83],[204,83],[292,85],[293,86],[209,10],[289,87],[294,88],[381,89],[287,88],[382,90],[271,10],[290,91],[394,92],[393,93],[296,88],[392,10],[390,10],[391,94],[291,64],[278,95],[279,96],[288,97],[305,98],[306,99],[295,100],[273,101],[274,102],[385,103],[388,104],[252,105],[251,106],[250,107],[397,64],[249,108],[225,10],[400,10],[403,10],[402,64],[404,109],[200,10],[331,10],[232,110],[202,111],[354,10],[355,10],[357,10],[360,112],[356,10],[358,113],[359,113],[218,10],[231,10],[365,114],[373,115],[377,116],[214,117],[281,118],[280,10],[272,101],[300,119],[298,120],[297,10],[299,10],[304,121],[276,122],[213,123],[238,124],[328,125],[205,126],[212,127],[201,75],[342,128],[352,129],[341,10],[351,130],[239,10],[223,131],[319,132],[318,10],[325,133],[327,134],[320,135],[324,136],[326,133],[323,135],[322,133],[321,135],[261,137],[246,137],[313,138],[247,138],[207,139],[206,10],[317,140],[316,141],[315,142],[314,143],[208,144],[285,145],[302,146],[284,147],[309,148],[311,149],[308,147],[241,144],[194,10],[329,150],[267,151],[303,10],[350,152],[270,153],[345,154],[211,10],[346,155],[348,156],[349,157],[332,10],[344,126],[243,158],[330,159],[353,160],[215,10],[217,10],[222,161],[312,162],[210,163],[216,10],[269,164],[268,165],[224,166],[277,167],[275,168],[226,169],[228,170],[401,10],[227,171],[229,172],[368,10],[367,10],[369,10],[399,10],[230,173],[283,64],[92,10],[307,174],[253,10],[263,175],[242,10],[375,64],[384,176],[260,64],[379,88],[259,177],[362,178],[258,176],[203,10],[386,179],[256,64],[257,64],[248,10],[262,10],[255,180],[254,181],[244,182],[237,100],[347,10],[236,183],[235,10],[371,10],[282,64],[364,184],[83,10],[91,185],[88,64],[89,10],[90,10],[343,186],[336,187],[335,10],[334,188],[333,10],[374,189],[376,190],[378,191],[380,192],[383,193],[409,194],[387,194],[408,195],[389,196],[395,197],[396,198],[398,199],[405,200],[407,10],[406,201],[361,202],[81,10],[82,10],[13,10],[14,10],[16,10],[15,10],[2,10],[17,10],[18,10],[19,10],[20,10],[21,10],[22,10],[23,10],[24,10],[3,10],[25,10],[26,10],[4,10],[27,10],[31,10],[28,10],[29,10],[30,10],[32,10],[33,10],[34,10],[5,10],[35,10],[36,10],[37,10],[38,10],[6,10],[42,10],[39,10],[40,10],[41,10],[43,10],[7,10],[44,10],[49,10],[50,10],[45,10],[46,10],[47,10],[48,10],[8,10],[54,10],[51,10],[52,10],[53,10],[55,10],[9,10],[56,10],[57,10],[58,10],[60,10],[59,10],[61,10],[62,10],[10,10],[63,10],[64,10],[65,10],[11,10],[66,10],[67,10],[68,10],[69,10],[70,10],[1,10],[71,10],[72,10],[12,10],[76,10],[74,10],[79,10],[78,10],[73,10],[77,10],[75,10],[80,10],[119,203],[129,204],[118,203],[139,205],[110,206],[109,207],[138,201],[132,208],[137,209],[112,210],[126,211],[111,212],[135,213],[107,214],[106,201],[136,215],[108,216],[113,217],[114,10],[117,217],[104,10],[140,218],[130,219],[121,220],[122,221],[124,222],[120,223],[123,224],[133,201],[115,225],[116,226],[125,227],[105,228],[128,219],[127,217],[131,10],[134,229],[412,230],[426,231],[421,232],[427,233],[425,234],[428,235],[429,236],[435,237],[436,238],[417,233],[433,239],[418,231],[432,239],[422,240],[420,241],[434,239],[424,240],[423,240],[419,242],[416,231],[413,64],[414,10],[415,10],[411,10]],"changeFileSet":[438,439,440,437,441,442,443,444,410,363,445,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,431,430,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,421,427,425,428,429,435,436,417,433,418,432,422,420,434,424,423,419,416,413,414,415,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/api/chat/stream/route.ts","../../src/hooks/use-websocket.ts","../../src/lib/api.ts","../../src/lib/utils.ts","../../src/hooks/use-auth.tsx","../../src/components/auth-guard.tsx","../../src/components/change-password-dialog.tsx","../../src/components/user-menu.tsx","../../src/components/nav.tsx","../../src/app/layout.tsx","../../src/components/market-temp.tsx","../../src/components/stock-card.tsx","../../src/components/sector-heatmap.tsx","../../src/app/page.tsx","../../src/app/chat/page.tsx","../../src/app/login/page.tsx","../../src/app/recommendations/page.tsx","../../src/app/sectors/page.tsx","../../node_modules/echarts/types/dist/echarts.d.ts","../../node_modules/echarts/index.d.ts","../../src/components/kline-chart.tsx","../../src/components/capital-flow.tsx","../../src/components/score-radar.tsx","../../src/app/stock/[code]/page.tsx","../../src/app/users/page.tsx","../types/app/page.ts","../types/app/api/chat/stream/route.ts","../types/app/chat/page.ts","../types/app/login/page.ts","../types/app/recommendations/page.ts","../types/app/sectors/page.ts","../types/app/stock/[code]/page.ts","../types/app/users/page.ts","../../node_modules/@types/json5/index.d.ts"],"fileIdsList":[[99,145,405,412],[99,145,360,426],[99,145,360,427],[99,145,360,425],[99,145,360,428],[99,145,360,429],[99,145,360,435],[99,145,360,436],[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,430],[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],[99,145,408,416,417,419,420],[87,99,145,395,416],[87,99,145,413,414,422,423,424],[87,99,145,413,414,423],[87,99,145,413,414,415],[87,99,145,395,414,415,432,433,434],[87,99,145,414,416],[87,99,145,431],[99,145,414,415],[99,145,389,395,416],[87,99,145,414,415],[87,99,145,416,418]],"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":"3abc57cf86dc493adadc03e206d2efc070bbc9e4f394f9a5c9fa56c467cf724d","signature":false,"affectsGlobalScope":true},{"version":"ce99ae8ab80cdc65e63c946ec05e7b7c0f847b8153555139add78d25f76dc83a","signature":false},{"version":"8849c270a045799bc72a03daf90f670b67878f3dfc9ef1c58e15e96dd643bbed","signature":false},{"version":"64da51aec2d41e3c4898f852bd25bca8f946839eab40743f653ab293494870f0","signature":false},{"version":"5b0db3eecb54b662a0df219dbfce655675980715bd48a0010ea3b019d22d2f3b","signature":false},{"version":"117179c3e83bcb6135ab23f4c7f23c2873c111e2fd4fea91df6c4cce620ec977","signature":false},{"version":"370f98a39917baa5b5c1484f9e87d6544f568d9e90c5ddfcda4c2bdf86f16e18","signature":false},{"version":"4aae7433cc74dbe0abd1192e71755184b9a6a0869fbcf366056e5c09d400fe77","signature":false},{"version":"49ff09ed71411be1575b68fe206b06916a482fa8456a408359a4d6345f070cea","signature":false},{"version":"16b684acd5e3aee1cdaf4a1f4cbe64ea61f0c2b14a0d169f4d4ec9fe69fbe782","signature":false},{"version":"cd95d3123cad05acf27a414d747e4b01fee415a2d416981bf6d4516a7deba0f0","signature":false},{"version":"785d23d8bb17f7004d267960404da38316c6689d68786c597592e7a4f8176f38","signature":false},{"version":"c4706e63feb8d1fbaae93971b3d59f2faf7c485190df995531c78c519b399d46","signature":false},{"version":"d974f5d5ee0f75fdaefbd1ee0eb2740a5260524558b3c878ba33e56f37796876","signature":false},{"version":"0f84ec980137d904f174aee09c4a08a8a49dae6ab4f94ec781dbb19b241d6a06","signature":false},{"version":"e9a214ed959bf00c2c0ebc1c9969d64b605b8c920fbf67d32544b486feaa0ba8","signature":false},{"version":"91d0faaa789750b12a3cb62f2f3086a8661d1fc600d06fae1928da349f403fea","signature":false},{"version":"b4dbd251e49924863842b727919b47ef5d14e73e963f38ed4c3ebe05b25f271b","signature":false},{"version":"e46c50c3340620b1435fa89c6a5c48955db4f90a7b778af1ec1eff378e64d6ff","signature":false},{"version":"6392353adcff7db02a3f5dcacb5637b791dbbcb76125aac3075da2519af9785a","signature":false,"impliedFormat":99},{"version":"1f3952b74b8c766a2e602a0ba2db19d3d872d00bab4e01746c6b7229c585086c","signature":false,"impliedFormat":99},{"version":"e67238b39f3733e91e1000f5abf105c096cf61ca75eb1671086f7ec68689f646","signature":false},{"version":"92ff2ee2addc582f09b4c2cc6d19f7010c1dc46a801493a67e816dad1728a702","signature":false},{"version":"8bd310bf0ef673cb7cf4161acf37b52870a644d54adb3880c9fcc93c8920f44f","signature":false},{"version":"a49f9c839d86efb90ca4d9c244b18fc9b304a0da9e748282b88f2a44b74c09aa","signature":false},{"version":"7c653e5a71dfd19c9795aad97844792bd453c09c9318507d2c37398a3b8da62f","signature":false},{"version":"2ab5d412ffa57dbca06de472201ddaea1c41b8a515c74667b7059bf334cbb20f","signature":false},{"version":"034d31e472e4e70878fdac24f6314c3355b5b065c3eba828a75f824a83c20341","signature":false},{"version":"3c0c4a0730704889504deb1457bd552134b43f6e2367cfa0d1378b881e779c81","signature":false},{"version":"76e93d96bc19a32eb66e4fd28c96e4d3ded687202893eabf550f835230add683","signature":false},{"version":"3913d85082a4eda81a195bacbd18a93aeb39103bf930ad397c69e1f7521ddf8d","signature":false},{"version":"623de97f632c3c7091a19759e01b1764a3a64aac3ae2ea890c410cc37fd4258e","signature":false},{"version":"ba9ca691d5427129c4c651d308fc027aa3bccdb6484ec90f016a4f2a77f9e7b9","signature":false},{"version":"2c04659a5a9897aee5307e3aad32283ee831ffc7918fcc2a4b7f50065ccfc25b","signature":false},{"version":"96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","signature":false,"impliedFormat":1}],"root":[[410,429],[432,444]],"options":{"allowJs":true,"composite":false,"declarationMap":false,"emitDeclarationOnly":false,"esModuleInterop":true,"jsx":1,"module":99,"skipLibCheck":true,"strict":true,"tsBuildInfoFile":"./.tsbuildinfo"},"referencedMap":[[438,1],[439,2],[440,3],[437,4],[441,5],[442,6],[443,7],[444,8],[410,9],[363,10],[445,10],[142,11],[143,11],[144,12],[99,13],[145,14],[146,15],[147,16],[94,10],[97,17],[95,10],[96,10],[148,18],[149,19],[150,20],[151,21],[152,22],[153,23],[154,23],[155,24],[156,25],[157,26],[158,27],[100,10],[98,10],[159,28],[160,29],[161,30],[193,31],[162,32],[163,33],[164,34],[165,35],[166,36],[167,37],[168,38],[169,39],[170,40],[171,41],[172,41],[173,42],[174,10],[175,43],[177,44],[176,45],[178,46],[179,47],[180,48],[181,49],[182,50],[183,51],[184,52],[185,53],[186,54],[187,55],[188,56],[189,57],[190,58],[101,10],[102,10],[103,10],[141,59],[191,60],[192,61],[86,10],[198,62],[199,63],[197,64],[195,65],[196,66],[84,10],[87,67],[286,64],[85,10],[431,68],[430,10],[93,69],[366,70],[370,71],[372,72],[219,73],[233,74],[337,75],[265,10],[340,76],[301,77],[310,78],[338,79],[220,80],[264,10],[266,81],[339,82],[240,83],[221,84],[245,83],[234,83],[204,83],[292,85],[293,86],[209,10],[289,87],[294,88],[381,89],[287,88],[382,90],[271,10],[290,91],[394,92],[393,93],[296,88],[392,10],[390,10],[391,94],[291,64],[278,95],[279,96],[288,97],[305,98],[306,99],[295,100],[273,101],[274,102],[385,103],[388,104],[252,105],[251,106],[250,107],[397,64],[249,108],[225,10],[400,10],[403,10],[402,64],[404,109],[200,10],[331,10],[232,110],[202,111],[354,10],[355,10],[357,10],[360,112],[356,10],[358,113],[359,113],[218,10],[231,10],[365,114],[373,115],[377,116],[214,117],[281,118],[280,10],[272,101],[300,119],[298,120],[297,10],[299,10],[304,121],[276,122],[213,123],[238,124],[328,125],[205,126],[212,127],[201,75],[342,128],[352,129],[341,10],[351,130],[239,10],[223,131],[319,132],[318,10],[325,133],[327,134],[320,135],[324,136],[326,133],[323,135],[322,133],[321,135],[261,137],[246,137],[313,138],[247,138],[207,139],[206,10],[317,140],[316,141],[315,142],[314,143],[208,144],[285,145],[302,146],[284,147],[309,148],[311,149],[308,147],[241,144],[194,10],[329,150],[267,151],[303,10],[350,152],[270,153],[345,154],[211,10],[346,155],[348,156],[349,157],[332,10],[344,126],[243,158],[330,159],[353,160],[215,10],[217,10],[222,161],[312,162],[210,163],[216,10],[269,164],[268,165],[224,166],[277,167],[275,168],[226,169],[228,170],[401,10],[227,171],[229,172],[368,10],[367,10],[369,10],[399,10],[230,173],[283,64],[92,10],[307,174],[253,10],[263,175],[242,10],[375,64],[384,176],[260,64],[379,88],[259,177],[362,178],[258,176],[203,10],[386,179],[256,64],[257,64],[248,10],[262,10],[255,180],[254,181],[244,182],[237,100],[347,10],[236,183],[235,10],[371,10],[282,64],[364,184],[83,10],[91,185],[88,64],[89,10],[90,10],[343,186],[336,187],[335,10],[334,188],[333,10],[374,189],[376,190],[378,191],[380,192],[383,193],[409,194],[387,194],[408,195],[389,196],[395,197],[396,198],[398,199],[405,200],[407,10],[406,201],[361,202],[81,10],[82,10],[13,10],[14,10],[16,10],[15,10],[2,10],[17,10],[18,10],[19,10],[20,10],[21,10],[22,10],[23,10],[24,10],[3,10],[25,10],[26,10],[4,10],[27,10],[31,10],[28,10],[29,10],[30,10],[32,10],[33,10],[34,10],[5,10],[35,10],[36,10],[37,10],[38,10],[6,10],[42,10],[39,10],[40,10],[41,10],[43,10],[7,10],[44,10],[49,10],[50,10],[45,10],[46,10],[47,10],[48,10],[8,10],[54,10],[51,10],[52,10],[53,10],[55,10],[9,10],[56,10],[57,10],[58,10],[60,10],[59,10],[61,10],[62,10],[10,10],[63,10],[64,10],[65,10],[11,10],[66,10],[67,10],[68,10],[69,10],[70,10],[1,10],[71,10],[72,10],[12,10],[76,10],[74,10],[79,10],[78,10],[73,10],[77,10],[75,10],[80,10],[119,203],[129,204],[118,203],[139,205],[110,206],[109,207],[138,201],[132,208],[137,209],[112,210],[126,211],[111,212],[135,213],[107,214],[106,201],[136,215],[108,216],[113,217],[114,10],[117,217],[104,10],[140,218],[130,219],[121,220],[122,221],[124,222],[120,223],[123,224],[133,201],[115,225],[116,226],[125,227],[105,228],[128,219],[127,217],[131,10],[134,229],[412,230],[426,231],[421,232],[427,233],[425,234],[428,235],[429,236],[435,237],[436,238],[417,233],[433,239],[418,231],[432,239],[422,240],[420,241],[434,239],[424,240],[423,242],[419,243],[416,231],[413,64],[414,10],[415,10],[411,10]],"changeFileSet":[438,439,440,437,441,442,443,444,410,363,445,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,431,430,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,421,427,425,428,429,435,436,417,433,418,432,422,420,434,424,423,419,416,413,414,415,411],"version":"5.9.3"}
\ No newline at end of file
diff --git a/frontend/.next/react-loadable-manifest.json b/frontend/.next/react-loadable-manifest.json
index f271302b..9e26dfee 100644
--- a/frontend/.next/react-loadable-manifest.json
+++ b/frontend/.next/react-loadable-manifest.json
@@ -1,20 +1 @@
-{
- "components/capital-flow.tsx -> echarts": {
- "id": "components/capital-flow.tsx -> echarts",
- "files": [
- "static/chunks/_app-pages-browser_node_modules_echarts_index_js.js"
- ]
- },
- "components/kline-chart.tsx -> echarts": {
- "id": "components/kline-chart.tsx -> echarts",
- "files": [
- "static/chunks/_app-pages-browser_node_modules_echarts_index_js.js"
- ]
- },
- "components/score-radar.tsx -> echarts": {
- "id": "components/score-radar.tsx -> echarts",
- "files": [
- "static/chunks/_app-pages-browser_node_modules_echarts_index_js.js"
- ]
- }
-}
\ No newline at end of file
+{}
\ 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 58c43306..9ca37238 100644
--- a/frontend/.next/server/app-paths-manifest.json
+++ b/frontend/.next/server/app-paths-manifest.json
@@ -1,4 +1,5 @@
{
- "/stock/[code]/page": "app/stock/[code]/page.js",
- "/page": "app/page.js"
+ "/recommendations/page": "app/recommendations/page.js",
+ "/page": "app/page.js",
+ "/sectors/page": "app/sectors/page.js"
}
\ No newline at end of file
diff --git a/frontend/.next/server/middleware-build-manifest.js b/frontend/.next/server/middleware-build-manifest.js
index 424a1a19..36489d8c 100644
--- a/frontend/.next/server/middleware-build-manifest.js
+++ b/frontend/.next/server/middleware-build-manifest.js
@@ -2,9 +2,7 @@ self.__BUILD_MANIFEST = {
"polyfillFiles": [
"static/chunks/polyfills.js"
],
- "devFiles": [
- "static/chunks/react-refresh.js"
- ],
+ "devFiles": [],
"ampDevFiles": [],
"lowPriorityFiles": [],
"rootMainFiles": [
@@ -12,16 +10,7 @@ self.__BUILD_MANIFEST = {
"static/chunks/main-app.js"
],
"pages": {
- "/_app": [
- "static/chunks/webpack.js",
- "static/chunks/main.js",
- "static/chunks/pages/_app.js"
- ],
- "/_error": [
- "static/chunks/webpack.js",
- "static/chunks/main.js",
- "static/chunks/pages/_error.js"
- ]
+ "/_app": []
},
"ampFirstPages": []
};
diff --git a/frontend/.next/server/middleware-react-loadable-manifest.js b/frontend/.next/server/middleware-react-loadable-manifest.js
index 792ffee4..ca34f09f 100644
--- a/frontend/.next/server/middleware-react-loadable-manifest.js
+++ b/frontend/.next/server/middleware-react-loadable-manifest.js
@@ -1 +1 @@
-self.__REACT_LOADABLE_MANIFEST="{\"components/capital-flow.tsx -> echarts\":{\"id\":\"components/capital-flow.tsx -> echarts\",\"files\":[\"static/chunks/_app-pages-browser_node_modules_echarts_index_js.js\"]},\"components/kline-chart.tsx -> echarts\":{\"id\":\"components/kline-chart.tsx -> echarts\",\"files\":[\"static/chunks/_app-pages-browser_node_modules_echarts_index_js.js\"]},\"components/score-radar.tsx -> echarts\":{\"id\":\"components/score-radar.tsx -> echarts\",\"files\":[\"static/chunks/_app-pages-browser_node_modules_echarts_index_js.js\"]}}"
\ No newline at end of file
+self.__REACT_LOADABLE_MANIFEST="{}"
\ No newline at end of file
diff --git a/frontend/.next/server/pages-manifest.json b/frontend/.next/server/pages-manifest.json
index a679766a..9e26dfee 100644
--- a/frontend/.next/server/pages-manifest.json
+++ b/frontend/.next/server/pages-manifest.json
@@ -1,5 +1 @@
-{
- "/_app": "pages/_app.js",
- "/_error": "pages/_error.js",
- "/_document": "pages/_document.js"
-}
\ No newline at end of file
+{}
\ 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 bf6193e6..7a5db121 100644
--- a/frontend/.next/server/server-reference-manifest.json
+++ b/frontend/.next/server/server-reference-manifest.json
@@ -1,5 +1,5 @@
{
"node": {},
"edge": {},
- "encryptionKey": "b90zeeYzMcSqNivimWn6T2PQQNxojiQrSeFlOxUaP4Q="
+ "encryptionKey": "IAps6Nn+QS9GVH+sOr6laVRGfUJrD0aLxGy9A/+XkIs="
}
\ No newline at end of file
diff --git a/frontend/.next/server/webpack-runtime.js b/frontend/.next/server/webpack-runtime.js
index 843a7862..1efaaa2b 100644
--- a/frontend/.next/server/webpack-runtime.js
+++ b/frontend/.next/server/webpack-runtime.js
@@ -125,7 +125,7 @@
/******/
/******/ /* webpack/runtime/getFullHash */
/******/ (() => {
-/******/ __webpack_require__.h = () => ("64fc734a2bef9f33")
+/******/ __webpack_require__.h = () => ("a035f49818643978")
/******/ })();
/******/
/******/ /* webpack/runtime/hasOwnProperty shorthand */
diff --git a/frontend/.next/trace b/frontend/.next/trace
index 9ac0766f..974c1acd 100644
--- a/frontend/.next/trace
+++ b/frontend/.next/trace
@@ -1,60 +1,19 @@
-[{"name":"hot-reloader","duration":26,"timestamp":6051932126005,"id":3,"tags":{"version":"14.2.35","isTurbopack":false},"startTime":1775658880038,"traceId":"63571fab0751eb1f"},{"name":"start","duration":1,"timestamp":6051932126541,"id":4,"parentId":3,"tags":{},"startTime":1775658880038,"traceId":"63571fab0751eb1f"},{"name":"get-version-info","duration":873298,"timestamp":6051932126652,"id":5,"parentId":4,"tags":{},"startTime":1775658880038,"traceId":"63571fab0751eb1f"},{"name":"clean","duration":147313,"timestamp":6051933000030,"id":6,"parentId":4,"tags":{},"startTime":1775658880912,"traceId":"63571fab0751eb1f"},{"name":"create-pages-mapping","duration":113,"timestamp":6051933148630,"id":8,"parentId":7,"tags":{},"startTime":1775658881060,"traceId":"63571fab0751eb1f"},{"name":"create-entrypoints","duration":719866,"timestamp":6051933148759,"id":9,"parentId":7,"tags":{},"startTime":1775658881061,"traceId":"63571fab0751eb1f"},{"name":"generate-webpack-config","duration":125625,"timestamp":6051933868652,"id":10,"parentId":7,"tags":{},"startTime":1775658881780,"traceId":"63571fab0751eb1f"},{"name":"get-webpack-config","duration":845712,"timestamp":6051933148579,"id":7,"parentId":4,"tags":{},"startTime":1775658881060,"traceId":"63571fab0751eb1f"},{"name":"make","duration":1513,"timestamp":6051934064016,"id":12,"parentId":11,"tags":{},"startTime":1775658881976,"traceId":"63571fab0751eb1f"},{"name":"chunk-graph","duration":484,"timestamp":6051934068711,"id":14,"parentId":13,"tags":{},"startTime":1775658881981,"traceId":"63571fab0751eb1f"},{"name":"optimize-modules","duration":15,"timestamp":6051934069265,"id":16,"parentId":13,"tags":{},"startTime":1775658881981,"traceId":"63571fab0751eb1f"},{"name":"optimize-chunks","duration":87,"timestamp":6051934069407,"id":17,"parentId":13,"tags":{},"startTime":1775658881981,"traceId":"63571fab0751eb1f"},{"name":"optimize-tree","duration":13,"timestamp":6051934069536,"id":18,"parentId":13,"tags":{},"startTime":1775658881981,"traceId":"63571fab0751eb1f"},{"name":"optimize-chunk-modules","duration":13,"timestamp":6051934069644,"id":19,"parentId":13,"tags":{},"startTime":1775658881981,"traceId":"63571fab0751eb1f"},{"name":"optimize","duration":473,"timestamp":6051934069240,"id":15,"parentId":13,"tags":{},"startTime":1775658881981,"traceId":"63571fab0751eb1f"},{"name":"module-hash","duration":49,"timestamp":6051934070301,"id":20,"parentId":13,"tags":{},"startTime":1775658881982,"traceId":"63571fab0751eb1f"},{"name":"code-generation","duration":136,"timestamp":6051934070363,"id":21,"parentId":13,"tags":{},"startTime":1775658881982,"traceId":"63571fab0751eb1f"},{"name":"hash","duration":368,"timestamp":6051934070629,"id":22,"parentId":13,"tags":{},"startTime":1775658881982,"traceId":"63571fab0751eb1f"},{"name":"code-generation-jobs","duration":80,"timestamp":6051934070996,"id":23,"parentId":13,"tags":{},"startTime":1775658881983,"traceId":"63571fab0751eb1f"},{"name":"module-assets","duration":53,"timestamp":6051934071056,"id":24,"parentId":13,"tags":{},"startTime":1775658881983,"traceId":"63571fab0751eb1f"},{"name":"create-chunk-assets","duration":205,"timestamp":6051934071115,"id":25,"parentId":13,"tags":{},"startTime":1775658881983,"traceId":"63571fab0751eb1f"},{"name":"NextJsBuildManifest-generateClientManifest","duration":1516,"timestamp":6051934121370,"id":27,"parentId":11,"tags":{},"startTime":1775658882033,"traceId":"63571fab0751eb1f"},{"name":"NextJsBuildManifest-createassets","duration":2132,"timestamp":6051934120768,"id":26,"parentId":11,"tags":{},"startTime":1775658882033,"traceId":"63571fab0751eb1f"},{"name":"seal","duration":54938,"timestamp":6051934068606,"id":13,"parentId":11,"tags":{},"startTime":1775658881980,"traceId":"63571fab0751eb1f"},{"name":"webpack-compilation","duration":67307,"timestamp":6051934056369,"id":11,"parentId":3,"tags":{"name":"client"},"startTime":1775658881968,"traceId":"63571fab0751eb1f"},{"name":"emit","duration":4848,"timestamp":6051934123868,"id":28,"parentId":3,"tags":{},"startTime":1775658882036,"traceId":"63571fab0751eb1f"},{"name":"make","duration":877,"timestamp":6051934139743,"id":30,"parentId":29,"tags":{},"startTime":1775658882052,"traceId":"63571fab0751eb1f"},{"name":"chunk-graph","duration":15,"timestamp":6051934140930,"id":32,"parentId":31,"tags":{},"startTime":1775658882053,"traceId":"63571fab0751eb1f"},{"name":"optimize-modules","duration":2,"timestamp":6051934140959,"id":34,"parentId":31,"tags":{},"startTime":1775658882053,"traceId":"63571fab0751eb1f"},{"name":"optimize-chunks","duration":33,"timestamp":6051934140997,"id":35,"parentId":31,"tags":{},"startTime":1775658882053,"traceId":"63571fab0751eb1f"},{"name":"optimize-tree","duration":3,"timestamp":6051934141052,"id":36,"parentId":31,"tags":{},"startTime":1775658882053,"traceId":"63571fab0751eb1f"},{"name":"optimize-chunk-modules","duration":3,"timestamp":6051934141087,"id":37,"parentId":31,"tags":{},"startTime":1775658882053,"traceId":"63571fab0751eb1f"},{"name":"optimize","duration":175,"timestamp":6051934140955,"id":33,"parentId":31,"tags":{},"startTime":1775658882053,"traceId":"63571fab0751eb1f"},{"name":"module-hash","duration":5,"timestamp":6051934141193,"id":38,"parentId":31,"tags":{},"startTime":1775658882053,"traceId":"63571fab0751eb1f"},{"name":"code-generation","duration":4,"timestamp":6051934141203,"id":39,"parentId":31,"tags":{},"startTime":1775658882053,"traceId":"63571fab0751eb1f"},{"name":"hash","duration":33,"timestamp":6051934141224,"id":40,"parentId":31,"tags":{},"startTime":1775658882053,"traceId":"63571fab0751eb1f"},{"name":"code-generation-jobs","duration":19,"timestamp":6051934141257,"id":41,"parentId":31,"tags":{},"startTime":1775658882053,"traceId":"63571fab0751eb1f"},{"name":"module-assets","duration":6,"timestamp":6051934141272,"id":42,"parentId":31,"tags":{},"startTime":1775658882053,"traceId":"63571fab0751eb1f"},{"name":"create-chunk-assets","duration":7,"timestamp":6051934141281,"id":43,"parentId":31,"tags":{},"startTime":1775658882053,"traceId":"63571fab0751eb1f"},{"name":"seal","duration":918,"timestamp":6051934140906,"id":31,"parentId":29,"tags":{},"startTime":1775658882053,"traceId":"63571fab0751eb1f"},{"name":"webpack-compilation","duration":2809,"timestamp":6051934139097,"id":29,"parentId":3,"tags":{"name":"server"},"startTime":1775658882051,"traceId":"63571fab0751eb1f"},{"name":"emit","duration":1415,"timestamp":6051934141945,"id":44,"parentId":3,"tags":{},"startTime":1775658882054,"traceId":"63571fab0751eb1f"},{"name":"make","duration":73,"timestamp":6051934145542,"id":46,"parentId":45,"tags":{},"startTime":1775658882057,"traceId":"63571fab0751eb1f"},{"name":"chunk-graph","duration":12,"timestamp":6051934145876,"id":48,"parentId":47,"tags":{},"startTime":1775658882058,"traceId":"63571fab0751eb1f"},{"name":"optimize-modules","duration":2,"timestamp":6051934145896,"id":50,"parentId":47,"tags":{},"startTime":1775658882058,"traceId":"63571fab0751eb1f"},{"name":"optimize-chunks","duration":5,"timestamp":6051934145929,"id":51,"parentId":47,"tags":{},"startTime":1775658882058,"traceId":"63571fab0751eb1f"},{"name":"optimize-tree","duration":3,"timestamp":6051934145945,"id":52,"parentId":47,"tags":{},"startTime":1775658882058,"traceId":"63571fab0751eb1f"},{"name":"optimize-chunk-modules","duration":2,"timestamp":6051934145956,"id":53,"parentId":47,"tags":{},"startTime":1775658882058,"traceId":"63571fab0751eb1f"},{"name":"optimize","duration":73,"timestamp":6051934145893,"id":49,"parentId":47,"tags":{},"startTime":1775658882058,"traceId":"63571fab0751eb1f"},{"name":"module-hash","duration":4,"timestamp":6051934146012,"id":54,"parentId":47,"tags":{},"startTime":1775658882058,"traceId":"63571fab0751eb1f"},{"name":"code-generation","duration":3,"timestamp":6051934146020,"id":55,"parentId":47,"tags":{},"startTime":1775658882058,"traceId":"63571fab0751eb1f"},{"name":"hash","duration":36,"timestamp":6051934146046,"id":56,"parentId":47,"tags":{},"startTime":1775658882058,"traceId":"63571fab0751eb1f"},{"name":"code-generation-jobs","duration":8,"timestamp":6051934146082,"id":57,"parentId":47,"tags":{},"startTime":1775658882058,"traceId":"63571fab0751eb1f"},{"name":"module-assets","duration":4,"timestamp":6051934146088,"id":58,"parentId":47,"tags":{},"startTime":1775658882058,"traceId":"63571fab0751eb1f"},{"name":"create-chunk-assets","duration":5,"timestamp":6051934146094,"id":59,"parentId":47,"tags":{},"startTime":1775658882058,"traceId":"63571fab0751eb1f"},{"name":"seal","duration":491,"timestamp":6051934145861,"id":47,"parentId":45,"tags":{},"startTime":1775658882058,"traceId":"63571fab0751eb1f"},{"name":"webpack-compilation","duration":1576,"timestamp":6051934144792,"id":45,"parentId":3,"tags":{"name":"edge-server"},"startTime":1775658882057,"traceId":"63571fab0751eb1f"},{"name":"emit","duration":657,"timestamp":6051934146386,"id":60,"parentId":3,"tags":{},"startTime":1775658882058,"traceId":"63571fab0751eb1f"}]
-[{"name":"make","duration":157,"timestamp":6051934363733,"id":65,"parentId":64,"tags":{},"startTime":1775658882276,"traceId":"63571fab0751eb1f"},{"name":"chunk-graph","duration":12,"timestamp":6051934363972,"id":67,"parentId":66,"tags":{},"startTime":1775658882276,"traceId":"63571fab0751eb1f"},{"name":"optimize-modules","duration":2,"timestamp":6051934363999,"id":69,"parentId":66,"tags":{},"startTime":1775658882276,"traceId":"63571fab0751eb1f"},{"name":"optimize-chunks","duration":4,"timestamp":6051934364009,"id":70,"parentId":66,"tags":{},"startTime":1775658882276,"traceId":"63571fab0751eb1f"},{"name":"optimize-tree","duration":3,"timestamp":6051934364018,"id":71,"parentId":66,"tags":{},"startTime":1775658882276,"traceId":"63571fab0751eb1f"},{"name":"optimize-chunk-modules","duration":2,"timestamp":6051934364030,"id":72,"parentId":66,"tags":{},"startTime":1775658882276,"traceId":"63571fab0751eb1f"},{"name":"optimize","duration":55,"timestamp":6051934363989,"id":68,"parentId":66,"tags":{},"startTime":1775658882276,"traceId":"63571fab0751eb1f"},{"name":"module-hash","duration":4,"timestamp":6051934364090,"id":73,"parentId":66,"tags":{},"startTime":1775658882276,"traceId":"63571fab0751eb1f"},{"name":"code-generation","duration":3,"timestamp":6051934364097,"id":74,"parentId":66,"tags":{},"startTime":1775658882276,"traceId":"63571fab0751eb1f"},{"name":"hash","duration":25,"timestamp":6051934364115,"id":75,"parentId":66,"tags":{},"startTime":1775658882276,"traceId":"63571fab0751eb1f"},{"name":"code-generation-jobs","duration":8,"timestamp":6051934364140,"id":76,"parentId":66,"tags":{},"startTime":1775658882276,"traceId":"63571fab0751eb1f"},{"name":"module-assets","duration":3,"timestamp":6051934364146,"id":77,"parentId":66,"tags":{},"startTime":1775658882276,"traceId":"63571fab0751eb1f"},{"name":"create-chunk-assets","duration":6,"timestamp":6051934364152,"id":78,"parentId":66,"tags":{},"startTime":1775658882276,"traceId":"63571fab0751eb1f"},{"name":"NextJsBuildManifest-generateClientManifest","duration":162,"timestamp":6051934364345,"id":80,"parentId":64,"tags":{},"startTime":1775658882276,"traceId":"63571fab0751eb1f"},{"name":"NextJsBuildManifest-createassets","duration":225,"timestamp":6051934364284,"id":79,"parentId":64,"tags":{},"startTime":1775658882276,"traceId":"63571fab0751eb1f"},{"name":"seal","duration":623,"timestamp":6051934363957,"id":66,"parentId":64,"tags":{},"startTime":1775658882276,"traceId":"63571fab0751eb1f"},{"name":"webpack-compilation","duration":1231,"timestamp":6051934363400,"id":64,"parentId":61,"tags":{"name":"client"},"startTime":1775658882275,"traceId":"63571fab0751eb1f"},{"name":"setup-dev-bundler","duration":2374398,"timestamp":6051932014766,"id":2,"parentId":1,"tags":{},"startTime":1775658879927,"traceId":"63571fab0751eb1f"},{"name":"run-instrumentation-hook","duration":27,"timestamp":6051934414104,"id":82,"parentId":1,"tags":{},"startTime":1775658882326,"traceId":"63571fab0751eb1f"},{"name":"emit","duration":53665,"timestamp":6051934364642,"id":81,"parentId":61,"tags":{},"startTime":1775658882276,"traceId":"63571fab0751eb1f"},{"name":"webpack-invalidated-client","duration":58089,"timestamp":6051934361106,"id":61,"parentId":3,"tags":{"trigger":"manual"},"startTime":1775658882273,"traceId":"63571fab0751eb1f"},{"name":"make","duration":390,"timestamp":6051934422415,"id":84,"parentId":83,"tags":{},"startTime":1775658882334,"traceId":"63571fab0751eb1f"},{"name":"chunk-graph","duration":21,"timestamp":6051934423263,"id":86,"parentId":85,"tags":{},"startTime":1775658882335,"traceId":"63571fab0751eb1f"},{"name":"optimize-modules","duration":2,"timestamp":6051934423295,"id":88,"parentId":85,"tags":{},"startTime":1775658882335,"traceId":"63571fab0751eb1f"},{"name":"optimize-chunks","duration":175,"timestamp":6051934423388,"id":89,"parentId":85,"tags":{},"startTime":1775658882335,"traceId":"63571fab0751eb1f"},{"name":"optimize-tree","duration":3,"timestamp":6051934423575,"id":90,"parentId":85,"tags":{},"startTime":1775658882335,"traceId":"63571fab0751eb1f"},{"name":"optimize-chunk-modules","duration":2,"timestamp":6051934423592,"id":91,"parentId":85,"tags":{},"startTime":1775658882335,"traceId":"63571fab0751eb1f"},{"name":"optimize","duration":316,"timestamp":6051934423292,"id":87,"parentId":85,"tags":{},"startTime":1775658882335,"traceId":"63571fab0751eb1f"},{"name":"module-hash","duration":6,"timestamp":6051934423871,"id":92,"parentId":85,"tags":{},"startTime":1775658882336,"traceId":"63571fab0751eb1f"},{"name":"code-generation","duration":4,"timestamp":6051934423882,"id":93,"parentId":85,"tags":{},"startTime":1775658882336,"traceId":"63571fab0751eb1f"},{"name":"hash","duration":175,"timestamp":6051934423902,"id":94,"parentId":85,"tags":{},"startTime":1775658882336,"traceId":"63571fab0751eb1f"},{"name":"code-generation-jobs","duration":29,"timestamp":6051934424076,"id":95,"parentId":85,"tags":{},"startTime":1775658882336,"traceId":"63571fab0751eb1f"},{"name":"module-assets","duration":7,"timestamp":6051934424100,"id":96,"parentId":85,"tags":{},"startTime":1775658882336,"traceId":"63571fab0751eb1f"},{"name":"create-chunk-assets","duration":9,"timestamp":6051934424110,"id":97,"parentId":85,"tags":{},"startTime":1775658882336,"traceId":"63571fab0751eb1f"},{"name":"seal","duration":1294,"timestamp":6051934423234,"id":85,"parentId":83,"tags":{},"startTime":1775658882335,"traceId":"63571fab0751eb1f"},{"name":"webpack-compilation","duration":2794,"timestamp":6051934421841,"id":83,"parentId":62,"tags":{"name":"server"},"startTime":1775658882334,"traceId":"63571fab0751eb1f"},{"name":"start-dev-server","duration":2713575,"timestamp":6051931728205,"id":1,"tags":{"cpus":"10","platform":"darwin","memory.freeMem":"102596608","memory.totalMem":"17179869184","memory.heapSizeLimit":"8640266240","isTurbopack":false,"memory.rss":"205864960","memory.heapTotal":"104906752","memory.heapUsed":"72709072"},"startTime":1775658879640,"traceId":"63571fab0751eb1f"},{"name":"emit","duration":19258,"timestamp":6051934424655,"id":98,"parentId":62,"tags":{},"startTime":1775658882336,"traceId":"63571fab0751eb1f"},{"name":"webpack-invalidated-server","duration":83342,"timestamp":6051934361198,"id":62,"parentId":3,"tags":{"trigger":"manual"},"startTime":1775658882273,"traceId":"63571fab0751eb1f"},{"name":"make","duration":187,"timestamp":6051934446051,"id":100,"parentId":99,"tags":{},"startTime":1775658882358,"traceId":"63571fab0751eb1f"},{"name":"chunk-graph","duration":14,"timestamp":6051934446550,"id":102,"parentId":101,"tags":{},"startTime":1775658882358,"traceId":"63571fab0751eb1f"},{"name":"optimize-modules","duration":2,"timestamp":6051934446575,"id":104,"parentId":101,"tags":{},"startTime":1775658882358,"traceId":"63571fab0751eb1f"},{"name":"optimize-chunks","duration":5,"timestamp":6051934446585,"id":105,"parentId":101,"tags":{},"startTime":1775658882358,"traceId":"63571fab0751eb1f"},{"name":"optimize-tree","duration":3,"timestamp":6051934446596,"id":106,"parentId":101,"tags":{},"startTime":1775658882358,"traceId":"63571fab0751eb1f"},{"name":"optimize-chunk-modules","duration":3,"timestamp":6051934446610,"id":107,"parentId":101,"tags":{},"startTime":1775658882358,"traceId":"63571fab0751eb1f"},{"name":"optimize","duration":51,"timestamp":6051934446571,"id":103,"parentId":101,"tags":{},"startTime":1775658882358,"traceId":"63571fab0751eb1f"},{"name":"module-hash","duration":4,"timestamp":6051934446670,"id":108,"parentId":101,"tags":{},"startTime":1775658882358,"traceId":"63571fab0751eb1f"},{"name":"code-generation","duration":3,"timestamp":6051934446678,"id":109,"parentId":101,"tags":{},"startTime":1775658882358,"traceId":"63571fab0751eb1f"},{"name":"hash","duration":28,"timestamp":6051934446697,"id":110,"parentId":101,"tags":{},"startTime":1775658882359,"traceId":"63571fab0751eb1f"},{"name":"code-generation-jobs","duration":8,"timestamp":6051934446726,"id":111,"parentId":101,"tags":{},"startTime":1775658882359,"traceId":"63571fab0751eb1f"},{"name":"module-assets","duration":4,"timestamp":6051934446732,"id":112,"parentId":101,"tags":{},"startTime":1775658882359,"traceId":"63571fab0751eb1f"},{"name":"create-chunk-assets","duration":7,"timestamp":6051934446738,"id":113,"parentId":101,"tags":{},"startTime":1775658882359,"traceId":"63571fab0751eb1f"},{"name":"seal","duration":403,"timestamp":6051934446532,"id":101,"parentId":99,"tags":{},"startTime":1775658882358,"traceId":"63571fab0751eb1f"},{"name":"webpack-compilation","duration":1268,"timestamp":6051934445683,"id":99,"parentId":63,"tags":{"name":"edge-server"},"startTime":1775658882358,"traceId":"63571fab0751eb1f"},{"name":"client-success","duration":3,"timestamp":6051934449015,"id":115,"parentId":3,"tags":{},"startTime":1775658882361,"traceId":"63571fab0751eb1f"},{"name":"emit","duration":3184,"timestamp":6051934446962,"id":114,"parentId":63,"tags":{},"startTime":1775658882359,"traceId":"63571fab0751eb1f"},{"name":"webpack-invalidated-edge-server","duration":89700,"timestamp":6051934361219,"id":63,"parentId":3,"tags":{"trigger":"manual"},"startTime":1775658882273,"traceId":"63571fab0751eb1f"}]
-[{"name":"next-client-pages-loader","duration":326,"timestamp":6051934561447,"id":128,"parentId":127,"tags":{"absolutePagePath":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/not-found-error.js"},"startTime":1775658882473,"traceId":"63571fab0751eb1f"},{"name":"build-module","duration":105091,"timestamp":6051934549986,"id":127,"parentId":125,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?absolutePagePath=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fnot-found-error.js&page=%2F_not-found%2Fpage!","layer":"app-pages-browser"},"startTime":1775658882462,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1019,"timestamp":6051934760615,"id":136,"parentId":135,"tags":{},"startTime":1775658882672,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":241,"timestamp":6051934761671,"id":137,"parentId":135,"tags":{},"startTime":1775658882673,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":7196,"timestamp":6051934759372,"id":135,"parentId":123,"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":1775658882671,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":2452,"timestamp":6051934771103,"id":139,"parentId":138,"tags":{},"startTime":1775658882683,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":142,"timestamp":6051934773575,"id":140,"parentId":138,"tags":{},"startTime":1775658882685,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":8411,"timestamp":6051934770780,"id":138,"parentId":135,"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":1775658882683,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":23603,"timestamp":6051934756555,"id":132,"parentId":131,"tags":{},"startTime":1775658882668,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":24257,"timestamp":6051934755910,"id":131,"parentId":129,"tags":{},"startTime":1775658882668,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":31969,"timestamp":6051934750461,"id":129,"parentId":124,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/app-next-dev.js","layer":"app-pages-browser"},"startTime":1775658882662,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":25795,"timestamp":6051934756684,"id":134,"parentId":133,"tags":{},"startTime":1775658882669,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":25891,"timestamp":6051934756590,"id":133,"parentId":130,"tags":{},"startTime":1775658882668,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":29063,"timestamp":6051934755684,"id":130,"parentId":127,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/not-found-error.js","layer":"app-pages-browser"},"startTime":1775658882668,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":3028,"timestamp":6051934788938,"id":147,"parentId":146,"tags":{},"startTime":1775658882701,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":3066,"timestamp":6051934788906,"id":146,"parentId":142,"tags":{},"startTime":1775658882701,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":5478,"timestamp":6051934788721,"id":142,"parentId":129,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/app-bootstrap.js","layer":"app-pages-browser"},"startTime":1775658882701,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":3917,"timestamp":6051934790871,"id":151,"parentId":150,"tags":{},"startTime":1775658882703,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":65,"timestamp":6051934794823,"id":152,"parentId":150,"tags":{},"startTime":1775658882707,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":5284,"timestamp":6051934790446,"id":150,"parentId":135,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react-refresh/runtime.js","layer":"app-pages-browser"},"startTime":1775658882702,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":8384,"timestamp":6051934788903,"id":145,"parentId":144,"tags":{},"startTime":1775658882701,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":8450,"timestamp":6051934788840,"id":144,"parentId":141,"tags":{},"startTime":1775658882701,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":11914,"timestamp":6051934788593,"id":141,"parentId":129,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/app-webpack.js","layer":"app-pages-browser"},"startTime":1775658882700,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":11546,"timestamp":6051934789017,"id":149,"parentId":148,"tags":{},"startTime":1775658882701,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":11626,"timestamp":6051934788939,"id":148,"parentId":143,"tags":{},"startTime":1775658882701,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":17464,"timestamp":6051934788781,"id":143,"parentId":129,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/app-index.js","layer":"app-pages-browser"},"startTime":1775658882701,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":4991,"timestamp":6051934817491,"id":160,"parentId":159,"tags":{},"startTime":1775658882729,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":5073,"timestamp":6051934817423,"id":159,"parentId":155,"tags":{},"startTime":1775658882729,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":7021,"timestamp":6051934817013,"id":155,"parentId":143,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/app-call-server.js","layer":"app-pages-browser"},"startTime":1775658882729,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":6643,"timestamp":6051934817419,"id":158,"parentId":157,"tags":{},"startTime":1775658882729,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":6742,"timestamp":6051934817321,"id":157,"parentId":154,"tags":{},"startTime":1775658882729,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":8233,"timestamp":6051934816848,"id":154,"parentId":143,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/on-recoverable-error.js","layer":"app-pages-browser"},"startTime":1775658882729,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":7917,"timestamp":6051934820233,"id":168,"parentId":167,"tags":{},"startTime":1775658882732,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":8096,"timestamp":6051934820059,"id":167,"parentId":162,"tags":{},"startTime":1775658882732,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":9774,"timestamp":6051934819431,"id":162,"parentId":143,"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":1775658882731,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":9524,"timestamp":6051934819846,"id":166,"parentId":165,"tags":{},"startTime":1775658882732,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":9629,"timestamp":6051934819744,"id":165,"parentId":161,"tags":{},"startTime":1775658882732,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":13765,"timestamp":6051934819279,"id":161,"parentId":143,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/app-link-gc.js","layer":"app-pages-browser"},"startTime":1775658882731,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":9547,"timestamp":6051934825583,"id":176,"parentId":175,"tags":{},"startTime":1775658882737,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":9574,"timestamp":6051934825559,"id":175,"parentId":171,"tags":{},"startTime":1775658882737,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":12426,"timestamp":6051934825415,"id":171,"parentId":143,"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":1775658882737,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":20853,"timestamp":6051934817082,"id":156,"parentId":153,"tags":{},"startTime":1775658882729,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":170,"timestamp":6051934837994,"id":177,"parentId":153,"tags":{},"startTime":1775658882750,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":22511,"timestamp":6051934816564,"id":153,"parentId":141,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/deployment-id.js","layer":"app-pages-browser"},"startTime":1775658882728,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":13546,"timestamp":6051934825555,"id":174,"parentId":173,"tags":{},"startTime":1775658882737,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":13614,"timestamp":6051934825488,"id":173,"parentId":170,"tags":{},"startTime":1775658882737,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":16227,"timestamp":6051934825373,"id":170,"parentId":143,"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":1775658882737,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":28389,"timestamp":6051934819704,"id":164,"parentId":163,"tags":{},"startTime":1775658882732,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":49,"timestamp":6051934848110,"id":194,"parentId":163,"tags":{},"startTime":1775658882760,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":36686,"timestamp":6051934819520,"id":163,"parentId":150,"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":1775658882731,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":12467,"timestamp":6051934843838,"id":187,"parentId":186,"tags":{},"startTime":1775658882756,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":12674,"timestamp":6051934843634,"id":186,"parentId":180,"tags":{},"startTime":1775658882755,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":14328,"timestamp":6051934842879,"id":180,"parentId":143,"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":1775658882755,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":13502,"timestamp":6051934843996,"id":193,"parentId":192,"tags":{},"startTime":1775658882756,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":13515,"timestamp":6051934843986,"id":192,"parentId":184,"tags":{},"startTime":1775658882756,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":15561,"timestamp":6051934843323,"id":184,"parentId":143,"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":1775658882755,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":15041,"timestamp":6051934843984,"id":191,"parentId":190,"tags":{},"startTime":1775658882756,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":15118,"timestamp":6051934843967,"id":190,"parentId":183,"tags":{},"startTime":1775658882756,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":17417,"timestamp":6051934843292,"id":183,"parentId":143,"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":1775658882755,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":16786,"timestamp":6051934843963,"id":189,"parentId":188,"tags":{},"startTime":1775658882756,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":16886,"timestamp":6051934843864,"id":188,"parentId":181,"tags":{},"startTime":1775658882756,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":19156,"timestamp":6051934843052,"id":181,"parentId":143,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/action-queue.js","layer":"app-pages-browser"},"startTime":1775658882755,"traceId":"63571fab0751eb1f"},{"name":"add-entry","duration":373659,"timestamp":6051934489672,"id":123,"parentId":121,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js"},"startTime":1775658882401,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":40434,"timestamp":6051934825447,"id":172,"parentId":169,"tags":{},"startTime":1775658882737,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":37,"timestamp":6051934865909,"id":197,"parentId":169,"tags":{},"startTime":1775658882778,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":41978,"timestamp":6051934825261,"id":169,"parentId":143,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/polyfills/polyfill-module.js","layer":"app-pages-browser"},"startTime":1775658882737,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":26888,"timestamp":6051934843360,"id":185,"parentId":182,"tags":{},"startTime":1775658882755,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":35,"timestamp":6051934870259,"id":201,"parentId":182,"tags":{},"startTime":1775658882782,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":27867,"timestamp":6051934843224,"id":182,"parentId":143,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/dev/hot-reloader-types.js","layer":"app-pages-browser"},"startTime":1775658882755,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":28342,"timestamp":6051934842805,"id":179,"parentId":178,"tags":{},"startTime":1775658882755,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":29054,"timestamp":6051934842419,"id":178,"parentId":130,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react/jsx-runtime.js","layer":"app-pages-browser"},"startTime":1775658882754,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":9467,"timestamp":6051934863792,"id":196,"parentId":195,"tags":{},"startTime":1775658882776,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":9711,"timestamp":6051934863750,"id":195,"parentId":130,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react/index.js","layer":"app-pages-browser"},"startTime":1775658882776,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":1446,"timestamp":6051934872263,"id":209,"parentId":208,"tags":{},"startTime":1775658882784,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":1459,"timestamp":6051934872252,"id":208,"parentId":203,"tags":{},"startTime":1775658882784,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":2462,"timestamp":6051934872093,"id":203,"parentId":162,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/not-found.js","layer":"app-pages-browser"},"startTime":1775658882784,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":3001,"timestamp":6051934872273,"id":211,"parentId":210,"tags":{},"startTime":1775658882784,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":3014,"timestamp":6051934872265,"id":210,"parentId":204,"tags":{},"startTime":1775658882784,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":3982,"timestamp":6051934872123,"id":204,"parentId":154,"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":1775658882784,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":4896,"timestamp":6051934872250,"id":207,"parentId":206,"tags":{},"startTime":1775658882784,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":4924,"timestamp":6051934872225,"id":206,"parentId":202,"tags":{},"startTime":1775658882784,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":8407,"timestamp":6051934872029,"id":202,"parentId":162,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/redirect.js","layer":"app-pages-browser"},"startTime":1775658882784,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":8183,"timestamp":6051934872283,"id":213,"parentId":212,"tags":{},"startTime":1775658882784,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":8193,"timestamp":6051934872275,"id":212,"parentId":205,"tags":{},"startTime":1775658882784,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":9897,"timestamp":6051934872149,"id":205,"parentId":171,"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":1775658882784,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":12622,"timestamp":6051934870012,"id":200,"parentId":199,"tags":{},"startTime":1775658882782,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":12654,"timestamp":6051934869983,"id":199,"parentId":198,"tags":{},"startTime":1775658882782,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":17451,"timestamp":6051934869885,"id":198,"parentId":155,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/app-router.js","layer":"app-pages-browser"},"startTime":1775658882782,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":12315,"timestamp":6051934875071,"id":223,"parentId":222,"tags":{},"startTime":1775658882787,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":12354,"timestamp":6051934875040,"id":222,"parentId":214,"tags":{},"startTime":1775658882787,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":13608,"timestamp":6051934874601,"id":214,"parentId":184,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/normalized-asset-prefix.js","layer":"app-pages-browser"},"startTime":1775658882786,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":13123,"timestamp":6051934875106,"id":229,"parentId":228,"tags":{},"startTime":1775658882787,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":13133,"timestamp":6051934875097,"id":228,"parentId":217,"tags":{},"startTime":1775658882787,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":14303,"timestamp":6051934874699,"id":217,"parentId":171,"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":1775658882787,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":13902,"timestamp":6051934875114,"id":231,"parentId":230,"tags":{},"startTime":1775658882787,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":13910,"timestamp":6051934875107,"id":230,"parentId":218,"tags":{},"startTime":1775658882787,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":15076,"timestamp":6051934874720,"id":218,"parentId":171,"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":1775658882787,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":14728,"timestamp":6051934875086,"id":225,"parentId":224,"tags":{},"startTime":1775658882787,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":14741,"timestamp":6051934875074,"id":224,"parentId":215,"tags":{},"startTime":1775658882787,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":15936,"timestamp":6051934874648,"id":215,"parentId":171,"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":1775658882786,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":15474,"timestamp":6051934875123,"id":233,"parentId":232,"tags":{},"startTime":1775658882787,"traceId":"63571fab0751eb1f"}]
-[{"name":"next-swc-loader","duration":15631,"timestamp":6051934875116,"id":232,"parentId":219,"tags":{},"startTime":1775658882787,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":17202,"timestamp":6051934874880,"id":219,"parentId":171,"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":1775658882787,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":17625,"timestamp":6051934875132,"id":235,"parentId":234,"tags":{},"startTime":1775658882787,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":17634,"timestamp":6051934875124,"id":234,"parentId":220,"tags":{},"startTime":1775658882787,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":18850,"timestamp":6051934874949,"id":220,"parentId":171,"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":1775658882787,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":18742,"timestamp":6051934875096,"id":227,"parentId":226,"tags":{},"startTime":1775658882787,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":18753,"timestamp":6051934875087,"id":226,"parentId":216,"tags":{},"startTime":1775658882787,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":21862,"timestamp":6051934874674,"id":216,"parentId":171,"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":1775658882786,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":35886,"timestamp":6051934875140,"id":237,"parentId":236,"tags":{},"startTime":1775658882787,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":35902,"timestamp":6051934875133,"id":236,"parentId":221,"tags":{},"startTime":1775658882787,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":37283,"timestamp":6051934875006,"id":221,"parentId":171,"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":1775658882787,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":8329,"timestamp":6051934905055,"id":241,"parentId":240,"tags":{},"startTime":1775658882817,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":8367,"timestamp":6051934905021,"id":240,"parentId":238,"tags":{},"startTime":1775658882817,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":9402,"timestamp":6051934904606,"id":238,"parentId":181,"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":1775658882816,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":8955,"timestamp":6051934905071,"id":243,"parentId":242,"tags":{},"startTime":1775658882817,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":8967,"timestamp":6051934905059,"id":242,"parentId":239,"tags":{},"startTime":1775658882817,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":9802,"timestamp":6051934904717,"id":239,"parentId":181,"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":1775658882817,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":6190,"timestamp":6051934927296,"id":256,"parentId":255,"tags":{},"startTime":1775658882839,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":6208,"timestamp":6051934927287,"id":255,"parentId":250,"tags":{},"startTime":1775658882839,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":8312,"timestamp":6051934926729,"id":250,"parentId":202,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/redirect-status-code.js","layer":"app-pages-browser"},"startTime":1775658882839,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":7800,"timestamp":6051934927269,"id":252,"parentId":251,"tags":{},"startTime":1775658882839,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":7839,"timestamp":6051934927231,"id":251,"parentId":248,"tags":{},"startTime":1775658882839,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":9512,"timestamp":6051934926631,"id":248,"parentId":202,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/request-async-storage.external.js","layer":"shared"},"startTime":1775658882838,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":10210,"timestamp":6051934927285,"id":254,"parentId":253,"tags":{},"startTime":1775658882839,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":10237,"timestamp":6051934927274,"id":253,"parentId":249,"tags":{},"startTime":1775658882839,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":11606,"timestamp":6051934926696,"id":249,"parentId":202,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/action-async-storage.external.js","layer":"shared"},"startTime":1775658882839,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":9136,"timestamp":6051934929186,"id":287,"parentId":286,"tags":{},"startTime":1775658882841,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":9146,"timestamp":6051934929178,"id":286,"parentId":264,"tags":{},"startTime":1775658882841,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":10783,"timestamp":6051934928021,"id":264,"parentId":198,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/add-base-path.js","layer":"app-pages-browser"},"startTime":1775658882840,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":9641,"timestamp":6051934929177,"id":285,"parentId":284,"tags":{},"startTime":1775658882841,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":9651,"timestamp":6051934929169,"id":284,"parentId":263,"tags":{},"startTime":1775658882841,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":11214,"timestamp":6051934927994,"id":263,"parentId":198,"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":1775658882840,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":10050,"timestamp":6051934929167,"id":283,"parentId":282,"tags":{},"startTime":1775658882841,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":10062,"timestamp":6051934929157,"id":282,"parentId":262,"tags":{},"startTime":1775658882841,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":11655,"timestamp":6051934927966,"id":262,"parentId":198,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/has-base-path.js","layer":"app-pages-browser"},"startTime":1775658882840,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":10481,"timestamp":6051934929154,"id":281,"parentId":280,"tags":{},"startTime":1775658882841,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":10509,"timestamp":6051934929128,"id":280,"parentId":261,"tags":{},"startTime":1775658882841,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":12170,"timestamp":6051934927922,"id":261,"parentId":198,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/remove-base-path.js","layer":"app-pages-browser"},"startTime":1775658882840,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":10913,"timestamp":6051934929195,"id":289,"parentId":288,"tags":{},"startTime":1775658882841,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":10922,"timestamp":6051934929188,"id":288,"parentId":265,"tags":{},"startTime":1775658882841,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":12445,"timestamp":6051934928045,"id":265,"parentId":198,"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":1775658882840,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":11288,"timestamp":6051934929221,"id":295,"parentId":294,"tags":{},"startTime":1775658882841,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":11296,"timestamp":6051934929214,"id":294,"parentId":268,"tags":{},"startTime":1775658882841,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":12958,"timestamp":6051934928171,"id":268,"parentId":198,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/app-router-announcer.js","layer":"app-pages-browser"},"startTime":1775658882840,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":11941,"timestamp":6051934929204,"id":291,"parentId":290,"tags":{},"startTime":1775658882841,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":11949,"timestamp":6051934929196,"id":290,"parentId":266,"tags":{},"startTime":1775658882841,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":14084,"timestamp":6051934928067,"id":266,"parentId":198,"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":1775658882840,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":12943,"timestamp":6051934929248,"id":299,"parentId":298,"tags":{},"startTime":1775658882841,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":12952,"timestamp":6051934929241,"id":298,"parentId":270,"tags":{},"startTime":1775658882841,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":14131,"timestamp":6051934928463,"id":270,"parentId":198,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/unresolved-thenable.js","layer":"app-pages-browser"},"startTime":1775658882840,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":13370,"timestamp":6051934929239,"id":297,"parentId":296,"tags":{},"startTime":1775658882841,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":13388,"timestamp":6051934929223,"id":296,"parentId":269,"tags":{},"startTime":1775658882841,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":15487,"timestamp":6051934928206,"id":269,"parentId":198,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/redirect-boundary.js","layer":"app-pages-browser"},"startTime":1775658882840,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":14535,"timestamp":6051934929212,"id":293,"parentId":292,"tags":{},"startTime":1775658882841,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":14546,"timestamp":6051934929205,"id":292,"parentId":267,"tags":{},"startTime":1775658882841,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":16523,"timestamp":6051934928135,"id":267,"parentId":198,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/error-boundary.js","layer":"app-pages-browser"},"startTime":1775658882840,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":15415,"timestamp":6051934929257,"id":301,"parentId":300,"tags":{},"startTime":1775658882841,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":15423,"timestamp":6051934929250,"id":300,"parentId":271,"tags":{},"startTime":1775658882841,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":16453,"timestamp":6051934928629,"id":271,"parentId":198,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/app-router-headers.js","layer":"app-pages-browser"},"startTime":1775658882840,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":15826,"timestamp":6051934929266,"id":303,"parentId":302,"tags":{},"startTime":1775658882841,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":15834,"timestamp":6051934929259,"id":302,"parentId":272,"tags":{},"startTime":1775658882841,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":16556,"timestamp":6051934928796,"id":272,"parentId":198,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/segment.js","layer":"app-pages-browser"},"startTime":1775658882841,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":16076,"timestamp":6051934929284,"id":307,"parentId":306,"tags":{},"startTime":1775658882841,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":16086,"timestamp":6051934929275,"id":306,"parentId":274,"tags":{},"startTime":1775658882841,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":17040,"timestamp":6051934928959,"id":274,"parentId":198,"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":1775658882841,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":16735,"timestamp":6051934929274,"id":305,"parentId":304,"tags":{},"startTime":1775658882841,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":16742,"timestamp":6051934929267,"id":304,"parentId":273,"tags":{},"startTime":1775658882841,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":17833,"timestamp":6051934928880,"id":273,"parentId":198,"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":1775658882841,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":26203,"timestamp":6051934929293,"id":309,"parentId":308,"tags":{},"startTime":1775658882841,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":26227,"timestamp":6051934929286,"id":308,"parentId":275,"tags":{},"startTime":1775658882841,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":29045,"timestamp":6051934928995,"id":275,"parentId":198,"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":1775658882841,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":28760,"timestamp":6051934929310,"id":313,"parentId":312,"tags":{},"startTime":1775658882841,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":28768,"timestamp":6051934929303,"id":312,"parentId":277,"tags":{},"startTime":1775658882841,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":29544,"timestamp":6051934929055,"id":277,"parentId":216,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/error-source.js","layer":"app-pages-browser"},"startTime":1775658882841,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":29960,"timestamp":6051934929319,"id":315,"parentId":314,"tags":{},"startTime":1775658882841,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":29971,"timestamp":6051934929311,"id":314,"parentId":278,"tags":{},"startTime":1775658882841,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":30676,"timestamp":6051934929079,"id":278,"parentId":215,"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":1775658882841,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":30478,"timestamp":6051934929327,"id":317,"parentId":316,"tags":{},"startTime":1775658882841,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":30487,"timestamp":6051934929320,"id":316,"parentId":279,"tags":{},"startTime":1775658882841,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":31266,"timestamp":6051934929101,"id":279,"parentId":216,"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":1775658882841,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":31113,"timestamp":6051934929302,"id":311,"parentId":310,"tags":{},"startTime":1775658882841,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":31123,"timestamp":6051934929294,"id":310,"parentId":276,"tags":{},"startTime":1775658882841,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":33344,"timestamp":6051934929019,"id":276,"parentId":198,"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":1775658882841,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":9546,"timestamp":6051934952832,"id":334,"parentId":333,"tags":{},"startTime":1775658882865,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":9576,"timestamp":6051934952802,"id":333,"parentId":318,"tags":{},"startTime":1775658882865,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":11569,"timestamp":6051934951847,"id":318,"parentId":198,"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":1775658882864,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":10574,"timestamp":6051934952864,"id":340,"parentId":339,"tags":{},"startTime":1775658882865,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":10583,"timestamp":6051934952856,"id":339,"parentId":321,"tags":{},"startTime":1775658882865,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":11789,"timestamp":6051934952237,"id":321,"parentId":239,"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":1775658882864,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":11197,"timestamp":6051934952845,"id":336,"parentId":335,"tags":{},"startTime":1775658882865,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":11208,"timestamp":6051934952835,"id":335,"parentId":319,"tags":{},"startTime":1775658882865,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":12413,"timestamp":6051934952029,"id":319,"parentId":198,"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":1775658882864,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":15908,"timestamp":6051934952889,"id":346,"parentId":345,"tags":{},"startTime":1775658882865,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":15919,"timestamp":6051934952881,"id":345,"parentId":324,"tags":{},"startTime":1775658882865,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":16950,"timestamp":6051934952365,"id":324,"parentId":239,"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":1775658882864,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":16458,"timestamp":6051934952872,"id":342,"parentId":341,"tags":{},"startTime":1775658882865,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":16467,"timestamp":6051934952865,"id":341,"parentId":322,"tags":{},"startTime":1775658882865,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":17582,"timestamp":6051934952270,"id":322,"parentId":239,"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":1775658882864,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":16988,"timestamp":6051934952880,"id":344,"parentId":343,"tags":{},"startTime":1775658882865,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":16996,"timestamp":6051934952873,"id":343,"parentId":323,"tags":{},"startTime":1775658882865,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":18455,"timestamp":6051934952323,"id":323,"parentId":239,"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":1775658882864,"traceId":"63571fab0751eb1f"}]
-[{"name":"next-swc-transform","duration":18034,"timestamp":6051934952855,"id":338,"parentId":337,"tags":{},"startTime":1775658882865,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":18044,"timestamp":6051934952846,"id":337,"parentId":320,"tags":{},"startTime":1775658882865,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":20114,"timestamp":6051934952188,"id":320,"parentId":239,"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":1775658882864,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":19392,"timestamp":6051934952921,"id":354,"parentId":353,"tags":{},"startTime":1775658882865,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":19401,"timestamp":6051934952914,"id":353,"parentId":328,"tags":{},"startTime":1775658882865,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":21554,"timestamp":6051934952527,"id":328,"parentId":220,"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":1775658882864,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":21337,"timestamp":6051934952897,"id":348,"parentId":347,"tags":{},"startTime":1775658882865,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":21348,"timestamp":6051934952890,"id":347,"parentId":325,"tags":{},"startTime":1775658882865,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":24866,"timestamp":6051934952395,"id":325,"parentId":239,"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":1775658882864,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":24390,"timestamp":6051934952904,"id":350,"parentId":349,"tags":{},"startTime":1775658882865,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":24399,"timestamp":6051934952898,"id":349,"parentId":326,"tags":{},"startTime":1775658882865,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":26028,"timestamp":6051934952421,"id":326,"parentId":239,"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":1775658882864,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":25534,"timestamp":6051934952929,"id":356,"parentId":355,"tags":{},"startTime":1775658882865,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":25543,"timestamp":6051934952922,"id":355,"parentId":329,"tags":{},"startTime":1775658882865,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":26445,"timestamp":6051934952561,"id":329,"parentId":220,"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":1775658882864,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":26130,"timestamp":6051934952913,"id":352,"parentId":351,"tags":{},"startTime":1775658882865,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":26140,"timestamp":6051934952905,"id":351,"parentId":327,"tags":{},"startTime":1775658882865,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":26825,"timestamp":6051934952502,"id":327,"parentId":220,"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":1775658882864,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":53309,"timestamp":6051934926595,"id":245,"parentId":244,"tags":{},"startTime":1775658882838,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":55902,"timestamp":6051934926545,"id":244,"parentId":178,"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":1775658882838,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":29526,"timestamp":6051934952937,"id":358,"parentId":357,"tags":{},"startTime":1775658882865,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":29535,"timestamp":6051934952930,"id":357,"parentId":330,"tags":{},"startTime":1775658882865,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":30567,"timestamp":6051934952583,"id":330,"parentId":220,"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":1775658882864,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":56577,"timestamp":6051934926625,"id":247,"parentId":246,"tags":{},"startTime":1775658882838,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":63340,"timestamp":6051934926610,"id":246,"parentId":195,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react/cjs/react.development.js","layer":"app-pages-browser"},"startTime":1775658882838,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":37037,"timestamp":6051934952945,"id":360,"parentId":359,"tags":{},"startTime":1775658882865,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":37046,"timestamp":6051934952938,"id":359,"parentId":331,"tags":{},"startTime":1775658882865,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":37757,"timestamp":6051934952690,"id":331,"parentId":216,"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":1775658882865,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":37461,"timestamp":6051934953012,"id":362,"parentId":361,"tags":{},"startTime":1775658882865,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":37528,"timestamp":6051934952946,"id":361,"parentId":332,"tags":{},"startTime":1775658882865,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":38491,"timestamp":6051934952713,"id":332,"parentId":216,"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":1775658882865,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":69296,"timestamp":6051934927893,"id":258,"parentId":257,"tags":{},"startTime":1775658882840,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":69523,"timestamp":6051934927859,"id":257,"parentId":143,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react-dom/client.js","layer":"app-pages-browser"},"startTime":1775658882840,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":69547,"timestamp":6051934927917,"id":260,"parentId":259,"tags":{},"startTime":1775658882840,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":69619,"timestamp":6051934927902,"id":259,"parentId":143,"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":1775658882840,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":4507,"timestamp":6051935019485,"id":390,"parentId":389,"tags":{},"startTime":1775658882931,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":4556,"timestamp":6051935019444,"id":389,"parentId":363,"tags":{},"startTime":1775658882931,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":6626,"timestamp":6051935017926,"id":363,"parentId":248,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/request-async-storage-instance.js","layer":"shared"},"startTime":1775658882930,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":5046,"timestamp":6051935019521,"id":396,"parentId":395,"tags":{},"startTime":1775658882931,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":5055,"timestamp":6051935019513,"id":395,"parentId":366,"tags":{},"startTime":1775658882931,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":6560,"timestamp":6051935018356,"id":366,"parentId":267,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/static-generation-async-storage.external.js","layer":"shared"},"startTime":1775658882930,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":5429,"timestamp":6051935019501,"id":392,"parentId":391,"tags":{},"startTime":1775658882931,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":5442,"timestamp":6051935019489,"id":391,"parentId":364,"tags":{},"startTime":1775658882931,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":8518,"timestamp":6051935018295,"id":364,"parentId":264,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/normalize-trailing-slash.js","layer":"app-pages-browser"},"startTime":1775658882930,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":7408,"timestamp":6051935019541,"id":400,"parentId":399,"tags":{},"startTime":1775658882931,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":7426,"timestamp":6051935019532,"id":399,"parentId":368,"tags":{},"startTime":1775658882931,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":9074,"timestamp":6051935018407,"id":368,"parentId":262,"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":1775658882930,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":8039,"timestamp":6051935019549,"id":402,"parentId":401,"tags":{},"startTime":1775658882931,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":8051,"timestamp":6051935019542,"id":401,"parentId":369,"tags":{},"startTime":1775658882931,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":9455,"timestamp":6051935018549,"id":369,"parentId":264,"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":1775658882930,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":8515,"timestamp":6051935019512,"id":394,"parentId":393,"tags":{},"startTime":1775658882931,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":8525,"timestamp":6051935019503,"id":393,"parentId":365,"tags":{},"startTime":1775658882931,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":11104,"timestamp":6051935018331,"id":365,"parentId":269,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/navigation.js","layer":"app-pages-browser"},"startTime":1775658882930,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":9893,"timestamp":6051935019558,"id":404,"parentId":403,"tags":{},"startTime":1775658882931,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":9901,"timestamp":6051935019550,"id":403,"parentId":370,"tags":{},"startTime":1775658882931,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":11109,"timestamp":6051935018636,"id":370,"parentId":249,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/action-async-storage-instance.js","layer":"shared"},"startTime":1775658882930,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":10231,"timestamp":6051935019531,"id":398,"parentId":397,"tags":{},"startTime":1775658882931,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":10241,"timestamp":6051935019522,"id":397,"parentId":367,"tags":{},"startTime":1775658882931,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":11968,"timestamp":6051935018380,"id":367,"parentId":273,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/not-found-boundary.js","layer":"app-pages-browser"},"startTime":1775658882930,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":15046,"timestamp":6051935019566,"id":406,"parentId":405,"tags":{},"startTime":1775658882931,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":15058,"timestamp":6051935019559,"id":405,"parentId":371,"tags":{},"startTime":1775658882931,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":16852,"timestamp":6051935018712,"id":371,"parentId":275,"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":1775658882931,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":15984,"timestamp":6051935019600,"id":412,"parentId":411,"tags":{},"startTime":1775658882931,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":15994,"timestamp":6051935019591,"id":411,"parentId":374,"tags":{},"startTime":1775658882931,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":17566,"timestamp":6051935018797,"id":374,"parentId":275,"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":1775658882931,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":16812,"timestamp":6051935019575,"id":408,"parentId":407,"tags":{},"startTime":1775658882931,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":16820,"timestamp":6051935019568,"id":407,"parentId":372,"tags":{},"startTime":1775658882931,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":18200,"timestamp":6051935018748,"id":372,"parentId":275,"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":1775658882931,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":17385,"timestamp":6051935019584,"id":410,"parentId":409,"tags":{},"startTime":1775658882931,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":17394,"timestamp":6051935019576,"id":409,"parentId":373,"tags":{},"startTime":1775658882931,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":18957,"timestamp":6051935018773,"id":373,"parentId":275,"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":1775658882931,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":18128,"timestamp":6051935019618,"id":416,"parentId":415,"tags":{},"startTime":1775658882931,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":18137,"timestamp":6051935019610,"id":415,"parentId":377,"tags":{},"startTime":1775658882931,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":19209,"timestamp":6051935018937,"id":377,"parentId":321,"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":1775658882931,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":18551,"timestamp":6051935019608,"id":414,"parentId":413,"tags":{},"startTime":1775658882931,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":18560,"timestamp":6051935019601,"id":413,"parentId":376,"tags":{},"startTime":1775658882931,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":19590,"timestamp":6051935018916,"id":376,"parentId":321,"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":1775658882931,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":18860,"timestamp":6051935019656,"id":420,"parentId":419,"tags":{},"startTime":1775658882931,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":18868,"timestamp":6051935019649,"id":419,"parentId":379,"tags":{},"startTime":1775658882931,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":19774,"timestamp":6051935019086,"id":379,"parentId":321,"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":1775658882931,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":19223,"timestamp":6051935019648,"id":418,"parentId":417,"tags":{},"startTime":1775658882931,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":19233,"timestamp":6051935019638,"id":417,"parentId":378,"tags":{},"startTime":1775658882931,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":20132,"timestamp":6051935019019,"id":378,"parentId":321,"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":1775658882931,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":19486,"timestamp":6051935019675,"id":424,"parentId":423,"tags":{},"startTime":1775658882931,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":19494,"timestamp":6051935019668,"id":423,"parentId":381,"tags":{},"startTime":1775658882931,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":20480,"timestamp":6051935019158,"id":381,"parentId":319,"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":1775658882931,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":19987,"timestamp":6051935019692,"id":428,"parentId":427,"tags":{},"startTime":1775658882932,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":19995,"timestamp":6051935019685,"id":427,"parentId":383,"tags":{},"startTime":1775658882932,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":20845,"timestamp":6051935019201,"id":383,"parentId":276,"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":1775658882931,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":20387,"timestamp":6051935019684,"id":426,"parentId":425,"tags":{},"startTime":1775658882931,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":20396,"timestamp":6051935019677,"id":425,"parentId":382,"tags":{},"startTime":1775658882931,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":22665,"timestamp":6051935019180,"id":382,"parentId":276,"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":1775658882931,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":22204,"timestamp":6051935019664,"id":422,"parentId":421,"tags":{},"startTime":1775658882931,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":22212,"timestamp":6051935019657,"id":421,"parentId":380,"tags":{},"startTime":1775658882931,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":27839,"timestamp":6051935019129,"id":380,"parentId":321,"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":1775658882931,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":27292,"timestamp":6051935019700,"id":430,"parentId":429,"tags":{},"startTime":1775658882932,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":27300,"timestamp":6051935019693,"id":429,"parentId":384,"tags":{},"startTime":1775658882932,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":28212,"timestamp":6051935019222,"id":384,"parentId":276,"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":1775658882931,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":28068,"timestamp":6051935019709,"id":432,"parentId":431,"tags":{},"startTime":1775658882932,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":28077,"timestamp":6051935019702,"id":431,"parentId":385,"tags":{},"startTime":1775658882932,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":29073,"timestamp":6051935019245,"id":385,"parentId":276,"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":1775658882931,"traceId":"63571fab0751eb1f"}]
-[{"name":"next-swc-transform","duration":29342,"timestamp":6051935019725,"id":436,"parentId":435,"tags":{},"startTime":1775658882932,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":29373,"timestamp":6051935019718,"id":435,"parentId":387,"tags":{},"startTime":1775658882932,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":30576,"timestamp":6051935019285,"id":387,"parentId":276,"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":1775658882931,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":30176,"timestamp":6051935019716,"id":434,"parentId":433,"tags":{},"startTime":1775658882932,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":30185,"timestamp":6051935019710,"id":433,"parentId":386,"tags":{},"startTime":1775658882932,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":31393,"timestamp":6051935019265,"id":386,"parentId":279,"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":1775658882931,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":26805,"timestamp":6051935023868,"id":452,"parentId":451,"tags":{},"startTime":1775658882936,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":26814,"timestamp":6051935023859,"id":451,"parentId":439,"tags":{},"startTime":1775658882936,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":28751,"timestamp":6051935022207,"id":439,"parentId":320,"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":1775658882934,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":27130,"timestamp":6051935023845,"id":448,"parentId":447,"tags":{},"startTime":1775658882936,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":27153,"timestamp":6051935023823,"id":447,"parentId":437,"tags":{},"startTime":1775658882936,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":29833,"timestamp":6051935021863,"id":437,"parentId":324,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/promise-queue.js","layer":"app-pages-browser"},"startTime":1775658882934,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":27834,"timestamp":6051935023877,"id":454,"parentId":453,"tags":{},"startTime":1775658882936,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":27844,"timestamp":6051935023869,"id":453,"parentId":440,"tags":{},"startTime":1775658882936,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":29677,"timestamp":6051935022331,"id":440,"parentId":323,"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":1775658882934,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":28141,"timestamp":6051935023886,"id":456,"parentId":455,"tags":{},"startTime":1775658882936,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":28150,"timestamp":6051935023878,"id":455,"parentId":441,"tags":{},"startTime":1775658882936,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":29475,"timestamp":6051935023053,"id":441,"parentId":323,"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":1775658882935,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":35396,"timestamp":6051935023895,"id":458,"parentId":457,"tags":{},"startTime":1775658882936,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":35409,"timestamp":6051935023887,"id":457,"parentId":442,"tags":{},"startTime":1775658882936,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":36680,"timestamp":6051935023087,"id":442,"parentId":320,"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":1775658882935,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":26117,"timestamp":6051935033679,"id":465,"parentId":464,"tags":{},"startTime":1775658882945,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":26170,"timestamp":6051935033628,"id":464,"parentId":459,"tags":{},"startTime":1775658882945,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":27221,"timestamp":6051935033057,"id":459,"parentId":217,"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":1775658882945,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":26604,"timestamp":6051935033695,"id":467,"parentId":466,"tags":{},"startTime":1775658882946,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":26618,"timestamp":6051935033682,"id":466,"parentId":460,"tags":{},"startTime":1775658882945,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":27279,"timestamp":6051935033278,"id":460,"parentId":215,"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":1775658882945,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":36750,"timestamp":6051935023858,"id":450,"parentId":449,"tags":{},"startTime":1775658882936,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":36762,"timestamp":6051935023848,"id":449,"parentId":438,"tags":{},"startTime":1775658882936,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":39877,"timestamp":6051935021949,"id":438,"parentId":322,"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":1775658882934,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":28319,"timestamp":6051935033714,"id":471,"parentId":470,"tags":{},"startTime":1775658882946,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":28329,"timestamp":6051935033706,"id":470,"parentId":462,"tags":{},"startTime":1775658882946,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":28882,"timestamp":6051935033403,"id":462,"parentId":216,"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":1775658882945,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":28574,"timestamp":6051935033723,"id":473,"parentId":472,"tags":{},"startTime":1775658882946,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":28582,"timestamp":6051935033715,"id":472,"parentId":463,"tags":{},"startTime":1775658882946,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":31056,"timestamp":6051935033428,"id":463,"parentId":320,"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":1775658882945,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":30817,"timestamp":6051935033705,"id":469,"parentId":468,"tags":{},"startTime":1775658882946,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":30827,"timestamp":6051935033696,"id":468,"parentId":461,"tags":{},"startTime":1775658882946,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":31770,"timestamp":6051935033373,"id":461,"parentId":220,"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":1775658882945,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":50824,"timestamp":6051935019322,"id":388,"parentId":375,"tags":{},"startTime":1775658882931,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":34,"timestamp":6051935070164,"id":480,"parentId":375,"tags":{},"startTime":1775658882982,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":51597,"timestamp":6051935018859,"id":375,"parentId":276,"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":1775658882931,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":5281,"timestamp":6051935068268,"id":477,"parentId":476,"tags":{},"startTime":1775658882980,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":5327,"timestamp":6051935068238,"id":476,"parentId":474,"tags":{},"startTime":1775658882980,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":6106,"timestamp":6051935068036,"id":474,"parentId":326,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/flight-data-helpers.js","layer":"app-pages-browser"},"startTime":1775658882980,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":51474,"timestamp":6051935023786,"id":446,"parentId":444,"tags":{},"startTime":1775658882936,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":33,"timestamp":6051935075270,"id":493,"parentId":444,"tags":{},"startTime":1775658882987,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":52931,"timestamp":6051935023715,"id":444,"parentId":143,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_interop_require_wildcard.js","layer":"app-pages-browser"},"startTime":1775658882936,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":52892,"timestamp":6051935023768,"id":445,"parentId":443,"tags":{},"startTime":1775658882936,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":34,"timestamp":6051935076667,"id":494,"parentId":443,"tags":{},"startTime":1775658882988,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":53734,"timestamp":6051935023114,"id":443,"parentId":130,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_interop_require_default.js","layer":"app-pages-browser"},"startTime":1775658882935,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":8637,"timestamp":6051935068282,"id":479,"parentId":478,"tags":{},"startTime":1775658882980,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":8649,"timestamp":6051935068271,"id":478,"parentId":475,"tags":{},"startTime":1775658882980,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":9173,"timestamp":6051935068125,"id":475,"parentId":332,"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":1775658882980,"traceId":"63571fab0751eb1f"},{"name":"add-entry","duration":587228,"timestamp":6051934490306,"id":125,"parentId":121,"tags":{"request":"next-client-pages-loader?absolutePagePath=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fnot-found-error.js&page=%2F_not-found%2Fpage!"},"startTime":1775658882402,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":7246,"timestamp":6051935071197,"id":490,"parentId":489,"tags":{},"startTime":1775658882983,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":7258,"timestamp":6051935071188,"id":489,"parentId":483,"tags":{},"startTime":1775658882983,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":7897,"timestamp":6051935071081,"id":483,"parentId":217,"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":1775658882983,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":8308,"timestamp":6051935071206,"id":492,"parentId":491,"tags":{},"startTime":1775658882983,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":8318,"timestamp":6051935071198,"id":491,"parentId":484,"tags":{},"startTime":1775658882983,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":8820,"timestamp":6051935071107,"id":484,"parentId":220,"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":1775658882983,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":8786,"timestamp":6051935071187,"id":488,"parentId":487,"tags":{},"startTime":1775658882983,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":8798,"timestamp":6051935071177,"id":487,"parentId":482,"tags":{},"startTime":1775658882983,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":9686,"timestamp":6051935071040,"id":482,"parentId":217,"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":1775658882983,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":9563,"timestamp":6051935071175,"id":486,"parentId":485,"tags":{},"startTime":1775658882983,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":9588,"timestamp":6051935071150,"id":485,"parentId":481,"tags":{},"startTime":1775658882983,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":10280,"timestamp":6051935070799,"id":481,"parentId":217,"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":1775658882983,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":5590,"timestamp":6051935082669,"id":512,"parentId":511,"tags":{},"startTime":1775658882994,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":5607,"timestamp":6051935082659,"id":511,"parentId":498,"tags":{},"startTime":1775658882994,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":6628,"timestamp":6051935082108,"id":498,"parentId":366,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/static-generation-async-storage-instance.js","layer":"shared"},"startTime":1775658882994,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":6094,"timestamp":6051935082657,"id":510,"parentId":509,"tags":{},"startTime":1775658882994,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":6126,"timestamp":6051935082626,"id":509,"parentId":497,"tags":{},"startTime":1775658882994,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":7051,"timestamp":6051935082043,"id":497,"parentId":363,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/async-local-storage.js","layer":"shared"},"startTime":1775658882994,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":6424,"timestamp":6051935082682,"id":514,"parentId":513,"tags":{},"startTime":1775658882994,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":6437,"timestamp":6051935082670,"id":513,"parentId":499,"tags":{},"startTime":1775658882994,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":7460,"timestamp":6051935082134,"id":499,"parentId":365,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/navigation.react-server.js","layer":"app-pages-browser"},"startTime":1775658882994,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":6913,"timestamp":6051935082691,"id":516,"parentId":515,"tags":{},"startTime":1775658882995,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":6923,"timestamp":6051935082684,"id":515,"parentId":500,"tags":{},"startTime":1775658882994,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":7773,"timestamp":6051935082161,"id":500,"parentId":365,"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":1775658882994,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":7214,"timestamp":6051935082735,"id":522,"parentId":521,"tags":{},"startTime":1775658882995,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":7223,"timestamp":6051935082727,"id":521,"parentId":503,"tags":{},"startTime":1775658882995,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":8015,"timestamp":6051935082318,"id":503,"parentId":364,"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":1775658882994,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":7622,"timestamp":6051935082726,"id":520,"parentId":519,"tags":{},"startTime":1775658882995,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":7635,"timestamp":6051935082715,"id":519,"parentId":502,"tags":{},"startTime":1775658882995,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":8332,"timestamp":6051935082293,"id":502,"parentId":364,"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":1775658882994,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":7922,"timestamp":6051935082714,"id":518,"parentId":517,"tags":{},"startTime":1775658882995,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":7945,"timestamp":6051935082692,"id":517,"parentId":501,"tags":{},"startTime":1775658882995,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":8758,"timestamp":6051935082184,"id":501,"parentId":365,"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":1775658882994,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":8208,"timestamp":6051935082744,"id":524,"parentId":523,"tags":{},"startTime":1775658882995,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":8217,"timestamp":6051935082736,"id":523,"parentId":504,"tags":{},"startTime":1775658882995,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":8865,"timestamp":6051935082340,"id":504,"parentId":365,"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":1775658882994,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":9660,"timestamp":6051935082831,"id":532,"parentId":531,"tags":{},"startTime":1775658882995,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":9673,"timestamp":6051935082822,"id":531,"parentId":508,"tags":{},"startTime":1775658882995,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":10476,"timestamp":6051935082509,"id":508,"parentId":384,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/is-hydration-error.js","layer":"app-pages-browser"},"startTime":1775658882994,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":10494,"timestamp":6051935082760,"id":528,"parentId":527,"tags":{},"startTime":1775658882995,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":10503,"timestamp":6051935082753,"id":527,"parentId":506,"tags":{},"startTime":1775658882995,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":11298,"timestamp":6051935082397,"id":506,"parentId":441,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/hash.js","layer":"app-pages-browser"},"startTime":1775658882994,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":11736,"timestamp":6051935082752,"id":526,"parentId":525,"tags":{},"startTime":1775658882995,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":11745,"timestamp":6051935082745,"id":525,"parentId":505,"tags":{},"startTime":1775658882995,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":12479,"timestamp":6051935082372,"id":505,"parentId":372,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/match-segments.js","layer":"app-pages-browser"},"startTime":1775658882994,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":12045,"timestamp":6051935082820,"id":530,"parentId":529,"tags":{},"startTime":1775658882995,"traceId":"63571fab0751eb1f"}]
-[{"name":"next-swc-loader","duration":12189,"timestamp":6051935082761,"id":529,"parentId":507,"tags":{},"startTime":1775658882995,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":13031,"timestamp":6051935082455,"id":507,"parentId":376,"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":1775658882994,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":7441,"timestamp":6051935088055,"id":539,"parentId":538,"tags":{},"startTime":1775658883000,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":7527,"timestamp":6051935087969,"id":538,"parentId":533,"tags":{},"startTime":1775658883000,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":8297,"timestamp":6051935087537,"id":533,"parentId":461,"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":1775658882999,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":7762,"timestamp":6051935088090,"id":541,"parentId":540,"tags":{},"startTime":1775658883000,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":7791,"timestamp":6051935088061,"id":540,"parentId":534,"tags":{},"startTime":1775658883000,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":8714,"timestamp":6051935087744,"id":534,"parentId":460,"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":1775658883000,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":8374,"timestamp":6051935088104,"id":543,"parentId":542,"tags":{},"startTime":1775658883000,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":8386,"timestamp":6051935088092,"id":542,"parentId":535,"tags":{},"startTime":1775658883000,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":9038,"timestamp":6051935087799,"id":535,"parentId":459,"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":1775658883000,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":8724,"timestamp":6051935088124,"id":547,"parentId":546,"tags":{},"startTime":1775658883000,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":8733,"timestamp":6051935088116,"id":546,"parentId":537,"tags":{},"startTime":1775658883000,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":9499,"timestamp":6051935087854,"id":537,"parentId":461,"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":1775658883000,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":9258,"timestamp":6051935088114,"id":545,"parentId":544,"tags":{},"startTime":1775658883000,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":9268,"timestamp":6051935088105,"id":544,"parentId":536,"tags":{},"startTime":1775658883000,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":10248,"timestamp":6051935087829,"id":536,"parentId":462,"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":1775658883000,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":13473,"timestamp":6051935092000,"id":550,"parentId":549,"tags":{},"startTime":1775658883004,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":13498,"timestamp":6051935091979,"id":549,"parentId":548,"tags":{},"startTime":1775658883004,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":13991,"timestamp":6051935091889,"id":548,"parentId":367,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/utils/warn-once.js","layer":"app-pages-browser"},"startTime":1775658883004,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":28560,"timestamp":6051935077987,"id":496,"parentId":495,"tags":{},"startTime":1775658882990,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":28722,"timestamp":6051935077947,"id":495,"parentId":259,"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":1775658882990,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":3469,"timestamp":6051935111173,"id":568,"parentId":567,"tags":{},"startTime":1775658883023,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":3490,"timestamp":6051935111156,"id":567,"parentId":556,"tags":{},"startTime":1775658883023,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":4396,"timestamp":6051935110802,"id":556,"parentId":483,"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":1775658883023,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":4017,"timestamp":6051935111197,"id":572,"parentId":571,"tags":{},"startTime":1775658883023,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":4028,"timestamp":6051935111187,"id":571,"parentId":558,"tags":{},"startTime":1775658883023,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":4820,"timestamp":6051935110875,"id":558,"parentId":484,"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":1775658883023,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":4520,"timestamp":6051935111186,"id":570,"parentId":569,"tags":{},"startTime":1775658883023,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":4532,"timestamp":6051935111175,"id":569,"parentId":557,"tags":{},"startTime":1775658883023,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":5341,"timestamp":6051935110839,"id":557,"parentId":484,"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":1775658883023,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":5047,"timestamp":6051935111153,"id":566,"parentId":565,"tags":{},"startTime":1775658883023,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":5083,"timestamp":6051935111119,"id":565,"parentId":555,"tags":{},"startTime":1775658883023,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":6108,"timestamp":6051935110723,"id":555,"parentId":482,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/magic-identifier.js","layer":"app-pages-browser"},"startTime":1775658883023,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":5640,"timestamp":6051935111208,"id":574,"parentId":573,"tags":{},"startTime":1775658883023,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":5650,"timestamp":6051935111199,"id":573,"parentId":559,"tags":{},"startTime":1775658883023,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":8375,"timestamp":6051935110911,"id":559,"parentId":483,"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":1775658883023,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":15818,"timestamp":6051935111244,"id":580,"parentId":579,"tags":{},"startTime":1775658883023,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":15839,"timestamp":6051935111231,"id":579,"parentId":562,"tags":{},"startTime":1775658883023,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":16776,"timestamp":6051935110994,"id":562,"parentId":481,"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":1775658883023,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":16556,"timestamp":6051935111230,"id":578,"parentId":577,"tags":{},"startTime":1775658883023,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":16566,"timestamp":6051935111221,"id":577,"parentId":561,"tags":{},"startTime":1775658883023,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":17304,"timestamp":6051935110969,"id":561,"parentId":481,"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":1775658883023,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":18021,"timestamp":6051935111255,"id":582,"parentId":581,"tags":{},"startTime":1775658883023,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":18034,"timestamp":6051935111246,"id":581,"parentId":563,"tags":{},"startTime":1775658883023,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":19057,"timestamp":6051935111018,"id":563,"parentId":481,"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":1775658883023,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":18822,"timestamp":6051935111266,"id":584,"parentId":583,"tags":{},"startTime":1775658883023,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":18832,"timestamp":6051935111256,"id":583,"parentId":564,"tags":{},"startTime":1775658883023,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":19468,"timestamp":6051935111046,"id":564,"parentId":481,"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":1775658883023,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":19318,"timestamp":6051935111220,"id":576,"parentId":575,"tags":{},"startTime":1775658883023,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":19329,"timestamp":6051935111210,"id":575,"parentId":560,"tags":{},"startTime":1775658883023,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":23737,"timestamp":6051935110938,"id":560,"parentId":481,"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":1775658883023,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":20213,"timestamp":6051935114484,"id":594,"parentId":593,"tags":{},"startTime":1775658883026,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":20230,"timestamp":6051935114468,"id":593,"parentId":586,"tags":{},"startTime":1775658883026,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":20991,"timestamp":6051935114246,"id":586,"parentId":507,"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":1775658883026,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":20728,"timestamp":6051935114528,"id":600,"parentId":599,"tags":{},"startTime":1775658883026,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":20739,"timestamp":6051935114518,"id":599,"parentId":589,"tags":{},"startTime":1775658883026,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":21489,"timestamp":6051935114347,"id":589,"parentId":535,"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":1775658883026,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":21349,"timestamp":6051935114505,"id":596,"parentId":595,"tags":{},"startTime":1775658883026,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":21370,"timestamp":6051935114485,"id":595,"parentId":587,"tags":{},"startTime":1775658883026,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":22759,"timestamp":6051935114290,"id":587,"parentId":534,"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":1775658883026,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":22776,"timestamp":6051935114465,"id":592,"parentId":591,"tags":{},"startTime":1775658883026,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":22834,"timestamp":6051935114437,"id":591,"parentId":585,"tags":{},"startTime":1775658883026,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":25794,"timestamp":6051935114179,"id":585,"parentId":537,"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":1775658883026,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":25553,"timestamp":6051935114541,"id":602,"parentId":601,"tags":{},"startTime":1775658883026,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":25570,"timestamp":6051935114530,"id":601,"parentId":590,"tags":{},"startTime":1775658883026,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":26378,"timestamp":6051935114377,"id":590,"parentId":537,"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":1775658883026,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":40391,"timestamp":6051935107087,"id":552,"parentId":551,"tags":{},"startTime":1775658883019,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":40738,"timestamp":6051935107057,"id":551,"parentId":218,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react-dom/index.js","layer":"app-pages-browser"},"startTime":1775658883019,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":40154,"timestamp":6051935108343,"id":554,"parentId":553,"tags":{},"startTime":1775658883020,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":39,"timestamp":6051935148508,"id":605,"parentId":553,"tags":{},"startTime":1775658883060,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":42059,"timestamp":6051935108257,"id":553,"parentId":372,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/helpers/interception-routes.js","layer":"app-pages-browser"},"startTime":1775658883020,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":36106,"timestamp":6051935114517,"id":598,"parentId":597,"tags":{},"startTime":1775658883026,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":36118,"timestamp":6051935114507,"id":597,"parentId":588,"tags":{},"startTime":1775658883026,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":54255,"timestamp":6051935114319,"id":588,"parentId":535,"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":1775658883026,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":52841,"timestamp":6051935121654,"id":604,"parentId":603,"tags":{},"startTime":1775658883033,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":34,"timestamp":6051935174508,"id":617,"parentId":603,"tags":{},"startTime":1775658883086,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":53840,"timestamp":6051935121050,"id":603,"parentId":215,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_tagged_template_literal_loose.js","layer":"app-pages-browser"},"startTime":1775658883033,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":5962,"timestamp":6051935169969,"id":610,"parentId":607,"tags":{},"startTime":1775658883082,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":29,"timestamp":6051935175941,"id":621,"parentId":607,"tags":{},"startTime":1775658883088,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":6603,"timestamp":6051935169727,"id":607,"parentId":508,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/is-error.js","layer":"app-pages-browser"},"startTime":1775658883082,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":6387,"timestamp":6051935169948,"id":609,"parentId":606,"tags":{},"startTime":1775658883082,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":29,"timestamp":6051935176342,"id":622,"parentId":606,"tags":{},"startTime":1775658883088,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":9496,"timestamp":6051935169547,"id":606,"parentId":205,"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":1775658883081,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":5952,"timestamp":6051935174190,"id":616,"parentId":615,"tags":{},"startTime":1775658883086,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":5990,"timestamp":6051935174156,"id":615,"parentId":614,"tags":{},"startTime":1775658883086,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":6489,"timestamp":6051935174091,"id":614,"parentId":461,"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":1775658883086,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":10977,"timestamp":6051935169976,"id":611,"parentId":608,"tags":{},"startTime":1775658883082,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":31,"timestamp":6051935180959,"id":629,"parentId":608,"tags":{},"startTime":1775658883093,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":11322,"timestamp":6051935169864,"id":608,"parentId":505,"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":1775658883082,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":5511,"timestamp":6051935175728,"id":620,"parentId":619,"tags":{},"startTime":1775658883088,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":5538,"timestamp":6051935175703,"id":619,"parentId":618,"tags":{},"startTime":1775658883088,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":5999,"timestamp":6051935175633,"id":618,"parentId":587,"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":1775658883087,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":2370,"timestamp":6051935180016,"id":626,"parentId":625,"tags":{},"startTime":1775658883092,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":2397,"timestamp":6051935179990,"id":625,"parentId":623,"tags":{},"startTime":1775658883092,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":2798,"timestamp":6051935179854,"id":623,"parentId":387,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/dev/noop-turbopack-hmr.js","layer":"app-pages-browser"},"startTime":1775658883092,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":8615,"timestamp":6051935174075,"id":613,"parentId":612,"tags":{},"startTime":1775658883086,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":13334,"timestamp":6051935174032,"id":612,"parentId":495,"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":1775658883086,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":7403,"timestamp":6051935180028,"id":628,"parentId":627,"tags":{},"startTime":1775658883092,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":7415,"timestamp":6051935180018,"id":627,"parentId":624,"tags":{},"startTime":1775658883092,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":8147,"timestamp":6051935179919,"id":624,"parentId":553,"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":1775658883092,"traceId":"63571fab0751eb1f"}]
-[{"name":"next-swc-transform","duration":8552,"timestamp":6051935182066,"id":634,"parentId":633,"tags":{},"startTime":1775658883094,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":8576,"timestamp":6051935182046,"id":633,"parentId":630,"tags":{},"startTime":1775658883094,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":9190,"timestamp":6051935181933,"id":630,"parentId":560,"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":1775658883094,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":2424,"timestamp":6051935188892,"id":637,"parentId":636,"tags":{},"startTime":1775658883101,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":2732,"timestamp":6051935188586,"id":636,"parentId":635,"tags":{},"startTime":1775658883100,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":3506,"timestamp":6051935188498,"id":635,"parentId":276,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/strip-ansi/index.js","layer":"app-pages-browser"},"startTime":1775658883100,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":14094,"timestamp":6051935182007,"id":632,"parentId":631,"tags":{},"startTime":1775658883094,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":101638,"timestamp":6051935181995,"id":631,"parentId":551,"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":1775658883094,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":89909,"timestamp":6051935193861,"id":641,"parentId":640,"tags":{},"startTime":1775658883106,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":89936,"timestamp":6051935193837,"id":640,"parentId":638,"tags":{},"startTime":1775658883106,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":90420,"timestamp":6051935193748,"id":638,"parentId":607,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/is-plain-object.js","layer":"app-pages-browser"},"startTime":1775658883106,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":91199,"timestamp":6051935193874,"id":643,"parentId":642,"tags":{},"startTime":1775658883106,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":91211,"timestamp":6051935193864,"id":642,"parentId":639,"tags":{},"startTime":1775658883106,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":91912,"timestamp":6051935193807,"id":639,"parentId":614,"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":1775658883106,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":89904,"timestamp":6051935195831,"id":650,"parentId":649,"tags":{},"startTime":1775658883108,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":89937,"timestamp":6051935195799,"id":649,"parentId":648,"tags":{},"startTime":1775658883108,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":90226,"timestamp":6051935195697,"id":648,"parentId":624,"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":1775658883108,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":94547,"timestamp":6051935194754,"id":646,"parentId":644,"tags":{},"startTime":1775658883107,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":30,"timestamp":6051935289313,"id":651,"parentId":644,"tags":{},"startTime":1775658883201,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":94977,"timestamp":6051935194654,"id":644,"parentId":437,"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":1775658883106,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":94877,"timestamp":6051935194764,"id":647,"parentId":645,"tags":{},"startTime":1775658883107,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":32,"timestamp":6051935289646,"id":652,"parentId":645,"tags":{},"startTime":1775658883201,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":95214,"timestamp":6051935194706,"id":645,"parentId":437,"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":1775658883107,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":856,"timestamp":6051935290882,"id":654,"parentId":653,"tags":{},"startTime":1775658883203,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":43,"timestamp":6051935291751,"id":655,"parentId":653,"tags":{},"startTime":1775658883204,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":2322,"timestamp":6051935290796,"id":653,"parentId":534,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/anser/index.js","layer":"app-pages-browser"},"startTime":1775658883203,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1162,"timestamp":6051935294387,"id":659,"parentId":657,"tags":{},"startTime":1775658883206,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":96,"timestamp":6051935295555,"id":660,"parentId":657,"tags":{},"startTime":1775658883207,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":4419,"timestamp":6051935294326,"id":657,"parentId":588,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/platform/platform.js","layer":"app-pages-browser"},"startTime":1775658883206,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":4453,"timestamp":6051935294376,"id":658,"parentId":656,"tags":{},"startTime":1775658883206,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":44,"timestamp":6051935298835,"id":661,"parentId":656,"tags":{},"startTime":1775658883211,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":4935,"timestamp":6051935294247,"id":656,"parentId":588,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/css.escape/css.escape.js","layer":"app-pages-browser"},"startTime":1775658883206,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":910,"timestamp":6051935300676,"id":663,"parentId":662,"tags":{},"startTime":1775658883212,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":52,"timestamp":6051935301612,"id":664,"parentId":662,"tags":{},"startTime":1775658883213,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":1314,"timestamp":6051935300593,"id":662,"parentId":631,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/scheduler/index.js","layer":"app-pages-browser"},"startTime":1775658883212,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":635,"timestamp":6051935303281,"id":666,"parentId":665,"tags":{},"startTime":1775658883215,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":41,"timestamp":6051935303925,"id":667,"parentId":665,"tags":{},"startTime":1775658883216,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":1852,"timestamp":6051935303184,"id":665,"parentId":662,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/scheduler/cjs/scheduler.development.js","layer":"app-pages-browser"},"startTime":1775658883215,"traceId":"63571fab0751eb1f"},{"name":"add-entry","duration":814978,"timestamp":6051934490133,"id":124,"parentId":121,"tags":{"request":"./node_modules/next/dist/client/app-next-dev.js"},"startTime":1775658882402,"traceId":"63571fab0751eb1f"},{"name":"make","duration":827420,"timestamp":6051934477708,"id":121,"parentId":120,"tags":{},"startTime":1775658882390,"traceId":"63571fab0751eb1f"},{"name":"chunk-graph","duration":2630,"timestamp":6051935310373,"id":669,"parentId":668,"tags":{},"startTime":1775658883222,"traceId":"63571fab0751eb1f"},{"name":"optimize-modules","duration":5,"timestamp":6051935313020,"id":671,"parentId":668,"tags":{},"startTime":1775658883225,"traceId":"63571fab0751eb1f"},{"name":"optimize-chunks","duration":317,"timestamp":6051935313036,"id":672,"parentId":668,"tags":{},"startTime":1775658883225,"traceId":"63571fab0751eb1f"},{"name":"optimize-tree","duration":4,"timestamp":6051935313365,"id":673,"parentId":668,"tags":{},"startTime":1775658883225,"traceId":"63571fab0751eb1f"},{"name":"optimize-chunk-modules","duration":8,"timestamp":6051935313421,"id":674,"parentId":668,"tags":{},"startTime":1775658883225,"traceId":"63571fab0751eb1f"},{"name":"optimize","duration":1577,"timestamp":6051935313013,"id":670,"parentId":668,"tags":{},"startTime":1775658883225,"traceId":"63571fab0751eb1f"},{"name":"module-hash","duration":5101,"timestamp":6051935316929,"id":675,"parentId":668,"tags":{},"startTime":1775658883229,"traceId":"63571fab0751eb1f"},{"name":"code-generation","duration":10225,"timestamp":6051935322044,"id":676,"parentId":668,"tags":{},"startTime":1775658883234,"traceId":"63571fab0751eb1f"},{"name":"hash","duration":8988,"timestamp":6051935334958,"id":677,"parentId":668,"tags":{},"startTime":1775658883247,"traceId":"63571fab0751eb1f"},{"name":"code-generation-jobs","duration":286,"timestamp":6051935343945,"id":678,"parentId":668,"tags":{},"startTime":1775658883256,"traceId":"63571fab0751eb1f"},{"name":"module-assets","duration":82,"timestamp":6051935344225,"id":679,"parentId":668,"tags":{},"startTime":1775658883256,"traceId":"63571fab0751eb1f"},{"name":"create-chunk-assets","duration":86365,"timestamp":6051935344310,"id":680,"parentId":668,"tags":{},"startTime":1775658883256,"traceId":"63571fab0751eb1f"},{"name":"NextJsBuildManifest-generateClientManifest","duration":57,"timestamp":6051935431227,"id":682,"parentId":120,"tags":{},"startTime":1775658883343,"traceId":"63571fab0751eb1f"},{"name":"NextJsBuildManifest-createassets","duration":295,"timestamp":6051935430992,"id":681,"parentId":120,"tags":{},"startTime":1775658883343,"traceId":"63571fab0751eb1f"},{"name":"seal","duration":123137,"timestamp":6051935309566,"id":668,"parentId":120,"tags":{},"startTime":1775658883221,"traceId":"63571fab0751eb1f"},{"name":"webpack-compilation","duration":955645,"timestamp":6051934477134,"id":120,"parentId":117,"tags":{"name":"client"},"startTime":1775658882389,"traceId":"63571fab0751eb1f"},{"name":"emit","duration":15822,"timestamp":6051935432800,"id":683,"parentId":117,"tags":{},"startTime":1775658883345,"traceId":"63571fab0751eb1f"},{"name":"webpack-invalidated-client","duration":974733,"timestamp":6051934474494,"id":117,"parentId":3,"tags":{"trigger":"manual"},"startTime":1775658882386,"traceId":"63571fab0751eb1f"},{"name":"client-success","duration":18,"timestamp":6051935451409,"id":686,"parentId":3,"tags":{},"startTime":1775658883363,"traceId":"63571fab0751eb1f"},{"name":"build-module","duration":16777,"timestamp":6051935464219,"id":689,"parentId":687,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-app-loader.js?name=app%2F_not-found%2Fpage&page=%2F_not-found%2Fpage&appPaths=&pagePath=..%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fnot-found-error.js&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":1775658883376,"traceId":"63571fab0751eb1f"},{"name":"build-module","duration":15941,"timestamp":6051935471641,"id":690,"parentId":688,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-app-loader.js?name=app%2Fpage&page=%2Fpage&appPaths=%2Fpage&pagePath=private-next-app-dir%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":1775658883383,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1113,"timestamp":6051935490975,"id":696,"parentId":693,"tags":{},"startTime":1775658883403,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":65,"timestamp":6051935492096,"id":703,"parentId":693,"tags":{},"startTime":1775658883404,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":1947,"timestamp":6051935490784,"id":693,"parentId":689,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/route-kind.js","layer":"rsc"},"startTime":1775658883403,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1835,"timestamp":6051935490991,"id":698,"parentId":695,"tags":{},"startTime":1775658883403,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":33,"timestamp":6051935492835,"id":704,"parentId":695,"tags":{},"startTime":1775658883405,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":2168,"timestamp":6051935490884,"id":695,"parentId":689,"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":1775658883403,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":2071,"timestamp":6051935490986,"id":697,"parentId":694,"tags":{},"startTime":1775658883403,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":42,"timestamp":6051935493061,"id":705,"parentId":694,"tags":{},"startTime":1775658883405,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":3008,"timestamp":6051935490839,"id":694,"parentId":689,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/app-render/entry-base.js","layer":"rsc"},"startTime":1775658883403,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":2902,"timestamp":6051935491064,"id":702,"parentId":701,"tags":{},"startTime":1775658883403,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":2916,"timestamp":6051935491051,"id":701,"parentId":692,"tags":{},"startTime":1775658883403,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":3553,"timestamp":6051935490750,"id":692,"parentId":689,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/not-found-error.js","layer":"rsc"},"startTime":1775658883403,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":3265,"timestamp":6051935491048,"id":700,"parentId":699,"tags":{},"startTime":1775658883403,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":3314,"timestamp":6051935491000,"id":699,"parentId":691,"tags":{},"startTime":1775658883403,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":4064,"timestamp":6051935490385,"id":691,"parentId":689,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/error-boundary.js","layer":"rsc"},"startTime":1775658883402,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":1162,"timestamp":6051935500064,"id":712,"parentId":695,"tags":{"name":"next/dist/compiled/next-server/app-page.runtime.dev.js","layer":null},"startTime":1775658883412,"traceId":"63571fab0751eb1f"},{"name":"build-module-external","duration":26,"timestamp":6051935501250,"id":713,"parentId":694,"tags":{"name":"../../client/components/static-generation-async-storage.external","layer":null},"startTime":1775658883413,"traceId":"63571fab0751eb1f"},{"name":"build-module-external","duration":15,"timestamp":6051935501287,"id":714,"parentId":694,"tags":{"name":"../../client/components/request-async-storage.external","layer":null},"startTime":1775658883413,"traceId":"63571fab0751eb1f"},{"name":"build-module-external","duration":7,"timestamp":6051935501396,"id":715,"parentId":694,"tags":{"name":"../../client/components/action-async-storage.external","layer":null},"startTime":1775658883413,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":8211,"timestamp":6051935496247,"id":711,"parentId":710,"tags":{},"startTime":1775658883408,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":8250,"timestamp":6051935496214,"id":710,"parentId":707,"tags":{},"startTime":1775658883408,"traceId":"63571fab0751eb1f"},{"name":"build-module-tsx","duration":9421,"timestamp":6051935495737,"id":707,"parentId":690,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/page.tsx","layer":"rsc"},"startTime":1775658883408,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":3307,"timestamp":6051935501865,"id":721,"parentId":720,"tags":{},"startTime":1775658883414,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":3319,"timestamp":6051935501854,"id":720,"parentId":717,"tags":{},"startTime":1775658883414,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":3604,"timestamp":6051935501739,"id":717,"parentId":694,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/not-found-boundary.js","layer":"rsc"},"startTime":1775658883414,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":5430,"timestamp":6051935501851,"id":719,"parentId":718,"tags":{},"startTime":1775658883414,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":5463,"timestamp":6051935501821,"id":718,"parentId":716,"tags":{},"startTime":1775658883414,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":6112,"timestamp":6051935501408,"id":716,"parentId":694,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/app-router.js","layer":"rsc"},"startTime":1775658883413,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":11562,"timestamp":6051935496208,"id":709,"parentId":708,"tags":{},"startTime":1775658883408,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":11629,"timestamp":6051935496141,"id":708,"parentId":706,"tags":{},"startTime":1775658883408,"traceId":"63571fab0751eb1f"},{"name":"build-module-tsx","duration":13462,"timestamp":6051935495518,"id":706,"parentId":689,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/layout.tsx","layer":"rsc"},"startTime":1775658883407,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":187,"timestamp":6051935509921,"id":728,"parentId":722,"tags":{},"startTime":1775658883422,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":404,"timestamp":6051935510114,"id":739,"parentId":722,"tags":{},"startTime":1775658883422,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":1533,"timestamp":6051935509420,"id":722,"parentId":692,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_interop_require_default.js","layer":"rsc"},"startTime":1775658883421,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":2547,"timestamp":6051935510021,"id":736,"parentId":735,"tags":{},"startTime":1775658883422,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":2557,"timestamp":6051935510013,"id":735,"parentId":726,"tags":{},"startTime":1775658883422,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":3555,"timestamp":6051935509836,"id":726,"parentId":694,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/search-params.js","layer":"rsc"},"startTime":1775658883422,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":3405,"timestamp":6051935510002,"id":732,"parentId":731,"tags":{},"startTime":1775658883422,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":3417,"timestamp":6051935509992,"id":731,"parentId":724,"tags":{},"startTime":1775658883422,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":3900,"timestamp":6051935509705,"id":724,"parentId":694,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/render-from-template-context.js","layer":"rsc"},"startTime":1775658883422,"traceId":"63571fab0751eb1f"}]
-[{"name":"next-swc-transform","duration":4140,"timestamp":6051935510012,"id":734,"parentId":733,"tags":{},"startTime":1775658883422,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":4150,"timestamp":6051935510004,"id":733,"parentId":725,"tags":{},"startTime":1775658883422,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":4468,"timestamp":6051935509802,"id":725,"parentId":694,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/client-page.js","layer":"rsc"},"startTime":1775658883422,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":5038,"timestamp":6051935509989,"id":730,"parentId":729,"tags":{},"startTime":1775658883422,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":5066,"timestamp":6051935509963,"id":729,"parentId":723,"tags":{},"startTime":1775658883422,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":5505,"timestamp":6051935509659,"id":723,"parentId":694,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/layout-router.js","layer":"rsc"},"startTime":1775658883421,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":5429,"timestamp":6051935510029,"id":738,"parentId":737,"tags":{},"startTime":1775658883422,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":5437,"timestamp":6051935510022,"id":737,"parentId":727,"tags":{},"startTime":1775658883422,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":6177,"timestamp":6051935509863,"id":727,"parentId":694,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/hooks-server-context.js","layer":"rsc"},"startTime":1775658883422,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":13150,"timestamp":6051935514781,"id":744,"parentId":740,"tags":{},"startTime":1775658883427,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":57,"timestamp":6051935527949,"id":748,"parentId":740,"tags":{},"startTime":1775658883440,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":23110,"timestamp":6051935514509,"id":740,"parentId":694,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/lib/patch-fetch.js","layer":"rsc"},"startTime":1775658883426,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":22855,"timestamp":6051935514793,"id":745,"parentId":741,"tags":{},"startTime":1775658883427,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":42,"timestamp":6051935537658,"id":749,"parentId":741,"tags":{},"startTime":1775658883449,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":23593,"timestamp":6051935514602,"id":741,"parentId":694,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/app-render/rsc/preloads.js","layer":"rsc"},"startTime":1775658883426,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":23409,"timestamp":6051935514798,"id":746,"parentId":742,"tags":{},"startTime":1775658883427,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":65,"timestamp":6051935538215,"id":750,"parentId":742,"tags":{},"startTime":1775658883450,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":24421,"timestamp":6051935514653,"id":742,"parentId":694,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/app-render/rsc/taint.js","layer":"rsc"},"startTime":1775658883426,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":24335,"timestamp":6051935514802,"id":747,"parentId":743,"tags":{},"startTime":1775658883427,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":31,"timestamp":6051935539145,"id":751,"parentId":743,"tags":{},"startTime":1775658883451,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":24620,"timestamp":6051935514698,"id":743,"parentId":694,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/app-render/rsc/postpone.js","layer":"rsc"},"startTime":1775658883427,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":7189,"timestamp":6051935541853,"id":753,"parentId":752,"tags":{},"startTime":1775658883454,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":39,"timestamp":6051935549053,"id":756,"parentId":752,"tags":{},"startTime":1775658883461,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":9283,"timestamp":6051935541677,"id":752,"parentId":726,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/app-render/dynamic-rendering.js","layer":"rsc"},"startTime":1775658883453,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":8951,"timestamp":6051935545111,"id":755,"parentId":754,"tags":{},"startTime":1775658883457,"traceId":"63571fab0751eb1f"},{"name":"build-module-css","duration":9933,"timestamp":6051935544441,"id":754,"parentId":706,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/globals.css","layer":"rsc"},"startTime":1775658883456,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":4797,"timestamp":6051935551456,"id":760,"parentId":757,"tags":{},"startTime":1775658883463,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":33,"timestamp":6051935556259,"id":773,"parentId":757,"tags":{},"startTime":1775658883468,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":6015,"timestamp":6051935551236,"id":757,"parentId":740,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/constants.js","layer":"rsc"},"startTime":1775658883463,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":5862,"timestamp":6051935551475,"id":762,"parentId":759,"tags":{},"startTime":1775658883463,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":38,"timestamp":6051935557348,"id":774,"parentId":759,"tags":{},"startTime":1775658883469,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":6210,"timestamp":6051935551400,"id":759,"parentId":740,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/lib/clone-response.js","layer":"rsc"},"startTime":1775658883463,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":6150,"timestamp":6051935551466,"id":761,"parentId":758,"tags":{},"startTime":1775658883463,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":32,"timestamp":6051935557621,"id":775,"parentId":758,"tags":{},"startTime":1775658883469,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":6903,"timestamp":6051935551344,"id":758,"parentId":740,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/lib/dedupe-fetch.js","layer":"rsc"},"startTime":1775658883463,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":4640,"timestamp":6051935554992,"id":768,"parentId":763,"tags":{},"startTime":1775658883467,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":30,"timestamp":6051935559638,"id":783,"parentId":763,"tags":{},"startTime":1775658883471,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":5260,"timestamp":6051935554630,"id":763,"parentId":726,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/web/spec-extension/adapters/reflect.js","layer":"rsc"},"startTime":1775658883466,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":4884,"timestamp":6051935555013,"id":771,"parentId":766,"tags":{},"startTime":1775658883467,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":30,"timestamp":6051935559901,"id":784,"parentId":766,"tags":{},"startTime":1775658883472,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":5506,"timestamp":6051935554892,"id":766,"parentId":740,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/lib/trace/constants.js","layer":"rsc"},"startTime":1775658883467,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":5457,"timestamp":6051935555017,"id":772,"parentId":767,"tags":{},"startTime":1775658883467,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":32,"timestamp":6051935560478,"id":785,"parentId":767,"tags":{},"startTime":1775658883472,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":7099,"timestamp":6051935554942,"id":767,"parentId":740,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/lib/trace/tracer.js","layer":"rsc"},"startTime":1775658883467,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":7237,"timestamp":6051935555008,"id":770,"parentId":765,"tags":{},"startTime":1775658883467,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":35,"timestamp":6051935562253,"id":786,"parentId":765,"tags":{},"startTime":1775658883474,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":7888,"timestamp":6051935554818,"id":765,"parentId":740,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/output/log.js","layer":"rsc"},"startTime":1775658883467,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":7762,"timestamp":6051935555003,"id":769,"parentId":764,"tags":{},"startTime":1775658883467,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":28,"timestamp":6051935562770,"id":787,"parentId":764,"tags":{},"startTime":1775658883475,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":8148,"timestamp":6051935554745,"id":764,"parentId":691,"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":1775658883467,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":6043,"timestamp":6051935558914,"id":780,"parentId":779,"tags":{},"startTime":1775658883471,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":6090,"timestamp":6051935558869,"id":779,"parentId":777,"tags":{},"startTime":1775658883471,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":6669,"timestamp":6051935558639,"id":777,"parentId":752,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/static-generation-bailout.js","layer":"rsc"},"startTime":1775658883470,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":7398,"timestamp":6051935558691,"id":778,"parentId":776,"tags":{},"startTime":1775658883471,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":32,"timestamp":6051935566098,"id":788,"parentId":776,"tags":{},"startTime":1775658883478,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":8109,"timestamp":6051935558520,"id":776,"parentId":752,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/url.js","layer":"rsc"},"startTime":1775658883470,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":8302,"timestamp":6051935559455,"id":782,"parentId":781,"tags":{},"startTime":1775658883471,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":50,"timestamp":6051935567768,"id":789,"parentId":781,"tags":{},"startTime":1775658883480,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":8616,"timestamp":6051935559382,"id":781,"parentId":694,"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":1775658883471,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":2771,"timestamp":6051935568819,"id":793,"parentId":791,"tags":{},"startTime":1775658883481,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":26,"timestamp":6051935571594,"id":810,"parentId":791,"tags":{},"startTime":1775658883483,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":2961,"timestamp":6051935568752,"id":791,"parentId":692,"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":1775658883481,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":3024,"timestamp":6051935568809,"id":792,"parentId":790,"tags":{},"startTime":1775658883481,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":27,"timestamp":6051935571837,"id":811,"parentId":790,"tags":{},"startTime":1775658883484,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":3421,"timestamp":6051935568664,"id":790,"parentId":692,"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":1775658883480,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":1443,"timestamp":6051935571420,"id":803,"parentId":802,"tags":{},"startTime":1775658883483,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":1492,"timestamp":6051935571375,"id":802,"parentId":797,"tags":{},"startTime":1775658883483,"traceId":"63571fab0751eb1f"},{"name":"build-module-tsx","duration":2037,"timestamp":6051935571182,"id":797,"parentId":706,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/hooks/use-auth.tsx","layer":"rsc"},"startTime":1775658883483,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":3546,"timestamp":6051935569710,"id":795,"parentId":794,"tags":{},"startTime":1775658883482,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":34,"timestamp":6051935573262,"id":812,"parentId":794,"tags":{},"startTime":1775658883485,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":4472,"timestamp":6051935569571,"id":794,"parentId":765,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/picocolors.js","layer":"rsc"},"startTime":1775658883481,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":2669,"timestamp":6051935571452,"id":805,"parentId":804,"tags":{},"startTime":1775658883483,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":2700,"timestamp":6051935571422,"id":804,"parentId":798,"tags":{},"startTime":1775658883483,"traceId":"63571fab0751eb1f"},{"name":"build-module-tsx","duration":3007,"timestamp":6051935571233,"id":798,"parentId":706,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/auth-guard.tsx","layer":"rsc"},"startTime":1775658883483,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":2767,"timestamp":6051935571482,"id":807,"parentId":806,"tags":{},"startTime":1775658883483,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":2795,"timestamp":6051935571454,"id":806,"parentId":799,"tags":{},"startTime":1775658883483,"traceId":"63571fab0751eb1f"},{"name":"build-module-tsx","duration":3053,"timestamp":6051935571281,"id":799,"parentId":706,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/user-menu.tsx","layer":"rsc"},"startTime":1775658883483,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":2986,"timestamp":6051935571509,"id":809,"parentId":808,"tags":{},"startTime":1775658883483,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":3013,"timestamp":6051935571483,"id":808,"parentId":800,"tags":{},"startTime":1775658883483,"traceId":"63571fab0751eb1f"},{"name":"build-module-tsx","duration":3274,"timestamp":6051935571322,"id":800,"parentId":706,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/nav.tsx","layer":"rsc"},"startTime":1775658883483,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":4166,"timestamp":6051935571365,"id":801,"parentId":796,"tags":{},"startTime":1775658883483,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":29,"timestamp":6051935575537,"id":813,"parentId":796,"tags":{},"startTime":1775658883487,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":4551,"timestamp":6051935571107,"id":796,"parentId":706,"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":1775658883483,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":375,"timestamp":6051935576803,"id":817,"parentId":816,"tags":{},"startTime":1775658883489,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":42,"timestamp":6051935577181,"id":818,"parentId":816,"tags":{},"startTime":1775658883489,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":5138,"timestamp":6051935576743,"id":816,"parentId":767,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@opentelemetry/api/index.js","layer":"rsc"},"startTime":1775658883489,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":7298,"timestamp":6051935576312,"id":815,"parentId":814,"tags":{},"startTime":1775658883488,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":37,"timestamp":6051935583621,"id":819,"parentId":814,"tags":{},"startTime":1775658883495,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":7598,"timestamp":6051935576240,"id":814,"parentId":741,"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":1775658883488,"traceId":"63571fab0751eb1f"},{"name":"add-entry","duration":130841,"timestamp":6051935453371,"id":687,"parentId":685,"tags":{"request":"next-app-loader?name=app%2F_not-found%2Fpage&page=%2F_not-found%2Fpage&appPaths=&pagePath=..%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fnot-found-error.js&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":1775658883365,"traceId":"63571fab0751eb1f"},{"name":"add-entry","duration":130676,"timestamp":6051935453542,"id":688,"parentId":685,"tags":{"request":"next-app-loader?name=app%2Fpage&page=%2Fpage&appPaths=%2Fpage&pagePath=private-next-app-dir%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":1775658883365,"traceId":"63571fab0751eb1f"},{"name":"build-module","duration":2736,"timestamp":6051935604133,"id":826,"parentId":684,"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%2Fglobals.css%22%2C%22ids%22%3A%5B%5D%7D&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&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":1775658883516,"traceId":"63571fab0751eb1f"},{"name":"build-module","duration":1375,"timestamp":6051935606886,"id":827,"parentId":684,"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":1775658883519,"traceId":"63571fab0751eb1f"},{"name":"build-module","duration":334,"timestamp":6051935608270,"id":828,"parentId":684,"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%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=true!","layer":"ssr"},"startTime":1775658883520,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":20290,"timestamp":6051935612122,"id":831,"parentId":830,"tags":{},"startTime":1775658883524,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":20361,"timestamp":6051935612059,"id":830,"parentId":829,"tags":{},"startTime":1775658883524,"traceId":"63571fab0751eb1f"},{"name":"build-module-tsx","duration":22881,"timestamp":6051935611798,"id":829,"parentId":828,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/page.tsx","layer":"ssr"},"startTime":1775658883524,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":6230,"timestamp":6051935632013,"id":835,"parentId":834,"tags":{},"startTime":1775658883544,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":6290,"timestamp":6051935631957,"id":834,"parentId":832,"tags":{},"startTime":1775658883544,"traceId":"63571fab0751eb1f"},{"name":"build-module-tsx","duration":7643,"timestamp":6051935631459,"id":832,"parentId":826,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/auth-guard.tsx","layer":"ssr"},"startTime":1775658883543,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":7178,"timestamp":6051935632037,"id":837,"parentId":836,"tags":{},"startTime":1775658883544,"traceId":"63571fab0751eb1f"}]
-[{"name":"next-swc-loader","duration":7423,"timestamp":6051935632017,"id":836,"parentId":833,"tags":{},"startTime":1775658883544,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":9652,"timestamp":6051935631617,"id":833,"parentId":827,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/error-boundary.js","layer":"ssr"},"startTime":1775658883543,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":5393,"timestamp":6051935635931,"id":853,"parentId":852,"tags":{},"startTime":1775658883548,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":5404,"timestamp":6051935635920,"id":852,"parentId":841,"tags":{},"startTime":1775658883548,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":5922,"timestamp":6051935635613,"id":841,"parentId":827,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/client-page.js","layer":"ssr"},"startTime":1775658883547,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":5718,"timestamp":6051935635855,"id":847,"parentId":846,"tags":{},"startTime":1775658883548,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":5770,"timestamp":6051935635804,"id":846,"parentId":838,"tags":{},"startTime":1775658883548,"traceId":"63571fab0751eb1f"},{"name":"build-module-tsx","duration":6518,"timestamp":6051935635422,"id":838,"parentId":826,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/user-menu.tsx","layer":"ssr"},"startTime":1775658883547,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":6043,"timestamp":6051935635919,"id":851,"parentId":850,"tags":{},"startTime":1775658883548,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":6072,"timestamp":6051935635890,"id":850,"parentId":840,"tags":{},"startTime":1775658883548,"traceId":"63571fab0751eb1f"},{"name":"build-module-tsx","duration":6975,"timestamp":6051935635571,"id":840,"parentId":826,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/hooks/use-auth.tsx","layer":"ssr"},"startTime":1775658883547,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":9131,"timestamp":6051935635889,"id":849,"parentId":848,"tags":{},"startTime":1775658883548,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":9165,"timestamp":6051935635858,"id":848,"parentId":839,"tags":{},"startTime":1775658883548,"traceId":"63571fab0751eb1f"},{"name":"build-module-tsx","duration":10685,"timestamp":6051935635523,"id":839,"parentId":826,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/nav.tsx","layer":"ssr"},"startTime":1775658883547,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":10275,"timestamp":6051935635968,"id":861,"parentId":860,"tags":{},"startTime":1775658883548,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":10283,"timestamp":6051935635960,"id":860,"parentId":845,"tags":{},"startTime":1775658883548,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":10874,"timestamp":6051935635692,"id":845,"parentId":827,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/render-from-template-context.js","layer":"ssr"},"startTime":1775658883548,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":11093,"timestamp":6051935635940,"id":855,"parentId":854,"tags":{},"startTime":1775658883548,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":11104,"timestamp":6051935635932,"id":854,"parentId":842,"tags":{},"startTime":1775658883548,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":12081,"timestamp":6051935635635,"id":842,"parentId":827,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/not-found-boundary.js","layer":"ssr"},"startTime":1775658883547,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":11856,"timestamp":6051935635951,"id":857,"parentId":856,"tags":{},"startTime":1775658883548,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":11866,"timestamp":6051935635942,"id":856,"parentId":843,"tags":{},"startTime":1775658883548,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":13441,"timestamp":6051935635655,"id":843,"parentId":827,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/layout-router.js","layer":"ssr"},"startTime":1775658883547,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":13173,"timestamp":6051935635959,"id":859,"parentId":858,"tags":{},"startTime":1775658883548,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":13182,"timestamp":6051935635952,"id":858,"parentId":844,"tags":{},"startTime":1775658883548,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":17055,"timestamp":6051935635674,"id":844,"parentId":827,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/app-router.js","layer":"ssr"},"startTime":1775658883547,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":375,"timestamp":6051935664557,"id":866,"parentId":862,"tags":{},"startTime":1775658883576,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":30,"timestamp":6051935664944,"id":873,"parentId":862,"tags":{},"startTime":1775658883577,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":1251,"timestamp":6051935664003,"id":862,"parentId":833,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_interop_require_default.js","layer":"ssr"},"startTime":1775658883576,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":450,"timestamp":6051935666180,"id":897,"parentId":874,"tags":{},"startTime":1775658883578,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":29,"timestamp":6051935666637,"id":942,"parentId":874,"tags":{},"startTime":1775658883578,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":1372,"timestamp":6051935665668,"id":874,"parentId":845,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_interop_require_wildcard.js","layer":"ssr"},"startTime":1775658883577,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":5408,"timestamp":6051935664746,"id":870,"parentId":869,"tags":{},"startTime":1775658883577,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":5433,"timestamp":6051935664725,"id":869,"parentId":864,"tags":{},"startTime":1775658883577,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":6279,"timestamp":6051935664468,"id":864,"parentId":833,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/is-next-router-error.js","layer":"ssr"},"startTime":1775658883576,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":5934,"timestamp":6051935664840,"id":872,"parentId":871,"tags":{},"startTime":1775658883577,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":6026,"timestamp":6051935664748,"id":871,"parentId":865,"tags":{},"startTime":1775658883577,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":6913,"timestamp":6051935664513,"id":865,"parentId":841,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/search-params.js","layer":"ssr"},"startTime":1775658883576,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":6725,"timestamp":6051935664722,"id":868,"parentId":867,"tags":{},"startTime":1775658883577,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":6764,"timestamp":6051935664684,"id":867,"parentId":863,"tags":{},"startTime":1775658883576,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":8375,"timestamp":6051935664419,"id":863,"parentId":833,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/navigation.js","layer":"ssr"},"startTime":1775658883576,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":6630,"timestamp":6051935666237,"id":903,"parentId":902,"tags":{},"startTime":1775658883578,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":6642,"timestamp":6051935666228,"id":902,"parentId":877,"tags":{},"startTime":1775658883578,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":7486,"timestamp":6051935665808,"id":877,"parentId":844,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/has-base-path.js","layer":"ssr"},"startTime":1775658883578,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":7086,"timestamp":6051935666227,"id":901,"parentId":900,"tags":{},"startTime":1775658883578,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":7098,"timestamp":6051935666216,"id":900,"parentId":876,"tags":{},"startTime":1775658883578,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":7754,"timestamp":6051935665785,"id":876,"parentId":844,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/remove-base-path.js","layer":"ssr"},"startTime":1775658883578,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":7283,"timestamp":6051935666264,"id":907,"parentId":906,"tags":{},"startTime":1775658883578,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":7301,"timestamp":6051935666247,"id":906,"parentId":879,"tags":{},"startTime":1775658883578,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":7836,"timestamp":6051935665848,"id":879,"parentId":843,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/unresolved-thenable.js","layer":"ssr"},"startTime":1775658883578,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":7600,"timestamp":6051935666246,"id":905,"parentId":904,"tags":{},"startTime":1775658883578,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":7614,"timestamp":6051935666238,"id":904,"parentId":878,"tags":{},"startTime":1775658883578,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":8762,"timestamp":6051935665828,"id":878,"parentId":842,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/not-found.js","layer":"ssr"},"startTime":1775658883578,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":15359,"timestamp":6051935666273,"id":909,"parentId":908,"tags":{},"startTime":1775658883578,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":15372,"timestamp":6051935666265,"id":908,"parentId":880,"tags":{},"startTime":1775658883578,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":16214,"timestamp":6051935665866,"id":880,"parentId":843,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/match-segments.js","layer":"ssr"},"startTime":1775658883578,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":15884,"timestamp":6051935666214,"id":899,"parentId":898,"tags":{},"startTime":1775658883578,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":15912,"timestamp":6051935666185,"id":898,"parentId":875,"tags":{},"startTime":1775658883578,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":16557,"timestamp":6051935665752,"id":875,"parentId":844,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/add-base-path.js","layer":"ssr"},"startTime":1775658883578,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":16026,"timestamp":6051935666299,"id":915,"parentId":914,"tags":{},"startTime":1775658883578,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":16034,"timestamp":6051935666292,"id":914,"parentId":883,"tags":{},"startTime":1775658883578,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":16735,"timestamp":6051935665921,"id":883,"parentId":844,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/app-router-announcer.js","layer":"ssr"},"startTime":1775658883578,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":16387,"timestamp":6051935666291,"id":913,"parentId":912,"tags":{},"startTime":1775658883578,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":16395,"timestamp":6051935666284,"id":912,"parentId":882,"tags":{},"startTime":1775658883578,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":17446,"timestamp":6051935665904,"id":882,"parentId":844,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/use-reducer-with-devtools.js","layer":"ssr"},"startTime":1775658883578,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":17085,"timestamp":6051935666283,"id":911,"parentId":910,"tags":{},"startTime":1775658883578,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":17094,"timestamp":6051935666274,"id":910,"parentId":881,"tags":{},"startTime":1775658883578,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":17914,"timestamp":6051935665885,"id":881,"parentId":843,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/redirect-boundary.js","layer":"ssr"},"startTime":1775658883578,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":17504,"timestamp":6051935666307,"id":917,"parentId":916,"tags":{},"startTime":1775658883578,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":17512,"timestamp":6051935666300,"id":916,"parentId":884,"tags":{},"startTime":1775658883578,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":18086,"timestamp":6051935665938,"id":884,"parentId":844,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/app-router-headers.js","layer":"ssr"},"startTime":1775658883578,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":17709,"timestamp":6051935666323,"id":921,"parentId":920,"tags":{},"startTime":1775658883578,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":17717,"timestamp":6051935666316,"id":920,"parentId":886,"tags":{},"startTime":1775658883578,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":18171,"timestamp":6051935665972,"id":886,"parentId":842,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/utils/warn-once.js","layer":"ssr"},"startTime":1775658883578,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":17812,"timestamp":6051935666339,"id":925,"parentId":924,"tags":{},"startTime":1775658883578,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":17819,"timestamp":6051935666332,"id":924,"parentId":888,"tags":{},"startTime":1775658883578,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":18338,"timestamp":6051935666005,"id":888,"parentId":843,"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":1775658883578,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":18034,"timestamp":6051935666315,"id":919,"parentId":918,"tags":{},"startTime":1775658883578,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":18042,"timestamp":6051935666308,"id":918,"parentId":885,"tags":{},"startTime":1775658883578,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":18487,"timestamp":6051935665955,"id":885,"parentId":844,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/segment.js","layer":"ssr"},"startTime":1775658883578,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":18103,"timestamp":6051935666347,"id":927,"parentId":926,"tags":{},"startTime":1775658883578,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":18110,"timestamp":6051935666340,"id":926,"parentId":889,"tags":{},"startTime":1775658883578,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":18638,"timestamp":6051935666022,"id":889,"parentId":844,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/router-reducer-types.js","layer":"ssr"},"startTime":1775658883578,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":18343,"timestamp":6051935666331,"id":923,"parentId":922,"tags":{},"startTime":1775658883578,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":18351,"timestamp":6051935666324,"id":922,"parentId":887,"tags":{},"startTime":1775658883578,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":19097,"timestamp":6051935665988,"id":887,"parentId":843,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/fetch-server-response.js","layer":"ssr"},"startTime":1775658883578,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":18739,"timestamp":6051935666355,"id":929,"parentId":928,"tags":{},"startTime":1775658883578,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":18747,"timestamp":6051935666348,"id":928,"parentId":890,"tags":{},"startTime":1775658883578,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":19185,"timestamp":6051935666041,"id":890,"parentId":844,"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":1775658883578,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":18862,"timestamp":6051935666371,"id":933,"parentId":932,"tags":{},"startTime":1775658883578,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":18869,"timestamp":6051935666364,"id":932,"parentId":892,"tags":{},"startTime":1775658883578,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":19318,"timestamp":6051935666074,"id":892,"parentId":843,"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":1775658883578,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":19022,"timestamp":6051935666386,"id":937,"parentId":936,"tags":{},"startTime":1775658883578,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":19029,"timestamp":6051935666380,"id":936,"parentId":894,"tags":{},"startTime":1775658883578,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":19552,"timestamp":6051935666110,"id":894,"parentId":844,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/is-bot.js","layer":"ssr"},"startTime":1775658883578,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":19290,"timestamp":6051935666379,"id":935,"parentId":934,"tags":{},"startTime":1775658883578,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":19298,"timestamp":6051935666372,"id":934,"parentId":893,"tags":{},"startTime":1775658883578,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":19729,"timestamp":6051935666090,"id":893,"parentId":843,"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":1775658883578,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":21658,"timestamp":6051935666363,"id":931,"parentId":930,"tags":{},"startTime":1775658883578,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":21673,"timestamp":6051935666356,"id":930,"parentId":891,"tags":{},"startTime":1775658883578,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":22358,"timestamp":6051935666057,"id":891,"parentId":844,"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":1775658883578,"traceId":"63571fab0751eb1f"}]
-[{"name":"next-swc-transform","duration":22131,"timestamp":6051935666395,"id":939,"parentId":938,"tags":{},"startTime":1775658883578,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":22139,"timestamp":6051935666387,"id":938,"parentId":895,"tags":{},"startTime":1775658883578,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":22680,"timestamp":6051935666141,"id":895,"parentId":844,"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":1775658883578,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":27856,"timestamp":6051935666402,"id":941,"parentId":940,"tags":{},"startTime":1775658883578,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":27865,"timestamp":6051935666395,"id":940,"parentId":896,"tags":{},"startTime":1775658883578,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":29289,"timestamp":6051935666158,"id":896,"parentId":844,"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":1775658883578,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":4093,"timestamp":6051935691775,"id":945,"parentId":944,"tags":{},"startTime":1775658883604,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":4125,"timestamp":6051935691744,"id":944,"parentId":943,"tags":{},"startTime":1775658883604,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":4931,"timestamp":6051935691108,"id":943,"parentId":843,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/handle-smooth-scroll.js","layer":"ssr"},"startTime":1775658883603,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":242,"timestamp":6051935696898,"id":952,"parentId":947,"tags":{},"startTime":1775658883609,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":281,"timestamp":6051935696902,"id":953,"parentId":951,"tags":{},"startTime":1775658883609,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":1963,"timestamp":6051935697146,"id":962,"parentId":947,"tags":{},"startTime":1775658883609,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":1931,"timestamp":6051935697185,"id":963,"parentId":951,"tags":{},"startTime":1775658883609,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":3323,"timestamp":6051935696672,"id":947,"parentId":865,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/app-render/dynamic-rendering.js","layer":"ssr"},"startTime":1775658883608,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":3403,"timestamp":6051935696804,"id":951,"parentId":865,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/web/spec-extension/adapters/reflect.js","layer":"ssr"},"startTime":1775658883609,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":4971,"timestamp":6051935697059,"id":961,"parentId":960,"tags":{},"startTime":1775658883609,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":4981,"timestamp":6051935697051,"id":960,"parentId":950,"tags":{},"startTime":1775658883609,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":5452,"timestamp":6051935696785,"id":950,"parentId":877,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/path-has-prefix.js","layer":"ssr"},"startTime":1775658883609,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":5208,"timestamp":6051935697040,"id":957,"parentId":956,"tags":{},"startTime":1775658883609,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":5220,"timestamp":6051935697029,"id":956,"parentId":948,"tags":{},"startTime":1775658883609,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":5776,"timestamp":6051935696738,"id":948,"parentId":863,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/navigation.react-server.js","layer":"ssr"},"startTime":1775658883609,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":5473,"timestamp":6051935697050,"id":959,"parentId":958,"tags":{},"startTime":1775658883609,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":5482,"timestamp":6051935697041,"id":958,"parentId":949,"tags":{},"startTime":1775658883609,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":5905,"timestamp":6051935696764,"id":949,"parentId":863,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/bailout-to-client-rendering.js","layer":"ssr"},"startTime":1775658883609,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":5655,"timestamp":6051935697026,"id":955,"parentId":954,"tags":{},"startTime":1775658883609,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":5681,"timestamp":6051935697000,"id":954,"parentId":946,"tags":{},"startTime":1775658883609,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":6512,"timestamp":6051935696537,"id":946,"parentId":864,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/redirect.js","layer":"ssr"},"startTime":1775658883608,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":622,"timestamp":6051935705244,"id":976,"parentId":967,"tags":{},"startTime":1775658883617,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":710,"timestamp":6051935705248,"id":977,"parentId":975,"tags":{},"startTime":1775658883617,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":690,"timestamp":6051935705884,"id":998,"parentId":967,"tags":{},"startTime":1775658883618,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":613,"timestamp":6051935705963,"id":999,"parentId":975,"tags":{},"startTime":1775658883618,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":1908,"timestamp":6051935705004,"id":967,"parentId":880,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/app-render/get-segment-param.js","layer":"ssr"},"startTime":1775658883617,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":2085,"timestamp":6051935705185,"id":975,"parentId":893,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/helpers/interception-routes.js","layer":"ssr"},"startTime":1775658883617,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":3518,"timestamp":6051935705546,"id":981,"parentId":980,"tags":{},"startTime":1775658883617,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":3530,"timestamp":6051935705536,"id":980,"parentId":965,"tags":{},"startTime":1775658883617,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":4360,"timestamp":6051935704958,"id":965,"parentId":887,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/app-call-server.js","layer":"ssr"},"startTime":1775658883617,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":3767,"timestamp":6051935705564,"id":985,"parentId":984,"tags":{},"startTime":1775658883617,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":3780,"timestamp":6051935705556,"id":984,"parentId":968,"tags":{},"startTime":1775658883617,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":4444,"timestamp":6051935705047,"id":968,"parentId":887,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/hash.js","layer":"ssr"},"startTime":1775658883617,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":3972,"timestamp":6051935705533,"id":979,"parentId":978,"tags":{},"startTime":1775658883617,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":4000,"timestamp":6051935705506,"id":978,"parentId":964,"tags":{},"startTime":1775658883617,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":4973,"timestamp":6051935704895,"id":964,"parentId":875,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/normalize-trailing-slash.js","layer":"ssr"},"startTime":1775658883617,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":4329,"timestamp":6051935705555,"id":983,"parentId":982,"tags":{},"startTime":1775658883617,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":4338,"timestamp":6051935705547,"id":982,"parentId":966,"tags":{},"startTime":1775658883617,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":5163,"timestamp":6051935704983,"id":966,"parentId":887,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/flight-data-helpers.js","layer":"ssr"},"startTime":1775658883617,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":4575,"timestamp":6051935705580,"id":989,"parentId":988,"tags":{},"startTime":1775658883617,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":4583,"timestamp":6051935705573,"id":988,"parentId":970,"tags":{},"startTime":1775658883617,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":5181,"timestamp":6051935705086,"id":970,"parentId":875,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/add-path-prefix.js","layer":"ssr"},"startTime":1775658883617,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":4687,"timestamp":6051935705597,"id":993,"parentId":992,"tags":{},"startTime":1775658883617,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":4695,"timestamp":6051935705590,"id":992,"parentId":972,"tags":{},"startTime":1775658883617,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":5501,"timestamp":6051935705136,"id":972,"parentId":891,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/compute-changed-path.js","layer":"ssr"},"startTime":1775658883617,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":5067,"timestamp":6051935705589,"id":991,"parentId":990,"tags":{},"startTime":1775658883617,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":5075,"timestamp":6051935705581,"id":990,"parentId":971,"tags":{},"startTime":1775658883617,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":5893,"timestamp":6051935705117,"id":971,"parentId":891,"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":1775658883617,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":5457,"timestamp":6051935705572,"id":987,"parentId":986,"tags":{},"startTime":1775658883617,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":5465,"timestamp":6051935705565,"id":986,"parentId":969,"tags":{},"startTime":1775658883617,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":6293,"timestamp":6051935705065,"id":969,"parentId":882,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/action-queue.js","layer":"ssr"},"startTime":1775658883617,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":642,"timestamp":6051935712238,"id":1011,"parentId":1001,"tags":{},"startTime":1775658883624,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":672,"timestamp":6051935712241,"id":1012,"parentId":1002,"tags":{},"startTime":1775658883624,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":1074,"timestamp":6051935712885,"id":1031,"parentId":1001,"tags":{},"startTime":1775658883625,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":1045,"timestamp":6051935712915,"id":1032,"parentId":1002,"tags":{},"startTime":1775658883625,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":2298,"timestamp":6051935711888,"id":1001,"parentId":896,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/dev/hot-reloader-types.js","layer":"ssr"},"startTime":1775658883624,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":2415,"timestamp":6051935711949,"id":1002,"parentId":896,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/dev/extract-modules-from-turbopack-message.js","layer":"ssr"},"startTime":1775658883624,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":12051,"timestamp":6051935705613,"id":997,"parentId":996,"tags":{},"startTime":1775658883617,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":12060,"timestamp":6051935705606,"id":996,"parentId":974,"tags":{},"startTime":1775658883617,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":12885,"timestamp":6051935705169,"id":974,"parentId":891,"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":1775658883617,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":12682,"timestamp":6051935705605,"id":995,"parentId":994,"tags":{},"startTime":1775658883617,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":12690,"timestamp":6051935705598,"id":994,"parentId":973,"tags":{},"startTime":1775658883617,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":13764,"timestamp":6051935705153,"id":973,"parentId":891,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/prefetch-cache-utils.js","layer":"ssr"},"startTime":1775658883617,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":6437,"timestamp":6051935712693,"id":1014,"parentId":1013,"tags":{},"startTime":1775658883625,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":6462,"timestamp":6051935712669,"id":1013,"parentId":1000,"tags":{},"startTime":1775658883624,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":7567,"timestamp":6051935711830,"id":1000,"parentId":896,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/strip-ansi/index.js","layer":"ssr"},"startTime":1775658883624,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":6705,"timestamp":6051935712706,"id":1016,"parentId":1015,"tags":{},"startTime":1775658883625,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":6716,"timestamp":6051935712695,"id":1015,"parentId":1003,"tags":{},"startTime":1775658883625,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":8057,"timestamp":6051935712037,"id":1003,"parentId":896,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/shared.js","layer":"ssr"},"startTime":1775658883624,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":7414,"timestamp":6051935712715,"id":1018,"parentId":1017,"tags":{},"startTime":1775658883625,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":7423,"timestamp":6051935712707,"id":1017,"parentId":1004,"tags":{},"startTime":1775658883625,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":8501,"timestamp":6051935712066,"id":1004,"parentId":896,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/app/ReactDevOverlay.js","layer":"ssr"},"startTime":1775658883624,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":7826,"timestamp":6051935712751,"id":1026,"parentId":1025,"tags":{},"startTime":1775658883625,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":7833,"timestamp":6051935712744,"id":1025,"parentId":1008,"tags":{},"startTime":1775658883625,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":8562,"timestamp":6051935712136,"id":1008,"parentId":896,"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":1775658883624,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":7977,"timestamp":6051935712732,"id":1022,"parentId":1021,"tags":{},"startTime":1775658883625,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":7985,"timestamp":6051935712724,"id":1021,"parentId":1006,"tags":{},"startTime":1775658883625,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":8855,"timestamp":6051935712103,"id":1006,"parentId":896,"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":1775658883624,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":8226,"timestamp":6051935712743,"id":1024,"parentId":1023,"tags":{},"startTime":1775658883625,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":8238,"timestamp":6051935712733,"id":1023,"parentId":1007,"tags":{},"startTime":1775658883625,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":9139,"timestamp":6051935712120,"id":1007,"parentId":896,"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":1775658883624,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":10408,"timestamp":6051935712723,"id":1020,"parentId":1019,"tags":{},"startTime":1775658883625,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":10421,"timestamp":6051935712716,"id":1019,"parentId":1005,"tags":{},"startTime":1775658883625,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":12260,"timestamp":6051935712086,"id":1005,"parentId":896,"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":1775658883624,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":11606,"timestamp":6051935712759,"id":1028,"parentId":1027,"tags":{},"startTime":1775658883625,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":11614,"timestamp":6051935712752,"id":1027,"parentId":1009,"tags":{},"startTime":1775658883625,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":12780,"timestamp":6051935712154,"id":1009,"parentId":896,"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":1775658883624,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":667,"timestamp":6051935726173,"id":1039,"parentId":1033,"tags":{},"startTime":1775658883638,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":2719,"timestamp":6051935726847,"id":1050,"parentId":1033,"tags":{},"startTime":1775658883639,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":4081,"timestamp":6051935725767,"id":1033,"parentId":947,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/url.js","layer":"ssr"},"startTime":1775658883638,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":18854,"timestamp":6051935712767,"id":1030,"parentId":1029,"tags":{},"startTime":1775658883625,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":18862,"timestamp":6051935712760,"id":1029,"parentId":1010,"tags":{},"startTime":1775658883625,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":19817,"timestamp":6051935712170,"id":1010,"parentId":896,"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":1775658883624,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":5708,"timestamp":6051935726700,"id":1045,"parentId":1044,"tags":{},"startTime":1775658883639,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":5718,"timestamp":6051935726691,"id":1044,"parentId":1036,"tags":{},"startTime":1775658883639,"traceId":"63571fab0751eb1f"}]
-[{"name":"build-module-js","duration":6715,"timestamp":6051935725918,"id":1036,"parentId":946,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/redirect-status-code.js","layer":"ssr"},"startTime":1775658883638,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":5934,"timestamp":6051935726709,"id":1047,"parentId":1046,"tags":{},"startTime":1775658883639,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":5942,"timestamp":6051935726701,"id":1046,"parentId":1037,"tags":{},"startTime":1775658883639,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":6827,"timestamp":6051935725959,"id":1037,"parentId":949,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/lazy-dynamic/bailout-to-csr.js","layer":"ssr"},"startTime":1775658883638,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":6104,"timestamp":6051935726690,"id":1043,"parentId":1042,"tags":{},"startTime":1775658883639,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":6116,"timestamp":6051935726678,"id":1042,"parentId":1035,"tags":{},"startTime":1775658883638,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":7043,"timestamp":6051935725894,"id":1035,"parentId":947,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/static-generation-bailout.js","layer":"ssr"},"startTime":1775658883638,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":6271,"timestamp":6051935726675,"id":1041,"parentId":1040,"tags":{},"startTime":1775658883638,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":6306,"timestamp":6051935726641,"id":1040,"parentId":1034,"tags":{},"startTime":1775658883638,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":7220,"timestamp":6051935725861,"id":1034,"parentId":947,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/hooks-server-context.js","layer":"ssr"},"startTime":1775658883638,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":6371,"timestamp":6051935726718,"id":1049,"parentId":1048,"tags":{},"startTime":1775658883639,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":6380,"timestamp":6051935726710,"id":1048,"parentId":1038,"tags":{},"startTime":1775658883639,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":7201,"timestamp":6051935725980,"id":1038,"parentId":950,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/parse-path.js","layer":"ssr"},"startTime":1775658883638,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":235,"timestamp":6051935734255,"id":1075,"parentId":1062,"tags":{},"startTime":1775658883646,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":27,"timestamp":6051935734495,"id":1100,"parentId":1062,"tags":{},"startTime":1775658883646,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":951,"timestamp":6051935733981,"id":1062,"parentId":1006,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/stacktrace-parser/stack-trace-parser.cjs.js","layer":"ssr"},"startTime":1775658883646,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":2270,"timestamp":6051935733544,"id":1057,"parentId":1056,"tags":{},"startTime":1775658883645,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":2293,"timestamp":6051935733522,"id":1056,"parentId":1051,"tags":{},"startTime":1775658883645,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":2595,"timestamp":6051935733322,"id":1051,"parentId":964,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/remove-trailing-slash.js","layer":"ssr"},"startTime":1775658883645,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":2360,"timestamp":6051935733565,"id":1061,"parentId":1060,"tags":{},"startTime":1775658883645,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":2369,"timestamp":6051935733557,"id":1060,"parentId":1053,"tags":{},"startTime":1775658883645,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":2694,"timestamp":6051935733397,"id":1053,"parentId":975,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/app-paths.js","layer":"ssr"},"startTime":1775658883645,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":2545,"timestamp":6051935733556,"id":1059,"parentId":1058,"tags":{},"startTime":1775658883645,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":2555,"timestamp":6051935733546,"id":1058,"parentId":1052,"tags":{},"startTime":1775658883645,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":2950,"timestamp":6051935733373,"id":1052,"parentId":969,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/router-reducer.js","layer":"ssr"},"startTime":1775658883645,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":4579,"timestamp":6051935734282,"id":1079,"parentId":1078,"tags":{},"startTime":1775658883646,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":4589,"timestamp":6051935734273,"id":1078,"parentId":1064,"tags":{},"startTime":1775658883646,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":5113,"timestamp":6051935734052,"id":1064,"parentId":1007,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/is-hydration-error.js","layer":"ssr"},"startTime":1775658883646,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":4880,"timestamp":6051935734299,"id":1081,"parentId":1080,"tags":{},"startTime":1775658883646,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":4898,"timestamp":6051935734283,"id":1080,"parentId":1065,"tags":{},"startTime":1775658883646,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":5331,"timestamp":6051935734070,"id":1065,"parentId":973,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/prefetch-reducer.js","layer":"ssr"},"startTime":1775658883646,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":5141,"timestamp":6051935734272,"id":1077,"parentId":1076,"tags":{},"startTime":1775658883646,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":5156,"timestamp":6051935734258,"id":1076,"parentId":1063,"tags":{},"startTime":1775658883646,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":5805,"timestamp":6051935734029,"id":1063,"parentId":974,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/apply-flight-data.js","layer":"ssr"},"startTime":1775658883646,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":5568,"timestamp":6051935734309,"id":1083,"parentId":1082,"tags":{},"startTime":1775658883646,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":5578,"timestamp":6051935734301,"id":1082,"parentId":1066,"tags":{},"startTime":1775658883646,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":6159,"timestamp":6051935734090,"id":1066,"parentId":1004,"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":1775658883646,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":5953,"timestamp":6051935734317,"id":1085,"parentId":1084,"tags":{},"startTime":1775658883646,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":5961,"timestamp":6051935734310,"id":1084,"parentId":1067,"tags":{},"startTime":1775658883646,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":6513,"timestamp":6051935734108,"id":1067,"parentId":1004,"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":1775658883646,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":6305,"timestamp":6051935734333,"id":1089,"parentId":1088,"tags":{},"startTime":1775658883646,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":6314,"timestamp":6051935734326,"id":1088,"parentId":1069,"tags":{},"startTime":1775658883646,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":6754,"timestamp":6051935734140,"id":1069,"parentId":1004,"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":1775658883646,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":6566,"timestamp":6051935734340,"id":1091,"parentId":1090,"tags":{},"startTime":1775658883646,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":6574,"timestamp":6051935734334,"id":1090,"parentId":1070,"tags":{},"startTime":1775658883646,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":6995,"timestamp":6051935734157,"id":1070,"parentId":1004,"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":1775658883646,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":6807,"timestamp":6051935734355,"id":1095,"parentId":1094,"tags":{},"startTime":1775658883646,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":6815,"timestamp":6051935734349,"id":1094,"parentId":1072,"tags":{},"startTime":1775658883646,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":7239,"timestamp":6051935734203,"id":1072,"parentId":1004,"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":1775658883646,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":7095,"timestamp":6051935734363,"id":1097,"parentId":1096,"tags":{},"startTime":1775658883646,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":7103,"timestamp":6051935734356,"id":1096,"parentId":1073,"tags":{},"startTime":1775658883646,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":7517,"timestamp":6051935734220,"id":1073,"parentId":1007,"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":1775658883646,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":8784,"timestamp":6051935734348,"id":1093,"parentId":1092,"tags":{},"startTime":1775658883646,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":8792,"timestamp":6051935734341,"id":1092,"parentId":1071,"tags":{},"startTime":1775658883646,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":9187,"timestamp":6051935734186,"id":1071,"parentId":1004,"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":1775658883646,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":9083,"timestamp":6051935734325,"id":1087,"parentId":1086,"tags":{},"startTime":1775658883646,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":9090,"timestamp":6051935734318,"id":1086,"parentId":1068,"tags":{},"startTime":1775658883646,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":9963,"timestamp":6051935734124,"id":1068,"parentId":1004,"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":1775658883646,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":9725,"timestamp":6051935734370,"id":1099,"parentId":1098,"tags":{},"startTime":1775658883646,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":9733,"timestamp":6051935734364,"id":1098,"parentId":1074,"tags":{},"startTime":1775658883646,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":10029,"timestamp":6051935734236,"id":1074,"parentId":1009,"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":1775658883646,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":20832,"timestamp":6051935733465,"id":1055,"parentId":1054,"tags":{},"startTime":1775658883645,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":37,"timestamp":6051935754307,"id":1103,"parentId":1054,"tags":{},"startTime":1775658883666,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":21071,"timestamp":6051935733416,"id":1054,"parentId":833,"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":1775658883645,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":469,"timestamp":6051935761027,"id":1154,"parentId":1132,"tags":{},"startTime":1775658883673,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":501,"timestamp":6051935761030,"id":1155,"parentId":1133,"tags":{},"startTime":1775658883673,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":54,"timestamp":6051935761502,"id":1196,"parentId":1132,"tags":{},"startTime":1775658883673,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":24,"timestamp":6051935761533,"id":1197,"parentId":1133,"tags":{},"startTime":1775658883673,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":1417,"timestamp":6051935760414,"id":1132,"parentId":1067,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_tagged_template_literal_loose.js","layer":"ssr"},"startTime":1775658883672,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":1734,"timestamp":6051935760514,"id":1133,"parentId":1064,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/is-error.js","layer":"ssr"},"startTime":1775658883672,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":4560,"timestamp":6051935758124,"id":1117,"parentId":1116,"tags":{},"startTime":1775658883670,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":4592,"timestamp":6051935758093,"id":1116,"parentId":1104,"tags":{},"startTime":1775658883670,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":5156,"timestamp":6051935757703,"id":1104,"parentId":1053,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/page-path/ensure-leading-slash.js","layer":"ssr"},"startTime":1775658883670,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":4719,"timestamp":6051935758155,"id":1123,"parentId":1122,"tags":{},"startTime":1775658883670,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":4728,"timestamp":6051935758147,"id":1122,"parentId":1107,"tags":{},"startTime":1775658883670,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":5382,"timestamp":6051935757790,"id":1107,"parentId":1052,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/restore-reducer.js","layer":"ssr"},"startTime":1775658883670,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":5040,"timestamp":6051935758146,"id":1121,"parentId":1120,"tags":{},"startTime":1775658883670,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":5050,"timestamp":6051935758138,"id":1120,"parentId":1106,"tags":{},"startTime":1775658883670,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":5721,"timestamp":6051935757771,"id":1106,"parentId":1052,"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":1775658883670,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":5336,"timestamp":6051935758171,"id":1127,"parentId":1126,"tags":{},"startTime":1775658883670,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":5344,"timestamp":6051935758164,"id":1126,"parentId":1109,"tags":{},"startTime":1775658883670,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":6028,"timestamp":6051935757831,"id":1109,"parentId":1052,"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":1775658883670,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":5710,"timestamp":6051935758163,"id":1125,"parentId":1124,"tags":{},"startTime":1775658883670,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":5718,"timestamp":6051935758156,"id":1124,"parentId":1108,"tags":{},"startTime":1775658883670,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":6631,"timestamp":6051935757814,"id":1108,"parentId":1052,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/refresh-reducer.js","layer":"ssr"},"startTime":1775658883670,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":6729,"timestamp":6051935758188,"id":1131,"parentId":1130,"tags":{},"startTime":1775658883670,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":6738,"timestamp":6051935758180,"id":1130,"parentId":1111,"tags":{},"startTime":1775658883670,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":7209,"timestamp":6051935757865,"id":1111,"parentId":1009,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/dev/noop-turbopack-hmr.js","layer":"ssr"},"startTime":1775658883670,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":6976,"timestamp":6051935758137,"id":1119,"parentId":1118,"tags":{},"startTime":1775658883670,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":6987,"timestamp":6051935758126,"id":1118,"parentId":1105,"tags":{},"startTime":1775658883670,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":8315,"timestamp":6051935757749,"id":1105,"parentId":1052,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/navigate-reducer.js","layer":"ssr"},"startTime":1775658883670,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":7908,"timestamp":6051935758179,"id":1129,"parentId":1128,"tags":{},"startTime":1775658883670,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":7916,"timestamp":6051935758172,"id":1128,"parentId":1110,"tags":{},"startTime":1775658883670,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":8804,"timestamp":6051935757848,"id":1110,"parentId":1052,"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":1775658883670,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":5535,"timestamp":6051935761127,"id":1161,"parentId":1160,"tags":{},"startTime":1775658883673,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":5544,"timestamp":6051935761118,"id":1160,"parentId":1136,"tags":{},"startTime":1775658883673,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":7173,"timestamp":6051935760616,"id":1136,"parentId":1068,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/error-source.js","layer":"ssr"},"startTime":1775658883672,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":261,"timestamp":6051935769315,"id":1202,"parentId":1198,"tags":{},"startTime":1775658883681,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":1162,"timestamp":6051935769582,"id":1206,"parentId":1198,"tags":{},"startTime":1775658883681,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":1901,"timestamp":6051935769073,"id":1198,"parentId":1054,"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":1775658883681,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":12986,"timestamp":6051935761102,"id":1157,"parentId":1156,"tags":{},"startTime":1775658883673,"traceId":"63571fab0751eb1f"}]
-[{"name":"next-swc-loader","duration":13155,"timestamp":6051935761065,"id":1156,"parentId":1134,"tags":{},"startTime":1775658883673,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":14172,"timestamp":6051935760565,"id":1134,"parentId":1065,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/promise-queue.js","layer":"ssr"},"startTime":1775658883672,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":13639,"timestamp":6051935761136,"id":1163,"parentId":1162,"tags":{},"startTime":1775658883673,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":13649,"timestamp":6051935761128,"id":1162,"parentId":1137,"tags":{},"startTime":1775658883673,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":14376,"timestamp":6051935760635,"id":1137,"parentId":1074,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/normalized-asset-prefix.js","layer":"ssr"},"startTime":1775658883672,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":13875,"timestamp":6051935761146,"id":1165,"parentId":1164,"tags":{},"startTime":1775658883673,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":13885,"timestamp":6051935761137,"id":1164,"parentId":1138,"tags":{},"startTime":1775658883673,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":14576,"timestamp":6051935760654,"id":1138,"parentId":1067,"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":1775658883672,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":14125,"timestamp":6051935761117,"id":1159,"parentId":1158,"tags":{},"startTime":1775658883673,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":14139,"timestamp":6051935761104,"id":1158,"parentId":1135,"tags":{},"startTime":1775658883673,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":14914,"timestamp":6051935760592,"id":1135,"parentId":1063,"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":1775658883672,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":14360,"timestamp":6051935761154,"id":1167,"parentId":1166,"tags":{},"startTime":1775658883673,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":14369,"timestamp":6051935761147,"id":1166,"parentId":1139,"tags":{},"startTime":1775658883673,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":15076,"timestamp":6051935760673,"id":1139,"parentId":1068,"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":1775658883672,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":14584,"timestamp":6051935761172,"id":1171,"parentId":1170,"tags":{},"startTime":1775658883673,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":14592,"timestamp":6051935761164,"id":1170,"parentId":1141,"tags":{},"startTime":1775658883673,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":15168,"timestamp":6051935760710,"id":1141,"parentId":1070,"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":1775658883673,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":14722,"timestamp":6051935761163,"id":1169,"parentId":1168,"tags":{},"startTime":1775658883673,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":14731,"timestamp":6051935761155,"id":1168,"parentId":1140,"tags":{},"startTime":1775658883673,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":15324,"timestamp":6051935760691,"id":1140,"parentId":1068,"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":1775658883673,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":14841,"timestamp":6051935761181,"id":1173,"parentId":1172,"tags":{},"startTime":1775658883673,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":14849,"timestamp":6051935761173,"id":1172,"parentId":1142,"tags":{},"startTime":1775658883673,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":15403,"timestamp":6051935760729,"id":1142,"parentId":1070,"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":1775658883673,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":14949,"timestamp":6051935761189,"id":1175,"parentId":1174,"tags":{},"startTime":1775658883673,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":14957,"timestamp":6051935761182,"id":1174,"parentId":1143,"tags":{},"startTime":1775658883673,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":15510,"timestamp":6051935760746,"id":1143,"parentId":1070,"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":1775658883673,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":15065,"timestamp":6051935761197,"id":1177,"parentId":1176,"tags":{},"startTime":1775658883673,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":15082,"timestamp":6051935761190,"id":1176,"parentId":1144,"tags":{},"startTime":1775658883673,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":15636,"timestamp":6051935760767,"id":1144,"parentId":1070,"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":1775658883673,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":15178,"timestamp":6051935761233,"id":1185,"parentId":1184,"tags":{},"startTime":1775658883673,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":15186,"timestamp":6051935761226,"id":1184,"parentId":1148,"tags":{},"startTime":1775658883673,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":15616,"timestamp":6051935760890,"id":1148,"parentId":1067,"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":1775658883673,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":15287,"timestamp":6051935761225,"id":1183,"parentId":1182,"tags":{},"startTime":1775658883673,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":15297,"timestamp":6051935761214,"id":1182,"parentId":1147,"tags":{},"startTime":1775658883673,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":15774,"timestamp":6051935760822,"id":1147,"parentId":1067,"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":1775658883673,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":15393,"timestamp":6051935761213,"id":1181,"parentId":1180,"tags":{},"startTime":1775658883673,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":15400,"timestamp":6051935761206,"id":1180,"parentId":1146,"tags":{},"startTime":1775658883673,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":15936,"timestamp":6051935760802,"id":1146,"parentId":1067,"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":1775658883673,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":15494,"timestamp":6051935761250,"id":1187,"parentId":1186,"tags":{},"startTime":1775658883673,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":15511,"timestamp":6051935761234,"id":1186,"parentId":1149,"tags":{},"startTime":1775658883673,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":15927,"timestamp":6051935760919,"id":1149,"parentId":1067,"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":1775658883673,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":15591,"timestamp":6051935761260,"id":1189,"parentId":1188,"tags":{},"startTime":1775658883673,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":15600,"timestamp":6051935761252,"id":1188,"parentId":1150,"tags":{},"startTime":1775658883673,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":16014,"timestamp":6051935760939,"id":1150,"parentId":1070,"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":1775658883673,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":15765,"timestamp":6051935761205,"id":1179,"parentId":1178,"tags":{},"startTime":1775658883673,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":15773,"timestamp":6051935761198,"id":1178,"parentId":1145,"tags":{},"startTime":1775658883673,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":16584,"timestamp":6051935760784,"id":1145,"parentId":1068,"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":1775658883673,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":16253,"timestamp":6051935761285,"id":1195,"parentId":1194,"tags":{},"startTime":1775658883673,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":16262,"timestamp":6051935761278,"id":1194,"parentId":1153,"tags":{},"startTime":1775658883673,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":16671,"timestamp":6051935761004,"id":1153,"parentId":1068,"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":1775658883673,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":16464,"timestamp":6051935761276,"id":1193,"parentId":1192,"tags":{},"startTime":1775658883673,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":16472,"timestamp":6051935761269,"id":1192,"parentId":1152,"tags":{},"startTime":1775658883673,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":17000,"timestamp":6051935760986,"id":1152,"parentId":1072,"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":1775658883673,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":32209,"timestamp":6051935745784,"id":1102,"parentId":1101,"tags":{},"startTime":1775658883658,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":32,"timestamp":6051935777997,"id":1207,"parentId":1101,"tags":{},"startTime":1775658883690,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":32573,"timestamp":6051935745504,"id":1101,"parentId":829,"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":1775658883657,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":16828,"timestamp":6051935761268,"id":1191,"parentId":1190,"tags":{},"startTime":1775658883673,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":16836,"timestamp":6051935761261,"id":1190,"parentId":1151,"tags":{},"startTime":1775658883673,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":17479,"timestamp":6051935760966,"id":1151,"parentId":1070,"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":1775658883673,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":31572,"timestamp":6051935757981,"id":1115,"parentId":1113,"tags":{},"startTime":1775658883670,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":31,"timestamp":6051935789564,"id":1219,"parentId":1113,"tags":{},"startTime":1775658883701,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":31830,"timestamp":6051935757922,"id":1113,"parentId":843,"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":1775658883670,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":31791,"timestamp":6051935757967,"id":1114,"parentId":1112,"tags":{},"startTime":1775658883670,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":27,"timestamp":6051935789762,"id":1220,"parentId":1112,"tags":{},"startTime":1775658883702,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":31962,"timestamp":6051935757881,"id":1112,"parentId":833,"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":1775658883670,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":9069,"timestamp":6051935781211,"id":1218,"parentId":1217,"tags":{},"startTime":1775658883693,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":9104,"timestamp":6051935781177,"id":1217,"parentId":1210,"tags":{},"startTime":1775658883693,"traceId":"63571fab0751eb1f"},{"name":"build-module-tsx","duration":10591,"timestamp":6051935780395,"id":1210,"parentId":829,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/sector-heatmap.tsx","layer":"ssr"},"startTime":1775658883692,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":9870,"timestamp":6051935781176,"id":1216,"parentId":1215,"tags":{},"startTime":1775658883693,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":9902,"timestamp":6051935781145,"id":1215,"parentId":1209,"tags":{},"startTime":1775658883693,"traceId":"63571fab0751eb1f"},{"name":"build-module-tsx","duration":13283,"timestamp":6051935780349,"id":1209,"parentId":829,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/market-temp.tsx","layer":"ssr"},"startTime":1775658883692,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":12585,"timestamp":6051935781137,"id":1214,"parentId":1213,"tags":{},"startTime":1775658883693,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":12644,"timestamp":6051935781079,"id":1213,"parentId":1208,"tags":{},"startTime":1775658883693,"traceId":"63571fab0751eb1f"},{"name":"build-module-tsx","duration":14670,"timestamp":6051935780244,"id":1208,"parentId":829,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/stock-card.tsx","layer":"ssr"},"startTime":1775658883692,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":479,"timestamp":6051935797761,"id":1275,"parentId":1254,"tags":{},"startTime":1775658883710,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":514,"timestamp":6051935797764,"id":1276,"parentId":1255,"tags":{},"startTime":1775658883710,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":61,"timestamp":6051935798247,"id":1315,"parentId":1254,"tags":{},"startTime":1775658883710,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":28,"timestamp":6051935798280,"id":1316,"parentId":1255,"tags":{},"startTime":1775658883710,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":1240,"timestamp":6051935797262,"id":1254,"parentId":1134,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_class_private_field_loose_base.js","layer":"ssr"},"startTime":1775658883709,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":1315,"timestamp":6051935797318,"id":1255,"parentId":1134,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_class_private_field_loose_key.js","layer":"ssr"},"startTime":1775658883709,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":1930,"timestamp":6051935796722,"id":1233,"parentId":1232,"tags":{},"startTime":1775658883709,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":1963,"timestamp":6051935796690,"id":1232,"parentId":1221,"tags":{},"startTime":1775658883709,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":3395,"timestamp":6051935795475,"id":1221,"parentId":1133,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/is-plain-object.js","layer":"ssr"},"startTime":1775658883707,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":2470,"timestamp":6051935796755,"id":1239,"parentId":1238,"tags":{},"startTime":1775658883709,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":2478,"timestamp":6051935796748,"id":1238,"parentId":1224,"tags":{},"startTime":1775658883709,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":3835,"timestamp":6051935795607,"id":1224,"parentId":1106,"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":1775658883707,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":2739,"timestamp":6051935796747,"id":1237,"parentId":1236,"tags":{},"startTime":1775658883709,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":2748,"timestamp":6051935796738,"id":1236,"parentId":1223,"tags":{},"startTime":1775658883709,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":4236,"timestamp":6051935795587,"id":1223,"parentId":1106,"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":1775658883707,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":3340,"timestamp":6051935796764,"id":1241,"parentId":1240,"tags":{},"startTime":1775658883709,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":3348,"timestamp":6051935796756,"id":1240,"parentId":1225,"tags":{},"startTime":1775658883709,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":4717,"timestamp":6051935795626,"id":1225,"parentId":1106,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/handle-mutable.js","layer":"ssr"},"startTime":1775658883707,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":3672,"timestamp":6051935796772,"id":1243,"parentId":1242,"tags":{},"startTime":1775658883709,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":3680,"timestamp":6051935796765,"id":1242,"parentId":1226,"tags":{},"startTime":1775658883709,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":4945,"timestamp":6051935795644,"id":1226,"parentId":1106,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/handle-segment-mismatch.js","layer":"ssr"},"startTime":1775658883707,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":3820,"timestamp":6051935796780,"id":1245,"parentId":1244,"tags":{},"startTime":1775658883709,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":3827,"timestamp":6051935796773,"id":1244,"parentId":1227,"tags":{},"startTime":1775658883709,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":4938,"timestamp":6051935795848,"id":1227,"parentId":1105,"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":1775658883708,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":4202,"timestamp":6051935796788,"id":1247,"parentId":1246,"tags":{},"startTime":1775658883709,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":4210,"timestamp":6051935796781,"id":1246,"parentId":1228,"tags":{},"startTime":1775658883709,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":5248,"timestamp":6051935795880,"id":1228,"parentId":1105,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/should-hard-navigate.js","layer":"ssr"},"startTime":1775658883708,"traceId":"63571fab0751eb1f"}]
-[{"name":"next-swc-transform","duration":4519,"timestamp":6051935796737,"id":1235,"parentId":1234,"tags":{},"startTime":1775658883709,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":4531,"timestamp":6051935796726,"id":1234,"parentId":1222,"tags":{},"startTime":1775658883709,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":6755,"timestamp":6051935795558,"id":1222,"parentId":1107,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/ppr-navigations.js","layer":"ssr"},"startTime":1775658883707,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":33232,"timestamp":6051935769341,"id":1205,"parentId":1201,"tags":{},"startTime":1775658883681,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":34,"timestamp":6051935802578,"id":1317,"parentId":1201,"tags":{},"startTime":1775658883714,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":33427,"timestamp":6051935769258,"id":1201,"parentId":863,"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":1775658883681,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":33356,"timestamp":6051935769335,"id":1204,"parentId":1200,"tags":{},"startTime":1775658883681,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":28,"timestamp":6051935802694,"id":1318,"parentId":1200,"tags":{},"startTime":1775658883715,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":33560,"timestamp":6051935769213,"id":1200,"parentId":844,"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":1775658883681,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":33458,"timestamp":6051935769319,"id":1203,"parentId":1199,"tags":{},"startTime":1775658883681,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":27,"timestamp":6051935802779,"id":1319,"parentId":1199,"tags":{},"startTime":1775658883715,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":33682,"timestamp":6051935769164,"id":1199,"parentId":845,"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":1775658883681,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":7610,"timestamp":6051935796796,"id":1249,"parentId":1248,"tags":{},"startTime":1775658883709,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":7619,"timestamp":6051935796789,"id":1248,"parentId":1229,"tags":{},"startTime":1775658883709,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":8819,"timestamp":6051935795901,"id":1229,"parentId":1105,"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":1775658883708,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":7884,"timestamp":6051935796859,"id":1253,"parentId":1252,"tags":{},"startTime":1775658883709,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":7913,"timestamp":6051935796831,"id":1252,"parentId":1231,"tags":{},"startTime":1775658883709,"traceId":"63571fab0751eb1f"},{"name":"build-module-ts","duration":9008,"timestamp":6051935796016,"id":1231,"parentId":829,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/hooks/use-websocket.ts","layer":"ssr"},"startTime":1775658883708,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":7251,"timestamp":6051935797784,"id":1278,"parentId":1277,"tags":{},"startTime":1775658883710,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":7267,"timestamp":6051935797768,"id":1277,"parentId":1256,"tags":{},"startTime":1775658883710,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":7839,"timestamp":6051935797359,"id":1256,"parentId":1135,"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":1775658883709,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":8406,"timestamp":6051935796830,"id":1251,"parentId":1250,"tags":{},"startTime":1775658883709,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":8440,"timestamp":6051935796797,"id":1250,"parentId":1230,"tags":{},"startTime":1775658883709,"traceId":"63571fab0751eb1f"},{"name":"build-module-tsx","duration":9663,"timestamp":6051935795965,"id":1230,"parentId":838,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/change-password-dialog.tsx","layer":"ssr"},"startTime":1775658883708,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":7793,"timestamp":6051935797845,"id":1284,"parentId":1283,"tags":{},"startTime":1775658883710,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":7835,"timestamp":6051935797804,"id":1283,"parentId":1259,"tags":{},"startTime":1775658883710,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":8371,"timestamp":6051935797420,"id":1259,"parentId":1145,"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":1775658883709,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":8008,"timestamp":6051935797794,"id":1280,"parentId":1279,"tags":{},"startTime":1775658883710,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":8017,"timestamp":6051935797786,"id":1279,"parentId":1257,"tags":{},"startTime":1775658883710,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":8665,"timestamp":6051935797381,"id":1257,"parentId":1152,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/magic-identifier.js","layer":"ssr"},"startTime":1775658883709,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":8187,"timestamp":6051935797870,"id":1290,"parentId":1289,"tags":{},"startTime":1775658883710,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":8194,"timestamp":6051935797863,"id":1289,"parentId":1262,"tags":{},"startTime":1775658883710,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":8770,"timestamp":6051935797471,"id":1262,"parentId":1147,"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":1775658883709,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":8395,"timestamp":6051935797854,"id":1286,"parentId":1285,"tags":{},"startTime":1775658883710,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":8403,"timestamp":6051935797846,"id":1285,"parentId":1260,"tags":{},"startTime":1775658883710,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":8930,"timestamp":6051935797438,"id":1260,"parentId":1151,"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":1775658883709,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":8582,"timestamp":6051935797803,"id":1282,"parentId":1281,"tags":{},"startTime":1775658883710,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":8590,"timestamp":6051935797795,"id":1281,"parentId":1258,"tags":{},"startTime":1775658883710,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":9463,"timestamp":6051935797399,"id":1258,"parentId":1139,"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":1775658883709,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":13430,"timestamp":6051935797862,"id":1288,"parentId":1287,"tags":{},"startTime":1775658883710,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":13442,"timestamp":6051935797855,"id":1287,"parentId":1261,"tags":{},"startTime":1775658883710,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":14325,"timestamp":6051935797455,"id":1261,"parentId":1148,"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":1775658883709,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":13921,"timestamp":6051935797894,"id":1296,"parentId":1295,"tags":{},"startTime":1775658883710,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":13930,"timestamp":6051935797887,"id":1295,"parentId":1265,"tags":{},"startTime":1775658883710,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":14654,"timestamp":6051935797525,"id":1265,"parentId":1146,"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":1775658883709,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":14304,"timestamp":6051935797886,"id":1294,"parentId":1293,"tags":{},"startTime":1775658883710,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":14312,"timestamp":6051935797879,"id":1293,"parentId":1264,"tags":{},"startTime":1775658883710,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":14843,"timestamp":6051935797507,"id":1264,"parentId":1146,"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":1775658883709,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":14493,"timestamp":6051935797878,"id":1292,"parentId":1291,"tags":{},"startTime":1775658883710,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":14501,"timestamp":6051935797871,"id":1291,"parentId":1263,"tags":{},"startTime":1775658883710,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":15196,"timestamp":6051935797489,"id":1263,"parentId":1146,"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":1775658883709,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":14732,"timestamp":6051935797961,"id":1302,"parentId":1301,"tags":{},"startTime":1775658883710,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":14744,"timestamp":6051935797953,"id":1301,"parentId":1268,"tags":{},"startTime":1775658883710,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":15274,"timestamp":6051935797589,"id":1268,"parentId":1149,"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":1775658883709,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":14919,"timestamp":6051935797952,"id":1300,"parentId":1299,"tags":{},"startTime":1775658883710,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":14969,"timestamp":6051935797903,"id":1299,"parentId":1267,"tags":{},"startTime":1775658883710,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":15431,"timestamp":6051935797572,"id":1267,"parentId":1146,"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":1775658883709,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":15110,"timestamp":6051935797902,"id":1298,"parentId":1297,"tags":{},"startTime":1775658883710,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":15117,"timestamp":6051935797895,"id":1297,"parentId":1266,"tags":{},"startTime":1775658883710,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":15591,"timestamp":6051935797555,"id":1266,"parentId":1146,"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":1775658883709,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":15175,"timestamp":6051935797978,"id":1306,"parentId":1305,"tags":{},"startTime":1775658883710,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":15184,"timestamp":6051935797970,"id":1305,"parentId":1270,"tags":{},"startTime":1775658883710,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":15599,"timestamp":6051935797669,"id":1270,"parentId":1150,"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":1775658883709,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":15294,"timestamp":6051935797986,"id":1308,"parentId":1307,"tags":{},"startTime":1775658883710,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":15302,"timestamp":6051935797979,"id":1307,"parentId":1271,"tags":{},"startTime":1775658883710,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":15722,"timestamp":6051935797686,"id":1271,"parentId":1150,"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":1775658883709,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":15404,"timestamp":6051935798009,"id":1314,"parentId":1313,"tags":{},"startTime":1775658883710,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":15412,"timestamp":6051935798002,"id":1313,"parentId":1274,"tags":{},"startTime":1775658883710,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":15778,"timestamp":6051935797735,"id":1274,"parentId":1151,"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":1775658883710,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":15696,"timestamp":6051935797969,"id":1304,"parentId":1303,"tags":{},"startTime":1775658883710,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":15704,"timestamp":6051935797961,"id":1303,"parentId":1269,"tags":{},"startTime":1775658883710,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":16387,"timestamp":6051935797652,"id":1269,"parentId":1149,"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":1775658883709,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":33467,"timestamp":6051935780676,"id":1212,"parentId":1211,"tags":{},"startTime":1775658883692,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":30,"timestamp":6051935814149,"id":1320,"parentId":1211,"tags":{},"startTime":1775658883726,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":33803,"timestamp":6051935780442,"id":1211,"parentId":887,"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":1775658883692,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":16295,"timestamp":6051935797994,"id":1310,"parentId":1309,"tags":{},"startTime":1775658883710,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":16303,"timestamp":6051935797987,"id":1309,"parentId":1272,"tags":{},"startTime":1775658883710,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":16912,"timestamp":6051935797703,"id":1272,"parentId":1153,"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":1775658883710,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":16624,"timestamp":6051935798001,"id":1312,"parentId":1311,"tags":{},"startTime":1775658883710,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":16631,"timestamp":6051935797995,"id":1311,"parentId":1273,"tags":{},"startTime":1775658883710,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":17090,"timestamp":6051935797719,"id":1273,"parentId":1151,"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":1775658883710,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":157,"timestamp":6051935824997,"id":1333,"parentId":1327,"tags":{},"startTime":1775658883737,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":29,"timestamp":6051935825160,"id":1344,"parentId":1327,"tags":{},"startTime":1775658883737,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":1324,"timestamp":6051935824793,"id":1327,"parentId":1261,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/anser/index.js","layer":"ssr"},"startTime":1775658883737,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":2924,"timestamp":6051935824342,"id":1326,"parentId":1325,"tags":{},"startTime":1775658883736,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":2936,"timestamp":6051935824332,"id":1325,"parentId":1322,"tags":{},"startTime":1775658883736,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":3303,"timestamp":6051935824218,"id":1322,"parentId":1262,"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":1775658883736,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":2484,"timestamp":6051935825054,"id":1337,"parentId":1336,"tags":{},"startTime":1775658883737,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":2495,"timestamp":6051935825044,"id":1336,"parentId":1329,"tags":{},"startTime":1775658883737,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":2941,"timestamp":6051935824905,"id":1329,"parentId":1273,"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":1775658883737,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":2797,"timestamp":6051935825063,"id":1339,"parentId":1338,"tags":{},"startTime":1775658883737,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":2805,"timestamp":6051935825055,"id":1338,"parentId":1330,"tags":{},"startTime":1775658883737,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":3150,"timestamp":6051935824927,"id":1330,"parentId":1261,"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":1775658883737,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":3043,"timestamp":6051935825042,"id":1335,"parentId":1334,"tags":{},"startTime":1775658883737,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":3068,"timestamp":6051935825017,"id":1334,"parentId":1328,"tags":{},"startTime":1775658883737,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":3373,"timestamp":6051935824869,"id":1328,"parentId":1263,"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":1775658883737,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":6101,"timestamp":6051935825080,"id":1343,"parentId":1342,"tags":{},"startTime":1775658883737,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":6110,"timestamp":6051935825073,"id":1342,"parentId":1332,"tags":{},"startTime":1775658883737,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":6784,"timestamp":6051935824965,"id":1332,"parentId":1273,"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":1775658883737,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":6699,"timestamp":6051935825072,"id":1341,"parentId":1340,"tags":{},"startTime":1775658883737,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":6708,"timestamp":6051935825064,"id":1340,"parentId":1331,"tags":{},"startTime":1775658883737,"traceId":"63571fab0751eb1f"}]
-[{"name":"build-module-js","duration":7301,"timestamp":6051935824947,"id":1331,"parentId":1274,"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":1775658883737,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":13121,"timestamp":6051935828916,"id":1347,"parentId":1346,"tags":{},"startTime":1775658883741,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":13170,"timestamp":6051935828872,"id":1346,"parentId":1345,"tags":{},"startTime":1775658883741,"traceId":"63571fab0751eb1f"},{"name":"build-module-ts","duration":14804,"timestamp":6051935828453,"id":1345,"parentId":829,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/lib/api.ts","layer":"ssr"},"startTime":1775658883740,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":11903,"timestamp":6051935833093,"id":1350,"parentId":1348,"tags":{},"startTime":1775658883745,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":59,"timestamp":6051935845007,"id":1355,"parentId":1348,"tags":{},"startTime":1775658883757,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":12913,"timestamp":6051935832870,"id":1348,"parentId":839,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/api/link.js","layer":"ssr"},"startTime":1775658883745,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":12708,"timestamp":6051935833146,"id":1351,"parentId":1349,"tags":{},"startTime":1775658883745,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":27,"timestamp":6051935845859,"id":1356,"parentId":1349,"tags":{},"startTime":1775658883758,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":13441,"timestamp":6051935832940,"id":1349,"parentId":832,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/api/navigation.js","layer":"ssr"},"startTime":1775658883745,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":23997,"timestamp":6051935824329,"id":1324,"parentId":1323,"tags":{},"startTime":1775658883736,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":24041,"timestamp":6051935824287,"id":1323,"parentId":1321,"tags":{},"startTime":1775658883736,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":29870,"timestamp":6051935824090,"id":1321,"parentId":1262,"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":1775658883736,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":10368,"timestamp":6051935843621,"id":1354,"parentId":1353,"tags":{},"startTime":1775658883755,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":10405,"timestamp":6051935843585,"id":1353,"parentId":1352,"tags":{},"startTime":1775658883755,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":11127,"timestamp":6051935843493,"id":1352,"parentId":1330,"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":1775658883755,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":17,"timestamp":6051935858568,"id":1359,"parentId":1357,"tags":{},"startTime":1775658883770,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":87,"timestamp":6051935858572,"id":1360,"parentId":1358,"tags":{},"startTime":1775658883770,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":96,"timestamp":6051935858591,"id":1361,"parentId":1357,"tags":{},"startTime":1775658883770,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":26,"timestamp":6051935858662,"id":1362,"parentId":1358,"tags":{},"startTime":1775658883770,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":3881,"timestamp":6051935858413,"id":1357,"parentId":1321,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/platform/platform.js","layer":"ssr"},"startTime":1775658883770,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":4047,"timestamp":6051935858513,"id":1358,"parentId":1321,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/css.escape/css.escape.js","layer":"ssr"},"startTime":1775658883770,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":1237,"timestamp":6051935863509,"id":1368,"parentId":1367,"tags":{},"startTime":1775658883775,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":1277,"timestamp":6051935863471,"id":1367,"parentId":1366,"tags":{},"startTime":1775658883775,"traceId":"63571fab0751eb1f"},{"name":"build-module-ts","duration":1605,"timestamp":6051935863416,"id":1366,"parentId":1210,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/lib/utils.ts","layer":"ssr"},"startTime":1775658883775,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":4912,"timestamp":6051935862893,"id":1365,"parentId":1364,"tags":{},"startTime":1775658883775,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":4953,"timestamp":6051935862862,"id":1364,"parentId":1363,"tags":{},"startTime":1775658883775,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":7645,"timestamp":6051935862727,"id":1363,"parentId":1348,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/link.js","layer":"ssr"},"startTime":1775658883775,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":2439,"timestamp":6051935879899,"id":1377,"parentId":1376,"tags":{},"startTime":1775658883792,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":2488,"timestamp":6051935879855,"id":1376,"parentId":1369,"tags":{},"startTime":1775658883792,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":3656,"timestamp":6051935879527,"id":1369,"parentId":1363,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/resolve-href.js","layer":"ssr"},"startTime":1775658883791,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":3299,"timestamp":6051935879942,"id":1381,"parentId":1380,"tags":{},"startTime":1775658883792,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":3318,"timestamp":6051935879924,"id":1380,"parentId":1371,"tags":{},"startTime":1775658883792,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":4975,"timestamp":6051935879689,"id":1371,"parentId":1363,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/use-intersection.js","layer":"ssr"},"startTime":1775658883792,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":6379,"timestamp":6051935879915,"id":1379,"parentId":1378,"tags":{},"startTime":1775658883792,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":6397,"timestamp":6051935879901,"id":1378,"parentId":1370,"tags":{},"startTime":1775658883792,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":7057,"timestamp":6051935879642,"id":1370,"parentId":1363,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/add-locale.js","layer":"ssr"},"startTime":1775658883791,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":6757,"timestamp":6051935879958,"id":1383,"parentId":1382,"tags":{},"startTime":1775658883792,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":6772,"timestamp":6051935879944,"id":1382,"parentId":1372,"tags":{},"startTime":1775658883792,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":7645,"timestamp":6051935879729,"id":1372,"parentId":1363,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/get-domain-locale.js","layer":"ssr"},"startTime":1775658883792,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":8663,"timestamp":6051935879979,"id":1387,"parentId":1386,"tags":{},"startTime":1775658883792,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":8675,"timestamp":6051935879970,"id":1386,"parentId":1374,"tags":{},"startTime":1775658883792,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":9091,"timestamp":6051935879787,"id":1374,"parentId":1363,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/is-local-url.js","layer":"ssr"},"startTime":1775658883792,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":8892,"timestamp":6051935880006,"id":1389,"parentId":1388,"tags":{},"startTime":1775658883792,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":8904,"timestamp":6051935879996,"id":1388,"parentId":1375,"tags":{},"startTime":1775658883792,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":9714,"timestamp":6051935879812,"id":1375,"parentId":1363,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/format-url.js","layer":"ssr"},"startTime":1775658883792,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":9585,"timestamp":6051935879968,"id":1385,"parentId":1384,"tags":{},"startTime":1775658883792,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":9596,"timestamp":6051935879959,"id":1384,"parentId":1373,"tags":{},"startTime":1775658883792,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":10655,"timestamp":6051935879757,"id":1373,"parentId":1363,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/utils.js","layer":"ssr"},"startTime":1775658883792,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":5516,"timestamp":6051935908279,"id":1399,"parentId":1398,"tags":{},"startTime":1775658883820,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":5548,"timestamp":6051935908268,"id":1398,"parentId":1392,"tags":{},"startTime":1775658883820,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":7566,"timestamp":6051935908136,"id":1392,"parentId":1369,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/interpolate-as.js","layer":"ssr"},"startTime":1775658883820,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":9119,"timestamp":6051935908248,"id":1395,"parentId":1394,"tags":{},"startTime":1775658883820,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":9175,"timestamp":6051935908207,"id":1394,"parentId":1390,"tags":{},"startTime":1775658883820,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":13991,"timestamp":6051935907851,"id":1390,"parentId":1371,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/request-idle-callback.js","layer":"ssr"},"startTime":1775658883820,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":15619,"timestamp":6051935908290,"id":1401,"parentId":1400,"tags":{},"startTime":1775658883820,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":15637,"timestamp":6051935908280,"id":1400,"parentId":1393,"tags":{},"startTime":1775658883820,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":16500,"timestamp":6051935908173,"id":1393,"parentId":1369,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/querystring.js","layer":"ssr"},"startTime":1775658883820,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":16435,"timestamp":6051935908266,"id":1397,"parentId":1396,"tags":{},"startTime":1775658883820,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":16451,"timestamp":6051935908252,"id":1396,"parentId":1391,"tags":{},"startTime":1775658883820,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":16855,"timestamp":6051935908071,"id":1391,"parentId":1369,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/omit.js","layer":"ssr"},"startTime":1775658883820,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1136,"timestamp":6051935936798,"id":1403,"parentId":1402,"tags":{},"startTime":1775658883849,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":49,"timestamp":6051935937951,"id":1413,"parentId":1402,"tags":{},"startTime":1775658883850,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":1699,"timestamp":6051935936665,"id":1402,"parentId":1363,"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":1775658883848,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":1495,"timestamp":6051935937497,"id":1412,"parentId":1411,"tags":{},"startTime":1775658883849,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":1519,"timestamp":6051935937479,"id":1411,"parentId":1410,"tags":{},"startTime":1775658883849,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":1913,"timestamp":6051935937445,"id":1410,"parentId":1369,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/index.js","layer":"ssr"},"startTime":1775658883849,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":2674,"timestamp":6051935937018,"id":1407,"parentId":1406,"tags":{},"startTime":1775658883849,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":2710,"timestamp":6051935936984,"id":1406,"parentId":1404,"tags":{},"startTime":1775658883849,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":3210,"timestamp":6051935936916,"id":1404,"parentId":1392,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/route-matcher.js","layer":"ssr"},"startTime":1775658883849,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":3389,"timestamp":6051935937032,"id":1409,"parentId":1408,"tags":{},"startTime":1775658883849,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":3402,"timestamp":6051935937020,"id":1408,"parentId":1405,"tags":{},"startTime":1775658883849,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":4070,"timestamp":6051935936959,"id":1405,"parentId":1392,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/route-regex.js","layer":"ssr"},"startTime":1775658883849,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":16,"timestamp":6051935942516,"id":1415,"parentId":1414,"tags":{},"startTime":1775658883854,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":34,"timestamp":6051935942539,"id":1416,"parentId":1414,"tags":{},"startTime":1775658883854,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":600,"timestamp":6051935942429,"id":1414,"parentId":1405,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/constants.js","layer":"ssr"},"startTime":1775658883854,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":983,"timestamp":6051935943592,"id":1425,"parentId":1424,"tags":{},"startTime":1775658883855,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":997,"timestamp":6051935943581,"id":1424,"parentId":1423,"tags":{},"startTime":1775658883855,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":1220,"timestamp":6051935943555,"id":1423,"parentId":1405,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/escape-regexp.js","layer":"ssr"},"startTime":1775658883855,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":1363,"timestamp":6051935943438,"id":1420,"parentId":1419,"tags":{},"startTime":1775658883855,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":1397,"timestamp":6051935943405,"id":1419,"parentId":1417,"tags":{},"startTime":1775658883855,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":1646,"timestamp":6051935943281,"id":1417,"parentId":1410,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/is-dynamic.js","layer":"ssr"},"startTime":1775658883855,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":2401,"timestamp":6051935943451,"id":1422,"parentId":1421,"tags":{},"startTime":1775658883855,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":2414,"timestamp":6051935943441,"id":1421,"parentId":1418,"tags":{},"startTime":1775658883855,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":3018,"timestamp":6051935943367,"id":1418,"parentId":1410,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/sorted-routes.js","layer":"ssr"},"startTime":1775658883855,"traceId":"63571fab0751eb1f"},{"name":"make","duration":496961,"timestamp":6051935450223,"id":685,"parentId":684,"tags":{},"startTime":1775658883362,"traceId":"63571fab0751eb1f"},{"name":"chunk-graph","duration":4811,"timestamp":6051935952212,"id":1427,"parentId":1426,"tags":{},"startTime":1775658883864,"traceId":"63571fab0751eb1f"},{"name":"optimize-modules","duration":10,"timestamp":6051935957081,"id":1429,"parentId":1426,"tags":{},"startTime":1775658883869,"traceId":"63571fab0751eb1f"},{"name":"optimize-chunks","duration":4410,"timestamp":6051935957114,"id":1430,"parentId":1426,"tags":{},"startTime":1775658883869,"traceId":"63571fab0751eb1f"},{"name":"optimize-tree","duration":49,"timestamp":6051935961560,"id":1431,"parentId":1426,"tags":{},"startTime":1775658883873,"traceId":"63571fab0751eb1f"},{"name":"optimize-chunk-modules","duration":3,"timestamp":6051935961632,"id":1432,"parentId":1426,"tags":{},"startTime":1775658883873,"traceId":"63571fab0751eb1f"},{"name":"optimize","duration":5240,"timestamp":6051935957064,"id":1428,"parentId":1426,"tags":{},"startTime":1775658883869,"traceId":"63571fab0751eb1f"},{"name":"module-hash","duration":3830,"timestamp":6051935964263,"id":1433,"parentId":1426,"tags":{},"startTime":1775658883876,"traceId":"63571fab0751eb1f"},{"name":"code-generation","duration":10608,"timestamp":6051935968109,"id":1434,"parentId":1426,"tags":{},"startTime":1775658883880,"traceId":"63571fab0751eb1f"},{"name":"hash","duration":1399,"timestamp":6051935979653,"id":1435,"parentId":1426,"tags":{},"startTime":1775658883891,"traceId":"63571fab0751eb1f"},{"name":"code-generation-jobs","duration":144,"timestamp":6051935981051,"id":1436,"parentId":1426,"tags":{},"startTime":1775658883893,"traceId":"63571fab0751eb1f"},{"name":"module-assets","duration":29,"timestamp":6051935981188,"id":1437,"parentId":1426,"tags":{},"startTime":1775658883893,"traceId":"63571fab0751eb1f"},{"name":"create-chunk-assets","duration":39192,"timestamp":6051935981220,"id":1438,"parentId":1426,"tags":{},"startTime":1775658883893,"traceId":"63571fab0751eb1f"},{"name":"seal","duration":71182,"timestamp":6051935951496,"id":1426,"parentId":684,"tags":{},"startTime":1775658883863,"traceId":"63571fab0751eb1f"},{"name":"webpack-compilation","duration":574101,"timestamp":6051935450001,"id":684,"parentId":119,"tags":{"name":"server"},"startTime":1775658883362,"traceId":"63571fab0751eb1f"},{"name":"emit","duration":11800,"timestamp":6051936024175,"id":1439,"parentId":119,"tags":{},"startTime":1775658883936,"traceId":"63571fab0751eb1f"}]
-[{"name":"webpack-invalidated-server","duration":18,"timestamp":6051936037428,"id":1440,"parentId":3,"tags":{"trigger":"manual"},"startTime":1775658883949,"traceId":"63571fab0751eb1f"},{"name":"build-module","duration":1646,"timestamp":6051936082250,"id":1449,"parentId":1445,"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%2Fglobals.css%22%2C%22ids%22%3A%5B%5D%7D&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&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":1775658883994,"traceId":"63571fab0751eb1f"},{"name":"build-module","duration":1208,"timestamp":6051936083919,"id":1450,"parentId":1446,"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":1775658883996,"traceId":"63571fab0751eb1f"},{"name":"build-module","duration":270,"timestamp":6051936085138,"id":1451,"parentId":1447,"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%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!","layer":"app-pages-browser"},"startTime":1775658883997,"traceId":"63571fab0751eb1f"},{"name":"add-entry","duration":22986,"timestamp":6051936063315,"id":1448,"parentId":1442,"tags":{"request":"next-client-pages-loader?absolutePagePath=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fnot-found-error.js&page=%2F_not-found%2Fpage!"},"startTime":1775658883975,"traceId":"63571fab0751eb1f"},{"name":"add-entry","duration":28722,"timestamp":6051936063201,"id":1443,"parentId":1442,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js"},"startTime":1775658883975,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":18904,"timestamp":6051936093547,"id":1456,"parentId":1455,"tags":{},"startTime":1775658884005,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":18960,"timestamp":6051936093500,"id":1455,"parentId":1452,"tags":{},"startTime":1775658884005,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":20006,"timestamp":6051936093261,"id":1452,"parentId":1450,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/client-page.js","layer":"app-pages-browser"},"startTime":1775658884005,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":19718,"timestamp":6051936093569,"id":1460,"parentId":1459,"tags":{},"startTime":1775658884005,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":19726,"timestamp":6051936093561,"id":1459,"parentId":1454,"tags":{},"startTime":1775658884005,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":20516,"timestamp":6051936093368,"id":1454,"parentId":1450,"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":1775658884005,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":20357,"timestamp":6051936095427,"id":1464,"parentId":1463,"tags":{},"startTime":1775658884007,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":20406,"timestamp":6051936095380,"id":1463,"parentId":1461,"tags":{},"startTime":1775658884007,"traceId":"63571fab0751eb1f"},{"name":"build-module-tsx","duration":22441,"timestamp":6051936094922,"id":1461,"parentId":1449,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/auth-guard.tsx","layer":"app-pages-browser"},"startTime":1775658884007,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":23850,"timestamp":6051936093560,"id":1458,"parentId":1457,"tags":{},"startTime":1775658884005,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":23862,"timestamp":6051936093550,"id":1457,"parentId":1453,"tags":{},"startTime":1775658884005,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":25674,"timestamp":6051936093341,"id":1453,"parentId":1450,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/layout-router.js","layer":"app-pages-browser"},"startTime":1775658884005,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":23608,"timestamp":6051936095456,"id":1466,"parentId":1465,"tags":{},"startTime":1775658884007,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":23636,"timestamp":6051936095429,"id":1465,"parentId":1462,"tags":{},"startTime":1775658884007,"traceId":"63571fab0751eb1f"},{"name":"build-module-tsx","duration":29039,"timestamp":6051936095210,"id":1462,"parentId":1449,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/nav.tsx","layer":"app-pages-browser"},"startTime":1775658884007,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":14368,"timestamp":6051936115383,"id":1473,"parentId":1472,"tags":{},"startTime":1775658884027,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":14402,"timestamp":6051936115354,"id":1472,"parentId":1468,"tags":{},"startTime":1775658884027,"traceId":"63571fab0751eb1f"},{"name":"build-module-tsx","duration":15160,"timestamp":6051936115113,"id":1468,"parentId":1449,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/hooks/use-auth.tsx","layer":"app-pages-browser"},"startTime":1775658884027,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":14944,"timestamp":6051936115351,"id":1471,"parentId":1470,"tags":{},"startTime":1775658884027,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":14997,"timestamp":6051936115299,"id":1470,"parentId":1467,"tags":{},"startTime":1775658884027,"traceId":"63571fab0751eb1f"},{"name":"build-module-tsx","duration":15632,"timestamp":6051936114994,"id":1467,"parentId":1449,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/user-menu.tsx","layer":"app-pages-browser"},"startTime":1775658884027,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":15274,"timestamp":6051936115409,"id":1475,"parentId":1474,"tags":{},"startTime":1775658884027,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":15299,"timestamp":6051936115384,"id":1474,"parentId":1469,"tags":{},"startTime":1775658884027,"traceId":"63571fab0751eb1f"},{"name":"build-module-tsx","duration":16533,"timestamp":6051936115169,"id":1469,"parentId":1451,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/page.tsx","layer":"app-pages-browser"},"startTime":1775658884027,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":2270,"timestamp":6051936135245,"id":1478,"parentId":1477,"tags":{},"startTime":1775658884047,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":2308,"timestamp":6051936135210,"id":1477,"parentId":1476,"tags":{},"startTime":1775658884047,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":3115,"timestamp":6051936135030,"id":1476,"parentId":1452,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/search-params.js","layer":"app-pages-browser"},"startTime":1775658884047,"traceId":"63571fab0751eb1f"},{"name":"add-entry","duration":75483,"timestamp":6051936063248,"id":1444,"parentId":1442,"tags":{"request":"./node_modules/next/dist/client/app-next-dev.js"},"startTime":1775658883975,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":112,"timestamp":6051936138775,"id":1482,"parentId":1480,"tags":{},"startTime":1775658884051,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":161,"timestamp":6051936138780,"id":1483,"parentId":1481,"tags":{},"startTime":1775658884051,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":619,"timestamp":6051936138895,"id":1486,"parentId":1480,"tags":{},"startTime":1775658884051,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":570,"timestamp":6051936138946,"id":1487,"parentId":1481,"tags":{},"startTime":1775658884051,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":1239,"timestamp":6051936138564,"id":1480,"parentId":1461,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/api/navigation.js","layer":"app-pages-browser"},"startTime":1775658884050,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":1367,"timestamp":6051936138677,"id":1481,"parentId":1462,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/api/link.js","layer":"app-pages-browser"},"startTime":1775658884050,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":3639,"timestamp":6051936138838,"id":1485,"parentId":1484,"tags":{},"startTime":1775658884051,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":3669,"timestamp":6051936138810,"id":1484,"parentId":1479,"tags":{},"startTime":1775658884051,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":4332,"timestamp":6051936138477,"id":1479,"parentId":1453,"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":1775658884050,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":134,"timestamp":6051936143103,"id":1492,"parentId":1488,"tags":{},"startTime":1775658884055,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":169,"timestamp":6051936143106,"id":1493,"parentId":1489,"tags":{},"startTime":1775658884055,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":58,"timestamp":6051936143242,"id":1498,"parentId":1488,"tags":{},"startTime":1775658884055,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":24,"timestamp":6051936143277,"id":1499,"parentId":1489,"tags":{},"startTime":1775658884055,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":1499,"timestamp":6051936142898,"id":1488,"parentId":1476,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/app-render/dynamic-rendering.js","layer":"app-pages-browser"},"startTime":1775658884055,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":1854,"timestamp":6051936142964,"id":1489,"parentId":1476,"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":1775658884055,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":2726,"timestamp":6051936143166,"id":1495,"parentId":1494,"tags":{},"startTime":1775658884055,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":2771,"timestamp":6051936143123,"id":1494,"parentId":1490,"tags":{},"startTime":1775658884055,"traceId":"63571fab0751eb1f"},{"name":"build-module-tsx","duration":4610,"timestamp":6051936143009,"id":1490,"parentId":1467,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/change-password-dialog.tsx","layer":"app-pages-browser"},"startTime":1775658884055,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":10506,"timestamp":6051936143198,"id":1497,"parentId":1496,"tags":{},"startTime":1775658884055,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":10541,"timestamp":6051936143168,"id":1496,"parentId":1491,"tags":{},"startTime":1775658884055,"traceId":"63571fab0751eb1f"},{"name":"build-module-tsx","duration":12160,"timestamp":6051936143057,"id":1491,"parentId":1469,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/market-temp.tsx","layer":"app-pages-browser"},"startTime":1775658884055,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":4224,"timestamp":6051936151925,"id":1508,"parentId":1507,"tags":{},"startTime":1775658884064,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":4258,"timestamp":6051936151894,"id":1507,"parentId":1502,"tags":{},"startTime":1775658884064,"traceId":"63571fab0751eb1f"},{"name":"build-module-tsx","duration":5411,"timestamp":6051936151491,"id":1502,"parentId":1469,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/sector-heatmap.tsx","layer":"app-pages-browser"},"startTime":1775658884063,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":5126,"timestamp":6051936151892,"id":1506,"parentId":1505,"tags":{},"startTime":1775658884064,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":5159,"timestamp":6051936151860,"id":1505,"parentId":1501,"tags":{},"startTime":1775658884064,"traceId":"63571fab0751eb1f"},{"name":"build-module-tsx","duration":6735,"timestamp":6051936151438,"id":1501,"parentId":1469,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/stock-card.tsx","layer":"app-pages-browser"},"startTime":1775658884063,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":89,"timestamp":6051936159108,"id":1518,"parentId":1515,"tags":{},"startTime":1775658884071,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":29,"timestamp":6051936159203,"id":1523,"parentId":1515,"tags":{},"startTime":1775658884071,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":490,"timestamp":6051936158974,"id":1515,"parentId":1488,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/url.js","layer":"app-pages-browser"},"startTime":1775658884071,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":7973,"timestamp":6051936151857,"id":1504,"parentId":1503,"tags":{},"startTime":1775658884064,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":8010,"timestamp":6051936151822,"id":1503,"parentId":1500,"tags":{},"startTime":1775658884064,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":9743,"timestamp":6051936151309,"id":1500,"parentId":1481,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/link.js","layer":"app-pages-browser"},"startTime":1775658884063,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":5489,"timestamp":6051936155722,"id":1514,"parentId":1513,"tags":{},"startTime":1775658884068,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":5521,"timestamp":6051936155691,"id":1513,"parentId":1510,"tags":{},"startTime":1775658884068,"traceId":"63571fab0751eb1f"},{"name":"build-module-ts","duration":6369,"timestamp":6051936155539,"id":1510,"parentId":1469,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/hooks/use-websocket.ts","layer":"app-pages-browser"},"startTime":1775658884067,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":6303,"timestamp":6051936155689,"id":1512,"parentId":1511,"tags":{},"startTime":1775658884068,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":6352,"timestamp":6051936155641,"id":1511,"parentId":1509,"tags":{},"startTime":1775658884067,"traceId":"63571fab0751eb1f"},{"name":"build-module-ts","duration":7360,"timestamp":6051936155435,"id":1509,"parentId":1468,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/lib/api.ts","layer":"app-pages-browser"},"startTime":1775658884067,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":5382,"timestamp":6051936159133,"id":1520,"parentId":1519,"tags":{},"startTime":1775658884071,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":5405,"timestamp":6051936159112,"id":1519,"parentId":1516,"tags":{},"startTime":1775658884071,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":5829,"timestamp":6051936159048,"id":1516,"parentId":1488,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/hooks-server-context.js","layer":"app-pages-browser"},"startTime":1775658884071,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":5742,"timestamp":6051936159144,"id":1522,"parentId":1521,"tags":{},"startTime":1775658884071,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":5752,"timestamp":6051936159135,"id":1521,"parentId":1517,"tags":{},"startTime":1775658884071,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":6087,"timestamp":6051936159079,"id":1517,"parentId":1488,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/static-generation-bailout.js","layer":"app-pages-browser"},"startTime":1775658884071,"traceId":"63571fab0751eb1f"},{"name":"add-entry","duration":102174,"timestamp":6051936063261,"id":1446,"parentId":1442,"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":1775658883975,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":2304,"timestamp":6051936165501,"id":1526,"parentId":1525,"tags":{},"startTime":1775658884077,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":2346,"timestamp":6051936165462,"id":1525,"parentId":1524,"tags":{},"startTime":1775658884077,"traceId":"63571fab0751eb1f"},{"name":"build-module-ts","duration":2902,"timestamp":6051936165352,"id":1524,"parentId":1491,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/lib/utils.ts","layer":"app-pages-browser"},"startTime":1775658884077,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":2411,"timestamp":6051936165856,"id":1538,"parentId":1537,"tags":{},"startTime":1775658884078,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":2420,"timestamp":6051936165848,"id":1537,"parentId":1528,"tags":{},"startTime":1775658884078,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":2929,"timestamp":6051936165692,"id":1528,"parentId":1500,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/add-locale.js","layer":"app-pages-browser"},"startTime":1775658884078,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":2791,"timestamp":6051936165847,"id":1536,"parentId":1535,"tags":{},"startTime":1775658884078,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":2807,"timestamp":6051936165832,"id":1535,"parentId":1527,"tags":{},"startTime":1775658884078,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":3654,"timestamp":6051936165662,"id":1527,"parentId":1500,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/resolve-href.js","layer":"app-pages-browser"},"startTime":1775658884077,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":8005,"timestamp":6051936165866,"id":1540,"parentId":1539,"tags":{},"startTime":1775658884078,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":8017,"timestamp":6051936165857,"id":1539,"parentId":1529,"tags":{},"startTime":1775658884078,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":9443,"timestamp":6051936165716,"id":1529,"parentId":1500,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/use-intersection.js","layer":"app-pages-browser"},"startTime":1775658884078,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":9387,"timestamp":6051936165874,"id":1542,"parentId":1541,"tags":{},"startTime":1775658884078,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":9396,"timestamp":6051936165867,"id":1541,"parentId":1530,"tags":{},"startTime":1775658884078,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":11211,"timestamp":6051936165737,"id":1530,"parentId":1500,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/get-domain-locale.js","layer":"app-pages-browser"},"startTime":1775658884078,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":11078,"timestamp":6051936165896,"id":1548,"parentId":1547,"tags":{},"startTime":1775658884078,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":11085,"timestamp":6051936165890,"id":1547,"parentId":1533,"tags":{},"startTime":1775658884078,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":11596,"timestamp":6051936165794,"id":1533,"parentId":1500,"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":1775658884078,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":11757,"timestamp":6051936165889,"id":1546,"parentId":1545,"tags":{},"startTime":1775658884078,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":11765,"timestamp":6051936165882,"id":1545,"parentId":1532,"tags":{},"startTime":1775658884078,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":12385,"timestamp":6051936165776,"id":1532,"parentId":1500,"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":1775658884078,"traceId":"63571fab0751eb1f"}]
-[{"name":"next-swc-transform","duration":12430,"timestamp":6051936165881,"id":1544,"parentId":1543,"tags":{},"startTime":1775658884078,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":12437,"timestamp":6051936165875,"id":1543,"parentId":1531,"tags":{},"startTime":1775658884078,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":14130,"timestamp":6051936165757,"id":1531,"parentId":1500,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/utils.js","layer":"app-pages-browser"},"startTime":1775658884078,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":14005,"timestamp":6051936165902,"id":1550,"parentId":1549,"tags":{},"startTime":1775658884078,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":14012,"timestamp":6051936165896,"id":1549,"parentId":1534,"tags":{},"startTime":1775658884078,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":14707,"timestamp":6051936165812,"id":1534,"parentId":1500,"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":1775658884078,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":10,"timestamp":6051936216367,"id":1568,"parentId":1567,"tags":{},"startTime":1775658884128,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":23498,"timestamp":6051936212801,"id":1565,"parentId":1564,"tags":{},"startTime":1775658884125,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":23518,"timestamp":6051936212787,"id":1564,"parentId":1557,"tags":{},"startTime":1775658884125,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":24651,"timestamp":6051936212212,"id":1557,"parentId":1527,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/index.js","layer":"app-pages-browser"},"startTime":1775658884124,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":66895,"timestamp":6051936170087,"id":1552,"parentId":1551,"tags":{},"startTime":1775658884082,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":67072,"timestamp":6051936170058,"id":1551,"parentId":1461,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react/jsx-dev-runtime.js","layer":"app-pages-browser"},"startTime":1775658884082,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":24397,"timestamp":6051936212755,"id":1561,"parentId":1560,"tags":{},"startTime":1775658884125,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":24415,"timestamp":6051936212738,"id":1560,"parentId":1555,"tags":{},"startTime":1775658884125,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":25617,"timestamp":6051936211753,"id":1555,"parentId":1527,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/omit.js","layer":"app-pages-browser"},"startTime":1775658884124,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":24651,"timestamp":6051936212732,"id":1559,"parentId":1558,"tags":{},"startTime":1775658884125,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":24787,"timestamp":6051936212597,"id":1558,"parentId":1554,"tags":{},"startTime":1775658884124,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":26161,"timestamp":6051936211573,"id":1554,"parentId":1527,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/querystring.js","layer":"app-pages-browser"},"startTime":1775658884123,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":24964,"timestamp":6051936212782,"id":1563,"parentId":1562,"tags":{},"startTime":1775658884125,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":24991,"timestamp":6051936212757,"id":1562,"parentId":1556,"tags":{},"startTime":1775658884125,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":26007,"timestamp":6051936212181,"id":1556,"parentId":1527,"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":1775658884124,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":5184,"timestamp":6051936236222,"id":1571,"parentId":1570,"tags":{},"startTime":1775658884148,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":5230,"timestamp":6051936236180,"id":1570,"parentId":1566,"tags":{},"startTime":1775658884148,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":28964,"timestamp":6051936212991,"id":1566,"parentId":1529,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/request-idle-callback.js","layer":"app-pages-browser"},"startTime":1775658884125,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":1653,"timestamp":6051936242596,"id":1581,"parentId":1580,"tags":{},"startTime":1775658884154,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":1664,"timestamp":6051936242589,"id":1580,"parentId":1574,"tags":{},"startTime":1775658884154,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":2190,"timestamp":6051936242492,"id":1574,"parentId":1556,"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":1775658884154,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":2519,"timestamp":6051936242588,"id":1579,"parentId":1578,"tags":{},"startTime":1775658884154,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":2529,"timestamp":6051936242579,"id":1578,"parentId":1573,"tags":{},"startTime":1775658884154,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":2910,"timestamp":6051936242463,"id":1573,"parentId":1557,"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":1775658884154,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":2834,"timestamp":6051936242604,"id":1583,"parentId":1582,"tags":{},"startTime":1775658884154,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":2840,"timestamp":6051936242598,"id":1582,"parentId":1575,"tags":{},"startTime":1775658884154,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":3586,"timestamp":6051936242514,"id":1575,"parentId":1556,"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":1775658884154,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":314186,"timestamp":6051936242577,"id":1577,"parentId":1576,"tags":{},"startTime":1775658884154,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":314221,"timestamp":6051936242549,"id":1576,"parentId":1572,"tags":{},"startTime":1775658884154,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":315460,"timestamp":6051936242397,"id":1572,"parentId":1557,"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":1775658884154,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":315656,"timestamp":6051936242796,"id":1585,"parentId":1584,"tags":{},"startTime":1775658884155,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":318422,"timestamp":6051936242783,"id":1584,"parentId":1551,"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":1775658884155,"traceId":"63571fab0751eb1f"},{"name":"add-entry","duration":498381,"timestamp":6051936063309,"id":1447,"parentId":1442,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1775658883975,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":118,"timestamp":6051936561721,"id":1589,"parentId":1587,"tags":{},"startTime":1775658884474,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":47,"timestamp":6051936561851,"id":1592,"parentId":1587,"tags":{},"startTime":1775658884474,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":1092,"timestamp":6051936561527,"id":1587,"parentId":1575,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/constants.js","layer":"app-pages-browser"},"startTime":1775658884473,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":19634,"timestamp":6051936561779,"id":1591,"parentId":1590,"tags":{},"startTime":1775658884474,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":19691,"timestamp":6051936561731,"id":1590,"parentId":1588,"tags":{},"startTime":1775658884474,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":20317,"timestamp":6051936561632,"id":1588,"parentId":1575,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/escape-regexp.js","layer":"app-pages-browser"},"startTime":1775658884473,"traceId":"63571fab0751eb1f"},{"name":"postcss-process","duration":232280,"timestamp":6051936455893,"id":1586,"parentId":1569,"tags":{},"startTime":1775658884368,"traceId":"63571fab0751eb1f"},{"name":"postcss-loader","duration":473061,"timestamp":6051936216513,"id":1569,"parentId":1567,"tags":{},"startTime":1775658884128,"traceId":"63571fab0751eb1f"},{"name":"css-loader","duration":38269,"timestamp":6051936689695,"id":1593,"parentId":1567,"tags":{"astUsed":"true"},"startTime":1775658884602,"traceId":"63571fab0751eb1f"},{"name":"build-module-css","duration":518383,"timestamp":6051936213051,"id":1567,"parentId":1553,"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":1775658884125,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":314,"timestamp":6051936732804,"id":1595,"parentId":1594,"tags":{},"startTime":1775658884645,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":1129,"timestamp":6051936732534,"id":1594,"parentId":1567,"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":1775658884644,"traceId":"63571fab0751eb1f"},{"name":"build-module-css","duration":568356,"timestamp":6051936170110,"id":1553,"parentId":1449,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/globals.css","layer":"app-pages-browser"},"startTime":1775658884082,"traceId":"63571fab0751eb1f"},{"name":"build-module","duration":75,"timestamp":6051936738937,"id":1596,"parentId":1553,"tags":{},"startTime":1775658884651,"traceId":"63571fab0751eb1f"},{"name":"add-entry","duration":675801,"timestamp":6051936063256,"id":1445,"parentId":1442,"tags":{"request":"next-flight-client-entry-loader?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%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&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":1775658883975,"traceId":"63571fab0751eb1f"},{"name":"make","duration":698215,"timestamp":6051936040858,"id":1442,"parentId":1441,"tags":{},"startTime":1775658883953,"traceId":"63571fab0751eb1f"},{"name":"chunk-graph","duration":1475,"timestamp":6051936742202,"id":1598,"parentId":1597,"tags":{},"startTime":1775658884654,"traceId":"63571fab0751eb1f"},{"name":"optimize-modules","duration":3,"timestamp":6051936743700,"id":1600,"parentId":1597,"tags":{},"startTime":1775658884656,"traceId":"63571fab0751eb1f"},{"name":"optimize-chunks","duration":37,"timestamp":6051936743715,"id":1601,"parentId":1597,"tags":{},"startTime":1775658884656,"traceId":"63571fab0751eb1f"},{"name":"optimize-tree","duration":3,"timestamp":6051936743762,"id":1602,"parentId":1597,"tags":{},"startTime":1775658884656,"traceId":"63571fab0751eb1f"},{"name":"optimize-chunk-modules","duration":2,"timestamp":6051936743777,"id":1603,"parentId":1597,"tags":{},"startTime":1775658884656,"traceId":"63571fab0751eb1f"},{"name":"optimize","duration":914,"timestamp":6051936743688,"id":1599,"parentId":1597,"tags":{},"startTime":1775658884656,"traceId":"63571fab0751eb1f"},{"name":"module-hash","duration":982,"timestamp":6051936745652,"id":1604,"parentId":1597,"tags":{},"startTime":1775658884657,"traceId":"63571fab0751eb1f"},{"name":"code-generation","duration":6903,"timestamp":6051936746644,"id":1605,"parentId":1597,"tags":{},"startTime":1775658884658,"traceId":"63571fab0751eb1f"},{"name":"hash","duration":3226,"timestamp":6051936754509,"id":1606,"parentId":1597,"tags":{},"startTime":1775658884666,"traceId":"63571fab0751eb1f"},{"name":"code-generation-jobs","duration":139,"timestamp":6051936757734,"id":1607,"parentId":1597,"tags":{},"startTime":1775658884670,"traceId":"63571fab0751eb1f"},{"name":"module-assets","duration":38,"timestamp":6051936757868,"id":1608,"parentId":1597,"tags":{},"startTime":1775658884670,"traceId":"63571fab0751eb1f"},{"name":"create-chunk-assets","duration":19398,"timestamp":6051936757909,"id":1609,"parentId":1597,"tags":{},"startTime":1775658884670,"traceId":"63571fab0751eb1f"},{"name":"NextJsBuildManifest-generateClientManifest","duration":145,"timestamp":6051936778595,"id":1611,"parentId":1441,"tags":{},"startTime":1775658884690,"traceId":"63571fab0751eb1f"},{"name":"NextJsBuildManifest-createassets","duration":210,"timestamp":6051936778538,"id":1610,"parentId":1441,"tags":{},"startTime":1775658884690,"traceId":"63571fab0751eb1f"},{"name":"seal","duration":39014,"timestamp":6051936741340,"id":1597,"parentId":1441,"tags":{},"startTime":1775658884653,"traceId":"63571fab0751eb1f"},{"name":"webpack-compilation","duration":740629,"timestamp":6051936039836,"id":1441,"parentId":825,"tags":{"name":"client"},"startTime":1775658883952,"traceId":"63571fab0751eb1f"},{"name":"emit","duration":5265,"timestamp":6051936780485,"id":1612,"parentId":825,"tags":{},"startTime":1775658884692,"traceId":"63571fab0751eb1f"},{"name":"webpack-invalidated-client","duration":1186033,"timestamp":6051935600246,"id":825,"parentId":3,"tags":{"trigger":"manual"},"startTime":1775658883512,"traceId":"63571fab0751eb1f"},{"name":"client-success","duration":5,"timestamp":6051936790607,"id":1615,"parentId":3,"tags":{},"startTime":1775658884702,"traceId":"63571fab0751eb1f"},{"name":"add-entry","duration":4380,"timestamp":6051936792185,"id":1617,"parentId":1614,"tags":{"request":"next-app-loader?name=app%2Fpage&page=%2Fpage&appPaths=%2Fpage&pagePath=private-next-app-dir%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":1775658884704,"traceId":"63571fab0751eb1f"},{"name":"add-entry","duration":4834,"timestamp":6051936792153,"id":1616,"parentId":1614,"tags":{"request":"next-app-loader?name=app%2F_not-found%2Fpage&page=%2F_not-found%2Fpage&appPaths=&pagePath=..%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fnot-found-error.js&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":1775658884704,"traceId":"63571fab0751eb1f"},{"name":"make","duration":19202,"timestamp":6051936788716,"id":1614,"parentId":1613,"tags":{},"startTime":1775658884701,"traceId":"63571fab0751eb1f"},{"name":"chunk-graph","duration":1054,"timestamp":6051936809755,"id":1624,"parentId":1623,"tags":{},"startTime":1775658884722,"traceId":"63571fab0751eb1f"},{"name":"optimize-modules","duration":3,"timestamp":6051936810825,"id":1626,"parentId":1623,"tags":{},"startTime":1775658884723,"traceId":"63571fab0751eb1f"},{"name":"optimize-chunks","duration":1443,"timestamp":6051936810836,"id":1627,"parentId":1623,"tags":{},"startTime":1775658884723,"traceId":"63571fab0751eb1f"},{"name":"optimize-tree","duration":9,"timestamp":6051936812321,"id":1628,"parentId":1623,"tags":{},"startTime":1775658884724,"traceId":"63571fab0751eb1f"},{"name":"optimize-chunk-modules","duration":4,"timestamp":6051936812342,"id":1629,"parentId":1623,"tags":{},"startTime":1775658884724,"traceId":"63571fab0751eb1f"},{"name":"optimize","duration":1863,"timestamp":6051936810819,"id":1625,"parentId":1623,"tags":{},"startTime":1775658884723,"traceId":"63571fab0751eb1f"},{"name":"module-hash","duration":303,"timestamp":6051936813720,"id":1630,"parentId":1623,"tags":{},"startTime":1775658884726,"traceId":"63571fab0751eb1f"},{"name":"code-generation","duration":701,"timestamp":6051936814041,"id":1631,"parentId":1623,"tags":{},"startTime":1775658884726,"traceId":"63571fab0751eb1f"},{"name":"hash","duration":600,"timestamp":6051936815341,"id":1632,"parentId":1623,"tags":{},"startTime":1775658884727,"traceId":"63571fab0751eb1f"},{"name":"code-generation-jobs","duration":39,"timestamp":6051936815941,"id":1633,"parentId":1623,"tags":{},"startTime":1775658884728,"traceId":"63571fab0751eb1f"},{"name":"module-assets","duration":26,"timestamp":6051936815975,"id":1634,"parentId":1623,"tags":{},"startTime":1775658884728,"traceId":"63571fab0751eb1f"},{"name":"create-chunk-assets","duration":77,"timestamp":6051936816003,"id":1635,"parentId":1623,"tags":{},"startTime":1775658884728,"traceId":"63571fab0751eb1f"},{"name":"seal","duration":7836,"timestamp":6051936809259,"id":1623,"parentId":1613,"tags":{},"startTime":1775658884721,"traceId":"63571fab0751eb1f"},{"name":"webpack-compilation","duration":29902,"timestamp":6051936788345,"id":1613,"parentId":3,"tags":{"name":"server"},"startTime":1775658884700,"traceId":"63571fab0751eb1f"},{"name":"emit","duration":2281,"timestamp":6051936818271,"id":1636,"parentId":3,"tags":{},"startTime":1775658884730,"traceId":"63571fab0751eb1f"},{"name":"compile-path","duration":2271801,"timestamp":6051934549324,"id":126,"tags":{"trigger":"/","isTurbopack":false},"startTime":1775658882461,"traceId":"63571fab0751eb1f"}]
-[{"name":"client-full-reload","duration":3,"timestamp":6051936982418,"id":1637,"parentId":3,"tags":{"stackTrace":""},"startTime":1775658884894,"traceId":"63571fab0751eb1f"},{"name":"handle-request","duration":2541261,"timestamp":6051934482024,"id":122,"tags":{"url":"/","isTurbopack":false},"startTime":1775658882394,"traceId":"63571fab0751eb1f"},{"name":"memory-usage","duration":2,"timestamp":6051937023387,"id":1638,"parentId":122,"tags":{"url":"/","memory.rss":"463339520","memory.heapUsed":"278176720","memory.heapTotal":"301154304"},"startTime":1775658884935,"traceId":"63571fab0751eb1f"},{"name":"handle-request","duration":2607974,"timestamp":6051934465499,"id":116,"tags":{"url":"/_next/static/webpack/35db3881dac8b3c8.webpack.hot-update.json","isTurbopack":false},"startTime":1775658882377,"traceId":"63571fab0751eb1f"},{"name":"memory-usage","duration":1,"timestamp":6051937073519,"id":1640,"parentId":116,"tags":{"url":"/_next/static/webpack/35db3881dac8b3c8.webpack.hot-update.json","memory.rss":"475987968","memory.heapUsed":"284006968","memory.heapTotal":"316801024"},"startTime":1775658884985,"traceId":"63571fab0751eb1f"},{"name":"handle-request","duration":15515,"timestamp":6051937070538,"id":1639,"tags":{"url":"/","isTurbopack":false},"startTime":1775658884982,"traceId":"63571fab0751eb1f"},{"name":"memory-usage","duration":0,"timestamp":6051937086088,"id":1641,"parentId":1639,"tags":{"url":"/","memory.rss":"473907200","memory.heapUsed":"285752392","memory.heapTotal":"316801024"},"startTime":1775658884998,"traceId":"63571fab0751eb1f"},{"name":"handle-request","duration":596746,"timestamp":6051937852364,"id":1642,"tags":{"url":"/","isTurbopack":false},"startTime":1775658885764,"traceId":"63571fab0751eb1f"},{"name":"memory-usage","duration":1,"timestamp":6051938449568,"id":1643,"parentId":1642,"tags":{"url":"/","memory.rss":"243908608","memory.heapUsed":"286692216","memory.heapTotal":"321519616"},"startTime":1775658886361,"traceId":"63571fab0751eb1f"},{"name":"client-success","duration":12,"timestamp":6051939213854,"id":1644,"parentId":3,"tags":{},"startTime":1775658887126,"traceId":"63571fab0751eb1f"},{"name":"next-client-pages-loader","duration":59,"timestamp":6051979694536,"id":1666,"parentId":1665,"tags":{"absolutePagePath":"next/dist/pages/_app"},"startTime":1775658927606,"traceId":"63571fab0751eb1f"},{"name":"build-module","duration":3642,"timestamp":6051979693943,"id":1665,"parentId":1655,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?absolutePagePath=next%2Fdist%2Fpages%2F_app&page=%2F_app!","layer":null},"startTime":1775658927606,"traceId":"63571fab0751eb1f"},{"name":"next-client-pages-loader","duration":18,"timestamp":6051979697665,"id":1668,"parentId":1667,"tags":{"absolutePagePath":"next/dist/pages/_error"},"startTime":1775658927609,"traceId":"63571fab0751eb1f"},{"name":"build-module","duration":316,"timestamp":6051979697613,"id":1667,"parentId":1657,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?absolutePagePath=next%2Fdist%2Fpages%2F_error&page=%2F_error!","layer":null},"startTime":1775658927609,"traceId":"63571fab0751eb1f"},{"name":"next-client-pages-loader","duration":15,"timestamp":6051979697963,"id":1670,"parentId":1669,"tags":{"absolutePagePath":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/pages/_error.js"},"startTime":1775658927610,"traceId":"63571fab0751eb1f"},{"name":"build-module","duration":316,"timestamp":6051979697937,"id":1669,"parentId":1661,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?absolutePagePath=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fpages%2F_error.js&page=%2F_error!","layer":null},"startTime":1775658927610,"traceId":"63571fab0751eb1f"},{"name":"add-entry","duration":60245,"timestamp":6051979640453,"id":1662,"parentId":1650,"tags":{"request":"next-client-pages-loader?absolutePagePath=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fnot-found-error.js&page=%2F_not-found%2Fpage!"},"startTime":1775658927552,"traceId":"63571fab0751eb1f"},{"name":"add-entry","duration":67872,"timestamp":6051979640417,"id":1653,"parentId":1650,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js"},"startTime":1775658927552,"traceId":"63571fab0751eb1f"},{"name":"add-entry","duration":73199,"timestamp":6051979640447,"id":1660,"parentId":1650,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1775658927552,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":20568,"timestamp":6051979693918,"id":1664,"parentId":1663,"tags":{},"startTime":1775658927606,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":21808,"timestamp":6051979693788,"id":1663,"parentId":1651,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js","layer":null},"startTime":1775658927606,"traceId":"63571fab0751eb1f"},{"name":"add-entry","duration":80132,"timestamp":6051979640439,"id":1659,"parentId":1650,"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":1775658927552,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":7121,"timestamp":6051979713994,"id":1673,"parentId":1672,"tags":{},"startTime":1775658927626,"traceId":"63571fab0751eb1f"},{"name":"postcss-process","duration":47201,"timestamp":6051979721173,"id":1675,"parentId":1674,"tags":{},"startTime":1775658927633,"traceId":"63571fab0751eb1f"},{"name":"postcss-loader","duration":48908,"timestamp":6051979721136,"id":1674,"parentId":1672,"tags":{},"startTime":1775658927633,"traceId":"63571fab0751eb1f"},{"name":"css-loader","duration":13971,"timestamp":6051979770072,"id":1676,"parentId":1672,"tags":{"astUsed":"true"},"startTime":1775658927682,"traceId":"63571fab0751eb1f"},{"name":"build-module-css","duration":72391,"timestamp":6051979713900,"id":1672,"parentId":1671,"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":1775658927626,"traceId":"63571fab0751eb1f"},{"name":"add-entry","duration":147476,"timestamp":6051979640422,"id":1654,"parentId":1650,"tags":{"request":"./node_modules/next/dist/client/app-next-dev.js"},"startTime":1775658927552,"traceId":"63571fab0751eb1f"},{"name":"build-module-css","duration":91411,"timestamp":6051979699039,"id":1671,"parentId":1649,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/globals.css","layer":"app-pages-browser"},"startTime":1775658927611,"traceId":"63571fab0751eb1f"},{"name":"build-module","duration":24,"timestamp":6051979790837,"id":1677,"parentId":1671,"tags":{},"startTime":1775658927703,"traceId":"63571fab0751eb1f"},{"name":"add-entry","duration":150535,"timestamp":6051979640436,"id":1658,"parentId":1650,"tags":{"request":"next-flight-client-entry-loader?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%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&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":1775658927552,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":2421,"timestamp":6051979793806,"id":1691,"parentId":1690,"tags":{},"startTime":1775658927706,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":2452,"timestamp":6051979793784,"id":1690,"parentId":1689,"tags":{},"startTime":1775658927705,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":4459,"timestamp":6051979793736,"id":1689,"parentId":1665,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/pages/_app.js","layer":null},"startTime":1775658927705,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":5928,"timestamp":6051979792285,"id":1685,"parentId":1684,"tags":{},"startTime":1775658927704,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":7678,"timestamp":6051979792267,"id":1684,"parentId":1663,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/internal/helpers.js","layer":null},"startTime":1775658927704,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":9799,"timestamp":6051979791662,"id":1681,"parentId":1680,"tags":{},"startTime":1775658927703,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":9859,"timestamp":6051979791603,"id":1680,"parentId":1678,"tags":{},"startTime":1775658927703,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":10941,"timestamp":6051979791499,"id":1678,"parentId":1652,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/next-dev.js","layer":null},"startTime":1775658927703,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":10798,"timestamp":6051979791679,"id":1683,"parentId":1682,"tags":{},"startTime":1775658927703,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":10817,"timestamp":6051979791668,"id":1682,"parentId":1679,"tags":{},"startTime":1775658927703,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":12380,"timestamp":6051979791565,"id":1679,"parentId":1669,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/pages/_error.js","layer":null},"startTime":1775658927703,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":10511,"timestamp":6051979793467,"id":1688,"parentId":1687,"tags":{},"startTime":1775658927705,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":10556,"timestamp":6051979793423,"id":1687,"parentId":1686,"tags":{},"startTime":1775658927705,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":12650,"timestamp":6051979793354,"id":1686,"parentId":1656,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/router.js","layer":null},"startTime":1775658927705,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":2211,"timestamp":6051979809681,"id":1702,"parentId":1701,"tags":{},"startTime":1775658927721,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":2234,"timestamp":6051979809674,"id":1701,"parentId":1696,"tags":{},"startTime":1775658927721,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":3430,"timestamp":6051979809599,"id":1696,"parentId":1678,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/setup-hydration-warning.js","layer":null},"startTime":1775658927721,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":3403,"timestamp":6051979809659,"id":1698,"parentId":1697,"tags":{},"startTime":1775658927721,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":3428,"timestamp":6051979809637,"id":1697,"parentId":1694,"tags":{},"startTime":1775658927721,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":4859,"timestamp":6051979809535,"id":1694,"parentId":1678,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/webpack.js","layer":null},"startTime":1775658927721,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":4201,"timestamp":6051979810486,"id":1706,"parentId":1705,"tags":{},"startTime":1775658927722,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":4232,"timestamp":6051979810457,"id":1705,"parentId":1703,"tags":{},"startTime":1775658927722,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":5116,"timestamp":6051979810265,"id":1703,"parentId":1686,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/with-router.js","layer":null},"startTime":1775658927722,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":5735,"timestamp":6051979809672,"id":1700,"parentId":1699,"tags":{},"startTime":1775658927721,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":5745,"timestamp":6051979809663,"id":1699,"parentId":1695,"tags":{},"startTime":1775658927721,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":9607,"timestamp":6051979809577,"id":1695,"parentId":1678,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/page-bootstrap.js","layer":null},"startTime":1775658927721,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":8058,"timestamp":6051979811164,"id":1713,"parentId":1712,"tags":{},"startTime":1775658927723,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":8079,"timestamp":6051979811144,"id":1712,"parentId":1709,"tags":{},"startTime":1775658927723,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":12079,"timestamp":6051979811037,"id":1709,"parentId":1678,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/dev/hot-middleware-client.js","layer":null},"startTime":1775658927723,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":11938,"timestamp":6051979811362,"id":1719,"parentId":1718,"tags":{},"startTime":1775658927723,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":11959,"timestamp":6051979811348,"id":1718,"parentId":1714,"tags":{},"startTime":1775658927723,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":14679,"timestamp":6051979811209,"id":1714,"parentId":1689,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/utils.js","layer":null},"startTime":1775658927723,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":15897,"timestamp":6051979811385,"id":1723,"parentId":1722,"tags":{},"startTime":1775658927723,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":15910,"timestamp":6051979811375,"id":1722,"parentId":1716,"tags":{},"startTime":1775658927723,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":16510,"timestamp":6051979811293,"id":1716,"parentId":1686,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router-context.shared-runtime.js","layer":null},"startTime":1775658927723,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":18394,"timestamp":6051979809526,"id":1693,"parentId":1692,"tags":{},"startTime":1775658927721,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":18583,"timestamp":6051979809498,"id":1692,"parentId":1663,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react-refresh/runtime.js","layer":null},"startTime":1775658927721,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":16743,"timestamp":6051979811373,"id":1721,"parentId":1720,"tags":{},"startTime":1775658927723,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":16752,"timestamp":6051979811365,"id":1720,"parentId":1715,"tags":{},"startTime":1775658927723,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":18471,"timestamp":6051979811259,"id":1715,"parentId":1679,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/head.js","layer":null},"startTime":1775658927723,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":19450,"timestamp":6051979810499,"id":1708,"parentId":1707,"tags":{},"startTime":1775658927722,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":19462,"timestamp":6051979810490,"id":1707,"parentId":1704,"tags":{},"startTime":1775658927722,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":25344,"timestamp":6051979810344,"id":1704,"parentId":1678,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/index.js","layer":null},"startTime":1775658927722,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":28990,"timestamp":6051979811394,"id":1725,"parentId":1724,"tags":{},"startTime":1775658927723,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":29003,"timestamp":6051979811387,"id":1724,"parentId":1717,"tags":{},"startTime":1775658927723,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":41546,"timestamp":6051979811325,"id":1717,"parentId":1686,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/router.js","layer":null},"startTime":1775658927723,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":46305,"timestamp":6051979811097,"id":1711,"parentId":1710,"tags":{},"startTime":1775658927723,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":46795,"timestamp":6051979811084,"id":1710,"parentId":1686,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/is-error.js","layer":null},"startTime":1775658927723,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":4987,"timestamp":6051979862180,"id":1730,"parentId":1729,"tags":{},"startTime":1775658927774,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":5024,"timestamp":6051979862149,"id":1729,"parentId":1726,"tags":{},"startTime":1775658927774,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":5889,"timestamp":6051979861935,"id":1726,"parentId":1695,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/dev/on-demand-entries-client.js","layer":null},"startTime":1775658927774,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":5698,"timestamp":6051979862214,"id":1734,"parentId":1733,"tags":{},"startTime":1775658927774,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":5709,"timestamp":6051979862205,"id":1733,"parentId":1728,"tags":{},"startTime":1775658927774,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":6296,"timestamp":6051979862045,"id":1728,"parentId":1695,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/dev/fouc.js","layer":null},"startTime":1775658927774,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":6167,"timestamp":6051979862194,"id":1732,"parentId":1731,"tags":{},"startTime":1775658927774,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":6178,"timestamp":6051979862184,"id":1731,"parentId":1727,"tags":{},"startTime":1775658927774,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":7077,"timestamp":6051979862020,"id":1727,"parentId":1695,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/dev/dev-build-watcher.js","layer":null},"startTime":1775658927774,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":4683,"timestamp":6051979866215,"id":1760,"parentId":1759,"tags":{},"startTime":1775658927778,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":4693,"timestamp":6051979866208,"id":1759,"parentId":1738,"tags":{},"startTime":1775658927778,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":6325,"timestamp":6051979865609,"id":1738,"parentId":1704,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/route-announcer.js","layer":null},"startTime":1775658927777,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":5778,"timestamp":6051979866206,"id":1758,"parentId":1757,"tags":{},"startTime":1775658927778,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":5789,"timestamp":6051979866198,"id":1757,"parentId":1737,"tags":{},"startTime":1775658927778,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":7133,"timestamp":6051979865561,"id":1737,"parentId":1704,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/performance-relayer.js","layer":null},"startTime":1775658927777,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":6487,"timestamp":6051979866224,"id":1762,"parentId":1761,"tags":{},"startTime":1775658927778,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":6495,"timestamp":6051979866218,"id":1761,"parentId":1739,"tags":{},"startTime":1775658927778,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":7804,"timestamp":6051979865641,"id":1739,"parentId":1704,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/remove-base-path.js","layer":null},"startTime":1775658927777,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":7277,"timestamp":6051979866195,"id":1756,"parentId":1755,"tags":{},"startTime":1775658927778,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":7289,"timestamp":6051979866184,"id":1755,"parentId":1736,"tags":{},"startTime":1775658927778,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":10363,"timestamp":6051979865528,"id":1736,"parentId":1704,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/page-loader.js","layer":null},"startTime":1775658927777,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":9792,"timestamp":6051979866233,"id":1764,"parentId":1763,"tags":{},"startTime":1775658927778,"traceId":"63571fab0751eb1f"}]
-[{"name":"next-swc-loader","duration":10048,"timestamp":6051979866227,"id":1763,"parentId":1740,"tags":{},"startTime":1775658927778,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":11367,"timestamp":6051979865665,"id":1740,"parentId":1704,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/has-base-path.js","layer":null},"startTime":1775658927777,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":10888,"timestamp":6051979866180,"id":1754,"parentId":1753,"tags":{},"startTime":1775658927778,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":10931,"timestamp":6051979866138,"id":1753,"parentId":1735,"tags":{},"startTime":1775658927778,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":14410,"timestamp":6051979865436,"id":1735,"parentId":1704,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/head-manager.js","layer":null},"startTime":1775658927777,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":13629,"timestamp":6051979866242,"id":1766,"parentId":1765,"tags":{},"startTime":1775658927778,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":13637,"timestamp":6051979866235,"id":1765,"parentId":1741,"tags":{},"startTime":1775658927778,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":14729,"timestamp":6051979865688,"id":1741,"parentId":1704,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/on-recoverable-error.js","layer":null},"startTime":1775658927777,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":14189,"timestamp":6051979866267,"id":1770,"parentId":1769,"tags":{},"startTime":1775658927778,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":14206,"timestamp":6051979866252,"id":1769,"parentId":1743,"tags":{},"startTime":1775658927778,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":15219,"timestamp":6051979865727,"id":1743,"parentId":1704,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/head-manager-context.shared-runtime.js","layer":null},"startTime":1775658927777,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":14708,"timestamp":6051979866276,"id":1772,"parentId":1771,"tags":{},"startTime":1775658927778,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":14716,"timestamp":6051979866269,"id":1771,"parentId":1744,"tags":{},"startTime":1775658927778,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":15654,"timestamp":6051979865754,"id":1744,"parentId":1704,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/mitt.js","layer":null},"startTime":1775658927777,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":15141,"timestamp":6051979866284,"id":1774,"parentId":1773,"tags":{},"startTime":1775658927778,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":15148,"timestamp":6051979866278,"id":1773,"parentId":1745,"tags":{},"startTime":1775658927778,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":16046,"timestamp":6051979865781,"id":1745,"parentId":1704,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/runtime-config.external.js","layer":null},"startTime":1775658927777,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":17469,"timestamp":6051979866292,"id":1776,"parentId":1775,"tags":{},"startTime":1775658927778,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":17478,"timestamp":6051979866286,"id":1775,"parentId":1746,"tags":{},"startTime":1775658927778,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":18313,"timestamp":6051979865804,"id":1746,"parentId":1704,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/image-config-context.shared-runtime.js","layer":null},"startTime":1775658927778,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":17815,"timestamp":6051979866315,"id":1780,"parentId":1779,"tags":{},"startTime":1775658927778,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":17823,"timestamp":6051979866309,"id":1779,"parentId":1748,"tags":{},"startTime":1775658927778,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":18578,"timestamp":6051979865883,"id":1748,"parentId":1704,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/hooks-client-context.shared-runtime.js","layer":null},"startTime":1775658927778,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":18165,"timestamp":6051979866307,"id":1778,"parentId":1777,"tags":{},"startTime":1775658927778,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":18173,"timestamp":6051979866300,"id":1777,"parentId":1747,"tags":{},"startTime":1775658927778,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":18919,"timestamp":6051979865860,"id":1747,"parentId":1704,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/app-router-context.shared-runtime.js","layer":null},"startTime":1775658927778,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":18468,"timestamp":6051979866323,"id":1782,"parentId":1781,"tags":{},"startTime":1775658927778,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":18475,"timestamp":6051979866317,"id":1781,"parentId":1749,"tags":{},"startTime":1775658927778,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":19241,"timestamp":6051979865946,"id":1749,"parentId":1715,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/side-effect.js","layer":null},"startTime":1775658927778,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":18958,"timestamp":6051979866250,"id":1768,"parentId":1767,"tags":{},"startTime":1775658927778,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":18966,"timestamp":6051979866244,"id":1767,"parentId":1742,"tags":{},"startTime":1775658927778,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":20661,"timestamp":6051979865711,"id":1742,"parentId":1704,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/script.js","layer":null},"startTime":1775658927777,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":21408,"timestamp":6051979866338,"id":1786,"parentId":1785,"tags":{},"startTime":1775658927778,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":21416,"timestamp":6051979866333,"id":1785,"parentId":1751,"tags":{},"startTime":1775658927778,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":22005,"timestamp":6051979866000,"id":1751,"parentId":1715,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/amp-mode.js","layer":null},"startTime":1775658927778,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":21684,"timestamp":6051979866331,"id":1784,"parentId":1783,"tags":{},"startTime":1775658927778,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":21690,"timestamp":6051979866325,"id":1783,"parentId":1750,"tags":{},"startTime":1775658927778,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":23853,"timestamp":6051979865978,"id":1750,"parentId":1715,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/amp-context.shared-runtime.js","layer":null},"startTime":1775658927778,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":19940,"timestamp":6051979869926,"id":1819,"parentId":1818,"tags":{},"startTime":1775658927782,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":19961,"timestamp":6051979869907,"id":1818,"parentId":1791,"tags":{},"startTime":1775658927782,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":21028,"timestamp":6051979869369,"id":1791,"parentId":1695,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/querystring.js","layer":null},"startTime":1775658927781,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":20468,"timestamp":6051979869946,"id":1821,"parentId":1820,"tags":{},"startTime":1775658927782,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":20486,"timestamp":6051979869929,"id":1820,"parentId":1792,"tags":{},"startTime":1775658927782,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":21258,"timestamp":6051979869402,"id":1792,"parentId":1704,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/handle-smooth-scroll.js","layer":null},"startTime":1775658927781,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":24332,"timestamp":6051979866346,"id":1788,"parentId":1787,"tags":{},"startTime":1775658927778,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":24338,"timestamp":6051979866340,"id":1787,"parentId":1752,"tags":{},"startTime":1775658927778,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":25222,"timestamp":6051979866022,"id":1752,"parentId":1704,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/adapters.js","layer":null},"startTime":1775658927778,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":21282,"timestamp":6051979869972,"id":1823,"parentId":1822,"tags":{},"startTime":1775658927782,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":21297,"timestamp":6051979869959,"id":1822,"parentId":1793,"tags":{},"startTime":1775658927782,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":22112,"timestamp":6051979869432,"id":1793,"parentId":1704,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/is-dynamic.js","layer":null},"startTime":1775658927781,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":21557,"timestamp":6051979869996,"id":1827,"parentId":1826,"tags":{},"startTime":1775658927782,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":21570,"timestamp":6051979869984,"id":1826,"parentId":1797,"tags":{},"startTime":1775658927782,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":22356,"timestamp":6051979869489,"id":1797,"parentId":1717,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/detect-domain-locale.js","layer":null},"startTime":1775658927781,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":21849,"timestamp":6051979870005,"id":1829,"parentId":1828,"tags":{},"startTime":1775658927782,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":21856,"timestamp":6051979869999,"id":1828,"parentId":1798,"tags":{},"startTime":1775658927782,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":22616,"timestamp":6051979869509,"id":1798,"parentId":1717,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/add-locale.js","layer":null},"startTime":1775658927781,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":22112,"timestamp":6051979870023,"id":1833,"parentId":1832,"tags":{},"startTime":1775658927782,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":22120,"timestamp":6051979870017,"id":1832,"parentId":1800,"tags":{},"startTime":1775658927782,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":23022,"timestamp":6051979869558,"id":1800,"parentId":1717,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/add-base-path.js","layer":null},"startTime":1775658927781,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":22584,"timestamp":6051979870015,"id":1831,"parentId":1830,"tags":{},"startTime":1775658927782,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":22592,"timestamp":6051979870008,"id":1830,"parentId":1799,"tags":{},"startTime":1775658927782,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":23456,"timestamp":6051979869536,"id":1799,"parentId":1717,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/remove-locale.js","layer":null},"startTime":1775658927781,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":23040,"timestamp":6051979869982,"id":1825,"parentId":1824,"tags":{},"startTime":1775658927782,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":23049,"timestamp":6051979869974,"id":1824,"parentId":1796,"tags":{},"startTime":1775658927782,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":24784,"timestamp":6051979869469,"id":1796,"parentId":1717,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/route-loader.js","layer":null},"startTime":1775658927781,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":24225,"timestamp":6051979870040,"id":1837,"parentId":1836,"tags":{},"startTime":1775658927782,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":24232,"timestamp":6051979870033,"id":1836,"parentId":1804,"tags":{},"startTime":1775658927782,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":24909,"timestamp":6051979869601,"id":1804,"parentId":1717,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/remove-trailing-slash.js","layer":null},"startTime":1775658927781,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":24494,"timestamp":6051979870031,"id":1835,"parentId":1834,"tags":{},"startTime":1775658927782,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":24501,"timestamp":6051979870025,"id":1834,"parentId":1801,"tags":{},"startTime":1775658927782,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":25547,"timestamp":6051979869575,"id":1801,"parentId":1717,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/resolve-href.js","layer":null},"startTime":1775658927781,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":25085,"timestamp":6051979870048,"id":1839,"parentId":1838,"tags":{},"startTime":1775658927782,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":25093,"timestamp":6051979870042,"id":1838,"parentId":1805,"tags":{},"startTime":1775658927782,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":25793,"timestamp":6051979869618,"id":1805,"parentId":1717,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/parse-relative-url.js","layer":null},"startTime":1775658927781,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":25371,"timestamp":6051979870057,"id":1841,"parentId":1840,"tags":{},"startTime":1775658927782,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":25379,"timestamp":6051979870050,"id":1840,"parentId":1806,"tags":{},"startTime":1775658927782,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":26414,"timestamp":6051979869634,"id":1806,"parentId":1717,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/resolve-rewrites.js","layer":null},"startTime":1775658927781,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":26001,"timestamp":6051979870065,"id":1843,"parentId":1842,"tags":{},"startTime":1775658927782,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":26009,"timestamp":6051979870059,"id":1842,"parentId":1807,"tags":{},"startTime":1775658927782,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":26823,"timestamp":6051979869650,"id":1807,"parentId":1717,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/route-matcher.js","layer":null},"startTime":1775658927781,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":26397,"timestamp":6051979870088,"id":1849,"parentId":1848,"tags":{},"startTime":1775658927782,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":26404,"timestamp":6051979870082,"id":1848,"parentId":1810,"tags":{},"startTime":1775658927782,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":27042,"timestamp":6051979869707,"id":1810,"parentId":1717,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/parse-path.js","layer":null},"startTime":1775658927781,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":26666,"timestamp":6051979870096,"id":1851,"parentId":1850,"tags":{},"startTime":1775658927782,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":26673,"timestamp":6051979870090,"id":1850,"parentId":1811,"tags":{},"startTime":1775658927782,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":27508,"timestamp":6051979869723,"id":1811,"parentId":1717,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/get-next-pathname-info.js","layer":null},"startTime":1775658927781,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":27168,"timestamp":6051979870080,"id":1847,"parentId":1846,"tags":{},"startTime":1775658927782,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":27175,"timestamp":6051979870075,"id":1846,"parentId":1809,"tags":{},"startTime":1775658927782,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":28443,"timestamp":6051979869687,"id":1809,"parentId":1717,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/format-url.js","layer":null},"startTime":1775658927781,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":28114,"timestamp":6051979870073,"id":1845,"parentId":1844,"tags":{},"startTime":1775658927782,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":28122,"timestamp":6051979870067,"id":1844,"parentId":1808,"tags":{},"startTime":1775658927782,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":29803,"timestamp":6051979869670,"id":1808,"parentId":1717,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/route-regex.js","layer":null},"startTime":1775658927781,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":29387,"timestamp":6051979870105,"id":1853,"parentId":1852,"tags":{},"startTime":1775658927782,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":29395,"timestamp":6051979870098,"id":1852,"parentId":1812,"tags":{},"startTime":1775658927782,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":30151,"timestamp":6051979869740,"id":1812,"parentId":1717,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/format-next-pathname-info.js","layer":null},"startTime":1775658927781,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":29791,"timestamp":6051979870113,"id":1855,"parentId":1854,"tags":{},"startTime":1775658927782,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":29798,"timestamp":6051979870107,"id":1854,"parentId":1813,"tags":{},"startTime":1775658927782,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":30492,"timestamp":6051979869758,"id":1813,"parentId":1717,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/compare-states.js","layer":null},"startTime":1775658927781,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":30128,"timestamp":6051979870137,"id":1861,"parentId":1860,"tags":{},"startTime":1775658927782,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":30137,"timestamp":6051979870132,"id":1860,"parentId":1816,"tags":{},"startTime":1775658927782,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":30712,"timestamp":6051979869814,"id":1816,"parentId":1717,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/omit.js","layer":null},"startTime":1775658927782,"traceId":"63571fab0751eb1f"}]
-[{"name":"next-swc-transform","duration":30520,"timestamp":6051979870129,"id":1859,"parentId":1858,"tags":{},"startTime":1775658927782,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":30527,"timestamp":6051979870123,"id":1858,"parentId":1815,"tags":{},"startTime":1775658927782,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":31608,"timestamp":6051979869791,"id":1815,"parentId":1717,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/is-bot.js","layer":null},"startTime":1775658927782,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":31293,"timestamp":6051979870121,"id":1857,"parentId":1856,"tags":{},"startTime":1775658927782,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":31300,"timestamp":6051979870115,"id":1856,"parentId":1814,"tags":{},"startTime":1775658927782,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":31961,"timestamp":6051979869775,"id":1814,"parentId":1717,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/is-local-url.js","layer":null},"startTime":1775658927781,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":32329,"timestamp":6051979870145,"id":1863,"parentId":1862,"tags":{},"startTime":1775658927782,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":32336,"timestamp":6051979870140,"id":1862,"parentId":1817,"tags":{},"startTime":1775658927782,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":33117,"timestamp":6051979869831,"id":1817,"parentId":1717,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/interpolate-as.js","layer":null},"startTime":1775658927782,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":24934,"timestamp":6051979882941,"id":1874,"parentId":1873,"tags":{},"startTime":1775658927795,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":24944,"timestamp":6051979882934,"id":1873,"parentId":1868,"tags":{},"startTime":1775658927795,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":25495,"timestamp":6051979882795,"id":1868,"parentId":1715,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/utils/warn-once.js","layer":null},"startTime":1775658927795,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":25384,"timestamp":6051979882918,"id":1870,"parentId":1869,"tags":{},"startTime":1775658927795,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":25412,"timestamp":6051979882891,"id":1869,"parentId":1866,"tags":{},"startTime":1775658927795,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":25988,"timestamp":6051979882721,"id":1866,"parentId":1704,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/tracing/report-to-socket.js","layer":null},"startTime":1775658927794,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":25793,"timestamp":6051979882931,"id":1872,"parentId":1871,"tags":{},"startTime":1775658927795,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":25803,"timestamp":6051979882922,"id":1871,"parentId":1867,"tags":{},"startTime":1775658927795,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":26410,"timestamp":6051979882772,"id":1867,"parentId":1704,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/tracing/tracer.js","layer":null},"startTime":1775658927794,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":1870,"timestamp":6051979912193,"id":1892,"parentId":1891,"tags":{},"startTime":1775658927824,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":1880,"timestamp":6051979912185,"id":1891,"parentId":1879,"tags":{},"startTime":1775658927824,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":2760,"timestamp":6051979911830,"id":1879,"parentId":1695,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/pages/websocket.js","layer":null},"startTime":1775658927824,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":2441,"timestamp":6051979912168,"id":1888,"parentId":1887,"tags":{},"startTime":1775658927824,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":2472,"timestamp":6051979912139,"id":1887,"parentId":1875,"tags":{},"startTime":1775658927824,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":3589,"timestamp":6051979911662,"id":1875,"parentId":1717,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/bloom-filter.js","layer":null},"startTime":1775658927823,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":3214,"timestamp":6051979912183,"id":1890,"parentId":1889,"tags":{},"startTime":1775658927824,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":3226,"timestamp":6051979912172,"id":1889,"parentId":1878,"tags":{},"startTime":1775658927824,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":4214,"timestamp":6051979911795,"id":1878,"parentId":1695,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/shared.js","layer":null},"startTime":1775658927824,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":3793,"timestamp":6051979912230,"id":1900,"parentId":1899,"tags":{},"startTime":1775658927824,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":3804,"timestamp":6051979912221,"id":1899,"parentId":1883,"tags":{},"startTime":1775658927824,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":4310,"timestamp":6051979911994,"id":1883,"parentId":1717,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/page-path/denormalize-page-path.js","layer":null},"startTime":1775658927824,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":4352,"timestamp":6051979912210,"id":1896,"parentId":1895,"tags":{},"startTime":1775658927824,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":4360,"timestamp":6051979912204,"id":1895,"parentId":1881,"tags":{},"startTime":1775658927824,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":5687,"timestamp":6051979911884,"id":1881,"parentId":1704,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/pages/client.js","layer":null},"startTime":1775658927824,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":5494,"timestamp":6051979912219,"id":1898,"parentId":1897,"tags":{},"startTime":1775658927824,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":5501,"timestamp":6051979912212,"id":1897,"parentId":1882,"tags":{},"startTime":1775658927824,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":6039,"timestamp":6051979911960,"id":1882,"parentId":1695,"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":null},"startTime":1775658927824,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":35418,"timestamp":6051979882699,"id":1865,"parentId":1864,"tags":{},"startTime":1775658927794,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":35760,"timestamp":6051979882669,"id":1864,"parentId":1704,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/polyfills/polyfill-module.js","layer":null},"startTime":1775658927794,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":49096,"timestamp":6051979869358,"id":1790,"parentId":1789,"tags":{},"startTime":1775658927781,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":49612,"timestamp":6051979869337,"id":1789,"parentId":1694,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/deployment-id.js","layer":null},"startTime":1775658927781,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":49525,"timestamp":6051979869598,"id":1803,"parentId":1802,"tags":{},"startTime":1775658927781,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":49725,"timestamp":6051979869591,"id":1802,"parentId":1717,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/is-api-route.js","layer":null},"startTime":1775658927781,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":49867,"timestamp":6051979869459,"id":1795,"parentId":1794,"tags":{},"startTime":1775658927781,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":55567,"timestamp":6051979869451,"id":1794,"parentId":1692,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react-refresh/cjs/react-refresh-runtime.development.js","layer":null},"startTime":1775658927781,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":13822,"timestamp":6051979912239,"id":1902,"parentId":1901,"tags":{},"startTime":1775658927824,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":13831,"timestamp":6051979912232,"id":1901,"parentId":1884,"tags":{},"startTime":1775658927824,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":14649,"timestamp":6051979912015,"id":1884,"parentId":1717,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/i18n/normalize-locale-path.js","layer":null},"startTime":1775658927824,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":14494,"timestamp":6051979912202,"id":1894,"parentId":1893,"tags":{},"startTime":1775658927824,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":14502,"timestamp":6051979912195,"id":1893,"parentId":1880,"tags":{},"startTime":1775658927824,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":17032,"timestamp":6051979911858,"id":1880,"parentId":1695,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/pages/hot-reloader-client.js","layer":null},"startTime":1775658927824,"traceId":"63571fab0751eb1f"},{"name":"add-entry","duration":289664,"timestamp":6051979639294,"id":1651,"parentId":1650,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js"},"startTime":1775658927551,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":16929,"timestamp":6051979914002,"id":1912,"parentId":1911,"tags":{},"startTime":1775658927826,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":16938,"timestamp":6051979913995,"id":1911,"parentId":1907,"tags":{},"startTime":1775658927826,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":17353,"timestamp":6051979913938,"id":1907,"parentId":1736,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/get-asset-path-from-route.js","layer":null},"startTime":1775658927826,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":17339,"timestamp":6051979914011,"id":1914,"parentId":1913,"tags":{},"startTime":1775658927826,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":17347,"timestamp":6051979914004,"id":1913,"parentId":1908,"tags":{},"startTime":1775658927826,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":17677,"timestamp":6051979913961,"id":1908,"parentId":1740,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/path-has-prefix.js","layer":null},"startTime":1775658927826,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":17821,"timestamp":6051979913827,"id":1905,"parentId":1904,"tags":{},"startTime":1775658927826,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":17841,"timestamp":6051979913808,"id":1904,"parentId":1903,"tags":{},"startTime":1775658927826,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":18239,"timestamp":6051979913731,"id":1903,"parentId":1710,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/is-plain-object.js","layer":null},"startTime":1775658927825,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":18304,"timestamp":6051979913993,"id":1910,"parentId":1909,"tags":{},"startTime":1775658927826,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":18315,"timestamp":6051979913982,"id":1909,"parentId":1906,"tags":{},"startTime":1775658927826,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":19474,"timestamp":6051979913884,"id":1906,"parentId":1736,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/constants.js","layer":null},"startTime":1775658927826,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":24305,"timestamp":6051979912046,"id":1886,"parentId":1885,"tags":{},"startTime":1775658927824,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":24446,"timestamp":6051979912035,"id":1885,"parentId":1689,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/react/jsx-runtime.js","layer":null},"startTime":1775658927824,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":24706,"timestamp":6051979911781,"id":1877,"parentId":1876,"tags":{},"startTime":1775658927823,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":24865,"timestamp":6051979911763,"id":1876,"parentId":1695,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/dev/hot-reloader-types.js","layer":null},"startTime":1775658927823,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":2293,"timestamp":6051979935326,"id":1927,"parentId":1926,"tags":{},"startTime":1775658927847,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":2308,"timestamp":6051979935314,"id":1926,"parentId":1916,"tags":{},"startTime":1775658927847,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":3644,"timestamp":6051979935016,"id":1916,"parentId":1798,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/normalize-trailing-slash.js","layer":null},"startTime":1775658927847,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":3338,"timestamp":6051979935337,"id":1929,"parentId":1928,"tags":{},"startTime":1775658927847,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":3347,"timestamp":6051979935329,"id":1928,"parentId":1917,"tags":{},"startTime":1775658927847,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":4065,"timestamp":6051979935047,"id":1917,"parentId":1796,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/trusted-types.js","layer":null},"startTime":1775658927847,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":3777,"timestamp":6051979935346,"id":1931,"parentId":1930,"tags":{},"startTime":1775658927847,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":3785,"timestamp":6051979935339,"id":1930,"parentId":1918,"tags":{},"startTime":1775658927847,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":4416,"timestamp":6051979935068,"id":1918,"parentId":1746,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/image-config.js","layer":null},"startTime":1775658927847,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":4188,"timestamp":6051979935309,"id":1925,"parentId":1924,"tags":{},"startTime":1775658927847,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":4224,"timestamp":6051979935274,"id":1924,"parentId":1915,"tags":{},"startTime":1775658927847,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":5029,"timestamp":6051979934898,"id":1915,"parentId":1742,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/request-idle-callback.js","layer":null},"startTime":1775658927847,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":5130,"timestamp":6051979935364,"id":1935,"parentId":1934,"tags":{},"startTime":1775658927847,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":5138,"timestamp":6051979935358,"id":1934,"parentId":1920,"tags":{},"startTime":1775658927847,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":5693,"timestamp":6051979935118,"id":1920,"parentId":1752,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/as-path-to-search-params.js","layer":null},"startTime":1775658927847,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":5465,"timestamp":6051979935356,"id":1933,"parentId":1932,"tags":{},"startTime":1775658927847,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":5473,"timestamp":6051979935349,"id":1932,"parentId":1919,"tags":{},"startTime":1775658927847,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":6044,"timestamp":6051979935091,"id":1919,"parentId":1800,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/add-path-prefix.js","layer":null},"startTime":1775658927847,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":7260,"timestamp":6051979935390,"id":1941,"parentId":1940,"tags":{},"startTime":1775658927847,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":7268,"timestamp":6051979935384,"id":1940,"parentId":1923,"tags":{},"startTime":1775658927847,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":7797,"timestamp":6051979935185,"id":1923,"parentId":1811,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/remove-path-prefix.js","layer":null},"startTime":1775658927847,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":7648,"timestamp":6051979935372,"id":1937,"parentId":1936,"tags":{},"startTime":1775658927847,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":7655,"timestamp":6051979935366,"id":1936,"parentId":1921,"tags":{},"startTime":1775658927847,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":8456,"timestamp":6051979935140,"id":1921,"parentId":1806,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/path-match.js","layer":null},"startTime":1775658927847,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":6257,"timestamp":6051979937374,"id":1946,"parentId":1945,"tags":{},"startTime":1775658927849,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":6286,"timestamp":6051979937346,"id":1945,"parentId":1944,"tags":{},"startTime":1775658927849,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":7154,"timestamp":6051979937053,"id":1944,"parentId":1741,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/lazy-dynamic/bailout-to-csr.js","layer":null},"startTime":1775658927849,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":10692,"timestamp":6051979935382,"id":1939,"parentId":1938,"tags":{},"startTime":1775658927847,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":10701,"timestamp":6051979935374,"id":1938,"parentId":1922,"tags":{},"startTime":1775658927847,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":12144,"timestamp":6051979935160,"id":1922,"parentId":1806,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/prepare-destination.js","layer":null},"startTime":1775658927847,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":6927,"timestamp":6051979940408,"id":1955,"parentId":1954,"tags":{},"startTime":1775658927852,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":6940,"timestamp":6051979940396,"id":1954,"parentId":1950,"tags":{},"startTime":1775658927852,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":7286,"timestamp":6051979940314,"id":1950,"parentId":1812,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/add-path-suffix.js","layer":null},"startTime":1775658927852,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":7192,"timestamp":6051979940418,"id":1957,"parentId":1956,"tags":{},"startTime":1775658927852,"traceId":"63571fab0751eb1f"}]
-[{"name":"next-swc-loader","duration":7310,"timestamp":6051979940410,"id":1956,"parentId":1951,"tags":{},"startTime":1775658927852,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":7640,"timestamp":6051979940340,"id":1951,"parentId":1812,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/add-locale.js","layer":null},"startTime":1775658927852,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":7596,"timestamp":6051979940392,"id":1953,"parentId":1952,"tags":{},"startTime":1775658927852,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":7622,"timestamp":6051979940367,"id":1952,"parentId":1949,"tags":{},"startTime":1775658927852,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":7980,"timestamp":6051979940261,"id":1949,"parentId":1808,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/escape-regexp.js","layer":null},"startTime":1775658927852,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":1807,"timestamp":6051979949643,"id":1973,"parentId":1972,"tags":{},"startTime":1775658927861,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":1821,"timestamp":6051979949630,"id":1972,"parentId":1959,"tags":{},"startTime":1775658927861,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":2551,"timestamp":6051979949312,"id":1959,"parentId":1883,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/page-path/normalize-path-sep.js","layer":null},"startTime":1775658927861,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":2250,"timestamp":6051979949627,"id":1971,"parentId":1970,"tags":{},"startTime":1775658927861,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":2274,"timestamp":6051979949604,"id":1970,"parentId":1958,"tags":{},"startTime":1775658927861,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":3061,"timestamp":6051979949252,"id":1958,"parentId":1879,"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":null},"startTime":1775658927861,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":2877,"timestamp":6051979949654,"id":1975,"parentId":1974,"tags":{},"startTime":1775658927861,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":2887,"timestamp":6051979949645,"id":1974,"parentId":1962,"tags":{},"startTime":1775658927861,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":3572,"timestamp":6051979949366,"id":1962,"parentId":1881,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/pages/bus.js","layer":null},"startTime":1775658927861,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":3290,"timestamp":6051979949663,"id":1977,"parentId":1976,"tags":{},"startTime":1775658927861,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":3298,"timestamp":6051979949656,"id":1976,"parentId":1963,"tags":{},"startTime":1775658927861,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":4155,"timestamp":6051979949388,"id":1963,"parentId":1881,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/pages/ReactDevOverlay.js","layer":null},"startTime":1775658927861,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":3884,"timestamp":6051979949673,"id":1979,"parentId":1978,"tags":{},"startTime":1775658927861,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":3893,"timestamp":6051979949665,"id":1978,"parentId":1964,"tags":{},"startTime":1775658927861,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":4883,"timestamp":6051979949408,"id":1964,"parentId":1881,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/parseStack.js","layer":null},"startTime":1775658927861,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":5557,"timestamp":6051979949692,"id":1983,"parentId":1982,"tags":{},"startTime":1775658927861,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":5568,"timestamp":6051979949684,"id":1982,"parentId":1966,"tags":{},"startTime":1775658927861,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":6465,"timestamp":6051979949443,"id":1966,"parentId":1881,"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":null},"startTime":1775658927861,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":6266,"timestamp":6051979949682,"id":1981,"parentId":1980,"tags":{},"startTime":1775658927861,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":6276,"timestamp":6051979949675,"id":1980,"parentId":1965,"tags":{},"startTime":1775658927861,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":7107,"timestamp":6051979949426,"id":1965,"parentId":1881,"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":null},"startTime":1775658927861,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":16743,"timestamp":6051979940247,"id":1948,"parentId":1947,"tags":{},"startTime":1775658927852,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":17561,"timestamp":6051979940211,"id":1947,"parentId":1808,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/constants.js","layer":null},"startTime":1775658927852,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":20791,"timestamp":6051979936986,"id":1943,"parentId":1942,"tags":{},"startTime":1775658927849,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":21051,"timestamp":6051979936874,"id":1942,"parentId":1704,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/react-dom/client.js","layer":null},"startTime":1775658927849,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":8250,"timestamp":6051979949709,"id":1987,"parentId":1986,"tags":{},"startTime":1775658927861,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":8259,"timestamp":6051979949701,"id":1986,"parentId":1968,"tags":{},"startTime":1775658927861,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":9050,"timestamp":6051979949479,"id":1968,"parentId":1881,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/nodeStackFrames.js","layer":null},"startTime":1775658927861,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":8840,"timestamp":6051979949700,"id":1985,"parentId":1984,"tags":{},"startTime":1775658927861,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":8846,"timestamp":6051979949694,"id":1984,"parentId":1967,"tags":{},"startTime":1775658927861,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":9522,"timestamp":6051979949461,"id":1967,"parentId":1881,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/getErrorByType.js","layer":null},"startTime":1775658927861,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":6564,"timestamp":6051979952444,"id":1999,"parentId":1998,"tags":{},"startTime":1775658927864,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":6582,"timestamp":6051979952427,"id":1998,"parentId":1997,"tags":{},"startTime":1775658927864,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":6876,"timestamp":6051979952376,"id":1997,"parentId":1906,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/modern-browserslist-target.js","layer":null},"startTime":1775658927864,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":7848,"timestamp":6051979951412,"id":1996,"parentId":1995,"tags":{},"startTime":1775658927863,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":7870,"timestamp":6051979951391,"id":1995,"parentId":1992,"tags":{},"startTime":1775658927863,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":8355,"timestamp":6051979951315,"id":1992,"parentId":1704,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/portal/index.js","layer":null},"startTime":1775658927863,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":10496,"timestamp":6051979949718,"id":1989,"parentId":1988,"tags":{},"startTime":1775658927861,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":10505,"timestamp":6051979949711,"id":1988,"parentId":1969,"tags":{},"startTime":1775658927861,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":12318,"timestamp":6051979949496,"id":1969,"parentId":1880,"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":null},"startTime":1775658927861,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":14928,"timestamp":6051979949355,"id":1961,"parentId":1960,"tags":{},"startTime":1775658927861,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":15140,"timestamp":6051979949340,"id":1960,"parentId":1880,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/dev/extract-modules-from-turbopack-message.js","layer":null},"startTime":1775658927861,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":13632,"timestamp":6051979951305,"id":1991,"parentId":1990,"tags":{},"startTime":1775658927863,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":13764,"timestamp":6051979951276,"id":1990,"parentId":1689,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/react/index.js","layer":null},"startTime":1775658927863,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":13679,"timestamp":6051979951368,"id":1994,"parentId":1993,"tags":{},"startTime":1775658927863,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":14202,"timestamp":6051979951359,"id":1993,"parentId":1793,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/helpers/interception-routes.js","layer":null},"startTime":1775658927863,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":1220,"timestamp":6051979966083,"id":2012,"parentId":2011,"tags":{},"startTime":1775658927878,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":1229,"timestamp":6051979966076,"id":2011,"parentId":2004,"tags":{},"startTime":1775658927878,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":1923,"timestamp":6051979965939,"id":2004,"parentId":1801,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/index.js","layer":null},"startTime":1775658927878,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":1805,"timestamp":6051979966091,"id":2014,"parentId":2013,"tags":{},"startTime":1775658927878,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":1813,"timestamp":6051979966085,"id":2013,"parentId":2005,"tags":{},"startTime":1775658927878,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":2545,"timestamp":6051979965960,"id":2005,"parentId":1958,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/normalized-asset-prefix.js","layer":null},"startTime":1775658927878,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":2478,"timestamp":6051979966073,"id":2010,"parentId":2009,"tags":{},"startTime":1775658927878,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":2488,"timestamp":6051979966064,"id":2009,"parentId":2003,"tags":{},"startTime":1775658927878,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":3036,"timestamp":6051979965914,"id":2003,"parentId":1922,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/parse-url.js","layer":null},"startTime":1775658927878,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":4635,"timestamp":6051979966061,"id":2008,"parentId":2007,"tags":{},"startTime":1775658927878,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":4662,"timestamp":6051979966036,"id":2007,"parentId":2002,"tags":{},"startTime":1775658927878,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":5497,"timestamp":6051979965828,"id":2002,"parentId":1922,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/app-router-headers.js","layer":null},"startTime":1775658927878,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":4448,"timestamp":6051979966915,"id":2020,"parentId":2019,"tags":{},"startTime":1775658927879,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":4461,"timestamp":6051979966903,"id":2019,"parentId":2017,"tags":{},"startTime":1775658927879,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":5043,"timestamp":6051979966831,"id":2017,"parentId":1968,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/error-source.js","layer":null},"startTime":1775658927879,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":5793,"timestamp":6051979966099,"id":2016,"parentId":2015,"tags":{},"startTime":1775658927878,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":5800,"timestamp":6051979966093,"id":2015,"parentId":2006,"tags":{},"startTime":1775658927878,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":6684,"timestamp":6051979965980,"id":2006,"parentId":1963,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/pages/ErrorBoundary.js","layer":null},"startTime":1775658927878,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":5496,"timestamp":6051979967184,"id":2032,"parentId":2031,"tags":{},"startTime":1775658927879,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":5507,"timestamp":6051979967175,"id":2031,"parentId":2025,"tags":{},"startTime":1775658927879,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":6186,"timestamp":6051979966993,"id":2025,"parentId":1963,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/ShadowPortal.js","layer":null},"startTime":1775658927879,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":6005,"timestamp":6051979967193,"id":2034,"parentId":2033,"tags":{},"startTime":1775658927879,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":6013,"timestamp":6051979967186,"id":2033,"parentId":2026,"tags":{},"startTime":1775658927879,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":6833,"timestamp":6051979967011,"id":2026,"parentId":1963,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/container/BuildError.js","layer":null},"startTime":1775658927879,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":6940,"timestamp":6051979966925,"id":2022,"parentId":2021,"tags":{},"startTime":1775658927879,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":6949,"timestamp":6051979966917,"id":2021,"parentId":2018,"tags":{},"startTime":1775658927879,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":7938,"timestamp":6051979966858,"id":2018,"parentId":1967,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/stack-frame.js","layer":null},"startTime":1775658927879,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":7583,"timestamp":6051979967224,"id":2040,"parentId":2039,"tags":{},"startTime":1775658927879,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":7591,"timestamp":6051979967218,"id":2039,"parentId":2029,"tags":{},"startTime":1775658927879,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":8086,"timestamp":6051979967138,"id":2029,"parentId":1963,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/styles/ComponentStyles.js","layer":null},"startTime":1775658927879,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":8169,"timestamp":6051979967216,"id":2038,"parentId":2037,"tags":{},"startTime":1775658927879,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":8177,"timestamp":6051979967209,"id":2037,"parentId":2028,"tags":{},"startTime":1775658927879,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":8687,"timestamp":6051979967044,"id":2028,"parentId":1963,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/styles/Base.js","layer":null},"startTime":1775658927879,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":9042,"timestamp":6051979967232,"id":2042,"parentId":2041,"tags":{},"startTime":1775658927879,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":9049,"timestamp":6051979967226,"id":2041,"parentId":2030,"tags":{},"startTime":1775658927879,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":9522,"timestamp":6051979967154,"id":2030,"parentId":1963,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/styles/CssReset.js","layer":null},"startTime":1775658927879,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":15058,"timestamp":6051979963763,"id":2001,"parentId":2000,"tags":{},"startTime":1775658927875,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":17864,"timestamp":6051979963737,"id":2000,"parentId":1885,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/react/cjs/react-jsx-runtime.development.js","layer":null},"startTime":1775658927875,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":14432,"timestamp":6051979967201,"id":2036,"parentId":2035,"tags":{},"startTime":1775658927879,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":14440,"timestamp":6051979967195,"id":2035,"parentId":2027,"tags":{},"startTime":1775658927879,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":16076,"timestamp":6051979967027,"id":2027,"parentId":1963,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/container/Errors.js","layer":null},"startTime":1775658927879,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":25742,"timestamp":6051979966986,"id":2024,"parentId":2023,"tags":{},"startTime":1775658927879,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":26105,"timestamp":6051979966975,"id":2023,"parentId":1922,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/api-utils/get-cookie-parser.js","layer":null},"startTime":1775658927879,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":1768,"timestamp":6051979992661,"id":2047,"parentId":2046,"tags":{},"startTime":1775658927904,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":1810,"timestamp":6051979992621,"id":2046,"parentId":2045,"tags":{},"startTime":1775658927904,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":2500,"timestamp":6051979992430,"id":2045,"parentId":1993,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/app-paths.js","layer":null},"startTime":1775658927904,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":4699,"timestamp":6051979992412,"id":2044,"parentId":2043,"tags":{},"startTime":1775658927904,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":10045,"timestamp":6051979992364,"id":2043,"parentId":1990,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/react/cjs/react.development.js","layer":null},"startTime":1775658927904,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":8397,"timestamp":6051979994087,"id":2058,"parentId":2057,"tags":{},"startTime":1775658927906,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":8419,"timestamp":6051979994067,"id":2057,"parentId":2052,"tags":{},"startTime":1775658927906,"traceId":"63571fab0751eb1f"}]
-[{"name":"build-module-js","duration":9601,"timestamp":6051979993742,"id":2052,"parentId":2004,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/sorted-routes.js","layer":null},"startTime":1775658927905,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":8181,"timestamp":6051979995801,"id":2061,"parentId":2060,"tags":{},"startTime":1775658927908,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":8206,"timestamp":6051979995777,"id":2060,"parentId":2059,"tags":{},"startTime":1775658927907,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":8637,"timestamp":6051979995687,"id":2059,"parentId":2026,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/noop-template.js","layer":null},"startTime":1775658927907,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":7322,"timestamp":6051979997019,"id":2071,"parentId":2070,"tags":{},"startTime":1775658927909,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":7331,"timestamp":6051979997011,"id":2070,"parentId":2064,"tags":{},"startTime":1775658927909,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":7725,"timestamp":6051979996910,"id":2064,"parentId":2029,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Overlay/styles.js","layer":null},"startTime":1775658927909,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":10904,"timestamp":6051979993736,"id":2051,"parentId":2050,"tags":{},"startTime":1775658927905,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":10992,"timestamp":6051979993727,"id":2050,"parentId":1704,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react-is/index.js","layer":null},"startTime":1775658927905,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":7720,"timestamp":6051979997008,"id":2069,"parentId":2068,"tags":{},"startTime":1775658927909,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":7731,"timestamp":6051979996999,"id":2068,"parentId":2063,"tags":{},"startTime":1775658927909,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":8144,"timestamp":6051979996883,"id":2063,"parentId":2029,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/LeftRightDialogHeader/styles.js","layer":null},"startTime":1775658927909,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":8041,"timestamp":6051979996995,"id":2067,"parentId":2066,"tags":{},"startTime":1775658927909,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":8063,"timestamp":6051979996974,"id":2066,"parentId":2062,"tags":{},"startTime":1775658927909,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":8466,"timestamp":6051979996833,"id":2062,"parentId":2029,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/CodeFrame/styles.js","layer":null},"startTime":1775658927909,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":8279,"timestamp":6051979997028,"id":2073,"parentId":2072,"tags":{},"startTime":1775658927909,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":8287,"timestamp":6051979997021,"id":2072,"parentId":2065,"tags":{},"startTime":1775658927909,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":8646,"timestamp":6051979996932,"id":2065,"parentId":2029,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Terminal/styles.js","layer":null},"startTime":1775658927909,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":11864,"timestamp":6051979993718,"id":2049,"parentId":2048,"tags":{},"startTime":1775658927905,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":12004,"timestamp":6051979993700,"id":2048,"parentId":1942,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/react-dom/index.js","layer":null},"startTime":1775658927905,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":11914,"timestamp":6051979994029,"id":2056,"parentId":2055,"tags":{},"startTime":1775658927906,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":12343,"timestamp":6051979994021,"id":2055,"parentId":1704,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_interop_require_wildcard.js","layer":null},"startTime":1775658927906,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":12383,"timestamp":6051979994014,"id":2054,"parentId":2053,"tags":{},"startTime":1775658927906,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":12785,"timestamp":6051979993776,"id":2053,"parentId":1689,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_interop_require_default.js","layer":null},"startTime":1775658927905,"traceId":"63571fab0751eb1f"},{"name":"add-entry","duration":366576,"timestamp":6051979640425,"id":1655,"parentId":1650,"tags":{"request":"next-client-pages-loader?absolutePagePath=next%2Fdist%2Fpages%2F_app&page=%2F_app!"},"startTime":1775658927552,"traceId":"63571fab0751eb1f"},{"name":"add-entry","duration":366882,"timestamp":6051979640450,"id":1661,"parentId":1650,"tags":{"request":"next-client-pages-loader?absolutePagePath=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fpages%2F_error.js&page=%2F_error!"},"startTime":1775658927552,"traceId":"63571fab0751eb1f"},{"name":"add-entry","duration":366903,"timestamp":6051979640432,"id":1657,"parentId":1650,"tags":{"request":"next-client-pages-loader?absolutePagePath=next%2Fdist%2Fpages%2F_error&page=%2F_error!"},"startTime":1775658927552,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":4535,"timestamp":6051980003910,"id":2077,"parentId":2076,"tags":{},"startTime":1775658927916,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":4555,"timestamp":6051980003892,"id":2076,"parentId":2074,"tags":{},"startTime":1775658927916,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":5145,"timestamp":6051980003810,"id":2074,"parentId":2027,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/icons/CloseIcon.js","layer":null},"startTime":1775658927916,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":5106,"timestamp":6051980003923,"id":2079,"parentId":2078,"tags":{},"startTime":1775658927916,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":5117,"timestamp":6051980003914,"id":2078,"parentId":2075,"tags":{},"startTime":1775658927916,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":6043,"timestamp":6051980003852,"id":2075,"parentId":2027,"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":null},"startTime":1775658927916,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":2133,"timestamp":6051980011366,"id":2087,"parentId":2086,"tags":{},"startTime":1775658927923,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":2147,"timestamp":6051980011356,"id":2086,"parentId":2083,"tags":{},"startTime":1775658927923,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":2565,"timestamp":6051980011243,"id":2083,"parentId":2045,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/page-path/ensure-leading-slash.js","layer":null},"startTime":1775658927923,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":2489,"timestamp":6051980011352,"id":2085,"parentId":2084,"tags":{},"startTime":1775658927923,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":2524,"timestamp":6051980011317,"id":2084,"parentId":2082,"tags":{},"startTime":1775658927923,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":2951,"timestamp":6051980011165,"id":2082,"parentId":2045,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/segment.js","layer":null},"startTime":1775658927923,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":7659,"timestamp":6051980007317,"id":2081,"parentId":2080,"tags":{},"startTime":1775658927919,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":9109,"timestamp":6051980007278,"id":2080,"parentId":1737,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/web-vitals/web-vitals.js","layer":null},"startTime":1775658927919,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":1109,"timestamp":6051980016666,"id":2094,"parentId":2093,"tags":{},"startTime":1775658927928,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":1119,"timestamp":6051980016657,"id":2093,"parentId":2089,"tags":{},"startTime":1775658927928,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":1573,"timestamp":6051980016558,"id":2089,"parentId":2026,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Terminal/index.js","layer":null},"startTime":1775658927928,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":1657,"timestamp":6051980016654,"id":2092,"parentId":2091,"tags":{},"startTime":1775658927928,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":1679,"timestamp":6051980016633,"id":2091,"parentId":2088,"tags":{},"startTime":1775658927928,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":2091,"timestamp":6051980016502,"id":2088,"parentId":2026,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Overlay/index.js","layer":null},"startTime":1775658927928,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":1590,"timestamp":6051980017450,"id":2109,"parentId":2108,"tags":{},"startTime":1775658927929,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":1600,"timestamp":6051980017441,"id":2108,"parentId":2100,"tags":{},"startTime":1775658927929,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":2005,"timestamp":6051980017330,"id":2100,"parentId":2027,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/LeftRightDialogHeader/index.js","layer":null},"startTime":1775658927929,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":1968,"timestamp":6051980017438,"id":2107,"parentId":2106,"tags":{},"startTime":1775658927929,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":1992,"timestamp":6051980017415,"id":2106,"parentId":2097,"tags":{},"startTime":1775658927929,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":2439,"timestamp":6051980017278,"id":2097,"parentId":1880,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/strip-ansi/index.js","layer":null},"startTime":1775658927929,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":2267,"timestamp":6051980017460,"id":2111,"parentId":2110,"tags":{},"startTime":1775658927929,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":2275,"timestamp":6051980017453,"id":2110,"parentId":2105,"tags":{},"startTime":1775658927929,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":2649,"timestamp":6051980017379,"id":2105,"parentId":2075,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/icons/CollapseIcon.js","layer":null},"startTime":1775658927929,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":3366,"timestamp":6051980016676,"id":2096,"parentId":2095,"tags":{},"startTime":1775658927928,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":3374,"timestamp":6051980016669,"id":2095,"parentId":2090,"tags":{},"startTime":1775658927928,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":4050,"timestamp":6051980016581,"id":2090,"parentId":2029,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/container/RuntimeError/index.js","layer":null},"startTime":1775658927928,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":4246,"timestamp":6051980017718,"id":2118,"parentId":2117,"tags":{},"startTime":1775658927929,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":4255,"timestamp":6051980017710,"id":2117,"parentId":2113,"tags":{},"startTime":1775658927929,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":4667,"timestamp":6051980017650,"id":2113,"parentId":2026,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/VersionStalenessInfo/index.js","layer":null},"startTime":1775658927929,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":4644,"timestamp":6051980017727,"id":2120,"parentId":2119,"tags":{},"startTime":1775658927929,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":4652,"timestamp":6051980017720,"id":2119,"parentId":2114,"tags":{},"startTime":1775658927929,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":5053,"timestamp":6051980017673,"id":2114,"parentId":2029,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Toast/index.js","layer":null},"startTime":1775658927929,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":5354,"timestamp":6051980017708,"id":2116,"parentId":2115,"tags":{},"startTime":1775658927929,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":5366,"timestamp":6051980017698,"id":2115,"parentId":2112,"tags":{},"startTime":1775658927929,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":5755,"timestamp":6051980017629,"id":2112,"parentId":2026,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Dialog/index.js","layer":null},"startTime":1775658927929,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":5159,"timestamp":6051980018244,"id":2123,"parentId":2122,"tags":{},"startTime":1775658927930,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":5172,"timestamp":6051980018232,"id":2122,"parentId":2121,"tags":{},"startTime":1775658927930,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":5645,"timestamp":6051980018191,"id":2121,"parentId":2027,"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":null},"startTime":1775658927930,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":8775,"timestamp":6051980017318,"id":2099,"parentId":2098,"tags":{},"startTime":1775658927929,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":10232,"timestamp":6051980017307,"id":2098,"parentId":1921,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/path-to-regexp/index.js","layer":null},"startTime":1775658927929,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":10189,"timestamp":6051980017359,"id":2102,"parentId":2101,"tags":{},"startTime":1775658927929,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":10667,"timestamp":6051980017351,"id":2101,"parentId":2050,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react-is/cjs/react-is.development.js","layer":null},"startTime":1775658927929,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":11755,"timestamp":6051980017376,"id":2104,"parentId":2103,"tags":{},"startTime":1775658927929,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":78478,"timestamp":6051980017368,"id":2103,"parentId":2048,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/react-dom/cjs/react-dom.development.js","layer":null},"startTime":1775658927929,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":4139,"timestamp":6051980099288,"id":2134,"parentId":2133,"tags":{},"startTime":1775658928011,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":4170,"timestamp":6051980099273,"id":2133,"parentId":2127,"tags":{},"startTime":1775658928011,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":6766,"timestamp":6051980098927,"id":2127,"parentId":2088,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Overlay/Overlay.js","layer":null},"startTime":1775658928011,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":9350,"timestamp":6051980099303,"id":2136,"parentId":2135,"tags":{},"startTime":1775658928011,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":9368,"timestamp":6051980099291,"id":2135,"parentId":2128,"tags":{},"startTime":1775658928011,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":10261,"timestamp":6051980098975,"id":2128,"parentId":2090,"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":null},"startTime":1775658928011,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":10149,"timestamp":6051980099268,"id":2132,"parentId":2131,"tags":{},"startTime":1775658928011,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":10199,"timestamp":6051980099220,"id":2131,"parentId":2126,"tags":{},"startTime":1775658928011,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":11520,"timestamp":6051980098792,"id":2126,"parentId":2089,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Terminal/Terminal.js","layer":null},"startTime":1775658928011,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":11019,"timestamp":6051980099317,"id":2138,"parentId":2137,"tags":{},"startTime":1775658928011,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":11032,"timestamp":6051980099306,"id":2137,"parentId":2129,"tags":{},"startTime":1775658928011,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":12144,"timestamp":6051980099006,"id":2129,"parentId":2100,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/LeftRightDialogHeader/LeftRightDialogHeader.js","layer":null},"startTime":1775658928011,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":11820,"timestamp":6051980099344,"id":2140,"parentId":2139,"tags":{},"startTime":1775658928011,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":11844,"timestamp":6051980099320,"id":2139,"parentId":2130,"tags":{},"startTime":1775658928011,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":12649,"timestamp":6051980099046,"id":2130,"parentId":2090,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/container/RuntimeError/GroupedStackFrames.js","layer":null},"startTime":1775658928011,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":11553,"timestamp":6051980100157,"id":2152,"parentId":2151,"tags":{},"startTime":1775658928012,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":11574,"timestamp":6051980100137,"id":2151,"parentId":2141,"tags":{},"startTime":1775658928012,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":12406,"timestamp":6051980099835,"id":2141,"parentId":2121,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/magic-identifier.js","layer":null},"startTime":1775658928012,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":12072,"timestamp":6051980100182,"id":2156,"parentId":2155,"tags":{},"startTime":1775658928012,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":12082,"timestamp":6051980100173,"id":2155,"parentId":2143,"tags":{},"startTime":1775658928012,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":13062,"timestamp":6051980099925,"id":2143,"parentId":2114,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Toast/Toast.js","layer":null},"startTime":1775658928012,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":12840,"timestamp":6051980100170,"id":2154,"parentId":2153,"tags":{},"startTime":1775658928012,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":12851,"timestamp":6051980100160,"id":2153,"parentId":2142,"tags":{},"startTime":1775658928012,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":13798,"timestamp":6051980099880,"id":2142,"parentId":2113,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/VersionStalenessInfo/VersionStalenessInfo.js","layer":null},"startTime":1775658928012,"traceId":"63571fab0751eb1f"}]
-[{"name":"next-swc-transform","duration":13599,"timestamp":6051980100193,"id":2158,"parentId":2157,"tags":{},"startTime":1775658928012,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":13609,"timestamp":6051980100184,"id":2157,"parentId":2144,"tags":{},"startTime":1775658928012,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":14198,"timestamp":6051980099954,"id":2144,"parentId":2113,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/VersionStalenessInfo/styles.js","layer":null},"startTime":1775658928012,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":13933,"timestamp":6051980100231,"id":2164,"parentId":2163,"tags":{},"startTime":1775658928012,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":13942,"timestamp":6051980100223,"id":2163,"parentId":2147,"tags":{},"startTime":1775658928012,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":14489,"timestamp":6051980100022,"id":2147,"parentId":2114,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Toast/styles.js","layer":null},"startTime":1775658928012,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":14303,"timestamp":6051980100221,"id":2162,"parentId":2161,"tags":{},"startTime":1775658928012,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":14312,"timestamp":6051980100212,"id":2161,"parentId":2146,"tags":{},"startTime":1775658928012,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":14883,"timestamp":6051980100000,"id":2146,"parentId":2112,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Dialog/DialogBody.js","layer":null},"startTime":1775658928012,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":14651,"timestamp":6051980100242,"id":2166,"parentId":2165,"tags":{},"startTime":1775658928012,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":14660,"timestamp":6051980100233,"id":2165,"parentId":2148,"tags":{},"startTime":1775658928012,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":15175,"timestamp":6051980100048,"id":2148,"parentId":2112,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Dialog/DialogContent.js","layer":null},"startTime":1775658928012,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":15738,"timestamp":6051980100209,"id":2160,"parentId":2159,"tags":{},"startTime":1775658928012,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":15752,"timestamp":6051980100197,"id":2159,"parentId":2145,"tags":{},"startTime":1775658928012,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":16515,"timestamp":6051980099976,"id":2145,"parentId":2112,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Dialog/Dialog.js","layer":null},"startTime":1775658928012,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":16237,"timestamp":6051980100263,"id":2170,"parentId":2169,"tags":{},"startTime":1775658928012,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":16247,"timestamp":6051980100254,"id":2169,"parentId":2150,"tags":{},"startTime":1775658928012,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":16733,"timestamp":6051980100095,"id":2150,"parentId":2112,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Dialog/styles.js","layer":null},"startTime":1775658928012,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":16585,"timestamp":6051980100252,"id":2168,"parentId":2167,"tags":{},"startTime":1775658928012,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":16594,"timestamp":6051980100244,"id":2167,"parentId":2149,"tags":{},"startTime":1775658928012,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":17113,"timestamp":6051980100072,"id":2149,"parentId":2112,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Dialog/DialogHeader.js","layer":null},"startTime":1775658928012,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":96250,"timestamp":6051980028719,"id":2125,"parentId":2124,"tags":{},"startTime":1775658927940,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":97079,"timestamp":6051980028691,"id":2124,"parentId":1964,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/stacktrace-parser/stack-trace-parser.cjs.js","layer":null},"startTime":1775658927940,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":2714,"timestamp":6051980133001,"id":2178,"parentId":2177,"tags":{},"startTime":1775658928045,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":2732,"timestamp":6051980132989,"id":2177,"parentId":2174,"tags":{},"startTime":1775658928045,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":4693,"timestamp":6051980132891,"id":2174,"parentId":2127,"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":null},"startTime":1775658928045,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":2424,"timestamp":6051980135272,"id":2187,"parentId":2186,"tags":{},"startTime":1775658928047,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":2436,"timestamp":6051980135262,"id":2186,"parentId":2181,"tags":{},"startTime":1775658928047,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":3202,"timestamp":6051980135166,"id":2181,"parentId":2130,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/container/RuntimeError/CallStackFrame.js","layer":null},"startTime":1775658928047,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":3126,"timestamp":6051980135259,"id":2185,"parentId":2184,"tags":{},"startTime":1775658928047,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":3140,"timestamp":6051980135247,"id":2184,"parentId":2180,"tags":{},"startTime":1775658928047,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":3749,"timestamp":6051980135127,"id":2180,"parentId":2126,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Terminal/EditorLink.js","layer":null},"startTime":1775658928047,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":6158,"timestamp":6051980135242,"id":2183,"parentId":2182,"tags":{},"startTime":1775658928047,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":6197,"timestamp":6051980135209,"id":2182,"parentId":2179,"tags":{},"startTime":1775658928047,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":7259,"timestamp":6051980135028,"id":2179,"parentId":2130,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/icons/FrameworkIcon.js","layer":null},"startTime":1775658928047,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":13601,"timestamp":6051980132184,"id":2172,"parentId":2171,"tags":{},"startTime":1775658928044,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":14278,"timestamp":6051980132129,"id":2171,"parentId":2026,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_tagged_template_literal_loose.js","layer":null},"startTime":1775658928044,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":5719,"timestamp":6051980140712,"id":2193,"parentId":2192,"tags":{},"startTime":1775658928052,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":5736,"timestamp":6051980140696,"id":2192,"parentId":2189,"tags":{},"startTime":1775658928052,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":6362,"timestamp":6051980140449,"id":2189,"parentId":2090,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/CodeFrame/index.js","layer":null},"startTime":1775658928052,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":6136,"timestamp":6051980140689,"id":2191,"parentId":2190,"tags":{},"startTime":1775658928052,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":6273,"timestamp":6051980140552,"id":2190,"parentId":2188,"tags":{},"startTime":1775658928052,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":6770,"timestamp":6051980140350,"id":2188,"parentId":2145,"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":null},"startTime":1775658928052,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":3352,"timestamp":6051980145750,"id":2195,"parentId":2194,"tags":{},"startTime":1775658928057,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":3827,"timestamp":6051980145714,"id":2194,"parentId":2023,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/cookie/index.js","layer":null},"startTime":1775658928057,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":1582,"timestamp":6051980148612,"id":2198,"parentId":2197,"tags":{},"startTime":1775658928060,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":1615,"timestamp":6051980148583,"id":2197,"parentId":2196,"tags":{},"startTime":1775658928060,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":2224,"timestamp":6051980148500,"id":2196,"parentId":2181,"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":null},"startTime":1775658928060,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":2122,"timestamp":6051980148812,"id":2201,"parentId":2200,"tags":{},"startTime":1775658928061,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":2138,"timestamp":6051980148798,"id":2200,"parentId":2199,"tags":{},"startTime":1775658928061,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":2864,"timestamp":6051980148764,"id":2199,"parentId":2189,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/CodeFrame/CodeFrame.js","layer":null},"startTime":1775658928060,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":20729,"timestamp":6051980132984,"id":2176,"parentId":2175,"tags":{},"startTime":1775658928045,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":20762,"timestamp":6051980132953,"id":2175,"parentId":2173,"tags":{},"startTime":1775658928045,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":26259,"timestamp":6051980132815,"id":2173,"parentId":2127,"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":null},"startTime":1775658928045,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":372,"timestamp":6051980161314,"id":2203,"parentId":2202,"tags":{},"startTime":1775658928073,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":1671,"timestamp":6051980161270,"id":2202,"parentId":2126,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/anser/index.js","layer":null},"startTime":1775658928073,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1633,"timestamp":6051980161342,"id":2205,"parentId":2204,"tags":{},"startTime":1775658928073,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":1746,"timestamp":6051980161330,"id":2204,"parentId":2103,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/scheduler/index.js","layer":null},"startTime":1775658928073,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":442,"timestamp":6051980163444,"id":2207,"parentId":2206,"tags":{},"startTime":1775658928075,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":1443,"timestamp":6051980163423,"id":2206,"parentId":2204,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/scheduler/cjs/scheduler.development.js","layer":null},"startTime":1775658928075,"traceId":"63571fab0751eb1f"},{"name":"add-entry","duration":524480,"timestamp":6051979640429,"id":1656,"parentId":1650,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/router.js"},"startTime":1775658927552,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1348,"timestamp":6051980163850,"id":2209,"parentId":2208,"tags":{},"startTime":1775658928076,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":1653,"timestamp":6051980163837,"id":2208,"parentId":2173,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/css.escape/css.escape.js","layer":null},"startTime":1775658928076,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1640,"timestamp":6051980163878,"id":2211,"parentId":2210,"tags":{},"startTime":1775658928076,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":4437,"timestamp":6051980163868,"id":2210,"parentId":2173,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/platform/platform.js","layer":null},"startTime":1775658928076,"traceId":"63571fab0751eb1f"},{"name":"add-entry","duration":527942,"timestamp":6051979640395,"id":1652,"parentId":1650,"tags":{"request":"./node_modules/next/dist/client/next-dev.js"},"startTime":1775658927552,"traceId":"63571fab0751eb1f"},{"name":"make","duration":540817,"timestamp":6051979627540,"id":1650,"parentId":1649,"tags":{},"startTime":1775658927539,"traceId":"63571fab0751eb1f"},{"name":"chunk-graph","duration":1733,"timestamp":6051980171627,"id":2213,"parentId":2212,"tags":{},"startTime":1775658928083,"traceId":"63571fab0751eb1f"},{"name":"optimize-modules","duration":3,"timestamp":6051980173374,"id":2215,"parentId":2212,"tags":{},"startTime":1775658928085,"traceId":"63571fab0751eb1f"},{"name":"optimize-chunks","duration":50,"timestamp":6051980173387,"id":2216,"parentId":2212,"tags":{},"startTime":1775658928085,"traceId":"63571fab0751eb1f"},{"name":"optimize-tree","duration":4,"timestamp":6051980173451,"id":2217,"parentId":2212,"tags":{},"startTime":1775658928085,"traceId":"63571fab0751eb1f"},{"name":"optimize-chunk-modules","duration":3,"timestamp":6051980173473,"id":2218,"parentId":2212,"tags":{},"startTime":1775658928085,"traceId":"63571fab0751eb1f"},{"name":"optimize","duration":852,"timestamp":6051980173369,"id":2214,"parentId":2212,"tags":{},"startTime":1775658928085,"traceId":"63571fab0751eb1f"},{"name":"module-hash","duration":3544,"timestamp":6051980175167,"id":2219,"parentId":2212,"tags":{},"startTime":1775658928087,"traceId":"63571fab0751eb1f"},{"name":"code-generation","duration":4330,"timestamp":6051980178729,"id":2220,"parentId":2212,"tags":{},"startTime":1775658928090,"traceId":"63571fab0751eb1f"},{"name":"hash","duration":5076,"timestamp":6051980184286,"id":2221,"parentId":2212,"tags":{},"startTime":1775658928096,"traceId":"63571fab0751eb1f"},{"name":"code-generation-jobs","duration":118,"timestamp":6051980189361,"id":2222,"parentId":2212,"tags":{},"startTime":1775658928101,"traceId":"63571fab0751eb1f"},{"name":"module-assets","duration":68,"timestamp":6051980189469,"id":2223,"parentId":2212,"tags":{},"startTime":1775658928101,"traceId":"63571fab0751eb1f"},{"name":"create-chunk-assets","duration":65096,"timestamp":6051980189540,"id":2224,"parentId":2212,"tags":{},"startTime":1775658928101,"traceId":"63571fab0751eb1f"},{"name":"NextJsBuildManifest-generateClientManifest","duration":102,"timestamp":6051980255473,"id":2226,"parentId":1649,"tags":{},"startTime":1775658928167,"traceId":"63571fab0751eb1f"},{"name":"NextJsBuildManifest-createassets","duration":182,"timestamp":6051980255395,"id":2225,"parentId":1649,"tags":{},"startTime":1775658928167,"traceId":"63571fab0751eb1f"},{"name":"seal","duration":86224,"timestamp":6051980170761,"id":2212,"parentId":1649,"tags":{},"startTime":1775658928082,"traceId":"63571fab0751eb1f"},{"name":"webpack-compilation","duration":634591,"timestamp":6051979622418,"id":1649,"parentId":1646,"tags":{"name":"client"},"startTime":1775658927534,"traceId":"63571fab0751eb1f"},{"name":"emit","duration":18798,"timestamp":6051980257032,"id":2227,"parentId":1646,"tags":{},"startTime":1775658928169,"traceId":"63571fab0751eb1f"},{"name":"webpack-invalidated-client","duration":680026,"timestamp":6051979596698,"id":1646,"parentId":3,"tags":{"trigger":"manual"},"startTime":1775658927508,"traceId":"63571fab0751eb1f"},{"name":"client-success","duration":7,"timestamp":6051980280901,"id":2230,"parentId":3,"tags":{},"startTime":1775658928193,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":2906,"timestamp":6051980284906,"id":2240,"parentId":2239,"tags":{},"startTime":1775658928197,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":2943,"timestamp":6051980284873,"id":2239,"parentId":2238,"tags":{},"startTime":1775658928197,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":3937,"timestamp":6051980284538,"id":2238,"parentId":2231,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/pages/_app.js","layer":null},"startTime":1775658928196,"traceId":"63571fab0751eb1f"},{"name":"add-entry","duration":11224,"timestamp":6051980281460,"id":2236,"parentId":2229,"tags":{"request":"next-app-loader?name=app%2Fpage&page=%2Fpage&appPaths=%2Fpage&pagePath=private-next-app-dir%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":1775658928193,"traceId":"63571fab0751eb1f"},{"name":"build-module","duration":121,"timestamp":6051980293255,"id":2241,"parentId":2238,"tags":{"name":"react/jsx-runtime","layer":null},"startTime":1775658928205,"traceId":"63571fab0751eb1f"},{"name":"build-module","duration":6,"timestamp":6051980293382,"id":2242,"parentId":2238,"tags":{"name":"react","layer":null},"startTime":1775658928205,"traceId":"63571fab0751eb1f"},{"name":"add-entry","duration":12524,"timestamp":6051980281455,"id":2234,"parentId":2229,"tags":{"request":"next-app-loader?name=app%2F_not-found%2Fpage&page=%2F_not-found%2Fpage&appPaths=&pagePath=..%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fnot-found-error.js&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":1775658928193,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":1979,"timestamp":6051980293539,"id":2245,"parentId":2244,"tags":{},"startTime":1775658928205,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":2009,"timestamp":6051980293511,"id":2244,"parentId":2243,"tags":{},"startTime":1775658928205,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":2846,"timestamp":6051980293391,"id":2243,"parentId":2238,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/utils.js","layer":null},"startTime":1775658928205,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1555,"timestamp":6051980294741,"id":2247,"parentId":2246,"tags":{},"startTime":1775658928206,"traceId":"63571fab0751eb1f"},{"name":"build-module-cjs","duration":2149,"timestamp":6051980294549,"id":2246,"parentId":2238,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/cjs/_interop_require_default.cjs","layer":null},"startTime":1775658928206,"traceId":"63571fab0751eb1f"},{"name":"add-entry","duration":15305,"timestamp":6051980281420,"id":2231,"parentId":2229,"tags":{"request":"next/dist/pages/_app"},"startTime":1775658928193,"traceId":"63571fab0751eb1f"},{"name":"build-module","duration":2653,"timestamp":6051980295114,"id":2251,"parentId":2232,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-route-loader/index.js?kind=PAGES&page=%2F_error&preferredRegion=&absolutePagePath=next%2Fdist%2Fpages%2F_error&absoluteAppPath=next%2Fdist%2Fpages%2F_app&absoluteDocumentPath=next%2Fdist%2Fpages%2F_document&middlewareConfigBase64=e30%3D!","layer":null},"startTime":1775658928207,"traceId":"63571fab0751eb1f"},{"name":"build-module","duration":3880,"timestamp":6051980295421,"id":2252,"parentId":2235,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-route-loader/index.js?kind=PAGES&page=%2F_error&preferredRegion=&absolutePagePath=.%2Fnode_modules%2Fnext%2Fdist%2Fpages%2F_error.js&absoluteAppPath=next%2Fdist%2Fpages%2F_app&absoluteDocumentPath=next%2Fdist%2Fpages%2F_document&middlewareConfigBase64=e30%3D!","layer":null},"startTime":1775658928207,"traceId":"63571fab0751eb1f"}]
-[{"name":"next-swc-transform","duration":1625,"timestamp":6051980300368,"id":2255,"parentId":2254,"tags":{},"startTime":1775658928212,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":1671,"timestamp":6051980300327,"id":2254,"parentId":2253,"tags":{},"startTime":1775658928212,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":2346,"timestamp":6051980300217,"id":2253,"parentId":2251,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/pages/_error.js","layer":null},"startTime":1775658928212,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":8309,"timestamp":6051980294798,"id":2250,"parentId":2249,"tags":{},"startTime":1775658928207,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":8329,"timestamp":6051980294780,"id":2249,"parentId":2248,"tags":{},"startTime":1775658928206,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":13729,"timestamp":6051980294751,"id":2248,"parentId":2233,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/pages/_document.js","layer":null},"startTime":1775658928206,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":7950,"timestamp":6051980301536,"id":2257,"parentId":2256,"tags":{},"startTime":1775658928213,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":8128,"timestamp":6051980301515,"id":2256,"parentId":2251,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/route-kind.js","layer":null},"startTime":1775658928213,"traceId":"63571fab0751eb1f"},{"name":"client-hmr-latency","duration":697000,"timestamp":6051979606848,"id":2260,"parentId":3,"tags":{"updatedModules":["[project]/src/app/globals.css"],"page":"/","isPageHidden":false},"startTime":1775658928222,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":25,"timestamp":6051980310188,"id":2267,"parentId":2266,"tags":{},"startTime":1775658928222,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":321,"timestamp":6051980310169,"id":2266,"parentId":2248,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/is-error.js","layer":null},"startTime":1775658928222,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":8567,"timestamp":6051980302730,"id":2259,"parentId":2258,"tags":{},"startTime":1775658928214,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":8722,"timestamp":6051980302691,"id":2258,"parentId":2251,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/templates/helpers.js","layer":null},"startTime":1775658928214,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":3100,"timestamp":6051980309991,"id":2265,"parentId":2264,"tags":{},"startTime":1775658928222,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":3127,"timestamp":6051980309968,"id":2264,"parentId":2261,"tags":{},"startTime":1775658928222,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":3994,"timestamp":6051980309880,"id":2261,"parentId":2253,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/head.js","layer":null},"startTime":1775658928222,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":3379,"timestamp":6051980310514,"id":2270,"parentId":2269,"tags":{},"startTime":1775658928222,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":3396,"timestamp":6051980310497,"id":2269,"parentId":2268,"tags":{},"startTime":1775658928222,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":4351,"timestamp":6051980310191,"id":2268,"parentId":2248,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/constants.js","layer":null},"startTime":1775658928222,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":1934,"timestamp":6051980315404,"id":2281,"parentId":2280,"tags":{},"startTime":1775658928227,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":1973,"timestamp":6051980315368,"id":2280,"parentId":2277,"tags":{},"startTime":1775658928227,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":2407,"timestamp":6051980315166,"id":2277,"parentId":2248,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/encode-uri-path.js","layer":null},"startTime":1775658928227,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":7887,"timestamp":6051980309946,"id":2263,"parentId":2262,"tags":{},"startTime":1775658928222,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":8063,"timestamp":6051980309931,"id":2262,"parentId":2251,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/route-modules/pages/module.compiled.js","layer":null},"startTime":1775658928222,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":1267,"timestamp":6051980317746,"id":2284,"parentId":2283,"tags":{},"startTime":1775658928229,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":1298,"timestamp":6051980317716,"id":2283,"parentId":2282,"tags":{},"startTime":1775658928229,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":1642,"timestamp":6051980317619,"id":2282,"parentId":2266,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/is-plain-object.js","layer":null},"startTime":1775658928229,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":20,"timestamp":6051980319379,"id":2299,"parentId":2262,"tags":{"name":"next/dist/compiled/next-server/pages.runtime.dev.js","layer":null},"startTime":1775658928231,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":934,"timestamp":6051980318841,"id":2296,"parentId":2295,"tags":{},"startTime":1775658928231,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":952,"timestamp":6051980318828,"id":2295,"parentId":2288,"tags":{},"startTime":1775658928231,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":1326,"timestamp":6051980318715,"id":2288,"parentId":2261,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/utils/warn-once.js","layer":null},"startTime":1775658928230,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":5035,"timestamp":6051980315077,"id":2272,"parentId":2271,"tags":{},"startTime":1775658928227,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":5337,"timestamp":6051980315033,"id":2271,"parentId":2248,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/get-page-files.js","layer":null},"startTime":1775658928227,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":5218,"timestamp":6051980315158,"id":2276,"parentId":2275,"tags":{},"startTime":1775658928227,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":5559,"timestamp":6051980315117,"id":2275,"parentId":2248,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/htmlescape.js","layer":null},"startTime":1775658928227,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":5573,"timestamp":6051980315108,"id":2274,"parentId":2273,"tags":{},"startTime":1775658928227,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":6746,"timestamp":6051980315091,"id":2273,"parentId":2248,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/utils.js","layer":null},"startTime":1775658928227,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":3064,"timestamp":6051980318795,"id":2290,"parentId":2289,"tags":{},"startTime":1775658928231,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":3090,"timestamp":6051980318770,"id":2289,"parentId":2285,"tags":{},"startTime":1775658928230,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":3688,"timestamp":6051980318534,"id":2285,"parentId":2261,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/side-effect.js","layer":null},"startTime":1775658928230,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":6996,"timestamp":6051980315235,"id":2279,"parentId":2278,"tags":{},"startTime":1775658928227,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":7311,"timestamp":6051980315223,"id":2278,"parentId":2248,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/pretty-bytes.js","layer":null},"startTime":1775658928227,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":3727,"timestamp":6051980318825,"id":2294,"parentId":2293,"tags":{},"startTime":1775658928231,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":3739,"timestamp":6051980318815,"id":2293,"parentId":2287,"tags":{},"startTime":1775658928231,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":3950,"timestamp":6051980318684,"id":2287,"parentId":2268,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/modern-browserslist-target.js","layer":null},"startTime":1775658928230,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":3831,"timestamp":6051980318812,"id":2292,"parentId":2291,"tags":{},"startTime":1775658928231,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":3846,"timestamp":6051980318799,"id":2291,"parentId":2286,"tags":{},"startTime":1775658928231,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":4120,"timestamp":6051980318639,"id":2286,"parentId":2261,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/amp-mode.js","layer":null},"startTime":1775658928230,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":4906,"timestamp":6051980319344,"id":2298,"parentId":2297,"tags":{},"startTime":1775658928231,"traceId":"63571fab0751eb1f"},{"name":"build-module-cjs","duration":5379,"timestamp":6051980319317,"id":2297,"parentId":2261,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/cjs/_interop_require_wildcard.cjs","layer":null},"startTime":1775658928231,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":1017,"timestamp":6051980323770,"id":2302,"parentId":2301,"tags":{},"startTime":1775658928235,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":1049,"timestamp":6051980323740,"id":2301,"parentId":2300,"tags":{},"startTime":1775658928235,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":1317,"timestamp":6051980323667,"id":2300,"parentId":2271,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/page-path/denormalize-page-path.js","layer":null},"startTime":1775658928235,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":1388,"timestamp":6051980324218,"id":2305,"parentId":2304,"tags":{},"startTime":1775658928236,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":1409,"timestamp":6051980324199,"id":2304,"parentId":2303,"tags":{},"startTime":1775658928236,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":1740,"timestamp":6051980324159,"id":2303,"parentId":2271,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/page-path/normalize-page-path.js","layer":null},"startTime":1775658928236,"traceId":"63571fab0751eb1f"},{"name":"build-module","duration":17,"timestamp":6051980327516,"id":2312,"parentId":2303,"tags":{"name":"path","layer":null},"startTime":1775658928239,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":1033,"timestamp":6051980327383,"id":2309,"parentId":2308,"tags":{},"startTime":1775658928239,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":1064,"timestamp":6051980327354,"id":2308,"parentId":2306,"tags":{},"startTime":1775658928239,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":1398,"timestamp":6051980327232,"id":2306,"parentId":2300,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/page-path/normalize-path-sep.js","layer":null},"startTime":1775658928239,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":1238,"timestamp":6051980327402,"id":2311,"parentId":2310,"tags":{},"startTime":1775658928239,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":1253,"timestamp":6051980327388,"id":2310,"parentId":2307,"tags":{},"startTime":1775658928239,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":1517,"timestamp":6051980327303,"id":2307,"parentId":2300,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/index.js","layer":null},"startTime":1775658928239,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":1241,"timestamp":6051980327588,"id":2315,"parentId":2314,"tags":{},"startTime":1775658928239,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":1256,"timestamp":6051980327574,"id":2314,"parentId":2313,"tags":{},"startTime":1775658928239,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":1390,"timestamp":6051980327540,"id":2313,"parentId":2303,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/page-path/ensure-leading-slash.js","layer":null},"startTime":1775658928239,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1030,"timestamp":6051980329043,"id":2317,"parentId":2316,"tags":{},"startTime":1775658928241,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":1154,"timestamp":6051980329017,"id":2316,"parentId":2248,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/route-modules/pages/vendored/contexts/html-context.js","layer":null},"startTime":1775658928241,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1088,"timestamp":6051980329092,"id":2321,"parentId":2320,"tags":{},"startTime":1775658928241,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":1146,"timestamp":6051980329080,"id":2320,"parentId":2261,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/route-modules/pages/vendored/contexts/head-manager-context.js","layer":null},"startTime":1775658928241,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":1450,"timestamp":6051980329769,"id":2327,"parentId":2326,"tags":{},"startTime":1775658928241,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":1467,"timestamp":6051980329754,"id":2326,"parentId":2323,"tags":{},"startTime":1775658928241,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":1726,"timestamp":6051980329700,"id":2323,"parentId":2307,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/is-dynamic.js","layer":null},"startTime":1775658928241,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":1700,"timestamp":6051980329750,"id":2325,"parentId":2324,"tags":{},"startTime":1775658928241,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":1725,"timestamp":6051980329726,"id":2324,"parentId":2322,"tags":{},"startTime":1775658928241,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":2513,"timestamp":6051980329659,"id":2322,"parentId":2307,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/sorted-routes.js","layer":null},"startTime":1775658928241,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":3450,"timestamp":6051980329072,"id":2319,"parentId":2318,"tags":{},"startTime":1775658928241,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":3518,"timestamp":6051980329058,"id":2318,"parentId":2261,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/route-modules/pages/vendored/contexts/amp-context.js","layer":null},"startTime":1775658928241,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":3,"timestamp":6051980332770,"id":2329,"parentId":2328,"tags":{},"startTime":1775658928244,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":551,"timestamp":6051980332739,"id":2328,"parentId":2323,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/helpers/interception-routes.js","layer":null},"startTime":1775658928244,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":698,"timestamp":6051980333835,"id":2332,"parentId":2331,"tags":{},"startTime":1775658928246,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":725,"timestamp":6051980333810,"id":2331,"parentId":2330,"tags":{},"startTime":1775658928246,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":1120,"timestamp":6051980333764,"id":2330,"parentId":2328,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/app-paths.js","layer":null},"startTime":1775658928245,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":449,"timestamp":6051980335705,"id":2335,"parentId":2334,"tags":{},"startTime":1775658928247,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":477,"timestamp":6051980335678,"id":2334,"parentId":2333,"tags":{},"startTime":1775658928247,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":741,"timestamp":6051980335618,"id":2333,"parentId":2330,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/segment.js","layer":null},"startTime":1775658928247,"traceId":"63571fab0751eb1f"},{"name":"add-entry","duration":55013,"timestamp":6051980281453,"id":2233,"parentId":2229,"tags":{"request":"next/dist/pages/_document"},"startTime":1775658928193,"traceId":"63571fab0751eb1f"},{"name":"add-entry","duration":55020,"timestamp":6051980281450,"id":2232,"parentId":2229,"tags":{"request":"next-route-loader?kind=PAGES&page=%2F_error&preferredRegion=&absolutePagePath=next%2Fdist%2Fpages%2F_error&absoluteAppPath=next%2Fdist%2Fpages%2F_app&absoluteDocumentPath=next%2Fdist%2Fpages%2F_document&middlewareConfigBase64=e30%3D!"},"startTime":1775658928193,"traceId":"63571fab0751eb1f"},{"name":"add-entry","duration":55013,"timestamp":6051980281458,"id":2235,"parentId":2229,"tags":{"request":"next-route-loader?kind=PAGES&page=%2F_error&preferredRegion=&absolutePagePath=.%2Fnode_modules%2Fnext%2Fdist%2Fpages%2F_error.js&absoluteAppPath=next%2Fdist%2Fpages%2F_app&absoluteDocumentPath=next%2Fdist%2Fpages%2F_document&middlewareConfigBase64=e30%3D!"},"startTime":1775658928193,"traceId":"63571fab0751eb1f"},{"name":"make","duration":68902,"timestamp":6051980278273,"id":2229,"parentId":2228,"tags":{},"startTime":1775658928190,"traceId":"63571fab0751eb1f"},{"name":"chunk-graph","duration":1285,"timestamp":6051980349160,"id":2342,"parentId":2341,"tags":{},"startTime":1775658928261,"traceId":"63571fab0751eb1f"},{"name":"optimize-modules","duration":3,"timestamp":6051980350462,"id":2344,"parentId":2341,"tags":{},"startTime":1775658928262,"traceId":"63571fab0751eb1f"},{"name":"optimize-chunks","duration":1355,"timestamp":6051980350477,"id":2345,"parentId":2341,"tags":{},"startTime":1775658928262,"traceId":"63571fab0751eb1f"},{"name":"optimize-tree","duration":32,"timestamp":6051980351846,"id":2346,"parentId":2341,"tags":{},"startTime":1775658928264,"traceId":"63571fab0751eb1f"},{"name":"optimize-chunk-modules","duration":3,"timestamp":6051980351896,"id":2347,"parentId":2341,"tags":{},"startTime":1775658928264,"traceId":"63571fab0751eb1f"},{"name":"optimize","duration":1980,"timestamp":6051980350457,"id":2343,"parentId":2341,"tags":{},"startTime":1775658928262,"traceId":"63571fab0751eb1f"},{"name":"module-hash","duration":628,"timestamp":6051980353376,"id":2348,"parentId":2341,"tags":{},"startTime":1775658928265,"traceId":"63571fab0751eb1f"},{"name":"code-generation","duration":2386,"timestamp":6051980354015,"id":2349,"parentId":2341,"tags":{},"startTime":1775658928266,"traceId":"63571fab0751eb1f"},{"name":"hash","duration":1062,"timestamp":6051980357541,"id":2350,"parentId":2341,"tags":{},"startTime":1775658928269,"traceId":"63571fab0751eb1f"},{"name":"code-generation-jobs","duration":58,"timestamp":6051980358603,"id":2351,"parentId":2341,"tags":{},"startTime":1775658928270,"traceId":"63571fab0751eb1f"},{"name":"module-assets","duration":58,"timestamp":6051980358652,"id":2352,"parentId":2341,"tags":{},"startTime":1775658928270,"traceId":"63571fab0751eb1f"}]
-[{"name":"create-chunk-assets","duration":9863,"timestamp":6051980358846,"id":2353,"parentId":2341,"tags":{},"startTime":1775658928271,"traceId":"63571fab0751eb1f"},{"name":"seal","duration":27073,"timestamp":6051980348544,"id":2341,"parentId":2228,"tags":{},"startTime":1775658928260,"traceId":"63571fab0751eb1f"},{"name":"webpack-compilation","duration":99832,"timestamp":6051980277996,"id":2228,"parentId":1648,"tags":{"name":"server"},"startTime":1775658928190,"traceId":"63571fab0751eb1f"},{"name":"emit","duration":4976,"timestamp":6051980377874,"id":2354,"parentId":1648,"tags":{},"startTime":1775658928290,"traceId":"63571fab0751eb1f"},{"name":"compile-path","duration":786934,"timestamp":6051979596914,"id":1647,"tags":{"trigger":"/_error","isTurbopack":false},"startTime":1775658927509,"traceId":"63571fab0751eb1f"},{"name":"webpack-invalidated-server","duration":587,"timestamp":6051980383458,"id":2355,"parentId":3,"tags":{"trigger":"manual"},"startTime":1775658928295,"traceId":"63571fab0751eb1f"}]
-[{"name":"add-entry","duration":5111,"timestamp":6051980388130,"id":2363,"parentId":2357,"tags":{"request":"next-app-loader?name=app%2Fpage&page=%2Fpage&appPaths=%2Fpage&pagePath=private-next-app-dir%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":1775658928300,"traceId":"63571fab0751eb1f"},{"name":"add-entry","duration":5362,"timestamp":6051980388124,"id":2360,"parentId":2357,"tags":{"request":"next/dist/pages/_document"},"startTime":1775658928300,"traceId":"63571fab0751eb1f"},{"name":"add-entry","duration":5492,"timestamp":6051980388091,"id":2358,"parentId":2357,"tags":{"request":"next/dist/pages/_app"},"startTime":1775658928300,"traceId":"63571fab0751eb1f"},{"name":"add-entry","duration":5459,"timestamp":6051980388126,"id":2361,"parentId":2357,"tags":{"request":"next-app-loader?name=app%2F_not-found%2Fpage&page=%2F_not-found%2Fpage&appPaths=&pagePath=..%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fnot-found-error.js&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":1775658928300,"traceId":"63571fab0751eb1f"},{"name":"add-entry","duration":5625,"timestamp":6051980388120,"id":2359,"parentId":2357,"tags":{"request":"next-route-loader?kind=PAGES&page=%2F_error&preferredRegion=&absolutePagePath=next%2Fdist%2Fpages%2F_error&absoluteAppPath=next%2Fdist%2Fpages%2F_app&absoluteDocumentPath=next%2Fdist%2Fpages%2F_document&middlewareConfigBase64=e30%3D!"},"startTime":1775658928300,"traceId":"63571fab0751eb1f"},{"name":"add-entry","duration":5619,"timestamp":6051980388128,"id":2362,"parentId":2357,"tags":{"request":"next-route-loader?kind=PAGES&page=%2F_error&preferredRegion=&absolutePagePath=.%2Fnode_modules%2Fnext%2Fdist%2Fpages%2F_error.js&absoluteAppPath=next%2Fdist%2Fpages%2F_app&absoluteDocumentPath=next%2Fdist%2Fpages%2F_document&middlewareConfigBase64=e30%3D!"},"startTime":1775658928300,"traceId":"63571fab0751eb1f"},{"name":"make","duration":14608,"timestamp":6051980385529,"id":2357,"parentId":2356,"tags":{},"startTime":1775658928297,"traceId":"63571fab0751eb1f"},{"name":"chunk-graph","duration":751,"timestamp":6051980401426,"id":2370,"parentId":2369,"tags":{},"startTime":1775658928313,"traceId":"63571fab0751eb1f"},{"name":"optimize-modules","duration":3,"timestamp":6051980402190,"id":2372,"parentId":2369,"tags":{},"startTime":1775658928314,"traceId":"63571fab0751eb1f"},{"name":"optimize-chunks","duration":1004,"timestamp":6051980402244,"id":2373,"parentId":2369,"tags":{},"startTime":1775658928314,"traceId":"63571fab0751eb1f"},{"name":"optimize-tree","duration":3,"timestamp":6051980403260,"id":2374,"parentId":2369,"tags":{},"startTime":1775658928315,"traceId":"63571fab0751eb1f"},{"name":"optimize-chunk-modules","duration":2,"timestamp":6051980403271,"id":2375,"parentId":2369,"tags":{},"startTime":1775658928315,"traceId":"63571fab0751eb1f"},{"name":"optimize","duration":1364,"timestamp":6051980402187,"id":2371,"parentId":2369,"tags":{},"startTime":1775658928314,"traceId":"63571fab0751eb1f"},{"name":"module-hash","duration":190,"timestamp":6051980404257,"id":2376,"parentId":2369,"tags":{},"startTime":1775658928316,"traceId":"63571fab0751eb1f"},{"name":"code-generation","duration":682,"timestamp":6051980404453,"id":2377,"parentId":2369,"tags":{},"startTime":1775658928316,"traceId":"63571fab0751eb1f"},{"name":"hash","duration":817,"timestamp":6051980405939,"id":2378,"parentId":2369,"tags":{},"startTime":1775658928318,"traceId":"63571fab0751eb1f"},{"name":"code-generation-jobs","duration":36,"timestamp":6051980406756,"id":2379,"parentId":2369,"tags":{},"startTime":1775658928318,"traceId":"63571fab0751eb1f"},{"name":"module-assets","duration":31,"timestamp":6051980406786,"id":2380,"parentId":2369,"tags":{},"startTime":1775658928318,"traceId":"63571fab0751eb1f"},{"name":"create-chunk-assets","duration":97,"timestamp":6051980406820,"id":2381,"parentId":2369,"tags":{},"startTime":1775658928319,"traceId":"63571fab0751eb1f"},{"name":"seal","duration":7499,"timestamp":6051980400889,"id":2369,"parentId":2356,"tags":{},"startTime":1775658928313,"traceId":"63571fab0751eb1f"},{"name":"webpack-compilation","duration":25216,"timestamp":6051980385277,"id":2356,"parentId":3,"tags":{"name":"server"},"startTime":1775658928297,"traceId":"63571fab0751eb1f"},{"name":"emit","duration":2537,"timestamp":6051980410508,"id":2382,"parentId":3,"tags":{},"startTime":1775658928322,"traceId":"63571fab0751eb1f"},{"name":"handle-request","duration":863266,"timestamp":6051979581794,"id":1645,"tags":{"url":"/api/recommendations/refresh?scan_session=manual","isTurbopack":false},"startTime":1775658927494,"traceId":"63571fab0751eb1f"},{"name":"memory-usage","duration":0,"timestamp":6051980445095,"id":2383,"parentId":1645,"tags":{"url":"/api/recommendations/refresh?scan_session=manual","memory.rss":"407207936","memory.heapUsed":"230556048","memory.heapTotal":"265584640"},"startTime":1775658928357,"traceId":"63571fab0751eb1f"},{"name":"handle-request","duration":185563,"timestamp":6051980283286,"id":2237,"tags":{"url":"/?_rsc=1p60s","isTurbopack":false},"startTime":1775658928195,"traceId":"63571fab0751eb1f"},{"name":"memory-usage","duration":0,"timestamp":6051980468885,"id":2384,"parentId":2237,"tags":{"url":"/?_rsc=1p60s","memory.rss":"411779072","memory.heapUsed":"224416848","memory.heapTotal":"267452416"},"startTime":1775658928381,"traceId":"63571fab0751eb1f"},{"name":"handle-request","duration":5097,"timestamp":6051980473238,"id":2385,"tags":{"url":"/?_rsc=1p60s","isTurbopack":false},"startTime":1775658928385,"traceId":"63571fab0751eb1f"},{"name":"memory-usage","duration":0,"timestamp":6051980478356,"id":2386,"parentId":2385,"tags":{"url":"/?_rsc=1p60s","memory.rss":"411844608","memory.heapUsed":"225469160","memory.heapTotal":"267452416"},"startTime":1775658928390,"traceId":"63571fab0751eb1f"},{"name":"handle-request","duration":5890,"timestamp":6051980484536,"id":2387,"tags":{"url":"/?_rsc=1p60s","isTurbopack":false},"startTime":1775658928396,"traceId":"63571fab0751eb1f"},{"name":"memory-usage","duration":1,"timestamp":6051980490464,"id":2388,"parentId":2387,"tags":{"url":"/?_rsc=1p60s","memory.rss":"411926528","memory.heapUsed":"226514344","memory.heapTotal":"267452416"},"startTime":1775658928402,"traceId":"63571fab0751eb1f"},{"name":"handle-request","duration":76013,"timestamp":6052011715654,"id":2389,"tags":{"url":"/","isTurbopack":false},"startTime":1775658959627,"traceId":"63571fab0751eb1f"},{"name":"memory-usage","duration":0,"timestamp":6052011791787,"id":2390,"parentId":2389,"tags":{"url":"/","memory.rss":"148439040","memory.heapUsed":"208734440","memory.heapTotal":"212303872"},"startTime":1775658959703,"traceId":"63571fab0751eb1f"},{"name":"client-success","duration":13,"timestamp":6052012270295,"id":2391,"parentId":3,"tags":{},"startTime":1775658960182,"traceId":"63571fab0751eb1f"},{"name":"handle-request","duration":6765,"timestamp":6052042280875,"id":2392,"tags":{"url":"/api/sectors/hot?limit=8","isTurbopack":false},"startTime":1775658990192,"traceId":"63571fab0751eb1f"},{"name":"handle-request","duration":4532,"timestamp":6052042283115,"id":2393,"tags":{"url":"/api/recommendations/latest","isTurbopack":false},"startTime":1775658990195,"traceId":"63571fab0751eb1f"},{"name":"memory-usage","duration":0,"timestamp":6052042287683,"id":2394,"parentId":2392,"tags":{"url":"/api/sectors/hot?limit=8","memory.rss":"283607040","memory.heapUsed":"220373544","memory.heapTotal":"251363328"},"startTime":1775658990199,"traceId":"63571fab0751eb1f"},{"name":"memory-usage","duration":0,"timestamp":6052042287693,"id":2395,"parentId":2393,"tags":{"url":"/api/recommendations/latest","memory.rss":"283607040","memory.heapUsed":"220377896","memory.heapTotal":"251363328"},"startTime":1775658990199,"traceId":"63571fab0751eb1f"},{"name":"handle-request","duration":4647,"timestamp":6052042293554,"id":2396,"tags":{"url":"/api/market/overview","isTurbopack":false},"startTime":1775658990205,"traceId":"63571fab0751eb1f"},{"name":"handle-request","duration":3449,"timestamp":6052042294757,"id":2397,"tags":{"url":"/api/health","isTurbopack":false},"startTime":1775658990206,"traceId":"63571fab0751eb1f"},{"name":"handle-request","duration":2754,"timestamp":6052042295453,"id":2398,"tags":{"url":"/api/recommendations/status","isTurbopack":false},"startTime":1775658990207,"traceId":"63571fab0751eb1f"},{"name":"memory-usage","duration":0,"timestamp":6052042298221,"id":2399,"parentId":2396,"tags":{"url":"/api/market/overview","memory.rss":"283787264","memory.heapUsed":"221444448","memory.heapTotal":"251625472"},"startTime":1775658990210,"traceId":"63571fab0751eb1f"},{"name":"memory-usage","duration":0,"timestamp":6052042298226,"id":2400,"parentId":2397,"tags":{"url":"/api/health","memory.rss":"283787264","memory.heapUsed":"221445672","memory.heapTotal":"251625472"},"startTime":1775658990210,"traceId":"63571fab0751eb1f"},{"name":"memory-usage","duration":0,"timestamp":6052042298229,"id":2401,"parentId":2398,"tags":{"url":"/api/recommendations/status","memory.rss":"283787264","memory.heapUsed":"221446896","memory.heapTotal":"251625472"},"startTime":1775658990210,"traceId":"63571fab0751eb1f"},{"name":"handle-request","duration":8654,"timestamp":6052062276766,"id":2402,"tags":{"url":"/api/recommendations/latest","isTurbopack":false},"startTime":1775659010188,"traceId":"63571fab0751eb1f"},{"name":"memory-usage","duration":0,"timestamp":6052062285608,"id":2403,"parentId":2402,"tags":{"url":"/api/recommendations/latest","memory.rss":"103940096","memory.heapUsed":"221761880","memory.heapTotal":"251625472"},"startTime":1775659010197,"traceId":"63571fab0751eb1f"},{"name":"handle-request","duration":24106,"timestamp":6052198851012,"id":2404,"tags":{"url":"/?_rsc=3py13","isTurbopack":false},"startTime":1775659146762,"traceId":"63571fab0751eb1f"},{"name":"memory-usage","duration":1,"timestamp":6052198875262,"id":2405,"parentId":2404,"tags":{"url":"/?_rsc=3py13","memory.rss":"122273792","memory.heapUsed":"223102024","memory.heapTotal":"251625472"},"startTime":1775659146786,"traceId":"63571fab0751eb1f"},{"name":"handle-request","duration":28800,"timestamp":6052200134763,"id":2406,"tags":{"url":"/","isTurbopack":false},"startTime":1775659148046,"traceId":"63571fab0751eb1f"},{"name":"memory-usage","duration":0,"timestamp":6052200163627,"id":2407,"parentId":2406,"tags":{"url":"/","memory.rss":"132546560","memory.heapUsed":"225040752","memory.heapTotal":"251625472"},"startTime":1775659148075,"traceId":"63571fab0751eb1f"},{"name":"client-success","duration":169,"timestamp":6052200961778,"id":2408,"parentId":3,"tags":{},"startTime":1775659148873,"traceId":"63571fab0751eb1f"},{"name":"add-entry","duration":36692,"timestamp":6052316990683,"id":2417,"parentId":2414,"tags":{"request":"next/dist/pages/_document"},"startTime":1775659264899,"traceId":"63571fab0751eb1f"},{"name":"add-entry","duration":40713,"timestamp":6052316990485,"id":2415,"parentId":2414,"tags":{"request":"next/dist/pages/_app"},"startTime":1775659264899,"traceId":"63571fab0751eb1f"},{"name":"add-entry","duration":40539,"timestamp":6052316990691,"id":2419,"parentId":2414,"tags":{"request":"next-app-loader?name=app%2Fpage&page=%2Fpage&appPaths=%2Fpage&pagePath=private-next-app-dir%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":1775659264899,"traceId":"63571fab0751eb1f"},{"name":"add-entry","duration":40568,"timestamp":6052316990669,"id":2416,"parentId":2414,"tags":{"request":"next-route-loader?kind=PAGES&page=%2F_error&preferredRegion=&absolutePagePath=next%2Fdist%2Fpages%2F_error&absoluteAppPath=next%2Fdist%2Fpages%2F_app&absoluteDocumentPath=next%2Fdist%2Fpages%2F_document&middlewareConfigBase64=e30%3D!"},"startTime":1775659264899,"traceId":"63571fab0751eb1f"},{"name":"build-module","duration":61238,"timestamp":6052317008731,"id":2420,"parentId":2418,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-app-loader.js?name=app%2Fstock%2F%5Bcode%5D%2Fpage&page=%2Fstock%2F%5Bcode%5D%2Fpage&appPaths=%2Fstock%2F%5Bcode%5D%2Fpage&pagePath=private-next-app-dir%2Fstock%2F%5Bcode%5D%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":1775659264917,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":93550,"timestamp":6052317073774,"id":2423,"parentId":2422,"tags":{},"startTime":1775659264982,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":93729,"timestamp":6052317073615,"id":2422,"parentId":2421,"tags":{},"startTime":1775659264982,"traceId":"63571fab0751eb1f"},{"name":"build-module-tsx","duration":95038,"timestamp":6052317073281,"id":2421,"parentId":2420,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/stock/[code]/page.tsx","layer":"rsc"},"startTime":1775659264981,"traceId":"63571fab0751eb1f"},{"name":"add-entry","duration":179494,"timestamp":6052316990686,"id":2418,"parentId":2414,"tags":{"request":"next-app-loader?name=app%2Fstock%2F%5Bcode%5D%2Fpage&page=%2Fstock%2F%5Bcode%5D%2Fpage&appPaths=%2Fstock%2F%5Bcode%5D%2Fpage&pagePath=private-next-app-dir%2Fstock%2F%5Bcode%5D%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":1775659264899,"traceId":"63571fab0751eb1f"},{"name":"build-module","duration":710,"timestamp":6052317176192,"id":2432,"parentId":2413,"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%2Fstock%2F%5Bcode%5D%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=true!","layer":"ssr"},"startTime":1775659265084,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":11350,"timestamp":6052317182393,"id":2435,"parentId":2434,"tags":{},"startTime":1775659265091,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":11458,"timestamp":6052317182295,"id":2434,"parentId":2433,"tags":{},"startTime":1775659265090,"traceId":"63571fab0751eb1f"},{"name":"build-module-tsx","duration":19953,"timestamp":6052317182001,"id":2433,"parentId":2432,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/stock/[code]/page.tsx","layer":"ssr"},"startTime":1775659265090,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":2848,"timestamp":6052317215624,"id":2440,"parentId":2439,"tags":{},"startTime":1775659265124,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":2911,"timestamp":6052317215568,"id":2439,"parentId":2436,"tags":{},"startTime":1775659265124,"traceId":"63571fab0751eb1f"},{"name":"build-module-tsx","duration":4326,"timestamp":6052317215240,"id":2436,"parentId":2433,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/capital-flow.tsx","layer":"ssr"},"startTime":1775659265123,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":4144,"timestamp":6052317215663,"id":2442,"parentId":2441,"tags":{},"startTime":1775659265124,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":4179,"timestamp":6052317215630,"id":2441,"parentId":2437,"tags":{},"startTime":1775659265124,"traceId":"63571fab0751eb1f"},{"name":"build-module-tsx","duration":5807,"timestamp":6052317215389,"id":2437,"parentId":2433,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/score-radar.tsx","layer":"ssr"},"startTime":1775659265124,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":5539,"timestamp":6052317215695,"id":2444,"parentId":2443,"tags":{},"startTime":1775659265124,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":5570,"timestamp":6052317215665,"id":2443,"parentId":2438,"tags":{},"startTime":1775659265124,"traceId":"63571fab0751eb1f"},{"name":"build-module-tsx","duration":6683,"timestamp":6052317215476,"id":2438,"parentId":2433,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/kline-chart.tsx","layer":"ssr"},"startTime":1775659265124,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":467,"timestamp":6052317225854,"id":2446,"parentId":2445,"tags":{},"startTime":1775659265134,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":37,"timestamp":6052317226335,"id":2447,"parentId":2445,"tags":{},"startTime":1775659265135,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":1609,"timestamp":6052317225670,"id":2445,"parentId":2436,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/index.js","layer":"ssr"},"startTime":1775659265134,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1275,"timestamp":6052317231059,"id":2453,"parentId":2448,"tags":{},"startTime":1775659265139,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":33,"timestamp":6052317232343,"id":2460,"parentId":2448,"tags":{},"startTime":1775659265141,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":2299,"timestamp":6052317230791,"id":2448,"parentId":2445,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/extension.js","layer":"ssr"},"startTime":1775659265139,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":2030,"timestamp":6052317231069,"id":2454,"parentId":2449,"tags":{},"startTime":1775659265139,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":30,"timestamp":6052317233102,"id":2461,"parentId":2449,"tags":{},"startTime":1775659265141,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":2399,"timestamp":6052317230871,"id":2449,"parentId":2445,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/core.js","layer":"ssr"},"startTime":1775659265139,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":2925,"timestamp":6052317231082,"id":2456,"parentId":2451,"tags":{},"startTime":1775659265139,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":33,"timestamp":6052317234012,"id":2462,"parentId":2451,"tags":{},"startTime":1775659265142,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":3181,"timestamp":6052317230964,"id":2451,"parentId":2445,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/features.js","layer":"ssr"},"startTime":1775659265139,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":3077,"timestamp":6052317231074,"id":2455,"parentId":2450,"tags":{},"startTime":1775659265139,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":29,"timestamp":6052317234155,"id":2463,"parentId":2450,"tags":{},"startTime":1775659265142,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":3481,"timestamp":6052317230920,"id":2450,"parentId":2445,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/charts.js","layer":"ssr"},"startTime":1775659265139,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":3110,"timestamp":6052317231295,"id":2459,"parentId":2458,"tags":{},"startTime":1775659265139,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":27,"timestamp":6052317234409,"id":2464,"parentId":2458,"tags":{},"startTime":1775659265143,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":3318,"timestamp":6052317231171,"id":2458,"parentId":2445,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/renderers.js","layer":"ssr"},"startTime":1775659265139,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":3397,"timestamp":6052317231095,"id":2457,"parentId":2452,"tags":{},"startTime":1775659265139,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":26,"timestamp":6052317234495,"id":2465,"parentId":2452,"tags":{},"startTime":1775659265143,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":3750,"timestamp":6052317231007,"id":2452,"parentId":2445,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/components.js","layer":"ssr"},"startTime":1775659265139,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":15092,"timestamp":6052317239545,"id":2467,"parentId":2466,"tags":{},"startTime":1775659265148,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":40,"timestamp":6052317254651,"id":2488,"parentId":2466,"tags":{},"startTime":1775659265163,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":16110,"timestamp":6052317239441,"id":2466,"parentId":2449,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/api.js","layer":"ssr"},"startTime":1775659265148,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":21812,"timestamp":6052317241389,"id":2476,"parentId":2469,"tags":{},"startTime":1775659265150,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":36,"timestamp":6052317263216,"id":2593,"parentId":2469,"tags":{},"startTime":1775659265171,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":22674,"timestamp":6052317241147,"id":2469,"parentId":2448,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/core/impl.js","layer":"ssr"},"startTime":1775659265149,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":22441,"timestamp":6052317241394,"id":2477,"parentId":2470,"tags":{},"startTime":1775659265150,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":31,"timestamp":6052317263839,"id":2594,"parentId":2470,"tags":{},"startTime":1775659265172,"traceId":"63571fab0751eb1f"}]
-[{"name":"build-module-js","duration":24902,"timestamp":6052317241190,"id":2470,"parentId":2448,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/view/Chart.js","layer":"ssr"},"startTime":1775659265149,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":24699,"timestamp":6052317241410,"id":2481,"parentId":2474,"tags":{},"startTime":1775659265150,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":30,"timestamp":6052317266114,"id":2595,"parentId":2474,"tags":{},"startTime":1775659265174,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":25115,"timestamp":6052317241340,"id":2474,"parentId":2449,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/label/installLabelLayout.js","layer":"ssr"},"startTime":1775659265150,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":25096,"timestamp":6052317241381,"id":2475,"parentId":2468,"tags":{},"startTime":1775659265150,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":74,"timestamp":6052317266482,"id":2596,"parentId":2468,"tags":{},"startTime":1775659265175,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":47553,"timestamp":6052317241082,"id":2468,"parentId":2448,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/core/echarts.js","layer":"ssr"},"startTime":1775659265149,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":47268,"timestamp":6052317241407,"id":2480,"parentId":2473,"tags":{},"startTime":1775659265150,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":64,"timestamp":6052317288693,"id":2597,"parentId":2473,"tags":{},"startTime":1775659265197,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":49464,"timestamp":6052317241304,"id":2473,"parentId":2448,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/Series.js","layer":"ssr"},"startTime":1775659265149,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":49397,"timestamp":6052317241399,"id":2478,"parentId":2471,"tags":{},"startTime":1775659265150,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":70,"timestamp":6052317290805,"id":2598,"parentId":2471,"tags":{},"startTime":1775659265199,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":49997,"timestamp":6052317241228,"id":2471,"parentId":2448,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/view/Component.js","layer":"ssr"},"startTime":1775659265149,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":49835,"timestamp":6052317241404,"id":2479,"parentId":2472,"tags":{},"startTime":1775659265150,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":37,"timestamp":6052317291245,"id":2599,"parentId":2472,"tags":{},"startTime":1775659265199,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":50831,"timestamp":6052317241267,"id":2472,"parentId":2448,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/Component.js","layer":"ssr"},"startTime":1775659265149,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":67697,"timestamp":6052317242644,"id":2487,"parentId":2484,"tags":{},"startTime":1775659265151,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":158,"timestamp":6052317310362,"id":2600,"parentId":2484,"tags":{},"startTime":1775659265219,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":69227,"timestamp":6052317242588,"id":2484,"parentId":2458,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/renderer/installCanvasRenderer.js","layer":"ssr"},"startTime":1775659265151,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":69250,"timestamp":6052317242632,"id":2485,"parentId":2482,"tags":{},"startTime":1775659265151,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":158,"timestamp":6052317311919,"id":2601,"parentId":2482,"tags":{},"startTime":1775659265220,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":78511,"timestamp":6052317242482,"id":2482,"parentId":2451,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/animation/universalTransition.js","layer":"ssr"},"startTime":1775659265151,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":78462,"timestamp":6052317242640,"id":2486,"parentId":2483,"tags":{},"startTime":1775659265151,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":114,"timestamp":6052317321202,"id":2602,"parentId":2483,"tags":{},"startTime":1775659265229,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":79092,"timestamp":6052317242545,"id":2483,"parentId":2458,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/renderer/installSVGRenderer.js","layer":"ssr"},"startTime":1775659265151,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":65665,"timestamp":6052317260389,"id":2544,"parentId":2492,"tags":{},"startTime":1775659265169,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":45,"timestamp":6052317326069,"id":2603,"parentId":2492,"tags":{},"startTime":1775659265234,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":69806,"timestamp":6052317256577,"id":2492,"parentId":2450,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/pie/install.js","layer":"ssr"},"startTime":1775659265165,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":66041,"timestamp":6052317260352,"id":2541,"parentId":2489,"tags":{},"startTime":1775659265169,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":126,"timestamp":6052317326398,"id":2604,"parentId":2489,"tags":{},"startTime":1775659265235,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":70425,"timestamp":6052317256364,"id":2489,"parentId":2450,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/line/install.js","layer":"ssr"},"startTime":1775659265165,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":66453,"timestamp":6052317260369,"id":2542,"parentId":2490,"tags":{},"startTime":1775659265169,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":40,"timestamp":6052317326829,"id":2605,"parentId":2490,"tags":{},"startTime":1775659265235,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":70669,"timestamp":6052317256468,"id":2490,"parentId":2450,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/bar/install.js","layer":"ssr"},"startTime":1775659265165,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":66765,"timestamp":6052317260378,"id":2543,"parentId":2491,"tags":{},"startTime":1775659265169,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":38,"timestamp":6052317327151,"id":2606,"parentId":2491,"tags":{},"startTime":1775659265235,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":70830,"timestamp":6052317256524,"id":2491,"parentId":2450,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/bar/installPictorialBar.js","layer":"ssr"},"startTime":1775659265165,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":66962,"timestamp":6052317260398,"id":2545,"parentId":2493,"tags":{},"startTime":1775659265169,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":37,"timestamp":6052317327366,"id":2607,"parentId":2493,"tags":{},"startTime":1775659265236,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":70878,"timestamp":6052317256658,"id":2493,"parentId":2450,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/scatter/install.js","layer":"ssr"},"startTime":1775659265165,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":67134,"timestamp":6052317260407,"id":2547,"parentId":2495,"tags":{},"startTime":1775659265169,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":33,"timestamp":6052317327550,"id":2608,"parentId":2495,"tags":{},"startTime":1775659265236,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":70986,"timestamp":6052317256753,"id":2495,"parentId":2450,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/map/install.js","layer":"ssr"},"startTime":1775659265165,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":67341,"timestamp":6052317260403,"id":2546,"parentId":2494,"tags":{},"startTime":1775659265169,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":31,"timestamp":6052317327749,"id":2609,"parentId":2494,"tags":{},"startTime":1775659265236,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":71220,"timestamp":6052317256702,"id":2494,"parentId":2450,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/radar/install.js","layer":"ssr"},"startTime":1775659265165,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":67493,"timestamp":6052317260435,"id":2552,"parentId":2500,"tags":{},"startTime":1775659265169,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":35,"timestamp":6052317327933,"id":2610,"parentId":2500,"tags":{},"startTime":1775659265236,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":71077,"timestamp":6052317257018,"id":2500,"parentId":2450,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/treemap/install.js","layer":"ssr"},"startTime":1775659265165,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":67688,"timestamp":6052317260412,"id":2548,"parentId":2496,"tags":{},"startTime":1775659265169,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":39,"timestamp":6052317328104,"id":2611,"parentId":2496,"tags":{},"startTime":1775659265236,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":71606,"timestamp":6052317256821,"id":2496,"parentId":2450,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/tree/install.js","layer":"ssr"},"startTime":1775659265165,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":68016,"timestamp":6052317260417,"id":2549,"parentId":2497,"tags":{},"startTime":1775659265169,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":131,"timestamp":6052317328437,"id":2612,"parentId":2497,"tags":{},"startTime":1775659265237,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":72419,"timestamp":6052317256890,"id":2497,"parentId":2450,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/install.js","layer":"ssr"},"startTime":1775659265165,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":68911,"timestamp":6052317260421,"id":2550,"parentId":2498,"tags":{},"startTime":1775659265169,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":50,"timestamp":6052317329343,"id":2613,"parentId":2498,"tags":{},"startTime":1775659265238,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":72651,"timestamp":6052317256934,"id":2498,"parentId":2450,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/gauge/install.js","layer":"ssr"},"startTime":1775659265165,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":69146,"timestamp":6052317260449,"id":2556,"parentId":2504,"tags":{},"startTime":1775659265169,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":38,"timestamp":6052317329600,"id":2614,"parentId":2504,"tags":{},"startTime":1775659265238,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":72721,"timestamp":6052317257181,"id":2504,"parentId":2450,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/candlestick/install.js","layer":"ssr"},"startTime":1775659265165,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":69470,"timestamp":6052317260445,"id":2555,"parentId":2503,"tags":{},"startTime":1775659265169,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":54,"timestamp":6052317329923,"id":2615,"parentId":2503,"tags":{},"startTime":1775659265238,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":73023,"timestamp":6052317257141,"id":2503,"parentId":2450,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/boxplot/install.js","layer":"ssr"},"startTime":1775659265165,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":69713,"timestamp":6052317260459,"id":2558,"parentId":2506,"tags":{},"startTime":1775659265169,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":91,"timestamp":6052317330178,"id":2616,"parentId":2506,"tags":{},"startTime":1775659265238,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":73193,"timestamp":6052317257261,"id":2506,"parentId":2450,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/lines/install.js","layer":"ssr"},"startTime":1775659265165,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":70011,"timestamp":6052317260452,"id":2557,"parentId":2505,"tags":{},"startTime":1775659265169,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":45,"timestamp":6052317330468,"id":2617,"parentId":2505,"tags":{},"startTime":1775659265239,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":73419,"timestamp":6052317257222,"id":2505,"parentId":2450,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/effectScatter/install.js","layer":"ssr"},"startTime":1775659265165,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":70183,"timestamp":6052317260463,"id":2559,"parentId":2507,"tags":{},"startTime":1775659265169,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":39,"timestamp":6052317330650,"id":2618,"parentId":2507,"tags":{},"startTime":1775659265239,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":73482,"timestamp":6052317257299,"id":2507,"parentId":2450,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/heatmap/install.js","layer":"ssr"},"startTime":1775659265165,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":70314,"timestamp":6052317260473,"id":2562,"parentId":2510,"tags":{},"startTime":1775659265169,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":34,"timestamp":6052317330792,"id":2619,"parentId":2510,"tags":{},"startTime":1775659265239,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":73513,"timestamp":6052317257419,"id":2510,"parentId":2450,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/custom/install.js","layer":"ssr"},"startTime":1775659265166,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":70495,"timestamp":6052317260442,"id":2554,"parentId":2502,"tags":{},"startTime":1775659265169,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":38,"timestamp":6052317330941,"id":2620,"parentId":2502,"tags":{},"startTime":1775659265239,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":74026,"timestamp":6052317257097,"id":2502,"parentId":2450,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/parallel/install.js","layer":"ssr"},"startTime":1775659265165,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":70689,"timestamp":6052317260439,"id":2553,"parentId":2501,"tags":{},"startTime":1775659265169,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":40,"timestamp":6052317331132,"id":2621,"parentId":2501,"tags":{},"startTime":1775659265239,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":74317,"timestamp":6052317257058,"id":2501,"parentId":2450,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sankey/install.js","layer":"ssr"},"startTime":1775659265165,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":70915,"timestamp":6052317260466,"id":2560,"parentId":2508,"tags":{},"startTime":1775659265169,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":38,"timestamp":6052317331385,"id":2622,"parentId":2508,"tags":{},"startTime":1775659265240,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":74247,"timestamp":6052317257342,"id":2508,"parentId":2450,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/themeRiver/install.js","layer":"ssr"},"startTime":1775659265166,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":71125,"timestamp":6052317260479,"id":2564,"parentId":2512,"tags":{},"startTime":1775659265169,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":45,"timestamp":6052317331611,"id":2623,"parentId":2512,"tags":{},"startTime":1775659265240,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":74525,"timestamp":6052317257496,"id":2512,"parentId":2452,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/grid/install.js","layer":"ssr"},"startTime":1775659265166,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":71554,"timestamp":6052317260476,"id":2563,"parentId":2511,"tags":{},"startTime":1775659265169,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":53,"timestamp":6052317332035,"id":2624,"parentId":2511,"tags":{},"startTime":1775659265240,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":75184,"timestamp":6052317257458,"id":2511,"parentId":2452,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/grid/installSimple.js","layer":"ssr"},"startTime":1775659265166,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":72158,"timestamp":6052317260492,"id":2567,"parentId":2515,"tags":{},"startTime":1775659265169,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":45,"timestamp":6052317332656,"id":2625,"parentId":2515,"tags":{},"startTime":1775659265241,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":75767,"timestamp":6052317257611,"id":2515,"parentId":2452,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/geo/install.js","layer":"ssr"},"startTime":1775659265166,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":72899,"timestamp":6052317260486,"id":2565,"parentId":2513,"tags":{},"startTime":1775659265169,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":43,"timestamp":6052317333390,"id":2626,"parentId":2513,"tags":{},"startTime":1775659265242,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":76283,"timestamp":6052317257535,"id":2513,"parentId":2452,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/polar/install.js","layer":"ssr"},"startTime":1775659265166,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":73336,"timestamp":6052317260490,"id":2566,"parentId":2514,"tags":{},"startTime":1775659265169,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":40,"timestamp":6052317333830,"id":2627,"parentId":2514,"tags":{},"startTime":1775659265242,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":76478,"timestamp":6052317257573,"id":2514,"parentId":2452,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/radar/install.js","layer":"ssr"},"startTime":1775659265166,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":73561,"timestamp":6052317260496,"id":2568,"parentId":2516,"tags":{},"startTime":1775659265169,"traceId":"63571fab0751eb1f"}]
-[{"name":"next-swc-loader","duration":41,"timestamp":6052317334179,"id":2628,"parentId":2516,"tags":{},"startTime":1775659265242,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":77164,"timestamp":6052317257652,"id":2516,"parentId":2452,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/singleAxis/install.js","layer":"ssr"},"startTime":1775659265166,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":74335,"timestamp":6052317260502,"id":2570,"parentId":2518,"tags":{},"startTime":1775659265169,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":120,"timestamp":6052317334848,"id":2629,"parentId":2518,"tags":{},"startTime":1775659265243,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":77530,"timestamp":6052317257733,"id":2518,"parentId":2452,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/calendar/install.js","layer":"ssr"},"startTime":1775659265166,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":74775,"timestamp":6052317260504,"id":2571,"parentId":2519,"tags":{},"startTime":1775659265169,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":49,"timestamp":6052317335288,"id":2630,"parentId":2519,"tags":{},"startTime":1775659265243,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":77879,"timestamp":6052317257771,"id":2519,"parentId":2452,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/graphic/install.js","layer":"ssr"},"startTime":1775659265166,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":75162,"timestamp":6052317260499,"id":2569,"parentId":2517,"tags":{},"startTime":1775659265169,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":46,"timestamp":6052317335666,"id":2631,"parentId":2517,"tags":{},"startTime":1775659265244,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":78420,"timestamp":6052317257692,"id":2517,"parentId":2452,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/parallel/install.js","layer":"ssr"},"startTime":1775659265166,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":75653,"timestamp":6052317260524,"id":2575,"parentId":2523,"tags":{},"startTime":1775659265169,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":177,"timestamp":6052317336185,"id":2632,"parentId":2523,"tags":{},"startTime":1775659265244,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":78902,"timestamp":6052317257925,"id":2523,"parentId":2452,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/brush/install.js","layer":"ssr"},"startTime":1775659265166,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":76317,"timestamp":6052317260521,"id":2574,"parentId":2522,"tags":{},"startTime":1775659265169,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":179,"timestamp":6052317336845,"id":2633,"parentId":2522,"tags":{},"startTime":1775659265245,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":79498,"timestamp":6052317257887,"id":2522,"parentId":2452,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/install.js","layer":"ssr"},"startTime":1775659265166,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":76884,"timestamp":6052317260510,"id":2572,"parentId":2520,"tags":{},"startTime":1775659265169,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":45,"timestamp":6052317337401,"id":2634,"parentId":2520,"tags":{},"startTime":1775659265246,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":80217,"timestamp":6052317257810,"id":2520,"parentId":2452,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/tooltip/install.js","layer":"ssr"},"startTime":1775659265166,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":77525,"timestamp":6052317260517,"id":2573,"parentId":2521,"tags":{},"startTime":1775659265169,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":51,"timestamp":6052317338051,"id":2635,"parentId":2521,"tags":{},"startTime":1775659265246,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":80514,"timestamp":6052317257849,"id":2521,"parentId":2452,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/toolbox/install.js","layer":"ssr"},"startTime":1775659265166,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":77837,"timestamp":6052317260536,"id":2579,"parentId":2527,"tags":{},"startTime":1775659265169,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":40,"timestamp":6052317338379,"id":2636,"parentId":2527,"tags":{},"startTime":1775659265247,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":80542,"timestamp":6052317258094,"id":2527,"parentId":2452,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/installMarkLine.js","layer":"ssr"},"startTime":1775659265166,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":78121,"timestamp":6052317260530,"id":2577,"parentId":2525,"tags":{},"startTime":1775659265169,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":61,"timestamp":6052317338663,"id":2637,"parentId":2525,"tags":{},"startTime":1775659265247,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":80879,"timestamp":6052317258004,"id":2525,"parentId":2452,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/timeline/install.js","layer":"ssr"},"startTime":1775659265166,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":78363,"timestamp":6052317260528,"id":2576,"parentId":2524,"tags":{},"startTime":1775659265169,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":47,"timestamp":6052317338897,"id":2638,"parentId":2524,"tags":{},"startTime":1775659265247,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":82115,"timestamp":6052317257964,"id":2524,"parentId":2452,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/title/install.js","layer":"ssr"},"startTime":1775659265166,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":79560,"timestamp":6052317260533,"id":2578,"parentId":2526,"tags":{},"startTime":1775659265169,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":46,"timestamp":6052317340102,"id":2639,"parentId":2526,"tags":{},"startTime":1775659265248,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":82279,"timestamp":6052317258051,"id":2526,"parentId":2452,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/installMarkPoint.js","layer":"ssr"},"startTime":1775659265166,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":79791,"timestamp":6052317260545,"id":2580,"parentId":2528,"tags":{},"startTime":1775659265169,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":44,"timestamp":6052317340342,"id":2640,"parentId":2528,"tags":{},"startTime":1775659265249,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":82343,"timestamp":6052317258186,"id":2528,"parentId":2452,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/installMarkArea.js","layer":"ssr"},"startTime":1775659265166,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":80104,"timestamp":6052317260431,"id":2551,"parentId":2499,"tags":{},"startTime":1775659265169,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":50,"timestamp":6052317340540,"id":2641,"parentId":2499,"tags":{},"startTime":1775659265249,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":83740,"timestamp":6052317256975,"id":2499,"parentId":2450,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/funnel/install.js","layer":"ssr"},"startTime":1775659265165,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":80172,"timestamp":6052317260548,"id":2581,"parentId":2529,"tags":{},"startTime":1775659265169,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":41,"timestamp":6052317340725,"id":2642,"parentId":2529,"tags":{},"startTime":1775659265249,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":82547,"timestamp":6052317258330,"id":2529,"parentId":2452,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/legend/install.js","layer":"ssr"},"startTime":1775659265167,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":80414,"timestamp":6052317260469,"id":2561,"parentId":2509,"tags":{},"startTime":1775659265169,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":39,"timestamp":6052317340890,"id":2643,"parentId":2509,"tags":{},"startTime":1775659265249,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":83719,"timestamp":6052317257381,"id":2509,"parentId":2450,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sunburst/install.js","layer":"ssr"},"startTime":1775659265166,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":80552,"timestamp":6052317260552,"id":2582,"parentId":2530,"tags":{},"startTime":1775659265169,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":39,"timestamp":6052317341109,"id":2644,"parentId":2530,"tags":{},"startTime":1775659265249,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":82167,"timestamp":6052317259125,"id":2530,"parentId":2452,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/legend/installLegendScroll.js","layer":"ssr"},"startTime":1775659265167,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":80736,"timestamp":6052317260561,"id":2585,"parentId":2533,"tags":{},"startTime":1775659265169,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":49,"timestamp":6052317341301,"id":2645,"parentId":2533,"tags":{},"startTime":1775659265249,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":81688,"timestamp":6052317259801,"id":2533,"parentId":2452,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/installDataZoomInside.js","layer":"ssr"},"startTime":1775659265168,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":80929,"timestamp":6052317260565,"id":2586,"parentId":2534,"tags":{},"startTime":1775659265169,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":37,"timestamp":6052317341498,"id":2646,"parentId":2534,"tags":{},"startTime":1775659265250,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":81797,"timestamp":6052317259879,"id":2534,"parentId":2452,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/installDataZoomSlider.js","layer":"ssr"},"startTime":1775659265168,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":81104,"timestamp":6052317260578,"id":2590,"parentId":2538,"tags":{},"startTime":1775659265169,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":36,"timestamp":6052317341686,"id":2647,"parentId":2538,"tags":{},"startTime":1775659265250,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":81652,"timestamp":6052317260168,"id":2538,"parentId":2452,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/aria/install.js","layer":"ssr"},"startTime":1775659265168,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":81244,"timestamp":6052317260580,"id":2591,"parentId":2539,"tags":{},"startTime":1775659265169,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":39,"timestamp":6052317341828,"id":2648,"parentId":2539,"tags":{},"startTime":1775659265250,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":81736,"timestamp":6052317260222,"id":2539,"parentId":2452,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/transform/install.js","layer":"ssr"},"startTime":1775659265168,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":81406,"timestamp":6052317260556,"id":2583,"parentId":2531,"tags":{},"startTime":1775659265169,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":44,"timestamp":6052317341966,"id":2649,"parentId":2531,"tags":{},"startTime":1775659265250,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":82945,"timestamp":6052317259207,"id":2531,"parentId":2452,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/legend/installLegendPlain.js","layer":"ssr"},"startTime":1775659265167,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":81581,"timestamp":6052317260575,"id":2589,"parentId":2537,"tags":{},"startTime":1775659265169,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":100,"timestamp":6052317342160,"id":2650,"parentId":2537,"tags":{},"startTime":1775659265250,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":82247,"timestamp":6052317260112,"id":2537,"parentId":2452,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/installVisualMapPiecewise.js","layer":"ssr"},"startTime":1775659265168,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":81793,"timestamp":6052317260570,"id":2587,"parentId":2535,"tags":{},"startTime":1775659265169,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":35,"timestamp":6052317342368,"id":2651,"parentId":2535,"tags":{},"startTime":1775659265251,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":82548,"timestamp":6052317259953,"id":2535,"parentId":2452,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/install.js","layer":"ssr"},"startTime":1775659265168,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":93223,"timestamp":6052317260573,"id":2588,"parentId":2536,"tags":{},"startTime":1775659265169,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":48,"timestamp":6052317353811,"id":2652,"parentId":2536,"tags":{},"startTime":1775659265262,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":94151,"timestamp":6052317260044,"id":2536,"parentId":2452,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/installVisualMapContinuous.js","layer":"ssr"},"startTime":1775659265168,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":93624,"timestamp":6052317260582,"id":2592,"parentId":2540,"tags":{},"startTime":1775659265169,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":36,"timestamp":6052317354211,"id":2653,"parentId":2540,"tags":{},"startTime":1775659265262,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":94564,"timestamp":6052317260276,"id":2540,"parentId":2452,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataset/install.js","layer":"ssr"},"startTime":1775659265168,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":94292,"timestamp":6052317260558,"id":2584,"parentId":2532,"tags":{},"startTime":1775659265169,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":58,"timestamp":6052317354855,"id":2654,"parentId":2532,"tags":{},"startTime":1775659265263,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":95768,"timestamp":6052317259272,"id":2532,"parentId":2452,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/install.js","layer":"ssr"},"startTime":1775659265167,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":9766,"timestamp":6052317468071,"id":2694,"parentId":2656,"tags":{},"startTime":1775659265376,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":105,"timestamp":6052317477851,"id":2839,"parentId":2656,"tags":{},"startTime":1775659265386,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":13091,"timestamp":6052317466591,"id":2656,"parentId":2470,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/core/task.js","layer":"ssr"},"startTime":1775659265375,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":11615,"timestamp":6052317468084,"id":2696,"parentId":2658,"tags":{},"startTime":1775659265376,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":55,"timestamp":6052317479705,"id":2840,"parentId":2658,"tags":{},"startTime":1775659265388,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":18103,"timestamp":6052317466678,"id":2658,"parentId":2468,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/Global.js","layer":"ssr"},"startTime":1775659265375,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":16728,"timestamp":6052317468089,"id":2697,"parentId":2659,"tags":{},"startTime":1775659265376,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":69,"timestamp":6052317484832,"id":2841,"parentId":2659,"tags":{},"startTime":1775659265393,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":18415,"timestamp":6052317466716,"id":2659,"parentId":2468,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/core/ExtensionAPI.js","layer":"ssr"},"startTime":1775659265375,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":17090,"timestamp":6052317468053,"id":2693,"parentId":2655,"tags":{},"startTime":1775659265376,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":42,"timestamp":6052317485150,"id":2842,"parentId":2655,"tags":{},"startTime":1775659265393,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":22435,"timestamp":6052317466484,"id":2655,"parentId":2466,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/Model.js","layer":"ssr"},"startTime":1775659265375,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":20846,"timestamp":6052317468093,"id":2698,"parentId":2660,"tags":{},"startTime":1775659265376,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":37,"timestamp":6052317488948,"id":2843,"parentId":2660,"tags":{},"startTime":1775659265397,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":22494,"timestamp":6052317466756,"id":2660,"parentId":2468,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/core/CoordinateSystem.js","layer":"ssr"},"startTime":1775659265375,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":21160,"timestamp":6052317468097,"id":2699,"parentId":2661,"tags":{},"startTime":1775659265376,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":38,"timestamp":6052317489263,"id":2844,"parentId":2661,"tags":{},"startTime":1775659265397,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":25683,"timestamp":6052317466796,"id":2661,"parentId":2468,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/OptionManager.js","layer":"ssr"},"startTime":1775659265375,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":24381,"timestamp":6052317468113,"id":2703,"parentId":2665,"tags":{},"startTime":1775659265376,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":40,"timestamp":6052317492503,"id":2845,"parentId":2665,"tags":{},"startTime":1775659265401,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":26998,"timestamp":6052317466946,"id":2665,"parentId":2470,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/clazz.js","layer":"ssr"},"startTime":1775659265375,"traceId":"63571fab0751eb1f"}]
-[{"name":"read-resource","duration":26152,"timestamp":6052317468108,"id":2702,"parentId":2664,"tags":{},"startTime":1775659265376,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":37,"timestamp":6052317494270,"id":2846,"parentId":2664,"tags":{},"startTime":1775659265402,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":29925,"timestamp":6052317466910,"id":2664,"parentId":2470,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/component.js","layer":"ssr"},"startTime":1775659265375,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":28743,"timestamp":6052317468105,"id":2701,"parentId":2663,"tags":{},"startTime":1775659265376,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":35,"timestamp":6052317496856,"id":2847,"parentId":2663,"tags":{},"startTime":1775659265405,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":30893,"timestamp":6052317466871,"id":2663,"parentId":2466,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/throttle.js","layer":"ssr"},"startTime":1775659265375,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":29672,"timestamp":6052317468101,"id":2700,"parentId":2662,"tags":{},"startTime":1775659265376,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":83,"timestamp":6052317497778,"id":2848,"parentId":2662,"tags":{},"startTime":1775659265406,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":36634,"timestamp":6052317466832,"id":2662,"parentId":2466,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/SeriesData.js","layer":"ssr"},"startTime":1775659265375,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":35364,"timestamp":6052317468119,"id":2705,"parentId":2667,"tags":{},"startTime":1775659265376,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":54,"timestamp":6052317503491,"id":2849,"parentId":2667,"tags":{},"startTime":1775659265412,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":41060,"timestamp":6052317467013,"id":2667,"parentId":2470,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/states.js","layer":"ssr"},"startTime":1775659265375,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":40020,"timestamp":6052317468116,"id":2704,"parentId":2666,"tags":{},"startTime":1775659265376,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":261,"timestamp":6052317508162,"id":2850,"parentId":2666,"tags":{},"startTime":1775659265416,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":44675,"timestamp":6052317466980,"id":2666,"parentId":2470,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/model.js","layer":"ssr"},"startTime":1775659265375,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":43553,"timestamp":6052317468125,"id":2707,"parentId":2669,"tags":{},"startTime":1775659265376,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":54,"timestamp":6052317511687,"id":2851,"parentId":2669,"tags":{},"startTime":1775659265420,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":47575,"timestamp":6052317467081,"id":2669,"parentId":2470,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/graphic.js","layer":"ssr"},"startTime":1775659265375,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":46553,"timestamp":6052317468122,"id":2706,"parentId":2668,"tags":{},"startTime":1775659265376,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":35,"timestamp":6052317514683,"id":2852,"parentId":2668,"tags":{},"startTime":1775659265423,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":48432,"timestamp":6052317467047,"id":2668,"parentId":2469,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/log.js","layer":"ssr"},"startTime":1775659265375,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":47359,"timestamp":6052317468132,"id":2709,"parentId":2671,"tags":{},"startTime":1775659265376,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":30,"timestamp":6052317515497,"id":2853,"parentId":2671,"tags":{},"startTime":1775659265424,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":49573,"timestamp":6052317467148,"id":2671,"parentId":2466,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/api/number.js","layer":"ssr"},"startTime":1775659265375,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":48598,"timestamp":6052317468135,"id":2710,"parentId":2672,"tags":{},"startTime":1775659265376,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":148,"timestamp":6052317516740,"id":2854,"parentId":2672,"tags":{},"startTime":1775659265425,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":49969,"timestamp":6052317467184,"id":2672,"parentId":2466,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/api/time.js","layer":"ssr"},"startTime":1775659265375,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":49018,"timestamp":6052317468143,"id":2713,"parentId":2675,"tags":{},"startTime":1775659265376,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":28,"timestamp":6052317517166,"id":2855,"parentId":2675,"tags":{},"startTime":1775659265425,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":50237,"timestamp":6052317467286,"id":2675,"parentId":2466,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/api/util.js","layer":"ssr"},"startTime":1775659265375,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":49391,"timestamp":6052317468140,"id":2712,"parentId":2674,"tags":{},"startTime":1775659265376,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":162,"timestamp":6052317517537,"id":2856,"parentId":2674,"tags":{},"startTime":1775659265426,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":50674,"timestamp":6052317467253,"id":2674,"parentId":2466,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/api/format.js","layer":"ssr"},"startTime":1775659265375,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":49797,"timestamp":6052317468137,"id":2711,"parentId":2673,"tags":{},"startTime":1775659265376,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":62,"timestamp":6052317517948,"id":2857,"parentId":2673,"tags":{},"startTime":1775659265426,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":51211,"timestamp":6052317467219,"id":2673,"parentId":2466,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/api/graphic.js","layer":"ssr"},"startTime":1775659265375,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":50309,"timestamp":6052317468128,"id":2708,"parentId":2670,"tags":{},"startTime":1775659265376,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":196,"timestamp":6052317518441,"id":2858,"parentId":2670,"tags":{},"startTime":1775659265427,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":51869,"timestamp":6052317467114,"id":2670,"parentId":2466,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/api/helper.js","layer":"ssr"},"startTime":1775659265375,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":50828,"timestamp":6052317468162,"id":2720,"parentId":2682,"tags":{},"startTime":1775659265376,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":53,"timestamp":6052317518994,"id":2859,"parentId":2682,"tags":{},"startTime":1775659265427,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":54890,"timestamp":6052317467530,"id":2682,"parentId":2468,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/core/Scheduler.js","layer":"ssr"},"startTime":1775659265376,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":54284,"timestamp":6052317468148,"id":2715,"parentId":2677,"tags":{},"startTime":1775659265376,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":38,"timestamp":6052317522440,"id":2860,"parentId":2677,"tags":{},"startTime":1775659265431,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":57320,"timestamp":6052317467354,"id":2677,"parentId":2466,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/parseGeoJson.js","layer":"ssr"},"startTime":1775659265375,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":56562,"timestamp":6052317468156,"id":2718,"parentId":2680,"tags":{},"startTime":1775659265376,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":29,"timestamp":6052317524725,"id":2861,"parentId":2680,"tags":{},"startTime":1775659265433,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":57449,"timestamp":6052317467460,"id":2680,"parentId":2468,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/innerStore.js","layer":"ssr"},"startTime":1775659265376,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":56757,"timestamp":6052317468159,"id":2719,"parentId":2681,"tags":{},"startTime":1775659265376,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":31,"timestamp":6052317524920,"id":2862,"parentId":2681,"tags":{},"startTime":1775659265433,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":57777,"timestamp":6052317467494,"id":2681,"parentId":2468,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/processor/dataStack.js","layer":"ssr"},"startTime":1775659265376,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":57121,"timestamp":6052317468170,"id":2723,"parentId":2685,"tags":{},"startTime":1775659265376,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":82,"timestamp":6052317525294,"id":2863,"parentId":2685,"tags":{},"startTime":1775659265433,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":57917,"timestamp":6052317467710,"id":2685,"parentId":2468,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/core/lifecycle.js","layer":"ssr"},"startTime":1775659265376,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":57476,"timestamp":6052317468167,"id":2722,"parentId":2684,"tags":{},"startTime":1775659265376,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":54,"timestamp":6052317525652,"id":2864,"parentId":2684,"tags":{},"startTime":1775659265434,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":58310,"timestamp":6052317467658,"id":2684,"parentId":2468,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/core/locale.js","layer":"ssr"},"startTime":1775659265376,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":57824,"timestamp":6052317468151,"id":2716,"parentId":2678,"tags":{},"startTime":1775659265376,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":28,"timestamp":6052317525979,"id":2865,"parentId":2678,"tags":{},"startTime":1775659265434,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":58732,"timestamp":6052317467389,"id":2678,"parentId":2470,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/createRenderPlanner.js","layer":"ssr"},"startTime":1775659265376,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":57962,"timestamp":6052317468165,"id":2721,"parentId":2683,"tags":{},"startTime":1775659265376,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":28,"timestamp":6052317526131,"id":2866,"parentId":2683,"tags":{},"startTime":1775659265434,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":58888,"timestamp":6052317467595,"id":2683,"parentId":2468,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/ECEventProcessor.js","layer":"ssr"},"startTime":1775659265376,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":58412,"timestamp":6052317468079,"id":2695,"parentId":2657,"tags":{},"startTime":1775659265376,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":34,"timestamp":6052317526495,"id":2867,"parentId":2657,"tags":{},"startTime":1775659265435,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":61186,"timestamp":6052317466637,"id":2657,"parentId":2474,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/label/LabelManager.js","layer":"ssr"},"startTime":1775659265375,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":59688,"timestamp":6052317468153,"id":2717,"parentId":2679,"tags":{},"startTime":1775659265376,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":44,"timestamp":6052317527850,"id":2868,"parentId":2679,"tags":{},"startTime":1775659265436,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":62127,"timestamp":6052317467425,"id":2679,"parentId":2468,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/preprocessor/backwardCompat.js","layer":"ssr"},"startTime":1775659265376,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":61433,"timestamp":6052317468182,"id":2728,"parentId":2690,"tags":{},"startTime":1775659265376,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":413,"timestamp":6052317529648,"id":2869,"parentId":2690,"tags":{},"startTime":1775659265438,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":64646,"timestamp":6052317467924,"id":2690,"parentId":2482,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/DataDiffer.js","layer":"ssr"},"startTime":1775659265376,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":64441,"timestamp":6052317468187,"id":2730,"parentId":2692,"tags":{},"startTime":1775659265376,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":152,"timestamp":6052317532657,"id":2870,"parentId":2692,"tags":{},"startTime":1775659265441,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":65059,"timestamp":6052317468000,"id":2692,"parentId":2492,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/processor/dataFilter.js","layer":"ssr"},"startTime":1775659265376,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":68203,"timestamp":6052317468177,"id":2726,"parentId":2688,"tags":{},"startTime":1775659265376,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":37,"timestamp":6052317536391,"id":2871,"parentId":2688,"tags":{},"startTime":1775659265445,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":69626,"timestamp":6052317467826,"id":2688,"parentId":2482,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/animation/morphTransitionHelper.js","layer":"ssr"},"startTime":1775659265376,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":69283,"timestamp":6052317468180,"id":2727,"parentId":2689,"tags":{},"startTime":1775659265376,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":36,"timestamp":6052317537469,"id":2872,"parentId":2689,"tags":{},"startTime":1775659265446,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":70156,"timestamp":6052317467883,"id":2689,"parentId":2482,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/animation/basicTransition.js","layer":"ssr"},"startTime":1775659265376,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":69875,"timestamp":6052317468172,"id":2724,"parentId":2686,"tags":{},"startTime":1775659265376,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":27,"timestamp":6052317538051,"id":2873,"parentId":2686,"tags":{},"startTime":1775659265446,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":70415,"timestamp":6052317467751,"id":2686,"parentId":2468,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/event.js","layer":"ssr"},"startTime":1775659265376,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":70009,"timestamp":6052317468185,"id":2729,"parentId":2691,"tags":{},"startTime":1775659265376,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":30,"timestamp":6052317538198,"id":2874,"parentId":2691,"tags":{},"startTime":1775659265446,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":70588,"timestamp":6052317467961,"id":2691,"parentId":2473,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/tooltip/seriesFormatTooltip.js","layer":"ssr"},"startTime":1775659265376,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":70475,"timestamp":6052317468175,"id":2725,"parentId":2687,"tags":{},"startTime":1775659265376,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":38,"timestamp":6052317538656,"id":2875,"parentId":2687,"tags":{},"startTime":1775659265447,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":72017,"timestamp":6052317467788,"id":2687,"parentId":2473,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/layout.js","layer":"ssr"},"startTime":1775659265376,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":71745,"timestamp":6052317468145,"id":2714,"parentId":2676,"tags":{},"startTime":1775659265376,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":32,"timestamp":6052317539896,"id":2876,"parentId":2676,"tags":{},"startTime":1775659265448,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":73370,"timestamp":6052317467320,"id":2676,"parentId":2466,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/Axis.js","layer":"ssr"},"startTime":1775659265375,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":72502,"timestamp":6052317473835,"id":2765,"parentId":2733,"tags":{},"startTime":1775659265382,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":42,"timestamp":6052317546346,"id":2877,"parentId":2733,"tags":{},"startTime":1775659265454,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":74153,"timestamp":6052317472746,"id":2733,"parentId":2492,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/pie/PieSeries.js","layer":"ssr"},"startTime":1775659265381,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":73079,"timestamp":6052317473846,"id":2767,"parentId":2735,"tags":{},"startTime":1775659265382,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":49,"timestamp":6052317546939,"id":2878,"parentId":2735,"tags":{},"startTime":1775659265455,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":74578,"timestamp":6052317472817,"id":2735,"parentId":2489,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/line/LineSeries.js","layer":"ssr"},"startTime":1775659265381,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":73586,"timestamp":6052317473819,"id":2763,"parentId":2731,"tags":{},"startTime":1775659265382,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":29,"timestamp":6052317547410,"id":2879,"parentId":2731,"tags":{},"startTime":1775659265456,"traceId":"63571fab0751eb1f"}]
-[{"name":"build-module-js","duration":75061,"timestamp":6052317472655,"id":2731,"parentId":2492,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/processor/negativeDataFilter.js","layer":"ssr"},"startTime":1775659265381,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":73882,"timestamp":6052317473841,"id":2766,"parentId":2734,"tags":{},"startTime":1775659265382,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":31,"timestamp":6052317547728,"id":2880,"parentId":2734,"tags":{},"startTime":1775659265456,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":75674,"timestamp":6052317472783,"id":2734,"parentId":2492,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/pie/PieView.js","layer":"ssr"},"startTime":1775659265381,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":74633,"timestamp":6052317473830,"id":2764,"parentId":2732,"tags":{},"startTime":1775659265382,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":41,"timestamp":6052317548468,"id":2881,"parentId":2732,"tags":{},"startTime":1775659265457,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":77445,"timestamp":6052317472709,"id":2732,"parentId":2492,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/pie/pieLayout.js","layer":"ssr"},"startTime":1775659265381,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":76341,"timestamp":6052317473857,"id":2770,"parentId":2738,"tags":{},"startTime":1775659265382,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":28,"timestamp":6052317550205,"id":2882,"parentId":2738,"tags":{},"startTime":1775659265458,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":77727,"timestamp":6052317472926,"id":2738,"parentId":2466,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/matrix.js","layer":"ssr"},"startTime":1775659265381,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":76808,"timestamp":6052317473862,"id":2772,"parentId":2740,"tags":{},"startTime":1775659265382,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":27,"timestamp":6052317550674,"id":2883,"parentId":2740,"tags":{},"startTime":1775659265459,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":78151,"timestamp":6052317472994,"id":2740,"parentId":2466,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/env.js","layer":"ssr"},"startTime":1775659265381,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":77289,"timestamp":6052317473864,"id":2773,"parentId":2741,"tags":{},"startTime":1775659265382,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":26,"timestamp":6052317551157,"id":2884,"parentId":2741,"tags":{},"startTime":1775659265459,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":78640,"timestamp":6052317473026,"id":2741,"parentId":2466,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/vector.js","layer":"ssr"},"startTime":1775659265381,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":77806,"timestamp":6052317473866,"id":2774,"parentId":2742,"tags":{},"startTime":1775659265382,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":33,"timestamp":6052317551677,"id":2885,"parentId":2742,"tags":{},"startTime":1775659265460,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":79838,"timestamp":6052317473060,"id":2742,"parentId":2468,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/timsort.js","layer":"ssr"},"startTime":1775659265381,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":79054,"timestamp":6052317473850,"id":2768,"parentId":2736,"tags":{},"startTime":1775659265382,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":30,"timestamp":6052317552909,"id":2886,"parentId":2736,"tags":{},"startTime":1775659265461,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":81945,"timestamp":6052317472857,"id":2736,"parentId":2448,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/zrender.js","layer":"ssr"},"startTime":1775659265381,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":80983,"timestamp":6052317473853,"id":2769,"parentId":2737,"tags":{},"startTime":1775659265382,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":54,"timestamp":6052317554849,"id":2887,"parentId":2737,"tags":{},"startTime":1775659265463,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":84751,"timestamp":6052317472892,"id":2737,"parentId":2448,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/util.js","layer":"ssr"},"startTime":1775659265381,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":83801,"timestamp":6052317473871,"id":2776,"parentId":2744,"tags":{},"startTime":1775659265382,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":46,"timestamp":6052317557681,"id":2888,"parentId":2744,"tags":{},"startTime":1775659265466,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":86464,"timestamp":6052317473128,"id":2744,"parentId":2466,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/canvas/graphic.js","layer":"ssr"},"startTime":1775659265381,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":85761,"timestamp":6052317473869,"id":2775,"parentId":2743,"tags":{},"startTime":1775659265382,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":42,"timestamp":6052317559639,"id":2889,"parentId":2743,"tags":{},"startTime":1775659265468,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":87158,"timestamp":6052317473094,"id":2743,"parentId":2468,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/Eventful.js","layer":"ssr"},"startTime":1775659265381,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":86392,"timestamp":6052317473876,"id":2778,"parentId":2746,"tags":{},"startTime":1775659265382,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":40,"timestamp":6052317560276,"id":2890,"parentId":2746,"tags":{},"startTime":1775659265468,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":89013,"timestamp":6052317473195,"id":2746,"parentId":2470,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/Group.js","layer":"ssr"},"startTime":1775659265381,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":88361,"timestamp":6052317473874,"id":2777,"parentId":2745,"tags":{},"startTime":1775659265382,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":41,"timestamp":6052317562242,"id":2891,"parentId":2745,"tags":{},"startTime":1775659265470,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":90635,"timestamp":6052317473161,"id":2745,"parentId":2466,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/tool/color.js","layer":"ssr"},"startTime":1775659265381,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":89925,"timestamp":6052317473880,"id":2780,"parentId":2748,"tags":{},"startTime":1775659265382,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":39,"timestamp":6052317563812,"id":2892,"parentId":2748,"tags":{},"startTime":1775659265472,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":91549,"timestamp":6052317473265,"id":2748,"parentId":2482,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/Path.js","layer":"ssr"},"startTime":1775659265381,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":90937,"timestamp":6052317473885,"id":2782,"parentId":2750,"tags":{},"startTime":1775659265382,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":30,"timestamp":6052317564827,"id":2893,"parentId":2750,"tags":{},"startTime":1775659265473,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":91800,"timestamp":6052317473332,"id":2750,"parentId":2489,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/processor/dataSample.js","layer":"ssr"},"startTime":1775659265381,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":91280,"timestamp":6052317473859,"id":2771,"parentId":2739,"tags":{},"startTime":1775659265382,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":123,"timestamp":6052317565145,"id":2894,"parentId":2739,"tags":{},"startTime":1775659265473,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":92820,"timestamp":6052317472959,"id":2739,"parentId":2466,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/platform.js","layer":"ssr"},"startTime":1775659265381,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":91902,"timestamp":6052317473888,"id":2783,"parentId":2751,"tags":{},"startTime":1775659265382,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":31,"timestamp":6052317565795,"id":2895,"parentId":2751,"tags":{},"startTime":1775659265474,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":92669,"timestamp":6052317473365,"id":2751,"parentId":2490,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/bar/BarSeries.js","layer":"ssr"},"startTime":1775659265382,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":92164,"timestamp":6052317473878,"id":2779,"parentId":2747,"tags":{},"startTime":1775659265382,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":40,"timestamp":6052317566046,"id":2896,"parentId":2747,"tags":{},"startTime":1775659265474,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":94578,"timestamp":6052317473229,"id":2747,"parentId":2484,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/canvas/Painter.js","layer":"ssr"},"startTime":1775659265381,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":93942,"timestamp":6052317473890,"id":2784,"parentId":2752,"tags":{},"startTime":1775659265382,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":57,"timestamp":6052317567838,"id":2897,"parentId":2752,"tags":{},"startTime":1775659265476,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":97312,"timestamp":6052317473399,"id":2752,"parentId":2489,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/line/LineView.js","layer":"ssr"},"startTime":1775659265382,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":96842,"timestamp":6052317473898,"id":2787,"parentId":2755,"tags":{},"startTime":1775659265382,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":43,"timestamp":6052317570746,"id":2898,"parentId":2755,"tags":{},"startTime":1775659265479,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":97471,"timestamp":6052317473504,"id":2755,"parentId":2491,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/bar/PictorialBarSeries.js","layer":"ssr"},"startTime":1775659265382,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":97100,"timestamp":6052317473883,"id":2781,"parentId":2749,"tags":{},"startTime":1775659265382,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":35,"timestamp":6052317570988,"id":2899,"parentId":2749,"tags":{},"startTime":1775659265479,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":98692,"timestamp":6052317473299,"id":2749,"parentId":2482,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/Displayable.js","layer":"ssr"},"startTime":1775659265381,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":98100,"timestamp":6052317473900,"id":2788,"parentId":2756,"tags":{},"startTime":1775659265382,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":40,"timestamp":6052317572005,"id":2900,"parentId":2756,"tags":{},"startTime":1775659265480,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":98734,"timestamp":6052317473540,"id":2756,"parentId":2493,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/scatter/ScatterSeries.js","layer":"ssr"},"startTime":1775659265382,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":98385,"timestamp":6052317473895,"id":2786,"parentId":2754,"tags":{},"startTime":1775659265382,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":47,"timestamp":6052317572285,"id":2901,"parentId":2754,"tags":{},"startTime":1775659265480,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":103393,"timestamp":6052317473466,"id":2754,"parentId":2491,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/bar/PictorialBarView.js","layer":"ssr"},"startTime":1775659265382,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":102984,"timestamp":6052317473893,"id":2785,"parentId":2753,"tags":{},"startTime":1775659265382,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":108,"timestamp":6052317576926,"id":2902,"parentId":2753,"tags":{},"startTime":1775659265485,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":106593,"timestamp":6052317473433,"id":2753,"parentId":2490,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/bar/BarView.js","layer":"ssr"},"startTime":1775659265382,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":106136,"timestamp":6052317473904,"id":2789,"parentId":2757,"tags":{},"startTime":1775659265382,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":35,"timestamp":6052317580047,"id":2903,"parentId":2757,"tags":{},"startTime":1775659265488,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":106852,"timestamp":6052317473578,"id":2757,"parentId":2493,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/scatter/ScatterView.js","layer":"ssr"},"startTime":1775659265382,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":106529,"timestamp":6052317473907,"id":2790,"parentId":2758,"tags":{},"startTime":1775659265382,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":34,"timestamp":6052317580440,"id":2904,"parentId":2758,"tags":{},"startTime":1775659265489,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":107272,"timestamp":6052317473619,"id":2758,"parentId":2495,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/map/MapView.js","layer":"ssr"},"startTime":1775659265382,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":106985,"timestamp":6052317473914,"id":2793,"parentId":2761,"tags":{},"startTime":1775659265382,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":33,"timestamp":6052317580905,"id":2905,"parentId":2761,"tags":{},"startTime":1775659265489,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":107392,"timestamp":6052317473723,"id":2761,"parentId":2495,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/map/mapSymbolLayout.js","layer":"ssr"},"startTime":1775659265382,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":107210,"timestamp":6052317473911,"id":2792,"parentId":2760,"tags":{},"startTime":1775659265382,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":38,"timestamp":6052317581127,"id":2906,"parentId":2760,"tags":{},"startTime":1775659265489,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":108277,"timestamp":6052317473687,"id":2760,"parentId":2495,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/map/mapDataStatistic.js","layer":"ssr"},"startTime":1775659265382,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":108064,"timestamp":6052317473909,"id":2791,"parentId":2759,"tags":{},"startTime":1775659265382,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":42,"timestamp":6052317581979,"id":2907,"parentId":2759,"tags":{},"startTime":1775659265490,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":108974,"timestamp":6052317473653,"id":2759,"parentId":2495,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/map/MapSeries.js","layer":"ssr"},"startTime":1775659265382,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":108718,"timestamp":6052317473916,"id":2794,"parentId":2762,"tags":{},"startTime":1775659265382,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":30,"timestamp":6052317582639,"id":2908,"parentId":2762,"tags":{},"startTime":1775659265491,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":109081,"timestamp":6052317473767,"id":2762,"parentId":2494,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/radar/radarLayout.js","layer":"ssr"},"startTime":1775659265382,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":114841,"timestamp":6052317475425,"id":2818,"parentId":2796,"tags":{},"startTime":1775659265384,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":32,"timestamp":6052317590276,"id":2909,"parentId":2796,"tags":{},"startTime":1775659265498,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":116650,"timestamp":6052317474570,"id":2796,"parentId":2494,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/radar/RadarSeries.js","layer":"ssr"},"startTime":1775659265383,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":115803,"timestamp":6052317475428,"id":2819,"parentId":2797,"tags":{},"startTime":1775659265384,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":34,"timestamp":6052317591238,"id":2910,"parentId":2797,"tags":{},"startTime":1775659265499,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":117244,"timestamp":6052317474651,"id":2797,"parentId":2494,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/radar/RadarView.js","layer":"ssr"},"startTime":1775659265383,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":116469,"timestamp":6052317475434,"id":2821,"parentId":2799,"tags":{},"startTime":1775659265384,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":96,"timestamp":6052317591909,"id":2911,"parentId":2799,"tags":{},"startTime":1775659265500,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":121132,"timestamp":6052317474730,"id":2799,"parentId":2500,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/treemap/TreemapView.js","layer":"ssr"},"startTime":1775659265383,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":120467,"timestamp":6052317475431,"id":2820,"parentId":2798,"tags":{},"startTime":1775659265384,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":49,"timestamp":6052317595914,"id":2912,"parentId":2798,"tags":{},"startTime":1775659265504,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":121565,"timestamp":6052317474693,"id":2798,"parentId":2500,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/treemap/treemapAction.js","layer":"ssr"},"startTime":1775659265383,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":120835,"timestamp":6052317475437,"id":2822,"parentId":2800,"tags":{},"startTime":1775659265384,"traceId":"63571fab0751eb1f"}]
-[{"name":"next-swc-loader","duration":70,"timestamp":6052317596403,"id":2913,"parentId":2800,"tags":{},"startTime":1775659265505,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":122560,"timestamp":6052317474764,"id":2800,"parentId":2500,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/treemap/TreemapSeries.js","layer":"ssr"},"startTime":1775659265383,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":121900,"timestamp":6052317475440,"id":2823,"parentId":2801,"tags":{},"startTime":1775659265384,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":51,"timestamp":6052317597347,"id":2914,"parentId":2801,"tags":{},"startTime":1775659265505,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":123161,"timestamp":6052317474800,"id":2801,"parentId":2500,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/treemap/treemapVisual.js","layer":"ssr"},"startTime":1775659265383,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":122523,"timestamp":6052317475450,"id":2826,"parentId":2804,"tags":{},"startTime":1775659265384,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":36,"timestamp":6052317597980,"id":2915,"parentId":2804,"tags":{},"startTime":1775659265506,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":123360,"timestamp":6052317474916,"id":2804,"parentId":2468,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/visual/helper.js","layer":"ssr"},"startTime":1775659265383,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":122834,"timestamp":6052317475452,"id":2827,"parentId":2805,"tags":{},"startTime":1775659265384,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":29,"timestamp":6052317598290,"id":2916,"parentId":2805,"tags":{},"startTime":1775659265506,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":123482,"timestamp":6052317474957,"id":2805,"parentId":2468,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/visual/decal.js","layer":"ssr"},"startTime":1775659265383,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":123028,"timestamp":6052317475418,"id":2817,"parentId":2795,"tags":{},"startTime":1775659265384,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":29,"timestamp":6052317598451,"id":2917,"parentId":2795,"tags":{},"startTime":1775659265507,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":124299,"timestamp":6052317474465,"id":2795,"parentId":2494,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/radar/backwardCompat.js","layer":"ssr"},"startTime":1775659265383,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":123630,"timestamp":6052317475455,"id":2828,"parentId":2806,"tags":{},"startTime":1775659265384,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":59,"timestamp":6052317599092,"id":2918,"parentId":2806,"tags":{},"startTime":1775659265507,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":124516,"timestamp":6052317474990,"id":2806,"parentId":2468,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/loading/default.js","layer":"ssr"},"startTime":1775659265383,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":124061,"timestamp":6052317475460,"id":2830,"parentId":2808,"tags":{},"startTime":1775659265384,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":34,"timestamp":6052317599529,"id":2919,"parentId":2808,"tags":{},"startTime":1775659265508,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":124756,"timestamp":6052317475058,"id":2808,"parentId":2468,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/theme/dark.js","layer":"ssr"},"startTime":1775659265383,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":124380,"timestamp":6052317475443,"id":2824,"parentId":2802,"tags":{},"startTime":1775659265384,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":36,"timestamp":6052317599829,"id":2920,"parentId":2802,"tags":{},"startTime":1775659265508,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":125548,"timestamp":6052317474836,"id":2802,"parentId":2468,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/visual/style.js","layer":"ssr"},"startTime":1775659265383,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":124937,"timestamp":6052317475457,"id":2829,"parentId":2807,"tags":{},"startTime":1775659265384,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":28,"timestamp":6052317600399,"id":2921,"parentId":2807,"tags":{},"startTime":1775659265509,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":125484,"timestamp":6052317475024,"id":2807,"parentId":2468,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/theme/light.js","layer":"ssr"},"startTime":1775659265383,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":125047,"timestamp":6052317475465,"id":2832,"parentId":2810,"tags":{},"startTime":1775659265384,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":37,"timestamp":6052317600517,"id":2922,"parentId":2810,"tags":{},"startTime":1775659265509,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":126284,"timestamp":6052317475130,"id":2810,"parentId":2468,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/helper/transform.js","layer":"ssr"},"startTime":1775659265383,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":125974,"timestamp":6052317475446,"id":2825,"parentId":2803,"tags":{},"startTime":1775659265384,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":30,"timestamp":6052317601425,"id":2923,"parentId":2803,"tags":{},"startTime":1775659265510,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":126825,"timestamp":6052317474874,"id":2803,"parentId":2468,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/visual/symbol.js","layer":"ssr"},"startTime":1775659265383,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":126228,"timestamp":6052317475477,"id":2836,"parentId":2814,"tags":{},"startTime":1775659265384,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":29,"timestamp":6052317601710,"id":2924,"parentId":2814,"tags":{},"startTime":1775659265510,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":126782,"timestamp":6052317475271,"id":2814,"parentId":2496,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/tree/TreeSeries.js","layer":"ssr"},"startTime":1775659265383,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":126587,"timestamp":6052317475471,"id":2834,"parentId":2812,"tags":{},"startTime":1775659265384,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":27,"timestamp":6052317602063,"id":2925,"parentId":2812,"tags":{},"startTime":1775659265510,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":127095,"timestamp":6052317475202,"id":2812,"parentId":2473,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/mixin/palette.js","layer":"ssr"},"startTime":1775659265383,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":126823,"timestamp":6052317475480,"id":2837,"parentId":2815,"tags":{},"startTime":1775659265384,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":60,"timestamp":6052317602307,"id":2926,"parentId":2815,"tags":{},"startTime":1775659265510,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":128696,"timestamp":6052317475308,"id":2815,"parentId":2500,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/treemap/treemapLayout.js","layer":"ssr"},"startTime":1775659265383,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":128547,"timestamp":6052317475474,"id":2835,"parentId":2813,"tags":{},"startTime":1775659265384,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":51,"timestamp":6052317604030,"id":2927,"parentId":2813,"tags":{},"startTime":1775659265512,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":129536,"timestamp":6052317475235,"id":2813,"parentId":2473,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/mixin/dataFormat.js","layer":"ssr"},"startTime":1775659265383,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":129313,"timestamp":6052317475468,"id":2833,"parentId":2811,"tags":{},"startTime":1775659265384,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":40,"timestamp":6052317604786,"id":2928,"parentId":2811,"tags":{},"startTime":1775659265513,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":130491,"timestamp":6052317475167,"id":2811,"parentId":2473,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/helper/sourceManager.js","layer":"ssr"},"startTime":1775659265383,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":130184,"timestamp":6052317475482,"id":2838,"parentId":2816,"tags":{},"startTime":1775659265384,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":29,"timestamp":6052317605671,"id":2929,"parentId":2816,"tags":{},"startTime":1775659265514,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":130738,"timestamp":6052317475345,"id":2816,"parentId":2496,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/tree/treeLayout.js","layer":"ssr"},"startTime":1775659265383,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":130647,"timestamp":6052317475463,"id":2831,"parentId":2809,"tags":{},"startTime":1775659265384,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":29,"timestamp":6052317606115,"id":2930,"parentId":2809,"tags":{},"startTime":1775659265514,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":131336,"timestamp":6052317475091,"id":2809,"parentId":2468,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/legacy/dataSelectAction.js","layer":"ssr"},"startTime":1775659265383,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":15082,"timestamp":6052317656539,"id":2934,"parentId":2931,"tags":{},"startTime":1775659265565,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":48,"timestamp":6052317671636,"id":3071,"parentId":2931,"tags":{},"startTime":1775659265580,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":15882,"timestamp":6052317656158,"id":2931,"parentId":2496,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/tree/treeVisual.js","layer":"ssr"},"startTime":1775659265564,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":15504,"timestamp":6052317656553,"id":2935,"parentId":2932,"tags":{},"startTime":1775659265565,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":29,"timestamp":6052317672062,"id":3072,"parentId":2932,"tags":{},"startTime":1775659265580,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":15971,"timestamp":6052317656292,"id":2932,"parentId":2496,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/tree/treeAction.js","layer":"ssr"},"startTime":1775659265564,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":15732,"timestamp":6052317656562,"id":2936,"parentId":2933,"tags":{},"startTime":1775659265565,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":37,"timestamp":6052317672298,"id":3073,"parentId":2933,"tags":{},"startTime":1775659265580,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":17905,"timestamp":6052317656385,"id":2933,"parentId":2496,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/tree/TreeView.js","layer":"ssr"},"startTime":1775659265564,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":7362,"timestamp":6052317667789,"id":2990,"parentId":2937,"tags":{},"startTime":1775659265576,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":32,"timestamp":6052317675167,"id":3074,"parentId":2937,"tags":{},"startTime":1775659265583,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":10261,"timestamp":6052317665230,"id":2937,"parentId":2497,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/categoryFilter.js","layer":"ssr"},"startTime":1775659265573,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":7690,"timestamp":6052317667809,"id":2991,"parentId":2938,"tags":{},"startTime":1775659265576,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":29,"timestamp":6052317675503,"id":3075,"parentId":2938,"tags":{},"startTime":1775659265584,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":10388,"timestamp":6052317665345,"id":2938,"parentId":2497,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/edgeVisual.js","layer":"ssr"},"startTime":1775659265573,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":8578,"timestamp":6052317667825,"id":2993,"parentId":2940,"tags":{},"startTime":1775659265576,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":28,"timestamp":6052317676409,"id":3076,"parentId":2940,"tags":{},"startTime":1775659265585,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":11182,"timestamp":6052317665480,"id":2940,"parentId":2497,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/simpleLayout.js","layer":"ssr"},"startTime":1775659265574,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":8850,"timestamp":6052317667817,"id":2992,"parentId":2939,"tags":{},"startTime":1775659265576,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":29,"timestamp":6052317676672,"id":3077,"parentId":2939,"tags":{},"startTime":1775659265585,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":11461,"timestamp":6052317665417,"id":2939,"parentId":2497,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/categoryVisual.js","layer":"ssr"},"startTime":1775659265574,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":9022,"timestamp":6052317667861,"id":3000,"parentId":2947,"tags":{},"startTime":1775659265576,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":27,"timestamp":6052317676886,"id":3078,"parentId":2947,"tags":{},"startTime":1775659265585,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":11274,"timestamp":6052317665855,"id":2947,"parentId":2497,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/createView.js","layer":"ssr"},"startTime":1775659265574,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":9302,"timestamp":6052317667832,"id":2994,"parentId":2941,"tags":{},"startTime":1775659265576,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":27,"timestamp":6052317677137,"id":3079,"parentId":2941,"tags":{},"startTime":1775659265585,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":11865,"timestamp":6052317665550,"id":2941,"parentId":2489,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/layout/points.js","layer":"ssr"},"startTime":1775659265574,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":9599,"timestamp":6052317667838,"id":2995,"parentId":2942,"tags":{},"startTime":1775659265576,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":41,"timestamp":6052317677443,"id":3080,"parentId":2942,"tags":{},"startTime":1775659265586,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":13041,"timestamp":6052317665645,"id":2942,"parentId":2490,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/layout/barGrid.js","layer":"ssr"},"startTime":1775659265574,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":10988,"timestamp":6052317667843,"id":2996,"parentId":2943,"tags":{},"startTime":1775659265576,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":35,"timestamp":6052317678838,"id":3081,"parentId":2943,"tags":{},"startTime":1775659265587,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":14066,"timestamp":6052317665691,"id":2943,"parentId":2483,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/Painter.js","layer":"ssr"},"startTime":1775659265574,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":11908,"timestamp":6052317667857,"id":2999,"parentId":2946,"tags":{},"startTime":1775659265576,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":30,"timestamp":6052317679769,"id":3082,"parentId":2946,"tags":{},"startTime":1775659265588,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":14376,"timestamp":6052317665812,"id":2946,"parentId":2497,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/forceLayout.js","layer":"ssr"},"startTime":1775659265574,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":12330,"timestamp":6052317667864,"id":3001,"parentId":2948,"tags":{},"startTime":1775659265576,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":32,"timestamp":6052317680198,"id":3083,"parentId":2948,"tags":{},"startTime":1775659265588,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":16871,"timestamp":6052317665906,"id":2948,"parentId":2497,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/GraphView.js","layer":"ssr"},"startTime":1775659265574,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":14917,"timestamp":6052317667872,"id":3003,"parentId":2950,"tags":{},"startTime":1775659265576,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":43,"timestamp":6052317682796,"id":3084,"parentId":2950,"tags":{},"startTime":1775659265591,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":17141,"timestamp":6052317665983,"id":2950,"parentId":2498,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/gauge/GaugeSeries.js","layer":"ssr"},"startTime":1775659265574,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":15254,"timestamp":6052317667876,"id":3004,"parentId":2951,"tags":{},"startTime":1775659265576,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":38,"timestamp":6052317683135,"id":3085,"parentId":2951,"tags":{},"startTime":1775659265591,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":17356,"timestamp":6052317666023,"id":2951,"parentId":2504,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/candlestick/CandlestickSeries.js","layer":"ssr"},"startTime":1775659265574,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":15504,"timestamp":6052317667885,"id":3006,"parentId":2953,"tags":{},"startTime":1775659265576,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":34,"timestamp":6052317683395,"id":3086,"parentId":2953,"tags":{},"startTime":1775659265591,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":17488,"timestamp":6052317666099,"id":2953,"parentId":2504,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/candlestick/preprocessor.js","layer":"ssr"},"startTime":1775659265574,"traceId":"63571fab0751eb1f"}]
-[{"name":"read-resource","duration":15802,"timestamp":6052317667888,"id":3007,"parentId":2954,"tags":{},"startTime":1775659265576,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":30,"timestamp":6052317683696,"id":3087,"parentId":2954,"tags":{},"startTime":1775659265592,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":17770,"timestamp":6052317666164,"id":2954,"parentId":2504,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/candlestick/candlestickVisual.js","layer":"ssr"},"startTime":1775659265574,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":16088,"timestamp":6052317667852,"id":2998,"parentId":2945,"tags":{},"startTime":1775659265576,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":29,"timestamp":6052317683945,"id":3088,"parentId":2945,"tags":{},"startTime":1775659265592,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":18290,"timestamp":6052317665768,"id":2945,"parentId":2497,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/circularLayout.js","layer":"ssr"},"startTime":1775659265574,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":16171,"timestamp":6052317667891,"id":3008,"parentId":2955,"tags":{},"startTime":1775659265576,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":28,"timestamp":6052317684065,"id":3089,"parentId":2955,"tags":{},"startTime":1775659265592,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":18014,"timestamp":6052317666228,"id":2955,"parentId":2503,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/boxplot/BoxplotSeries.js","layer":"ssr"},"startTime":1775659265574,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":16368,"timestamp":6052317667880,"id":3005,"parentId":2952,"tags":{},"startTime":1775659265576,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":34,"timestamp":6052317684251,"id":3090,"parentId":2952,"tags":{},"startTime":1775659265592,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":18939,"timestamp":6052317666062,"id":2952,"parentId":2504,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/candlestick/CandlestickView.js","layer":"ssr"},"startTime":1775659265574,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":17112,"timestamp":6052317667894,"id":3009,"parentId":2956,"tags":{},"startTime":1775659265576,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":31,"timestamp":6052317685010,"id":3091,"parentId":2956,"tags":{},"startTime":1775659265593,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":19236,"timestamp":6052317666288,"id":2956,"parentId":2504,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/candlestick/candlestickLayout.js","layer":"ssr"},"startTime":1775659265574,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":17684,"timestamp":6052317667848,"id":2997,"parentId":2944,"tags":{},"startTime":1775659265576,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":30,"timestamp":6052317685536,"id":3092,"parentId":2944,"tags":{},"startTime":1775659265594,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":20314,"timestamp":6052317665731,"id":2944,"parentId":2497,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/View.js","layer":"ssr"},"startTime":1775659265574,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":18139,"timestamp":6052317667910,"id":3013,"parentId":2960,"tags":{},"startTime":1775659265576,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":27,"timestamp":6052317686053,"id":3093,"parentId":2960,"tags":{},"startTime":1775659265594,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":19585,"timestamp":6052317666641,"id":2960,"parentId":2506,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/lines/linesVisual.js","layer":"ssr"},"startTime":1775659265575,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":18361,"timestamp":6052317667868,"id":3002,"parentId":2949,"tags":{},"startTime":1775659265576,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":29,"timestamp":6052317686233,"id":3094,"parentId":2949,"tags":{},"startTime":1775659265594,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":20815,"timestamp":6052317665945,"id":2949,"parentId":2497,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/GraphSeries.js","layer":"ssr"},"startTime":1775659265574,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":18870,"timestamp":6052317667898,"id":3010,"parentId":2957,"tags":{},"startTime":1775659265576,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":34,"timestamp":6052317686773,"id":3095,"parentId":2957,"tags":{},"startTime":1775659265595,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":20839,"timestamp":6052317666357,"id":2957,"parentId":2503,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/boxplot/BoxplotView.js","layer":"ssr"},"startTime":1775659265574,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":19297,"timestamp":6052317667905,"id":3012,"parentId":2959,"tags":{},"startTime":1775659265576,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":29,"timestamp":6052317687205,"id":3096,"parentId":2959,"tags":{},"startTime":1775659265595,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":21289,"timestamp":6052317666601,"id":2959,"parentId":2506,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/lines/LinesView.js","layer":"ssr"},"startTime":1775659265575,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":19975,"timestamp":6052317667924,"id":3017,"parentId":2964,"tags":{},"startTime":1775659265576,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":35,"timestamp":6052317687904,"id":3097,"parentId":2964,"tags":{},"startTime":1775659265596,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":21588,"timestamp":6052317666844,"id":2964,"parentId":2505,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/effectScatter/EffectScatterView.js","layer":"ssr"},"startTime":1775659265575,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":20512,"timestamp":6052317667927,"id":3018,"parentId":2965,"tags":{},"startTime":1775659265576,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":33,"timestamp":6052317688443,"id":3098,"parentId":2965,"tags":{},"startTime":1775659265597,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":21762,"timestamp":6052317666882,"id":2965,"parentId":2505,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/effectScatter/EffectScatterSeries.js","layer":"ssr"},"startTime":1775659265575,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":20730,"timestamp":6052317667920,"id":3016,"parentId":2963,"tags":{},"startTime":1775659265576,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":29,"timestamp":6052317688654,"id":3099,"parentId":2963,"tags":{},"startTime":1775659265597,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":22143,"timestamp":6052317666805,"id":2963,"parentId":2506,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/lines/linesLayout.js","layer":"ssr"},"startTime":1775659265575,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":21051,"timestamp":6052317667901,"id":3011,"parentId":2958,"tags":{},"startTime":1775659265576,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":29,"timestamp":6052317688956,"id":3100,"parentId":2958,"tags":{},"startTime":1775659265597,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":22791,"timestamp":6052317666557,"id":2958,"parentId":2503,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/boxplot/boxplotLayout.js","layer":"ssr"},"startTime":1775659265575,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":21436,"timestamp":6052317667917,"id":3015,"parentId":2962,"tags":{},"startTime":1775659265576,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":26,"timestamp":6052317689356,"id":3101,"parentId":2962,"tags":{},"startTime":1775659265597,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":22753,"timestamp":6052317666757,"id":2962,"parentId":2503,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/boxplot/boxplotTransform.js","layer":"ssr"},"startTime":1775659265575,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":21584,"timestamp":6052317667940,"id":3022,"parentId":2969,"tags":{},"startTime":1775659265576,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":28,"timestamp":6052317689529,"id":3102,"parentId":2969,"tags":{},"startTime":1775659265598,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":22738,"timestamp":6052317667034,"id":2969,"parentId":2510,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/custom/CustomSeries.js","layer":"ssr"},"startTime":1775659265575,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":21843,"timestamp":6052317667934,"id":3020,"parentId":2967,"tags":{},"startTime":1775659265576,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":34,"timestamp":6052317689781,"id":3103,"parentId":2967,"tags":{},"startTime":1775659265598,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":24275,"timestamp":6052317666961,"id":2967,"parentId":2507,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/heatmap/HeatmapView.js","layer":"ssr"},"startTime":1775659265575,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":23307,"timestamp":6052317667937,"id":3021,"parentId":2968,"tags":{},"startTime":1775659265576,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":100,"timestamp":6052317691248,"id":3104,"parentId":2968,"tags":{},"startTime":1775659265599,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":24652,"timestamp":6052317666997,"id":2968,"parentId":2507,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/heatmap/HeatmapSeries.js","layer":"ssr"},"startTime":1775659265575,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":23743,"timestamp":6052317667914,"id":3014,"parentId":2961,"tags":{},"startTime":1775659265576,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":45,"timestamp":6052317691662,"id":3105,"parentId":2961,"tags":{},"startTime":1775659265600,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":25973,"timestamp":6052317666709,"id":2961,"parentId":2506,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/lines/LinesSeries.js","layer":"ssr"},"startTime":1775659265575,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":24745,"timestamp":6052317667944,"id":3023,"parentId":2970,"tags":{},"startTime":1775659265576,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":52,"timestamp":6052317692693,"id":3106,"parentId":2970,"tags":{},"startTime":1775659265601,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":28140,"timestamp":6052317667069,"id":2970,"parentId":2510,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/custom/CustomView.js","layer":"ssr"},"startTime":1775659265575,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":27287,"timestamp":6052317667930,"id":3019,"parentId":2966,"tags":{},"startTime":1775659265576,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":44,"timestamp":6052317695221,"id":3107,"parentId":2966,"tags":{},"startTime":1775659265603,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":32006,"timestamp":6052317666924,"id":2966,"parentId":2498,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/gauge/GaugeView.js","layer":"ssr"},"startTime":1775659265575,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":30980,"timestamp":6052317667960,"id":3030,"parentId":2977,"tags":{},"startTime":1775659265576,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":32,"timestamp":6052317698946,"id":3108,"parentId":2977,"tags":{},"startTime":1775659265607,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":31853,"timestamp":6052317667322,"id":2977,"parentId":2501,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sankey/sankeyVisual.js","layer":"ssr"},"startTime":1775659265575,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":31223,"timestamp":6052317667958,"id":3029,"parentId":2976,"tags":{},"startTime":1775659265576,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":30,"timestamp":6052317699184,"id":3109,"parentId":2976,"tags":{},"startTime":1775659265607,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":32311,"timestamp":6052317667287,"id":2976,"parentId":2501,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sankey/SankeySeries.js","layer":"ssr"},"startTime":1775659265575,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":31656,"timestamp":6052317667949,"id":3025,"parentId":2972,"tags":{},"startTime":1775659265576,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":28,"timestamp":6052317699608,"id":3110,"parentId":2972,"tags":{},"startTime":1775659265608,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":32683,"timestamp":6052317667140,"id":2972,"parentId":2502,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/parallel/ParallelSeries.js","layer":"ssr"},"startTime":1775659265575,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":31878,"timestamp":6052317667951,"id":3026,"parentId":2973,"tags":{},"startTime":1775659265576,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":30,"timestamp":6052317699833,"id":3111,"parentId":2973,"tags":{},"startTime":1775659265608,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":32794,"timestamp":6052317667176,"id":2973,"parentId":2502,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/parallel/parallelVisual.js","layer":"ssr"},"startTime":1775659265575,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":32020,"timestamp":6052317667956,"id":3028,"parentId":2975,"tags":{},"startTime":1775659265576,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":33,"timestamp":6052317699980,"id":3112,"parentId":2975,"tags":{},"startTime":1775659265608,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":33546,"timestamp":6052317667253,"id":2975,"parentId":2501,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sankey/SankeyView.js","layer":"ssr"},"startTime":1775659265575,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":32873,"timestamp":6052317667954,"id":3027,"parentId":2974,"tags":{},"startTime":1775659265576,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":53,"timestamp":6052317700831,"id":3113,"parentId":2974,"tags":{},"startTime":1775659265609,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":34059,"timestamp":6052317667215,"id":2974,"parentId":2511,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/axisModelCreator.js","layer":"ssr"},"startTime":1775659265575,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":33321,"timestamp":6052317667965,"id":3032,"parentId":2979,"tags":{},"startTime":1775659265576,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":40,"timestamp":6052317701321,"id":3114,"parentId":2979,"tags":{},"startTime":1775659265609,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":34838,"timestamp":6052317667392,"id":2979,"parentId":2508,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/themeRiver/ThemeRiverSeries.js","layer":"ssr"},"startTime":1775659265575,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":34275,"timestamp":6052317667963,"id":3031,"parentId":2978,"tags":{},"startTime":1775659265576,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":36,"timestamp":6052317702241,"id":3115,"parentId":2978,"tags":{},"startTime":1775659265610,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":36604,"timestamp":6052317667357,"id":2978,"parentId":2501,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sankey/sankeyLayout.js","layer":"ssr"},"startTime":1775659265575,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":35990,"timestamp":6052317667981,"id":3036,"parentId":2983,"tags":{},"startTime":1775659265576,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":34,"timestamp":6052317703976,"id":3116,"parentId":2983,"tags":{},"startTime":1775659265612,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":37280,"timestamp":6052317667532,"id":2983,"parentId":2515,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/geoCreator.js","layer":"ssr"},"startTime":1775659265576,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":36853,"timestamp":6052317667968,"id":3033,"parentId":2980,"tags":{},"startTime":1775659265576,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":35,"timestamp":6052317704825,"id":3117,"parentId":2980,"tags":{},"startTime":1775659265613,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":37832,"timestamp":6052317667427,"id":2980,"parentId":2508,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/themeRiver/ThemeRiverView.js","layer":"ssr"},"startTime":1775659265576,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":37281,"timestamp":6052317667984,"id":3037,"parentId":2984,"tags":{},"startTime":1775659265576,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":28,"timestamp":6052317705270,"id":3118,"parentId":2984,"tags":{},"startTime":1775659265613,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":37985,"timestamp":6052317667566,"id":2984,"parentId":2515,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/geo/GeoView.js","layer":"ssr"},"startTime":1775659265576,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":37566,"timestamp":6052317667990,"id":3040,"parentId":2987,"tags":{},"startTime":1775659265576,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":91,"timestamp":6052317705561,"id":3119,"parentId":2987,"tags":{},"startTime":1775659265614,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":38236,"timestamp":6052317667672,"id":2987,"parentId":2497,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/action/roamHelper.js","layer":"ssr"},"startTime":1775659265576,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":37929,"timestamp":6052317667988,"id":3039,"parentId":2986,"tags":{},"startTime":1775659265576,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":32,"timestamp":6052317705922,"id":3120,"parentId":2986,"tags":{},"startTime":1775659265614,"traceId":"63571fab0751eb1f"}]
-[{"name":"build-module-js","duration":38781,"timestamp":6052317667634,"id":2986,"parentId":2513,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/PolarAxisPointer.js","layer":"ssr"},"startTime":1775659265576,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":38436,"timestamp":6052317667986,"id":3038,"parentId":2985,"tags":{},"startTime":1775659265576,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":54,"timestamp":6052317706426,"id":3121,"parentId":2985,"tags":{},"startTime":1775659265615,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":39241,"timestamp":6052317667599,"id":2985,"parentId":2515,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/geoSourceManager.js","layer":"ssr"},"startTime":1775659265576,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":38852,"timestamp":6052317667995,"id":3042,"parentId":2989,"tags":{},"startTime":1775659265576,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":30,"timestamp":6052317706851,"id":3122,"parentId":2989,"tags":{},"startTime":1775659265615,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":39587,"timestamp":6052317667740,"id":2989,"parentId":2514,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/radar/RadarView.js","layer":"ssr"},"startTime":1775659265576,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":39339,"timestamp":6052317667993,"id":3041,"parentId":2988,"tags":{},"startTime":1775659265576,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":33,"timestamp":6052317707336,"id":3123,"parentId":2988,"tags":{},"startTime":1775659265615,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":40202,"timestamp":6052317667706,"id":2988,"parentId":2513,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/layout/barPolar.js","layer":"ssr"},"startTime":1775659265576,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":39943,"timestamp":6052317667970,"id":3034,"parentId":2981,"tags":{},"startTime":1775659265576,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":28,"timestamp":6052317707917,"id":3124,"parentId":2981,"tags":{},"startTime":1775659265616,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":40744,"timestamp":6052317667462,"id":2981,"parentId":2508,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/themeRiver/themeRiverLayout.js","layer":"ssr"},"startTime":1775659265576,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":40264,"timestamp":6052317667946,"id":3024,"parentId":2971,"tags":{},"startTime":1775659265576,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":29,"timestamp":6052317708214,"id":3125,"parentId":2971,"tags":{},"startTime":1775659265616,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":41566,"timestamp":6052317667104,"id":2971,"parentId":2502,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/parallel/ParallelView.js","layer":"ssr"},"startTime":1775659265575,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":40848,"timestamp":6052317667978,"id":3035,"parentId":2982,"tags":{},"startTime":1775659265576,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":28,"timestamp":6052317708830,"id":3126,"parentId":2982,"tags":{},"startTime":1775659265617,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":41796,"timestamp":6052317667497,"id":2982,"parentId":2515,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/GeoModel.js","layer":"ssr"},"startTime":1775659265576,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":45479,"timestamp":6052317670617,"id":3049,"parentId":3043,"tags":{},"startTime":1775659265579,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":35,"timestamp":6052317716108,"id":3127,"parentId":3043,"tags":{},"startTime":1775659265624,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":46575,"timestamp":6052317670043,"id":3043,"parentId":2516,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/SingleAxisPointer.js","layer":"ssr"},"startTime":1775659265578,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":46007,"timestamp":6052317670630,"id":3050,"parentId":3044,"tags":{},"startTime":1775659265579,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":50,"timestamp":6052317716642,"id":3128,"parentId":3044,"tags":{},"startTime":1775659265625,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":47629,"timestamp":6052317670187,"id":3044,"parentId":2518,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/calendar/CalendarView.js","layer":"ssr"},"startTime":1775659265578,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":47212,"timestamp":6052317670648,"id":3053,"parentId":3047,"tags":{},"startTime":1775659265579,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":32,"timestamp":6052317717866,"id":3129,"parentId":3047,"tags":{},"startTime":1775659265626,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":47793,"timestamp":6052317670427,"id":3047,"parentId":2523,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/brush/BrushView.js","layer":"ssr"},"startTime":1775659265579,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":47589,"timestamp":6052317670638,"id":3051,"parentId":3045,"tags":{},"startTime":1775659265579,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":34,"timestamp":6052317718232,"id":3130,"parentId":3045,"tags":{},"startTime":1775659265626,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":48459,"timestamp":6052317670317,"id":3045,"parentId":2519,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/graphic/GraphicModel.js","layer":"ssr"},"startTime":1775659265578,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":48137,"timestamp":6052317670644,"id":3052,"parentId":3046,"tags":{},"startTime":1775659265579,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":29,"timestamp":6052317718785,"id":3131,"parentId":3046,"tags":{},"startTime":1775659265627,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":48741,"timestamp":6052317670365,"id":3046,"parentId":2517,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/parallel/ParallelView.js","layer":"ssr"},"startTime":1775659265578,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":48460,"timestamp":6052317670651,"id":3054,"parentId":3048,"tags":{},"startTime":1775659265579,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":28,"timestamp":6052317719115,"id":3132,"parentId":3048,"tags":{},"startTime":1775659265627,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":48971,"timestamp":6052317670500,"id":3048,"parentId":2523,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/brush/BrushModel.js","layer":"ssr"},"startTime":1775659265579,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":52766,"timestamp":6052317671479,"id":3065,"parentId":3057,"tags":{},"startTime":1775659265580,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":50,"timestamp":6052317724268,"id":3133,"parentId":3057,"tags":{},"startTime":1775659265632,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":54579,"timestamp":6052317671146,"id":3057,"parentId":2511,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/cartesian/GridModel.js","layer":"ssr"},"startTime":1775659265579,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":54284,"timestamp":6052317671473,"id":3064,"parentId":3056,"tags":{},"startTime":1775659265580,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":55,"timestamp":6052317725767,"id":3134,"parentId":3056,"tags":{},"startTime":1775659265634,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":55807,"timestamp":6052317671076,"id":3056,"parentId":2519,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/graphic/GraphicView.js","layer":"ssr"},"startTime":1775659265579,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":55428,"timestamp":6052317671467,"id":3063,"parentId":3055,"tags":{},"startTime":1775659265580,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":30,"timestamp":6052317726901,"id":3135,"parentId":3055,"tags":{},"startTime":1775659265635,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":56321,"timestamp":6052317670917,"id":3055,"parentId":2523,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/brush/preprocessor.js","layer":"ssr"},"startTime":1775659265579,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":55767,"timestamp":6052317671483,"id":3066,"parentId":3058,"tags":{},"startTime":1775659265580,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":32,"timestamp":6052317727255,"id":3136,"parentId":3058,"tags":{},"startTime":1775659265635,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":56241,"timestamp":6052317671197,"id":3058,"parentId":2511,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/cartesian/AxisModel.js","layer":"ssr"},"startTime":1775659265579,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":55952,"timestamp":6052317671491,"id":3069,"parentId":3061,"tags":{},"startTime":1775659265580,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":27,"timestamp":6052317727446,"id":3137,"parentId":3061,"tags":{},"startTime":1775659265636,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":56342,"timestamp":6052317671365,"id":3061,"parentId":2513,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axis/AxisView.js","layer":"ssr"},"startTime":1775659265579,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":56227,"timestamp":6052317671485,"id":3067,"parentId":3059,"tags":{},"startTime":1775659265580,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":44,"timestamp":6052317727716,"id":3138,"parentId":3059,"tags":{},"startTime":1775659265636,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":57541,"timestamp":6052317671242,"id":3059,"parentId":2511,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/cartesian/Grid.js","layer":"ssr"},"startTime":1775659265579,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":57300,"timestamp":6052317671488,"id":3068,"parentId":3060,"tags":{},"startTime":1775659265580,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":32,"timestamp":6052317728792,"id":3139,"parentId":3060,"tags":{},"startTime":1775659265637,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":58005,"timestamp":6052317671295,"id":3060,"parentId":2511,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axis/CartesianAxisView.js","layer":"ssr"},"startTime":1775659265579,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":57812,"timestamp":6052317671493,"id":3070,"parentId":3062,"tags":{},"startTime":1775659265580,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":32,"timestamp":6052317729309,"id":3140,"parentId":3062,"tags":{},"startTime":1775659265637,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":58605,"timestamp":6052317671418,"id":3062,"parentId":2513,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axis/AngleAxisView.js","layer":"ssr"},"startTime":1775659265580,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":17280,"timestamp":6052317803187,"id":3153,"parentId":3141,"tags":{},"startTime":1775659265711,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":62,"timestamp":6052317820814,"id":3197,"parentId":3141,"tags":{},"startTime":1775659265729,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":19304,"timestamp":6052317802376,"id":3141,"parentId":2513,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axis/RadiusAxisView.js","layer":"ssr"},"startTime":1775659265710,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":18454,"timestamp":6052317803239,"id":3156,"parentId":3144,"tags":{},"startTime":1775659265711,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":35,"timestamp":6052317821699,"id":3198,"parentId":3144,"tags":{},"startTime":1775659265730,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":19411,"timestamp":6052317802734,"id":3144,"parentId":2517,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axis/ParallelAxisView.js","layer":"ssr"},"startTime":1775659265711,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":18892,"timestamp":6052317803260,"id":3160,"parentId":3148,"tags":{},"startTime":1775659265711,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":55,"timestamp":6052317822157,"id":3199,"parentId":3148,"tags":{},"startTime":1775659265730,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":20414,"timestamp":6052317802937,"id":3148,"parentId":2524,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/format.js","layer":"ssr"},"startTime":1775659265711,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":20122,"timestamp":6052317803246,"id":3157,"parentId":3145,"tags":{},"startTime":1775659265711,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":37,"timestamp":6052317823375,"id":3200,"parentId":3145,"tags":{},"startTime":1775659265731,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":21010,"timestamp":6052317802776,"id":3145,"parentId":2513,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/polar/PolarModel.js","layer":"ssr"},"startTime":1775659265711,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":20593,"timestamp":6052317803226,"id":3154,"parentId":3142,"tags":{},"startTime":1775659265711,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":59,"timestamp":6052317823824,"id":3201,"parentId":3142,"tags":{},"startTime":1775659265732,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":21701,"timestamp":6052317802586,"id":3142,"parentId":2516,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axis/SingleAxisView.js","layer":"ssr"},"startTime":1775659265711,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":21038,"timestamp":6052317803256,"id":3159,"parentId":3147,"tags":{},"startTime":1775659265711,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":33,"timestamp":6052317824300,"id":3202,"parentId":3147,"tags":{},"startTime":1775659265732,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":21857,"timestamp":6052317802872,"id":3147,"parentId":2513,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/polar/polarCreator.js","layer":"ssr"},"startTime":1775659265711,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":21472,"timestamp":6052317803263,"id":3161,"parentId":3149,"tags":{},"startTime":1775659265711,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":29,"timestamp":6052317824740,"id":3203,"parentId":3149,"tags":{},"startTime":1775659265733,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":21905,"timestamp":6052317802976,"id":3149,"parentId":2523,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/toolbox/featureManager.js","layer":"ssr"},"startTime":1775659265711,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":21656,"timestamp":6052317803232,"id":3155,"parentId":3143,"tags":{},"startTime":1775659265711,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":28,"timestamp":6052317824893,"id":3204,"parentId":3143,"tags":{},"startTime":1775659265733,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":22326,"timestamp":6052317802681,"id":3143,"parentId":2517,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axis/parallelAxisAction.js","layer":"ssr"},"startTime":1775659265711,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":21905,"timestamp":6052317803268,"id":3162,"parentId":3150,"tags":{},"startTime":1775659265711,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":38,"timestamp":6052317825176,"id":3205,"parentId":3150,"tags":{},"startTime":1775659265733,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":25501,"timestamp":6052317803014,"id":3150,"parentId":2524,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/label/labelStyle.js","layer":"ssr"},"startTime":1775659265711,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":25279,"timestamp":6052317803252,"id":3158,"parentId":3146,"tags":{},"startTime":1775659265711,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":61,"timestamp":6052317828536,"id":3206,"parentId":3146,"tags":{},"startTime":1775659265737,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":26732,"timestamp":6052317802815,"id":3146,"parentId":2513,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/polar/AxisModel.js","layer":"ssr"},"startTime":1775659265711,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":26383,"timestamp":6052317803274,"id":3164,"parentId":3152,"tags":{},"startTime":1775659265711,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":88,"timestamp":6052317829687,"id":3207,"parentId":3152,"tags":{},"startTime":1775659265738,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":26899,"timestamp":6052317803096,"id":3152,"parentId":2522,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/AxisPointerModel.js","layer":"ssr"},"startTime":1775659265711,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":26733,"timestamp":6052317803271,"id":3163,"parentId":3151,"tags":{},"startTime":1775659265711,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":33,"timestamp":6052317830009,"id":3208,"parentId":3151,"tags":{},"startTime":1775659265738,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":27860,"timestamp":6052317803054,"id":3151,"parentId":2522,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/CartesianAxisPointer.js","layer":"ssr"},"startTime":1775659265711,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":23947,"timestamp":6052317810294,"id":3175,"parentId":3165,"tags":{},"startTime":1775659265718,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":90,"timestamp":6052317834254,"id":3209,"parentId":3165,"tags":{},"startTime":1775659265742,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":25490,"timestamp":6052317809157,"id":3165,"parentId":2522,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/AxisPointerView.js","layer":"ssr"},"startTime":1775659265717,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":24331,"timestamp":6052317810326,"id":3178,"parentId":3168,"tags":{},"startTime":1775659265718,"traceId":"63571fab0751eb1f"}]
-[{"name":"next-swc-loader","duration":41,"timestamp":6052317834786,"id":3210,"parentId":3168,"tags":{},"startTime":1775659265743,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":26270,"timestamp":6052317809464,"id":3168,"parentId":2522,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/axisTrigger.js","layer":"ssr"},"startTime":1775659265718,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":25421,"timestamp":6052317810320,"id":3177,"parentId":3167,"tags":{},"startTime":1775659265718,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":34,"timestamp":6052317835745,"id":3211,"parentId":3167,"tags":{},"startTime":1775659265744,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":26983,"timestamp":6052317809416,"id":3167,"parentId":2522,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/modelHelper.js","layer":"ssr"},"startTime":1775659265717,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":26062,"timestamp":6052317810344,"id":3181,"parentId":3171,"tags":{},"startTime":1775659265718,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":28,"timestamp":6052317836410,"id":3212,"parentId":3171,"tags":{},"startTime":1775659265744,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":26796,"timestamp":6052317809727,"id":3171,"parentId":2521,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/installDataZoomSelect.js","layer":"ssr"},"startTime":1775659265718,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":26214,"timestamp":6052317810313,"id":3176,"parentId":3166,"tags":{},"startTime":1775659265718,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":72,"timestamp":6052317836531,"id":3213,"parentId":3166,"tags":{},"startTime":1775659265745,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":28405,"timestamp":6052317809303,"id":3166,"parentId":2523,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/brush/visualEncoding.js","layer":"ssr"},"startTime":1775659265717,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":27369,"timestamp":6052317810348,"id":3182,"parentId":3172,"tags":{},"startTime":1775659265718,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":33,"timestamp":6052317837722,"id":3214,"parentId":3172,"tags":{},"startTime":1775659265746,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":28077,"timestamp":6052317809867,"id":3172,"parentId":2521,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/toolbox/ToolboxModel.js","layer":"ssr"},"startTime":1775659265718,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":29588,"timestamp":6052317810351,"id":3183,"parentId":3173,"tags":{},"startTime":1775659265718,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":52,"timestamp":6052317839946,"id":3215,"parentId":3173,"tags":{},"startTime":1775659265748,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":31167,"timestamp":6052317810029,"id":3173,"parentId":2521,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/toolbox/ToolboxView.js","layer":"ssr"},"startTime":1775659265718,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":30875,"timestamp":6052317810353,"id":3184,"parentId":3174,"tags":{},"startTime":1775659265718,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":51,"timestamp":6052317841240,"id":3216,"parentId":3174,"tags":{},"startTime":1775659265749,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":31477,"timestamp":6052317810135,"id":3174,"parentId":2527,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/checkMarkerInSeries.js","layer":"ssr"},"startTime":1775659265718,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":31288,"timestamp":6052317810340,"id":3180,"parentId":3170,"tags":{},"startTime":1775659265718,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":50,"timestamp":6052317841633,"id":3217,"parentId":3170,"tags":{},"startTime":1775659265750,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":33908,"timestamp":6052317809559,"id":3170,"parentId":2520,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/tooltip/TooltipView.js","layer":"ssr"},"startTime":1775659265718,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":33148,"timestamp":6052317810331,"id":3179,"parentId":3169,"tags":{},"startTime":1775659265718,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":30,"timestamp":6052317843483,"id":3218,"parentId":3169,"tags":{},"startTime":1775659265752,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":34147,"timestamp":6052317809507,"id":3169,"parentId":2520,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/tooltip/TooltipModel.js","layer":"ssr"},"startTime":1775659265718,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":29429,"timestamp":6052317814401,"id":3190,"parentId":3185,"tags":{},"startTime":1775659265722,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":35,"timestamp":6052317843834,"id":3219,"parentId":3185,"tags":{},"startTime":1775659265752,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":33829,"timestamp":6052317812950,"id":3185,"parentId":2527,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/MarkLineView.js","layer":"ssr"},"startTime":1775659265721,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":36027,"timestamp":6052317814415,"id":3191,"parentId":3186,"tags":{},"startTime":1775659265722,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":42,"timestamp":6052317850458,"id":3220,"parentId":3186,"tags":{},"startTime":1775659265759,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":37142,"timestamp":6052317813756,"id":3186,"parentId":2525,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/timeline/SliderTimelineModel.js","layer":"ssr"},"startTime":1775659265722,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":36490,"timestamp":6052317814420,"id":3192,"parentId":3187,"tags":{},"startTime":1775659265723,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":33,"timestamp":6052317850919,"id":3221,"parentId":3187,"tags":{},"startTime":1775659265759,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":36984,"timestamp":6052317814181,"id":3187,"parentId":2525,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/timeline/timelineAction.js","layer":"ssr"},"startTime":1775659265722,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":36483,"timestamp":6052317815005,"id":3194,"parentId":3189,"tags":{},"startTime":1775659265723,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":41,"timestamp":6052317851493,"id":3222,"parentId":3189,"tags":{},"startTime":1775659265760,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":38551,"timestamp":6052317814325,"id":3189,"parentId":2525,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/timeline/SliderTimelineView.js","layer":"ssr"},"startTime":1775659265722,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":38457,"timestamp":6052317814425,"id":3193,"parentId":3188,"tags":{},"startTime":1775659265723,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":29,"timestamp":6052317852886,"id":3223,"parentId":3188,"tags":{},"startTime":1775659265761,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":38836,"timestamp":6052317814282,"id":3188,"parentId":2525,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/timeline/preprocessor.js","layer":"ssr"},"startTime":1775659265722,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":37087,"timestamp":6052317820005,"id":3196,"parentId":3195,"tags":{},"startTime":1775659265728,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":40,"timestamp":6052317857101,"id":3224,"parentId":3195,"tags":{},"startTime":1775659265765,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":37665,"timestamp":6052317819874,"id":3195,"parentId":2527,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/MarkLineModel.js","layer":"ssr"},"startTime":1775659265728,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":17577,"timestamp":6052317879498,"id":3269,"parentId":3226,"tags":{},"startTime":1775659265788,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":322,"timestamp":6052317897136,"id":3425,"parentId":3226,"tags":{},"startTime":1775659265805,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":22983,"timestamp":6052317877018,"id":3226,"parentId":2526,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/MarkPointView.js","layer":"ssr"},"startTime":1775659265785,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":20552,"timestamp":6052317879472,"id":3268,"parentId":3225,"tags":{},"startTime":1775659265788,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":35,"timestamp":6052317900031,"id":3426,"parentId":3225,"tags":{},"startTime":1775659265808,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":23423,"timestamp":6052317876878,"id":3225,"parentId":2526,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/MarkPointModel.js","layer":"ssr"},"startTime":1775659265785,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":20787,"timestamp":6052317879525,"id":3273,"parentId":3230,"tags":{},"startTime":1775659265788,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":38,"timestamp":6052317900320,"id":3427,"parentId":3230,"tags":{},"startTime":1775659265808,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":24139,"timestamp":6052317877391,"id":3230,"parentId":2518,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/calendar/Calendar.js","layer":"ssr"},"startTime":1775659265785,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":22010,"timestamp":6052317879534,"id":3275,"parentId":3232,"tags":{},"startTime":1775659265788,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":42,"timestamp":6052317901561,"id":3428,"parentId":3232,"tags":{},"startTime":1775659265810,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":24316,"timestamp":6052317877555,"id":3232,"parentId":2517,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/parallel/ParallelModel.js","layer":"ssr"},"startTime":1775659265786,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":22348,"timestamp":6052317879529,"id":3274,"parentId":3231,"tags":{},"startTime":1775659265788,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":30,"timestamp":6052317901882,"id":3429,"parentId":3231,"tags":{},"startTime":1775659265810,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":24604,"timestamp":6052317877466,"id":3231,"parentId":2517,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/parallel/parallelPreprocessor.js","layer":"ssr"},"startTime":1775659265786,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":22555,"timestamp":6052317879519,"id":3272,"parentId":3229,"tags":{},"startTime":1775659265788,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":28,"timestamp":6052317902079,"id":3430,"parentId":3229,"tags":{},"startTime":1775659265810,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":24986,"timestamp":6052317877331,"id":3229,"parentId":2518,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/calendar/CalendarModel.js","layer":"ssr"},"startTime":1775659265785,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":22784,"timestamp":6052317879538,"id":3276,"parentId":3233,"tags":{},"startTime":1775659265788,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":27,"timestamp":6052317902325,"id":3431,"parentId":3233,"tags":{},"startTime":1775659265810,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":24960,"timestamp":6052317877625,"id":3233,"parentId":2517,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/parallel/parallelCreator.js","layer":"ssr"},"startTime":1775659265786,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":23083,"timestamp":6052317879508,"id":3270,"parentId":3227,"tags":{},"startTime":1775659265788,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":28,"timestamp":6052317902594,"id":3432,"parentId":3227,"tags":{},"startTime":1775659265811,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":25780,"timestamp":6052317877143,"id":3227,"parentId":2514,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/radar/RadarModel.js","layer":"ssr"},"startTime":1775659265785,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":23414,"timestamp":6052317879514,"id":3271,"parentId":3228,"tags":{},"startTime":1775659265788,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":34,"timestamp":6052317902931,"id":3433,"parentId":3228,"tags":{},"startTime":1775659265811,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":26123,"timestamp":6052317877233,"id":3228,"parentId":2514,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/radar/Radar.js","layer":"ssr"},"startTime":1775659265785,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":23817,"timestamp":6052317879547,"id":3278,"parentId":3235,"tags":{},"startTime":1775659265788,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":66,"timestamp":6052317903369,"id":3434,"parentId":3235,"tags":{},"startTime":1775659265811,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":26160,"timestamp":6052317877708,"id":3235,"parentId":2516,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/single/AxisModel.js","layer":"ssr"},"startTime":1775659265786,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":24203,"timestamp":6052317879675,"id":3282,"parentId":3239,"tags":{},"startTime":1775659265788,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":41,"timestamp":6052317903884,"id":3435,"parentId":3239,"tags":{},"startTime":1775659265812,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":26327,"timestamp":6052317877888,"id":3239,"parentId":2499,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/funnel/FunnelSeries.js","layer":"ssr"},"startTime":1775659265786,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":24666,"timestamp":6052317879555,"id":3280,"parentId":3237,"tags":{},"startTime":1775659265788,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":30,"timestamp":6052317904227,"id":3436,"parentId":3237,"tags":{},"startTime":1775659265812,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":26580,"timestamp":6052317877803,"id":3237,"parentId":2528,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/MarkAreaModel.js","layer":"ssr"},"startTime":1775659265786,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":24677,"timestamp":6052317879711,"id":3284,"parentId":3241,"tags":{},"startTime":1775659265788,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":37,"timestamp":6052317904392,"id":3437,"parentId":3241,"tags":{},"startTime":1775659265812,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":26793,"timestamp":6052317877968,"id":3241,"parentId":2509,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sunburst/SunburstSeries.js","layer":"ssr"},"startTime":1775659265786,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":25215,"timestamp":6052317879551,"id":3279,"parentId":3236,"tags":{},"startTime":1775659265788,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":29,"timestamp":6052317904776,"id":3438,"parentId":3236,"tags":{},"startTime":1775659265813,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":27155,"timestamp":6052317877766,"id":3236,"parentId":2516,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/single/singleCreator.js","layer":"ssr"},"startTime":1775659265786,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":25341,"timestamp":6052317879584,"id":3281,"parentId":3238,"tags":{},"startTime":1775659265788,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":33,"timestamp":6052317904929,"id":3439,"parentId":3238,"tags":{},"startTime":1775659265813,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":28120,"timestamp":6052317877848,"id":3238,"parentId":2528,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/MarkAreaView.js","layer":"ssr"},"startTime":1775659265786,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":26281,"timestamp":6052317879695,"id":3283,"parentId":3240,"tags":{},"startTime":1775659265788,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":33,"timestamp":6052317905980,"id":3440,"parentId":3240,"tags":{},"startTime":1775659265814,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":28489,"timestamp":6052317877926,"id":3240,"parentId":2509,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sunburst/SunburstView.js","layer":"ssr"},"startTime":1775659265786,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":26878,"timestamp":6052317879542,"id":3277,"parentId":3234,"tags":{},"startTime":1775659265788,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":29,"timestamp":6052317906424,"id":3441,"parentId":3234,"tags":{},"startTime":1775659265814,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":29227,"timestamp":6052317877669,"id":3234,"parentId":2517,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/parallel/AxisModel.js","layer":"ssr"},"startTime":1775659265786,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":27051,"timestamp":6052317879890,"id":3289,"parentId":3246,"tags":{},"startTime":1775659265788,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":57,"timestamp":6052317906962,"id":3442,"parentId":3246,"tags":{},"startTime":1775659265815,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":29236,"timestamp":6052317878143,"id":3246,"parentId":2509,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sunburst/sunburstAction.js","layer":"ssr"},"startTime":1775659265786,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":27663,"timestamp":6052317879726,"id":3285,"parentId":3242,"tags":{},"startTime":1775659265788,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":33,"timestamp":6052317907394,"id":3443,"parentId":3242,"tags":{},"startTime":1775659265815,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":29576,"timestamp":6052317878002,"id":3242,"parentId":2509,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sunburst/sunburstVisual.js","layer":"ssr"},"startTime":1775659265786,"traceId":"63571fab0751eb1f"}]
-[{"name":"read-resource","duration":27805,"timestamp":6052317879877,"id":3287,"parentId":3244,"tags":{},"startTime":1775659265788,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":32,"timestamp":6052317907687,"id":3444,"parentId":3244,"tags":{},"startTime":1775659265816,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":30053,"timestamp":6052317878070,"id":3244,"parentId":2509,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sunburst/sunburstLayout.js","layer":"ssr"},"startTime":1775659265786,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":28235,"timestamp":6052317879894,"id":3290,"parentId":3247,"tags":{},"startTime":1775659265788,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":29,"timestamp":6052317908133,"id":3445,"parentId":3247,"tags":{},"startTime":1775659265816,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":30155,"timestamp":6052317878178,"id":3247,"parentId":2530,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/legend/ScrollableLegendModel.js","layer":"ssr"},"startTime":1775659265786,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":28435,"timestamp":6052317879903,"id":3292,"parentId":3249,"tags":{},"startTime":1775659265788,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":27,"timestamp":6052317908341,"id":3446,"parentId":3249,"tags":{},"startTime":1775659265816,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":30196,"timestamp":6052317878246,"id":3249,"parentId":2530,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/legend/scrollableLegendAction.js","layer":"ssr"},"startTime":1775659265786,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":28542,"timestamp":6052317879907,"id":3293,"parentId":3250,"tags":{},"startTime":1775659265788,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":25,"timestamp":6052317908453,"id":3447,"parentId":3250,"tags":{},"startTime":1775659265817,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":30256,"timestamp":6052317878315,"id":3250,"parentId":2533,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/InsideZoomModel.js","layer":"ssr"},"startTime":1775659265786,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":28666,"timestamp":6052317879911,"id":3294,"parentId":3251,"tags":{},"startTime":1775659265788,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":29,"timestamp":6052317908581,"id":3448,"parentId":3251,"tags":{},"startTime":1775659265817,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":30714,"timestamp":6052317878372,"id":3251,"parentId":2533,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/InsideZoomView.js","layer":"ssr"},"startTime":1775659265786,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":29174,"timestamp":6052317879919,"id":3296,"parentId":3253,"tags":{},"startTime":1775659265788,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":30,"timestamp":6052317909098,"id":3449,"parentId":3253,"tags":{},"startTime":1775659265817,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":30481,"timestamp":6052317878747,"id":3253,"parentId":2533,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/installCommon.js","layer":"ssr"},"startTime":1775659265787,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":29375,"timestamp":6052317879884,"id":3288,"parentId":3245,"tags":{},"startTime":1775659265788,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":36,"timestamp":6052317909263,"id":3450,"parentId":3245,"tags":{},"startTime":1775659265817,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":31997,"timestamp":6052317878104,"id":3245,"parentId":2499,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/funnel/funnelLayout.js","layer":"ssr"},"startTime":1775659265786,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":30209,"timestamp":6052317879899,"id":3291,"parentId":3248,"tags":{},"startTime":1775659265788,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":38,"timestamp":6052317910112,"id":3451,"parentId":3248,"tags":{},"startTime":1775659265818,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":32830,"timestamp":6052317878212,"id":3248,"parentId":2530,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/legend/ScrollableLegendView.js","layer":"ssr"},"startTime":1775659265786,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":31120,"timestamp":6052317879928,"id":3297,"parentId":3254,"tags":{},"startTime":1775659265788,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":37,"timestamp":6052317911052,"id":3452,"parentId":3254,"tags":{},"startTime":1775659265819,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":32571,"timestamp":6052317878825,"id":3254,"parentId":2521,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/toolbox/feature/SaveAsImage.js","layer":"ssr"},"startTime":1775659265787,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":31468,"timestamp":6052317879932,"id":3298,"parentId":3255,"tags":{},"startTime":1775659265788,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":32,"timestamp":6052317911404,"id":3453,"parentId":3255,"tags":{},"startTime":1775659265819,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":39245,"timestamp":6052317878879,"id":3255,"parentId":2521,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/toolbox/feature/MagicType.js","layer":"ssr"},"startTime":1775659265787,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":38218,"timestamp":6052317879939,"id":3300,"parentId":3257,"tags":{},"startTime":1775659265788,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":77,"timestamp":6052317918229,"id":3454,"parentId":3257,"tags":{},"startTime":1775659265826,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":43620,"timestamp":6052317878968,"id":3257,"parentId":2521,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/toolbox/feature/DataZoom.js","layer":"ssr"},"startTime":1775659265787,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":42701,"timestamp":6052317879952,"id":3303,"parentId":3260,"tags":{},"startTime":1775659265788,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":175,"timestamp":6052317922743,"id":3455,"parentId":3260,"tags":{},"startTime":1775659265831,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":44733,"timestamp":6052317879080,"id":3260,"parentId":2538,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/visual/aria.js","layer":"ssr"},"startTime":1775659265787,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":43893,"timestamp":6052317879936,"id":3299,"parentId":3256,"tags":{},"startTime":1775659265788,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":35,"timestamp":6052317923836,"id":3456,"parentId":3256,"tags":{},"startTime":1775659265832,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":45135,"timestamp":6052317878920,"id":3256,"parentId":2521,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/toolbox/feature/Restore.js","layer":"ssr"},"startTime":1775659265787,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":44149,"timestamp":6052317879915,"id":3295,"parentId":3252,"tags":{},"startTime":1775659265788,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":37,"timestamp":6052317924070,"id":3457,"parentId":3252,"tags":{},"startTime":1775659265832,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":45922,"timestamp":6052317878682,"id":3252,"parentId":2533,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/roams.js","layer":"ssr"},"startTime":1775659265787,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":44672,"timestamp":6052317879945,"id":3301,"parentId":3258,"tags":{},"startTime":1775659265788,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":41,"timestamp":6052317924623,"id":3458,"parentId":3258,"tags":{},"startTime":1775659265833,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":46903,"timestamp":6052317879009,"id":3258,"parentId":2521,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/toolbox/feature/DataView.js","layer":"ssr"},"startTime":1775659265787,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":46085,"timestamp":6052317879847,"id":3286,"parentId":3243,"tags":{},"startTime":1775659265788,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":40,"timestamp":6052317925941,"id":3459,"parentId":3243,"tags":{},"startTime":1775659265834,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":48364,"timestamp":6052317878036,"id":3243,"parentId":2499,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/funnel/FunnelView.js","layer":"ssr"},"startTime":1775659265786,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":46458,"timestamp":6052317879949,"id":3302,"parentId":3259,"tags":{},"startTime":1775659265788,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":28,"timestamp":6052317926411,"id":3460,"parentId":3259,"tags":{},"startTime":1775659265834,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":47600,"timestamp":6052317879045,"id":3259,"parentId":2523,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/toolbox/feature/Brush.js","layer":"ssr"},"startTime":1775659265787,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":46620,"timestamp":6052317880032,"id":3307,"parentId":3264,"tags":{},"startTime":1775659265788,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":28,"timestamp":6052317926659,"id":3461,"parentId":3264,"tags":{},"startTime":1775659265835,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":47544,"timestamp":6052317879231,"id":3264,"parentId":2538,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/aria/preprocessor.js","layer":"ssr"},"startTime":1775659265787,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":46771,"timestamp":6052317880010,"id":3305,"parentId":3262,"tags":{},"startTime":1775659265788,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":26,"timestamp":6052317926786,"id":3462,"parentId":3262,"tags":{},"startTime":1775659265835,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":48016,"timestamp":6052317879152,"id":3262,"parentId":2539,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/transform/filterTransform.js","layer":"ssr"},"startTime":1775659265787,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":47208,"timestamp":6052317879987,"id":3304,"parentId":3261,"tags":{},"startTime":1775659265788,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":140,"timestamp":6052317927209,"id":3463,"parentId":3261,"tags":{},"startTime":1775659265835,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":55490,"timestamp":6052317879113,"id":3261,"parentId":2534,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/SliderZoomView.js","layer":"ssr"},"startTime":1775659265787,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":54592,"timestamp":6052317880043,"id":3308,"parentId":3265,"tags":{},"startTime":1775659265788,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":178,"timestamp":6052317934690,"id":3464,"parentId":3265,"tags":{},"startTime":1775659265843,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":56398,"timestamp":6052317879274,"id":3265,"parentId":2531,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/legend/LegendModel.js","layer":"ssr"},"startTime":1775659265787,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":62691,"timestamp":6052317880053,"id":3309,"parentId":3266,"tags":{},"startTime":1775659265788,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":47,"timestamp":6052317942775,"id":3465,"parentId":3266,"tags":{},"startTime":1775659265851,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":65597,"timestamp":6052317879314,"id":3266,"parentId":2539,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/transform/sortTransform.js","layer":"ssr"},"startTime":1775659265787,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":64909,"timestamp":6052317880022,"id":3306,"parentId":3263,"tags":{},"startTime":1775659265788,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":32,"timestamp":6052317944939,"id":3466,"parentId":3263,"tags":{},"startTime":1775659265853,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":65948,"timestamp":6052317879193,"id":3263,"parentId":2540,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/types.js","layer":"ssr"},"startTime":1775659265787,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":65092,"timestamp":6052317880062,"id":3310,"parentId":3267,"tags":{},"startTime":1775659265788,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":119,"timestamp":6052317945159,"id":3467,"parentId":3267,"tags":{},"startTime":1775659265853,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":66329,"timestamp":6052317879365,"id":3267,"parentId":2534,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/SliderZoomModel.js","layer":"ssr"},"startTime":1775659265787,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":54660,"timestamp":6052317891118,"id":3355,"parentId":3312,"tags":{},"startTime":1775659265799,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":35,"timestamp":6052317945787,"id":3468,"parentId":3312,"tags":{},"startTime":1775659265854,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":56862,"timestamp":6052317889420,"id":3312,"parentId":2531,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/legend/legendFilter.js","layer":"ssr"},"startTime":1775659265797,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":55158,"timestamp":6052317891132,"id":3357,"parentId":3314,"tags":{},"startTime":1775659265799,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":51,"timestamp":6052317946296,"id":3469,"parentId":3314,"tags":{},"startTime":1775659265854,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":58236,"timestamp":6052317889510,"id":3314,"parentId":2537,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/PiecewiseModel.js","layer":"ssr"},"startTime":1775659265798,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":56632,"timestamp":6052317891125,"id":3356,"parentId":3313,"tags":{},"startTime":1775659265799,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":34,"timestamp":6052317947764,"id":3470,"parentId":3313,"tags":{},"startTime":1775659265856,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":58542,"timestamp":6052317889468,"id":3313,"parentId":2531,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/legend/legendAction.js","layer":"ssr"},"startTime":1775659265798,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":56875,"timestamp":6052317891141,"id":3358,"parentId":3315,"tags":{},"startTime":1775659265799,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":34,"timestamp":6052317948020,"id":3471,"parentId":3315,"tags":{},"startTime":1775659265856,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":59108,"timestamp":6052317889557,"id":3315,"parentId":2537,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/PiecewiseView.js","layer":"ssr"},"startTime":1775659265798,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":57529,"timestamp":6052317891145,"id":3359,"parentId":3316,"tags":{},"startTime":1775659265799,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":34,"timestamp":6052317948681,"id":3472,"parentId":3316,"tags":{},"startTime":1775659265857,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":59254,"timestamp":6052317889619,"id":3316,"parentId":2537,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/installCommon.js","layer":"ssr"},"startTime":1775659265798,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":57729,"timestamp":6052317891149,"id":3360,"parentId":3317,"tags":{},"startTime":1775659265799,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":33,"timestamp":6052317948883,"id":3473,"parentId":3317,"tags":{},"startTime":1775659265857,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":59799,"timestamp":6052317889683,"id":3317,"parentId":2536,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/ContinuousModel.js","layer":"ssr"},"startTime":1775659265798,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":58335,"timestamp":6052317891157,"id":3362,"parentId":3319,"tags":{},"startTime":1775659265799,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":33,"timestamp":6052317949498,"id":3474,"parentId":3319,"tags":{},"startTime":1775659265858,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":59964,"timestamp":6052317889790,"id":3319,"parentId":2658,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/globalDefault.js","layer":"ssr"},"startTime":1775659265798,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":58596,"timestamp":6052317891164,"id":3364,"parentId":3321,"tags":{},"startTime":1775659265799,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":28,"timestamp":6052317949765,"id":3475,"parentId":3321,"tags":{},"startTime":1775659265858,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":60073,"timestamp":6052317889875,"id":3321,"parentId":2658,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/internalComponentCreator.js","layer":"ssr"},"startTime":1775659265798,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":58790,"timestamp":6052317891161,"id":3363,"parentId":3320,"tags":{},"startTime":1775659265799,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":25,"timestamp":6052317949955,"id":3476,"parentId":3320,"tags":{},"startTime":1775659265858,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":60234,"timestamp":6052317889839,"id":3320,"parentId":2655,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/mixin/areaStyle.js","layer":"ssr"},"startTime":1775659265798,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":58893,"timestamp":6052317891185,"id":3367,"parentId":3324,"tags":{},"startTime":1775659265799,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":29,"timestamp":6052317950082,"id":3477,"parentId":3324,"tags":{},"startTime":1775659265858,"traceId":"63571fab0751eb1f"}]
-[{"name":"build-module-js","duration":60319,"timestamp":6052317889998,"id":3324,"parentId":2655,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/mixin/itemStyle.js","layer":"ssr"},"startTime":1775659265798,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":59223,"timestamp":6052317891101,"id":3354,"parentId":3311,"tags":{},"startTime":1775659265799,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":44,"timestamp":6052317950330,"id":3478,"parentId":3311,"tags":{},"startTime":1775659265858,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":62226,"timestamp":6052317889331,"id":3311,"parentId":2531,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/legend/LegendView.js","layer":"ssr"},"startTime":1775659265797,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":73662,"timestamp":6052317891177,"id":3365,"parentId":3322,"tags":{},"startTime":1775659265799,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":87,"timestamp":6052317964860,"id":3479,"parentId":3322,"tags":{},"startTime":1775659265873,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":75477,"timestamp":6052317889916,"id":3322,"parentId":2655,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/mixin/textStyle.js","layer":"ssr"},"startTime":1775659265798,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":74230,"timestamp":6052317891188,"id":3368,"parentId":3325,"tags":{},"startTime":1775659265799,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":74,"timestamp":6052317965425,"id":3480,"parentId":3325,"tags":{},"startTime":1775659265873,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":76314,"timestamp":6052317890035,"id":3325,"parentId":2658,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/helper/sourceHelper.js","layer":"ssr"},"startTime":1775659265798,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":75169,"timestamp":6052317891191,"id":3369,"parentId":3326,"tags":{},"startTime":1775659265799,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":39,"timestamp":6052317966366,"id":3481,"parentId":3326,"tags":{},"startTime":1775659265874,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":77355,"timestamp":6052317890071,"id":3326,"parentId":2662,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/helper/dataProvider.js","layer":"ssr"},"startTime":1775659265798,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":76304,"timestamp":6052317891154,"id":3361,"parentId":3318,"tags":{},"startTime":1775659265799,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":109,"timestamp":6052317967470,"id":3482,"parentId":3318,"tags":{},"startTime":1775659265876,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":79498,"timestamp":6052317889739,"id":3318,"parentId":2536,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/ContinuousView.js","layer":"ssr"},"startTime":1775659265798,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":78051,"timestamp":6052317891194,"id":3370,"parentId":3327,"tags":{},"startTime":1775659265799,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":38,"timestamp":6052317969251,"id":3483,"parentId":3327,"tags":{},"startTime":1775659265877,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":79762,"timestamp":6052317890108,"id":3327,"parentId":2662,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/Source.js","layer":"ssr"},"startTime":1775659265798,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":78679,"timestamp":6052317891197,"id":3371,"parentId":3328,"tags":{},"startTime":1775659265799,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":37,"timestamp":6052317969881,"id":3484,"parentId":3328,"tags":{},"startTime":1775659265878,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":79910,"timestamp":6052317890143,"id":3328,"parentId":2662,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/SeriesDimensionDefine.js","layer":"ssr"},"startTime":1775659265798,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":78859,"timestamp":6052317891200,"id":3372,"parentId":3329,"tags":{},"startTime":1775659265799,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":56,"timestamp":6052317970062,"id":3485,"parentId":3329,"tags":{},"startTime":1775659265878,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":81077,"timestamp":6052317890183,"id":3329,"parentId":2666,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/number.js","layer":"ssr"},"startTime":1775659265798,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":80070,"timestamp":6052317891210,"id":3375,"parentId":3332,"tags":{},"startTime":1775659265799,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":37,"timestamp":6052317971286,"id":3486,"parentId":3332,"tags":{},"startTime":1775659265879,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":81655,"timestamp":6052317890286,"id":3332,"parentId":2662,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/helper/SeriesDataSchema.js","layer":"ssr"},"startTime":1775659265798,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":80768,"timestamp":6052317891182,"id":3366,"parentId":3323,"tags":{},"startTime":1775659265799,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":31,"timestamp":6052317971956,"id":3487,"parentId":3323,"tags":{},"startTime":1775659265880,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":82153,"timestamp":6052317889955,"id":3323,"parentId":2655,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/mixin/lineStyle.js","layer":"ssr"},"startTime":1775659265798,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":80908,"timestamp":6052317891206,"id":3374,"parentId":3331,"tags":{},"startTime":1775659265799,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":29,"timestamp":6052317972118,"id":3488,"parentId":3331,"tags":{},"startTime":1775659265880,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":82224,"timestamp":6052317890252,"id":3331,"parentId":2662,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/helper/dimensionHelper.js","layer":"ssr"},"startTime":1775659265798,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":81280,"timestamp":6052317891203,"id":3373,"parentId":3330,"tags":{},"startTime":1775659265799,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":153,"timestamp":6052317972488,"id":3489,"parentId":3330,"tags":{},"startTime":1775659265881,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":84312,"timestamp":6052317890218,"id":3330,"parentId":2662,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/DataStore.js","layer":"ssr"},"startTime":1775659265798,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":83177,"timestamp":6052317891375,"id":3376,"parentId":3333,"tags":{},"startTime":1775659265799,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":34,"timestamp":6052317974557,"id":3490,"parentId":3333,"tags":{},"startTime":1775659265883,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":86407,"timestamp":6052317890321,"id":3333,"parentId":2669,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/tool/path.js","layer":"ssr"},"startTime":1775659265798,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":85881,"timestamp":6052317891409,"id":3379,"parentId":3336,"tags":{},"startTime":1775659265799,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":112,"timestamp":6052317977349,"id":3491,"parentId":3336,"tags":{},"startTime":1775659265885,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":94033,"timestamp":6052317890432,"id":3336,"parentId":2669,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/Text.js","layer":"ssr"},"startTime":1775659265798,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":93415,"timestamp":6052317891404,"id":3378,"parentId":3335,"tags":{},"startTime":1775659265799,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":133,"timestamp":6052317984925,"id":3492,"parentId":3335,"tags":{},"startTime":1775659265893,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":96161,"timestamp":6052317890399,"id":3335,"parentId":2669,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/Image.js","layer":"ssr"},"startTime":1775659265798,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":95358,"timestamp":6052317891398,"id":3377,"parentId":3334,"tags":{},"startTime":1775659265799,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":113,"timestamp":6052317986782,"id":3493,"parentId":3334,"tags":{},"startTime":1775659265895,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":98327,"timestamp":6052317890361,"id":3334,"parentId":2669,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/Transformable.js","layer":"ssr"},"startTime":1775659265798,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":97294,"timestamp":6052317891417,"id":3381,"parentId":3338,"tags":{},"startTime":1775659265799,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":50,"timestamp":6052317988719,"id":3494,"parentId":3338,"tags":{},"startTime":1775659265897,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":99102,"timestamp":6052317890505,"id":3338,"parentId":2670,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/axisHelper.js","layer":"ssr"},"startTime":1775659265799,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":98210,"timestamp":6052317891424,"id":3383,"parentId":3340,"tags":{},"startTime":1775659265799,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":54,"timestamp":6052317989645,"id":3495,"parentId":3340,"tags":{},"startTime":1775659265898,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":99827,"timestamp":6052317890573,"id":3340,"parentId":2670,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/symbol.js","layer":"ssr"},"startTime":1775659265799,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":98981,"timestamp":6052317891433,"id":3385,"parentId":3342,"tags":{},"startTime":1775659265799,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":37,"timestamp":6052317990421,"id":3496,"parentId":3342,"tags":{},"startTime":1775659265898,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":100069,"timestamp":6052317890648,"id":3342,"parentId":2670,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/helper/dataStackHelper.js","layer":"ssr"},"startTime":1775659265799,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":99291,"timestamp":6052317891437,"id":3386,"parentId":3343,"tags":{},"startTime":1775659265800,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":36,"timestamp":6052317990732,"id":3497,"parentId":3343,"tags":{},"startTime":1775659265899,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":100605,"timestamp":6052317890716,"id":3343,"parentId":2670,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/helper/createDimensions.js","layer":"ssr"},"startTime":1775659265799,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":99900,"timestamp":6052317891428,"id":3384,"parentId":3341,"tags":{},"startTime":1775659265799,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":31,"timestamp":6052317991333,"id":3498,"parentId":3341,"tags":{},"startTime":1775659265899,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":101057,"timestamp":6052317890614,"id":3341,"parentId":2670,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/createSeriesData.js","layer":"ssr"},"startTime":1775659265799,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":100260,"timestamp":6052317891420,"id":3382,"parentId":3339,"tags":{},"startTime":1775659265799,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":27,"timestamp":6052317991685,"id":3499,"parentId":3339,"tags":{},"startTime":1775659265900,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":101255,"timestamp":6052317890539,"id":3339,"parentId":2670,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/axisModelCommonMixin.js","layer":"ssr"},"startTime":1775659265799,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":100391,"timestamp":6052317891413,"id":3380,"parentId":3337,"tags":{},"startTime":1775659265799,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":31,"timestamp":6052317991809,"id":3500,"parentId":3337,"tags":{},"startTime":1775659265900,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":102442,"timestamp":6052317890466,"id":3337,"parentId":2672,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/time.js","layer":"ssr"},"startTime":1775659265799,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":101484,"timestamp":6052317891441,"id":3387,"parentId":3344,"tags":{},"startTime":1775659265800,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":43,"timestamp":6052317992934,"id":3501,"parentId":3344,"tags":{},"startTime":1775659265901,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":103168,"timestamp":6052317890751,"id":3344,"parentId":2677,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/Region.js","layer":"ssr"},"startTime":1775659265799,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":102533,"timestamp":6052317891447,"id":3389,"parentId":3346,"tags":{},"startTime":1775659265800,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":34,"timestamp":6052317993987,"id":3502,"parentId":3346,"tags":{},"startTime":1775659265902,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":103347,"timestamp":6052317890816,"id":3346,"parentId":2669,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/LinearGradient.js","layer":"ssr"},"startTime":1775659265799,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":102713,"timestamp":6052317891455,"id":3391,"parentId":3348,"tags":{},"startTime":1775659265800,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":27,"timestamp":6052317994173,"id":3503,"parentId":3348,"tags":{},"startTime":1775659265902,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":103414,"timestamp":6052317890880,"id":3348,"parentId":2669,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/RadialGradient.js","layer":"ssr"},"startTime":1775659265799,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":102840,"timestamp":6052317891458,"id":3392,"parentId":3349,"tags":{},"startTime":1775659265800,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":28,"timestamp":6052317994302,"id":3504,"parentId":3349,"tags":{},"startTime":1775659265902,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":103753,"timestamp":6052317890912,"id":3349,"parentId":2669,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/OrientedBoundingRect.js","layer":"ssr"},"startTime":1775659265799,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":103219,"timestamp":6052317891451,"id":3390,"parentId":3347,"tags":{},"startTime":1775659265800,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":28,"timestamp":6052317994674,"id":3505,"parentId":3347,"tags":{},"startTime":1775659265903,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":104426,"timestamp":6052317890848,"id":3347,"parentId":2669,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/BoundingRect.js","layer":"ssr"},"startTime":1775659265799,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":103819,"timestamp":6052317891466,"id":3394,"parentId":3351,"tags":{},"startTime":1775659265800,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":33,"timestamp":6052317995291,"id":3506,"parentId":3351,"tags":{},"startTime":1775659265903,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":104636,"timestamp":6052317890991,"id":3351,"parentId":2669,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/IncrementalDisplayable.js","layer":"ssr"},"startTime":1775659265799,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":104168,"timestamp":6052317891463,"id":3393,"parentId":3350,"tags":{},"startTime":1775659265800,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":27,"timestamp":6052317995635,"id":3507,"parentId":3350,"tags":{},"startTime":1775659265904,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":105010,"timestamp":6052317890948,"id":3350,"parentId":2669,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/Point.js","layer":"ssr"},"startTime":1775659265799,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":104497,"timestamp":6052317891475,"id":3396,"parentId":3353,"tags":{},"startTime":1775659265800,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":26,"timestamp":6052317995976,"id":3508,"parentId":3353,"tags":{},"startTime":1775659265904,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":105569,"timestamp":6052317891059,"id":3353,"parentId":2669,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/shape/Ellipse.js","layer":"ssr"},"startTime":1775659265799,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":105168,"timestamp":6052317891472,"id":3395,"parentId":3352,"tags":{},"startTime":1775659265800,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":146,"timestamp":6052317996646,"id":3509,"parentId":3352,"tags":{},"startTime":1775659265905,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":105897,"timestamp":6052317891025,"id":3352,"parentId":2669,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/shape/Circle.js","layer":"ssr"},"startTime":1775659265799,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":105483,"timestamp":6052317891444,"id":3388,"parentId":3345,"tags":{},"startTime":1775659265800,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":112,"timestamp":6052317996932,"id":3510,"parentId":3345,"tags":{},"startTime":1775659265905,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":106454,"timestamp":6052317890784,"id":3345,"parentId":2669,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/CompoundPath.js","layer":"ssr"},"startTime":1775659265799,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":112838,"timestamp":6052317895483,"id":3402,"parentId":3399,"tags":{},"startTime":1775659265804,"traceId":"63571fab0751eb1f"}]
-[{"name":"next-swc-loader","duration":61,"timestamp":6052318008488,"id":3511,"parentId":3399,"tags":{},"startTime":1775659265917,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":113634,"timestamp":6052317895373,"id":3399,"parentId":2669,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/shape/Polygon.js","layer":"ssr"},"startTime":1775659265803,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":113568,"timestamp":6052317895469,"id":3401,"parentId":3398,"tags":{},"startTime":1775659265804,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":32,"timestamp":6052318009043,"id":3512,"parentId":3398,"tags":{},"startTime":1775659265917,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":113980,"timestamp":6052317895302,"id":3398,"parentId":2669,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/shape/Ring.js","layer":"ssr"},"startTime":1775659265803,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":113872,"timestamp":6052317895423,"id":3400,"parentId":3397,"tags":{},"startTime":1775659265803,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":55,"timestamp":6052318009302,"id":3513,"parentId":3397,"tags":{},"startTime":1775659265917,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":114447,"timestamp":6052317895206,"id":3397,"parentId":2669,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/shape/Sector.js","layer":"ssr"},"startTime":1775659265803,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":125848,"timestamp":6052317896898,"id":3418,"parentId":3407,"tags":{},"startTime":1775659265805,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":34,"timestamp":6052318022767,"id":3514,"parentId":3407,"tags":{},"startTime":1775659265931,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":126744,"timestamp":6052317896412,"id":3407,"parentId":2669,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/shape/Arc.js","layer":"ssr"},"startTime":1775659265804,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":126285,"timestamp":6052317896879,"id":3414,"parentId":3403,"tags":{},"startTime":1775659265805,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":30,"timestamp":6052318023170,"id":3515,"parentId":3403,"tags":{},"startTime":1775659265931,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":127436,"timestamp":6052317896080,"id":3403,"parentId":2669,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/shape/Polyline.js","layer":"ssr"},"startTime":1775659265804,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":126629,"timestamp":6052317896895,"id":3417,"parentId":3406,"tags":{},"startTime":1775659265805,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":36,"timestamp":6052318023529,"id":3516,"parentId":3406,"tags":{},"startTime":1775659265932,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":127523,"timestamp":6052317896354,"id":3406,"parentId":2669,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/shape/BezierCurve.js","layer":"ssr"},"startTime":1775659265804,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":126964,"timestamp":6052317896920,"id":3421,"parentId":3410,"tags":{},"startTime":1775659265805,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":29,"timestamp":6052318023889,"id":3517,"parentId":3410,"tags":{},"startTime":1775659265932,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":127460,"timestamp":6052317896573,"id":3410,"parentId":2733,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/visual/LegendVisualProvider.js","layer":"ssr"},"startTime":1775659265805,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":127149,"timestamp":6052317896891,"id":3416,"parentId":3405,"tags":{},"startTime":1775659265805,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":24,"timestamp":6052318024044,"id":3518,"parentId":3405,"tags":{},"startTime":1775659265932,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":127972,"timestamp":6052317896282,"id":3405,"parentId":2669,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/shape/Line.js","layer":"ssr"},"startTime":1775659265804,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":127335,"timestamp":6052317896924,"id":3422,"parentId":3411,"tags":{},"startTime":1775659265805,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":34,"timestamp":6052318024266,"id":3519,"parentId":3411,"tags":{},"startTime":1775659265932,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":128234,"timestamp":6052317896731,"id":3411,"parentId":2676,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/axisTickLabelBuilder.js","layer":"ssr"},"startTime":1775659265805,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":128056,"timestamp":6052317896915,"id":3420,"parentId":3409,"tags":{},"startTime":1775659265805,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":57,"timestamp":6052318024975,"id":3520,"parentId":3409,"tags":{},"startTime":1775659265933,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":129973,"timestamp":6052317896495,"id":3409,"parentId":2657,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/label/labelGuideHelper.js","layer":"ssr"},"startTime":1775659265805,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":129551,"timestamp":6052317896927,"id":3423,"parentId":3412,"tags":{},"startTime":1775659265805,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":37,"timestamp":6052318026484,"id":3521,"parentId":3412,"tags":{},"startTime":1775659265935,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":130602,"timestamp":6052317896783,"id":3412,"parentId":2691,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/tooltip/tooltipMarkup.js","layer":"ssr"},"startTime":1775659265805,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":130500,"timestamp":6052317896900,"id":3419,"parentId":3408,"tags":{},"startTime":1775659265805,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":37,"timestamp":6052318027406,"id":3522,"parentId":3408,"tags":{},"startTime":1775659265935,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":131593,"timestamp":6052317896450,"id":3408,"parentId":2657,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/label/labelLayoutHelper.js","layer":"ssr"},"startTime":1775659265805,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":131163,"timestamp":6052317896887,"id":3415,"parentId":3404,"tags":{},"startTime":1775659265805,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":31,"timestamp":6052318028057,"id":3523,"parentId":3404,"tags":{},"startTime":1775659265936,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":132637,"timestamp":6052317896225,"id":3404,"parentId":2669,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/shape/Rect.js","layer":"ssr"},"startTime":1775659265804,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":131952,"timestamp":6052317896929,"id":3424,"parentId":3413,"tags":{},"startTime":1775659265805,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":1831,"timestamp":6052318028889,"id":3524,"parentId":3413,"tags":{},"startTime":1775659265937,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":134459,"timestamp":6052317896830,"id":3413,"parentId":2733,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/createSeriesDataSimply.js","layer":"ssr"},"startTime":1775659265805,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":18176,"timestamp":6052318049544,"id":3539,"parentId":3526,"tags":{},"startTime":1775659265958,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":37,"timestamp":6052318067736,"id":3725,"parentId":3526,"tags":{},"startTime":1775659265976,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":19332,"timestamp":6052318048937,"id":3526,"parentId":2669,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/helper/subPixelOptimize.js","layer":"ssr"},"startTime":1775659265957,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":18825,"timestamp":6052318049511,"id":3538,"parentId":3525,"tags":{},"startTime":1775659265958,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":80,"timestamp":6052318068342,"id":3726,"parentId":3525,"tags":{},"startTime":1775659265976,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":21400,"timestamp":6052318048832,"id":3525,"parentId":2688,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/tool/morphPath.js","layer":"ssr"},"startTime":1775659265957,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":20729,"timestamp":6052318049566,"id":3542,"parentId":3529,"tags":{},"startTime":1775659265958,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":32,"timestamp":6052318070316,"id":3727,"parentId":3529,"tags":{},"startTime":1775659265978,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":21607,"timestamp":6052318049068,"id":3529,"parentId":2736,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/config.js","layer":"ssr"},"startTime":1775659265957,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":21124,"timestamp":6052318049575,"id":3544,"parentId":3531,"tags":{},"startTime":1775659265958,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":40,"timestamp":6052318070704,"id":3728,"parentId":3531,"tags":{},"startTime":1775659265979,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":23394,"timestamp":6052318049139,"id":3531,"parentId":2744,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/PathProxy.js","layer":"ssr"},"startTime":1775659265957,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":22903,"timestamp":6052318049641,"id":3549,"parentId":3536,"tags":{},"startTime":1775659265958,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":28,"timestamp":6052318072549,"id":3729,"parentId":3536,"tags":{},"startTime":1775659265981,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":23500,"timestamp":6052318049323,"id":3536,"parentId":2745,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/LRU.js","layer":"ssr"},"startTime":1775659265957,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":23200,"timestamp":6052318049627,"id":3546,"parentId":3533,"tags":{},"startTime":1775659265958,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":25,"timestamp":6052318072832,"id":3730,"parentId":3533,"tags":{},"startTime":1775659265981,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":23835,"timestamp":6052318049215,"id":3533,"parentId":2744,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/TSpan.js","layer":"ssr"},"startTime":1775659265957,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":23486,"timestamp":6052318049570,"id":3543,"parentId":3530,"tags":{},"startTime":1775659265958,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":45,"timestamp":6052318073058,"id":3731,"parentId":3530,"tags":{},"startTime":1775659265981,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":27822,"timestamp":6052318049104,"id":3530,"parentId":2746,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/Element.js","layer":"ssr"},"startTime":1775659265957,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":27398,"timestamp":6052318049560,"id":3541,"parentId":3528,"tags":{},"startTime":1775659265958,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":49,"timestamp":6052318076972,"id":3732,"parentId":3528,"tags":{},"startTime":1775659265985,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":28481,"timestamp":6052318049030,"id":3528,"parentId":2736,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/Storage.js","layer":"ssr"},"startTime":1775659265957,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":29197,"timestamp":6052318049644,"id":3550,"parentId":3537,"tags":{},"startTime":1775659265958,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":27,"timestamp":6052318078847,"id":3733,"parentId":3537,"tags":{},"startTime":1775659265987,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":29772,"timestamp":6052318049357,"id":3537,"parentId":2744,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/helper/image.js","layer":"ssr"},"startTime":1775659265957,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":29506,"timestamp":6052318049633,"id":3547,"parentId":3534,"tags":{},"startTime":1775659265958,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":31,"timestamp":6052318079145,"id":3734,"parentId":3534,"tags":{},"startTime":1775659265987,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":30101,"timestamp":6052318049250,"id":3534,"parentId":2744,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/canvas/dashStyle.js","layer":"ssr"},"startTime":1775659265957,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":29805,"timestamp":6052318049552,"id":3540,"parentId":3527,"tags":{},"startTime":1775659265958,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":32,"timestamp":6052318079361,"id":3735,"parentId":3527,"tags":{},"startTime":1775659265987,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":31287,"timestamp":6052318048989,"id":3527,"parentId":2736,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/Handler.js","layer":"ssr"},"startTime":1775659265957,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":30809,"timestamp":6052318049637,"id":3548,"parentId":3535,"tags":{},"startTime":1775659265958,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":27,"timestamp":6052318080452,"id":3736,"parentId":3535,"tags":{},"startTime":1775659265988,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":31263,"timestamp":6052318049289,"id":3535,"parentId":2744,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/constants.js","layer":"ssr"},"startTime":1775659265957,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":30966,"timestamp":6052318049615,"id":3545,"parentId":3532,"tags":{},"startTime":1775659265958,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":103,"timestamp":6052318080585,"id":3737,"parentId":3532,"tags":{},"startTime":1775659265989,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":31848,"timestamp":6052318049178,"id":3532,"parentId":2744,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/canvas/helper.js","layer":"ssr"},"startTime":1775659265957,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":18356,"timestamp":6052318064254,"id":3629,"parentId":3556,"tags":{},"startTime":1775659265972,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":34,"timestamp":6052318082620,"id":3738,"parentId":3556,"tags":{},"startTime":1775659265991,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":22432,"timestamp":6052318060925,"id":3556,"parentId":2747,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/canvas/Layer.js","layer":"ssr"},"startTime":1775659265969,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":19137,"timestamp":6052318064226,"id":3625,"parentId":3552,"tags":{},"startTime":1775659265972,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":27,"timestamp":6052318083368,"id":3739,"parentId":3552,"tags":{},"startTime":1775659265991,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":22762,"timestamp":6052318060744,"id":3552,"parentId":2734,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/sectorHelper.js","layer":"ssr"},"startTime":1775659265969,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":19315,"timestamp":6052318064195,"id":3624,"parentId":3551,"tags":{},"startTime":1775659265972,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":35,"timestamp":6052318083513,"id":3740,"parentId":3551,"tags":{},"startTime":1775659265992,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":23761,"timestamp":6052318060629,"id":3551,"parentId":2734,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/pie/labelLayout.js","layer":"ssr"},"startTime":1775659265969,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":20161,"timestamp":6052318064234,"id":3626,"parentId":3553,"tags":{},"startTime":1775659265972,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":28,"timestamp":6052318084399,"id":3741,"parentId":3553,"tags":{},"startTime":1775659265992,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":23769,"timestamp":6052318060795,"id":3553,"parentId":2684,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/i18n/langEN.js","layer":"ssr"},"startTime":1775659265969,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":20327,"timestamp":6052318064241,"id":3627,"parentId":3554,"tags":{},"startTime":1775659265972,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":35,"timestamp":6052318084572,"id":3742,"parentId":3554,"tags":{},"startTime":1775659265993,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":23923,"timestamp":6052318060849,"id":3554,"parentId":2684,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/i18n/langZH.js","layer":"ssr"},"startTime":1775659265969,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":20517,"timestamp":6052318064259,"id":3630,"parentId":3557,"tags":{},"startTime":1775659265972,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":24,"timestamp":6052318084780,"id":3743,"parentId":3557,"tags":{},"startTime":1775659265993,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":23905,"timestamp":6052318060976,"id":3557,"parentId":2752,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/vendor.js","layer":"ssr"},"startTime":1775659265969,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":20619,"timestamp":6052318064268,"id":3632,"parentId":3559,"tags":{},"startTime":1775659265972,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":26,"timestamp":6052318084890,"id":3744,"parentId":3559,"tags":{},"startTime":1775659265993,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":24116,"timestamp":6052318061049,"id":3559,"parentId":2751,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/bar/BaseBarSeries.js","layer":"ssr"},"startTime":1775659265969,"traceId":"63571fab0751eb1f"}]
-[{"name":"read-resource","duration":20996,"timestamp":6052318064277,"id":3634,"parentId":3561,"tags":{},"startTime":1775659265972,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":30,"timestamp":6052318085277,"id":3745,"parentId":3561,"tags":{},"startTime":1775659265993,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":24811,"timestamp":6052318061123,"id":3561,"parentId":2752,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/line/poly.js","layer":"ssr"},"startTime":1775659265969,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":21691,"timestamp":6052318064249,"id":3628,"parentId":3555,"tags":{},"startTime":1775659265972,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":32,"timestamp":6052318085944,"id":3746,"parentId":3555,"tags":{},"startTime":1775659265994,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":25712,"timestamp":6052318060887,"id":3555,"parentId":2679,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/preprocessor/helper/compatStyle.js","layer":"ssr"},"startTime":1775659265969,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":22340,"timestamp":6052318064264,"id":3631,"parentId":3558,"tags":{},"startTime":1775659265972,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":26,"timestamp":6052318086607,"id":3747,"parentId":3558,"tags":{},"startTime":1775659265995,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":25670,"timestamp":6052318061013,"id":3558,"parentId":2752,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/CoordinateSystem.js","layer":"ssr"},"startTime":1775659265969,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":22406,"timestamp":6052318064281,"id":3635,"parentId":3562,"tags":{},"startTime":1775659265972,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":25,"timestamp":6052318086691,"id":3748,"parentId":3562,"tags":{},"startTime":1775659265995,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":26609,"timestamp":6052318061158,"id":3562,"parentId":2752,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/line/helper.js","layer":"ssr"},"startTime":1775659265969,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":23509,"timestamp":6052318064286,"id":3636,"parentId":3563,"tags":{},"startTime":1775659265972,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":38,"timestamp":6052318087802,"id":3749,"parentId":3563,"tags":{},"startTime":1775659265996,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":27243,"timestamp":6052318061192,"id":3563,"parentId":2752,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/Symbol.js","layer":"ssr"},"startTime":1775659265969,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":24168,"timestamp":6052318064272,"id":3633,"parentId":3560,"tags":{},"startTime":1775659265972,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":30,"timestamp":6052318088444,"id":3750,"parentId":3560,"tags":{},"startTime":1775659265996,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":27685,"timestamp":6052318061087,"id":3560,"parentId":2752,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/line/lineAnimationDiff.js","layer":"ssr"},"startTime":1775659265969,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":24480,"timestamp":6052318064299,"id":3639,"parentId":3566,"tags":{},"startTime":1775659265972,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":28,"timestamp":6052318088783,"id":3751,"parentId":3566,"tags":{},"startTime":1775659265997,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":27622,"timestamp":6052318061314,"id":3566,"parentId":2752,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/labelHelper.js","layer":"ssr"},"startTime":1775659265969,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":24633,"timestamp":6052318064307,"id":3641,"parentId":3568,"tags":{},"startTime":1775659265972,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":23,"timestamp":6052318088943,"id":3752,"parentId":3568,"tags":{},"startTime":1775659265997,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":27635,"timestamp":6052318061385,"id":3568,"parentId":2657,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/contain/util.js","layer":"ssr"},"startTime":1775659265969,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":24729,"timestamp":6052318064295,"id":3638,"parentId":3565,"tags":{},"startTime":1775659265972,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":27,"timestamp":6052318089027,"id":3753,"parentId":3565,"tags":{},"startTime":1775659265997,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":27999,"timestamp":6052318061267,"id":3565,"parentId":2752,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/createClipPathFromCoordSys.js","layer":"ssr"},"startTime":1775659265969,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":24945,"timestamp":6052318064326,"id":3644,"parentId":3571,"tags":{},"startTime":1775659265972,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":30,"timestamp":6052318089274,"id":3754,"parentId":3571,"tags":{},"startTime":1775659265997,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":28385,"timestamp":6052318061488,"id":3571,"parentId":2736,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/dom/HandlerProxy.js","layer":"ssr"},"startTime":1775659265970,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":25565,"timestamp":6052318064312,"id":3642,"parentId":3569,"tags":{},"startTime":1775659265972,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":26,"timestamp":6052318089880,"id":3755,"parentId":3569,"tags":{},"startTime":1775659265998,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":28739,"timestamp":6052318061419,"id":3569,"parentId":2736,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/animation/Animation.js","layer":"ssr"},"startTime":1775659265969,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":25831,"timestamp":6052318064330,"id":3645,"parentId":3572,"tags":{},"startTime":1775659265972,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":28,"timestamp":6052318090164,"id":3756,"parentId":3572,"tags":{},"startTime":1775659265998,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":28999,"timestamp":6052318061539,"id":3572,"parentId":2753,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/label/sectorLabel.js","layer":"ssr"},"startTime":1775659265970,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":26225,"timestamp":6052318064316,"id":3643,"parentId":3570,"tags":{},"startTime":1775659265972,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":24,"timestamp":6052318090544,"id":3757,"parentId":3570,"tags":{},"startTime":1775659265999,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":29192,"timestamp":6052318061453,"id":3570,"parentId":2747,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/animation/requestAnimationFrame.js","layer":"ssr"},"startTime":1775659265969,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":26310,"timestamp":6052318064339,"id":3647,"parentId":3574,"tags":{},"startTime":1775659265972,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":25,"timestamp":6052318090652,"id":3758,"parentId":3574,"tags":{},"startTime":1775659265999,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":29195,"timestamp":6052318061608,"id":3574,"parentId":2799,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/animation.js","layer":"ssr"},"startTime":1775659265970,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":26445,"timestamp":6052318064362,"id":3650,"parentId":3577,"tags":{},"startTime":1775659265972,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":30,"timestamp":6052318090810,"id":3759,"parentId":3577,"tags":{},"startTime":1775659265999,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":29703,"timestamp":6052318061759,"id":3577,"parentId":2799,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/treemap/Breadcrumb.js","layer":"ssr"},"startTime":1775659265970,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":27179,"timestamp":6052318064290,"id":3637,"parentId":3564,"tags":{},"startTime":1775659265972,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":33,"timestamp":6052318091473,"id":3760,"parentId":3564,"tags":{},"startTime":1775659266000,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":30717,"timestamp":6052318061233,"id":3564,"parentId":2752,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/SymbolDraw.js","layer":"ssr"},"startTime":1775659265969,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":27623,"timestamp":6052318064334,"id":3646,"parentId":3573,"tags":{},"startTime":1775659265972,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":78,"timestamp":6052318091963,"id":3761,"parentId":3573,"tags":{},"startTime":1775659266000,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":31025,"timestamp":6052318061573,"id":3573,"parentId":2757,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/LargeSymbolDraw.js","layer":"ssr"},"startTime":1775659265970,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":28237,"timestamp":6052318064366,"id":3651,"parentId":3578,"tags":{},"startTime":1775659265972,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":39,"timestamp":6052318092607,"id":3762,"parentId":3578,"tags":{},"startTime":1775659266001,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":31039,"timestamp":6052318061807,"id":3578,"parentId":2802,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/mixin/makeStyleMapper.js","layer":"ssr"},"startTime":1775659265970,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":28505,"timestamp":6052318064350,"id":3649,"parentId":3576,"tags":{},"startTime":1775659265972,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":33,"timestamp":6052318092860,"id":3763,"parentId":3576,"tags":{},"startTime":1775659266001,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":31377,"timestamp":6052318061681,"id":3576,"parentId":2799,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/treeHelper.js","layer":"ssr"},"startTime":1775659265970,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":28693,"timestamp":6052318064371,"id":3652,"parentId":3579,"tags":{},"startTime":1775659265972,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":29,"timestamp":6052318093068,"id":3764,"parentId":3579,"tags":{},"startTime":1775659266001,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":31353,"timestamp":6052318061844,"id":3579,"parentId":2800,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/enableAriaDecalForTree.js","layer":"ssr"},"startTime":1775659265970,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":28858,"timestamp":6052318064342,"id":3648,"parentId":3575,"tags":{},"startTime":1775659265972,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":32,"timestamp":6052318093204,"id":3765,"parentId":3575,"tags":{},"startTime":1775659266001,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":32191,"timestamp":6052318061644,"id":3575,"parentId":2800,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/Tree.js","layer":"ssr"},"startTime":1775659265970,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":29459,"timestamp":6052318064382,"id":3655,"parentId":3582,"tags":{},"startTime":1775659265972,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":45,"timestamp":6052318093852,"id":3766,"parentId":3582,"tags":{},"startTime":1775659266002,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":32507,"timestamp":6052318061959,"id":3582,"parentId":2799,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/helper/RoamController.js","layer":"ssr"},"startTime":1775659265970,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":30089,"timestamp":6052318064386,"id":3656,"parentId":3583,"tags":{},"startTime":1775659265972,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":32,"timestamp":6052318094479,"id":3767,"parentId":3583,"tags":{},"startTime":1775659266003,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":33149,"timestamp":6052318062000,"id":3583,"parentId":2805,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/decal.js","layer":"ssr"},"startTime":1775659265970,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":30765,"timestamp":6052318064390,"id":3657,"parentId":3584,"tags":{},"startTime":1775659265972,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":35,"timestamp":6052318095159,"id":3768,"parentId":3584,"tags":{},"startTime":1775659266003,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":34242,"timestamp":6052318062035,"id":3584,"parentId":2801,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/visual/VisualMapping.js","layer":"ssr"},"startTime":1775659265970,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":31910,"timestamp":6052318064375,"id":3653,"parentId":3580,"tags":{},"startTime":1775659265972,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":30,"timestamp":6052318096290,"id":3769,"parentId":3580,"tags":{},"startTime":1775659266004,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":34671,"timestamp":6052318061883,"id":3580,"parentId":2753,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/shape/sausage.js","layer":"ssr"},"startTime":1775659265970,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":32165,"timestamp":6052318064394,"id":3658,"parentId":3585,"tags":{},"startTime":1775659265972,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":68,"timestamp":6052318096597,"id":3770,"parentId":3585,"tags":{},"startTime":1775659266005,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":34726,"timestamp":6052318062070,"id":3585,"parentId":2816,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/tree/traversalHelper.js","layer":"ssr"},"startTime":1775659265970,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":32399,"timestamp":6052318064403,"id":3660,"parentId":3587,"tags":{},"startTime":1775659265972,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":32,"timestamp":6052318096806,"id":3771,"parentId":3587,"tags":{},"startTime":1775659266005,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":35189,"timestamp":6052318062142,"id":3587,"parentId":2810,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/helper/dataValueHelper.js","layer":"ssr"},"startTime":1775659265970,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":33035,"timestamp":6052318064303,"id":3640,"parentId":3567,"tags":{},"startTime":1775659265972,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":31,"timestamp":6052318097343,"id":3772,"parentId":3567,"tags":{},"startTime":1775659266005,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":37222,"timestamp":6052318061351,"id":3567,"parentId":2748,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/contain/path.js","layer":"ssr"},"startTime":1775659265969,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":34205,"timestamp":6052318064378,"id":3654,"parentId":3581,"tags":{},"startTime":1775659265972,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":46,"timestamp":6052318098592,"id":3773,"parentId":3581,"tags":{},"startTime":1775659266007,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":39106,"timestamp":6052318061924,"id":3581,"parentId":2758,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/helper/MapDraw.js","layer":"ssr"},"startTime":1775659265970,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":36689,"timestamp":6052318064406,"id":3661,"parentId":3588,"tags":{},"startTime":1775659265972,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":59,"timestamp":6052318101108,"id":3774,"parentId":3588,"tags":{},"startTime":1775659266009,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":39376,"timestamp":6052318062180,"id":3588,"parentId":2943,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/core.js","layer":"ssr"},"startTime":1775659265970,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":37157,"timestamp":6052318064418,"id":3664,"parentId":3591,"tags":{},"startTime":1775659265972,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":36,"timestamp":6052318101579,"id":3775,"parentId":3591,"tags":{},"startTime":1775659266010,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":40050,"timestamp":6052318062284,"id":3591,"parentId":2943,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/patch.js","layer":"ssr"},"startTime":1775659265970,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":37922,"timestamp":6052318064430,"id":3667,"parentId":3594,"tags":{},"startTime":1775659265972,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":37,"timestamp":6052318102359,"id":3776,"parentId":3594,"tags":{},"startTime":1775659266010,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":40439,"timestamp":6052318062388,"id":3594,"parentId":2946,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/forceHelper.js","layer":"ssr"},"startTime":1775659265970,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":38420,"timestamp":6052318064414,"id":3663,"parentId":3590,"tags":{},"startTime":1775659265972,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":32,"timestamp":6052318102839,"id":3777,"parentId":3590,"tags":{},"startTime":1775659266011,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":41135,"timestamp":6052318062250,"id":3590,"parentId":2943,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/helper.js","layer":"ssr"},"startTime":1775659265970,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":38960,"timestamp":6052318064434,"id":3668,"parentId":3595,"tags":{},"startTime":1775659265972,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":35,"timestamp":6052318103400,"id":3778,"parentId":3595,"tags":{},"startTime":1775659266011,"traceId":"63571fab0751eb1f"}]
-[{"name":"build-module-js","duration":41413,"timestamp":6052318062424,"id":3595,"parentId":2946,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/multipleGraphEdgeHelper.js","layer":"ssr"},"startTime":1775659265970,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":39417,"timestamp":6052318064426,"id":3666,"parentId":3593,"tags":{},"startTime":1775659265972,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":28,"timestamp":6052318103847,"id":3779,"parentId":3593,"tags":{},"startTime":1775659266012,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":41649,"timestamp":6052318062353,"id":3593,"parentId":2940,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/simpleLayoutHelper.js","layer":"ssr"},"startTime":1775659265970,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":39595,"timestamp":6052318064410,"id":3662,"parentId":3589,"tags":{},"startTime":1775659265972,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":38,"timestamp":6052318104009,"id":3780,"parentId":3589,"tags":{},"startTime":1775659266012,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":42863,"timestamp":6052318062216,"id":3589,"parentId":2943,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/graphic.js","layer":"ssr"},"startTime":1775659265970,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":40662,"timestamp":6052318064422,"id":3665,"parentId":3592,"tags":{},"startTime":1775659265972,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":27,"timestamp":6052318105088,"id":3781,"parentId":3592,"tags":{},"startTime":1775659266013,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":42909,"timestamp":6052318062318,"id":3592,"parentId":2933,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/helper/roamHelper.js","layer":"ssr"},"startTime":1775659265970,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":40781,"timestamp":6052318064449,"id":3672,"parentId":3599,"tags":{},"startTime":1775659265972,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":25,"timestamp":6052318105234,"id":3782,"parentId":3599,"tags":{},"startTime":1775659266013,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":42762,"timestamp":6052318062566,"id":3599,"parentId":2933,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/helper/cursorHelper.js","layer":"ssr"},"startTime":1775659265971,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":40885,"timestamp":6052318064446,"id":3671,"parentId":3598,"tags":{},"startTime":1775659265972,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":38,"timestamp":6052318105335,"id":3783,"parentId":3598,"tags":{},"startTime":1775659266013,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":43227,"timestamp":6052318062530,"id":3598,"parentId":2948,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/adjustEdge.js","layer":"ssr"},"startTime":1775659265971,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":41309,"timestamp":6052318064453,"id":3673,"parentId":3600,"tags":{},"startTime":1775659265972,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":29,"timestamp":6052318105765,"id":3784,"parentId":3600,"tags":{},"startTime":1775659266014,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":43277,"timestamp":6052318062601,"id":3600,"parentId":2948,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/graphHelper.js","layer":"ssr"},"startTime":1775659265971,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":41425,"timestamp":6052318064456,"id":3674,"parentId":3601,"tags":{},"startTime":1775659265972,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":24,"timestamp":6052318105885,"id":3785,"parentId":3601,"tags":{},"startTime":1775659266014,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":43595,"timestamp":6052318062640,"id":3601,"parentId":2933,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/bbox.js","layer":"ssr"},"startTime":1775659265971,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":41775,"timestamp":6052318064464,"id":3676,"parentId":3603,"tags":{},"startTime":1775659265973,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":27,"timestamp":6052318106243,"id":3786,"parentId":3603,"tags":{},"startTime":1775659266014,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":43749,"timestamp":6052318062714,"id":3603,"parentId":2949,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/createGraphFromNodeEdge.js","layer":"ssr"},"startTime":1775659265971,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":41999,"timestamp":6052318064468,"id":3677,"parentId":3604,"tags":{},"startTime":1775659265973,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":28,"timestamp":6052318106470,"id":3787,"parentId":3604,"tags":{},"startTime":1775659266015,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":44198,"timestamp":6052318062751,"id":3604,"parentId":2959,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/EffectLine.js","layer":"ssr"},"startTime":1775659265971,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":42478,"timestamp":6052318064476,"id":3679,"parentId":3606,"tags":{},"startTime":1775659265973,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":27,"timestamp":6052318106958,"id":3788,"parentId":3606,"tags":{},"startTime":1775659266015,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":44380,"timestamp":6052318062820,"id":3606,"parentId":2959,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/EffectPolyline.js","layer":"ssr"},"startTime":1775659265971,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":42745,"timestamp":6052318064459,"id":3675,"parentId":3602,"tags":{},"startTime":1775659265972,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":27,"timestamp":6052318107208,"id":3789,"parentId":3602,"tags":{},"startTime":1775659266015,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":44771,"timestamp":6052318062676,"id":3602,"parentId":2951,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/whiskerBoxCommon.js","layer":"ssr"},"startTime":1775659265971,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":43053,"timestamp":6052318064398,"id":3659,"parentId":3586,"tags":{},"startTime":1775659265972,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":38,"timestamp":6052318107455,"id":3790,"parentId":3586,"tags":{},"startTime":1775659266015,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":45753,"timestamp":6052318062105,"id":3586,"parentId":2816,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/tree/layoutHelper.js","layer":"ssr"},"startTime":1775659265970,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":43425,"timestamp":6052318064438,"id":3669,"parentId":3596,"tags":{},"startTime":1775659265972,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":30,"timestamp":6052318107866,"id":3791,"parentId":3596,"tags":{},"startTime":1775659266016,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":45768,"timestamp":6052318062459,"id":3596,"parentId":2946,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/circularLayoutHelper.js","layer":"ssr"},"startTime":1775659265970,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":43744,"timestamp":6052318064489,"id":3683,"parentId":3610,"tags":{},"startTime":1775659265973,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":37,"timestamp":6052318108237,"id":3792,"parentId":3610,"tags":{},"startTime":1775659266016,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":45484,"timestamp":6052318062975,"id":3610,"parentId":2959,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/Polyline.js","layer":"ssr"},"startTime":1775659265971,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":43982,"timestamp":6052318064482,"id":3681,"parentId":3608,"tags":{},"startTime":1775659265973,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":37,"timestamp":6052318108467,"id":3793,"parentId":3608,"tags":{},"startTime":1775659266016,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":46020,"timestamp":6052318062891,"id":3608,"parentId":2964,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/EffectSymbol.js","layer":"ssr"},"startTime":1775659265971,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":44425,"timestamp":6052318064493,"id":3684,"parentId":3611,"tags":{},"startTime":1775659265973,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":33,"timestamp":6052318108922,"id":3794,"parentId":3611,"tags":{},"startTime":1775659266017,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":46381,"timestamp":6052318063010,"id":3611,"parentId":2970,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/styleCompat.js","layer":"ssr"},"startTime":1775659265971,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":44924,"timestamp":6052318064472,"id":3678,"parentId":3605,"tags":{},"startTime":1775659265973,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":36,"timestamp":6052318109401,"id":3795,"parentId":3605,"tags":{},"startTime":1775659266017,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":48130,"timestamp":6052318062786,"id":3605,"parentId":2959,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/Line.js","layer":"ssr"},"startTime":1775659265971,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":46457,"timestamp":6052318064486,"id":3682,"parentId":3609,"tags":{},"startTime":1775659265973,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":51,"timestamp":6052318110952,"id":3796,"parentId":3609,"tags":{},"startTime":1775659266019,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":48402,"timestamp":6052318062935,"id":3609,"parentId":2962,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/boxplot/prepareBoxplotData.js","layer":"ssr"},"startTime":1775659265971,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":46840,"timestamp":6052318064504,"id":3687,"parentId":3614,"tags":{},"startTime":1775659265973,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":31,"timestamp":6052318111349,"id":3797,"parentId":3614,"tags":{},"startTime":1775659266019,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":48347,"timestamp":6052318063376,"id":3614,"parentId":2967,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/heatmap/HeatmapLayer.js","layer":"ssr"},"startTime":1775659265971,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":47250,"timestamp":6052318064480,"id":3680,"parentId":3607,"tags":{},"startTime":1775659265973,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":37,"timestamp":6052318111734,"id":3798,"parentId":3607,"tags":{},"startTime":1775659266020,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":49525,"timestamp":6052318062855,"id":3607,"parentId":2959,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/LargeLineDraw.js","layer":"ssr"},"startTime":1775659265971,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":47893,"timestamp":6052318064496,"id":3685,"parentId":3612,"tags":{},"startTime":1775659265973,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":36,"timestamp":6052318112394,"id":3799,"parentId":3612,"tags":{},"startTime":1775659266020,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":49720,"timestamp":6052318063052,"id":3612,"parentId":2970,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/animation/customGraphicKeyframeAnimation.js","layer":"ssr"},"startTime":1775659265971,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":48283,"timestamp":6052318064500,"id":3686,"parentId":3613,"tags":{},"startTime":1775659265973,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":40,"timestamp":6052318112787,"id":3800,"parentId":3613,"tags":{},"startTime":1775659266021,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":50746,"timestamp":6052318063094,"id":3613,"parentId":2970,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/animation/customGraphicTransition.js","layer":"ssr"},"startTime":1775659265971,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":49408,"timestamp":6052318064442,"id":3670,"parentId":3597,"tags":{},"startTime":1775659265972,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":33,"timestamp":6052318113855,"id":3801,"parentId":3597,"tags":{},"startTime":1775659266022,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":51706,"timestamp":6052318062495,"id":3597,"parentId":2948,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/LineDraw.js","layer":"ssr"},"startTime":1775659265971,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":49700,"timestamp":6052318064510,"id":3689,"parentId":3616,"tags":{},"startTime":1775659265973,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":28,"timestamp":6052318114215,"id":3802,"parentId":3616,"tags":{},"startTime":1775659266022,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":50724,"timestamp":6052318063667,"id":3616,"parentId":2970,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/polar/prepareCustom.js","layer":"ssr"},"startTime":1775659265972,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":49882,"timestamp":6052318064513,"id":3690,"parentId":3617,"tags":{},"startTime":1775659265973,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":25,"timestamp":6052318114398,"id":3803,"parentId":3617,"tags":{},"startTime":1775659266022,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":50662,"timestamp":6052318063873,"id":3617,"parentId":2970,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/prepareCustom.js","layer":"ssr"},"startTime":1775659265972,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":50023,"timestamp":6052318064516,"id":3691,"parentId":3618,"tags":{},"startTime":1775659265973,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":25,"timestamp":6052318114542,"id":3804,"parentId":3618,"tags":{},"startTime":1775659266023,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":50710,"timestamp":6052318063953,"id":3618,"parentId":2970,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/single/prepareCustom.js","layer":"ssr"},"startTime":1775659265972,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":50142,"timestamp":6052318064524,"id":3693,"parentId":3620,"tags":{},"startTime":1775659265973,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":24,"timestamp":6052318114670,"id":3805,"parentId":3620,"tags":{},"startTime":1775659266023,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":50786,"timestamp":6052318064040,"id":3620,"parentId":2966,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/gauge/PointerPath.js","layer":"ssr"},"startTime":1775659265972,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":50303,"timestamp":6052318064527,"id":3694,"parentId":3621,"tags":{},"startTime":1775659265973,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":28,"timestamp":6052318114834,"id":3806,"parentId":3621,"tags":{},"startTime":1775659266023,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":50915,"timestamp":6052318064077,"id":3621,"parentId":2974,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/axisDefault.js","layer":"ssr"},"startTime":1775659265972,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":50476,"timestamp":6052318064521,"id":3692,"parentId":3619,"tags":{},"startTime":1775659265973,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":24,"timestamp":6052318115000,"id":3807,"parentId":3619,"tags":{},"startTime":1775659266023,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":51086,"timestamp":6052318064001,"id":3619,"parentId":2970,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/calendar/prepareCustom.js","layer":"ssr"},"startTime":1775659265972,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":50561,"timestamp":6052318064529,"id":3695,"parentId":3622,"tags":{},"startTime":1775659265973,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":24,"timestamp":6052318115093,"id":3808,"parentId":3622,"tags":{},"startTime":1775659266023,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":51055,"timestamp":6052318064111,"id":3622,"parentId":2974,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/axisCommonTypes.js","layer":"ssr"},"startTime":1775659265972,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":50638,"timestamp":6052318064532,"id":3696,"parentId":3623,"tags":{},"startTime":1775659265973,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":25,"timestamp":6052318115173,"id":3809,"parentId":3623,"tags":{},"startTime":1775659266023,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":51219,"timestamp":6052318064146,"id":3623,"parentId":2974,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/OrdinalMeta.js","layer":"ssr"},"startTime":1775659265972,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":50860,"timestamp":6052318064507,"id":3688,"parentId":3615,"tags":{},"startTime":1775659265973,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":33,"timestamp":6052318115371,"id":3810,"parentId":3615,"tags":{},"startTime":1775659266023,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":51958,"timestamp":6052318063546,"id":3615,"parentId":2970,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/cartesian/prepareCustom.js","layer":"ssr"},"startTime":1775659265972,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":61173,"timestamp":6052318066871,"id":3705,"parentId":3697,"tags":{},"startTime":1775659265975,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":37,"timestamp":6052318128055,"id":3811,"parentId":3697,"tags":{},"startTime":1775659266036,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":62152,"timestamp":6052318066558,"id":3697,"parentId":2983,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/Geo.js","layer":"ssr"},"startTime":1775659265975,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":61847,"timestamp":6052318066886,"id":3709,"parentId":3701,"tags":{},"startTime":1775659265975,"traceId":"63571fab0751eb1f"}]
-[{"name":"next-swc-loader","duration":57,"timestamp":6052318128835,"id":3812,"parentId":3701,"tags":{},"startTime":1775659266037,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":62928,"timestamp":6052318066721,"id":3701,"parentId":2986,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/BaseAxisPointer.js","layer":"ssr"},"startTime":1775659265975,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":62782,"timestamp":6052318066879,"id":3706,"parentId":3698,"tags":{},"startTime":1775659265975,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":42,"timestamp":6052318129669,"id":3813,"parentId":3698,"tags":{},"startTime":1775659266038,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":63522,"timestamp":6052318066612,"id":3698,"parentId":2985,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/GeoSVGResource.js","layer":"ssr"},"startTime":1775659265975,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":63261,"timestamp":6052318066882,"id":3707,"parentId":3699,"tags":{},"startTime":1775659265975,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":30,"timestamp":6052318130161,"id":3814,"parentId":3699,"tags":{},"startTime":1775659266038,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":63782,"timestamp":6052318066652,"id":3699,"parentId":2985,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/GeoJSONResource.js","layer":"ssr"},"startTime":1775659265975,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":63548,"timestamp":6052318066890,"id":3711,"parentId":3703,"tags":{},"startTime":1775659265975,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":27,"timestamp":6052318130442,"id":3815,"parentId":3703,"tags":{},"startTime":1775659266038,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":63802,"timestamp":6052318066797,"id":3703,"parentId":3043,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/single/singleAxisHelper.js","layer":"ssr"},"startTime":1775659265975,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":63715,"timestamp":6052318066888,"id":3710,"parentId":3702,"tags":{},"startTime":1775659265975,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":39,"timestamp":6052318130606,"id":3816,"parentId":3702,"tags":{},"startTime":1775659266039,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":64933,"timestamp":6052318066759,"id":3702,"parentId":2986,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axis/AxisBuilder.js","layer":"ssr"},"startTime":1775659265975,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":64815,"timestamp":6052318066884,"id":3708,"parentId":3700,"tags":{},"startTime":1775659265975,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":30,"timestamp":6052318131704,"id":3817,"parentId":3700,"tags":{},"startTime":1775659266040,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":65392,"timestamp":6052318066687,"id":3700,"parentId":2986,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/viewHelper.js","layer":"ssr"},"startTime":1775659265975,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":65195,"timestamp":6052318066892,"id":3712,"parentId":3704,"tags":{},"startTime":1775659265975,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":30,"timestamp":6052318132090,"id":3818,"parentId":3704,"tags":{},"startTime":1775659266040,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":65625,"timestamp":6052318066832,"id":3704,"parentId":3048,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/visual/visualSolution.js","layer":"ssr"},"startTime":1775659265975,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":65218,"timestamp":6052318067243,"id":3719,"parentId":3713,"tags":{},"startTime":1775659265975,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":38,"timestamp":6052318132465,"id":3819,"parentId":3713,"tags":{},"startTime":1775659266040,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":66828,"timestamp":6052318067024,"id":3713,"parentId":3047,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/helper/BrushController.js","layer":"ssr"},"startTime":1775659265975,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":77730,"timestamp":6052318067248,"id":3720,"parentId":3714,"tags":{},"startTime":1775659265975,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":34,"timestamp":6052318144986,"id":3820,"parentId":3714,"tags":{},"startTime":1775659266053,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":78401,"timestamp":6052318067059,"id":3714,"parentId":3059,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/cartesian/cartesianAxisHelper.js","layer":"ssr"},"startTime":1775659265975,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":78213,"timestamp":6052318067257,"id":3724,"parentId":3718,"tags":{},"startTime":1775659265975,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":29,"timestamp":6052318145475,"id":3821,"parentId":3718,"tags":{},"startTime":1775659266053,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":78520,"timestamp":6052318067207,"id":3718,"parentId":3060,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axis/axisSplitHelper.js","layer":"ssr"},"startTime":1775659265975,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":78478,"timestamp":6052318067253,"id":3722,"parentId":3716,"tags":{},"startTime":1775659265975,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":27,"timestamp":6052318145734,"id":3822,"parentId":3716,"tags":{},"startTime":1775659266054,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":78771,"timestamp":6052318067138,"id":3716,"parentId":3059,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/cartesian/Axis2D.js","layer":"ssr"},"startTime":1775659265975,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":78663,"timestamp":6052318067250,"id":3721,"parentId":3715,"tags":{},"startTime":1775659265975,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":30,"timestamp":6052318145916,"id":3823,"parentId":3715,"tags":{},"startTime":1775659266054,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":79122,"timestamp":6052318067103,"id":3715,"parentId":3059,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/axisAlignTicks.js","layer":"ssr"},"startTime":1775659265975,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":78976,"timestamp":6052318067255,"id":3723,"parentId":3717,"tags":{},"startTime":1775659265975,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":29,"timestamp":6052318146235,"id":3824,"parentId":3717,"tags":{},"startTime":1775659266054,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":79477,"timestamp":6052318067172,"id":3717,"parentId":3059,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/cartesian/Cartesian2D.js","layer":"ssr"},"startTime":1775659265975,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":12368,"timestamp":6052318162651,"id":3838,"parentId":3826,"tags":{},"startTime":1775659266071,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":32,"timestamp":6052318175029,"id":3989,"parentId":3826,"tags":{},"startTime":1775659266083,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":13331,"timestamp":6052318162088,"id":3826,"parentId":3144,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/helper/brushHelper.js","layer":"ssr"},"startTime":1775659266070,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":12759,"timestamp":6052318162671,"id":3842,"parentId":3830,"tags":{},"startTime":1775659266071,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":30,"timestamp":6052318175434,"id":3990,"parentId":3830,"tags":{},"startTime":1775659266083,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":13691,"timestamp":6052318162241,"id":3830,"parentId":3147,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/polar/Polar.js","layer":"ssr"},"startTime":1775659266070,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":13303,"timestamp":6052318162634,"id":3837,"parentId":3825,"tags":{},"startTime":1775659266071,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":28,"timestamp":6052318175941,"id":3991,"parentId":3825,"tags":{},"startTime":1775659266084,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":14234,"timestamp":6052318161998,"id":3825,"parentId":3059,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/scale/helper.js","layer":"ssr"},"startTime":1775659266070,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":13560,"timestamp":6052318162677,"id":3844,"parentId":3832,"tags":{},"startTime":1775659266071,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":26,"timestamp":6052318176240,"id":3992,"parentId":3832,"tags":{},"startTime":1775659266084,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":14038,"timestamp":6052318162313,"id":3832,"parentId":3171,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/SelectZoomModel.js","layer":"ssr"},"startTime":1775659266070,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":13699,"timestamp":6052318162656,"id":3839,"parentId":3827,"tags":{},"startTime":1775659266071,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":23,"timestamp":6052318176358,"id":3993,"parentId":3827,"tags":{},"startTime":1775659266084,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":14322,"timestamp":6052318162132,"id":3827,"parentId":3148,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/legacy/getTextRect.js","layer":"ssr"},"startTime":1775659266070,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":13783,"timestamp":6052318162674,"id":3843,"parentId":3831,"tags":{},"startTime":1775659266071,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":25,"timestamp":6052318176459,"id":3994,"parentId":3831,"tags":{},"startTime":1775659266084,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":14393,"timestamp":6052318162278,"id":3831,"parentId":3165,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/globalListener.js","layer":"ssr"},"startTime":1775659266070,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":14013,"timestamp":6052318162661,"id":3840,"parentId":3828,"tags":{},"startTime":1775659266071,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":22,"timestamp":6052318176677,"id":3995,"parentId":3828,"tags":{},"startTime":1775659266085,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":14781,"timestamp":6052318162170,"id":3828,"parentId":3148,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/dom.js","layer":"ssr"},"startTime":1775659266070,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":14271,"timestamp":6052318162684,"id":3846,"parentId":3834,"tags":{},"startTime":1775659266071,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":26,"timestamp":6052318176958,"id":3996,"parentId":3834,"tags":{},"startTime":1775659266085,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":14746,"timestamp":6052318162385,"id":3834,"parentId":3168,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/findPointFromSeries.js","layer":"ssr"},"startTime":1775659266070,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":14455,"timestamp":6052318162680,"id":3845,"parentId":3833,"tags":{},"startTime":1775659266071,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":23,"timestamp":6052318177138,"id":3997,"parentId":3833,"tags":{},"startTime":1775659266085,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":14879,"timestamp":6052318162350,"id":3833,"parentId":3171,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/SelectZoomView.js","layer":"ssr"},"startTime":1775659266070,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":14958,"timestamp":6052318162690,"id":3848,"parentId":3836,"tags":{},"startTime":1775659266071,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":33,"timestamp":6052318177651,"id":3998,"parentId":3836,"tags":{},"startTime":1775659266086,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":16105,"timestamp":6052318162456,"id":3836,"parentId":3166,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/helper/BrushTargetManager.js","layer":"ssr"},"startTime":1775659266070,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":15882,"timestamp":6052318162687,"id":3847,"parentId":3835,"tags":{},"startTime":1775659266071,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":56,"timestamp":6052318178573,"id":3999,"parentId":3835,"tags":{},"startTime":1775659266087,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":16658,"timestamp":6052318162420,"id":3835,"parentId":3166,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/brush/selector.js","layer":"ssr"},"startTime":1775659266070,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":16439,"timestamp":6052318162666,"id":3841,"parentId":3829,"tags":{},"startTime":1775659266071,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":63,"timestamp":6052318179121,"id":4000,"parentId":3829,"tags":{},"startTime":1775659266087,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":18220,"timestamp":6052318162205,"id":3829,"parentId":3148,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/helper/parseText.js","layer":"ssr"},"startTime":1775659266070,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":11221,"timestamp":6052318172359,"id":3915,"parentId":3851,"tags":{},"startTime":1775659266080,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":39,"timestamp":6052318183591,"id":4001,"parentId":3851,"tags":{},"startTime":1775659266092,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":14199,"timestamp":6052318169728,"id":3851,"parentId":3173,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/helper/listComponent.js","layer":"ssr"},"startTime":1775659266078,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":11579,"timestamp":6052318172365,"id":3916,"parentId":3852,"tags":{},"startTime":1775659266080,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":43,"timestamp":6052318183948,"id":4002,"parentId":3852,"tags":{},"startTime":1775659266092,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":15173,"timestamp":6052318169769,"id":3852,"parentId":3170,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/tooltip/TooltipHTMLContent.js","layer":"ssr"},"startTime":1775659266078,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":12595,"timestamp":6052318172351,"id":3914,"parentId":3850,"tags":{},"startTime":1775659266080,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":34,"timestamp":6052318184950,"id":4003,"parentId":3850,"tags":{},"startTime":1775659266093,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":15751,"timestamp":6052318169683,"id":3850,"parentId":3173,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/contain/text.js","layer":"ssr"},"startTime":1775659266078,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":16344,"timestamp":6052318172374,"id":3917,"parentId":3853,"tags":{},"startTime":1775659266080,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":34,"timestamp":6052318188726,"id":4010,"parentId":3853,"tags":{},"startTime":1775659266097,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":19391,"timestamp":6052318169816,"id":3853,"parentId":3170,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/tooltip/TooltipRichContent.js","layer":"ssr"},"startTime":1775659266078,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":16890,"timestamp":6052318172329,"id":3913,"parentId":3849,"tags":{},"startTime":1775659266080,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":33,"timestamp":6052318189226,"id":4011,"parentId":3849,"tags":{},"startTime":1775659266097,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":21292,"timestamp":6052318169609,"id":3849,"parentId":2468,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/node_modules/tslib/tslib.es6.js","layer":"ssr"},"startTime":1775659266078,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":18548,"timestamp":6052318172379,"id":3918,"parentId":3854,"tags":{},"startTime":1775659266080,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":30,"timestamp":6052318190931,"id":4012,"parentId":3854,"tags":{},"startTime":1775659266099,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":21481,"timestamp":6052318169854,"id":3854,"parentId":3189,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/scale/Ordinal.js","layer":"ssr"},"startTime":1775659266078,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":18956,"timestamp":6052318172387,"id":3920,"parentId":3856,"tags":{},"startTime":1775659266080,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":25,"timestamp":6052318191346,"id":4013,"parentId":3856,"tags":{},"startTime":1775659266099,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":21605,"timestamp":6052318169930,"id":3856,"parentId":3170,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/tooltip/helper.js","layer":"ssr"},"startTime":1775659266078,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":19156,"timestamp":6052318172383,"id":3919,"parentId":3855,"tags":{},"startTime":1775659266080,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":60,"timestamp":6052318191542,"id":4014,"parentId":3855,"tags":{},"startTime":1775659266100,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":22956,"timestamp":6052318169896,"id":3855,"parentId":3189,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/scale/Time.js","layer":"ssr"},"startTime":1775659266078,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":20461,"timestamp":6052318172400,"id":3924,"parentId":3860,"tags":{},"startTime":1775659266080,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":34,"timestamp":6052318192866,"id":4015,"parentId":3860,"tags":{},"startTime":1775659266101,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":23112,"timestamp":6052318170168,"id":3860,"parentId":3185,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/MarkerModel.js","layer":"ssr"},"startTime":1775659266078,"traceId":"63571fab0751eb1f"}]
-[{"name":"read-resource","duration":20990,"timestamp":6052318172391,"id":3921,"parentId":3857,"tags":{},"startTime":1775659266080,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":32,"timestamp":6052318193385,"id":4016,"parentId":3857,"tags":{},"startTime":1775659266101,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":23885,"timestamp":6052318169967,"id":3857,"parentId":3189,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/scale/Interval.js","layer":"ssr"},"startTime":1775659266078,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":21465,"timestamp":6052318172394,"id":3922,"parentId":3858,"tags":{},"startTime":1775659266080,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":32,"timestamp":6052318193862,"id":4017,"parentId":3858,"tags":{},"startTime":1775659266102,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":24286,"timestamp":6052318170005,"id":3858,"parentId":3185,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/markerHelper.js","layer":"ssr"},"startTime":1775659266078,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":21900,"timestamp":6052318172397,"id":3923,"parentId":3859,"tags":{},"startTime":1775659266080,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":27,"timestamp":6052318194301,"id":4018,"parentId":3859,"tags":{},"startTime":1775659266102,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":24456,"timestamp":6052318170039,"id":3859,"parentId":3185,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/MarkerView.js","layer":"ssr"},"startTime":1775659266078,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":22091,"timestamp":6052318172408,"id":3926,"parentId":3862,"tags":{},"startTime":1775659266080,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":26,"timestamp":6052318194502,"id":4019,"parentId":3862,"tags":{},"startTime":1775659266103,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":24319,"timestamp":6052318170284,"id":3862,"parentId":3189,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/timeline/TimelineView.js","layer":"ssr"},"startTime":1775659266078,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":22196,"timestamp":6052318172411,"id":3927,"parentId":3863,"tags":{},"startTime":1775659266080,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":25,"timestamp":6052318194612,"id":4020,"parentId":3863,"tags":{},"startTime":1775659266103,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":24398,"timestamp":6052318170331,"id":3863,"parentId":3189,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/timeline/TimelineAxis.js","layer":"ssr"},"startTime":1775659266078,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":22329,"timestamp":6052318172403,"id":3925,"parentId":3861,"tags":{},"startTime":1775659266080,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":33,"timestamp":6052318194735,"id":4021,"parentId":3861,"tags":{},"startTime":1775659266103,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":25020,"timestamp":6052318170237,"id":3861,"parentId":3186,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/timeline/TimelineModel.js","layer":"ssr"},"startTime":1775659266078,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":22850,"timestamp":6052318172423,"id":3931,"parentId":3867,"tags":{},"startTime":1775659266080,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":38,"timestamp":6052318195281,"id":4022,"parentId":3867,"tags":{},"startTime":1775659266103,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":25352,"timestamp":6052318170491,"id":3867,"parentId":3236,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/single/Single.js","layer":"ssr"},"startTime":1775659266079,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":23458,"timestamp":6052318172420,"id":3930,"parentId":3866,"tags":{},"startTime":1775659266080,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":31,"timestamp":6052318195884,"id":4023,"parentId":3866,"tags":{},"startTime":1775659266104,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":25588,"timestamp":6052318170452,"id":3866,"parentId":3228,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/radar/IndicatorAxis.js","layer":"ssr"},"startTime":1775659266078,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":23619,"timestamp":6052318172426,"id":3932,"parentId":3868,"tags":{},"startTime":1775659266080,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":54,"timestamp":6052318196055,"id":4024,"parentId":3868,"tags":{},"startTime":1775659266104,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":26183,"timestamp":6052318170528,"id":3868,"parentId":3240,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sunburst/SunburstPiece.js","layer":"ssr"},"startTime":1775659266079,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":24307,"timestamp":6052318172414,"id":3928,"parentId":3864,"tags":{},"startTime":1775659266080,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":34,"timestamp":6052318196726,"id":4025,"parentId":3864,"tags":{},"startTime":1775659266105,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":27429,"timestamp":6052318170370,"id":3864,"parentId":2746,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/node_modules/tslib/tslib.es6.js","layer":"ssr"},"startTime":1775659266078,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":25393,"timestamp":6052318172418,"id":3929,"parentId":3865,"tags":{},"startTime":1775659266080,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":39,"timestamp":6052318197819,"id":4026,"parentId":3865,"tags":{},"startTime":1775659266106,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":28242,"timestamp":6052318170411,"id":3865,"parentId":3233,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/parallel/Parallel.js","layer":"ssr"},"startTime":1775659266078,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":26224,"timestamp":6052318172437,"id":3933,"parentId":3869,"tags":{},"startTime":1775659266080,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":37,"timestamp":6052318198666,"id":4027,"parentId":3869,"tags":{},"startTime":1775659266107,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":29550,"timestamp":6052318170571,"id":3869,"parentId":3262,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/conditionalExpression.js","layer":"ssr"},"startTime":1775659266079,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":27690,"timestamp":6052318172447,"id":3935,"parentId":3871,"tags":{},"startTime":1775659266080,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":39,"timestamp":6052318200146,"id":4028,"parentId":3871,"tags":{},"startTime":1775659266108,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":29778,"timestamp":6052318170670,"id":3871,"parentId":3251,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/helper/sliderMove.js","layer":"ssr"},"startTime":1775659266079,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":28003,"timestamp":6052318172458,"id":3938,"parentId":3874,"tags":{},"startTime":1775659266080,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":32,"timestamp":6052318200468,"id":4029,"parentId":3874,"tags":{},"startTime":1775659266108,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":29834,"timestamp":6052318170836,"id":3874,"parentId":3251,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/DataZoomView.js","layer":"ssr"},"startTime":1775659266079,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":28224,"timestamp":6052318172453,"id":3937,"parentId":3873,"tags":{},"startTime":1775659266080,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":28,"timestamp":6052318200681,"id":4030,"parentId":3873,"tags":{},"startTime":1775659266109,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":30013,"timestamp":6052318170790,"id":3873,"parentId":3253,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/dataZoomAction.js","layer":"ssr"},"startTime":1775659266079,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":28362,"timestamp":6052318172445,"id":3934,"parentId":3870,"tags":{},"startTime":1775659266080,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":39,"timestamp":6052318200810,"id":4031,"parentId":3870,"tags":{},"startTime":1775659266109,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":31056,"timestamp":6052318170613,"id":3870,"parentId":3250,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/DataZoomModel.js","layer":"ssr"},"startTime":1775659266079,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":29229,"timestamp":6052318172450,"id":3936,"parentId":3872,"tags":{},"startTime":1775659266080,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":33,"timestamp":6052318201684,"id":4032,"parentId":3872,"tags":{},"startTime":1775659266110,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":31178,"timestamp":6052318170737,"id":3872,"parentId":3253,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/dataZoomProcessor.js","layer":"ssr"},"startTime":1775659266079,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":29459,"timestamp":6052318172462,"id":3939,"parentId":3875,"tags":{},"startTime":1775659266080,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":29,"timestamp":6052318201925,"id":4033,"parentId":3875,"tags":{},"startTime":1775659266110,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":31391,"timestamp":6052318170880,"id":3875,"parentId":3252,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/helper.js","layer":"ssr"},"startTime":1775659266079,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":29814,"timestamp":6052318172464,"id":3940,"parentId":3876,"tags":{},"startTime":1775659266080,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":31,"timestamp":6052318202283,"id":4034,"parentId":3876,"tags":{},"startTime":1775659266110,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":31576,"timestamp":6052318170928,"id":3876,"parentId":3257,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/history.js","layer":"ssr"},"startTime":1775659266079,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":30050,"timestamp":6052318172467,"id":3941,"parentId":3877,"tags":{},"startTime":1775659266080,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":27,"timestamp":6052318202521,"id":4035,"parentId":3877,"tags":{},"startTime":1775659266111,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":31930,"timestamp":6052318170980,"id":3877,"parentId":3261,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/event.js","layer":"ssr"},"startTime":1775659266079,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":30433,"timestamp":6052318172483,"id":3943,"parentId":3879,"tags":{},"startTime":1775659266081,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":51,"timestamp":6052318202929,"id":4036,"parentId":3879,"tags":{},"startTime":1775659266111,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":32702,"timestamp":6052318171056,"id":3879,"parentId":3314,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/VisualMapModel.js","layer":"ssr"},"startTime":1775659266079,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":31289,"timestamp":6052318172478,"id":3942,"parentId":3878,"tags":{},"startTime":1775659266080,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":32,"timestamp":6052318203773,"id":4037,"parentId":3878,"tags":{},"startTime":1775659266112,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":32924,"timestamp":6052318171017,"id":3878,"parentId":3314,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/visual/visualDefault.js","layer":"ssr"},"startTime":1775659266079,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":31460,"timestamp":6052318172486,"id":3944,"parentId":3880,"tags":{},"startTime":1775659266081,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":29,"timestamp":6052318203951,"id":4038,"parentId":3880,"tags":{},"startTime":1775659266112,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":33155,"timestamp":6052318171094,"id":3880,"parentId":3315,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/VisualMapView.js","layer":"ssr"},"startTime":1775659266079,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":31764,"timestamp":6052318172489,"id":3945,"parentId":3881,"tags":{},"startTime":1775659266081,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":27,"timestamp":6052318204256,"id":4039,"parentId":3881,"tags":{},"startTime":1775659266112,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":33304,"timestamp":6052318171138,"id":3881,"parentId":3315,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/helper.js","layer":"ssr"},"startTime":1775659266079,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":31955,"timestamp":6052318172492,"id":3946,"parentId":3882,"tags":{},"startTime":1775659266081,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":26,"timestamp":6052318204450,"id":4040,"parentId":3882,"tags":{},"startTime":1775659266112,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":33326,"timestamp":6052318171217,"id":3882,"parentId":3316,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/visualMapAction.js","layer":"ssr"},"startTime":1775659266079,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":32049,"timestamp":6052318172497,"id":3948,"parentId":3884,"tags":{},"startTime":1775659266081,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":25,"timestamp":6052318204549,"id":4041,"parentId":3884,"tags":{},"startTime":1775659266113,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":33372,"timestamp":6052318171319,"id":3884,"parentId":3316,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/preprocessor.js","layer":"ssr"},"startTime":1775659266079,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":32192,"timestamp":6052318172502,"id":3950,"parentId":3886,"tags":{},"startTime":1775659266081,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":27,"timestamp":6052318204698,"id":4042,"parentId":3886,"tags":{},"startTime":1775659266113,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":33664,"timestamp":6052318171393,"id":3886,"parentId":3338,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/scale/Log.js","layer":"ssr"},"startTime":1775659266079,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":32562,"timestamp":6052318172500,"id":3949,"parentId":3885,"tags":{},"startTime":1775659266081,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":24,"timestamp":6052318205065,"id":4043,"parentId":3885,"tags":{},"startTime":1775659266113,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":33920,"timestamp":6052318171358,"id":3885,"parentId":3333,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/tool/transformPath.js","layer":"ssr"},"startTime":1775659266079,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":32787,"timestamp":6052318172495,"id":3947,"parentId":3883,"tags":{},"startTime":1775659266081,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":28,"timestamp":6052318205285,"id":4044,"parentId":3883,"tags":{},"startTime":1775659266113,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":34196,"timestamp":6052318171277,"id":3883,"parentId":3316,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/visualEncoding.js","layer":"ssr"},"startTime":1775659266079,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":32965,"timestamp":6052318172511,"id":3953,"parentId":3889,"tags":{},"startTime":1775659266081,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":24,"timestamp":6052318205480,"id":4045,"parentId":3889,"tags":{},"startTime":1775659266113,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":34123,"timestamp":6052318171501,"id":3889,"parentId":3338,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/scale/Scale.js","layer":"ssr"},"startTime":1775659266080,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":33122,"timestamp":6052318172505,"id":3951,"parentId":3887,"tags":{},"startTime":1775659266081,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":26,"timestamp":6052318205631,"id":4046,"parentId":3887,"tags":{},"startTime":1775659266114,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":34486,"timestamp":6052318171431,"id":3887,"parentId":3341,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/referHelper.js","layer":"ssr"},"startTime":1775659266079,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":33413,"timestamp":6052318172508,"id":3952,"parentId":3888,"tags":{},"startTime":1775659266081,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":29,"timestamp":6052318205924,"id":4047,"parentId":3888,"tags":{},"startTime":1775659266114,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":34857,"timestamp":6052318171466,"id":3888,"parentId":3338,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/scaleRawExtentInfo.js","layer":"ssr"},"startTime":1775659266079,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":33817,"timestamp":6052318172513,"id":3954,"parentId":3890,"tags":{},"startTime":1775659266081,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":24,"timestamp":6052318206333,"id":4048,"parentId":3890,"tags":{},"startTime":1775659266114,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":34879,"timestamp":6052318171534,"id":3890,"parentId":3346,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/Gradient.js","layer":"ssr"},"startTime":1775659266080,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":33893,"timestamp":6052318172523,"id":3957,"parentId":3893,"tags":{},"startTime":1775659266081,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":23,"timestamp":6052318206420,"id":4049,"parentId":3893,"tags":{},"startTime":1775659266114,"traceId":"63571fab0751eb1f"}]
-[{"name":"build-module-js","duration":34971,"timestamp":6052318171644,"id":3893,"parentId":3399,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/helper/poly.js","layer":"ssr"},"startTime":1775659266080,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":34094,"timestamp":6052318172526,"id":3958,"parentId":3894,"tags":{},"startTime":1775659266081,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":31,"timestamp":6052318206633,"id":4050,"parentId":3894,"tags":{},"startTime":1775659266115,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":35186,"timestamp":6052318171679,"id":3894,"parentId":3404,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/helper/roundRect.js","layer":"ssr"},"startTime":1775659266080,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":34350,"timestamp":6052318172521,"id":3956,"parentId":3892,"tags":{},"startTime":1775659266081,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":33,"timestamp":6052318206875,"id":4051,"parentId":3892,"tags":{},"startTime":1775659266115,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":36103,"timestamp":6052318171607,"id":3892,"parentId":3406,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/curve.js","layer":"ssr"},"startTime":1775659266080,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":35200,"timestamp":6052318172518,"id":3955,"parentId":3891,"tags":{},"startTime":1775659266081,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":31,"timestamp":6052318207722,"id":4052,"parentId":3891,"tags":{},"startTime":1775659266116,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":36733,"timestamp":6052318171572,"id":3891,"parentId":3397,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/helper/roundSector.js","layer":"ssr"},"startTime":1775659266080,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":35778,"timestamp":6052318172531,"id":3960,"parentId":3896,"tags":{},"startTime":1775659266081,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":35,"timestamp":6052318208313,"id":4053,"parentId":3896,"tags":{},"startTime":1775659266116,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":37171,"timestamp":6052318171747,"id":3896,"parentId":3525,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/tool/convertPath.js","layer":"ssr"},"startTime":1775659266080,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":36400,"timestamp":6052318172528,"id":3959,"parentId":3895,"tags":{},"startTime":1775659266081,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":28,"timestamp":6052318208934,"id":4054,"parentId":3895,"tags":{},"startTime":1775659266117,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":37435,"timestamp":6052318171713,"id":3895,"parentId":3344,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/contain/polygon.js","layer":"ssr"},"startTime":1775659266080,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":36627,"timestamp":6052318172533,"id":3961,"parentId":3897,"tags":{},"startTime":1775659266081,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":37,"timestamp":6052318209166,"id":4055,"parentId":3897,"tags":{},"startTime":1775659266117,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":38209,"timestamp":6052318171781,"id":3897,"parentId":3525,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/tool/dividePath.js","layer":"ssr"},"startTime":1775659266080,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":37461,"timestamp":6052318172535,"id":3962,"parentId":3898,"tags":{},"startTime":1775659266081,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":44,"timestamp":6052318210001,"id":4056,"parentId":3898,"tags":{},"startTime":1775659266118,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":40617,"timestamp":6052318171815,"id":3898,"parentId":3530,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/animation/Animator.js","layer":"ssr"},"startTime":1775659266080,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":39906,"timestamp":6052318172538,"id":3963,"parentId":3899,"tags":{},"startTime":1775659266081,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":32,"timestamp":6052318212450,"id":4057,"parentId":3899,"tags":{},"startTime":1775659266120,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":40870,"timestamp":6052318171853,"id":3899,"parentId":3527,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/GestureMgr.js","layer":"ssr"},"startTime":1775659266080,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":40183,"timestamp":6052318172547,"id":3967,"parentId":3903,"tags":{},"startTime":1775659266081,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":28,"timestamp":6052318212736,"id":4058,"parentId":3903,"tags":{},"startTime":1775659266121,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":40871,"timestamp":6052318171987,"id":3903,"parentId":3567,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/contain/quadratic.js","layer":"ssr"},"startTime":1775659266080,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":40320,"timestamp":6052318172542,"id":3965,"parentId":3901,"tags":{},"startTime":1775659266081,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":24,"timestamp":6052318212866,"id":4059,"parentId":3901,"tags":{},"startTime":1775659266121,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":41060,"timestamp":6052318171921,"id":3901,"parentId":3567,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/contain/cubic.js","layer":"ssr"},"startTime":1775659266080,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":40438,"timestamp":6052318172545,"id":3966,"parentId":3902,"tags":{},"startTime":1775659266081,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":22,"timestamp":6052318212987,"id":4060,"parentId":3902,"tags":{},"startTime":1775659266121,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":41166,"timestamp":6052318171954,"id":3902,"parentId":3567,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/contain/arc.js","layer":"ssr"},"startTime":1775659266080,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":40569,"timestamp":6052318172554,"id":3970,"parentId":3906,"tags":{},"startTime":1775659266081,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":24,"timestamp":6052318213126,"id":4061,"parentId":3906,"tags":{},"startTime":1775659266121,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":41318,"timestamp":6052318172089,"id":3906,"parentId":3589,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/SVGPathRebuilder.js","layer":"ssr"},"startTime":1775659266080,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":40859,"timestamp":6052318172552,"id":3969,"parentId":3905,"tags":{},"startTime":1775659266081,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":23,"timestamp":6052318213414,"id":4062,"parentId":3905,"tags":{},"startTime":1775659266121,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":41499,"timestamp":6052318172055,"id":3905,"parentId":3591,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/domapi.js","layer":"ssr"},"startTime":1775659266080,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":41000,"timestamp":6052318172557,"id":3971,"parentId":3907,"tags":{},"startTime":1775659266081,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":24,"timestamp":6052318213560,"id":4063,"parentId":3907,"tags":{},"startTime":1775659266122,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":41660,"timestamp":6052318172121,"id":3907,"parentId":3589,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/mapStyleToAttrs.js","layer":"ssr"},"startTime":1775659266080,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":41244,"timestamp":6052318172540,"id":3964,"parentId":3900,"tags":{},"startTime":1775659266081,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":22,"timestamp":6052318213788,"id":4064,"parentId":3900,"tags":{},"startTime":1775659266122,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":42003,"timestamp":6052318171887,"id":3900,"parentId":3567,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/contain/line.js","layer":"ssr"},"startTime":1775659266080,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":41343,"timestamp":6052318172550,"id":3968,"parentId":3904,"tags":{},"startTime":1775659266081,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":22,"timestamp":6052318213896,"id":4065,"parentId":3904,"tags":{},"startTime":1775659266122,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":41966,"timestamp":6052318172021,"id":3904,"parentId":3567,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/contain/windingLine.js","layer":"ssr"},"startTime":1775659266080,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":41427,"timestamp":6052318172562,"id":3973,"parentId":3909,"tags":{},"startTime":1775659266081,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":23,"timestamp":6052318213993,"id":4066,"parentId":3909,"tags":{},"startTime":1775659266122,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":41975,"timestamp":6052318172183,"id":3909,"parentId":3589,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/cssEmphasis.js","layer":"ssr"},"startTime":1775659266080,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":41593,"timestamp":6052318172569,"id":3976,"parentId":3912,"tags":{},"startTime":1775659266081,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":27,"timestamp":6052318214165,"id":4067,"parentId":3912,"tags":{},"startTime":1775659266122,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":42016,"timestamp":6052318172280,"id":3912,"parentId":3582,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/helper/interactionMutex.js","layer":"ssr"},"startTime":1775659266080,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":41741,"timestamp":6052318172559,"id":3972,"parentId":3908,"tags":{},"startTime":1775659266081,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":27,"timestamp":6052318214302,"id":4068,"parentId":3908,"tags":{},"startTime":1775659266122,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":42673,"timestamp":6052318172153,"id":3908,"parentId":3589,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/cssAnimation.js","layer":"ssr"},"startTime":1775659266080,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":42262,"timestamp":6052318172567,"id":3975,"parentId":3911,"tags":{},"startTime":1775659266081,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":23,"timestamp":6052318214832,"id":4069,"parentId":3911,"tags":{},"startTime":1775659266123,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":42716,"timestamp":6052318172248,"id":3911,"parentId":3583,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/WeakMap.js","layer":"ssr"},"startTime":1775659266080,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":42402,"timestamp":6052318172564,"id":3974,"parentId":3910,"tags":{},"startTime":1775659266081,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":26,"timestamp":6052318214969,"id":4070,"parentId":3910,"tags":{},"startTime":1775659266123,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":42987,"timestamp":6052318172215,"id":3910,"parentId":3575,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/helper/linkSeriesData.js","layer":"ssr"},"startTime":1775659266080,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":55642,"timestamp":6052318174361,"id":3980,"parentId":3977,"tags":{},"startTime":1775659266082,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":42,"timestamp":6052318230022,"id":4071,"parentId":3977,"tags":{},"startTime":1775659266138,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":56222,"timestamp":6052318174208,"id":3977,"parentId":3527,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/mixin/Draggable.js","layer":"ssr"},"startTime":1775659266082,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":56060,"timestamp":6052318174379,"id":3982,"parentId":3979,"tags":{},"startTime":1775659266082,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":28,"timestamp":6052318230443,"id":4072,"parentId":3979,"tags":{},"startTime":1775659266138,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":56444,"timestamp":6052318174317,"id":3979,"parentId":3605,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/LinePath.js","layer":"ssr"},"startTime":1775659266082,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":56410,"timestamp":6052318174372,"id":3981,"parentId":3978,"tags":{},"startTime":1775659266082,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":50,"timestamp":6052318230792,"id":4073,"parentId":3978,"tags":{},"startTime":1775659266139,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":57844,"timestamp":6052318174275,"id":3978,"parentId":3603,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/Graph.js","layer":"ssr"},"startTime":1775659266082,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":67520,"timestamp":6052318174901,"id":3986,"parentId":3983,"tags":{},"startTime":1775659266083,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":34,"timestamp":6052318242431,"id":4074,"parentId":3983,"tags":{},"startTime":1775659266150,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":67993,"timestamp":6052318174713,"id":3983,"parentId":3717,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/cartesian/Cartesian.js","layer":"ssr"},"startTime":1775659266083,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":67806,"timestamp":6052318174908,"id":3987,"parentId":3984,"tags":{},"startTime":1775659266083,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":39,"timestamp":6052318242718,"id":4075,"parentId":3984,"tags":{},"startTime":1775659266151,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":69523,"timestamp":6052318174796,"id":3984,"parentId":3698,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/tool/parseSVG.js","layer":"ssr"},"startTime":1775659266083,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":69444,"timestamp":6052318174911,"id":3988,"parentId":3985,"tags":{},"startTime":1775659266083,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":43,"timestamp":6052318244367,"id":4076,"parentId":3985,"tags":{},"startTime":1775659266152,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":69834,"timestamp":6052318174851,"id":3985,"parentId":3698,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/tool/parseXML.js","layer":"ssr"},"startTime":1775659266083,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":60766,"timestamp":6052318186682,"id":4009,"parentId":4006,"tags":{},"startTime":1775659266095,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":34,"timestamp":6052318247455,"id":4083,"parentId":4006,"tags":{},"startTime":1775659266155,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":61076,"timestamp":6052318186569,"id":4006,"parentId":3699,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/fix/diaoyuIsland.js","layer":"ssr"},"startTime":1775659266095,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":60972,"timestamp":6052318186678,"id":4008,"parentId":4005,"tags":{},"startTime":1775659266095,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":27,"timestamp":6052318247654,"id":4084,"parentId":4005,"tags":{},"startTime":1775659266156,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":61244,"timestamp":6052318186528,"id":4005,"parentId":3699,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/fix/textCoord.js","layer":"ssr"},"startTime":1775659266095,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":61111,"timestamp":6052318186666,"id":4007,"parentId":4004,"tags":{},"startTime":1775659266095,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":28,"timestamp":6052318247780,"id":4085,"parentId":4004,"tags":{},"startTime":1775659266156,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":61586,"timestamp":6052318186458,"id":4004,"parentId":3699,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/fix/nanhai.js","layer":"ssr"},"startTime":1775659266094,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":4597,"timestamp":6052318245650,"id":4081,"parentId":4078,"tags":{},"startTime":1775659266154,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":52,"timestamp":6052318250266,"id":4102,"parentId":4078,"tags":{},"startTime":1775659266158,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":5022,"timestamp":6052318245529,"id":4078,"parentId":3830,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/polar/RadiusAxis.js","layer":"ssr"},"startTime":1775659266154,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":4924,"timestamp":6052318245635,"id":4080,"parentId":4077,"tags":{},"startTime":1775659266154,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":28,"timestamp":6052318250563,"id":4103,"parentId":4077,"tags":{},"startTime":1775659266159,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":5414,"timestamp":6052318245443,"id":4077,"parentId":3828,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/fourPointsTransform.js","layer":"ssr"},"startTime":1775659266153,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":5207,"timestamp":6052318245655,"id":4082,"parentId":4079,"tags":{},"startTime":1775659266154,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":27,"timestamp":6052318250864,"id":4104,"parentId":4079,"tags":{},"startTime":1775659266159,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":5500,"timestamp":6052318245571,"id":4079,"parentId":3830,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/polar/AngleAxis.js","layer":"ssr"},"startTime":1775659266154,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":3483,"timestamp":6052318249148,"id":4089,"parentId":4087,"tags":{},"startTime":1775659266157,"traceId":"63571fab0751eb1f"}]
-[{"name":"next-swc-loader","duration":29,"timestamp":6052318252733,"id":4105,"parentId":4087,"tags":{},"startTime":1775659266161,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":3794,"timestamp":6052318249091,"id":4087,"parentId":3865,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/parallel/ParallelAxis.js","layer":"ssr"},"startTime":1775659266157,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":3753,"timestamp":6052318249138,"id":4088,"parentId":4086,"tags":{},"startTime":1775659266157,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":25,"timestamp":6052318252894,"id":4106,"parentId":4086,"tags":{},"startTime":1775659266161,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":3975,"timestamp":6052318249037,"id":4086,"parentId":3867,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/single/SingleAxis.js","layer":"ssr"},"startTime":1775659266157,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":3587,"timestamp":6052318250144,"id":4098,"parentId":4092,"tags":{},"startTime":1775659266158,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":25,"timestamp":6052318253736,"id":4107,"parentId":4092,"tags":{},"startTime":1775659266162,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":3849,"timestamp":6052318249980,"id":4092,"parentId":3909,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/cssClassId.js","layer":"ssr"},"startTime":1775659266158,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":3706,"timestamp":6052318250129,"id":4096,"parentId":4090,"tags":{},"startTime":1775659266158,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":23,"timestamp":6052318253838,"id":4108,"parentId":4090,"tags":{},"startTime":1775659266162,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":4162,"timestamp":6052318249878,"id":4090,"parentId":3898,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/animation/Clip.js","layer":"ssr"},"startTime":1775659266158,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":3903,"timestamp":6052318250153,"id":4099,"parentId":4093,"tags":{},"startTime":1775659266158,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":33,"timestamp":6052318254059,"id":4109,"parentId":4093,"tags":{},"startTime":1775659266162,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":4604,"timestamp":6052318250017,"id":4093,"parentId":3872,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/AxisProxy.js","layer":"ssr"},"startTime":1775659266158,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":4486,"timestamp":6052318250139,"id":4097,"parentId":4091,"tags":{},"startTime":1775659266158,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":26,"timestamp":6052318254627,"id":4110,"parentId":4091,"tags":{},"startTime":1775659266163,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":5056,"timestamp":6052318249935,"id":4091,"parentId":3898,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/animation/easing.js","layer":"ssr"},"startTime":1775659266158,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":5711,"timestamp":6052318250161,"id":4101,"parentId":4095,"tags":{},"startTime":1775659266158,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":25,"timestamp":6052318255877,"id":4111,"parentId":4095,"tags":{},"startTime":1775659266164,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":5959,"timestamp":6052318250089,"id":4095,"parentId":3898,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/animation/cubicEasing.js","layer":"ssr"},"startTime":1775659266158,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":5895,"timestamp":6052318250158,"id":4100,"parentId":4094,"tags":{},"startTime":1775659266158,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":28,"timestamp":6052318256056,"id":4112,"parentId":4094,"tags":{},"startTime":1775659266164,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":6208,"timestamp":6052318250054,"id":4094,"parentId":3893,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/helper/smoothBezier.js","layer":"ssr"},"startTime":1775659266158,"traceId":"63571fab0751eb1f"},{"name":"make","duration":1272144,"timestamp":6052316987257,"id":2414,"parentId":2413,"tags":{},"startTime":1775659264895,"traceId":"63571fab0751eb1f"},{"name":"chunk-graph","duration":7167,"timestamp":6052318284771,"id":4114,"parentId":4113,"tags":{},"startTime":1775659266193,"traceId":"63571fab0751eb1f"},{"name":"optimize-modules","duration":4,"timestamp":6052318291968,"id":4116,"parentId":4113,"tags":{},"startTime":1775659266200,"traceId":"63571fab0751eb1f"},{"name":"optimize-chunks","duration":3327,"timestamp":6052318291983,"id":4117,"parentId":4113,"tags":{},"startTime":1775659266200,"traceId":"63571fab0751eb1f"},{"name":"optimize-tree","duration":5,"timestamp":6052318295332,"id":4118,"parentId":4113,"tags":{},"startTime":1775659266203,"traceId":"63571fab0751eb1f"},{"name":"optimize-chunk-modules","duration":3,"timestamp":6052318295351,"id":4119,"parentId":4113,"tags":{},"startTime":1775659266203,"traceId":"63571fab0751eb1f"},{"name":"optimize","duration":5022,"timestamp":6052318291960,"id":4115,"parentId":4113,"tags":{},"startTime":1775659266200,"traceId":"63571fab0751eb1f"},{"name":"module-hash","duration":7883,"timestamp":6052318301401,"id":4120,"parentId":4113,"tags":{},"startTime":1775659266209,"traceId":"63571fab0751eb1f"},{"name":"code-generation","duration":47625,"timestamp":6052318309303,"id":4121,"parentId":4113,"tags":{},"startTime":1775659266217,"traceId":"63571fab0751eb1f"},{"name":"hash","duration":1446,"timestamp":6052318361126,"id":4122,"parentId":4113,"tags":{},"startTime":1775659266269,"traceId":"63571fab0751eb1f"},{"name":"code-generation-jobs","duration":75,"timestamp":6052318362571,"id":4123,"parentId":4113,"tags":{},"startTime":1775659266271,"traceId":"63571fab0751eb1f"},{"name":"module-assets","duration":125,"timestamp":6052318362636,"id":4124,"parentId":4113,"tags":{},"startTime":1775659266271,"traceId":"63571fab0751eb1f"},{"name":"create-chunk-assets","duration":163458,"timestamp":6052318362765,"id":4125,"parentId":4113,"tags":{},"startTime":1775659266271,"traceId":"63571fab0751eb1f"},{"name":"seal","duration":254431,"timestamp":6052318276411,"id":4113,"parentId":2413,"tags":{},"startTime":1775659266184,"traceId":"63571fab0751eb1f"},{"name":"webpack-compilation","duration":1550868,"timestamp":6052316984844,"id":2413,"parentId":2411,"tags":{"name":"server"},"startTime":1775659264893,"traceId":"63571fab0751eb1f"},{"name":"emit","duration":50800,"timestamp":6052318535742,"id":4126,"parentId":2411,"tags":{},"startTime":1775659266444,"traceId":"63571fab0751eb1f"},{"name":"webpack-invalidated-server","duration":1622492,"timestamp":6052316964913,"id":2411,"parentId":3,"tags":{"trigger":"manual"},"startTime":1775659264873,"traceId":"63571fab0751eb1f"},{"name":"add-entry","duration":12532,"timestamp":6052318595022,"id":4129,"parentId":4128,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js"},"startTime":1775659266503,"traceId":"63571fab0751eb1f"},{"name":"add-entry","duration":12627,"timestamp":6052318595062,"id":4131,"parentId":4128,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js"},"startTime":1775659266503,"traceId":"63571fab0751eb1f"},{"name":"add-entry","duration":15579,"timestamp":6052318595068,"id":4133,"parentId":4128,"tags":{"request":"next-client-pages-loader?absolutePagePath=next%2Fdist%2Fpages%2F_app&page=%2F_app!"},"startTime":1775659266503,"traceId":"63571fab0751eb1f"},{"name":"add-entry","duration":16989,"timestamp":6052318595081,"id":4138,"parentId":4128,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1775659266503,"traceId":"63571fab0751eb1f"},{"name":"add-entry","duration":22093,"timestamp":6052318595072,"id":4135,"parentId":4128,"tags":{"request":"next-client-pages-loader?absolutePagePath=next%2Fdist%2Fpages%2F_error&page=%2F_error!"},"startTime":1775659266503,"traceId":"63571fab0751eb1f"},{"name":"build-module","duration":1230,"timestamp":6052318622651,"id":4140,"parentId":4139,"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%2Fstock%2F%5Bcode%5D%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!","layer":"app-pages-browser"},"startTime":1775659266531,"traceId":"63571fab0751eb1f"},{"name":"add-entry","duration":28889,"timestamp":6052318595070,"id":4134,"parentId":4128,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/router.js"},"startTime":1775659266503,"traceId":"63571fab0751eb1f"},{"name":"add-entry","duration":29560,"timestamp":6052318595076,"id":4137,"parentId":4128,"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":1775659266503,"traceId":"63571fab0751eb1f"},{"name":"add-entry","duration":30344,"timestamp":6052318595065,"id":4132,"parentId":4128,"tags":{"request":"./node_modules/next/dist/client/app-next-dev.js"},"startTime":1775659266503,"traceId":"63571fab0751eb1f"},{"name":"add-entry","duration":30340,"timestamp":6052318595074,"id":4136,"parentId":4128,"tags":{"request":"next-flight-client-entry-loader?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%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&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":1775659266503,"traceId":"63571fab0751eb1f"},{"name":"add-entry","duration":33387,"timestamp":6052318595058,"id":4130,"parentId":4128,"tags":{"request":"./node_modules/next/dist/client/next-dev.js"},"startTime":1775659266503,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":16181,"timestamp":6052318626502,"id":4143,"parentId":4142,"tags":{},"startTime":1775659266534,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":16466,"timestamp":6052318626233,"id":4142,"parentId":4141,"tags":{},"startTime":1775659266534,"traceId":"63571fab0751eb1f"},{"name":"build-module-tsx","duration":19988,"timestamp":6052318626002,"id":4141,"parentId":4140,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/stock/[code]/page.tsx","layer":"app-pages-browser"},"startTime":1775659266534,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":2701,"timestamp":6052318651804,"id":4152,"parentId":4151,"tags":{},"startTime":1775659266560,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":2762,"timestamp":6052318651756,"id":4151,"parentId":4150,"tags":{},"startTime":1775659266560,"traceId":"63571fab0751eb1f"},{"name":"build-module-tsx","duration":4227,"timestamp":6052318651661,"id":4150,"parentId":4141,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/score-radar.tsx","layer":"app-pages-browser"},"startTime":1775659266560,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":4726,"timestamp":6052318651271,"id":4147,"parentId":4146,"tags":{},"startTime":1775659266559,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":4799,"timestamp":6052318651201,"id":4146,"parentId":4144,"tags":{},"startTime":1775659266559,"traceId":"63571fab0751eb1f"},{"name":"build-module-tsx","duration":7163,"timestamp":6052318650966,"id":4144,"parentId":4141,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/kline-chart.tsx","layer":"app-pages-browser"},"startTime":1775659266559,"traceId":"63571fab0751eb1f"},{"name":"next-swc-transform","duration":8596,"timestamp":6052318651319,"id":4149,"parentId":4148,"tags":{},"startTime":1775659266559,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":8642,"timestamp":6052318651277,"id":4148,"parentId":4145,"tags":{},"startTime":1775659266559,"traceId":"63571fab0751eb1f"},{"name":"build-module-tsx","duration":9551,"timestamp":6052318651113,"id":4145,"parentId":4141,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/capital-flow.tsx","layer":"app-pages-browser"},"startTime":1775659266559,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":8,"timestamp":6052318663291,"id":4154,"parentId":4153,"tags":{},"startTime":1775659266571,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":46,"timestamp":6052318663308,"id":4155,"parentId":4153,"tags":{},"startTime":1775659266571,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":1375,"timestamp":6052318663010,"id":4153,"parentId":4150,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/index.js","layer":"app-pages-browser"},"startTime":1775659266571,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":90,"timestamp":6052318686648,"id":4162,"parentId":4156,"tags":{},"startTime":1775659266595,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":366,"timestamp":6052318686670,"id":4163,"parentId":4157,"tags":{},"startTime":1775659266595,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":404,"timestamp":6052318686674,"id":4164,"parentId":4158,"tags":{},"startTime":1775659266595,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":437,"timestamp":6052318686677,"id":4165,"parentId":4159,"tags":{},"startTime":1775659266595,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":2397,"timestamp":6052318686680,"id":4166,"parentId":4160,"tags":{},"startTime":1775659266595,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":2406,"timestamp":6052318686731,"id":4167,"parentId":4161,"tags":{},"startTime":1775659266595,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":2812,"timestamp":6052318686866,"id":4168,"parentId":4156,"tags":{},"startTime":1775659266595,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":2640,"timestamp":6052318687043,"id":4169,"parentId":4157,"tags":{},"startTime":1775659266595,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":2602,"timestamp":6052318687082,"id":4170,"parentId":4158,"tags":{},"startTime":1775659266595,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":2569,"timestamp":6052318687116,"id":4171,"parentId":4159,"tags":{},"startTime":1775659266595,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":591,"timestamp":6052318689096,"id":4172,"parentId":4160,"tags":{},"startTime":1775659266597,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":546,"timestamp":6052318689140,"id":4173,"parentId":4161,"tags":{},"startTime":1775659266597,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":6775,"timestamp":6052318685972,"id":4156,"parentId":4153,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/extension.js","layer":"app-pages-browser"},"startTime":1775659266594,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":6860,"timestamp":6052318686141,"id":4157,"parentId":4153,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/core.js","layer":"app-pages-browser"},"startTime":1775659266594,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":6908,"timestamp":6052318686219,"id":4158,"parentId":4153,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/renderers.js","layer":"app-pages-browser"},"startTime":1775659266594,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":7003,"timestamp":6052318686345,"id":4159,"parentId":4153,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/charts.js","layer":"app-pages-browser"},"startTime":1775659266594,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":7202,"timestamp":6052318686409,"id":4160,"parentId":4153,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/components.js","layer":"app-pages-browser"},"startTime":1775659266594,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":7191,"timestamp":6052318686486,"id":4161,"parentId":4153,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/features.js","layer":"app-pages-browser"},"startTime":1775659266594,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":308,"timestamp":6052318738658,"id":4237,"parentId":4174,"tags":{},"startTime":1775659266647,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":392,"timestamp":6052318738676,"id":4238,"parentId":4175,"tags":{},"startTime":1775659266647,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":457,"timestamp":6052318738689,"id":4239,"parentId":4176,"tags":{},"startTime":1775659266647,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":541,"timestamp":6052318738694,"id":4240,"parentId":4177,"tags":{},"startTime":1775659266647,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":642,"timestamp":6052318738699,"id":4241,"parentId":4178,"tags":{},"startTime":1775659266647,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":728,"timestamp":6052318738703,"id":4242,"parentId":4179,"tags":{},"startTime":1775659266647,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":878,"timestamp":6052318738708,"id":4243,"parentId":4180,"tags":{},"startTime":1775659266647,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":988,"timestamp":6052318738713,"id":4244,"parentId":4181,"tags":{},"startTime":1775659266647,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1065,"timestamp":6052318738718,"id":4245,"parentId":4182,"tags":{},"startTime":1775659266647,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1133,"timestamp":6052318738722,"id":4246,"parentId":4183,"tags":{},"startTime":1775659266647,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1194,"timestamp":6052318738726,"id":4247,"parentId":4184,"tags":{},"startTime":1775659266647,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1439,"timestamp":6052318738731,"id":4248,"parentId":4185,"tags":{},"startTime":1775659266647,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":2118,"timestamp":6052318738735,"id":4249,"parentId":4186,"tags":{},"startTime":1775659266647,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":2146,"timestamp":6052318738739,"id":4250,"parentId":4187,"tags":{},"startTime":1775659266647,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":2172,"timestamp":6052318738743,"id":4251,"parentId":4188,"tags":{},"startTime":1775659266647,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":2248,"timestamp":6052318738747,"id":4252,"parentId":4189,"tags":{},"startTime":1775659266647,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":2270,"timestamp":6052318738752,"id":4253,"parentId":4190,"tags":{},"startTime":1775659266647,"traceId":"63571fab0751eb1f"}]
-[{"name":"read-resource","duration":2881,"timestamp":6052318738756,"id":4254,"parentId":4191,"tags":{},"startTime":1775659266647,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":2904,"timestamp":6052318738760,"id":4255,"parentId":4192,"tags":{},"startTime":1775659266647,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":2928,"timestamp":6052318738764,"id":4256,"parentId":4193,"tags":{},"startTime":1775659266647,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":2952,"timestamp":6052318738769,"id":4257,"parentId":4194,"tags":{},"startTime":1775659266647,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":2974,"timestamp":6052318738773,"id":4258,"parentId":4195,"tags":{},"startTime":1775659266647,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":2998,"timestamp":6052318738777,"id":4259,"parentId":4196,"tags":{},"startTime":1775659266647,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":3022,"timestamp":6052318738781,"id":4260,"parentId":4197,"tags":{},"startTime":1775659266647,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":3045,"timestamp":6052318738785,"id":4261,"parentId":4198,"tags":{},"startTime":1775659266647,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":3164,"timestamp":6052318738789,"id":4262,"parentId":4199,"tags":{},"startTime":1775659266647,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":3567,"timestamp":6052318738794,"id":4263,"parentId":4200,"tags":{},"startTime":1775659266647,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":3604,"timestamp":6052318738798,"id":4264,"parentId":4201,"tags":{},"startTime":1775659266647,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":3629,"timestamp":6052318738802,"id":4265,"parentId":4202,"tags":{},"startTime":1775659266647,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":3735,"timestamp":6052318738805,"id":4266,"parentId":4203,"tags":{},"startTime":1775659266647,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":3850,"timestamp":6052318738809,"id":4267,"parentId":4204,"tags":{},"startTime":1775659266647,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":3915,"timestamp":6052318738815,"id":4268,"parentId":4205,"tags":{},"startTime":1775659266647,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":3909,"timestamp":6052318738856,"id":4269,"parentId":4206,"tags":{},"startTime":1775659266647,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":3933,"timestamp":6052318738861,"id":4270,"parentId":4207,"tags":{},"startTime":1775659266647,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":4074,"timestamp":6052318738867,"id":4271,"parentId":4208,"tags":{},"startTime":1775659266647,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":4159,"timestamp":6052318738871,"id":4272,"parentId":4209,"tags":{},"startTime":1775659266647,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":4226,"timestamp":6052318738875,"id":4273,"parentId":4210,"tags":{},"startTime":1775659266647,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":4290,"timestamp":6052318738879,"id":4274,"parentId":4211,"tags":{},"startTime":1775659266647,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":4386,"timestamp":6052318738882,"id":4275,"parentId":4212,"tags":{},"startTime":1775659266647,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":4450,"timestamp":6052318738886,"id":4276,"parentId":4213,"tags":{},"startTime":1775659266647,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":4507,"timestamp":6052318738890,"id":4277,"parentId":4214,"tags":{},"startTime":1775659266647,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":4792,"timestamp":6052318738894,"id":4278,"parentId":4215,"tags":{},"startTime":1775659266647,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":4866,"timestamp":6052318738897,"id":4279,"parentId":4216,"tags":{},"startTime":1775659266647,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":5090,"timestamp":6052318738901,"id":4280,"parentId":4217,"tags":{},"startTime":1775659266647,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":5148,"timestamp":6052318738905,"id":4281,"parentId":4218,"tags":{},"startTime":1775659266647,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":5308,"timestamp":6052318738908,"id":4282,"parentId":4219,"tags":{},"startTime":1775659266647,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":5342,"timestamp":6052318738912,"id":4283,"parentId":4220,"tags":{},"startTime":1775659266647,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":5371,"timestamp":6052318738915,"id":4284,"parentId":4221,"tags":{},"startTime":1775659266647,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":5396,"timestamp":6052318738919,"id":4285,"parentId":4222,"tags":{},"startTime":1775659266647,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":5422,"timestamp":6052318738922,"id":4286,"parentId":4223,"tags":{},"startTime":1775659266647,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":5447,"timestamp":6052318738926,"id":4287,"parentId":4224,"tags":{},"startTime":1775659266647,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":5472,"timestamp":6052318738929,"id":4288,"parentId":4225,"tags":{},"startTime":1775659266647,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":5495,"timestamp":6052318738933,"id":4289,"parentId":4226,"tags":{},"startTime":1775659266647,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":5522,"timestamp":6052318738935,"id":4290,"parentId":4227,"tags":{},"startTime":1775659266647,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":5547,"timestamp":6052318738938,"id":4291,"parentId":4228,"tags":{},"startTime":1775659266647,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":5574,"timestamp":6052318738942,"id":4292,"parentId":4229,"tags":{},"startTime":1775659266647,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":5615,"timestamp":6052318738945,"id":4293,"parentId":4230,"tags":{},"startTime":1775659266647,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":5643,"timestamp":6052318738948,"id":4294,"parentId":4231,"tags":{},"startTime":1775659266647,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":5667,"timestamp":6052318738951,"id":4295,"parentId":4232,"tags":{},"startTime":1775659266647,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":5692,"timestamp":6052318738953,"id":4296,"parentId":4233,"tags":{},"startTime":1775659266647,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":5718,"timestamp":6052318738956,"id":4297,"parentId":4234,"tags":{},"startTime":1775659266647,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":5742,"timestamp":6052318738959,"id":4298,"parentId":4235,"tags":{},"startTime":1775659266647,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":5766,"timestamp":6052318738962,"id":4299,"parentId":4236,"tags":{},"startTime":1775659266647,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":5780,"timestamp":6052318738980,"id":4300,"parentId":4174,"tags":{},"startTime":1775659266647,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":5690,"timestamp":6052318739072,"id":4301,"parentId":4175,"tags":{},"startTime":1775659266647,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":5595,"timestamp":6052318739167,"id":4302,"parentId":4176,"tags":{},"startTime":1775659266647,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":5501,"timestamp":6052318739262,"id":4303,"parentId":4177,"tags":{},"startTime":1775659266647,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":5413,"timestamp":6052318739351,"id":4304,"parentId":4178,"tags":{},"startTime":1775659266647,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":5326,"timestamp":6052318739439,"id":4305,"parentId":4179,"tags":{},"startTime":1775659266647,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":5099,"timestamp":6052318739667,"id":4306,"parentId":4180,"tags":{},"startTime":1775659266648,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":5061,"timestamp":6052318739706,"id":4307,"parentId":4181,"tags":{},"startTime":1775659266648,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":4973,"timestamp":6052318739794,"id":4308,"parentId":4182,"tags":{},"startTime":1775659266648,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":4904,"timestamp":6052318739864,"id":4309,"parentId":4183,"tags":{},"startTime":1775659266648,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":4842,"timestamp":6052318739927,"id":4310,"parentId":4184,"tags":{},"startTime":1775659266648,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":4536,"timestamp":6052318740234,"id":4311,"parentId":4185,"tags":{},"startTime":1775659266648,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":3912,"timestamp":6052318740858,"id":4312,"parentId":4186,"tags":{},"startTime":1775659266649,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":3883,"timestamp":6052318740888,"id":4313,"parentId":4187,"tags":{},"startTime":1775659266649,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":3854,"timestamp":6052318740918,"id":4314,"parentId":4188,"tags":{},"startTime":1775659266649,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":3775,"timestamp":6052318740998,"id":4315,"parentId":4189,"tags":{},"startTime":1775659266649,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":3166,"timestamp":6052318741609,"id":4316,"parentId":4190,"tags":{},"startTime":1775659266650,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":3136,"timestamp":6052318741640,"id":4317,"parentId":4191,"tags":{},"startTime":1775659266650,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":3109,"timestamp":6052318741668,"id":4318,"parentId":4192,"tags":{},"startTime":1775659266650,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":3082,"timestamp":6052318741696,"id":4319,"parentId":4193,"tags":{},"startTime":1775659266650,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":3055,"timestamp":6052318741723,"id":4320,"parentId":4194,"tags":{},"startTime":1775659266650,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":3029,"timestamp":6052318741750,"id":4321,"parentId":4195,"tags":{},"startTime":1775659266650,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":3002,"timestamp":6052318741778,"id":4322,"parentId":4196,"tags":{},"startTime":1775659266650,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":2975,"timestamp":6052318741805,"id":4323,"parentId":4197,"tags":{},"startTime":1775659266650,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":2949,"timestamp":6052318741833,"id":4324,"parentId":4198,"tags":{},"startTime":1775659266650,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":2784,"timestamp":6052318741998,"id":4325,"parentId":4199,"tags":{},"startTime":1775659266650,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":2408,"timestamp":6052318742374,"id":4326,"parentId":4200,"tags":{},"startTime":1775659266650,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":2378,"timestamp":6052318742405,"id":4327,"parentId":4201,"tags":{},"startTime":1775659266650,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":2350,"timestamp":6052318742434,"id":4328,"parentId":4202,"tags":{},"startTime":1775659266650,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":2224,"timestamp":6052318742561,"id":4329,"parentId":4203,"tags":{},"startTime":1775659266650,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":2154,"timestamp":6052318742674,"id":4330,"parentId":4204,"tags":{},"startTime":1775659266651,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":2111,"timestamp":6052318742735,"id":4331,"parentId":4205,"tags":{},"startTime":1775659266651,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":2082,"timestamp":6052318742768,"id":4332,"parentId":4206,"tags":{},"startTime":1775659266651,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":2054,"timestamp":6052318742797,"id":4333,"parentId":4207,"tags":{},"startTime":1775659266651,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":1897,"timestamp":6052318742954,"id":4334,"parentId":4208,"tags":{},"startTime":1775659266651,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":1812,"timestamp":6052318743040,"id":4335,"parentId":4209,"tags":{},"startTime":1775659266651,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":1739,"timestamp":6052318743114,"id":4336,"parentId":4210,"tags":{},"startTime":1775659266651,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":1648,"timestamp":6052318743206,"id":4337,"parentId":4211,"tags":{},"startTime":1775659266651,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":1579,"timestamp":6052318743276,"id":4338,"parentId":4212,"tags":{},"startTime":1775659266651,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":1512,"timestamp":6052318743344,"id":4339,"parentId":4213,"tags":{},"startTime":1775659266651,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":1450,"timestamp":6052318743407,"id":4340,"parentId":4214,"tags":{},"startTime":1775659266651,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":1156,"timestamp":6052318743701,"id":4341,"parentId":4215,"tags":{},"startTime":1775659266652,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":1085,"timestamp":6052318743772,"id":4342,"parentId":4216,"tags":{},"startTime":1775659266652,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":859,"timestamp":6052318743999,"id":4343,"parentId":4217,"tags":{},"startTime":1775659266652,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":801,"timestamp":6052318744059,"id":4344,"parentId":4218,"tags":{},"startTime":1775659266652,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":635,"timestamp":6052318744225,"id":4345,"parentId":4219,"tags":{},"startTime":1775659266652,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":603,"timestamp":6052318744258,"id":4346,"parentId":4220,"tags":{},"startTime":1775659266652,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":571,"timestamp":6052318744289,"id":4347,"parentId":4221,"tags":{},"startTime":1775659266652,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":543,"timestamp":6052318744319,"id":4348,"parentId":4222,"tags":{},"startTime":1775659266652,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":514,"timestamp":6052318744348,"id":4349,"parentId":4223,"tags":{},"startTime":1775659266652,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":486,"timestamp":6052318744376,"id":4350,"parentId":4224,"tags":{},"startTime":1775659266652,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":459,"timestamp":6052318744404,"id":4351,"parentId":4225,"tags":{},"startTime":1775659266652,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":432,"timestamp":6052318744431,"id":4352,"parentId":4226,"tags":{},"startTime":1775659266652,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":402,"timestamp":6052318744461,"id":4353,"parentId":4227,"tags":{},"startTime":1775659266652,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":373,"timestamp":6052318744490,"id":4354,"parentId":4228,"tags":{},"startTime":1775659266652,"traceId":"63571fab0751eb1f"}]
-[{"name":"next-swc-loader","duration":492,"timestamp":6052318744519,"id":4355,"parentId":4229,"tags":{},"startTime":1775659266652,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":489,"timestamp":6052318744565,"id":4356,"parentId":4230,"tags":{},"startTime":1775659266652,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":463,"timestamp":6052318744594,"id":4357,"parentId":4231,"tags":{},"startTime":1775659266653,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":437,"timestamp":6052318744621,"id":4358,"parentId":4232,"tags":{},"startTime":1775659266653,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":411,"timestamp":6052318744649,"id":4359,"parentId":4233,"tags":{},"startTime":1775659266653,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":383,"timestamp":6052318744678,"id":4360,"parentId":4234,"tags":{},"startTime":1775659266653,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":358,"timestamp":6052318744704,"id":4361,"parentId":4235,"tags":{},"startTime":1775659266653,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":332,"timestamp":6052318744731,"id":4362,"parentId":4236,"tags":{},"startTime":1775659266653,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":17802,"timestamp":6052318733650,"id":4174,"parentId":4156,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/core/echarts.js","layer":"app-pages-browser"},"startTime":1775659266642,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":17858,"timestamp":6052318733851,"id":4175,"parentId":4156,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/view/Component.js","layer":"app-pages-browser"},"startTime":1775659266642,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":18219,"timestamp":6052318733902,"id":4176,"parentId":4156,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/view/Chart.js","layer":"app-pages-browser"},"startTime":1775659266642,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":18557,"timestamp":6052318733947,"id":4177,"parentId":4156,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/Component.js","layer":"app-pages-browser"},"startTime":1775659266642,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":21058,"timestamp":6052318733990,"id":4178,"parentId":4156,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/Series.js","layer":"app-pages-browser"},"startTime":1775659266642,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":21167,"timestamp":6052318734174,"id":4179,"parentId":4156,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/core/impl.js","layer":"app-pages-browser"},"startTime":1775659266642,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":21274,"timestamp":6052318734442,"id":4180,"parentId":4157,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/api.js","layer":"app-pages-browser"},"startTime":1775659266642,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":21264,"timestamp":6052318734570,"id":4181,"parentId":4157,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/label/installLabelLayout.js","layer":"app-pages-browser"},"startTime":1775659266642,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":21153,"timestamp":6052318734744,"id":4182,"parentId":4158,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/renderer/installSVGRenderer.js","layer":"app-pages-browser"},"startTime":1775659266643,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":21170,"timestamp":6052318734825,"id":4183,"parentId":4158,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/renderer/installCanvasRenderer.js","layer":"app-pages-browser"},"startTime":1775659266643,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":22197,"timestamp":6052318734877,"id":4184,"parentId":4161,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/animation/universalTransition.js","layer":"app-pages-browser"},"startTime":1775659266643,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":22258,"timestamp":6052318734918,"id":4185,"parentId":4159,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/line/install.js","layer":"app-pages-browser"},"startTime":1775659266643,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":22475,"timestamp":6052318734960,"id":4186,"parentId":4159,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/bar/install.js","layer":"app-pages-browser"},"startTime":1775659266643,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":22695,"timestamp":6052318735000,"id":4187,"parentId":4159,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/pie/install.js","layer":"app-pages-browser"},"startTime":1775659266643,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":22783,"timestamp":6052318735039,"id":4188,"parentId":4159,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/scatter/install.js","layer":"app-pages-browser"},"startTime":1775659266643,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":22865,"timestamp":6052318735076,"id":4189,"parentId":4159,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/radar/install.js","layer":"app-pages-browser"},"startTime":1775659266643,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":22905,"timestamp":6052318735114,"id":4190,"parentId":4159,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/map/install.js","layer":"app-pages-browser"},"startTime":1775659266643,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":22698,"timestamp":6052318735382,"id":4191,"parentId":4159,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/tree/install.js","layer":"app-pages-browser"},"startTime":1775659266643,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":22503,"timestamp":6052318735639,"id":4192,"parentId":4159,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/treemap/install.js","layer":"app-pages-browser"},"startTime":1775659266644,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":22546,"timestamp":6052318735727,"id":4193,"parentId":4159,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/install.js","layer":"app-pages-browser"},"startTime":1775659266644,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":22545,"timestamp":6052318735778,"id":4194,"parentId":4159,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/gauge/install.js","layer":"app-pages-browser"},"startTime":1775659266644,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":22578,"timestamp":6052318735817,"id":4195,"parentId":4159,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/funnel/install.js","layer":"app-pages-browser"},"startTime":1775659266644,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":22607,"timestamp":6052318735856,"id":4196,"parentId":4159,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/parallel/install.js","layer":"app-pages-browser"},"startTime":1775659266644,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":22649,"timestamp":6052318735895,"id":4197,"parentId":4159,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sankey/install.js","layer":"app-pages-browser"},"startTime":1775659266644,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":22674,"timestamp":6052318735932,"id":4198,"parentId":4159,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/boxplot/install.js","layer":"app-pages-browser"},"startTime":1775659266644,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":22698,"timestamp":6052318735971,"id":4199,"parentId":4159,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/candlestick/install.js","layer":"app-pages-browser"},"startTime":1775659266644,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":22721,"timestamp":6052318736009,"id":4200,"parentId":4159,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/effectScatter/install.js","layer":"app-pages-browser"},"startTime":1775659266644,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":22741,"timestamp":6052318736047,"id":4201,"parentId":4159,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/lines/install.js","layer":"app-pages-browser"},"startTime":1775659266644,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":22750,"timestamp":6052318736083,"id":4202,"parentId":4159,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/heatmap/install.js","layer":"app-pages-browser"},"startTime":1775659266644,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":22774,"timestamp":6052318736121,"id":4203,"parentId":4159,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/bar/installPictorialBar.js","layer":"app-pages-browser"},"startTime":1775659266644,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":22789,"timestamp":6052318736159,"id":4204,"parentId":4159,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/themeRiver/install.js","layer":"app-pages-browser"},"startTime":1775659266644,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":22825,"timestamp":6052318736196,"id":4205,"parentId":4159,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sunburst/install.js","layer":"app-pages-browser"},"startTime":1775659266644,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":22844,"timestamp":6052318736237,"id":4206,"parentId":4159,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/custom/install.js","layer":"app-pages-browser"},"startTime":1775659266644,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":22975,"timestamp":6052318736275,"id":4207,"parentId":4160,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/grid/installSimple.js","layer":"app-pages-browser"},"startTime":1775659266644,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":23043,"timestamp":6052318736312,"id":4208,"parentId":4160,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/grid/install.js","layer":"app-pages-browser"},"startTime":1775659266644,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":23218,"timestamp":6052318736349,"id":4209,"parentId":4160,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/polar/install.js","layer":"app-pages-browser"},"startTime":1775659266644,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":23276,"timestamp":6052318736387,"id":4210,"parentId":4160,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/radar/install.js","layer":"app-pages-browser"},"startTime":1775659266644,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":23442,"timestamp":6052318736423,"id":4211,"parentId":4160,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/geo/install.js","layer":"app-pages-browser"},"startTime":1775659266644,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":23537,"timestamp":6052318736461,"id":4212,"parentId":4160,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/singleAxis/install.js","layer":"app-pages-browser"},"startTime":1775659266644,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":23586,"timestamp":6052318736513,"id":4213,"parentId":4160,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/parallel/install.js","layer":"app-pages-browser"},"startTime":1775659266644,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":23610,"timestamp":6052318736550,"id":4214,"parentId":4160,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/calendar/install.js","layer":"app-pages-browser"},"startTime":1775659266644,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":23661,"timestamp":6052318736585,"id":4215,"parentId":4160,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/graphic/install.js","layer":"app-pages-browser"},"startTime":1775659266645,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":23555,"timestamp":6052318736790,"id":4216,"parentId":4160,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/toolbox/install.js","layer":"app-pages-browser"},"startTime":1775659266645,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":23582,"timestamp":6052318736830,"id":4217,"parentId":4160,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/tooltip/install.js","layer":"app-pages-browser"},"startTime":1775659266645,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":23656,"timestamp":6052318736867,"id":4218,"parentId":4160,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/install.js","layer":"app-pages-browser"},"startTime":1775659266645,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":23730,"timestamp":6052318736905,"id":4219,"parentId":4160,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/brush/install.js","layer":"app-pages-browser"},"startTime":1775659266645,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":24014,"timestamp":6052318736943,"id":4220,"parentId":4160,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/title/install.js","layer":"app-pages-browser"},"startTime":1775659266645,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":24041,"timestamp":6052318736981,"id":4221,"parentId":4160,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/timeline/install.js","layer":"app-pages-browser"},"startTime":1775659266645,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":24066,"timestamp":6052318737018,"id":4222,"parentId":4160,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/installMarkPoint.js","layer":"app-pages-browser"},"startTime":1775659266645,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":24032,"timestamp":6052318737113,"id":4223,"parentId":4160,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/installMarkLine.js","layer":"app-pages-browser"},"startTime":1775659266645,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":24052,"timestamp":6052318737152,"id":4224,"parentId":4160,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/installMarkArea.js","layer":"app-pages-browser"},"startTime":1775659266645,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":24067,"timestamp":6052318737189,"id":4225,"parentId":4160,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/legend/install.js","layer":"app-pages-browser"},"startTime":1775659266645,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":24094,"timestamp":6052318737226,"id":4226,"parentId":4160,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/legend/installLegendScroll.js","layer":"app-pages-browser"},"startTime":1775659266645,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":24116,"timestamp":6052318737263,"id":4227,"parentId":4160,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/legend/installLegendPlain.js","layer":"app-pages-browser"},"startTime":1775659266645,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":24054,"timestamp":6052318737380,"id":4228,"parentId":4160,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/install.js","layer":"app-pages-browser"},"startTime":1775659266645,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":24074,"timestamp":6052318737424,"id":4229,"parentId":4160,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/installDataZoomInside.js","layer":"app-pages-browser"},"startTime":1775659266645,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":24121,"timestamp":6052318737489,"id":4230,"parentId":4160,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/installDataZoomSlider.js","layer":"app-pages-browser"},"startTime":1775659266645,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":23973,"timestamp":6052318737713,"id":4231,"parentId":4160,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/install.js","layer":"app-pages-browser"},"startTime":1775659266646,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":23750,"timestamp":6052318738000,"id":4232,"parentId":4160,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/installVisualMapContinuous.js","layer":"app-pages-browser"},"startTime":1775659266646,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":23694,"timestamp":6052318738107,"id":4233,"parentId":4160,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/installVisualMapPiecewise.js","layer":"app-pages-browser"},"startTime":1775659266646,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":23635,"timestamp":6052318738214,"id":4234,"parentId":4160,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/aria/install.js","layer":"app-pages-browser"},"startTime":1775659266646,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":23505,"timestamp":6052318738391,"id":4235,"parentId":4160,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/transform/install.js","layer":"app-pages-browser"},"startTime":1775659266646,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":23729,"timestamp":6052318738504,"id":4236,"parentId":4160,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataset/install.js","layer":"app-pages-browser"},"startTime":1775659266646,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":368,"timestamp":6052318830499,"id":4376,"parentId":4363,"tags":{},"startTime":1775659266738,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":412,"timestamp":6052318830506,"id":4377,"parentId":4364,"tags":{},"startTime":1775659266738,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":441,"timestamp":6052318830509,"id":4378,"parentId":4365,"tags":{},"startTime":1775659266738,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":479,"timestamp":6052318830513,"id":4379,"parentId":4366,"tags":{},"startTime":1775659266738,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":501,"timestamp":6052318830516,"id":4380,"parentId":4367,"tags":{},"startTime":1775659266738,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":527,"timestamp":6052318830518,"id":4381,"parentId":4368,"tags":{},"startTime":1775659266738,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":599,"timestamp":6052318830521,"id":4382,"parentId":4369,"tags":{},"startTime":1775659266738,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":675,"timestamp":6052318830524,"id":4383,"parentId":4370,"tags":{},"startTime":1775659266738,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":729,"timestamp":6052318830528,"id":4384,"parentId":4371,"tags":{},"startTime":1775659266738,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":771,"timestamp":6052318830531,"id":4385,"parentId":4372,"tags":{},"startTime":1775659266738,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":827,"timestamp":6052318830533,"id":4386,"parentId":4373,"tags":{},"startTime":1775659266738,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":870,"timestamp":6052318830535,"id":4387,"parentId":4374,"tags":{},"startTime":1775659266738,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":916,"timestamp":6052318830537,"id":4388,"parentId":4375,"tags":{},"startTime":1775659266738,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":5080,"timestamp":6052318830881,"id":4389,"parentId":4363,"tags":{},"startTime":1775659266739,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":5046,"timestamp":6052318830921,"id":4390,"parentId":4364,"tags":{},"startTime":1775659266739,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":5014,"timestamp":6052318830954,"id":4391,"parentId":4365,"tags":{},"startTime":1775659266739,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":4974,"timestamp":6052318830994,"id":4392,"parentId":4366,"tags":{},"startTime":1775659266739,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":4950,"timestamp":6052318831019,"id":4393,"parentId":4367,"tags":{},"startTime":1775659266739,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":4922,"timestamp":6052318831048,"id":4394,"parentId":4368,"tags":{},"startTime":1775659266739,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":4828,"timestamp":6052318831143,"id":4395,"parentId":4369,"tags":{},"startTime":1775659266739,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":4768,"timestamp":6052318831204,"id":4396,"parentId":4370,"tags":{},"startTime":1775659266739,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":4711,"timestamp":6052318831261,"id":4397,"parentId":4371,"tags":{},"startTime":1775659266739,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":4669,"timestamp":6052318831304,"id":4398,"parentId":4372,"tags":{},"startTime":1775659266739,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":4607,"timestamp":6052318831366,"id":4399,"parentId":4373,"tags":{},"startTime":1775659266739,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":4566,"timestamp":6052318831408,"id":4400,"parentId":4374,"tags":{},"startTime":1775659266739,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":4520,"timestamp":6052318831456,"id":4401,"parentId":4375,"tags":{},"startTime":1775659266739,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":7468,"timestamp":6052318829805,"id":4363,"parentId":4156,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/zrender.js","layer":"app-pages-browser"},"startTime":1775659266738,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":8852,"timestamp":6052318829920,"id":4364,"parentId":4156,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/util.js","layer":"app-pages-browser"},"startTime":1775659266738,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":10495,"timestamp":6052318829966,"id":4365,"parentId":4174,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/Global.js","layer":"app-pages-browser"},"startTime":1775659266738,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":10657,"timestamp":6052318830010,"id":4366,"parentId":4174,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/core/ExtensionAPI.js","layer":"app-pages-browser"},"startTime":1775659266738,"traceId":"63571fab0751eb1f"}]
-[{"name":"build-module-js","duration":10891,"timestamp":6052318830053,"id":4367,"parentId":4174,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/core/CoordinateSystem.js","layer":"app-pages-browser"},"startTime":1775659266738,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":11575,"timestamp":6052318830093,"id":4368,"parentId":4174,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/OptionManager.js","layer":"app-pages-browser"},"startTime":1775659266738,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":13427,"timestamp":6052318830129,"id":4369,"parentId":4174,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/preprocessor/backwardCompat.js","layer":"app-pages-browser"},"startTime":1775659266738,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":13666,"timestamp":6052318830182,"id":4370,"parentId":4174,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/processor/dataStack.js","layer":"app-pages-browser"},"startTime":1775659266738,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":14821,"timestamp":6052318830244,"id":4371,"parentId":4174,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/graphic.js","layer":"app-pages-browser"},"startTime":1775659266738,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":15022,"timestamp":6052318830291,"id":4372,"parentId":4174,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/innerStore.js","layer":"app-pages-browser"},"startTime":1775659266738,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":16774,"timestamp":6052318830338,"id":4373,"parentId":4174,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/states.js","layer":"app-pages-browser"},"startTime":1775659266738,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":18413,"timestamp":6052318830384,"id":4374,"parentId":4174,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/model.js","layer":"app-pages-browser"},"startTime":1775659266738,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":18690,"timestamp":6052318830421,"id":4375,"parentId":4174,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/throttle.js","layer":"app-pages-browser"},"startTime":1775659266738,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":326,"timestamp":6052318852799,"id":4418,"parentId":4402,"tags":{},"startTime":1775659266761,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":360,"timestamp":6052318852806,"id":4419,"parentId":4403,"tags":{},"startTime":1775659266761,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":386,"timestamp":6052318852809,"id":4420,"parentId":4404,"tags":{},"startTime":1775659266761,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":429,"timestamp":6052318852811,"id":4421,"parentId":4405,"tags":{},"startTime":1775659266761,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":459,"timestamp":6052318852813,"id":4422,"parentId":4406,"tags":{},"startTime":1775659266761,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":481,"timestamp":6052318852816,"id":4423,"parentId":4407,"tags":{},"startTime":1775659266761,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":506,"timestamp":6052318852818,"id":4424,"parentId":4408,"tags":{},"startTime":1775659266761,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":531,"timestamp":6052318852820,"id":4425,"parentId":4409,"tags":{},"startTime":1775659266761,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":553,"timestamp":6052318852822,"id":4426,"parentId":4410,"tags":{},"startTime":1775659266761,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":574,"timestamp":6052318852824,"id":4427,"parentId":4411,"tags":{},"startTime":1775659266761,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":597,"timestamp":6052318852825,"id":4428,"parentId":4412,"tags":{},"startTime":1775659266761,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":620,"timestamp":6052318852827,"id":4429,"parentId":4413,"tags":{},"startTime":1775659266761,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":642,"timestamp":6052318852829,"id":4430,"parentId":4414,"tags":{},"startTime":1775659266761,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":663,"timestamp":6052318852831,"id":4431,"parentId":4415,"tags":{},"startTime":1775659266761,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":683,"timestamp":6052318852833,"id":4432,"parentId":4416,"tags":{},"startTime":1775659266761,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":705,"timestamp":6052318852834,"id":4433,"parentId":4417,"tags":{},"startTime":1775659266761,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":31875,"timestamp":6052318853131,"id":4434,"parentId":4402,"tags":{},"startTime":1775659266761,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":31849,"timestamp":6052318853167,"id":4435,"parentId":4403,"tags":{},"startTime":1775659266761,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":31817,"timestamp":6052318853200,"id":4436,"parentId":4404,"tags":{},"startTime":1775659266761,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":31775,"timestamp":6052318853242,"id":4437,"parentId":4405,"tags":{},"startTime":1775659266761,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":31744,"timestamp":6052318853274,"id":4438,"parentId":4406,"tags":{},"startTime":1775659266761,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":31720,"timestamp":6052318853298,"id":4439,"parentId":4407,"tags":{},"startTime":1775659266761,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":31692,"timestamp":6052318853326,"id":4440,"parentId":4408,"tags":{},"startTime":1775659266761,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":31666,"timestamp":6052318853352,"id":4441,"parentId":4409,"tags":{},"startTime":1775659266761,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":31642,"timestamp":6052318853376,"id":4442,"parentId":4410,"tags":{},"startTime":1775659266761,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":31619,"timestamp":6052318853399,"id":4443,"parentId":4411,"tags":{},"startTime":1775659266761,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":31595,"timestamp":6052318853424,"id":4444,"parentId":4412,"tags":{},"startTime":1775659266761,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":31570,"timestamp":6052318853449,"id":4445,"parentId":4413,"tags":{},"startTime":1775659266761,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":31547,"timestamp":6052318853473,"id":4446,"parentId":4414,"tags":{},"startTime":1775659266761,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":31525,"timestamp":6052318853495,"id":4447,"parentId":4415,"tags":{},"startTime":1775659266761,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":31502,"timestamp":6052318853517,"id":4448,"parentId":4416,"tags":{},"startTime":1775659266761,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":31480,"timestamp":6052318853540,"id":4449,"parentId":4417,"tags":{},"startTime":1775659266761,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":33857,"timestamp":6052318852071,"id":4402,"parentId":4174,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/visual/style.js","layer":"app-pages-browser"},"startTime":1775659266760,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":34222,"timestamp":6052318852187,"id":4403,"parentId":4174,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/loading/default.js","layer":"app-pages-browser"},"startTime":1775659266760,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":36647,"timestamp":6052318852246,"id":4404,"parentId":4174,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/core/Scheduler.js","layer":"app-pages-browser"},"startTime":1775659266760,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":36789,"timestamp":6052318852290,"id":4405,"parentId":4174,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/theme/light.js","layer":"app-pages-browser"},"startTime":1775659266760,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":37026,"timestamp":6052318852331,"id":4406,"parentId":4174,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/theme/dark.js","layer":"app-pages-browser"},"startTime":1775659266760,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":38403,"timestamp":6052318852367,"id":4407,"parentId":4174,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/clazz.js","layer":"app-pages-browser"},"startTime":1775659266760,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":38677,"timestamp":6052318852403,"id":4408,"parentId":4174,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/ECEventProcessor.js","layer":"app-pages-browser"},"startTime":1775659266760,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":38845,"timestamp":6052318852445,"id":4409,"parentId":4174,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/visual/symbol.js","layer":"app-pages-browser"},"startTime":1775659266760,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":38988,"timestamp":6052318852480,"id":4410,"parentId":4174,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/visual/helper.js","layer":"app-pages-browser"},"startTime":1775659266760,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":39221,"timestamp":6052318852513,"id":4411,"parentId":4174,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/log.js","layer":"app-pages-browser"},"startTime":1775659266760,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":39433,"timestamp":6052318852547,"id":4412,"parentId":4174,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/legacy/dataSelectAction.js","layer":"app-pages-browser"},"startTime":1775659266760,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":39581,"timestamp":6052318852586,"id":4413,"parentId":4174,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/core/locale.js","layer":"app-pages-browser"},"startTime":1775659266760,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":39615,"timestamp":6052318852621,"id":4414,"parentId":4174,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/event.js","layer":"app-pages-browser"},"startTime":1775659266761,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":39682,"timestamp":6052318852654,"id":4415,"parentId":4174,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/visual/decal.js","layer":"app-pages-browser"},"startTime":1775659266761,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":39732,"timestamp":6052318852693,"id":4416,"parentId":4174,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/core/lifecycle.js","layer":"app-pages-browser"},"startTime":1775659266761,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":40105,"timestamp":6052318852727,"id":4417,"parentId":4175,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/component.js","layer":"app-pages-browser"},"startTime":1775659266761,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":583,"timestamp":6052318901300,"id":4497,"parentId":4450,"tags":{},"startTime":1775659266809,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":632,"timestamp":6052318901314,"id":4498,"parentId":4451,"tags":{},"startTime":1775659266809,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":653,"timestamp":6052318901322,"id":4499,"parentId":4452,"tags":{},"startTime":1775659266809,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":679,"timestamp":6052318901331,"id":4500,"parentId":4453,"tags":{},"startTime":1775659266809,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":726,"timestamp":6052318901336,"id":4501,"parentId":4454,"tags":{},"startTime":1775659266809,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":751,"timestamp":6052318901341,"id":4502,"parentId":4455,"tags":{},"startTime":1775659266809,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":780,"timestamp":6052318901347,"id":4503,"parentId":4456,"tags":{},"startTime":1775659266809,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":811,"timestamp":6052318901352,"id":4504,"parentId":4457,"tags":{},"startTime":1775659266809,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":833,"timestamp":6052318901357,"id":4505,"parentId":4458,"tags":{},"startTime":1775659266809,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":854,"timestamp":6052318901362,"id":4506,"parentId":4459,"tags":{},"startTime":1775659266809,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":884,"timestamp":6052318901369,"id":4507,"parentId":4460,"tags":{},"startTime":1775659266809,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":914,"timestamp":6052318901374,"id":4508,"parentId":4461,"tags":{},"startTime":1775659266809,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":943,"timestamp":6052318901378,"id":4509,"parentId":4462,"tags":{},"startTime":1775659266809,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":966,"timestamp":6052318901382,"id":4510,"parentId":4463,"tags":{},"startTime":1775659266809,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":988,"timestamp":6052318901387,"id":4511,"parentId":4464,"tags":{},"startTime":1775659266809,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1009,"timestamp":6052318901391,"id":4512,"parentId":4465,"tags":{},"startTime":1775659266809,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1029,"timestamp":6052318901396,"id":4513,"parentId":4466,"tags":{},"startTime":1775659266809,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1061,"timestamp":6052318901401,"id":4514,"parentId":4467,"tags":{},"startTime":1775659266809,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1081,"timestamp":6052318901405,"id":4515,"parentId":4468,"tags":{},"startTime":1775659266809,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1101,"timestamp":6052318901410,"id":4516,"parentId":4469,"tags":{},"startTime":1775659266809,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1120,"timestamp":6052318901416,"id":4517,"parentId":4470,"tags":{},"startTime":1775659266809,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1148,"timestamp":6052318901421,"id":4518,"parentId":4471,"tags":{},"startTime":1775659266809,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1175,"timestamp":6052318901426,"id":4519,"parentId":4472,"tags":{},"startTime":1775659266809,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1191,"timestamp":6052318901435,"id":4520,"parentId":4473,"tags":{},"startTime":1775659266809,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1213,"timestamp":6052318901441,"id":4521,"parentId":4474,"tags":{},"startTime":1775659266809,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1232,"timestamp":6052318901446,"id":4522,"parentId":4475,"tags":{},"startTime":1775659266809,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1254,"timestamp":6052318901449,"id":4523,"parentId":4476,"tags":{},"startTime":1775659266809,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1285,"timestamp":6052318901453,"id":4524,"parentId":4477,"tags":{},"startTime":1775659266809,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1314,"timestamp":6052318901459,"id":4525,"parentId":4478,"tags":{},"startTime":1775659266809,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1336,"timestamp":6052318901466,"id":4526,"parentId":4479,"tags":{},"startTime":1775659266809,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1360,"timestamp":6052318901470,"id":4527,"parentId":4480,"tags":{},"startTime":1775659266809,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1389,"timestamp":6052318901474,"id":4528,"parentId":4481,"tags":{},"startTime":1775659266809,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1414,"timestamp":6052318901479,"id":4529,"parentId":4482,"tags":{},"startTime":1775659266809,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1442,"timestamp":6052318901483,"id":4530,"parentId":4483,"tags":{},"startTime":1775659266809,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1465,"timestamp":6052318901487,"id":4531,"parentId":4484,"tags":{},"startTime":1775659266809,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1504,"timestamp":6052318901492,"id":4532,"parentId":4485,"tags":{},"startTime":1775659266809,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1529,"timestamp":6052318901496,"id":4533,"parentId":4486,"tags":{},"startTime":1775659266809,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1549,"timestamp":6052318901501,"id":4534,"parentId":4487,"tags":{},"startTime":1775659266809,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1573,"timestamp":6052318901505,"id":4535,"parentId":4488,"tags":{},"startTime":1775659266809,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1613,"timestamp":6052318901511,"id":4536,"parentId":4489,"tags":{},"startTime":1775659266809,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1638,"timestamp":6052318901515,"id":4537,"parentId":4490,"tags":{},"startTime":1775659266809,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1692,"timestamp":6052318901520,"id":4538,"parentId":4491,"tags":{},"startTime":1775659266809,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1731,"timestamp":6052318901523,"id":4539,"parentId":4492,"tags":{},"startTime":1775659266809,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1758,"timestamp":6052318901527,"id":4540,"parentId":4493,"tags":{},"startTime":1775659266809,"traceId":"63571fab0751eb1f"}]
-[{"name":"read-resource","duration":2151,"timestamp":6052318901534,"id":4541,"parentId":4494,"tags":{},"startTime":1775659266809,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":2183,"timestamp":6052318901537,"id":4542,"parentId":4495,"tags":{},"startTime":1775659266809,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":2232,"timestamp":6052318901540,"id":4543,"parentId":4496,"tags":{},"startTime":1775659266809,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":7367,"timestamp":6052318901895,"id":4544,"parentId":4450,"tags":{},"startTime":1775659266810,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":7318,"timestamp":6052318901949,"id":4545,"parentId":4451,"tags":{},"startTime":1775659266810,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":7290,"timestamp":6052318901977,"id":4546,"parentId":4452,"tags":{},"startTime":1775659266810,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":7256,"timestamp":6052318902013,"id":4547,"parentId":4453,"tags":{},"startTime":1775659266810,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":7206,"timestamp":6052318902064,"id":4548,"parentId":4454,"tags":{},"startTime":1775659266810,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":7177,"timestamp":6052318902094,"id":4549,"parentId":4455,"tags":{},"startTime":1775659266810,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":7143,"timestamp":6052318902129,"id":4550,"parentId":4456,"tags":{},"startTime":1775659266810,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":7107,"timestamp":6052318902166,"id":4551,"parentId":4457,"tags":{},"startTime":1775659266810,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":7081,"timestamp":6052318902192,"id":4552,"parentId":4458,"tags":{},"startTime":1775659266810,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":7054,"timestamp":6052318902219,"id":4553,"parentId":4459,"tags":{},"startTime":1775659266810,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":7020,"timestamp":6052318902255,"id":4554,"parentId":4460,"tags":{},"startTime":1775659266810,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":6986,"timestamp":6052318902290,"id":4555,"parentId":4461,"tags":{},"startTime":1775659266810,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":6954,"timestamp":6052318902323,"id":4556,"parentId":4462,"tags":{},"startTime":1775659266810,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":6928,"timestamp":6052318902350,"id":4557,"parentId":4463,"tags":{},"startTime":1775659266810,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":6901,"timestamp":6052318902378,"id":4558,"parentId":4464,"tags":{},"startTime":1775659266810,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":6878,"timestamp":6052318902402,"id":4559,"parentId":4465,"tags":{},"startTime":1775659266810,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":6853,"timestamp":6052318902428,"id":4560,"parentId":4466,"tags":{},"startTime":1775659266810,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":6818,"timestamp":6052318902463,"id":4561,"parentId":4467,"tags":{},"startTime":1775659266810,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":6794,"timestamp":6052318902489,"id":4562,"parentId":4468,"tags":{},"startTime":1775659266810,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":6770,"timestamp":6052318902513,"id":4563,"parentId":4469,"tags":{},"startTime":1775659266810,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":6746,"timestamp":6052318902538,"id":4564,"parentId":4470,"tags":{},"startTime":1775659266810,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":6713,"timestamp":6052318902572,"id":4565,"parentId":4471,"tags":{},"startTime":1775659266810,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":6682,"timestamp":6052318902603,"id":4566,"parentId":4472,"tags":{},"startTime":1775659266810,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":6658,"timestamp":6052318902629,"id":4567,"parentId":4473,"tags":{},"startTime":1775659266811,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":6632,"timestamp":6052318902655,"id":4568,"parentId":4474,"tags":{},"startTime":1775659266811,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":6608,"timestamp":6052318902681,"id":4569,"parentId":4475,"tags":{},"startTime":1775659266811,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":6585,"timestamp":6052318902705,"id":4570,"parentId":4476,"tags":{},"startTime":1775659266811,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":6550,"timestamp":6052318902740,"id":4571,"parentId":4477,"tags":{},"startTime":1775659266811,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":6516,"timestamp":6052318902775,"id":4572,"parentId":4478,"tags":{},"startTime":1775659266811,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":6489,"timestamp":6052318902803,"id":4573,"parentId":4479,"tags":{},"startTime":1775659266811,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":6461,"timestamp":6052318902832,"id":4574,"parentId":4480,"tags":{},"startTime":1775659266811,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":6429,"timestamp":6052318902865,"id":4575,"parentId":4481,"tags":{},"startTime":1775659266811,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":6401,"timestamp":6052318902894,"id":4576,"parentId":4482,"tags":{},"startTime":1775659266811,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":6368,"timestamp":6052318902928,"id":4577,"parentId":4483,"tags":{},"startTime":1775659266811,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":6342,"timestamp":6052318902954,"id":4578,"parentId":4484,"tags":{},"startTime":1775659266811,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":6300,"timestamp":6052318902998,"id":4579,"parentId":4485,"tags":{},"startTime":1775659266811,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":6272,"timestamp":6052318903026,"id":4580,"parentId":4486,"tags":{},"startTime":1775659266811,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":6247,"timestamp":6052318903052,"id":4581,"parentId":4487,"tags":{},"startTime":1775659266811,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":6221,"timestamp":6052318903079,"id":4582,"parentId":4488,"tags":{},"startTime":1775659266811,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":6174,"timestamp":6052318903127,"id":4583,"parentId":4489,"tags":{},"startTime":1775659266811,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":6146,"timestamp":6052318903155,"id":4584,"parentId":4490,"tags":{},"startTime":1775659266811,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":6088,"timestamp":6052318903215,"id":4585,"parentId":4491,"tags":{},"startTime":1775659266811,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":6046,"timestamp":6052318903257,"id":4586,"parentId":4492,"tags":{},"startTime":1775659266811,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":5662,"timestamp":6052318903644,"id":4587,"parentId":4493,"tags":{},"startTime":1775659266812,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":5616,"timestamp":6052318903690,"id":4588,"parentId":4494,"tags":{},"startTime":1775659266812,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":5583,"timestamp":6052318903723,"id":4589,"parentId":4495,"tags":{},"startTime":1775659266812,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":5528,"timestamp":6052318903778,"id":4590,"parentId":4496,"tags":{},"startTime":1775659266812,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":11476,"timestamp":6052318898804,"id":4450,"parentId":4176,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/core/task.js","layer":"app-pages-browser"},"startTime":1775659266807,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":11846,"timestamp":6052318898926,"id":4451,"parentId":4177,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/Model.js","layer":"app-pages-browser"},"startTime":1775659266807,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":12833,"timestamp":6052318898995,"id":4452,"parentId":4177,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/layout.js","layer":"app-pages-browser"},"startTime":1775659266807,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":28856,"timestamp":6052318899178,"id":4453,"parentId":4180,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/SeriesData.js","layer":"app-pages-browser"},"startTime":1775659266807,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":32471,"timestamp":6052318899250,"id":4454,"parentId":4180,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/Axis.js","layer":"app-pages-browser"},"startTime":1775659266807,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":35495,"timestamp":6052318899293,"id":4455,"parentId":4181,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/label/LabelManager.js","layer":"app-pages-browser"},"startTime":1775659266807,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":36869,"timestamp":6052318899334,"id":4456,"parentId":4174,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/helper/transform.js","layer":"app-pages-browser"},"startTime":1775659266807,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":37100,"timestamp":6052318899373,"id":4457,"parentId":4176,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/createRenderPlanner.js","layer":"app-pages-browser"},"startTime":1775659266807,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":37994,"timestamp":6052318899412,"id":4458,"parentId":4178,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/mixin/palette.js","layer":"app-pages-browser"},"startTime":1775659266807,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":39438,"timestamp":6052318899450,"id":4459,"parentId":4178,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/mixin/dataFormat.js","layer":"app-pages-browser"},"startTime":1775659266807,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":41619,"timestamp":6052318899487,"id":4460,"parentId":4178,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/helper/sourceManager.js","layer":"app-pages-browser"},"startTime":1775659266807,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":41931,"timestamp":6052318899525,"id":4461,"parentId":4178,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/tooltip/seriesFormatTooltip.js","layer":"app-pages-browser"},"startTime":1775659266807,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":42120,"timestamp":6052318899566,"id":4462,"parentId":4180,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/api/helper.js","layer":"app-pages-browser"},"startTime":1775659266807,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":42366,"timestamp":6052318899608,"id":4463,"parentId":4180,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/parseGeoJson.js","layer":"app-pages-browser"},"startTime":1775659266808,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":42417,"timestamp":6052318899647,"id":4464,"parentId":4180,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/api/number.js","layer":"app-pages-browser"},"startTime":1775659266808,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":42432,"timestamp":6052318899684,"id":4465,"parentId":4180,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/api/time.js","layer":"app-pages-browser"},"startTime":1775659266808,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":42481,"timestamp":6052318899719,"id":4466,"parentId":4180,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/api/graphic.js","layer":"app-pages-browser"},"startTime":1775659266808,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":42499,"timestamp":6052318899758,"id":4467,"parentId":4180,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/api/format.js","layer":"app-pages-browser"},"startTime":1775659266808,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":42527,"timestamp":6052318899797,"id":4468,"parentId":4180,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/api/util.js","layer":"app-pages-browser"},"startTime":1775659266808,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":43056,"timestamp":6052318899833,"id":4469,"parentId":4174,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/env.js","layer":"app-pages-browser"},"startTime":1775659266808,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":44147,"timestamp":6052318899871,"id":4470,"parentId":4174,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/timsort.js","layer":"app-pages-browser"},"startTime":1775659266808,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":44505,"timestamp":6052318899907,"id":4471,"parentId":4174,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/Eventful.js","layer":"app-pages-browser"},"startTime":1775659266808,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":44800,"timestamp":6052318899943,"id":4472,"parentId":4174,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/platform.js","layer":"app-pages-browser"},"startTime":1775659266808,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":45875,"timestamp":6052318899978,"id":4473,"parentId":4175,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/Group.js","layer":"app-pages-browser"},"startTime":1775659266808,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":47214,"timestamp":6052318900014,"id":4474,"parentId":4180,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/matrix.js","layer":"app-pages-browser"},"startTime":1775659266808,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":49350,"timestamp":6052318900053,"id":4475,"parentId":4180,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/vector.js","layer":"app-pages-browser"},"startTime":1775659266808,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":53056,"timestamp":6052318900089,"id":4476,"parentId":4180,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/tool/color.js","layer":"app-pages-browser"},"startTime":1775659266808,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":63811,"timestamp":6052318900124,"id":4477,"parentId":4180,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/canvas/graphic.js","layer":"app-pages-browser"},"startTime":1775659266808,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":68027,"timestamp":6052318900160,"id":4478,"parentId":4182,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/Painter.js","layer":"app-pages-browser"},"startTime":1775659266808,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":69368,"timestamp":6052318900200,"id":4479,"parentId":4184,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/animation/morphTransitionHelper.js","layer":"app-pages-browser"},"startTime":1775659266808,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":71986,"timestamp":6052318900243,"id":4480,"parentId":4184,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/DataDiffer.js","layer":"app-pages-browser"},"startTime":1775659266808,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":74630,"timestamp":6052318900278,"id":4481,"parentId":4184,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/animation/basicTransition.js","layer":"app-pages-browser"},"startTime":1775659266808,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":74881,"timestamp":6052318900336,"id":4482,"parentId":4185,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/layout/points.js","layer":"app-pages-browser"},"startTime":1775659266808,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":75306,"timestamp":6052318900408,"id":4483,"parentId":4185,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/processor/dataSample.js","layer":"app-pages-browser"},"startTime":1775659266808,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":76367,"timestamp":6052318900449,"id":4484,"parentId":4186,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/layout/barGrid.js","layer":"app-pages-browser"},"startTime":1775659266808,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":76471,"timestamp":6052318900488,"id":4485,"parentId":4187,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/processor/dataFilter.js","layer":"app-pages-browser"},"startTime":1775659266808,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":76543,"timestamp":6052318900525,"id":4486,"parentId":4187,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/processor/negativeDataFilter.js","layer":"app-pages-browser"},"startTime":1775659266808,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":76949,"timestamp":6052318900563,"id":4487,"parentId":4185,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/line/LineSeries.js","layer":"app-pages-browser"},"startTime":1775659266808,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":81571,"timestamp":6052318900605,"id":4488,"parentId":4185,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/line/LineView.js","layer":"app-pages-browser"},"startTime":1775659266809,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":81783,"timestamp":6052318900643,"id":4489,"parentId":4186,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/bar/BarSeries.js","layer":"app-pages-browser"},"startTime":1775659266809,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":83395,"timestamp":6052318900734,"id":4490,"parentId":4186,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/bar/BarView.js","layer":"app-pages-browser"},"startTime":1775659266809,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":83840,"timestamp":6052318900779,"id":4491,"parentId":4187,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/pie/pieLayout.js","layer":"app-pages-browser"},"startTime":1775659266809,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":85098,"timestamp":6052318900825,"id":4492,"parentId":4187,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/pie/PieView.js","layer":"app-pages-browser"},"startTime":1775659266809,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":85594,"timestamp":6052318900906,"id":4493,"parentId":4187,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/pie/PieSeries.js","layer":"app-pages-browser"},"startTime":1775659266809,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":85990,"timestamp":6052318901033,"id":4494,"parentId":4188,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/scatter/ScatterSeries.js","layer":"app-pages-browser"},"startTime":1775659266809,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":86185,"timestamp":6052318901153,"id":4495,"parentId":4188,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/scatter/ScatterView.js","layer":"app-pages-browser"},"startTime":1775659266809,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":86289,"timestamp":6052318901193,"id":4496,"parentId":4189,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/radar/radarLayout.js","layer":"app-pages-browser"},"startTime":1775659266809,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":278,"timestamp":6052319018842,"id":4658,"parentId":4591,"tags":{},"startTime":1775659266927,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":303,"timestamp":6052319018860,"id":4659,"parentId":4592,"tags":{},"startTime":1775659266927,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":331,"timestamp":6052319018863,"id":4660,"parentId":4593,"tags":{},"startTime":1775659266927,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":353,"timestamp":6052319018866,"id":4661,"parentId":4594,"tags":{},"startTime":1775659266927,"traceId":"63571fab0751eb1f"}]
-[{"name":"read-resource","duration":647,"timestamp":6052319018869,"id":4662,"parentId":4595,"tags":{},"startTime":1775659266927,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":708,"timestamp":6052319018871,"id":4663,"parentId":4596,"tags":{},"startTime":1775659266927,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":744,"timestamp":6052319018874,"id":4664,"parentId":4597,"tags":{},"startTime":1775659266927,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":777,"timestamp":6052319018877,"id":4665,"parentId":4598,"tags":{},"startTime":1775659266927,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":805,"timestamp":6052319018880,"id":4666,"parentId":4599,"tags":{},"startTime":1775659266927,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":833,"timestamp":6052319018882,"id":4667,"parentId":4600,"tags":{},"startTime":1775659266927,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":876,"timestamp":6052319018884,"id":4668,"parentId":4601,"tags":{},"startTime":1775659266927,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":907,"timestamp":6052319018886,"id":4669,"parentId":4602,"tags":{},"startTime":1775659266927,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":932,"timestamp":6052319018888,"id":4670,"parentId":4603,"tags":{},"startTime":1775659266927,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":972,"timestamp":6052319018891,"id":4671,"parentId":4604,"tags":{},"startTime":1775659266927,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1002,"timestamp":6052319018893,"id":4672,"parentId":4605,"tags":{},"startTime":1775659266927,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1027,"timestamp":6052319018895,"id":4673,"parentId":4606,"tags":{},"startTime":1775659266927,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1099,"timestamp":6052319018898,"id":4674,"parentId":4607,"tags":{},"startTime":1775659266927,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1133,"timestamp":6052319018900,"id":4675,"parentId":4608,"tags":{},"startTime":1775659266927,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1161,"timestamp":6052319018902,"id":4676,"parentId":4609,"tags":{},"startTime":1775659266927,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1217,"timestamp":6052319018904,"id":4677,"parentId":4610,"tags":{},"startTime":1775659266927,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1302,"timestamp":6052319018907,"id":4678,"parentId":4611,"tags":{},"startTime":1775659266927,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1329,"timestamp":6052319018908,"id":4679,"parentId":4612,"tags":{},"startTime":1775659266927,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1383,"timestamp":6052319018910,"id":4680,"parentId":4613,"tags":{},"startTime":1775659266927,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1406,"timestamp":6052319018913,"id":4681,"parentId":4614,"tags":{},"startTime":1775659266927,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1430,"timestamp":6052319018915,"id":4682,"parentId":4615,"tags":{},"startTime":1775659266927,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1453,"timestamp":6052319018917,"id":4683,"parentId":4616,"tags":{},"startTime":1775659266927,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1475,"timestamp":6052319018919,"id":4684,"parentId":4617,"tags":{},"startTime":1775659266927,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1497,"timestamp":6052319018921,"id":4685,"parentId":4618,"tags":{},"startTime":1775659266927,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1526,"timestamp":6052319018923,"id":4686,"parentId":4619,"tags":{},"startTime":1775659266927,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1550,"timestamp":6052319018925,"id":4687,"parentId":4620,"tags":{},"startTime":1775659266927,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1576,"timestamp":6052319018927,"id":4688,"parentId":4621,"tags":{},"startTime":1775659266927,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1601,"timestamp":6052319018929,"id":4689,"parentId":4622,"tags":{},"startTime":1775659266927,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1644,"timestamp":6052319018931,"id":4690,"parentId":4623,"tags":{},"startTime":1775659266927,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1675,"timestamp":6052319018932,"id":4691,"parentId":4624,"tags":{},"startTime":1775659266927,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1702,"timestamp":6052319018934,"id":4692,"parentId":4625,"tags":{},"startTime":1775659266927,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1735,"timestamp":6052319018936,"id":4693,"parentId":4626,"tags":{},"startTime":1775659266927,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1765,"timestamp":6052319018938,"id":4694,"parentId":4627,"tags":{},"startTime":1775659266927,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1798,"timestamp":6052319018940,"id":4695,"parentId":4628,"tags":{},"startTime":1775659266927,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1822,"timestamp":6052319018942,"id":4696,"parentId":4629,"tags":{},"startTime":1775659266927,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1843,"timestamp":6052319018944,"id":4697,"parentId":4630,"tags":{},"startTime":1775659266927,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1879,"timestamp":6052319018946,"id":4698,"parentId":4631,"tags":{},"startTime":1775659266927,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1917,"timestamp":6052319018947,"id":4699,"parentId":4632,"tags":{},"startTime":1775659266927,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1949,"timestamp":6052319018949,"id":4700,"parentId":4633,"tags":{},"startTime":1775659266927,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1973,"timestamp":6052319018951,"id":4701,"parentId":4634,"tags":{},"startTime":1775659266927,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":2012,"timestamp":6052319018953,"id":4702,"parentId":4635,"tags":{},"startTime":1775659266927,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":2056,"timestamp":6052319018955,"id":4703,"parentId":4636,"tags":{},"startTime":1775659266927,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":2088,"timestamp":6052319018956,"id":4704,"parentId":4637,"tags":{},"startTime":1775659266927,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":2114,"timestamp":6052319018958,"id":4705,"parentId":4638,"tags":{},"startTime":1775659266927,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":2147,"timestamp":6052319018959,"id":4706,"parentId":4639,"tags":{},"startTime":1775659266927,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":2171,"timestamp":6052319018961,"id":4707,"parentId":4640,"tags":{},"startTime":1775659266927,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":2193,"timestamp":6052319018963,"id":4708,"parentId":4641,"tags":{},"startTime":1775659266927,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":2215,"timestamp":6052319018965,"id":4709,"parentId":4642,"tags":{},"startTime":1775659266927,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":2242,"timestamp":6052319018966,"id":4710,"parentId":4643,"tags":{},"startTime":1775659266927,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":2271,"timestamp":6052319018968,"id":4711,"parentId":4644,"tags":{},"startTime":1775659266927,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":2298,"timestamp":6052319018969,"id":4712,"parentId":4645,"tags":{},"startTime":1775659266927,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":2324,"timestamp":6052319018971,"id":4713,"parentId":4646,"tags":{},"startTime":1775659266927,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":2359,"timestamp":6052319018972,"id":4714,"parentId":4647,"tags":{},"startTime":1775659266927,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":2382,"timestamp":6052319018974,"id":4715,"parentId":4648,"tags":{},"startTime":1775659266927,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":2405,"timestamp":6052319018976,"id":4716,"parentId":4649,"tags":{},"startTime":1775659266927,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":2442,"timestamp":6052319018977,"id":4717,"parentId":4650,"tags":{},"startTime":1775659266927,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":2465,"timestamp":6052319018979,"id":4718,"parentId":4651,"tags":{},"startTime":1775659266927,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":2506,"timestamp":6052319018980,"id":4719,"parentId":4652,"tags":{},"startTime":1775659266927,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":2530,"timestamp":6052319018982,"id":4720,"parentId":4653,"tags":{},"startTime":1775659266927,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":2555,"timestamp":6052319018983,"id":4721,"parentId":4654,"tags":{},"startTime":1775659266927,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":2581,"timestamp":6052319018985,"id":4722,"parentId":4655,"tags":{},"startTime":1775659266927,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":2605,"timestamp":6052319018987,"id":4723,"parentId":4656,"tags":{},"startTime":1775659266927,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":2632,"timestamp":6052319018988,"id":4724,"parentId":4657,"tags":{},"startTime":1775659266927,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":4786,"timestamp":6052319019130,"id":4725,"parentId":4591,"tags":{},"startTime":1775659266927,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":4755,"timestamp":6052319019165,"id":4726,"parentId":4592,"tags":{},"startTime":1775659266927,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":4726,"timestamp":6052319019196,"id":4727,"parentId":4593,"tags":{},"startTime":1775659266927,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":4475,"timestamp":6052319019449,"id":4728,"parentId":4594,"tags":{},"startTime":1775659266927,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":4397,"timestamp":6052319019527,"id":4729,"parentId":4595,"tags":{},"startTime":1775659266927,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":4342,"timestamp":6052319019584,"id":4730,"parentId":4596,"tags":{},"startTime":1775659266927,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":4306,"timestamp":6052319019621,"id":4731,"parentId":4597,"tags":{},"startTime":1775659266927,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":4271,"timestamp":6052319019657,"id":4732,"parentId":4598,"tags":{},"startTime":1775659266928,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":4240,"timestamp":6052319019688,"id":4733,"parentId":4599,"tags":{},"startTime":1775659266928,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":4212,"timestamp":6052319019719,"id":4734,"parentId":4600,"tags":{},"startTime":1775659266928,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":4168,"timestamp":6052319019763,"id":4735,"parentId":4601,"tags":{},"startTime":1775659266928,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":4137,"timestamp":6052319019795,"id":4736,"parentId":4602,"tags":{},"startTime":1775659266928,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":4111,"timestamp":6052319019823,"id":4737,"parentId":4603,"tags":{},"startTime":1775659266928,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":4068,"timestamp":6052319019867,"id":4738,"parentId":4604,"tags":{},"startTime":1775659266928,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":4038,"timestamp":6052319019898,"id":4739,"parentId":4605,"tags":{},"startTime":1775659266928,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":4011,"timestamp":6052319019925,"id":4740,"parentId":4606,"tags":{},"startTime":1775659266928,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":3932,"timestamp":6052319020005,"id":4741,"parentId":4607,"tags":{},"startTime":1775659266928,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":3904,"timestamp":6052319020035,"id":4742,"parentId":4608,"tags":{},"startTime":1775659266928,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":3875,"timestamp":6052319020066,"id":4743,"parentId":4609,"tags":{},"startTime":1775659266928,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":3817,"timestamp":6052319020125,"id":4744,"parentId":4610,"tags":{},"startTime":1775659266928,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":3731,"timestamp":6052319020211,"id":4745,"parentId":4611,"tags":{},"startTime":1775659266928,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":3704,"timestamp":6052319020240,"id":4746,"parentId":4612,"tags":{},"startTime":1775659266928,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":3648,"timestamp":6052319020296,"id":4747,"parentId":4613,"tags":{},"startTime":1775659266928,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":3624,"timestamp":6052319020321,"id":4748,"parentId":4614,"tags":{},"startTime":1775659266928,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":3600,"timestamp":6052319020347,"id":4749,"parentId":4615,"tags":{},"startTime":1775659266928,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":3576,"timestamp":6052319020372,"id":4750,"parentId":4616,"tags":{},"startTime":1775659266928,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":3553,"timestamp":6052319020396,"id":4751,"parentId":4617,"tags":{},"startTime":1775659266928,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":3530,"timestamp":6052319020420,"id":4752,"parentId":4618,"tags":{},"startTime":1775659266928,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":3499,"timestamp":6052319020451,"id":4753,"parentId":4619,"tags":{},"startTime":1775659266928,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":3474,"timestamp":6052319020477,"id":4754,"parentId":4620,"tags":{},"startTime":1775659266928,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":3447,"timestamp":6052319020505,"id":4755,"parentId":4621,"tags":{},"startTime":1775659266928,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":3422,"timestamp":6052319020532,"id":4756,"parentId":4622,"tags":{},"startTime":1775659266928,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":3378,"timestamp":6052319020577,"id":4757,"parentId":4623,"tags":{},"startTime":1775659266928,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":3347,"timestamp":6052319020609,"id":4758,"parentId":4624,"tags":{},"startTime":1775659266928,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":3319,"timestamp":6052319020638,"id":4759,"parentId":4625,"tags":{},"startTime":1775659266929,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":3285,"timestamp":6052319020673,"id":4760,"parentId":4626,"tags":{},"startTime":1775659266929,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":3253,"timestamp":6052319020705,"id":4761,"parentId":4627,"tags":{},"startTime":1775659266929,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":3219,"timestamp":6052319020740,"id":4762,"parentId":4628,"tags":{},"startTime":1775659266929,"traceId":"63571fab0751eb1f"}]
-[{"name":"next-swc-loader","duration":3305,"timestamp":6052319020765,"id":4763,"parentId":4629,"tags":{},"startTime":1775659266929,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":3282,"timestamp":6052319020789,"id":4764,"parentId":4630,"tags":{},"startTime":1775659266929,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":3245,"timestamp":6052319020827,"id":4765,"parentId":4631,"tags":{},"startTime":1775659266929,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":3206,"timestamp":6052319020867,"id":4766,"parentId":4632,"tags":{},"startTime":1775659266929,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":3173,"timestamp":6052319020900,"id":4767,"parentId":4633,"tags":{},"startTime":1775659266929,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":3148,"timestamp":6052319020926,"id":4768,"parentId":4634,"tags":{},"startTime":1775659266929,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":3107,"timestamp":6052319020969,"id":4769,"parentId":4635,"tags":{},"startTime":1775659266929,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":3063,"timestamp":6052319021014,"id":4770,"parentId":4636,"tags":{},"startTime":1775659266929,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":3032,"timestamp":6052319021046,"id":4771,"parentId":4637,"tags":{},"startTime":1775659266929,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":3004,"timestamp":6052319021074,"id":4772,"parentId":4638,"tags":{},"startTime":1775659266929,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":2971,"timestamp":6052319021108,"id":4773,"parentId":4639,"tags":{},"startTime":1775659266929,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":2946,"timestamp":6052319021134,"id":4774,"parentId":4640,"tags":{},"startTime":1775659266929,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":2923,"timestamp":6052319021158,"id":4775,"parentId":4641,"tags":{},"startTime":1775659266929,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":2900,"timestamp":6052319021182,"id":4776,"parentId":4642,"tags":{},"startTime":1775659266929,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":2873,"timestamp":6052319021210,"id":4777,"parentId":4643,"tags":{},"startTime":1775659266929,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":2842,"timestamp":6052319021241,"id":4778,"parentId":4644,"tags":{},"startTime":1775659266929,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":2815,"timestamp":6052319021270,"id":4779,"parentId":4645,"tags":{},"startTime":1775659266929,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":2790,"timestamp":6052319021296,"id":4780,"parentId":4646,"tags":{},"startTime":1775659266929,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":2753,"timestamp":6052319021333,"id":4781,"parentId":4647,"tags":{},"startTime":1775659266929,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":2729,"timestamp":6052319021358,"id":4782,"parentId":4648,"tags":{},"startTime":1775659266929,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":2706,"timestamp":6052319021382,"id":4783,"parentId":4649,"tags":{},"startTime":1775659266929,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":2667,"timestamp":6052319021421,"id":4784,"parentId":4650,"tags":{},"startTime":1775659266929,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":2642,"timestamp":6052319021447,"id":4785,"parentId":4651,"tags":{},"startTime":1775659266929,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":2602,"timestamp":6052319021489,"id":4786,"parentId":4652,"tags":{},"startTime":1775659266929,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":2578,"timestamp":6052319021513,"id":4787,"parentId":4653,"tags":{},"startTime":1775659266929,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":2552,"timestamp":6052319021540,"id":4788,"parentId":4654,"tags":{},"startTime":1775659266929,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":2526,"timestamp":6052319021567,"id":4789,"parentId":4655,"tags":{},"startTime":1775659266929,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":2501,"timestamp":6052319021593,"id":4790,"parentId":4656,"tags":{},"startTime":1775659266929,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":2473,"timestamp":6052319021622,"id":4791,"parentId":4657,"tags":{},"startTime":1775659266929,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":8095,"timestamp":6052319016429,"id":4591,"parentId":4189,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/radar/backwardCompat.js","layer":"app-pages-browser"},"startTime":1775659266924,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":9786,"timestamp":6052319016542,"id":4592,"parentId":4189,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/radar/RadarView.js","layer":"app-pages-browser"},"startTime":1775659266924,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":10249,"timestamp":6052319016588,"id":4593,"parentId":4189,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/radar/RadarSeries.js","layer":"app-pages-browser"},"startTime":1775659266924,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":10565,"timestamp":6052319016626,"id":4594,"parentId":4190,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/map/MapView.js","layer":"app-pages-browser"},"startTime":1775659266925,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":12006,"timestamp":6052319016664,"id":4595,"parentId":4183,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/canvas/Painter.js","layer":"app-pages-browser"},"startTime":1775659266925,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":12780,"timestamp":6052319016701,"id":4596,"parentId":4184,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/Path.js","layer":"app-pages-browser"},"startTime":1775659266925,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":13380,"timestamp":6052319016735,"id":4597,"parentId":4184,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/Displayable.js","layer":"app-pages-browser"},"startTime":1775659266925,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":13796,"timestamp":6052319016771,"id":4598,"parentId":4193,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/View.js","layer":"app-pages-browser"},"startTime":1775659266925,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":13916,"timestamp":6052319016807,"id":4599,"parentId":4193,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/action/roamHelper.js","layer":"app-pages-browser"},"startTime":1775659266925,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":14284,"timestamp":6052319016841,"id":4600,"parentId":4190,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/map/MapSeries.js","layer":"app-pages-browser"},"startTime":1775659266925,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":14456,"timestamp":6052319016876,"id":4601,"parentId":4190,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/map/mapDataStatistic.js","layer":"app-pages-browser"},"startTime":1775659266925,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":14549,"timestamp":6052319016910,"id":4602,"parentId":4190,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/map/mapSymbolLayout.js","layer":"app-pages-browser"},"startTime":1775659266925,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":16380,"timestamp":6052319016944,"id":4603,"parentId":4191,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/tree/TreeView.js","layer":"app-pages-browser"},"startTime":1775659266925,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":16699,"timestamp":6052319016977,"id":4604,"parentId":4191,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/tree/TreeSeries.js","layer":"app-pages-browser"},"startTime":1775659266925,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":17620,"timestamp":6052319017010,"id":4605,"parentId":4191,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/tree/treeLayout.js","layer":"app-pages-browser"},"startTime":1775659266925,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":18172,"timestamp":6052319017044,"id":4606,"parentId":4191,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/tree/treeVisual.js","layer":"app-pages-browser"},"startTime":1775659266925,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":18374,"timestamp":6052319017080,"id":4607,"parentId":4191,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/tree/treeAction.js","layer":"app-pages-browser"},"startTime":1775659266925,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":18470,"timestamp":6052319017114,"id":4608,"parentId":4192,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/treemap/treemapAction.js","layer":"app-pages-browser"},"startTime":1775659266925,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":18932,"timestamp":6052319017150,"id":4609,"parentId":4192,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/treemap/TreemapSeries.js","layer":"app-pages-browser"},"startTime":1775659266925,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":23100,"timestamp":6052319017183,"id":4610,"parentId":4192,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/treemap/TreemapView.js","layer":"app-pages-browser"},"startTime":1775659266925,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":23531,"timestamp":6052319017219,"id":4611,"parentId":4192,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/treemap/treemapVisual.js","layer":"app-pages-browser"},"startTime":1775659266925,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":24425,"timestamp":6052319017276,"id":4612,"parentId":4192,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/treemap/treemapLayout.js","layer":"app-pages-browser"},"startTime":1775659266925,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":24520,"timestamp":6052319017312,"id":4613,"parentId":4193,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/categoryFilter.js","layer":"app-pages-browser"},"startTime":1775659266925,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":24633,"timestamp":6052319017347,"id":4614,"parentId":4193,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/categoryVisual.js","layer":"app-pages-browser"},"startTime":1775659266925,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":24754,"timestamp":6052319017383,"id":4615,"parentId":4193,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/edgeVisual.js","layer":"app-pages-browser"},"startTime":1775659266925,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":24932,"timestamp":6052319017424,"id":4616,"parentId":4193,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/simpleLayout.js","layer":"app-pages-browser"},"startTime":1775659266925,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":24958,"timestamp":6052319017460,"id":4617,"parentId":4193,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/circularLayout.js","layer":"app-pages-browser"},"startTime":1775659266925,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":25347,"timestamp":6052319017493,"id":4618,"parentId":4193,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/forceLayout.js","layer":"app-pages-browser"},"startTime":1775659266925,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":25503,"timestamp":6052319017527,"id":4619,"parentId":4193,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/createView.js","layer":"app-pages-browser"},"startTime":1775659266925,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":25975,"timestamp":6052319017561,"id":4620,"parentId":4193,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/GraphView.js","layer":"app-pages-browser"},"startTime":1775659266925,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":26325,"timestamp":6052319017594,"id":4621,"parentId":4193,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/GraphSeries.js","layer":"app-pages-browser"},"startTime":1775659266925,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":27503,"timestamp":6052319017626,"id":4622,"parentId":4194,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/gauge/GaugeView.js","layer":"app-pages-browser"},"startTime":1775659266926,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":27650,"timestamp":6052319017658,"id":4623,"parentId":4194,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/gauge/GaugeSeries.js","layer":"app-pages-browser"},"startTime":1775659266926,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":28063,"timestamp":6052319017691,"id":4624,"parentId":4195,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/funnel/FunnelView.js","layer":"app-pages-browser"},"startTime":1775659266926,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":28276,"timestamp":6052319017723,"id":4625,"parentId":4195,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/funnel/FunnelSeries.js","layer":"app-pages-browser"},"startTime":1775659266926,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":29156,"timestamp":6052319017756,"id":4626,"parentId":4195,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/funnel/funnelLayout.js","layer":"app-pages-browser"},"startTime":1775659266926,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":29788,"timestamp":6052319017789,"id":4627,"parentId":4196,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/parallel/ParallelView.js","layer":"app-pages-browser"},"startTime":1775659266926,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":30168,"timestamp":6052319017822,"id":4628,"parentId":4196,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/parallel/ParallelSeries.js","layer":"app-pages-browser"},"startTime":1775659266926,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":30257,"timestamp":6052319017855,"id":4629,"parentId":4196,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/parallel/parallelVisual.js","layer":"app-pages-browser"},"startTime":1775659266926,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":31011,"timestamp":6052319017890,"id":4630,"parentId":4197,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sankey/SankeyView.js","layer":"app-pages-browser"},"startTime":1775659266926,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":31339,"timestamp":6052319017923,"id":4631,"parentId":4197,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sankey/SankeySeries.js","layer":"app-pages-browser"},"startTime":1775659266926,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":33468,"timestamp":6052319017956,"id":4632,"parentId":4197,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sankey/sankeyLayout.js","layer":"app-pages-browser"},"startTime":1775659266926,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":33700,"timestamp":6052319017989,"id":4633,"parentId":4197,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sankey/sankeyVisual.js","layer":"app-pages-browser"},"startTime":1775659266926,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":33819,"timestamp":6052319018022,"id":4634,"parentId":4198,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/boxplot/BoxplotSeries.js","layer":"app-pages-browser"},"startTime":1775659266926,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":34119,"timestamp":6052319018054,"id":4635,"parentId":4198,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/boxplot/BoxplotView.js","layer":"app-pages-browser"},"startTime":1775659266926,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":34503,"timestamp":6052319018088,"id":4636,"parentId":4198,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/boxplot/boxplotLayout.js","layer":"app-pages-browser"},"startTime":1775659266926,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":34753,"timestamp":6052319018121,"id":4637,"parentId":4198,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/boxplot/boxplotTransform.js","layer":"app-pages-browser"},"startTime":1775659266926,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":35649,"timestamp":6052319018154,"id":4638,"parentId":4199,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/candlestick/CandlestickView.js","layer":"app-pages-browser"},"startTime":1775659266926,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":35830,"timestamp":6052319018188,"id":4639,"parentId":4199,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/candlestick/CandlestickSeries.js","layer":"app-pages-browser"},"startTime":1775659266926,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":35881,"timestamp":6052319018220,"id":4640,"parentId":4199,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/candlestick/preprocessor.js","layer":"app-pages-browser"},"startTime":1775659266926,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":35997,"timestamp":6052319018254,"id":4641,"parentId":4199,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/candlestick/candlestickVisual.js","layer":"app-pages-browser"},"startTime":1775659266926,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":36506,"timestamp":6052319018286,"id":4642,"parentId":4199,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/candlestick/candlestickLayout.js","layer":"app-pages-browser"},"startTime":1775659266926,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":36700,"timestamp":6052319018325,"id":4643,"parentId":4200,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/effectScatter/EffectScatterView.js","layer":"app-pages-browser"},"startTime":1775659266926,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":36807,"timestamp":6052319018357,"id":4644,"parentId":4200,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/effectScatter/EffectScatterSeries.js","layer":"app-pages-browser"},"startTime":1775659266926,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":37126,"timestamp":6052319018390,"id":4645,"parentId":4201,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/lines/LinesView.js","layer":"app-pages-browser"},"startTime":1775659266926,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":37712,"timestamp":6052319018423,"id":4646,"parentId":4201,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/lines/LinesSeries.js","layer":"app-pages-browser"},"startTime":1775659266926,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":37913,"timestamp":6052319018455,"id":4647,"parentId":4201,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/lines/linesLayout.js","layer":"app-pages-browser"},"startTime":1775659266926,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":38006,"timestamp":6052319018486,"id":4648,"parentId":4201,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/lines/linesVisual.js","layer":"app-pages-browser"},"startTime":1775659266926,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":38701,"timestamp":6052319018525,"id":4649,"parentId":4202,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/heatmap/HeatmapView.js","layer":"app-pages-browser"},"startTime":1775659266926,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":38801,"timestamp":6052319018558,"id":4650,"parentId":4202,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/heatmap/HeatmapSeries.js","layer":"app-pages-browser"},"startTime":1775659266926,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":40553,"timestamp":6052319018592,"id":4651,"parentId":4203,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/bar/PictorialBarView.js","layer":"app-pages-browser"},"startTime":1775659266926,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":40813,"timestamp":6052319018624,"id":4652,"parentId":4203,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/bar/PictorialBarSeries.js","layer":"app-pages-browser"},"startTime":1775659266927,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":41281,"timestamp":6052319018658,"id":4653,"parentId":4204,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/themeRiver/ThemeRiverView.js","layer":"app-pages-browser"},"startTime":1775659266927,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":42062,"timestamp":6052319018691,"id":4654,"parentId":4204,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/themeRiver/ThemeRiverSeries.js","layer":"app-pages-browser"},"startTime":1775659266927,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":42337,"timestamp":6052319018723,"id":4655,"parentId":4204,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/themeRiver/themeRiverLayout.js","layer":"app-pages-browser"},"startTime":1775659266927,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":42680,"timestamp":6052319018756,"id":4656,"parentId":4205,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sunburst/SunburstView.js","layer":"app-pages-browser"},"startTime":1775659266927,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":42956,"timestamp":6052319018788,"id":4657,"parentId":4205,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sunburst/SunburstSeries.js","layer":"app-pages-browser"},"startTime":1775659266927,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":312,"timestamp":6052319129765,"id":4848,"parentId":4792,"tags":{},"startTime":1775659267038,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":365,"timestamp":6052319129772,"id":4849,"parentId":4793,"tags":{},"startTime":1775659267038,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":435,"timestamp":6052319129776,"id":4850,"parentId":4794,"tags":{},"startTime":1775659267038,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":3097,"timestamp":6052319129779,"id":4851,"parentId":4795,"tags":{},"startTime":1775659267038,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":3344,"timestamp":6052319129782,"id":4852,"parentId":4796,"tags":{},"startTime":1775659267038,"traceId":"63571fab0751eb1f"}]
-[{"name":"read-resource","duration":4016,"timestamp":6052319129786,"id":4853,"parentId":4797,"tags":{},"startTime":1775659267038,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":4082,"timestamp":6052319129789,"id":4854,"parentId":4798,"tags":{},"startTime":1775659267038,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":4115,"timestamp":6052319129792,"id":4855,"parentId":4799,"tags":{},"startTime":1775659267038,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":4241,"timestamp":6052319129796,"id":4856,"parentId":4800,"tags":{},"startTime":1775659267038,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":4277,"timestamp":6052319129800,"id":4857,"parentId":4801,"tags":{},"startTime":1775659267038,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":4302,"timestamp":6052319129803,"id":4858,"parentId":4802,"tags":{},"startTime":1775659267038,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":4399,"timestamp":6052319129806,"id":4859,"parentId":4803,"tags":{},"startTime":1775659267038,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":4427,"timestamp":6052319129810,"id":4860,"parentId":4804,"tags":{},"startTime":1775659267038,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":4451,"timestamp":6052319129813,"id":4861,"parentId":4805,"tags":{},"startTime":1775659267038,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":4479,"timestamp":6052319129816,"id":4862,"parentId":4806,"tags":{},"startTime":1775659267038,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":4504,"timestamp":6052319129819,"id":4863,"parentId":4807,"tags":{},"startTime":1775659267038,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":4551,"timestamp":6052319129822,"id":4864,"parentId":4808,"tags":{},"startTime":1775659267038,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":4640,"timestamp":6052319129825,"id":4865,"parentId":4809,"tags":{},"startTime":1775659267038,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":5320,"timestamp":6052319129828,"id":4866,"parentId":4810,"tags":{},"startTime":1775659267038,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":5635,"timestamp":6052319129832,"id":4867,"parentId":4811,"tags":{},"startTime":1775659267038,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":5866,"timestamp":6052319129834,"id":4868,"parentId":4812,"tags":{},"startTime":1775659267038,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":5941,"timestamp":6052319129838,"id":4869,"parentId":4813,"tags":{},"startTime":1775659267038,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":6004,"timestamp":6052319129841,"id":4870,"parentId":4814,"tags":{},"startTime":1775659267038,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":6031,"timestamp":6052319129843,"id":4871,"parentId":4815,"tags":{},"startTime":1775659267038,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":6060,"timestamp":6052319129845,"id":4872,"parentId":4816,"tags":{},"startTime":1775659267038,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":6114,"timestamp":6052319129848,"id":4873,"parentId":4817,"tags":{},"startTime":1775659267038,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":6183,"timestamp":6052319129851,"id":4874,"parentId":4818,"tags":{},"startTime":1775659267038,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":6213,"timestamp":6052319129853,"id":4875,"parentId":4819,"tags":{},"startTime":1775659267038,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":6239,"timestamp":6052319129855,"id":4876,"parentId":4820,"tags":{},"startTime":1775659267038,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":6266,"timestamp":6052319129858,"id":4877,"parentId":4821,"tags":{},"startTime":1775659267038,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":6290,"timestamp":6052319129860,"id":4878,"parentId":4822,"tags":{},"startTime":1775659267038,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":6407,"timestamp":6052319129862,"id":4879,"parentId":4823,"tags":{},"startTime":1775659267038,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":6466,"timestamp":6052319129864,"id":4880,"parentId":4824,"tags":{},"startTime":1775659267038,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":6493,"timestamp":6052319129867,"id":4881,"parentId":4825,"tags":{},"startTime":1775659267038,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":6531,"timestamp":6052319129869,"id":4882,"parentId":4826,"tags":{},"startTime":1775659267038,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":6560,"timestamp":6052319129871,"id":4883,"parentId":4827,"tags":{},"startTime":1775659267038,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":7113,"timestamp":6052319129873,"id":4884,"parentId":4828,"tags":{},"startTime":1775659267038,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":7276,"timestamp":6052319129875,"id":4885,"parentId":4829,"tags":{},"startTime":1775659267038,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":7375,"timestamp":6052319129877,"id":4886,"parentId":4830,"tags":{},"startTime":1775659267038,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":7427,"timestamp":6052319129879,"id":4887,"parentId":4831,"tags":{},"startTime":1775659267038,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":7478,"timestamp":6052319129881,"id":4888,"parentId":4832,"tags":{},"startTime":1775659267038,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":7599,"timestamp":6052319129883,"id":4889,"parentId":4833,"tags":{},"startTime":1775659267038,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":7984,"timestamp":6052319129885,"id":4890,"parentId":4834,"tags":{},"startTime":1775659267038,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":8090,"timestamp":6052319129887,"id":4891,"parentId":4835,"tags":{},"startTime":1775659267038,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":8128,"timestamp":6052319129888,"id":4892,"parentId":4836,"tags":{},"startTime":1775659267038,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":8170,"timestamp":6052319129890,"id":4893,"parentId":4837,"tags":{},"startTime":1775659267038,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":8208,"timestamp":6052319129892,"id":4894,"parentId":4838,"tags":{},"startTime":1775659267038,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":8397,"timestamp":6052319129894,"id":4895,"parentId":4839,"tags":{},"startTime":1775659267038,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":8425,"timestamp":6052319129896,"id":4896,"parentId":4840,"tags":{},"startTime":1775659267038,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":8467,"timestamp":6052319129898,"id":4897,"parentId":4841,"tags":{},"startTime":1775659267038,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":8512,"timestamp":6052319129900,"id":4898,"parentId":4842,"tags":{},"startTime":1775659267038,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":8565,"timestamp":6052319129902,"id":4899,"parentId":4843,"tags":{},"startTime":1775659267038,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":8663,"timestamp":6052319129903,"id":4900,"parentId":4844,"tags":{},"startTime":1775659267038,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":8774,"timestamp":6052319129905,"id":4901,"parentId":4845,"tags":{},"startTime":1775659267038,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":8915,"timestamp":6052319129907,"id":4902,"parentId":4846,"tags":{},"startTime":1775659267038,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":9004,"timestamp":6052319129908,"id":4903,"parentId":4847,"tags":{},"startTime":1775659267038,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":16196,"timestamp":6052319130090,"id":4904,"parentId":4792,"tags":{},"startTime":1775659267038,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":16150,"timestamp":6052319130140,"id":4905,"parentId":4793,"tags":{},"startTime":1775659267038,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":16066,"timestamp":6052319130225,"id":4906,"parentId":4794,"tags":{},"startTime":1775659267038,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":13318,"timestamp":6052319132974,"id":4907,"parentId":4795,"tags":{},"startTime":1775659267041,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":12569,"timestamp":6052319133725,"id":4908,"parentId":4796,"tags":{},"startTime":1775659267042,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":12479,"timestamp":6052319133815,"id":4909,"parentId":4797,"tags":{},"startTime":1775659267042,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":12415,"timestamp":6052319133880,"id":4910,"parentId":4798,"tags":{},"startTime":1775659267042,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":12382,"timestamp":6052319133913,"id":4911,"parentId":4799,"tags":{},"startTime":1775659267042,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":12246,"timestamp":6052319134050,"id":4912,"parentId":4800,"tags":{},"startTime":1775659267042,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":12217,"timestamp":6052319134080,"id":4913,"parentId":4801,"tags":{},"startTime":1775659267042,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":12190,"timestamp":6052319134108,"id":4914,"parentId":4802,"tags":{},"startTime":1775659267042,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":12090,"timestamp":6052319134209,"id":4915,"parentId":4803,"tags":{},"startTime":1775659267042,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":12060,"timestamp":6052319134240,"id":4916,"parentId":4804,"tags":{},"startTime":1775659267042,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":12033,"timestamp":6052319134268,"id":4917,"parentId":4805,"tags":{},"startTime":1775659267042,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":12003,"timestamp":6052319134298,"id":4918,"parentId":4806,"tags":{},"startTime":1775659267042,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":11977,"timestamp":6052319134326,"id":4919,"parentId":4807,"tags":{},"startTime":1775659267042,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":11921,"timestamp":6052319134382,"id":4920,"parentId":4808,"tags":{},"startTime":1775659267042,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":11785,"timestamp":6052319134519,"id":4921,"parentId":4809,"tags":{},"startTime":1775659267042,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":11047,"timestamp":6052319135258,"id":4922,"parentId":4810,"tags":{},"startTime":1775659267043,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":10819,"timestamp":6052319135487,"id":4923,"parentId":4811,"tags":{},"startTime":1775659267043,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":10602,"timestamp":6052319135705,"id":4924,"parentId":4812,"tags":{},"startTime":1775659267044,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":10525,"timestamp":6052319135782,"id":4925,"parentId":4813,"tags":{},"startTime":1775659267044,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":10461,"timestamp":6052319135848,"id":4926,"parentId":4814,"tags":{},"startTime":1775659267044,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":10431,"timestamp":6052319135878,"id":4927,"parentId":4815,"tags":{},"startTime":1775659267044,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":10387,"timestamp":6052319135924,"id":4928,"parentId":4816,"tags":{},"startTime":1775659267044,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":10338,"timestamp":6052319135973,"id":4929,"parentId":4817,"tags":{},"startTime":1775659267044,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":10273,"timestamp":6052319136038,"id":4930,"parentId":4818,"tags":{},"startTime":1775659267044,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":10243,"timestamp":6052319136069,"id":4931,"parentId":4819,"tags":{},"startTime":1775659267044,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":10216,"timestamp":6052319136097,"id":4932,"parentId":4820,"tags":{},"startTime":1775659267044,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":10188,"timestamp":6052319136126,"id":4933,"parentId":4821,"tags":{},"startTime":1775659267044,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":10162,"timestamp":6052319136153,"id":4934,"parentId":4822,"tags":{},"startTime":1775659267044,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":10019,"timestamp":6052319136297,"id":4935,"parentId":4823,"tags":{},"startTime":1775659267044,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":9982,"timestamp":6052319136334,"id":4936,"parentId":4824,"tags":{},"startTime":1775659267044,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":9955,"timestamp":6052319136363,"id":4937,"parentId":4825,"tags":{},"startTime":1775659267044,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":9914,"timestamp":6052319136404,"id":4938,"parentId":4826,"tags":{},"startTime":1775659267044,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":9885,"timestamp":6052319136434,"id":4939,"parentId":4827,"tags":{},"startTime":1775659267044,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":9299,"timestamp":6052319137020,"id":4940,"parentId":4828,"tags":{},"startTime":1775659267045,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":9108,"timestamp":6052319137212,"id":4941,"parentId":4829,"tags":{},"startTime":1775659267045,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":9065,"timestamp":6052319137256,"id":4942,"parentId":4830,"tags":{},"startTime":1775659267045,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":9012,"timestamp":6052319137310,"id":4943,"parentId":4831,"tags":{},"startTime":1775659267045,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":8959,"timestamp":6052319137364,"id":4944,"parentId":4832,"tags":{},"startTime":1775659267045,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":8778,"timestamp":6052319137546,"id":4945,"parentId":4833,"tags":{},"startTime":1775659267045,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":8430,"timestamp":6052319137894,"id":4946,"parentId":4834,"tags":{},"startTime":1775659267046,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":8344,"timestamp":6052319137981,"id":4947,"parentId":4835,"tags":{},"startTime":1775659267046,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":8307,"timestamp":6052319138020,"id":4948,"parentId":4836,"tags":{},"startTime":1775659267046,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":8256,"timestamp":6052319138071,"id":4949,"parentId":4837,"tags":{},"startTime":1775659267046,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":8224,"timestamp":6052319138104,"id":4950,"parentId":4838,"tags":{},"startTime":1775659267046,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":8033,"timestamp":6052319138295,"id":4951,"parentId":4839,"tags":{},"startTime":1775659267046,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":8004,"timestamp":6052319138325,"id":4952,"parentId":4840,"tags":{},"startTime":1775659267046,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":7961,"timestamp":6052319138368,"id":4953,"parentId":4841,"tags":{},"startTime":1775659267046,"traceId":"63571fab0751eb1f"}]
-[{"name":"next-swc-loader","duration":7989,"timestamp":6052319138415,"id":4954,"parentId":4842,"tags":{},"startTime":1775659267046,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":7934,"timestamp":6052319138470,"id":4955,"parentId":4843,"tags":{},"startTime":1775659267046,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":7835,"timestamp":6052319138570,"id":4956,"parentId":4844,"tags":{},"startTime":1775659267046,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":7723,"timestamp":6052319138683,"id":4957,"parentId":4845,"tags":{},"startTime":1775659267047,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":7579,"timestamp":6052319138828,"id":4958,"parentId":4846,"tags":{},"startTime":1775659267047,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":7490,"timestamp":6052319138917,"id":4959,"parentId":4847,"tags":{},"startTime":1775659267047,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":20324,"timestamp":6052319127173,"id":4792,"parentId":4205,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sunburst/sunburstLayout.js","layer":"app-pages-browser"},"startTime":1775659267035,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":20504,"timestamp":6052319127308,"id":4793,"parentId":4205,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sunburst/sunburstVisual.js","layer":"app-pages-browser"},"startTime":1775659267035,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":22591,"timestamp":6052319127358,"id":4794,"parentId":4174,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/node_modules/tslib/tslib.es6.js","layer":"app-pages-browser"},"startTime":1775659267035,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":22864,"timestamp":6052319127399,"id":4795,"parentId":4207,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/axisModelCreator.js","layer":"app-pages-browser"},"startTime":1775659267035,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":23331,"timestamp":6052319127439,"id":4796,"parentId":4209,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/layout/barPolar.js","layer":"app-pages-browser"},"startTime":1775659267035,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":23510,"timestamp":6052319127477,"id":4797,"parentId":4205,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sunburst/sunburstAction.js","layer":"app-pages-browser"},"startTime":1775659267035,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":23636,"timestamp":6052319127516,"id":4798,"parentId":4206,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/custom/CustomSeries.js","layer":"app-pages-browser"},"startTime":1775659267035,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":30111,"timestamp":6052319127603,"id":4799,"parentId":4206,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/custom/CustomView.js","layer":"app-pages-browser"},"startTime":1775659267035,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":30365,"timestamp":6052319127716,"id":4800,"parentId":4207,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/cartesian/GridModel.js","layer":"app-pages-browser"},"startTime":1775659267036,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":30541,"timestamp":6052319127767,"id":4801,"parentId":4207,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/cartesian/AxisModel.js","layer":"app-pages-browser"},"startTime":1775659267036,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":31713,"timestamp":6052319127821,"id":4802,"parentId":4207,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/cartesian/Grid.js","layer":"app-pages-browser"},"startTime":1775659267036,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":32369,"timestamp":6052319127861,"id":4803,"parentId":4207,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axis/CartesianAxisView.js","layer":"app-pages-browser"},"startTime":1775659267036,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":32625,"timestamp":6052319127901,"id":4804,"parentId":4209,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axis/AxisView.js","layer":"app-pages-browser"},"startTime":1775659267036,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":33426,"timestamp":6052319127942,"id":4805,"parentId":4209,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/PolarAxisPointer.js","layer":"app-pages-browser"},"startTime":1775659267036,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":33593,"timestamp":6052319127980,"id":4806,"parentId":4209,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/polar/PolarModel.js","layer":"app-pages-browser"},"startTime":1775659267036,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":34206,"timestamp":6052319128018,"id":4807,"parentId":4209,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/polar/AxisModel.js","layer":"app-pages-browser"},"startTime":1775659267036,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":35940,"timestamp":6052319128060,"id":4808,"parentId":4209,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/polar/polarCreator.js","layer":"app-pages-browser"},"startTime":1775659267036,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":45690,"timestamp":6052319128100,"id":4809,"parentId":4209,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axis/AngleAxisView.js","layer":"app-pages-browser"},"startTime":1775659267036,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":47609,"timestamp":6052319128141,"id":4810,"parentId":4209,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axis/RadiusAxisView.js","layer":"app-pages-browser"},"startTime":1775659267036,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":48244,"timestamp":6052319128183,"id":4811,"parentId":4210,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/radar/RadarModel.js","layer":"app-pages-browser"},"startTime":1775659267036,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":49369,"timestamp":6052319128226,"id":4812,"parentId":4210,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/radar/RadarView.js","layer":"app-pages-browser"},"startTime":1775659267036,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":54478,"timestamp":6052319128263,"id":4813,"parentId":4210,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/radar/Radar.js","layer":"app-pages-browser"},"startTime":1775659267036,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":54909,"timestamp":6052319128347,"id":4814,"parentId":4211,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/GeoModel.js","layer":"app-pages-browser"},"startTime":1775659267036,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":55545,"timestamp":6052319128413,"id":4815,"parentId":4211,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/geoCreator.js","layer":"app-pages-browser"},"startTime":1775659267036,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":55799,"timestamp":6052319128458,"id":4816,"parentId":4211,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/geo/GeoView.js","layer":"app-pages-browser"},"startTime":1775659267036,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":56923,"timestamp":6052319128499,"id":4817,"parentId":4220,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/label/labelStyle.js","layer":"app-pages-browser"},"startTime":1775659267036,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":58590,"timestamp":6052319128538,"id":4818,"parentId":4220,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/format.js","layer":"app-pages-browser"},"startTime":1775659267036,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":59667,"timestamp":6052319128574,"id":4819,"parentId":4211,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/geoSourceManager.js","layer":"app-pages-browser"},"startTime":1775659267036,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":63872,"timestamp":6052319128612,"id":4820,"parentId":4212,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axis/SingleAxisView.js","layer":"app-pages-browser"},"startTime":1775659267036,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":65122,"timestamp":6052319128648,"id":4821,"parentId":4212,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/single/AxisModel.js","layer":"app-pages-browser"},"startTime":1775659267037,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":66557,"timestamp":6052319128684,"id":4822,"parentId":4212,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/single/singleCreator.js","layer":"app-pages-browser"},"startTime":1775659267037,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":68265,"timestamp":6052319128720,"id":4823,"parentId":4212,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/SingleAxisPointer.js","layer":"app-pages-browser"},"startTime":1775659267037,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":69312,"timestamp":6052319128849,"id":4824,"parentId":4213,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/parallel/parallelPreprocessor.js","layer":"app-pages-browser"},"startTime":1775659267037,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":71448,"timestamp":6052319128911,"id":4825,"parentId":4213,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/parallel/ParallelView.js","layer":"app-pages-browser"},"startTime":1775659267037,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":72681,"timestamp":6052319128949,"id":4826,"parentId":4213,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/parallel/ParallelModel.js","layer":"app-pages-browser"},"startTime":1775659267037,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":79134,"timestamp":6052319128986,"id":4827,"parentId":4213,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/parallel/parallelCreator.js","layer":"app-pages-browser"},"startTime":1775659267037,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":80280,"timestamp":6052319129023,"id":4828,"parentId":4213,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/parallel/AxisModel.js","layer":"app-pages-browser"},"startTime":1775659267037,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":82668,"timestamp":6052319129060,"id":4829,"parentId":4213,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axis/ParallelAxisView.js","layer":"app-pages-browser"},"startTime":1775659267037,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":83531,"timestamp":6052319129097,"id":4830,"parentId":4213,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axis/parallelAxisAction.js","layer":"app-pages-browser"},"startTime":1775659267037,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":83783,"timestamp":6052319129134,"id":4831,"parentId":4214,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/calendar/CalendarModel.js","layer":"app-pages-browser"},"startTime":1775659267037,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":85108,"timestamp":6052319129171,"id":4832,"parentId":4214,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/calendar/CalendarView.js","layer":"app-pages-browser"},"startTime":1775659267037,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":85984,"timestamp":6052319129208,"id":4833,"parentId":4214,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/calendar/Calendar.js","layer":"app-pages-browser"},"startTime":1775659267037,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":86500,"timestamp":6052319129244,"id":4834,"parentId":4215,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/graphic/GraphicModel.js","layer":"app-pages-browser"},"startTime":1775659267037,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":87255,"timestamp":6052319129280,"id":4835,"parentId":4215,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/graphic/GraphicView.js","layer":"app-pages-browser"},"startTime":1775659267037,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":87298,"timestamp":6052319129315,"id":4836,"parentId":4216,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/installDataZoomSelect.js","layer":"app-pages-browser"},"startTime":1775659267037,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":87391,"timestamp":6052319129351,"id":4837,"parentId":4216,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/toolbox/ToolboxModel.js","layer":"app-pages-browser"},"startTime":1775659267037,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":87916,"timestamp":6052319129385,"id":4838,"parentId":4216,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/toolbox/ToolboxView.js","layer":"app-pages-browser"},"startTime":1775659267037,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":87950,"timestamp":6052319129421,"id":4839,"parentId":4216,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/toolbox/featureManager.js","layer":"app-pages-browser"},"startTime":1775659267037,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":88040,"timestamp":6052319129455,"id":4840,"parentId":4217,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/tooltip/TooltipModel.js","layer":"app-pages-browser"},"startTime":1775659267037,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":89582,"timestamp":6052319129489,"id":4841,"parentId":4217,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/tooltip/TooltipView.js","layer":"app-pages-browser"},"startTime":1775659267037,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":89846,"timestamp":6052319129523,"id":4842,"parentId":4218,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/CartesianAxisPointer.js","layer":"app-pages-browser"},"startTime":1775659267037,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":89919,"timestamp":6052319129559,"id":4843,"parentId":4218,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/AxisPointerModel.js","layer":"app-pages-browser"},"startTime":1775659267037,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":90273,"timestamp":6052319129594,"id":4844,"parentId":4218,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/AxisPointerView.js","layer":"app-pages-browser"},"startTime":1775659267037,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":91226,"timestamp":6052319129628,"id":4845,"parentId":4218,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/modelHelper.js","layer":"app-pages-browser"},"startTime":1775659267037,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":92258,"timestamp":6052319129661,"id":4846,"parentId":4218,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/axisTrigger.js","layer":"app-pages-browser"},"startTime":1775659267038,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":92394,"timestamp":6052319129696,"id":4847,"parentId":4219,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/brush/preprocessor.js","layer":"app-pages-browser"},"startTime":1775659267038,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":325,"timestamp":6052319261960,"id":4992,"parentId":4960,"tags":{},"startTime":1775659267170,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":667,"timestamp":6052319261970,"id":4993,"parentId":4961,"tags":{},"startTime":1775659267170,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":827,"timestamp":6052319261973,"id":4994,"parentId":4962,"tags":{},"startTime":1775659267170,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":924,"timestamp":6052319261976,"id":4995,"parentId":4963,"tags":{},"startTime":1775659267170,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1074,"timestamp":6052319261978,"id":4996,"parentId":4964,"tags":{},"startTime":1775659267170,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1130,"timestamp":6052319261980,"id":4997,"parentId":4965,"tags":{},"startTime":1775659267170,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1188,"timestamp":6052319261982,"id":4998,"parentId":4966,"tags":{},"startTime":1775659267170,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1221,"timestamp":6052319261984,"id":4999,"parentId":4967,"tags":{},"startTime":1775659267170,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1248,"timestamp":6052319261986,"id":5000,"parentId":4968,"tags":{},"startTime":1775659267170,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1279,"timestamp":6052319261988,"id":5001,"parentId":4969,"tags":{},"startTime":1775659267170,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1331,"timestamp":6052319261990,"id":5002,"parentId":4970,"tags":{},"startTime":1775659267170,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1387,"timestamp":6052319261992,"id":5003,"parentId":4971,"tags":{},"startTime":1775659267170,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1434,"timestamp":6052319261994,"id":5004,"parentId":4972,"tags":{},"startTime":1775659267170,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1474,"timestamp":6052319261996,"id":5005,"parentId":4973,"tags":{},"startTime":1775659267170,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1617,"timestamp":6052319261998,"id":5006,"parentId":4974,"tags":{},"startTime":1775659267170,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1657,"timestamp":6052319262000,"id":5007,"parentId":4975,"tags":{},"startTime":1775659267170,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1693,"timestamp":6052319262002,"id":5008,"parentId":4976,"tags":{},"startTime":1775659267170,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1725,"timestamp":6052319262004,"id":5009,"parentId":4977,"tags":{},"startTime":1775659267170,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1748,"timestamp":6052319262006,"id":5010,"parentId":4978,"tags":{},"startTime":1775659267170,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1776,"timestamp":6052319262008,"id":5011,"parentId":4979,"tags":{},"startTime":1775659267170,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1808,"timestamp":6052319262009,"id":5012,"parentId":4980,"tags":{},"startTime":1775659267170,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1835,"timestamp":6052319262011,"id":5013,"parentId":4981,"tags":{},"startTime":1775659267170,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1857,"timestamp":6052319262013,"id":5014,"parentId":4982,"tags":{},"startTime":1775659267170,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1883,"timestamp":6052319262015,"id":5015,"parentId":4983,"tags":{},"startTime":1775659267170,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1920,"timestamp":6052319262017,"id":5016,"parentId":4984,"tags":{},"startTime":1775659267170,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1945,"timestamp":6052319262018,"id":5017,"parentId":4985,"tags":{},"startTime":1775659267170,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1974,"timestamp":6052319262020,"id":5018,"parentId":4986,"tags":{},"startTime":1775659267170,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":2008,"timestamp":6052319262022,"id":5019,"parentId":4987,"tags":{},"startTime":1775659267170,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":2031,"timestamp":6052319262023,"id":5020,"parentId":4988,"tags":{},"startTime":1775659267170,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":2059,"timestamp":6052319262025,"id":5021,"parentId":4989,"tags":{},"startTime":1775659267170,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":2083,"timestamp":6052319262026,"id":5022,"parentId":4990,"tags":{},"startTime":1775659267170,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":2110,"timestamp":6052319262028,"id":5023,"parentId":4991,"tags":{},"startTime":1775659267170,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":10285,"timestamp":6052319262299,"id":5024,"parentId":4960,"tags":{},"startTime":1775659267170,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":9845,"timestamp":6052319262743,"id":5025,"parentId":4961,"tags":{},"startTime":1775659267171,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":9776,"timestamp":6052319262813,"id":5026,"parentId":4962,"tags":{},"startTime":1775659267171,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":9676,"timestamp":6052319262914,"id":5027,"parentId":4963,"tags":{},"startTime":1775659267171,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":9532,"timestamp":6052319263058,"id":5028,"parentId":4964,"tags":{},"startTime":1775659267171,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":9478,"timestamp":6052319263113,"id":5029,"parentId":4965,"tags":{},"startTime":1775659267171,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":9415,"timestamp":6052319263176,"id":5030,"parentId":4966,"tags":{},"startTime":1775659267171,"traceId":"63571fab0751eb1f"}]
-[{"name":"next-swc-loader","duration":9521,"timestamp":6052319263209,"id":5031,"parentId":4967,"tags":{},"startTime":1775659267171,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":9494,"timestamp":6052319263237,"id":5032,"parentId":4968,"tags":{},"startTime":1775659267171,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":9459,"timestamp":6052319263272,"id":5033,"parentId":4969,"tags":{},"startTime":1775659267171,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":9407,"timestamp":6052319263324,"id":5034,"parentId":4970,"tags":{},"startTime":1775659267171,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":9348,"timestamp":6052319263383,"id":5035,"parentId":4971,"tags":{},"startTime":1775659267171,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":9299,"timestamp":6052319263432,"id":5036,"parentId":4972,"tags":{},"startTime":1775659267171,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":9166,"timestamp":6052319263566,"id":5037,"parentId":4973,"tags":{},"startTime":1775659267171,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":9111,"timestamp":6052319263621,"id":5038,"parentId":4974,"tags":{},"startTime":1775659267171,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":9073,"timestamp":6052319263660,"id":5039,"parentId":4975,"tags":{},"startTime":1775659267171,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":9035,"timestamp":6052319263698,"id":5040,"parentId":4976,"tags":{},"startTime":1775659267172,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":9003,"timestamp":6052319263731,"id":5041,"parentId":4977,"tags":{},"startTime":1775659267172,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":8978,"timestamp":6052319263756,"id":5042,"parentId":4978,"tags":{},"startTime":1775659267172,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":8947,"timestamp":6052319263786,"id":5043,"parentId":4979,"tags":{},"startTime":1775659267172,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":8914,"timestamp":6052319263820,"id":5044,"parentId":4980,"tags":{},"startTime":1775659267172,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":8886,"timestamp":6052319263848,"id":5045,"parentId":4981,"tags":{},"startTime":1775659267172,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":8862,"timestamp":6052319263873,"id":5046,"parentId":4982,"tags":{},"startTime":1775659267172,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":8835,"timestamp":6052319263900,"id":5047,"parentId":4983,"tags":{},"startTime":1775659267172,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":8795,"timestamp":6052319263940,"id":5048,"parentId":4984,"tags":{},"startTime":1775659267172,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":8769,"timestamp":6052319263966,"id":5049,"parentId":4985,"tags":{},"startTime":1775659267172,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":8739,"timestamp":6052319263996,"id":5050,"parentId":4986,"tags":{},"startTime":1775659267172,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":8704,"timestamp":6052319264032,"id":5051,"parentId":4987,"tags":{},"startTime":1775659267172,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":8679,"timestamp":6052319264057,"id":5052,"parentId":4988,"tags":{},"startTime":1775659267172,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":8650,"timestamp":6052319264087,"id":5053,"parentId":4989,"tags":{},"startTime":1775659267172,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":8625,"timestamp":6052319264112,"id":5054,"parentId":4990,"tags":{},"startTime":1775659267172,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":8596,"timestamp":6052319264141,"id":5055,"parentId":4991,"tags":{},"startTime":1775659267172,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":12991,"timestamp":6052319260478,"id":4960,"parentId":4219,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/brush/BrushView.js","layer":"app-pages-browser"},"startTime":1775659267168,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":13100,"timestamp":6052319260657,"id":4961,"parentId":4219,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/brush/BrushModel.js","layer":"app-pages-browser"},"startTime":1775659267168,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":13601,"timestamp":6052319260702,"id":4962,"parentId":4219,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/brush/visualEncoding.js","layer":"app-pages-browser"},"startTime":1775659267169,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":13755,"timestamp":6052319260740,"id":4963,"parentId":4221,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/timeline/SliderTimelineModel.js","layer":"app-pages-browser"},"startTime":1775659267169,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":15151,"timestamp":6052319260777,"id":4964,"parentId":4221,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/timeline/SliderTimelineView.js","layer":"app-pages-browser"},"startTime":1775659267169,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":15509,"timestamp":6052319260815,"id":4965,"parentId":4221,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/timeline/timelineAction.js","layer":"app-pages-browser"},"startTime":1775659267169,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":15875,"timestamp":6052319260850,"id":4966,"parentId":4221,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/timeline/preprocessor.js","layer":"app-pages-browser"},"startTime":1775659267169,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":15991,"timestamp":6052319260885,"id":4967,"parentId":4222,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/checkMarkerInSeries.js","layer":"app-pages-browser"},"startTime":1775659267169,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":16170,"timestamp":6052319260920,"id":4968,"parentId":4222,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/MarkPointModel.js","layer":"app-pages-browser"},"startTime":1775659267169,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":16569,"timestamp":6052319260953,"id":4969,"parentId":4222,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/MarkPointView.js","layer":"app-pages-browser"},"startTime":1775659267169,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":16640,"timestamp":6052319260995,"id":4970,"parentId":4223,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/MarkLineModel.js","layer":"app-pages-browser"},"startTime":1775659267169,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":19026,"timestamp":6052319261028,"id":4971,"parentId":4223,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/MarkLineView.js","layer":"app-pages-browser"},"startTime":1775659267169,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":19200,"timestamp":6052319261065,"id":4972,"parentId":4224,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/MarkAreaModel.js","layer":"app-pages-browser"},"startTime":1775659267169,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":19977,"timestamp":6052319261101,"id":4973,"parentId":4224,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/MarkAreaView.js","layer":"app-pages-browser"},"startTime":1775659267169,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":20237,"timestamp":6052319261138,"id":4974,"parentId":4216,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/toolbox/feature/SaveAsImage.js","layer":"app-pages-browser"},"startTime":1775659267169,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":20597,"timestamp":6052319261172,"id":4975,"parentId":4216,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/toolbox/feature/MagicType.js","layer":"app-pages-browser"},"startTime":1775659267169,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":21750,"timestamp":6052319261227,"id":4976,"parentId":4216,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/toolbox/feature/DataView.js","layer":"app-pages-browser"},"startTime":1775659267169,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":21848,"timestamp":6052319261262,"id":4977,"parentId":4216,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/toolbox/feature/Restore.js","layer":"app-pages-browser"},"startTime":1775659267169,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":22217,"timestamp":6052319261296,"id":4978,"parentId":4216,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/toolbox/feature/DataZoom.js","layer":"app-pages-browser"},"startTime":1775659267169,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":22364,"timestamp":6052319261336,"id":4979,"parentId":4219,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/toolbox/feature/Brush.js","layer":"app-pages-browser"},"startTime":1775659267169,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":22725,"timestamp":6052319261376,"id":4980,"parentId":4234,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/visual/aria.js","layer":"app-pages-browser"},"startTime":1775659267169,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":22789,"timestamp":6052319261410,"id":4981,"parentId":4236,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/types.js","layer":"app-pages-browser"},"startTime":1775659267169,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":22924,"timestamp":6052319261443,"id":4982,"parentId":4226,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/legend/ScrollableLegendModel.js","layer":"app-pages-browser"},"startTime":1775659267169,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":23488,"timestamp":6052319261533,"id":4983,"parentId":4226,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/legend/ScrollableLegendView.js","layer":"app-pages-browser"},"startTime":1775659267169,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":23497,"timestamp":6052319261594,"id":4984,"parentId":4226,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/legend/scrollableLegendAction.js","layer":"app-pages-browser"},"startTime":1775659267169,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":23816,"timestamp":6052319261663,"id":4985,"parentId":4227,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/legend/LegendModel.js","layer":"app-pages-browser"},"startTime":1775659267170,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":26541,"timestamp":6052319261713,"id":4986,"parentId":4227,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/legend/LegendView.js","layer":"app-pages-browser"},"startTime":1775659267170,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":27002,"timestamp":6052319261749,"id":4987,"parentId":4227,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/legend/legendFilter.js","layer":"app-pages-browser"},"startTime":1775659267170,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":27232,"timestamp":6052319261785,"id":4988,"parentId":4227,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/legend/legendAction.js","layer":"app-pages-browser"},"startTime":1775659267170,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":27316,"timestamp":6052319261825,"id":4989,"parentId":4229,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/InsideZoomModel.js","layer":"app-pages-browser"},"startTime":1775659267170,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":27792,"timestamp":6052319261862,"id":4990,"parentId":4229,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/InsideZoomView.js","layer":"app-pages-browser"},"startTime":1775659267170,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":28157,"timestamp":6052319261896,"id":4991,"parentId":4229,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/roams.js","layer":"app-pages-browser"},"startTime":1775659267170,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":658,"timestamp":6052319311261,"id":5097,"parentId":5056,"tags":{},"startTime":1775659267219,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":707,"timestamp":6052319311265,"id":5098,"parentId":5057,"tags":{},"startTime":1775659267219,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":728,"timestamp":6052319311275,"id":5099,"parentId":5058,"tags":{},"startTime":1775659267219,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":858,"timestamp":6052319311278,"id":5100,"parentId":5059,"tags":{},"startTime":1775659267219,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":910,"timestamp":6052319311281,"id":5101,"parentId":5060,"tags":{},"startTime":1775659267219,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1044,"timestamp":6052319311283,"id":5102,"parentId":5061,"tags":{},"startTime":1775659267219,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1135,"timestamp":6052319311286,"id":5103,"parentId":5062,"tags":{},"startTime":1775659267219,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1239,"timestamp":6052319311378,"id":5104,"parentId":5063,"tags":{},"startTime":1775659267219,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1271,"timestamp":6052319311383,"id":5105,"parentId":5064,"tags":{},"startTime":1775659267219,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1295,"timestamp":6052319311386,"id":5106,"parentId":5065,"tags":{},"startTime":1775659267219,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1322,"timestamp":6052319311389,"id":5107,"parentId":5066,"tags":{},"startTime":1775659267219,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1351,"timestamp":6052319311391,"id":5108,"parentId":5067,"tags":{},"startTime":1775659267219,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1389,"timestamp":6052319311393,"id":5109,"parentId":5068,"tags":{},"startTime":1775659267219,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1415,"timestamp":6052319311396,"id":5110,"parentId":5069,"tags":{},"startTime":1775659267219,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1438,"timestamp":6052319311398,"id":5111,"parentId":5070,"tags":{},"startTime":1775659267219,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1487,"timestamp":6052319311402,"id":5112,"parentId":5071,"tags":{},"startTime":1775659267219,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1520,"timestamp":6052319311404,"id":5113,"parentId":5072,"tags":{},"startTime":1775659267219,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1547,"timestamp":6052319311406,"id":5114,"parentId":5073,"tags":{},"startTime":1775659267219,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1574,"timestamp":6052319311408,"id":5115,"parentId":5074,"tags":{},"startTime":1775659267219,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1631,"timestamp":6052319311411,"id":5116,"parentId":5075,"tags":{},"startTime":1775659267219,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1663,"timestamp":6052319311414,"id":5117,"parentId":5076,"tags":{},"startTime":1775659267219,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1710,"timestamp":6052319311416,"id":5118,"parentId":5077,"tags":{},"startTime":1775659267219,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1739,"timestamp":6052319311419,"id":5119,"parentId":5078,"tags":{},"startTime":1775659267219,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1774,"timestamp":6052319311421,"id":5120,"parentId":5079,"tags":{},"startTime":1775659267219,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1798,"timestamp":6052319311424,"id":5121,"parentId":5080,"tags":{},"startTime":1775659267219,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1836,"timestamp":6052319311426,"id":5122,"parentId":5081,"tags":{},"startTime":1775659267219,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1860,"timestamp":6052319311429,"id":5123,"parentId":5082,"tags":{},"startTime":1775659267219,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1887,"timestamp":6052319311431,"id":5124,"parentId":5083,"tags":{},"startTime":1775659267219,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1942,"timestamp":6052319311433,"id":5125,"parentId":5084,"tags":{},"startTime":1775659267219,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":2059,"timestamp":6052319311436,"id":5126,"parentId":5085,"tags":{},"startTime":1775659267219,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":2086,"timestamp":6052319311437,"id":5127,"parentId":5086,"tags":{},"startTime":1775659267219,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":2110,"timestamp":6052319311439,"id":5128,"parentId":5087,"tags":{},"startTime":1775659267219,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":2145,"timestamp":6052319311441,"id":5129,"parentId":5088,"tags":{},"startTime":1775659267219,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":2171,"timestamp":6052319311443,"id":5130,"parentId":5089,"tags":{},"startTime":1775659267219,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":2258,"timestamp":6052319311446,"id":5131,"parentId":5090,"tags":{},"startTime":1775659267219,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":2283,"timestamp":6052319311448,"id":5132,"parentId":5091,"tags":{},"startTime":1775659267219,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":2306,"timestamp":6052319311450,"id":5133,"parentId":5092,"tags":{},"startTime":1775659267219,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":2328,"timestamp":6052319311452,"id":5134,"parentId":5093,"tags":{},"startTime":1775659267219,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":2353,"timestamp":6052319311454,"id":5135,"parentId":5094,"tags":{},"startTime":1775659267219,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":2379,"timestamp":6052319311455,"id":5136,"parentId":5095,"tags":{},"startTime":1775659267219,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":2409,"timestamp":6052319311457,"id":5137,"parentId":5096,"tags":{},"startTime":1775659267219,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":8097,"timestamp":6052319311933,"id":5138,"parentId":5056,"tags":{},"startTime":1775659267220,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":8059,"timestamp":6052319311976,"id":5139,"parentId":5057,"tags":{},"startTime":1775659267220,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":8030,"timestamp":6052319312006,"id":5140,"parentId":5058,"tags":{},"startTime":1775659267220,"traceId":"63571fab0751eb1f"}]
-[{"name":"next-swc-loader","duration":8069,"timestamp":6052319312160,"id":5141,"parentId":5059,"tags":{},"startTime":1775659267220,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":8037,"timestamp":6052319312194,"id":5142,"parentId":5060,"tags":{},"startTime":1775659267220,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":7901,"timestamp":6052319312330,"id":5143,"parentId":5061,"tags":{},"startTime":1775659267220,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":7729,"timestamp":6052319312502,"id":5144,"parentId":5062,"tags":{},"startTime":1775659267220,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":7610,"timestamp":6052319312622,"id":5145,"parentId":5063,"tags":{},"startTime":1775659267220,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":7576,"timestamp":6052319312657,"id":5146,"parentId":5064,"tags":{},"startTime":1775659267220,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":7549,"timestamp":6052319312684,"id":5147,"parentId":5065,"tags":{},"startTime":1775659267221,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":7520,"timestamp":6052319312713,"id":5148,"parentId":5066,"tags":{},"startTime":1775659267221,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":7489,"timestamp":6052319312745,"id":5149,"parentId":5067,"tags":{},"startTime":1775659267221,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":7449,"timestamp":6052319312785,"id":5150,"parentId":5068,"tags":{},"startTime":1775659267221,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":7420,"timestamp":6052319312814,"id":5151,"parentId":5069,"tags":{},"startTime":1775659267221,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":7395,"timestamp":6052319312839,"id":5152,"parentId":5070,"tags":{},"startTime":1775659267221,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":7343,"timestamp":6052319312892,"id":5153,"parentId":5071,"tags":{},"startTime":1775659267221,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":7307,"timestamp":6052319312928,"id":5154,"parentId":5072,"tags":{},"startTime":1775659267221,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":7278,"timestamp":6052319312957,"id":5155,"parentId":5073,"tags":{},"startTime":1775659267221,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":7249,"timestamp":6052319312987,"id":5156,"parentId":5074,"tags":{},"startTime":1775659267221,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":7192,"timestamp":6052319313044,"id":5157,"parentId":5075,"tags":{},"startTime":1775659267221,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":7156,"timestamp":6052319313080,"id":5158,"parentId":5076,"tags":{},"startTime":1775659267221,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":7107,"timestamp":6052319313129,"id":5159,"parentId":5077,"tags":{},"startTime":1775659267221,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":7076,"timestamp":6052319313161,"id":5160,"parentId":5078,"tags":{},"startTime":1775659267221,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":7039,"timestamp":6052319313198,"id":5161,"parentId":5079,"tags":{},"startTime":1775659267221,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":7012,"timestamp":6052319313225,"id":5162,"parentId":5080,"tags":{},"startTime":1775659267221,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":6971,"timestamp":6052319313266,"id":5163,"parentId":5081,"tags":{},"startTime":1775659267221,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":6946,"timestamp":6052319313291,"id":5164,"parentId":5082,"tags":{},"startTime":1775659267221,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":6917,"timestamp":6052319313321,"id":5165,"parentId":5083,"tags":{},"startTime":1775659267221,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":6847,"timestamp":6052319313392,"id":5166,"parentId":5084,"tags":{},"startTime":1775659267221,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":6741,"timestamp":6052319313498,"id":5167,"parentId":5085,"tags":{},"startTime":1775659267221,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":6713,"timestamp":6052319313526,"id":5168,"parentId":5086,"tags":{},"startTime":1775659267221,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":6688,"timestamp":6052319313551,"id":5169,"parentId":5087,"tags":{},"startTime":1775659267221,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":6650,"timestamp":6052319313590,"id":5170,"parentId":5088,"tags":{},"startTime":1775659267221,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":6623,"timestamp":6052319313617,"id":5171,"parentId":5089,"tags":{},"startTime":1775659267221,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":6534,"timestamp":6052319313706,"id":5172,"parentId":5090,"tags":{},"startTime":1775659267222,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":6508,"timestamp":6052319313733,"id":5173,"parentId":5091,"tags":{},"startTime":1775659267222,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":6483,"timestamp":6052319313758,"id":5174,"parentId":5092,"tags":{},"startTime":1775659267222,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":6459,"timestamp":6052319313783,"id":5175,"parentId":5093,"tags":{},"startTime":1775659267222,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":6432,"timestamp":6052319313810,"id":5176,"parentId":5094,"tags":{},"startTime":1775659267222,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":6405,"timestamp":6052319313837,"id":5177,"parentId":5095,"tags":{},"startTime":1775659267222,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":6374,"timestamp":6052319313868,"id":5178,"parentId":5096,"tags":{},"startTime":1775659267222,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":11171,"timestamp":6052319309633,"id":5056,"parentId":4229,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/installCommon.js","layer":"app-pages-browser"},"startTime":1775659267217,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":11483,"timestamp":6052319309788,"id":5057,"parentId":4230,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/SliderZoomModel.js","layer":"app-pages-browser"},"startTime":1775659267218,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":13480,"timestamp":6052319309835,"id":5058,"parentId":4230,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/SliderZoomView.js","layer":"app-pages-browser"},"startTime":1775659267218,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":13919,"timestamp":6052319309875,"id":5059,"parentId":4232,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/ContinuousModel.js","layer":"app-pages-browser"},"startTime":1775659267218,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":15593,"timestamp":6052319309911,"id":5060,"parentId":4232,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/ContinuousView.js","layer":"app-pages-browser"},"startTime":1775659267218,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":15804,"timestamp":6052319309947,"id":5061,"parentId":4232,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/installCommon.js","layer":"app-pages-browser"},"startTime":1775659267218,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":16797,"timestamp":6052319309983,"id":5062,"parentId":4233,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/PiecewiseModel.js","layer":"app-pages-browser"},"startTime":1775659267218,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":17191,"timestamp":6052319310018,"id":5063,"parentId":4233,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/PiecewiseView.js","layer":"app-pages-browser"},"startTime":1775659267218,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":17256,"timestamp":6052319310053,"id":5064,"parentId":4234,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/aria/preprocessor.js","layer":"app-pages-browser"},"startTime":1775659267218,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":17379,"timestamp":6052319310087,"id":5065,"parentId":4235,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/transform/filterTransform.js","layer":"app-pages-browser"},"startTime":1775659267218,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":17789,"timestamp":6052319310122,"id":5066,"parentId":4235,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/transform/sortTransform.js","layer":"app-pages-browser"},"startTime":1775659267218,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":18909,"timestamp":6052319310162,"id":5067,"parentId":4363,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/Handler.js","layer":"app-pages-browser"},"startTime":1775659267218,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":19332,"timestamp":6052319310198,"id":5068,"parentId":4363,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/Storage.js","layer":"app-pages-browser"},"startTime":1775659267218,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":19487,"timestamp":6052319310234,"id":5069,"parentId":4363,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/config.js","layer":"app-pages-browser"},"startTime":1775659267218,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":19721,"timestamp":6052319310266,"id":5070,"parentId":4363,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/animation/Animation.js","layer":"app-pages-browser"},"startTime":1775659267218,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":20262,"timestamp":6052319310303,"id":5071,"parentId":4363,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/dom/HandlerProxy.js","layer":"app-pages-browser"},"startTime":1775659267218,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":20379,"timestamp":6052319310343,"id":5072,"parentId":4365,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/globalDefault.js","layer":"app-pages-browser"},"startTime":1775659267218,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":20480,"timestamp":6052319310376,"id":5073,"parentId":4365,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/internalComponentCreator.js","layer":"app-pages-browser"},"startTime":1775659267218,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":22421,"timestamp":6052319310410,"id":5074,"parentId":4370,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/number.js","layer":"app-pages-browser"},"startTime":1775659267218,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":23192,"timestamp":6052319310443,"id":5075,"parentId":4365,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/helper/sourceHelper.js","layer":"app-pages-browser"},"startTime":1775659267218,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":23952,"timestamp":6052319310477,"id":5076,"parentId":4369,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/preprocessor/helper/compatStyle.js","layer":"app-pages-browser"},"startTime":1775659267218,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":24931,"timestamp":6052319310510,"id":5077,"parentId":4371,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/tool/path.js","layer":"app-pages-browser"},"startTime":1775659267218,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":25466,"timestamp":6052319310542,"id":5078,"parentId":4371,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/Transformable.js","layer":"app-pages-browser"},"startTime":1775659267218,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":25662,"timestamp":6052319310574,"id":5079,"parentId":4371,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/Image.js","layer":"app-pages-browser"},"startTime":1775659267218,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":27525,"timestamp":6052319310607,"id":5080,"parentId":4371,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/Text.js","layer":"app-pages-browser"},"startTime":1775659267218,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":28093,"timestamp":6052319310639,"id":5081,"parentId":4371,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/CompoundPath.js","layer":"app-pages-browser"},"startTime":1775659267218,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":28302,"timestamp":6052319310670,"id":5082,"parentId":4371,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/LinearGradient.js","layer":"app-pages-browser"},"startTime":1775659267219,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":28719,"timestamp":6052319310703,"id":5083,"parentId":4371,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/RadialGradient.js","layer":"app-pages-browser"},"startTime":1775659267219,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":29197,"timestamp":6052319310743,"id":5084,"parentId":4371,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/BoundingRect.js","layer":"app-pages-browser"},"startTime":1775659267219,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":29462,"timestamp":6052319310774,"id":5085,"parentId":4371,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/OrientedBoundingRect.js","layer":"app-pages-browser"},"startTime":1775659267219,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":29840,"timestamp":6052319310807,"id":5086,"parentId":4371,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/Point.js","layer":"app-pages-browser"},"startTime":1775659267219,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":30171,"timestamp":6052319310842,"id":5087,"parentId":4371,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/IncrementalDisplayable.js","layer":"app-pages-browser"},"startTime":1775659267219,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":30263,"timestamp":6052319310875,"id":5088,"parentId":4371,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/shape/Circle.js","layer":"app-pages-browser"},"startTime":1775659267219,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":30367,"timestamp":6052319310908,"id":5089,"parentId":4371,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/shape/Ellipse.js","layer":"app-pages-browser"},"startTime":1775659267219,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":30450,"timestamp":6052319310939,"id":5090,"parentId":4371,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/shape/Sector.js","layer":"app-pages-browser"},"startTime":1775659267219,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":30519,"timestamp":6052319310970,"id":5091,"parentId":4371,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/shape/Ring.js","layer":"app-pages-browser"},"startTime":1775659267219,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":30549,"timestamp":6052319311034,"id":5092,"parentId":4371,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/shape/Polygon.js","layer":"app-pages-browser"},"startTime":1775659267219,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":30610,"timestamp":6052319311067,"id":5093,"parentId":4371,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/shape/Polyline.js","layer":"app-pages-browser"},"startTime":1775659267219,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":30725,"timestamp":6052319311098,"id":5094,"parentId":4371,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/shape/Rect.js","layer":"app-pages-browser"},"startTime":1775659267219,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":30838,"timestamp":6052319311129,"id":5095,"parentId":4371,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/shape/Line.js","layer":"app-pages-browser"},"startTime":1775659267219,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":31045,"timestamp":6052319311164,"id":5096,"parentId":4371,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/shape/BezierCurve.js","layer":"app-pages-browser"},"startTime":1775659267219,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":272,"timestamp":6052319366732,"id":5235,"parentId":5179,"tags":{},"startTime":1775659267275,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":304,"timestamp":6052319366740,"id":5236,"parentId":5180,"tags":{},"startTime":1775659267275,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":327,"timestamp":6052319366744,"id":5237,"parentId":5181,"tags":{},"startTime":1775659267275,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":348,"timestamp":6052319366748,"id":5238,"parentId":5182,"tags":{},"startTime":1775659267275,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":379,"timestamp":6052319366751,"id":5239,"parentId":5183,"tags":{},"startTime":1775659267275,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":419,"timestamp":6052319366754,"id":5240,"parentId":5184,"tags":{},"startTime":1775659267275,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":442,"timestamp":6052319366757,"id":5241,"parentId":5185,"tags":{},"startTime":1775659267275,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":463,"timestamp":6052319366761,"id":5242,"parentId":5186,"tags":{},"startTime":1775659267275,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":482,"timestamp":6052319366765,"id":5243,"parentId":5187,"tags":{},"startTime":1775659267275,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":526,"timestamp":6052319366768,"id":5244,"parentId":5188,"tags":{},"startTime":1775659267275,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":549,"timestamp":6052319366771,"id":5245,"parentId":5189,"tags":{},"startTime":1775659267275,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":589,"timestamp":6052319366775,"id":5246,"parentId":5190,"tags":{},"startTime":1775659267275,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":642,"timestamp":6052319366777,"id":5247,"parentId":5191,"tags":{},"startTime":1775659267275,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":671,"timestamp":6052319366780,"id":5248,"parentId":5192,"tags":{},"startTime":1775659267275,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":731,"timestamp":6052319366783,"id":5249,"parentId":5193,"tags":{},"startTime":1775659267275,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":758,"timestamp":6052319366786,"id":5250,"parentId":5194,"tags":{},"startTime":1775659267275,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":785,"timestamp":6052319366788,"id":5251,"parentId":5195,"tags":{},"startTime":1775659267275,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":902,"timestamp":6052319366791,"id":5252,"parentId":5196,"tags":{},"startTime":1775659267275,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":927,"timestamp":6052319366794,"id":5253,"parentId":5197,"tags":{},"startTime":1775659267275,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":950,"timestamp":6052319366797,"id":5254,"parentId":5198,"tags":{},"startTime":1775659267275,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":970,"timestamp":6052319366800,"id":5255,"parentId":5199,"tags":{},"startTime":1775659267275,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":990,"timestamp":6052319366803,"id":5256,"parentId":5200,"tags":{},"startTime":1775659267275,"traceId":"63571fab0751eb1f"}]
-[{"name":"read-resource","duration":1156,"timestamp":6052319366806,"id":5257,"parentId":5201,"tags":{},"startTime":1775659267275,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1181,"timestamp":6052319366809,"id":5258,"parentId":5202,"tags":{},"startTime":1775659267275,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1207,"timestamp":6052319366811,"id":5259,"parentId":5203,"tags":{},"startTime":1775659267275,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1232,"timestamp":6052319366813,"id":5260,"parentId":5204,"tags":{},"startTime":1775659267275,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1264,"timestamp":6052319366815,"id":5261,"parentId":5205,"tags":{},"startTime":1775659267275,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1290,"timestamp":6052319366817,"id":5262,"parentId":5206,"tags":{},"startTime":1775659267275,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1317,"timestamp":6052319366819,"id":5263,"parentId":5207,"tags":{},"startTime":1775659267275,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1345,"timestamp":6052319366821,"id":5264,"parentId":5208,"tags":{},"startTime":1775659267275,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1367,"timestamp":6052319366823,"id":5265,"parentId":5209,"tags":{},"startTime":1775659267275,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1389,"timestamp":6052319366825,"id":5266,"parentId":5210,"tags":{},"startTime":1775659267275,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1425,"timestamp":6052319366827,"id":5267,"parentId":5211,"tags":{},"startTime":1775659267275,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1452,"timestamp":6052319366829,"id":5268,"parentId":5212,"tags":{},"startTime":1775659267275,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1478,"timestamp":6052319366831,"id":5269,"parentId":5213,"tags":{},"startTime":1775659267275,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1499,"timestamp":6052319366834,"id":5270,"parentId":5214,"tags":{},"startTime":1775659267275,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1524,"timestamp":6052319366837,"id":5271,"parentId":5215,"tags":{},"startTime":1775659267275,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1553,"timestamp":6052319366839,"id":5272,"parentId":5216,"tags":{},"startTime":1775659267275,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1578,"timestamp":6052319366841,"id":5273,"parentId":5217,"tags":{},"startTime":1775659267275,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1603,"timestamp":6052319366843,"id":5274,"parentId":5218,"tags":{},"startTime":1775659267275,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1631,"timestamp":6052319366845,"id":5275,"parentId":5219,"tags":{},"startTime":1775659267275,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1656,"timestamp":6052319366847,"id":5276,"parentId":5220,"tags":{},"startTime":1775659267275,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1677,"timestamp":6052319366849,"id":5277,"parentId":5221,"tags":{},"startTime":1775659267275,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1701,"timestamp":6052319366851,"id":5278,"parentId":5222,"tags":{},"startTime":1775659267275,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1724,"timestamp":6052319366853,"id":5279,"parentId":5223,"tags":{},"startTime":1775659267275,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1752,"timestamp":6052319366855,"id":5280,"parentId":5224,"tags":{},"startTime":1775659267275,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1787,"timestamp":6052319366857,"id":5281,"parentId":5225,"tags":{},"startTime":1775659267275,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1815,"timestamp":6052319366859,"id":5282,"parentId":5226,"tags":{},"startTime":1775659267275,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1843,"timestamp":6052319366861,"id":5283,"parentId":5227,"tags":{},"startTime":1775659267275,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1870,"timestamp":6052319366862,"id":5284,"parentId":5228,"tags":{},"startTime":1775659267275,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1897,"timestamp":6052319366864,"id":5285,"parentId":5229,"tags":{},"startTime":1775659267275,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1922,"timestamp":6052319366865,"id":5286,"parentId":5230,"tags":{},"startTime":1775659267275,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1943,"timestamp":6052319366867,"id":5287,"parentId":5231,"tags":{},"startTime":1775659267275,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1972,"timestamp":6052319366869,"id":5288,"parentId":5232,"tags":{},"startTime":1775659267275,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1994,"timestamp":6052319366871,"id":5289,"parentId":5233,"tags":{},"startTime":1775659267275,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":2017,"timestamp":6052319366872,"id":5290,"parentId":5234,"tags":{},"startTime":1775659267275,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":5553,"timestamp":6052319367014,"id":5291,"parentId":5179,"tags":{},"startTime":1775659267275,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":5524,"timestamp":6052319367047,"id":5292,"parentId":5180,"tags":{},"startTime":1775659267275,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":5499,"timestamp":6052319367073,"id":5293,"parentId":5181,"tags":{},"startTime":1775659267275,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":5475,"timestamp":6052319367098,"id":5294,"parentId":5182,"tags":{},"startTime":1775659267275,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":5441,"timestamp":6052319367133,"id":5295,"parentId":5183,"tags":{},"startTime":1775659267275,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":5399,"timestamp":6052319367176,"id":5296,"parentId":5184,"tags":{},"startTime":1775659267275,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":5374,"timestamp":6052319367202,"id":5297,"parentId":5185,"tags":{},"startTime":1775659267275,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":5350,"timestamp":6052319367226,"id":5298,"parentId":5186,"tags":{},"startTime":1775659267275,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":5328,"timestamp":6052319367249,"id":5299,"parentId":5187,"tags":{},"startTime":1775659267275,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":5281,"timestamp":6052319367297,"id":5300,"parentId":5188,"tags":{},"startTime":1775659267275,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":5256,"timestamp":6052319367323,"id":5301,"parentId":5189,"tags":{},"startTime":1775659267275,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":5213,"timestamp":6052319367366,"id":5302,"parentId":5190,"tags":{},"startTime":1775659267275,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":5159,"timestamp":6052319367421,"id":5303,"parentId":5191,"tags":{},"startTime":1775659267275,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":5128,"timestamp":6052319367453,"id":5304,"parentId":5192,"tags":{},"startTime":1775659267275,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":5066,"timestamp":6052319367515,"id":5305,"parentId":5193,"tags":{},"startTime":1775659267275,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":5037,"timestamp":6052319367545,"id":5306,"parentId":5194,"tags":{},"startTime":1775659267275,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":4967,"timestamp":6052319367616,"id":5307,"parentId":5195,"tags":{},"startTime":1775659267275,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":4885,"timestamp":6052319367698,"id":5308,"parentId":5196,"tags":{},"startTime":1775659267276,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":4861,"timestamp":6052319367724,"id":5309,"parentId":5197,"tags":{},"startTime":1775659267276,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":4836,"timestamp":6052319367750,"id":5310,"parentId":5198,"tags":{},"startTime":1775659267276,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":4813,"timestamp":6052319367773,"id":5311,"parentId":5199,"tags":{},"startTime":1775659267276,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":4667,"timestamp":6052319367921,"id":5312,"parentId":5200,"tags":{},"startTime":1775659267276,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":4623,"timestamp":6052319367965,"id":5313,"parentId":5201,"tags":{},"startTime":1775659267276,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":4597,"timestamp":6052319367992,"id":5314,"parentId":5202,"tags":{},"startTime":1775659267276,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":4569,"timestamp":6052319368020,"id":5315,"parentId":5203,"tags":{},"startTime":1775659267276,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":4543,"timestamp":6052319368047,"id":5316,"parentId":5204,"tags":{},"startTime":1775659267276,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":4509,"timestamp":6052319368082,"id":5317,"parentId":5205,"tags":{},"startTime":1775659267276,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":4482,"timestamp":6052319368110,"id":5318,"parentId":5206,"tags":{},"startTime":1775659267276,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":4453,"timestamp":6052319368139,"id":5319,"parentId":5207,"tags":{},"startTime":1775659267276,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":4425,"timestamp":6052319368168,"id":5320,"parentId":5208,"tags":{},"startTime":1775659267276,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":4401,"timestamp":6052319368192,"id":5321,"parentId":5209,"tags":{},"startTime":1775659267276,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":4378,"timestamp":6052319368217,"id":5322,"parentId":5210,"tags":{},"startTime":1775659267276,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":4341,"timestamp":6052319368255,"id":5323,"parentId":5211,"tags":{},"startTime":1775659267276,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":4313,"timestamp":6052319368283,"id":5324,"parentId":5212,"tags":{},"startTime":1775659267276,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":4286,"timestamp":6052319368311,"id":5325,"parentId":5213,"tags":{},"startTime":1775659267276,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":4263,"timestamp":6052319368334,"id":5326,"parentId":5214,"tags":{},"startTime":1775659267276,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":4235,"timestamp":6052319368363,"id":5327,"parentId":5215,"tags":{},"startTime":1775659267276,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":4205,"timestamp":6052319368394,"id":5328,"parentId":5216,"tags":{},"startTime":1775659267276,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":4179,"timestamp":6052319368421,"id":5329,"parentId":5217,"tags":{},"startTime":1775659267276,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":4153,"timestamp":6052319368448,"id":5330,"parentId":5218,"tags":{},"startTime":1775659267276,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":4122,"timestamp":6052319368478,"id":5331,"parentId":5219,"tags":{},"startTime":1775659267276,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":4096,"timestamp":6052319368506,"id":5332,"parentId":5220,"tags":{},"startTime":1775659267276,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":4074,"timestamp":6052319368528,"id":5333,"parentId":5221,"tags":{},"startTime":1775659267276,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":4049,"timestamp":6052319368554,"id":5334,"parentId":5222,"tags":{},"startTime":1775659267276,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":4025,"timestamp":6052319368578,"id":5335,"parentId":5223,"tags":{},"startTime":1775659267276,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":3995,"timestamp":6052319368609,"id":5336,"parentId":5224,"tags":{},"startTime":1775659267276,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":3959,"timestamp":6052319368646,"id":5337,"parentId":5225,"tags":{},"startTime":1775659267276,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":3931,"timestamp":6052319368675,"id":5338,"parentId":5226,"tags":{},"startTime":1775659267276,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":3901,"timestamp":6052319368706,"id":5339,"parentId":5227,"tags":{},"startTime":1775659267277,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":3873,"timestamp":6052319368735,"id":5340,"parentId":5228,"tags":{},"startTime":1775659267277,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":3846,"timestamp":6052319368762,"id":5341,"parentId":5229,"tags":{},"startTime":1775659267277,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":3820,"timestamp":6052319368789,"id":5342,"parentId":5230,"tags":{},"startTime":1775659267277,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":3797,"timestamp":6052319368812,"id":5343,"parentId":5231,"tags":{},"startTime":1775659267277,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":3767,"timestamp":6052319368843,"id":5344,"parentId":5232,"tags":{},"startTime":1775659267277,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":3743,"timestamp":6052319368867,"id":5345,"parentId":5233,"tags":{},"startTime":1775659267277,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":3717,"timestamp":6052319368894,"id":5346,"parentId":5234,"tags":{},"startTime":1775659267277,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":8953,"timestamp":6052319364068,"id":5179,"parentId":4371,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/shape/Arc.js","layer":"app-pages-browser"},"startTime":1775659267272,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":9026,"timestamp":6052319364180,"id":5180,"parentId":4371,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/helper/subPixelOptimize.js","layer":"app-pages-browser"},"startTime":1775659267272,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":9093,"timestamp":6052319364234,"id":5181,"parentId":4413,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/i18n/langEN.js","layer":"app-pages-browser"},"startTime":1775659267272,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":9158,"timestamp":6052319364305,"id":5182,"parentId":4413,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/i18n/langZH.js","layer":"app-pages-browser"},"startTime":1775659267272,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":9724,"timestamp":6052319364395,"id":5183,"parentId":4415,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/decal.js","layer":"app-pages-browser"},"startTime":1775659267272,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":10522,"timestamp":6052319364506,"id":5184,"parentId":4402,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/mixin/makeStyleMapper.js","layer":"app-pages-browser"},"startTime":1775659267272,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":10752,"timestamp":6052319364585,"id":5185,"parentId":4402,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/mixin/itemStyle.js","layer":"app-pages-browser"},"startTime":1775659267272,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":10826,"timestamp":6052319364676,"id":5186,"parentId":4402,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/mixin/lineStyle.js","layer":"app-pages-browser"},"startTime":1775659267272,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":12980,"timestamp":6052319364764,"id":5187,"parentId":4473,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/Element.js","layer":"app-pages-browser"},"startTime":1775659267273,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":13064,"timestamp":6052319364805,"id":5188,"parentId":4453,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/SeriesDimensionDefine.js","layer":"app-pages-browser"},"startTime":1775659267273,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":14294,"timestamp":6052319364843,"id":5189,"parentId":4453,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/Source.js","layer":"app-pages-browser"},"startTime":1775659267273,"traceId":"63571fab0751eb1f"}]
-[{"name":"build-module-js","duration":16156,"timestamp":6052319364878,"id":5190,"parentId":4453,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/DataStore.js","layer":"app-pages-browser"},"startTime":1775659267273,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":16761,"timestamp":6052319364913,"id":5191,"parentId":4454,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/axisTickLabelBuilder.js","layer":"app-pages-browser"},"startTime":1775659267273,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":18146,"timestamp":6052319364953,"id":5192,"parentId":4455,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/label/labelGuideHelper.js","layer":"app-pages-browser"},"startTime":1775659267273,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":18771,"timestamp":6052319364992,"id":5193,"parentId":4455,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/label/labelLayoutHelper.js","layer":"app-pages-browser"},"startTime":1775659267273,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":19006,"timestamp":6052319365029,"id":5194,"parentId":4476,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/LRU.js","layer":"app-pages-browser"},"startTime":1775659267273,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":20332,"timestamp":6052319365070,"id":5195,"parentId":4477,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/PathProxy.js","layer":"app-pages-browser"},"startTime":1775659267273,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":20583,"timestamp":6052319365108,"id":5196,"parentId":4477,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/canvas/helper.js","layer":"app-pages-browser"},"startTime":1775659267273,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":21635,"timestamp":6052319365143,"id":5197,"parentId":4477,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/TSpan.js","layer":"app-pages-browser"},"startTime":1775659267273,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":21671,"timestamp":6052319365220,"id":5198,"parentId":4477,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/canvas/dashStyle.js","layer":"app-pages-browser"},"startTime":1775659267273,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":21635,"timestamp":6052319365301,"id":5199,"parentId":4477,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/constants.js","layer":"app-pages-browser"},"startTime":1775659267273,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":23305,"timestamp":6052319365346,"id":5200,"parentId":4478,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/graphic.js","layer":"app-pages-browser"},"startTime":1775659267273,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":23649,"timestamp":6052319365389,"id":5201,"parentId":4478,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/core.js","layer":"app-pages-browser"},"startTime":1775659267273,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":24192,"timestamp":6052319365455,"id":5202,"parentId":4478,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/helper.js","layer":"app-pages-browser"},"startTime":1775659267273,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":24718,"timestamp":6052319365514,"id":5203,"parentId":4478,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/patch.js","layer":"app-pages-browser"},"startTime":1775659267273,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":25275,"timestamp":6052319365560,"id":5204,"parentId":4462,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/axisHelper.js","layer":"app-pages-browser"},"startTime":1775659267273,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":25333,"timestamp":6052319365595,"id":5205,"parentId":4462,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/axisModelCommonMixin.js","layer":"app-pages-browser"},"startTime":1775659267273,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":25893,"timestamp":6052319365631,"id":5206,"parentId":4462,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/symbol.js","layer":"app-pages-browser"},"startTime":1775659267273,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":26478,"timestamp":6052319365665,"id":5207,"parentId":4465,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/time.js","layer":"app-pages-browser"},"startTime":1775659267273,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":26531,"timestamp":6052319365698,"id":5208,"parentId":4451,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/mixin/areaStyle.js","layer":"app-pages-browser"},"startTime":1775659267274,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":26633,"timestamp":6052319365738,"id":5209,"parentId":4451,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/mixin/textStyle.js","layer":"app-pages-browser"},"startTime":1775659267274,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":27694,"timestamp":6052319365774,"id":5210,"parentId":4453,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/helper/dataProvider.js","layer":"app-pages-browser"},"startTime":1775659267274,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":27945,"timestamp":6052319365812,"id":5211,"parentId":4453,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/helper/dimensionHelper.js","layer":"app-pages-browser"},"startTime":1775659267274,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":28271,"timestamp":6052319365847,"id":5212,"parentId":4453,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/helper/SeriesDataSchema.js","layer":"app-pages-browser"},"startTime":1775659267274,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":28370,"timestamp":6052319365914,"id":5213,"parentId":4477,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/helper/image.js","layer":"app-pages-browser"},"startTime":1775659267274,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":28644,"timestamp":6052319365952,"id":5214,"parentId":4456,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/helper/dataValueHelper.js","layer":"app-pages-browser"},"startTime":1775659267274,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":29739,"timestamp":6052319365989,"id":5215,"parentId":4461,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/tooltip/tooltipMarkup.js","layer":"app-pages-browser"},"startTime":1775659267274,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":30289,"timestamp":6052319366024,"id":5216,"parentId":4462,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/createSeriesData.js","layer":"app-pages-browser"},"startTime":1775659267274,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":30573,"timestamp":6052319366059,"id":5217,"parentId":4462,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/helper/dataStackHelper.js","layer":"app-pages-browser"},"startTime":1775659267274,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":31058,"timestamp":6052319366093,"id":5218,"parentId":4462,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/helper/createDimensions.js","layer":"app-pages-browser"},"startTime":1775659267274,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":31533,"timestamp":6052319366128,"id":5219,"parentId":4463,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/Region.js","layer":"app-pages-browser"},"startTime":1775659267274,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":31554,"timestamp":6052319366161,"id":5220,"parentId":4455,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/contain/util.js","layer":"app-pages-browser"},"startTime":1775659267274,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":31592,"timestamp":6052319366192,"id":5221,"parentId":4482,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/vendor.js","layer":"app-pages-browser"},"startTime":1775659267274,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":31606,"timestamp":6052319366224,"id":5222,"parentId":4488,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/CoordinateSystem.js","layer":"app-pages-browser"},"startTime":1775659267274,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":31884,"timestamp":6052319366257,"id":5223,"parentId":4490,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/label/sectorLabel.js","layer":"app-pages-browser"},"startTime":1775659267274,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":32188,"timestamp":6052319366289,"id":5224,"parentId":4488,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/SymbolDraw.js","layer":"app-pages-browser"},"startTime":1775659267274,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":32775,"timestamp":6052319366321,"id":5225,"parentId":4488,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/Symbol.js","layer":"app-pages-browser"},"startTime":1775659267274,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":33974,"timestamp":6052319366352,"id":5226,"parentId":4488,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/line/lineAnimationDiff.js","layer":"app-pages-browser"},"startTime":1775659267274,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":34787,"timestamp":6052319366385,"id":5227,"parentId":4488,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/line/poly.js","layer":"app-pages-browser"},"startTime":1775659267274,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":35061,"timestamp":6052319366420,"id":5228,"parentId":4488,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/line/helper.js","layer":"app-pages-browser"},"startTime":1775659267274,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":35239,"timestamp":6052319366454,"id":5229,"parentId":4488,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/createClipPathFromCoordSys.js","layer":"app-pages-browser"},"startTime":1775659267274,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":35332,"timestamp":6052319366488,"id":5230,"parentId":4488,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/labelHelper.js","layer":"app-pages-browser"},"startTime":1775659267274,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":35507,"timestamp":6052319366543,"id":5231,"parentId":4489,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/bar/BaseBarSeries.js","layer":"app-pages-browser"},"startTime":1775659267274,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":35656,"timestamp":6052319366579,"id":5232,"parentId":4490,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/shape/sausage.js","layer":"app-pages-browser"},"startTime":1775659267274,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":35693,"timestamp":6052319366627,"id":5233,"parentId":4490,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/sectorHelper.js","layer":"app-pages-browser"},"startTime":1775659267274,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":37464,"timestamp":6052319366670,"id":5234,"parentId":4479,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/tool/morphPath.js","layer":"app-pages-browser"},"startTime":1775659267274,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1650,"timestamp":6052319432869,"id":5423,"parentId":5347,"tags":{},"startTime":1775659267341,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1696,"timestamp":6052319432875,"id":5424,"parentId":5348,"tags":{},"startTime":1775659267341,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1728,"timestamp":6052319432879,"id":5425,"parentId":5349,"tags":{},"startTime":1775659267341,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1753,"timestamp":6052319432881,"id":5426,"parentId":5350,"tags":{},"startTime":1775659267341,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1791,"timestamp":6052319432884,"id":5427,"parentId":5351,"tags":{},"startTime":1775659267341,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1830,"timestamp":6052319432887,"id":5428,"parentId":5352,"tags":{},"startTime":1775659267341,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1857,"timestamp":6052319432890,"id":5429,"parentId":5353,"tags":{},"startTime":1775659267341,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1877,"timestamp":6052319432892,"id":5430,"parentId":5354,"tags":{},"startTime":1775659267341,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1903,"timestamp":6052319432895,"id":5431,"parentId":5355,"tags":{},"startTime":1775659267341,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1932,"timestamp":6052319432897,"id":5432,"parentId":5356,"tags":{},"startTime":1775659267341,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1954,"timestamp":6052319432900,"id":5433,"parentId":5357,"tags":{},"startTime":1775659267341,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":2004,"timestamp":6052319432902,"id":5434,"parentId":5358,"tags":{},"startTime":1775659267341,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":2040,"timestamp":6052319432905,"id":5435,"parentId":5359,"tags":{},"startTime":1775659267341,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":2080,"timestamp":6052319432908,"id":5436,"parentId":5360,"tags":{},"startTime":1775659267341,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":2107,"timestamp":6052319432910,"id":5437,"parentId":5361,"tags":{},"startTime":1775659267341,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":2129,"timestamp":6052319432912,"id":5438,"parentId":5362,"tags":{},"startTime":1775659267341,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":2158,"timestamp":6052319432914,"id":5439,"parentId":5363,"tags":{},"startTime":1775659267341,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":2181,"timestamp":6052319432917,"id":5440,"parentId":5364,"tags":{},"startTime":1775659267341,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":2205,"timestamp":6052319432920,"id":5441,"parentId":5365,"tags":{},"startTime":1775659267341,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":2230,"timestamp":6052319432922,"id":5442,"parentId":5366,"tags":{},"startTime":1775659267341,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":2263,"timestamp":6052319432924,"id":5443,"parentId":5367,"tags":{},"startTime":1775659267341,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":2297,"timestamp":6052319432927,"id":5444,"parentId":5368,"tags":{},"startTime":1775659267341,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":2319,"timestamp":6052319432929,"id":5445,"parentId":5369,"tags":{},"startTime":1775659267341,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":2345,"timestamp":6052319432931,"id":5446,"parentId":5370,"tags":{},"startTime":1775659267341,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":2373,"timestamp":6052319432933,"id":5447,"parentId":5371,"tags":{},"startTime":1775659267341,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":2403,"timestamp":6052319432935,"id":5448,"parentId":5372,"tags":{},"startTime":1775659267341,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":2430,"timestamp":6052319432937,"id":5449,"parentId":5373,"tags":{},"startTime":1775659267341,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":2460,"timestamp":6052319432939,"id":5450,"parentId":5374,"tags":{},"startTime":1775659267341,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":2481,"timestamp":6052319432941,"id":5451,"parentId":5375,"tags":{},"startTime":1775659267341,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":2505,"timestamp":6052319432943,"id":5452,"parentId":5376,"tags":{},"startTime":1775659267341,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":2528,"timestamp":6052319432945,"id":5453,"parentId":5377,"tags":{},"startTime":1775659267341,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":2559,"timestamp":6052319432947,"id":5454,"parentId":5378,"tags":{},"startTime":1775659267341,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":2583,"timestamp":6052319432949,"id":5455,"parentId":5379,"tags":{},"startTime":1775659267341,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":2615,"timestamp":6052319432951,"id":5456,"parentId":5380,"tags":{},"startTime":1775659267341,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":2640,"timestamp":6052319432952,"id":5457,"parentId":5381,"tags":{},"startTime":1775659267341,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":2671,"timestamp":6052319432954,"id":5458,"parentId":5382,"tags":{},"startTime":1775659267341,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":2693,"timestamp":6052319432956,"id":5459,"parentId":5383,"tags":{},"startTime":1775659267341,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":2717,"timestamp":6052319432958,"id":5460,"parentId":5384,"tags":{},"startTime":1775659267341,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":2751,"timestamp":6052319432961,"id":5461,"parentId":5385,"tags":{},"startTime":1775659267341,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":2775,"timestamp":6052319432963,"id":5462,"parentId":5386,"tags":{},"startTime":1775659267341,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":2804,"timestamp":6052319432965,"id":5463,"parentId":5387,"tags":{},"startTime":1775659267341,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":2834,"timestamp":6052319432966,"id":5464,"parentId":5388,"tags":{},"startTime":1775659267341,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":2857,"timestamp":6052319432968,"id":5465,"parentId":5389,"tags":{},"startTime":1775659267341,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":2879,"timestamp":6052319432970,"id":5466,"parentId":5390,"tags":{},"startTime":1775659267341,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":2911,"timestamp":6052319432972,"id":5467,"parentId":5391,"tags":{},"startTime":1775659267341,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":2955,"timestamp":6052319432973,"id":5468,"parentId":5392,"tags":{},"startTime":1775659267341,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":2979,"timestamp":6052319432975,"id":5469,"parentId":5393,"tags":{},"startTime":1775659267341,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":3001,"timestamp":6052319432977,"id":5470,"parentId":5394,"tags":{},"startTime":1775659267341,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":3033,"timestamp":6052319432979,"id":5471,"parentId":5395,"tags":{},"startTime":1775659267341,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":3056,"timestamp":6052319432981,"id":5472,"parentId":5396,"tags":{},"startTime":1775659267341,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":3078,"timestamp":6052319432982,"id":5473,"parentId":5397,"tags":{},"startTime":1775659267341,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":3101,"timestamp":6052319432984,"id":5474,"parentId":5398,"tags":{},"startTime":1775659267341,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":3124,"timestamp":6052319432986,"id":5475,"parentId":5399,"tags":{},"startTime":1775659267341,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":3154,"timestamp":6052319432987,"id":5476,"parentId":5400,"tags":{},"startTime":1775659267341,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":3185,"timestamp":6052319432989,"id":5477,"parentId":5401,"tags":{},"startTime":1775659267341,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":3209,"timestamp":6052319432991,"id":5478,"parentId":5402,"tags":{},"startTime":1775659267341,"traceId":"63571fab0751eb1f"}]
-[{"name":"read-resource","duration":3539,"timestamp":6052319432992,"id":5479,"parentId":5403,"tags":{},"startTime":1775659267341,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":3606,"timestamp":6052319432994,"id":5480,"parentId":5404,"tags":{},"startTime":1775659267341,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":3668,"timestamp":6052319432996,"id":5481,"parentId":5405,"tags":{},"startTime":1775659267341,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":3756,"timestamp":6052319432997,"id":5482,"parentId":5406,"tags":{},"startTime":1775659267341,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":3798,"timestamp":6052319432999,"id":5483,"parentId":5407,"tags":{},"startTime":1775659267341,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":3826,"timestamp":6052319433001,"id":5484,"parentId":5408,"tags":{},"startTime":1775659267341,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":3849,"timestamp":6052319433002,"id":5485,"parentId":5409,"tags":{},"startTime":1775659267341,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":3877,"timestamp":6052319433004,"id":5486,"parentId":5410,"tags":{},"startTime":1775659267341,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":3904,"timestamp":6052319433006,"id":5487,"parentId":5411,"tags":{},"startTime":1775659267341,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":3938,"timestamp":6052319433007,"id":5488,"parentId":5412,"tags":{},"startTime":1775659267341,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":3968,"timestamp":6052319433009,"id":5489,"parentId":5413,"tags":{},"startTime":1775659267341,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":3998,"timestamp":6052319433010,"id":5490,"parentId":5414,"tags":{},"startTime":1775659267341,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":4025,"timestamp":6052319433012,"id":5491,"parentId":5415,"tags":{},"startTime":1775659267341,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":4166,"timestamp":6052319433014,"id":5492,"parentId":5416,"tags":{},"startTime":1775659267341,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":4245,"timestamp":6052319433015,"id":5493,"parentId":5417,"tags":{},"startTime":1775659267341,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":4320,"timestamp":6052319433017,"id":5494,"parentId":5418,"tags":{},"startTime":1775659267341,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":4355,"timestamp":6052319433019,"id":5495,"parentId":5419,"tags":{},"startTime":1775659267341,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":4383,"timestamp":6052319433020,"id":5496,"parentId":5420,"tags":{},"startTime":1775659267341,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":4445,"timestamp":6052319433022,"id":5497,"parentId":5421,"tags":{},"startTime":1775659267341,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":4469,"timestamp":6052319433023,"id":5498,"parentId":5422,"tags":{},"startTime":1775659267341,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":4635,"timestamp":6052319434530,"id":5499,"parentId":5347,"tags":{},"startTime":1775659267342,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":4595,"timestamp":6052319434574,"id":5500,"parentId":5348,"tags":{},"startTime":1775659267342,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":4561,"timestamp":6052319434609,"id":5501,"parentId":5349,"tags":{},"startTime":1775659267342,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":4536,"timestamp":6052319434636,"id":5502,"parentId":5350,"tags":{},"startTime":1775659267342,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":4495,"timestamp":6052319434678,"id":5503,"parentId":5351,"tags":{},"startTime":1775659267342,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":4454,"timestamp":6052319434719,"id":5504,"parentId":5352,"tags":{},"startTime":1775659267343,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":4426,"timestamp":6052319434748,"id":5505,"parentId":5353,"tags":{},"startTime":1775659267343,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":4403,"timestamp":6052319434771,"id":5506,"parentId":5354,"tags":{},"startTime":1775659267343,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":4376,"timestamp":6052319434800,"id":5507,"parentId":5355,"tags":{},"startTime":1775659267343,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":4346,"timestamp":6052319434831,"id":5508,"parentId":5356,"tags":{},"startTime":1775659267343,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":4322,"timestamp":6052319434856,"id":5509,"parentId":5357,"tags":{},"startTime":1775659267343,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":4270,"timestamp":6052319434909,"id":5510,"parentId":5358,"tags":{},"startTime":1775659267343,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":4214,"timestamp":6052319434965,"id":5511,"parentId":5359,"tags":{},"startTime":1775659267343,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":4190,"timestamp":6052319434990,"id":5512,"parentId":5360,"tags":{},"startTime":1775659267343,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":4161,"timestamp":6052319435019,"id":5513,"parentId":5361,"tags":{},"startTime":1775659267343,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":4138,"timestamp":6052319435043,"id":5514,"parentId":5362,"tags":{},"startTime":1775659267343,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":4107,"timestamp":6052319435075,"id":5515,"parentId":5363,"tags":{},"startTime":1775659267343,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":4083,"timestamp":6052319435101,"id":5516,"parentId":5364,"tags":{},"startTime":1775659267343,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":4058,"timestamp":6052319435127,"id":5517,"parentId":5365,"tags":{},"startTime":1775659267343,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":4031,"timestamp":6052319435154,"id":5518,"parentId":5366,"tags":{},"startTime":1775659267343,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":3997,"timestamp":6052319435189,"id":5519,"parentId":5367,"tags":{},"startTime":1775659267343,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":3962,"timestamp":6052319435226,"id":5520,"parentId":5368,"tags":{},"startTime":1775659267343,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":3938,"timestamp":6052319435250,"id":5521,"parentId":5369,"tags":{},"startTime":1775659267343,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":3911,"timestamp":6052319435278,"id":5522,"parentId":5370,"tags":{},"startTime":1775659267343,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":3882,"timestamp":6052319435308,"id":5523,"parentId":5371,"tags":{},"startTime":1775659267343,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":3851,"timestamp":6052319435340,"id":5524,"parentId":5372,"tags":{},"startTime":1775659267343,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":3823,"timestamp":6052319435369,"id":5525,"parentId":5373,"tags":{},"startTime":1775659267343,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":3792,"timestamp":6052319435401,"id":5526,"parentId":5374,"tags":{},"startTime":1775659267343,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":3769,"timestamp":6052319435425,"id":5527,"parentId":5375,"tags":{},"startTime":1775659267343,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":3744,"timestamp":6052319435451,"id":5528,"parentId":5376,"tags":{},"startTime":1775659267343,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":3721,"timestamp":6052319435475,"id":5529,"parentId":5377,"tags":{},"startTime":1775659267343,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":3688,"timestamp":6052319435508,"id":5530,"parentId":5378,"tags":{},"startTime":1775659267343,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":3663,"timestamp":6052319435534,"id":5531,"parentId":5379,"tags":{},"startTime":1775659267343,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":3629,"timestamp":6052319435568,"id":5532,"parentId":5380,"tags":{},"startTime":1775659267343,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":3604,"timestamp":6052319435595,"id":5533,"parentId":5381,"tags":{},"startTime":1775659267343,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":3573,"timestamp":6052319435627,"id":5534,"parentId":5382,"tags":{},"startTime":1775659267343,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":3549,"timestamp":6052319435652,"id":5535,"parentId":5383,"tags":{},"startTime":1775659267343,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":3517,"timestamp":6052319435685,"id":5536,"parentId":5384,"tags":{},"startTime":1775659267343,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":3489,"timestamp":6052319435714,"id":5537,"parentId":5385,"tags":{},"startTime":1775659267344,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":3463,"timestamp":6052319435741,"id":5538,"parentId":5386,"tags":{},"startTime":1775659267344,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":3434,"timestamp":6052319435770,"id":5539,"parentId":5387,"tags":{},"startTime":1775659267344,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":3403,"timestamp":6052319435802,"id":5540,"parentId":5388,"tags":{},"startTime":1775659267344,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":3379,"timestamp":6052319435827,"id":5541,"parentId":5389,"tags":{},"startTime":1775659267344,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":3355,"timestamp":6052319435851,"id":5542,"parentId":5390,"tags":{},"startTime":1775659267344,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":3323,"timestamp":6052319435885,"id":5543,"parentId":5391,"tags":{},"startTime":1775659267344,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":3279,"timestamp":6052319435930,"id":5544,"parentId":5392,"tags":{},"startTime":1775659267344,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":3253,"timestamp":6052319435956,"id":5545,"parentId":5393,"tags":{},"startTime":1775659267344,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":3230,"timestamp":6052319435980,"id":5546,"parentId":5394,"tags":{},"startTime":1775659267344,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":3198,"timestamp":6052319436014,"id":5547,"parentId":5395,"tags":{},"startTime":1775659267344,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":3174,"timestamp":6052319436038,"id":5548,"parentId":5396,"tags":{},"startTime":1775659267344,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":3151,"timestamp":6052319436062,"id":5549,"parentId":5397,"tags":{},"startTime":1775659267344,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":3127,"timestamp":6052319436087,"id":5550,"parentId":5398,"tags":{},"startTime":1775659267344,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":3104,"timestamp":6052319436111,"id":5551,"parentId":5399,"tags":{},"startTime":1775659267344,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":3072,"timestamp":6052319436144,"id":5552,"parentId":5400,"tags":{},"startTime":1775659267344,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":3042,"timestamp":6052319436176,"id":5553,"parentId":5401,"tags":{},"startTime":1775659267344,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":2769,"timestamp":6052319436450,"id":5554,"parentId":5402,"tags":{},"startTime":1775659267344,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":2682,"timestamp":6052319436538,"id":5555,"parentId":5403,"tags":{},"startTime":1775659267344,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":2618,"timestamp":6052319436603,"id":5556,"parentId":5404,"tags":{},"startTime":1775659267344,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":2554,"timestamp":6052319436668,"id":5557,"parentId":5405,"tags":{},"startTime":1775659267344,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":2466,"timestamp":6052319436757,"id":5558,"parentId":5406,"tags":{},"startTime":1775659267345,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":2423,"timestamp":6052319436800,"id":5559,"parentId":5407,"tags":{},"startTime":1775659267345,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":2394,"timestamp":6052319436830,"id":5560,"parentId":5408,"tags":{},"startTime":1775659267345,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":2371,"timestamp":6052319436854,"id":5561,"parentId":5409,"tags":{},"startTime":1775659267345,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":2342,"timestamp":6052319436883,"id":5562,"parentId":5410,"tags":{},"startTime":1775659267345,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":2313,"timestamp":6052319436913,"id":5563,"parentId":5411,"tags":{},"startTime":1775659267345,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":2279,"timestamp":6052319436948,"id":5564,"parentId":5412,"tags":{},"startTime":1775659267345,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":2248,"timestamp":6052319436979,"id":5565,"parentId":5413,"tags":{},"startTime":1775659267345,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":2217,"timestamp":6052319437011,"id":5566,"parentId":5414,"tags":{},"startTime":1775659267345,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":2190,"timestamp":6052319437039,"id":5567,"parentId":5415,"tags":{},"startTime":1775659267345,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":2026,"timestamp":6052319437204,"id":5568,"parentId":5416,"tags":{},"startTime":1775659267345,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":1948,"timestamp":6052319437282,"id":5569,"parentId":5417,"tags":{},"startTime":1775659267345,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":1889,"timestamp":6052319437342,"id":5570,"parentId":5418,"tags":{},"startTime":1775659267345,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":1855,"timestamp":6052319437377,"id":5571,"parentId":5419,"tags":{},"startTime":1775659267345,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":1826,"timestamp":6052319437406,"id":5572,"parentId":5420,"tags":{},"startTime":1775659267345,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":1763,"timestamp":6052319437469,"id":5573,"parentId":5421,"tags":{},"startTime":1775659267345,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":1738,"timestamp":6052319437496,"id":5574,"parentId":5422,"tags":{},"startTime":1775659267345,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":9638,"timestamp":6052319429982,"id":5347,"parentId":4493,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/visual/LegendVisualProvider.js","layer":"app-pages-browser"},"startTime":1775659267338,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":10549,"timestamp":6052319430093,"id":5348,"parentId":4492,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/pie/labelLayout.js","layer":"app-pages-browser"},"startTime":1775659267338,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":10618,"timestamp":6052319430137,"id":5349,"parentId":4493,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/createSeriesDataSimply.js","layer":"app-pages-browser"},"startTime":1775659267338,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":12080,"timestamp":6052319430177,"id":5350,"parentId":4495,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/LargeSymbolDraw.js","layer":"app-pages-browser"},"startTime":1775659267338,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":13124,"timestamp":6052319430215,"id":5351,"parentId":4473,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/node_modules/tslib/tslib.es6.js","layer":"app-pages-browser"},"startTime":1775659267338,"traceId":"63571fab0751eb1f"}]
-[{"name":"build-module-js","duration":13747,"timestamp":6052319430252,"id":5352,"parentId":4595,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/canvas/Layer.js","layer":"app-pages-browser"},"startTime":1775659267338,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":13799,"timestamp":6052319430288,"id":5353,"parentId":4595,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/animation/requestAnimationFrame.js","layer":"app-pages-browser"},"startTime":1775659267338,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":14415,"timestamp":6052319430340,"id":5354,"parentId":4596,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/contain/path.js","layer":"app-pages-browser"},"startTime":1775659267338,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":14875,"timestamp":6052319430375,"id":5355,"parentId":4604,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/Tree.js","layer":"app-pages-browser"},"startTime":1775659267338,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":15096,"timestamp":6052319430408,"id":5356,"parentId":4610,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/animation.js","layer":"app-pages-browser"},"startTime":1775659267338,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":16319,"timestamp":6052319430454,"id":5357,"parentId":4594,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/helper/MapDraw.js","layer":"app-pages-browser"},"startTime":1775659267338,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":16688,"timestamp":6052319430490,"id":5358,"parentId":4603,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/tree/layoutHelper.js","layer":"app-pages-browser"},"startTime":1775659267338,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":16751,"timestamp":6052319430524,"id":5359,"parentId":4603,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/helper/roamHelper.js","layer":"app-pages-browser"},"startTime":1775659267338,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":17077,"timestamp":6052319430558,"id":5360,"parentId":4603,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/helper/RoamController.js","layer":"app-pages-browser"},"startTime":1775659267338,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":17115,"timestamp":6052319430592,"id":5361,"parentId":4603,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/helper/cursorHelper.js","layer":"app-pages-browser"},"startTime":1775659267338,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":17202,"timestamp":6052319430625,"id":5362,"parentId":4604,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/treeHelper.js","layer":"app-pages-browser"},"startTime":1775659267338,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":17268,"timestamp":6052319430658,"id":5363,"parentId":4605,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/tree/traversalHelper.js","layer":"app-pages-browser"},"startTime":1775659267338,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":17324,"timestamp":6052319430691,"id":5364,"parentId":4609,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/enableAriaDecalForTree.js","layer":"app-pages-browser"},"startTime":1775659267339,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":17601,"timestamp":6052319430727,"id":5365,"parentId":4610,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/treemap/Breadcrumb.js","layer":"app-pages-browser"},"startTime":1775659267339,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":17885,"timestamp":6052319430761,"id":5366,"parentId":4603,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/bbox.js","layer":"app-pages-browser"},"startTime":1775659267339,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":18596,"timestamp":6052319430793,"id":5367,"parentId":4611,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/visual/VisualMapping.js","layer":"app-pages-browser"},"startTime":1775659267339,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":18690,"timestamp":6052319430825,"id":5368,"parentId":4616,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/simpleLayoutHelper.js","layer":"app-pages-browser"},"startTime":1775659267339,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":18958,"timestamp":6052319430860,"id":5369,"parentId":4617,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/circularLayoutHelper.js","layer":"app-pages-browser"},"startTime":1775659267339,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":19169,"timestamp":6052319430894,"id":5370,"parentId":4618,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/forceHelper.js","layer":"app-pages-browser"},"startTime":1775659267339,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":19394,"timestamp":6052319430927,"id":5371,"parentId":4618,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/multipleGraphEdgeHelper.js","layer":"app-pages-browser"},"startTime":1775659267339,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":19625,"timestamp":6052319430960,"id":5372,"parentId":4620,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/LineDraw.js","layer":"app-pages-browser"},"startTime":1775659267339,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":20913,"timestamp":6052319430992,"id":5373,"parentId":4620,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/adjustEdge.js","layer":"app-pages-browser"},"startTime":1775659267339,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":21065,"timestamp":6052319431023,"id":5374,"parentId":4620,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/graphHelper.js","layer":"app-pages-browser"},"startTime":1775659267339,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":21285,"timestamp":6052319431056,"id":5375,"parentId":4621,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/createGraphFromNodeEdge.js","layer":"app-pages-browser"},"startTime":1775659267339,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":21423,"timestamp":6052319431088,"id":5376,"parentId":4622,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/gauge/PointerPath.js","layer":"app-pages-browser"},"startTime":1775659267339,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":21641,"timestamp":6052319431123,"id":5377,"parentId":4634,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/whiskerBoxCommon.js","layer":"app-pages-browser"},"startTime":1775659267339,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":21782,"timestamp":6052319431156,"id":5378,"parentId":4637,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/boxplot/prepareBoxplotData.js","layer":"app-pages-browser"},"startTime":1775659267339,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":22431,"timestamp":6052319431191,"id":5379,"parentId":4643,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/EffectSymbol.js","layer":"app-pages-browser"},"startTime":1775659267339,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":23476,"timestamp":6052319431224,"id":5380,"parentId":4645,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/EffectLine.js","layer":"app-pages-browser"},"startTime":1775659267339,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":24262,"timestamp":6052319431259,"id":5381,"parentId":4645,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/Line.js","layer":"app-pages-browser"},"startTime":1775659267339,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":24433,"timestamp":6052319431291,"id":5382,"parentId":4645,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/Polyline.js","layer":"app-pages-browser"},"startTime":1775659267339,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":24619,"timestamp":6052319431323,"id":5383,"parentId":4645,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/EffectPolyline.js","layer":"app-pages-browser"},"startTime":1775659267339,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":25025,"timestamp":6052319431355,"id":5384,"parentId":4645,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/LargeLineDraw.js","layer":"app-pages-browser"},"startTime":1775659267339,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":25228,"timestamp":6052319431388,"id":5385,"parentId":4649,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/heatmap/HeatmapLayer.js","layer":"app-pages-browser"},"startTime":1775659267339,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":25638,"timestamp":6052319431420,"id":5386,"parentId":4656,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sunburst/SunburstPiece.js","layer":"app-pages-browser"},"startTime":1775659267339,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":25712,"timestamp":6052319431486,"id":5387,"parentId":4795,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/axisDefault.js","layer":"app-pages-browser"},"startTime":1775659267339,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":25835,"timestamp":6052319431518,"id":5388,"parentId":4795,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/OrdinalMeta.js","layer":"app-pages-browser"},"startTime":1775659267339,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":25847,"timestamp":6052319431554,"id":5389,"parentId":4795,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/axisCommonTypes.js","layer":"app-pages-browser"},"startTime":1775659267339,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":26242,"timestamp":6052319431588,"id":5390,"parentId":4799,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/styleCompat.js","layer":"app-pages-browser"},"startTime":1775659267339,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":26964,"timestamp":6052319431666,"id":5391,"parentId":4799,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/animation/customGraphicTransition.js","layer":"app-pages-browser"},"startTime":1775659267339,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":27122,"timestamp":6052319431730,"id":5392,"parentId":4799,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/animation/customGraphicKeyframeAnimation.js","layer":"app-pages-browser"},"startTime":1775659267340,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":27267,"timestamp":6052319431797,"id":5393,"parentId":4802,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/scale/helper.js","layer":"app-pages-browser"},"startTime":1775659267340,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":27458,"timestamp":6052319431859,"id":5394,"parentId":4802,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/axisAlignTicks.js","layer":"app-pages-browser"},"startTime":1775659267340,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":27543,"timestamp":6052319431899,"id":5395,"parentId":4799,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/cartesian/prepareCustom.js","layer":"app-pages-browser"},"startTime":1775659267340,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":27616,"timestamp":6052319431936,"id":5396,"parentId":4799,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/prepareCustom.js","layer":"app-pages-browser"},"startTime":1775659267340,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":27668,"timestamp":6052319431971,"id":5397,"parentId":4799,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/single/prepareCustom.js","layer":"app-pages-browser"},"startTime":1775659267340,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":27756,"timestamp":6052319432005,"id":5398,"parentId":4799,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/polar/prepareCustom.js","layer":"app-pages-browser"},"startTime":1775659267340,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":27783,"timestamp":6052319432039,"id":5399,"parentId":4799,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/calendar/prepareCustom.js","layer":"app-pages-browser"},"startTime":1775659267340,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":28087,"timestamp":6052319432074,"id":5400,"parentId":4802,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/cartesian/Cartesian2D.js","layer":"app-pages-browser"},"startTime":1775659267340,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":28167,"timestamp":6052319432108,"id":5401,"parentId":4802,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/cartesian/Axis2D.js","layer":"app-pages-browser"},"startTime":1775659267340,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":28376,"timestamp":6052319432144,"id":5402,"parentId":4802,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/cartesian/cartesianAxisHelper.js","layer":"app-pages-browser"},"startTime":1775659267340,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":29327,"timestamp":6052319432179,"id":5403,"parentId":4803,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axis/AxisBuilder.js","layer":"app-pages-browser"},"startTime":1775659267340,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":29819,"timestamp":6052319432214,"id":5404,"parentId":4803,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axis/axisSplitHelper.js","layer":"app-pages-browser"},"startTime":1775659267340,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":31489,"timestamp":6052319432263,"id":5405,"parentId":4805,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/BaseAxisPointer.js","layer":"app-pages-browser"},"startTime":1775659267340,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":32179,"timestamp":6052319432298,"id":5406,"parentId":4805,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/viewHelper.js","layer":"app-pages-browser"},"startTime":1775659267340,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":32584,"timestamp":6052319432331,"id":5407,"parentId":4808,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/polar/Polar.js","layer":"app-pages-browser"},"startTime":1775659267340,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":32641,"timestamp":6052319432364,"id":5408,"parentId":4818,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/legacy/getTextRect.js","layer":"app-pages-browser"},"startTime":1775659267340,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":33235,"timestamp":6052319432395,"id":5409,"parentId":4813,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/scale/Interval.js","layer":"app-pages-browser"},"startTime":1775659267340,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":33301,"timestamp":6052319432427,"id":5410,"parentId":4813,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/radar/IndicatorAxis.js","layer":"app-pages-browser"},"startTime":1775659267340,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":33645,"timestamp":6052319432460,"id":5411,"parentId":4815,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/Geo.js","layer":"app-pages-browser"},"startTime":1775659267340,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":33966,"timestamp":6052319432492,"id":5412,"parentId":4819,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/GeoSVGResource.js","layer":"app-pages-browser"},"startTime":1775659267340,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":34164,"timestamp":6052319432525,"id":5413,"parentId":4819,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/GeoJSONResource.js","layer":"app-pages-browser"},"startTime":1775659267340,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":34253,"timestamp":6052319432557,"id":5414,"parentId":4820,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/single/singleAxisHelper.js","layer":"app-pages-browser"},"startTime":1775659267340,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":34522,"timestamp":6052319432590,"id":5415,"parentId":4822,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/single/Single.js","layer":"app-pages-browser"},"startTime":1775659267340,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":35456,"timestamp":6052319432621,"id":5416,"parentId":4827,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/parallel/Parallel.js","layer":"app-pages-browser"},"startTime":1775659267340,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":37380,"timestamp":6052319432654,"id":5417,"parentId":4829,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/helper/BrushController.js","layer":"app-pages-browser"},"startTime":1775659267340,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":37643,"timestamp":6052319432686,"id":5418,"parentId":4829,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/helper/brushHelper.js","layer":"app-pages-browser"},"startTime":1775659267340,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":38094,"timestamp":6052319432718,"id":5419,"parentId":4818,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/dom.js","layer":"app-pages-browser"},"startTime":1775659267341,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":39491,"timestamp":6052319432750,"id":5420,"parentId":4818,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/helper/parseText.js","layer":"app-pages-browser"},"startTime":1775659267341,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":39586,"timestamp":6052319432782,"id":5421,"parentId":4836,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/SelectZoomModel.js","layer":"app-pages-browser"},"startTime":1775659267341,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":39633,"timestamp":6052319432815,"id":5422,"parentId":4836,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/SelectZoomView.js","layer":"app-pages-browser"},"startTime":1775659267341,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":638,"timestamp":6052319526550,"id":5631,"parentId":5575,"tags":{},"startTime":1775659267434,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":651,"timestamp":6052319526584,"id":5632,"parentId":5576,"tags":{},"startTime":1775659267434,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":733,"timestamp":6052319526589,"id":5633,"parentId":5577,"tags":{},"startTime":1775659267434,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":870,"timestamp":6052319526593,"id":5634,"parentId":5578,"tags":{},"startTime":1775659267434,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":907,"timestamp":6052319526597,"id":5635,"parentId":5579,"tags":{},"startTime":1775659267434,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":942,"timestamp":6052319526601,"id":5636,"parentId":5580,"tags":{},"startTime":1775659267434,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1024,"timestamp":6052319526605,"id":5637,"parentId":5581,"tags":{},"startTime":1775659267434,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1136,"timestamp":6052319526609,"id":5638,"parentId":5582,"tags":{},"startTime":1775659267434,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1255,"timestamp":6052319526614,"id":5639,"parentId":5583,"tags":{},"startTime":1775659267434,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1306,"timestamp":6052319526618,"id":5640,"parentId":5584,"tags":{},"startTime":1775659267434,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1427,"timestamp":6052319526622,"id":5641,"parentId":5585,"tags":{},"startTime":1775659267434,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1456,"timestamp":6052319526626,"id":5642,"parentId":5586,"tags":{},"startTime":1775659267434,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":1713,"timestamp":6052319526629,"id":5643,"parentId":5587,"tags":{},"startTime":1775659267434,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":2124,"timestamp":6052319526633,"id":5644,"parentId":5588,"tags":{},"startTime":1775659267434,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":2312,"timestamp":6052319526637,"id":5645,"parentId":5589,"tags":{},"startTime":1775659267434,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":2522,"timestamp":6052319526640,"id":5646,"parentId":5590,"tags":{},"startTime":1775659267434,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":2591,"timestamp":6052319526644,"id":5647,"parentId":5591,"tags":{},"startTime":1775659267434,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":2629,"timestamp":6052319526647,"id":5648,"parentId":5592,"tags":{},"startTime":1775659267434,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":2672,"timestamp":6052319526651,"id":5649,"parentId":5593,"tags":{},"startTime":1775659267434,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":2762,"timestamp":6052319526654,"id":5650,"parentId":5594,"tags":{},"startTime":1775659267434,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":2789,"timestamp":6052319526658,"id":5651,"parentId":5595,"tags":{},"startTime":1775659267434,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":2818,"timestamp":6052319526662,"id":5652,"parentId":5596,"tags":{},"startTime":1775659267434,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":2900,"timestamp":6052319526665,"id":5653,"parentId":5597,"tags":{},"startTime":1775659267434,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":2927,"timestamp":6052319526668,"id":5654,"parentId":5598,"tags":{},"startTime":1775659267434,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":2955,"timestamp":6052319526672,"id":5655,"parentId":5599,"tags":{},"startTime":1775659267434,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":3118,"timestamp":6052319526675,"id":5656,"parentId":5600,"tags":{},"startTime":1775659267434,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":3158,"timestamp":6052319526679,"id":5657,"parentId":5601,"tags":{},"startTime":1775659267434,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":3308,"timestamp":6052319526682,"id":5658,"parentId":5602,"tags":{},"startTime":1775659267434,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":3335,"timestamp":6052319526686,"id":5659,"parentId":5603,"tags":{},"startTime":1775659267434,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":3362,"timestamp":6052319526689,"id":5660,"parentId":5604,"tags":{},"startTime":1775659267434,"traceId":"63571fab0751eb1f"}]
-[{"name":"read-resource","duration":3555,"timestamp":6052319526693,"id":5661,"parentId":5605,"tags":{},"startTime":1775659267434,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":3582,"timestamp":6052319526697,"id":5662,"parentId":5606,"tags":{},"startTime":1775659267434,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":3605,"timestamp":6052319526700,"id":5663,"parentId":5607,"tags":{},"startTime":1775659267434,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":3652,"timestamp":6052319526703,"id":5664,"parentId":5608,"tags":{},"startTime":1775659267434,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":3679,"timestamp":6052319526707,"id":5665,"parentId":5609,"tags":{},"startTime":1775659267435,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":3705,"timestamp":6052319526711,"id":5666,"parentId":5610,"tags":{},"startTime":1775659267435,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":3717,"timestamp":6052319526725,"id":5667,"parentId":5611,"tags":{},"startTime":1775659267435,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":3832,"timestamp":6052319526729,"id":5668,"parentId":5612,"tags":{},"startTime":1775659267435,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":3859,"timestamp":6052319526732,"id":5669,"parentId":5613,"tags":{},"startTime":1775659267435,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":3880,"timestamp":6052319526736,"id":5670,"parentId":5614,"tags":{},"startTime":1775659267435,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":3907,"timestamp":6052319526740,"id":5671,"parentId":5615,"tags":{},"startTime":1775659267435,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":3936,"timestamp":6052319526743,"id":5672,"parentId":5616,"tags":{},"startTime":1775659267435,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":3887,"timestamp":6052319526818,"id":5673,"parentId":5617,"tags":{},"startTime":1775659267435,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":3881,"timestamp":6052319526855,"id":5674,"parentId":5618,"tags":{},"startTime":1775659267435,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":3931,"timestamp":6052319526860,"id":5675,"parentId":5619,"tags":{},"startTime":1775659267435,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":3963,"timestamp":6052319526864,"id":5676,"parentId":5620,"tags":{},"startTime":1775659267435,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":3998,"timestamp":6052319526868,"id":5677,"parentId":5621,"tags":{},"startTime":1775659267435,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":4028,"timestamp":6052319526872,"id":5678,"parentId":5622,"tags":{},"startTime":1775659267435,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":4078,"timestamp":6052319526875,"id":5679,"parentId":5623,"tags":{},"startTime":1775659267435,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":4103,"timestamp":6052319526878,"id":5680,"parentId":5624,"tags":{},"startTime":1775659267435,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":4137,"timestamp":6052319526882,"id":5681,"parentId":5625,"tags":{},"startTime":1775659267435,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":4167,"timestamp":6052319526885,"id":5682,"parentId":5626,"tags":{},"startTime":1775659267435,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":4199,"timestamp":6052319526888,"id":5683,"parentId":5627,"tags":{},"startTime":1775659267435,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":4231,"timestamp":6052319526892,"id":5684,"parentId":5628,"tags":{},"startTime":1775659267435,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":4256,"timestamp":6052319526896,"id":5685,"parentId":5629,"tags":{},"startTime":1775659267435,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":4288,"timestamp":6052319526899,"id":5686,"parentId":5630,"tags":{},"startTime":1775659267435,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":7788,"timestamp":6052319527201,"id":5687,"parentId":5575,"tags":{},"startTime":1775659267435,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":7752,"timestamp":6052319527241,"id":5688,"parentId":5576,"tags":{},"startTime":1775659267435,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":7670,"timestamp":6052319527324,"id":5689,"parentId":5577,"tags":{},"startTime":1775659267435,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":7530,"timestamp":6052319527465,"id":5690,"parentId":5578,"tags":{},"startTime":1775659267435,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":7483,"timestamp":6052319527513,"id":5691,"parentId":5579,"tags":{},"startTime":1775659267435,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":7414,"timestamp":6052319527583,"id":5692,"parentId":5580,"tags":{},"startTime":1775659267435,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":7364,"timestamp":6052319527633,"id":5693,"parentId":5581,"tags":{},"startTime":1775659267435,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":7249,"timestamp":6052319527749,"id":5694,"parentId":5582,"tags":{},"startTime":1775659267436,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":7122,"timestamp":6052319527877,"id":5695,"parentId":5583,"tags":{},"startTime":1775659267436,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":7072,"timestamp":6052319527928,"id":5696,"parentId":5584,"tags":{},"startTime":1775659267436,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":6949,"timestamp":6052319528052,"id":5697,"parentId":5585,"tags":{},"startTime":1775659267436,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":6876,"timestamp":6052319528126,"id":5698,"parentId":5586,"tags":{},"startTime":1775659267436,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":6625,"timestamp":6052319528378,"id":5699,"parentId":5587,"tags":{},"startTime":1775659267436,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":6242,"timestamp":6052319528762,"id":5700,"parentId":5588,"tags":{},"startTime":1775659267437,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":6017,"timestamp":6052319528988,"id":5701,"parentId":5589,"tags":{},"startTime":1775659267437,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":5825,"timestamp":6052319529181,"id":5702,"parentId":5590,"tags":{},"startTime":1775659267437,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":5766,"timestamp":6052319529241,"id":5703,"parentId":5591,"tags":{},"startTime":1775659267437,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":5728,"timestamp":6052319529280,"id":5704,"parentId":5592,"tags":{},"startTime":1775659267437,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":5681,"timestamp":6052319529327,"id":5705,"parentId":5593,"tags":{},"startTime":1775659267437,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":5589,"timestamp":6052319529421,"id":5706,"parentId":5594,"tags":{},"startTime":1775659267437,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":5560,"timestamp":6052319529451,"id":5707,"parentId":5595,"tags":{},"startTime":1775659267437,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":5507,"timestamp":6052319529505,"id":5708,"parentId":5596,"tags":{},"startTime":1775659267437,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":5443,"timestamp":6052319529569,"id":5709,"parentId":5597,"tags":{},"startTime":1775659267437,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":5414,"timestamp":6052319529600,"id":5710,"parentId":5598,"tags":{},"startTime":1775659267437,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":5363,"timestamp":6052319529651,"id":5711,"parentId":5599,"tags":{},"startTime":1775659267437,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":5207,"timestamp":6052319529808,"id":5712,"parentId":5600,"tags":{},"startTime":1775659267438,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":5175,"timestamp":6052319529841,"id":5713,"parentId":5601,"tags":{},"startTime":1775659267438,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":5022,"timestamp":6052319529995,"id":5714,"parentId":5602,"tags":{},"startTime":1775659267438,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":4994,"timestamp":6052319530024,"id":5715,"parentId":5603,"tags":{},"startTime":1775659267438,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":4803,"timestamp":6052319530216,"id":5716,"parentId":5604,"tags":{},"startTime":1775659267438,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":4769,"timestamp":6052319530252,"id":5717,"parentId":5605,"tags":{},"startTime":1775659267438,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":4739,"timestamp":6052319530282,"id":5718,"parentId":5606,"tags":{},"startTime":1775659267438,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":4714,"timestamp":6052319530309,"id":5719,"parentId":5607,"tags":{},"startTime":1775659267438,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":4664,"timestamp":6052319530359,"id":5720,"parentId":5608,"tags":{},"startTime":1775659267438,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":4634,"timestamp":6052319530390,"id":5721,"parentId":5609,"tags":{},"startTime":1775659267438,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":4607,"timestamp":6052319530418,"id":5722,"parentId":5610,"tags":{},"startTime":1775659267438,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":4581,"timestamp":6052319530445,"id":5723,"parentId":5611,"tags":{},"startTime":1775659267438,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":4461,"timestamp":6052319530565,"id":5724,"parentId":5612,"tags":{},"startTime":1775659267438,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":4433,"timestamp":6052319530594,"id":5725,"parentId":5613,"tags":{},"startTime":1775659267438,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":4409,"timestamp":6052319530619,"id":5726,"parentId":5614,"tags":{},"startTime":1775659267438,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":4379,"timestamp":6052319530649,"id":5727,"parentId":5615,"tags":{},"startTime":1775659267438,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":4347,"timestamp":6052319530683,"id":5728,"parentId":5616,"tags":{},"startTime":1775659267438,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":4319,"timestamp":6052319530711,"id":5729,"parentId":5617,"tags":{},"startTime":1775659267439,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":4279,"timestamp":6052319530752,"id":5730,"parentId":5618,"tags":{},"startTime":1775659267439,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":4238,"timestamp":6052319530794,"id":5731,"parentId":5619,"tags":{},"startTime":1775659267439,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":4202,"timestamp":6052319530831,"id":5732,"parentId":5620,"tags":{},"startTime":1775659267439,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":4164,"timestamp":6052319530870,"id":5733,"parentId":5621,"tags":{},"startTime":1775659267439,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":4132,"timestamp":6052319530902,"id":5734,"parentId":5622,"tags":{},"startTime":1775659267439,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":4078,"timestamp":6052319530957,"id":5735,"parentId":5623,"tags":{},"startTime":1775659267439,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":4052,"timestamp":6052319530985,"id":5736,"parentId":5624,"tags":{},"startTime":1775659267439,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":4015,"timestamp":6052319531022,"id":5737,"parentId":5625,"tags":{},"startTime":1775659267439,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":3984,"timestamp":6052319531055,"id":5738,"parentId":5626,"tags":{},"startTime":1775659267439,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":3945,"timestamp":6052319531094,"id":5739,"parentId":5627,"tags":{},"startTime":1775659267439,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":3911,"timestamp":6052319531129,"id":5740,"parentId":5628,"tags":{},"startTime":1775659267439,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":3885,"timestamp":6052319531156,"id":5741,"parentId":5629,"tags":{},"startTime":1775659267439,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":3852,"timestamp":6052319531190,"id":5742,"parentId":5630,"tags":{},"startTime":1775659267439,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":12671,"timestamp":6052319522919,"id":5575,"parentId":4838,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/helper/listComponent.js","layer":"app-pages-browser"},"startTime":1775659267431,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":16891,"timestamp":6052319523084,"id":5576,"parentId":4841,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/tooltip/TooltipHTMLContent.js","layer":"app-pages-browser"},"startTime":1775659267431,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":17422,"timestamp":6052319523140,"id":5577,"parentId":4841,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/tooltip/TooltipRichContent.js","layer":"app-pages-browser"},"startTime":1775659267431,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":17636,"timestamp":6052319523183,"id":5578,"parentId":4841,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/findPointFromSeries.js","layer":"app-pages-browser"},"startTime":1775659267431,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":17847,"timestamp":6052319523227,"id":5579,"parentId":4841,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/globalListener.js","layer":"app-pages-browser"},"startTime":1775659267431,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":17886,"timestamp":6052319523389,"id":5580,"parentId":4841,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/tooltip/helper.js","layer":"app-pages-browser"},"startTime":1775659267431,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":18261,"timestamp":6052319523480,"id":5581,"parentId":4838,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/contain/text.js","layer":"app-pages-browser"},"startTime":1775659267431,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":18564,"timestamp":6052319523649,"id":5582,"parentId":4961,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/visual/visualSolution.js","layer":"app-pages-browser"},"startTime":1775659267431,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":18966,"timestamp":6052319523759,"id":5583,"parentId":4964,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/scale/Ordinal.js","layer":"app-pages-browser"},"startTime":1775659267432,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":19866,"timestamp":6052319523821,"id":5584,"parentId":4964,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/scale/Time.js","layer":"app-pages-browser"},"startTime":1775659267432,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":20083,"timestamp":6052319523864,"id":5585,"parentId":4962,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/brush/selector.js","layer":"app-pages-browser"},"startTime":1775659267432,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":20758,"timestamp":6052319523907,"id":5586,"parentId":4962,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/helper/BrushTargetManager.js","layer":"app-pages-browser"},"startTime":1775659267432,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":20969,"timestamp":6052319523953,"id":5587,"parentId":4963,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/timeline/TimelineModel.js","layer":"app-pages-browser"},"startTime":1775659267432,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":21374,"timestamp":6052319523993,"id":5588,"parentId":4964,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/timeline/TimelineView.js","layer":"app-pages-browser"},"startTime":1775659267432,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":21640,"timestamp":6052319524031,"id":5589,"parentId":4964,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/timeline/TimelineAxis.js","layer":"app-pages-browser"},"startTime":1775659267432,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":22201,"timestamp":6052319524069,"id":5590,"parentId":4968,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/MarkerModel.js","layer":"app-pages-browser"},"startTime":1775659267432,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":22680,"timestamp":6052319524106,"id":5591,"parentId":4969,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/markerHelper.js","layer":"app-pages-browser"},"startTime":1775659267432,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":22982,"timestamp":6052319524144,"id":5592,"parentId":4969,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/MarkerView.js","layer":"app-pages-browser"},"startTime":1775659267432,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":23936,"timestamp":6052319524182,"id":5593,"parentId":4989,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/DataZoomModel.js","layer":"app-pages-browser"},"startTime":1775659267432,"traceId":"63571fab0751eb1f"}]
-[{"name":"build-module-js","duration":24109,"timestamp":6052319524219,"id":5594,"parentId":4990,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/DataZoomView.js","layer":"app-pages-browser"},"startTime":1775659267432,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":24241,"timestamp":6052319524256,"id":5595,"parentId":4990,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/helper/sliderMove.js","layer":"app-pages-browser"},"startTime":1775659267432,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":24495,"timestamp":6052319524291,"id":5596,"parentId":4991,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/helper.js","layer":"app-pages-browser"},"startTime":1775659267432,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":24604,"timestamp":6052319524335,"id":5597,"parentId":4977,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/history.js","layer":"app-pages-browser"},"startTime":1775659267432,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":24985,"timestamp":6052319524399,"id":5598,"parentId":4976,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/event.js","layer":"app-pages-browser"},"startTime":1775659267432,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":25147,"timestamp":6052319524445,"id":5599,"parentId":5067,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/mixin/Draggable.js","layer":"app-pages-browser"},"startTime":1775659267432,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":25310,"timestamp":6052319524481,"id":5600,"parentId":5067,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/GestureMgr.js","layer":"app-pages-browser"},"startTime":1775659267432,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":26990,"timestamp":6052319524518,"id":5601,"parentId":5070,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/animation/Animator.js","layer":"app-pages-browser"},"startTime":1775659267432,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":27342,"timestamp":6052319524557,"id":5602,"parentId":5077,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/tool/transformPath.js","layer":"app-pages-browser"},"startTime":1775659267432,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":27433,"timestamp":6052319524599,"id":5603,"parentId":5062,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/visual/visualDefault.js","layer":"app-pages-browser"},"startTime":1775659267432,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":29684,"timestamp":6052319524637,"id":5604,"parentId":5065,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/conditionalExpression.js","layer":"app-pages-browser"},"startTime":1775659267432,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":29874,"timestamp":6052319524688,"id":5605,"parentId":5056,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/dataZoomProcessor.js","layer":"app-pages-browser"},"startTime":1775659267432,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":29922,"timestamp":6052319524729,"id":5606,"parentId":5056,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/dataZoomAction.js","layer":"app-pages-browser"},"startTime":1775659267433,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":30469,"timestamp":6052319524832,"id":5607,"parentId":5059,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/VisualMapModel.js","layer":"app-pages-browser"},"startTime":1775659267433,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":30565,"timestamp":6052319524973,"id":5608,"parentId":5060,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/VisualMapView.js","layer":"app-pages-browser"},"startTime":1775659267433,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":30819,"timestamp":6052319525056,"id":5609,"parentId":5060,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/helper.js","layer":"app-pages-browser"},"startTime":1775659267433,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":30832,"timestamp":6052319525129,"id":5610,"parentId":5061,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/visualMapAction.js","layer":"app-pages-browser"},"startTime":1775659267433,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":30866,"timestamp":6052319525255,"id":5611,"parentId":5061,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/visualEncoding.js","layer":"app-pages-browser"},"startTime":1775659267433,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":30877,"timestamp":6052319525360,"id":5612,"parentId":5061,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/preprocessor.js","layer":"app-pages-browser"},"startTime":1775659267433,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":30890,"timestamp":6052319525407,"id":5613,"parentId":5082,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/Gradient.js","layer":"app-pages-browser"},"startTime":1775659267433,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":31625,"timestamp":6052319525446,"id":5614,"parentId":5096,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/curve.js","layer":"app-pages-browser"},"startTime":1775659267433,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":31985,"timestamp":6052319525653,"id":5615,"parentId":5090,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/helper/roundSector.js","layer":"app-pages-browser"},"startTime":1775659267433,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":31840,"timestamp":6052319525898,"id":5616,"parentId":5092,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/helper/poly.js","layer":"app-pages-browser"},"startTime":1775659267434,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":31914,"timestamp":6052319525974,"id":5617,"parentId":5094,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/helper/roundRect.js","layer":"app-pages-browser"},"startTime":1775659267434,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":32128,"timestamp":6052319526016,"id":5618,"parentId":5200,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/SVGPathRebuilder.js","layer":"app-pages-browser"},"startTime":1775659267434,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":32284,"timestamp":6052319526053,"id":5619,"parentId":5200,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/mapStyleToAttrs.js","layer":"app-pages-browser"},"startTime":1775659267434,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":32746,"timestamp":6052319526087,"id":5620,"parentId":5200,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/cssAnimation.js","layer":"app-pages-browser"},"startTime":1775659267434,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":33279,"timestamp":6052319526122,"id":5621,"parentId":5200,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/cssEmphasis.js","layer":"app-pages-browser"},"startTime":1775659267434,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":33332,"timestamp":6052319526184,"id":5622,"parentId":5203,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/domapi.js","layer":"app-pages-browser"},"startTime":1775659267434,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":33422,"timestamp":6052319526222,"id":5623,"parentId":5204,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/scale/Scale.js","layer":"app-pages-browser"},"startTime":1775659267434,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":33703,"timestamp":6052319526259,"id":5624,"parentId":5204,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/scale/Log.js","layer":"app-pages-browser"},"startTime":1775659267434,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":34029,"timestamp":6052319526293,"id":5625,"parentId":5204,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/scaleRawExtentInfo.js","layer":"app-pages-browser"},"startTime":1775659267434,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":34245,"timestamp":6052319526329,"id":5626,"parentId":5216,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/referHelper.js","layer":"app-pages-browser"},"startTime":1775659267434,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":34316,"timestamp":6052319526363,"id":5627,"parentId":5183,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/WeakMap.js","layer":"app-pages-browser"},"startTime":1775659267434,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":34369,"timestamp":6052319526397,"id":5628,"parentId":5219,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/contain/polygon.js","layer":"app-pages-browser"},"startTime":1775659267434,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":34948,"timestamp":6052319526432,"id":5629,"parentId":5234,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/tool/dividePath.js","layer":"app-pages-browser"},"startTime":1775659267434,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":36325,"timestamp":6052319526466,"id":5630,"parentId":5234,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/tool/convertPath.js","layer":"app-pages-browser"},"startTime":1775659267434,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":446,"timestamp":6052319580551,"id":5755,"parentId":5743,"tags":{},"startTime":1775659267488,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":482,"timestamp":6052319580559,"id":5756,"parentId":5744,"tags":{},"startTime":1775659267488,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":503,"timestamp":6052319580562,"id":5757,"parentId":5745,"tags":{},"startTime":1775659267488,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":522,"timestamp":6052319580565,"id":5758,"parentId":5746,"tags":{},"startTime":1775659267488,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":541,"timestamp":6052319580568,"id":5759,"parentId":5747,"tags":{},"startTime":1775659267488,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":560,"timestamp":6052319580571,"id":5760,"parentId":5748,"tags":{},"startTime":1775659267488,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":608,"timestamp":6052319580574,"id":5761,"parentId":5749,"tags":{},"startTime":1775659267488,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":635,"timestamp":6052319580576,"id":5762,"parentId":5750,"tags":{},"startTime":1775659267488,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":658,"timestamp":6052319580578,"id":5763,"parentId":5751,"tags":{},"startTime":1775659267488,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":681,"timestamp":6052319580580,"id":5764,"parentId":5752,"tags":{},"startTime":1775659267488,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":704,"timestamp":6052319580582,"id":5765,"parentId":5753,"tags":{},"startTime":1775659267488,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":726,"timestamp":6052319580585,"id":5766,"parentId":5754,"tags":{},"startTime":1775659267488,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":11246,"timestamp":6052319581008,"id":5767,"parentId":5743,"tags":{},"startTime":1775659267489,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":11216,"timestamp":6052319581043,"id":5768,"parentId":5744,"tags":{},"startTime":1775659267489,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":11193,"timestamp":6052319581066,"id":5769,"parentId":5745,"tags":{},"startTime":1775659267489,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":11171,"timestamp":6052319581089,"id":5770,"parentId":5746,"tags":{},"startTime":1775659267489,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":11149,"timestamp":6052319581111,"id":5771,"parentId":5747,"tags":{},"startTime":1775659267489,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":11126,"timestamp":6052319581134,"id":5772,"parentId":5748,"tags":{},"startTime":1775659267489,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":11075,"timestamp":6052319581185,"id":5773,"parentId":5749,"tags":{},"startTime":1775659267489,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":11048,"timestamp":6052319581212,"id":5774,"parentId":5750,"tags":{},"startTime":1775659267489,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":11022,"timestamp":6052319581239,"id":5775,"parentId":5751,"tags":{},"startTime":1775659267489,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":10997,"timestamp":6052319581264,"id":5776,"parentId":5752,"tags":{},"startTime":1775659267489,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":10973,"timestamp":6052319581288,"id":5777,"parentId":5753,"tags":{},"startTime":1775659267489,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":10949,"timestamp":6052319581312,"id":5778,"parentId":5754,"tags":{},"startTime":1775659267489,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":12757,"timestamp":6052319579826,"id":5743,"parentId":5354,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/contain/line.js","layer":"app-pages-browser"},"startTime":1775659267488,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":12778,"timestamp":6052319579953,"id":5744,"parentId":5354,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/contain/cubic.js","layer":"app-pages-browser"},"startTime":1775659267488,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":12796,"timestamp":6052319580027,"id":5745,"parentId":5354,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/contain/quadratic.js","layer":"app-pages-browser"},"startTime":1775659267488,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":12839,"timestamp":6052319580095,"id":5746,"parentId":5354,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/contain/arc.js","layer":"app-pages-browser"},"startTime":1775659267488,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":12882,"timestamp":6052319580134,"id":5747,"parentId":5354,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/contain/windingLine.js","layer":"app-pages-browser"},"startTime":1775659267488,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":13638,"timestamp":6052319580170,"id":5748,"parentId":5375,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/Graph.js","layer":"app-pages-browser"},"startTime":1775659267488,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":13834,"timestamp":6052319580208,"id":5749,"parentId":5355,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/helper/linkSeriesData.js","layer":"app-pages-browser"},"startTime":1775659267488,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":13917,"timestamp":6052319580247,"id":5750,"parentId":5360,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/helper/interactionMutex.js","layer":"app-pages-browser"},"startTime":1775659267488,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":14041,"timestamp":6052319580293,"id":5751,"parentId":5381,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/LinePath.js","layer":"app-pages-browser"},"startTime":1775659267488,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":14092,"timestamp":6052319580333,"id":5752,"parentId":5400,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/cartesian/Cartesian.js","layer":"app-pages-browser"},"startTime":1775659267488,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":14140,"timestamp":6052319580368,"id":5753,"parentId":5407,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/polar/RadiusAxis.js","layer":"app-pages-browser"},"startTime":1775659267488,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":14266,"timestamp":6052319580406,"id":5754,"parentId":5407,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/polar/AngleAxis.js","layer":"app-pages-browser"},"startTime":1775659267488,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":82,"timestamp":6052319597180,"id":5787,"parentId":5779,"tags":{},"startTime":1775659267505,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":115,"timestamp":6052319597185,"id":5788,"parentId":5780,"tags":{},"startTime":1775659267505,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":139,"timestamp":6052319597187,"id":5789,"parentId":5781,"tags":{},"startTime":1775659267505,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":163,"timestamp":6052319597189,"id":5790,"parentId":5782,"tags":{},"startTime":1775659267505,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":190,"timestamp":6052319597190,"id":5791,"parentId":5783,"tags":{},"startTime":1775659267505,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":214,"timestamp":6052319597192,"id":5792,"parentId":5784,"tags":{},"startTime":1775659267505,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":239,"timestamp":6052319597193,"id":5793,"parentId":5785,"tags":{},"startTime":1775659267505,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":287,"timestamp":6052319597195,"id":5794,"parentId":5786,"tags":{},"startTime":1775659267505,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":915,"timestamp":6052319597269,"id":5795,"parentId":5779,"tags":{},"startTime":1775659267505,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":884,"timestamp":6052319597302,"id":5796,"parentId":5780,"tags":{},"startTime":1775659267505,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":860,"timestamp":6052319597328,"id":5797,"parentId":5781,"tags":{},"startTime":1775659267505,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":835,"timestamp":6052319597353,"id":5798,"parentId":5782,"tags":{},"startTime":1775659267505,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":806,"timestamp":6052319597382,"id":5799,"parentId":5783,"tags":{},"startTime":1775659267505,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":781,"timestamp":6052319597408,"id":5800,"parentId":5784,"tags":{},"startTime":1775659267505,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":756,"timestamp":6052319597433,"id":5801,"parentId":5785,"tags":{},"startTime":1775659267505,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":706,"timestamp":6052319597484,"id":5802,"parentId":5786,"tags":{},"startTime":1775659267505,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":1844,"timestamp":6052319596775,"id":5779,"parentId":5419,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/fourPointsTransform.js","layer":"app-pages-browser"},"startTime":1775659267505,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":1886,"timestamp":6052319596877,"id":5780,"parentId":5415,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/single/SingleAxis.js","layer":"app-pages-browser"},"startTime":1775659267505,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":1981,"timestamp":6052319596928,"id":5781,"parentId":5416,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/parallel/ParallelAxis.js","layer":"app-pages-browser"},"startTime":1775659267505,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":2234,"timestamp":6052319596969,"id":5782,"parentId":5413,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/fix/nanhai.js","layer":"app-pages-browser"},"startTime":1775659267505,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":3194,"timestamp":6052319597005,"id":5783,"parentId":5413,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/fix/textCoord.js","layer":"app-pages-browser"},"startTime":1775659267505,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":3438,"timestamp":6052319597041,"id":5784,"parentId":5413,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/fix/diaoyuIsland.js","layer":"app-pages-browser"},"startTime":1775659267505,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":4788,"timestamp":6052319597077,"id":5785,"parentId":5412,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/tool/parseSVG.js","layer":"app-pages-browser"},"startTime":1775659267505,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":4843,"timestamp":6052319597111,"id":5786,"parentId":5412,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/tool/parseXML.js","layer":"app-pages-browser"},"startTime":1775659267505,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":159,"timestamp":6052319603832,"id":5809,"parentId":5803,"tags":{},"startTime":1775659267512,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":188,"timestamp":6052319603842,"id":5810,"parentId":5804,"tags":{},"startTime":1775659267512,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":211,"timestamp":6052319603846,"id":5811,"parentId":5805,"tags":{},"startTime":1775659267512,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":234,"timestamp":6052319603849,"id":5812,"parentId":5806,"tags":{},"startTime":1775659267512,"traceId":"63571fab0751eb1f"}]
-[{"name":"read-resource","duration":405,"timestamp":6052319603852,"id":5813,"parentId":5807,"tags":{},"startTime":1775659267512,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":437,"timestamp":6052319603854,"id":5814,"parentId":5808,"tags":{},"startTime":1775659267512,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":2030,"timestamp":6052319603999,"id":5815,"parentId":5803,"tags":{},"startTime":1775659267512,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":2000,"timestamp":6052319604033,"id":5816,"parentId":5804,"tags":{},"startTime":1775659267512,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":1975,"timestamp":6052319604059,"id":5817,"parentId":5805,"tags":{},"startTime":1775659267512,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":1806,"timestamp":6052319604231,"id":5818,"parentId":5806,"tags":{},"startTime":1775659267512,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":1779,"timestamp":6052319604260,"id":5819,"parentId":5807,"tags":{},"startTime":1775659267512,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":1745,"timestamp":6052319604295,"id":5820,"parentId":5808,"tags":{},"startTime":1775659267512,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":3149,"timestamp":6052319603194,"id":5803,"parentId":5601,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/animation/Clip.js","layer":"app-pages-browser"},"startTime":1775659267511,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":3503,"timestamp":6052319603267,"id":5804,"parentId":5601,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/animation/easing.js","layer":"app-pages-browser"},"startTime":1775659267511,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":3643,"timestamp":6052319603313,"id":5805,"parentId":5601,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/animation/cubicEasing.js","layer":"app-pages-browser"},"startTime":1775659267511,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":3651,"timestamp":6052319603356,"id":5806,"parentId":5620,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/cssClassId.js","layer":"app-pages-browser"},"startTime":1775659267511,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":4159,"timestamp":6052319603407,"id":5807,"parentId":5605,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/AxisProxy.js","layer":"app-pages-browser"},"startTime":1775659267511,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":4099,"timestamp":6052319603646,"id":5808,"parentId":5616,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/helper/smoothBezier.js","layer":"app-pages-browser"},"startTime":1775659267511,"traceId":"63571fab0751eb1f"},{"name":"read-resource","duration":358,"timestamp":6052319611649,"id":5822,"parentId":5821,"tags":{},"startTime":1775659267519,"traceId":"63571fab0751eb1f"},{"name":"next-swc-loader","duration":49,"timestamp":6052319612013,"id":5823,"parentId":5821,"tags":{},"startTime":1775659267520,"traceId":"63571fab0751eb1f"},{"name":"build-module-js","duration":5008,"timestamp":6052319611564,"id":5821,"parentId":5202,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/buffer/index.js","layer":"app-pages-browser"},"startTime":1775659267519,"traceId":"63571fab0751eb1f"},{"name":"add-entry","duration":1021597,"timestamp":6052318595085,"id":4139,"parentId":4128,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2Fstock%2F%5Bcode%5D%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1775659266503,"traceId":"63571fab0751eb1f"},{"name":"make","duration":1026177,"timestamp":6052318590629,"id":4128,"parentId":4127,"tags":{},"startTime":1775659266499,"traceId":"63571fab0751eb1f"},{"name":"chunk-graph","duration":5741,"timestamp":6052319636970,"id":5825,"parentId":5824,"tags":{},"startTime":1775659267545,"traceId":"63571fab0751eb1f"},{"name":"optimize-modules","duration":5,"timestamp":6052319642733,"id":5827,"parentId":5824,"tags":{},"startTime":1775659267551,"traceId":"63571fab0751eb1f"},{"name":"optimize-chunks","duration":340,"timestamp":6052319642830,"id":5828,"parentId":5824,"tags":{},"startTime":1775659267551,"traceId":"63571fab0751eb1f"},{"name":"optimize-tree","duration":6,"timestamp":6052319643185,"id":5829,"parentId":5824,"tags":{},"startTime":1775659267551,"traceId":"63571fab0751eb1f"},{"name":"optimize-chunk-modules","duration":4,"timestamp":6052319643214,"id":5830,"parentId":5824,"tags":{},"startTime":1775659267551,"traceId":"63571fab0751eb1f"},{"name":"optimize","duration":2503,"timestamp":6052319642726,"id":5826,"parentId":5824,"tags":{},"startTime":1775659267551,"traceId":"63571fab0751eb1f"},{"name":"module-hash","duration":5184,"timestamp":6052319652161,"id":5831,"parentId":5824,"tags":{},"startTime":1775659267560,"traceId":"63571fab0751eb1f"},{"name":"code-generation","duration":49689,"timestamp":6052319657357,"id":5832,"parentId":5824,"tags":{},"startTime":1775659267565,"traceId":"63571fab0751eb1f"},{"name":"hash","duration":17281,"timestamp":6052319710844,"id":5833,"parentId":5824,"tags":{},"startTime":1775659267619,"traceId":"63571fab0751eb1f"},{"name":"code-generation-jobs","duration":180,"timestamp":6052319728124,"id":5834,"parentId":5824,"tags":{},"startTime":1775659267636,"traceId":"63571fab0751eb1f"},{"name":"module-assets","duration":154,"timestamp":6052319728293,"id":5835,"parentId":5824,"tags":{},"startTime":1775659267636,"traceId":"63571fab0751eb1f"},{"name":"create-chunk-assets","duration":110112,"timestamp":6052319728452,"id":5836,"parentId":5824,"tags":{},"startTime":1775659267636,"traceId":"63571fab0751eb1f"},{"name":"NextJsBuildManifest-generateClientManifest","duration":236,"timestamp":6052319840471,"id":5838,"parentId":4127,"tags":{},"startTime":1775659267748,"traceId":"63571fab0751eb1f"},{"name":"NextJsBuildManifest-createassets","duration":436,"timestamp":6052319840274,"id":5837,"parentId":4127,"tags":{},"startTime":1775659267748,"traceId":"63571fab0751eb1f"},{"name":"seal","duration":212588,"timestamp":6052319630191,"id":5824,"parentId":4127,"tags":{},"startTime":1775659267538,"traceId":"63571fab0751eb1f"},{"name":"webpack-compilation","duration":1252895,"timestamp":6052318589946,"id":4127,"parentId":2431,"tags":{"name":"client"},"startTime":1775659266498,"traceId":"63571fab0751eb1f"},{"name":"emit","duration":30183,"timestamp":6052319842880,"id":5839,"parentId":2431,"tags":{},"startTime":1775659267751,"traceId":"63571fab0751eb1f"},{"name":"compile-path","duration":2909147,"timestamp":6052316965020,"id":2412,"tags":{"trigger":"/stock/[code]","isTurbopack":false},"startTime":1775659264873,"traceId":"63571fab0751eb1f"},{"name":"webpack-invalidated-client","duration":2703303,"timestamp":6052317171397,"id":2431,"parentId":3,"tags":{"trigger":"manual"},"startTime":1775659265080,"traceId":"63571fab0751eb1f"}]
+[{"name":"hot-reloader","duration":24,"timestamp":6228318817581,"id":3,"tags":{"version":"14.2.35","isTurbopack":false},"startTime":1775835266422,"traceId":"48e10e41d80a3d75"},{"name":"start","duration":0,"timestamp":6228318818014,"id":4,"parentId":3,"tags":{},"startTime":1775835266422,"traceId":"48e10e41d80a3d75"},{"name":"get-version-info","duration":641471,"timestamp":6228318818108,"id":5,"parentId":4,"tags":{},"startTime":1775835266422,"traceId":"48e10e41d80a3d75"},{"name":"clean","duration":14188,"timestamp":6228319459684,"id":6,"parentId":4,"tags":{},"startTime":1775835267064,"traceId":"48e10e41d80a3d75"},{"name":"create-pages-mapping","duration":126,"timestamp":6228319474823,"id":8,"parentId":7,"tags":{},"startTime":1775835267079,"traceId":"48e10e41d80a3d75"},{"name":"create-entrypoints","duration":707505,"timestamp":6228319475048,"id":9,"parentId":7,"tags":{},"startTime":1775835267079,"traceId":"48e10e41d80a3d75"},{"name":"generate-webpack-config","duration":61639,"timestamp":6228320182585,"id":10,"parentId":7,"tags":{},"startTime":1775835267787,"traceId":"48e10e41d80a3d75"},{"name":"get-webpack-config","duration":769469,"timestamp":6228319474767,"id":7,"parentId":4,"tags":{},"startTime":1775835267079,"traceId":"48e10e41d80a3d75"},{"name":"make","duration":493,"timestamp":6228320282161,"id":12,"parentId":11,"tags":{},"startTime":1775835267886,"traceId":"48e10e41d80a3d75"},{"name":"chunk-graph","duration":317,"timestamp":6228320283592,"id":14,"parentId":13,"tags":{},"startTime":1775835267888,"traceId":"48e10e41d80a3d75"},{"name":"optimize-modules","duration":8,"timestamp":6228320283952,"id":16,"parentId":13,"tags":{},"startTime":1775835267888,"traceId":"48e10e41d80a3d75"},{"name":"optimize-chunks","duration":58,"timestamp":6228320284037,"id":17,"parentId":13,"tags":{},"startTime":1775835267888,"traceId":"48e10e41d80a3d75"},{"name":"optimize-tree","duration":12,"timestamp":6228320284118,"id":18,"parentId":13,"tags":{},"startTime":1775835267888,"traceId":"48e10e41d80a3d75"},{"name":"optimize-chunk-modules","duration":10,"timestamp":6228320284200,"id":19,"parentId":13,"tags":{},"startTime":1775835267888,"traceId":"48e10e41d80a3d75"},{"name":"optimize","duration":321,"timestamp":6228320283934,"id":15,"parentId":13,"tags":{},"startTime":1775835267888,"traceId":"48e10e41d80a3d75"},{"name":"module-hash","duration":39,"timestamp":6228320284529,"id":20,"parentId":13,"tags":{},"startTime":1775835267889,"traceId":"48e10e41d80a3d75"},{"name":"code-generation","duration":66,"timestamp":6228320284591,"id":21,"parentId":13,"tags":{},"startTime":1775835267889,"traceId":"48e10e41d80a3d75"},{"name":"hash","duration":194,"timestamp":6228320284768,"id":22,"parentId":13,"tags":{},"startTime":1775835267889,"traceId":"48e10e41d80a3d75"},{"name":"code-generation-jobs","duration":27,"timestamp":6228320284961,"id":23,"parentId":13,"tags":{},"startTime":1775835267889,"traceId":"48e10e41d80a3d75"},{"name":"module-assets","duration":35,"timestamp":6228320284977,"id":24,"parentId":13,"tags":{},"startTime":1775835267889,"traceId":"48e10e41d80a3d75"},{"name":"create-chunk-assets","duration":117,"timestamp":6228320285015,"id":25,"parentId":13,"tags":{},"startTime":1775835267889,"traceId":"48e10e41d80a3d75"},{"name":"NextJsBuildManifest-generateClientManifest","duration":658,"timestamp":6228320305562,"id":27,"parentId":11,"tags":{},"startTime":1775835267910,"traceId":"48e10e41d80a3d75"},{"name":"NextJsBuildManifest-createassets","duration":889,"timestamp":6228320305339,"id":26,"parentId":11,"tags":{},"startTime":1775835267910,"traceId":"48e10e41d80a3d75"},{"name":"seal","duration":23261,"timestamp":6228320283514,"id":13,"parentId":11,"tags":{},"startTime":1775835267888,"traceId":"48e10e41d80a3d75"},{"name":"webpack-compilation","duration":26440,"timestamp":6228320280466,"id":11,"parentId":3,"tags":{"name":"client"},"startTime":1775835267885,"traceId":"48e10e41d80a3d75"},{"name":"emit","duration":2878,"timestamp":6228320307090,"id":28,"parentId":3,"tags":{},"startTime":1775835267911,"traceId":"48e10e41d80a3d75"},{"name":"make","duration":793,"timestamp":6228320314390,"id":30,"parentId":29,"tags":{},"startTime":1775835267919,"traceId":"48e10e41d80a3d75"},{"name":"chunk-graph","duration":40,"timestamp":6228320315381,"id":32,"parentId":31,"tags":{},"startTime":1775835267920,"traceId":"48e10e41d80a3d75"},{"name":"optimize-modules","duration":2,"timestamp":6228320315431,"id":34,"parentId":31,"tags":{},"startTime":1775835267920,"traceId":"48e10e41d80a3d75"},{"name":"optimize-chunks","duration":33,"timestamp":6228320315466,"id":35,"parentId":31,"tags":{},"startTime":1775835267920,"traceId":"48e10e41d80a3d75"},{"name":"optimize-tree","duration":4,"timestamp":6228320315517,"id":36,"parentId":31,"tags":{},"startTime":1775835267920,"traceId":"48e10e41d80a3d75"},{"name":"optimize-chunk-modules","duration":4,"timestamp":6228320315548,"id":37,"parentId":31,"tags":{},"startTime":1775835267920,"traceId":"48e10e41d80a3d75"},{"name":"optimize","duration":149,"timestamp":6228320315428,"id":33,"parentId":31,"tags":{},"startTime":1775835267920,"traceId":"48e10e41d80a3d75"},{"name":"module-hash","duration":4,"timestamp":6228320315659,"id":38,"parentId":31,"tags":{},"startTime":1775835267920,"traceId":"48e10e41d80a3d75"},{"name":"code-generation","duration":3,"timestamp":6228320315668,"id":39,"parentId":31,"tags":{},"startTime":1775835267920,"traceId":"48e10e41d80a3d75"},{"name":"hash","duration":33,"timestamp":6228320315689,"id":40,"parentId":31,"tags":{},"startTime":1775835267920,"traceId":"48e10e41d80a3d75"},{"name":"code-generation-jobs","duration":37,"timestamp":6228320315722,"id":41,"parentId":31,"tags":{},"startTime":1775835267920,"traceId":"48e10e41d80a3d75"},{"name":"module-assets","duration":6,"timestamp":6228320315755,"id":42,"parentId":31,"tags":{},"startTime":1775835267920,"traceId":"48e10e41d80a3d75"},{"name":"create-chunk-assets","duration":6,"timestamp":6228320315765,"id":43,"parentId":31,"tags":{},"startTime":1775835267920,"traceId":"48e10e41d80a3d75"},{"name":"seal","duration":821,"timestamp":6228320315361,"id":31,"parentId":29,"tags":{},"startTime":1775835267920,"traceId":"48e10e41d80a3d75"},{"name":"webpack-compilation","duration":2511,"timestamp":6228320313733,"id":29,"parentId":3,"tags":{"name":"server"},"startTime":1775835267918,"traceId":"48e10e41d80a3d75"},{"name":"emit","duration":2966,"timestamp":6228320316300,"id":44,"parentId":3,"tags":{},"startTime":1775835267920,"traceId":"48e10e41d80a3d75"},{"name":"make","duration":84,"timestamp":6228320321946,"id":46,"parentId":45,"tags":{},"startTime":1775835267926,"traceId":"48e10e41d80a3d75"},{"name":"chunk-graph","duration":11,"timestamp":6228320322299,"id":48,"parentId":47,"tags":{},"startTime":1775835267926,"traceId":"48e10e41d80a3d75"},{"name":"optimize-modules","duration":2,"timestamp":6228320322318,"id":50,"parentId":47,"tags":{},"startTime":1775835267926,"traceId":"48e10e41d80a3d75"},{"name":"optimize-chunks","duration":5,"timestamp":6228320322357,"id":51,"parentId":47,"tags":{},"startTime":1775835267927,"traceId":"48e10e41d80a3d75"},{"name":"optimize-tree","duration":2,"timestamp":6228320322368,"id":52,"parentId":47,"tags":{},"startTime":1775835267927,"traceId":"48e10e41d80a3d75"},{"name":"optimize-chunk-modules","duration":2,"timestamp":6228320322382,"id":53,"parentId":47,"tags":{},"startTime":1775835267927,"traceId":"48e10e41d80a3d75"},{"name":"optimize","duration":76,"timestamp":6228320322316,"id":49,"parentId":47,"tags":{},"startTime":1775835267926,"traceId":"48e10e41d80a3d75"},{"name":"module-hash","duration":3,"timestamp":6228320322435,"id":54,"parentId":47,"tags":{},"startTime":1775835267927,"traceId":"48e10e41d80a3d75"},{"name":"code-generation","duration":3,"timestamp":6228320322442,"id":55,"parentId":47,"tags":{},"startTime":1775835267927,"traceId":"48e10e41d80a3d75"},{"name":"hash","duration":36,"timestamp":6228320322467,"id":56,"parentId":47,"tags":{},"startTime":1775835267927,"traceId":"48e10e41d80a3d75"},{"name":"code-generation-jobs","duration":8,"timestamp":6228320322504,"id":57,"parentId":47,"tags":{},"startTime":1775835267927,"traceId":"48e10e41d80a3d75"},{"name":"module-assets","duration":3,"timestamp":6228320322509,"id":58,"parentId":47,"tags":{},"startTime":1775835267927,"traceId":"48e10e41d80a3d75"},{"name":"create-chunk-assets","duration":5,"timestamp":6228320322515,"id":59,"parentId":47,"tags":{},"startTime":1775835267927,"traceId":"48e10e41d80a3d75"},{"name":"seal","duration":481,"timestamp":6228320322284,"id":47,"parentId":45,"tags":{},"startTime":1775835267926,"traceId":"48e10e41d80a3d75"},{"name":"webpack-compilation","duration":1552,"timestamp":6228320321230,"id":45,"parentId":3,"tags":{"name":"edge-server"},"startTime":1775835267925,"traceId":"48e10e41d80a3d75"},{"name":"emit","duration":507,"timestamp":6228320322799,"id":60,"parentId":3,"tags":{},"startTime":1775835267927,"traceId":"48e10e41d80a3d75"}]
+[{"name":"make","duration":232,"timestamp":6228320541527,"id":65,"parentId":64,"tags":{},"startTime":1775835268146,"traceId":"48e10e41d80a3d75"},{"name":"chunk-graph","duration":24,"timestamp":6228320541891,"id":67,"parentId":66,"tags":{},"startTime":1775835268146,"traceId":"48e10e41d80a3d75"},{"name":"optimize-modules","duration":5,"timestamp":6228320541935,"id":69,"parentId":66,"tags":{},"startTime":1775835268146,"traceId":"48e10e41d80a3d75"},{"name":"optimize-chunks","duration":7,"timestamp":6228320541952,"id":70,"parentId":66,"tags":{},"startTime":1775835268146,"traceId":"48e10e41d80a3d75"},{"name":"optimize-tree","duration":4,"timestamp":6228320541971,"id":71,"parentId":66,"tags":{},"startTime":1775835268146,"traceId":"48e10e41d80a3d75"},{"name":"optimize-chunk-modules","duration":3,"timestamp":6228320541994,"id":72,"parentId":66,"tags":{},"startTime":1775835268146,"traceId":"48e10e41d80a3d75"},{"name":"optimize","duration":94,"timestamp":6228320541922,"id":68,"parentId":66,"tags":{},"startTime":1775835268146,"traceId":"48e10e41d80a3d75"},{"name":"module-hash","duration":11,"timestamp":6228320542149,"id":73,"parentId":66,"tags":{},"startTime":1775835268146,"traceId":"48e10e41d80a3d75"},{"name":"code-generation","duration":6,"timestamp":6228320542172,"id":74,"parentId":66,"tags":{},"startTime":1775835268146,"traceId":"48e10e41d80a3d75"},{"name":"hash","duration":46,"timestamp":6228320542205,"id":75,"parentId":66,"tags":{},"startTime":1775835268146,"traceId":"48e10e41d80a3d75"},{"name":"code-generation-jobs","duration":14,"timestamp":6228320542251,"id":76,"parentId":66,"tags":{},"startTime":1775835268146,"traceId":"48e10e41d80a3d75"},{"name":"module-assets","duration":6,"timestamp":6228320542261,"id":77,"parentId":66,"tags":{},"startTime":1775835268146,"traceId":"48e10e41d80a3d75"},{"name":"create-chunk-assets","duration":11,"timestamp":6228320542270,"id":78,"parentId":66,"tags":{},"startTime":1775835268146,"traceId":"48e10e41d80a3d75"},{"name":"NextJsBuildManifest-generateClientManifest","duration":242,"timestamp":6228320542640,"id":80,"parentId":64,"tags":{},"startTime":1775835268147,"traceId":"48e10e41d80a3d75"},{"name":"NextJsBuildManifest-createassets","duration":357,"timestamp":6228320542528,"id":79,"parentId":64,"tags":{},"startTime":1775835268147,"traceId":"48e10e41d80a3d75"},{"name":"seal","duration":1136,"timestamp":6228320541863,"id":66,"parentId":64,"tags":{},"startTime":1775835268146,"traceId":"48e10e41d80a3d75"},{"name":"webpack-compilation","duration":2087,"timestamp":6228320541000,"id":64,"parentId":61,"tags":{"name":"client"},"startTime":1775835268145,"traceId":"48e10e41d80a3d75"},{"name":"setup-dev-bundler","duration":1861177,"timestamp":6228318711999,"id":2,"parentId":1,"tags":{},"startTime":1775835266316,"traceId":"48e10e41d80a3d75"},{"name":"emit","duration":30672,"timestamp":6228320543110,"id":81,"parentId":61,"tags":{},"startTime":1775835268147,"traceId":"48e10e41d80a3d75"},{"name":"webpack-invalidated-client","duration":37145,"timestamp":6228320537274,"id":61,"parentId":3,"tags":{"trigger":"manual"},"startTime":1775835268141,"traceId":"48e10e41d80a3d75"},{"name":"make","duration":186,"timestamp":6228320575625,"id":83,"parentId":82,"tags":{},"startTime":1775835268180,"traceId":"48e10e41d80a3d75"},{"name":"chunk-graph","duration":19,"timestamp":6228320575897,"id":85,"parentId":84,"tags":{},"startTime":1775835268180,"traceId":"48e10e41d80a3d75"},{"name":"optimize-modules","duration":2,"timestamp":6228320575925,"id":87,"parentId":84,"tags":{},"startTime":1775835268180,"traceId":"48e10e41d80a3d75"},{"name":"optimize-chunks","duration":88,"timestamp":6228320575963,"id":88,"parentId":84,"tags":{},"startTime":1775835268180,"traceId":"48e10e41d80a3d75"},{"name":"optimize-tree","duration":3,"timestamp":6228320576058,"id":89,"parentId":84,"tags":{},"startTime":1775835268180,"traceId":"48e10e41d80a3d75"},{"name":"optimize-chunk-modules","duration":2,"timestamp":6228320576072,"id":90,"parentId":84,"tags":{},"startTime":1775835268180,"traceId":"48e10e41d80a3d75"},{"name":"optimize","duration":166,"timestamp":6228320575922,"id":86,"parentId":84,"tags":{},"startTime":1775835268180,"traceId":"48e10e41d80a3d75"},{"name":"module-hash","duration":4,"timestamp":6228320576216,"id":91,"parentId":84,"tags":{},"startTime":1775835268180,"traceId":"48e10e41d80a3d75"},{"name":"code-generation","duration":3,"timestamp":6228320576226,"id":92,"parentId":84,"tags":{},"startTime":1775835268180,"traceId":"48e10e41d80a3d75"},{"name":"hash","duration":34,"timestamp":6228320576245,"id":93,"parentId":84,"tags":{},"startTime":1775835268180,"traceId":"48e10e41d80a3d75"},{"name":"code-generation-jobs","duration":10,"timestamp":6228320576279,"id":94,"parentId":84,"tags":{},"startTime":1775835268180,"traceId":"48e10e41d80a3d75"},{"name":"module-assets","duration":5,"timestamp":6228320576285,"id":95,"parentId":84,"tags":{},"startTime":1775835268180,"traceId":"48e10e41d80a3d75"},{"name":"create-chunk-assets","duration":7,"timestamp":6228320576294,"id":96,"parentId":84,"tags":{},"startTime":1775835268180,"traceId":"48e10e41d80a3d75"},{"name":"seal","duration":635,"timestamp":6228320575881,"id":84,"parentId":82,"tags":{},"startTime":1775835268180,"traceId":"48e10e41d80a3d75"},{"name":"webpack-compilation","duration":1311,"timestamp":6228320575225,"id":82,"parentId":62,"tags":{"name":"server"},"startTime":1775835268179,"traceId":"48e10e41d80a3d75"},{"name":"run-instrumentation-hook","duration":26,"timestamp":6228320593667,"id":98,"parentId":1,"tags":{},"startTime":1775835268198,"traceId":"48e10e41d80a3d75"},{"name":"start-dev-server","duration":2198821,"timestamp":6228318401751,"id":1,"tags":{"cpus":"10","platform":"darwin","memory.freeMem":"131317760","memory.totalMem":"17179869184","memory.heapSizeLimit":"8640266240","isTurbopack":false,"memory.rss":"232308736","memory.heapTotal":"105168896","memory.heapUsed":"80920080"},"startTime":1775835266006,"traceId":"48e10e41d80a3d75"},{"name":"emit","duration":24332,"timestamp":6228320576547,"id":97,"parentId":62,"tags":{},"startTime":1775835268181,"traceId":"48e10e41d80a3d75"},{"name":"webpack-invalidated-server","duration":63786,"timestamp":6228320537414,"id":62,"parentId":3,"tags":{"trigger":"manual"},"startTime":1775835268142,"traceId":"48e10e41d80a3d75"},{"name":"make","duration":220,"timestamp":6228320602489,"id":100,"parentId":99,"tags":{},"startTime":1775835268207,"traceId":"48e10e41d80a3d75"},{"name":"chunk-graph","duration":14,"timestamp":6228320602893,"id":102,"parentId":101,"tags":{},"startTime":1775835268207,"traceId":"48e10e41d80a3d75"},{"name":"optimize-modules","duration":2,"timestamp":6228320602917,"id":104,"parentId":101,"tags":{},"startTime":1775835268207,"traceId":"48e10e41d80a3d75"},{"name":"optimize-chunks","duration":5,"timestamp":6228320602927,"id":105,"parentId":101,"tags":{},"startTime":1775835268207,"traceId":"48e10e41d80a3d75"},{"name":"optimize-tree","duration":3,"timestamp":6228320602939,"id":106,"parentId":101,"tags":{},"startTime":1775835268207,"traceId":"48e10e41d80a3d75"},{"name":"optimize-chunk-modules","duration":3,"timestamp":6228320602954,"id":107,"parentId":101,"tags":{},"startTime":1775835268207,"traceId":"48e10e41d80a3d75"},{"name":"optimize","duration":55,"timestamp":6228320602913,"id":103,"parentId":101,"tags":{},"startTime":1775835268207,"traceId":"48e10e41d80a3d75"},{"name":"module-hash","duration":4,"timestamp":6228320603019,"id":108,"parentId":101,"tags":{},"startTime":1775835268207,"traceId":"48e10e41d80a3d75"},{"name":"code-generation","duration":4,"timestamp":6228320603027,"id":109,"parentId":101,"tags":{},"startTime":1775835268207,"traceId":"48e10e41d80a3d75"},{"name":"hash","duration":49,"timestamp":6228320603046,"id":110,"parentId":101,"tags":{},"startTime":1775835268207,"traceId":"48e10e41d80a3d75"},{"name":"code-generation-jobs","duration":9,"timestamp":6228320603095,"id":111,"parentId":101,"tags":{},"startTime":1775835268207,"traceId":"48e10e41d80a3d75"},{"name":"module-assets","duration":4,"timestamp":6228320603102,"id":112,"parentId":101,"tags":{},"startTime":1775835268207,"traceId":"48e10e41d80a3d75"},{"name":"create-chunk-assets","duration":7,"timestamp":6228320603111,"id":113,"parentId":101,"tags":{},"startTime":1775835268207,"traceId":"48e10e41d80a3d75"},{"name":"seal","duration":432,"timestamp":6228320602876,"id":101,"parentId":99,"tags":{},"startTime":1775835268207,"traceId":"48e10e41d80a3d75"},{"name":"webpack-compilation","duration":1253,"timestamp":6228320602072,"id":99,"parentId":63,"tags":{"name":"edge-server"},"startTime":1775835268206,"traceId":"48e10e41d80a3d75"},{"name":"emit","duration":4034,"timestamp":6228320603336,"id":114,"parentId":63,"tags":{},"startTime":1775835268208,"traceId":"48e10e41d80a3d75"},{"name":"webpack-invalidated-edge-server","duration":70391,"timestamp":6228320537439,"id":63,"parentId":3,"tags":{"trigger":"manual"},"startTime":1775835268142,"traceId":"48e10e41d80a3d75"}]
+[{"name":"build-module","duration":22989,"timestamp":6228324524008,"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%2Fsectors%2Fpage&page=%2Fsectors%2Fpage&appPaths=%2Fsectors%2Fpage&pagePath=private-next-app-dir%2Fsectors%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":1775835272128,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":7541,"timestamp":6228324558779,"id":135,"parentId":134,"tags":{},"startTime":1775835272163,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":7645,"timestamp":6228324558683,"id":134,"parentId":123,"tags":{},"startTime":1775835272163,"traceId":"48e10e41d80a3d75"},{"name":"build-module-tsx","duration":10054,"timestamp":6228324557294,"id":123,"parentId":121,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/sectors/page.tsx","layer":"rsc"},"startTime":1775835272161,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":9416,"timestamp":6228324558662,"id":133,"parentId":132,"tags":{},"startTime":1775835272163,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":9839,"timestamp":6228324558241,"id":132,"parentId":122,"tags":{},"startTime":1775835272162,"traceId":"48e10e41d80a3d75"},{"name":"build-module-tsx","duration":15341,"timestamp":6228324556049,"id":122,"parentId":121,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/layout.tsx","layer":"rsc"},"startTime":1775835272160,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":12610,"timestamp":6228324558817,"id":137,"parentId":136,"tags":{},"startTime":1775835272163,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":12647,"timestamp":6228324558781,"id":136,"parentId":127,"tags":{},"startTime":1775835272163,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":14428,"timestamp":6228324558002,"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":1775835272162,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":13606,"timestamp":6228324558847,"id":139,"parentId":138,"tags":{},"startTime":1775835272163,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":13635,"timestamp":6228324558819,"id":138,"parentId":128,"tags":{},"startTime":1775835272163,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":16252,"timestamp":6228324558047,"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":1775835272162,"traceId":"48e10e41d80a3d75"},{"name":"read-resource","duration":18322,"timestamp":6228324558205,"id":129,"parentId":124,"tags":{},"startTime":1775835272162,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":80,"timestamp":6228324576567,"id":140,"parentId":124,"tags":{},"startTime":1775835272181,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":19861,"timestamp":6228324557406,"id":124,"parentId":121,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/route-kind.js","layer":"rsc"},"startTime":1775835272162,"traceId":"48e10e41d80a3d75"},{"name":"read-resource","duration":19057,"timestamp":6228324558224,"id":130,"parentId":125,"tags":{},"startTime":1775835272162,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":59,"timestamp":6228324577289,"id":141,"parentId":125,"tags":{},"startTime":1775835272181,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":22254,"timestamp":6228324557756,"id":125,"parentId":121,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/app-render/entry-base.js","layer":"rsc"},"startTime":1775835272162,"traceId":"48e10e41d80a3d75"},{"name":"read-resource","duration":24106,"timestamp":6228324558230,"id":131,"parentId":126,"tags":{},"startTime":1775835272162,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":42,"timestamp":6228324582352,"id":142,"parentId":126,"tags":{},"startTime":1775835272187,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":25323,"timestamp":6228324557915,"id":126,"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":1775835272162,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":315,"timestamp":6228324586827,"id":143,"parentId":126,"tags":{"name":"next/dist/compiled/next-server/app-page.runtime.dev.js","layer":null},"startTime":1775835272191,"traceId":"48e10e41d80a3d75"},{"name":"build-module-external","duration":16,"timestamp":6228324588989,"id":147,"parentId":125,"tags":{"name":"../../client/components/static-generation-async-storage.external","layer":null},"startTime":1775835272193,"traceId":"48e10e41d80a3d75"},{"name":"build-module-external","duration":5,"timestamp":6228324589014,"id":148,"parentId":125,"tags":{"name":"../../client/components/request-async-storage.external","layer":null},"startTime":1775835272193,"traceId":"48e10e41d80a3d75"},{"name":"build-module-external","duration":6,"timestamp":6228324589022,"id":149,"parentId":125,"tags":{"name":"../../client/components/action-async-storage.external","layer":null},"startTime":1775835272193,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":4798,"timestamp":6228324589356,"id":159,"parentId":158,"tags":{},"startTime":1775835272194,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":4830,"timestamp":6228324589329,"id":158,"parentId":146,"tags":{},"startTime":1775835272193,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":5760,"timestamp":6228324588940,"id":146,"parentId":125,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/render-from-template-context.js","layer":"rsc"},"startTime":1775835272193,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":5510,"timestamp":6228324589390,"id":161,"parentId":160,"tags":{},"startTime":1775835272194,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":5543,"timestamp":6228324589358,"id":160,"parentId":150,"tags":{},"startTime":1775835272194,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":6074,"timestamp":6228324589031,"id":150,"parentId":125,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/client-page.js","layer":"rsc"},"startTime":1775835272193,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":5787,"timestamp":6228324589327,"id":157,"parentId":156,"tags":{},"startTime":1775835272193,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":5821,"timestamp":6228324589294,"id":156,"parentId":145,"tags":{},"startTime":1775835272193,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":6489,"timestamp":6228324588801,"id":145,"parentId":125,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/layout-router.js","layer":"rsc"},"startTime":1775835272193,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":6006,"timestamp":6228324589291,"id":155,"parentId":154,"tags":{},"startTime":1775835272193,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":6123,"timestamp":6228324589175,"id":154,"parentId":144,"tags":{},"startTime":1775835272193,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":6824,"timestamp":6228324588588,"id":144,"parentId":125,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/app-router.js","layer":"rsc"},"startTime":1775835272193,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":6758,"timestamp":6228324589742,"id":167,"parentId":166,"tags":{},"startTime":1775835272194,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":6783,"timestamp":6228324589719,"id":166,"parentId":153,"tags":{},"startTime":1775835272194,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":7631,"timestamp":6228324589127,"id":153,"parentId":125,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/not-found-boundary.js","layer":"rsc"},"startTime":1775835272193,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":7117,"timestamp":6228324589657,"id":163,"parentId":162,"tags":{},"startTime":1775835272194,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":7302,"timestamp":6228324589473,"id":162,"parentId":151,"tags":{},"startTime":1775835272194,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":8690,"timestamp":6228324589064,"id":151,"parentId":125,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/search-params.js","layer":"rsc"},"startTime":1775835272193,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":8809,"timestamp":6228324589715,"id":165,"parentId":164,"tags":{},"startTime":1775835272194,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":8863,"timestamp":6228324589663,"id":164,"parentId":152,"tags":{},"startTime":1775835272194,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":10806,"timestamp":6228324589096,"id":152,"parentId":125,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/hooks-server-context.js","layer":"rsc"},"startTime":1775835272193,"traceId":"48e10e41d80a3d75"},{"name":"read-resource","duration":9369,"timestamp":6228324594076,"id":169,"parentId":168,"tags":{},"startTime":1775835272198,"traceId":"48e10e41d80a3d75"},{"name":"build-module-css","duration":10516,"timestamp":6228324593302,"id":168,"parentId":122,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/globals.css","layer":"rsc"},"startTime":1775835272197,"traceId":"48e10e41d80a3d75"},{"name":"read-resource","duration":5566,"timestamp":6228324598328,"id":176,"parentId":172,"tags":{},"startTime":1775835272202,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":37,"timestamp":6228324603900,"id":178,"parentId":172,"tags":{},"startTime":1775835272208,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":6079,"timestamp":6228324598138,"id":172,"parentId":125,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/app-render/rsc/postpone.js","layer":"rsc"},"startTime":1775835272202,"traceId":"48e10e41d80a3d75"},{"name":"read-resource","duration":5917,"timestamp":6228324598323,"id":175,"parentId":171,"tags":{},"startTime":1775835272202,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":33,"timestamp":6228324604245,"id":179,"parentId":171,"tags":{},"startTime":1775835272208,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":6694,"timestamp":6228324598072,"id":171,"parentId":125,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/app-render/rsc/preloads.js","layer":"rsc"},"startTime":1775835272202,"traceId":"48e10e41d80a3d75"},{"name":"read-resource","duration":6460,"timestamp":6228324598312,"id":174,"parentId":170,"tags":{},"startTime":1775835272202,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":48,"timestamp":6228324604780,"id":180,"parentId":170,"tags":{},"startTime":1775835272209,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":16178,"timestamp":6228324597976,"id":170,"parentId":125,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/lib/patch-fetch.js","layer":"rsc"},"startTime":1775835272202,"traceId":"48e10e41d80a3d75"},{"name":"read-resource","duration":15845,"timestamp":6228324598333,"id":177,"parentId":173,"tags":{},"startTime":1775835272202,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":47,"timestamp":6228324614198,"id":181,"parentId":173,"tags":{},"startTime":1775835272218,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":16848,"timestamp":6228324598187,"id":173,"parentId":125,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/app-render/rsc/taint.js","layer":"rsc"},"startTime":1775835272202,"traceId":"48e10e41d80a3d75"},{"name":"read-resource","duration":3208,"timestamp":6228324616361,"id":183,"parentId":182,"tags":{},"startTime":1775835272221,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":38,"timestamp":6228324619578,"id":184,"parentId":182,"tags":{},"startTime":1775835272224,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":4727,"timestamp":6228324616252,"id":182,"parentId":151,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/app-render/dynamic-rendering.js","layer":"rsc"},"startTime":1775835272220,"traceId":"48e10e41d80a3d75"},{"name":"read-resource","duration":3547,"timestamp":6228324621310,"id":188,"parentId":186,"tags":{},"startTime":1775835272225,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":34,"timestamp":6228324624871,"id":201,"parentId":186,"tags":{},"startTime":1775835272229,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":4020,"timestamp":6228324621231,"id":186,"parentId":170,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/lib/clone-response.js","layer":"rsc"},"startTime":1775835272225,"traceId":"48e10e41d80a3d75"},{"name":"read-resource","duration":4026,"timestamp":6228324621296,"id":187,"parentId":185,"tags":{},"startTime":1775835272225,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":32,"timestamp":6228324625329,"id":202,"parentId":185,"tags":{},"startTime":1775835272229,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":4977,"timestamp":6228324621134,"id":185,"parentId":170,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/lib/dedupe-fetch.js","layer":"rsc"},"startTime":1775835272225,"traceId":"48e10e41d80a3d75"},{"name":"read-resource","duration":4533,"timestamp":6228324623124,"id":190,"parentId":189,"tags":{},"startTime":1775835272227,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":29,"timestamp":6228324627663,"id":212,"parentId":189,"tags":{},"startTime":1775835272232,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":4811,"timestamp":6228324623051,"id":189,"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":1775835272227,"traceId":"48e10e41d80a3d75"},{"name":"read-resource","duration":5124,"timestamp":6228324623693,"id":200,"parentId":195,"tags":{},"startTime":1775835272228,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":72,"timestamp":6228324628828,"id":215,"parentId":195,"tags":{},"startTime":1775835272233,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":6212,"timestamp":6228324623620,"id":195,"parentId":170,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/output/log.js","layer":"rsc"},"startTime":1775835272228,"traceId":"48e10e41d80a3d75"},{"name":"read-resource","duration":6156,"timestamp":6228324623689,"id":199,"parentId":194,"tags":{},"startTime":1775835272228,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":37,"timestamp":6228324629851,"id":216,"parentId":194,"tags":{},"startTime":1775835272234,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":7107,"timestamp":6228324623576,"id":194,"parentId":170,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/constants.js","layer":"rsc"},"startTime":1775835272228,"traceId":"48e10e41d80a3d75"},{"name":"read-resource","duration":7011,"timestamp":6228324623678,"id":197,"parentId":192,"tags":{},"startTime":1775835272228,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":36,"timestamp":6228324630695,"id":217,"parentId":192,"tags":{},"startTime":1775835272235,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":8122,"timestamp":6228324623461,"id":192,"parentId":170,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/lib/trace/constants.js","layer":"rsc"},"startTime":1775835272228,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":5300,"timestamp":6228324626465,"id":207,"parentId":206,"tags":{},"startTime":1775835272231,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":5329,"timestamp":6228324626438,"id":206,"parentId":204,"tags":{},"startTime":1775835272231,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":5950,"timestamp":6228324626286,"id":204,"parentId":182,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/static-generation-bailout.js","layer":"rsc"},"startTime":1775835272230,"traceId":"48e10e41d80a3d75"},{"name":"read-resource","duration":8584,"timestamp":6228324623684,"id":198,"parentId":193,"tags":{},"startTime":1775835272228,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":36,"timestamp":6228324632274,"id":218,"parentId":193,"tags":{},"startTime":1775835272236,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":11243,"timestamp":6228324623510,"id":193,"parentId":170,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/lib/trace/tracer.js","layer":"rsc"},"startTime":1775835272228,"traceId":"48e10e41d80a3d75"},{"name":"read-resource","duration":11312,"timestamp":6228324623669,"id":196,"parentId":191,"tags":{},"startTime":1775835272228,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":33,"timestamp":6228324634988,"id":219,"parentId":191,"tags":{},"startTime":1775835272239,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":11923,"timestamp":6228324623405,"id":191,"parentId":151,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/web/spec-extension/adapters/reflect.js","layer":"rsc"},"startTime":1775835272228,"traceId":"48e10e41d80a3d75"},{"name":"read-resource","duration":10653,"timestamp":6228324626331,"id":205,"parentId":203,"tags":{},"startTime":1775835272230,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":30,"timestamp":6228324636993,"id":220,"parentId":203,"tags":{},"startTime":1775835272241,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":11479,"timestamp":6228324626198,"id":203,"parentId":182,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/url.js","layer":"rsc"},"startTime":1775835272230,"traceId":"48e10e41d80a3d75"},{"name":"read-resource","duration":10951,"timestamp":6228324627613,"id":210,"parentId":208,"tags":{},"startTime":1775835272232,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":29,"timestamp":6228324638569,"id":229,"parentId":208,"tags":{},"startTime":1775835272243,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":11205,"timestamp":6228324627492,"id":208,"parentId":125,"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":1775835272232,"traceId":"48e10e41d80a3d75"},{"name":"read-resource","duration":10620,"timestamp":6228324628082,"id":214,"parentId":213,"tags":{},"startTime":1775835272232,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":26,"timestamp":6228324638706,"id":230,"parentId":213,"tags":{},"startTime":1775835272243,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":10786,"timestamp":6228324628009,"id":213,"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":1775835272232,"traceId":"48e10e41d80a3d75"},{"name":"read-resource","duration":11218,"timestamp":6228324627622,"id":211,"parentId":209,"tags":{},"startTime":1775835272232,"traceId":"48e10e41d80a3d75"}]
+[{"name":"next-swc-loader","duration":27,"timestamp":6228324638918,"id":231,"parentId":209,"tags":{},"startTime":1775835272243,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":11461,"timestamp":6228324627558,"id":209,"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":1775835272232,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":2186,"timestamp":6228324638482,"id":226,"parentId":225,"tags":{},"startTime":1775835272243,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":2236,"timestamp":6228324638433,"id":225,"parentId":223,"tags":{},"startTime":1775835272243,"traceId":"48e10e41d80a3d75"},{"name":"build-module-tsx","duration":2651,"timestamp":6228324638304,"id":223,"parentId":122,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/hooks/use-auth.tsx","layer":"rsc"},"startTime":1775835272242,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":2446,"timestamp":6228324638517,"id":228,"parentId":227,"tags":{},"startTime":1775835272243,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":2479,"timestamp":6228324638484,"id":227,"parentId":224,"tags":{},"startTime":1775835272243,"traceId":"48e10e41d80a3d75"},{"name":"build-module-tsx","duration":2753,"timestamp":6228324638371,"id":224,"parentId":122,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/user-menu.tsx","layer":"rsc"},"startTime":1775835272243,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":1315,"timestamp":6228324639815,"id":235,"parentId":234,"tags":{},"startTime":1775835272244,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":1354,"timestamp":6228324639777,"id":234,"parentId":232,"tags":{},"startTime":1775835272244,"traceId":"48e10e41d80a3d75"},{"name":"build-module-tsx","duration":1578,"timestamp":6228324639639,"id":232,"parentId":122,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/auth-guard.tsx","layer":"rsc"},"startTime":1775835272244,"traceId":"48e10e41d80a3d75"},{"name":"read-resource","duration":3909,"timestamp":6228324638030,"id":222,"parentId":221,"tags":{},"startTime":1775835272242,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":27,"timestamp":6228324641945,"id":240,"parentId":221,"tags":{},"startTime":1775835272246,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":4108,"timestamp":6228324637946,"id":221,"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":1775835272242,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":2216,"timestamp":6228324639847,"id":237,"parentId":236,"tags":{},"startTime":1775835272244,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":2247,"timestamp":6228324639817,"id":236,"parentId":233,"tags":{},"startTime":1775835272244,"traceId":"48e10e41d80a3d75"},{"name":"build-module-tsx","duration":2493,"timestamp":6228324639705,"id":233,"parentId":122,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/nav.tsx","layer":"rsc"},"startTime":1775835272244,"traceId":"48e10e41d80a3d75"},{"name":"read-resource","duration":1433,"timestamp":6228324641374,"id":239,"parentId":238,"tags":{},"startTime":1775835272246,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":30,"timestamp":6228324642813,"id":241,"parentId":238,"tags":{},"startTime":1775835272247,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":2606,"timestamp":6228324641254,"id":238,"parentId":195,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/picocolors.js","layer":"rsc"},"startTime":1775835272245,"traceId":"48e10e41d80a3d75"},{"name":"read-resource","duration":1487,"timestamp":6228324644614,"id":243,"parentId":242,"tags":{},"startTime":1775835272249,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":29,"timestamp":6228324646108,"id":246,"parentId":242,"tags":{},"startTime":1775835272250,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":1790,"timestamp":6228324644504,"id":242,"parentId":171,"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":1775835272249,"traceId":"48e10e41d80a3d75"},{"name":"read-resource","duration":1434,"timestamp":6228324645855,"id":245,"parentId":244,"tags":{},"startTime":1775835272250,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":31,"timestamp":6228324647297,"id":249,"parentId":244,"tags":{},"startTime":1775835272251,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":2222,"timestamp":6228324645551,"id":244,"parentId":128,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_interop_require_default.js","layer":"rsc"},"startTime":1775835272250,"traceId":"48e10e41d80a3d75"},{"name":"read-resource","duration":1242,"timestamp":6228324646541,"id":248,"parentId":247,"tags":{},"startTime":1775835272251,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":45,"timestamp":6228324647787,"id":250,"parentId":247,"tags":{},"startTime":1775835272252,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":8988,"timestamp":6228324646475,"id":247,"parentId":193,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@opentelemetry/api/index.js","layer":"rsc"},"startTime":1775835272251,"traceId":"48e10e41d80a3d75"},{"name":"add-entry","duration":148612,"timestamp":6228324507696,"id":120,"parentId":119,"tags":{"request":"next-app-loader?name=app%2Fsectors%2Fpage&page=%2Fsectors%2Fpage&appPaths=%2Fsectors%2Fpage&pagePath=private-next-app-dir%2Fsectors%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":1775835272112,"traceId":"48e10e41d80a3d75"},{"name":"build-module","duration":1413,"timestamp":6228324675821,"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?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2Fsectors%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=true!","layer":"ssr"},"startTime":1775835272280,"traceId":"48e10e41d80a3d75"},{"name":"build-module","duration":1317,"timestamp":6228324677260,"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%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%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&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":1775835272281,"traceId":"48e10e41d80a3d75"},{"name":"build-module","duration":1607,"timestamp":6228324678590,"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":1775835272283,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":2623,"timestamp":6228324683730,"id":260,"parentId":259,"tags":{},"startTime":1775835272288,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":2735,"timestamp":6228324683623,"id":259,"parentId":258,"tags":{},"startTime":1775835272288,"traceId":"48e10e41d80a3d75"},{"name":"build-module-tsx","duration":6432,"timestamp":6228324682881,"id":258,"parentId":255,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/sectors/page.tsx","layer":"ssr"},"startTime":1775835272287,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":4204,"timestamp":6228324685838,"id":270,"parentId":269,"tags":{},"startTime":1775835272290,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":4249,"timestamp":6228324685796,"id":269,"parentId":261,"tags":{},"startTime":1775835272290,"traceId":"48e10e41d80a3d75"},{"name":"build-module-tsx","duration":5178,"timestamp":6228324685305,"id":261,"parentId":256,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/auth-guard.tsx","layer":"ssr"},"startTime":1775835272289,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":4642,"timestamp":6228324685869,"id":272,"parentId":271,"tags":{},"startTime":1775835272290,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":4673,"timestamp":6228324685840,"id":271,"parentId":262,"tags":{},"startTime":1775835272290,"traceId":"48e10e41d80a3d75"},{"name":"build-module-tsx","duration":5638,"timestamp":6228324685373,"id":262,"parentId":256,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/user-menu.tsx","layer":"ssr"},"startTime":1775835272290,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":5134,"timestamp":6228324685925,"id":276,"parentId":275,"tags":{},"startTime":1775835272290,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":5163,"timestamp":6228324685899,"id":275,"parentId":264,"tags":{},"startTime":1775835272290,"traceId":"48e10e41d80a3d75"},{"name":"build-module-tsx","duration":6227,"timestamp":6228324685478,"id":264,"parentId":256,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/hooks/use-auth.tsx","layer":"ssr"},"startTime":1775835272290,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":5850,"timestamp":6228324685898,"id":274,"parentId":273,"tags":{},"startTime":1775835272290,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":5878,"timestamp":6228324685871,"id":273,"parentId":263,"tags":{},"startTime":1775835272290,"traceId":"48e10e41d80a3d75"},{"name":"build-module-tsx","duration":7944,"timestamp":6228324685432,"id":263,"parentId":256,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/nav.tsx","layer":"ssr"},"startTime":1775835272290,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":7433,"timestamp":6228324685969,"id":282,"parentId":281,"tags":{},"startTime":1775835272290,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":7442,"timestamp":6228324685961,"id":281,"parentId":267,"tags":{},"startTime":1775835272290,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":8109,"timestamp":6228324685733,"id":267,"parentId":257,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/client-page.js","layer":"ssr"},"startTime":1775835272290,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":7922,"timestamp":6228324685946,"id":278,"parentId":277,"tags":{},"startTime":1775835272290,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":7942,"timestamp":6228324685927,"id":277,"parentId":265,"tags":{},"startTime":1775835272290,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":9115,"timestamp":6228324685519,"id":265,"parentId":257,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/error-boundary.js","layer":"ssr"},"startTime":1775835272290,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":8488,"timestamp":6228324686162,"id":288,"parentId":287,"tags":{},"startTime":1775835272290,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":8500,"timestamp":6228324686151,"id":287,"parentId":285,"tags":{},"startTime":1775835272290,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":8871,"timestamp":6228324686106,"id":285,"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":1775835272290,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":8823,"timestamp":6228324686170,"id":290,"parentId":289,"tags":{},"startTime":1775835272290,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":8832,"timestamp":6228324686163,"id":289,"parentId":286,"tags":{},"startTime":1775835272290,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":9400,"timestamp":6228324686132,"id":286,"parentId":257,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/not-found-boundary.js","layer":"ssr"},"startTime":1775835272290,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":14662,"timestamp":6228324685977,"id":284,"parentId":283,"tags":{},"startTime":1775835272290,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":14672,"timestamp":6228324685970,"id":283,"parentId":268,"tags":{},"startTime":1775835272290,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":16595,"timestamp":6228324685753,"id":268,"parentId":257,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/layout-router.js","layer":"ssr"},"startTime":1775835272290,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":16438,"timestamp":6228324685960,"id":280,"parentId":279,"tags":{},"startTime":1775835272290,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":16448,"timestamp":6228324685951,"id":279,"parentId":266,"tags":{},"startTime":1775835272290,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":18973,"timestamp":6228324685713,"id":266,"parentId":257,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/app-router.js","layer":"ssr"},"startTime":1775835272290,"traceId":"48e10e41d80a3d75"},{"name":"read-resource","duration":72,"timestamp":6228324712056,"id":293,"parentId":291,"tags":{},"startTime":1775835272316,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":29,"timestamp":6228324712137,"id":296,"parentId":291,"tags":{},"startTime":1775835272316,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":714,"timestamp":6228324711694,"id":291,"parentId":265,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_interop_require_default.js","layer":"ssr"},"startTime":1775835272316,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":2480,"timestamp":6228324712089,"id":295,"parentId":294,"tags":{},"startTime":1775835272316,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":2510,"timestamp":6228324712062,"id":294,"parentId":292,"tags":{},"startTime":1775835272316,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":3406,"timestamp":6228324712013,"id":292,"parentId":267,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/search-params.js","layer":"ssr"},"startTime":1775835272316,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":2715,"timestamp":6228324717525,"id":305,"parentId":304,"tags":{},"startTime":1775835272322,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":2728,"timestamp":6228324717517,"id":304,"parentId":299,"tags":{},"startTime":1775835272322,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":3277,"timestamp":6228324717379,"id":299,"parentId":286,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/not-found.js","layer":"ssr"},"startTime":1775835272322,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":3153,"timestamp":6228324717516,"id":303,"parentId":302,"tags":{},"startTime":1775835272322,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":3164,"timestamp":6228324717506,"id":302,"parentId":298,"tags":{},"startTime":1775835272322,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":3662,"timestamp":6228324717350,"id":298,"parentId":265,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/is-next-router-error.js","layer":"ssr"},"startTime":1775835272322,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":4322,"timestamp":6228324717504,"id":301,"parentId":300,"tags":{},"startTime":1775835272322,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":4363,"timestamp":6228324717465,"id":300,"parentId":297,"tags":{},"startTime":1775835272322,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":5285,"timestamp":6228324717272,"id":297,"parentId":265,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/navigation.js","layer":"ssr"},"startTime":1775835272321,"traceId":"48e10e41d80a3d75"},{"name":"read-resource","duration":97,"timestamp":6228324724195,"id":335,"parentId":333,"tags":{},"startTime":1775835272328,"traceId":"48e10e41d80a3d75"},{"name":"read-resource","duration":136,"timestamp":6228324724198,"id":336,"parentId":334,"tags":{},"startTime":1775835272328,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":143,"timestamp":6228324724299,"id":337,"parentId":333,"tags":{},"startTime":1775835272328,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":106,"timestamp":6228324724337,"id":338,"parentId":334,"tags":{},"startTime":1775835272328,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":935,"timestamp":6228324724059,"id":333,"parentId":292,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/app-render/dynamic-rendering.js","layer":"ssr"},"startTime":1775835272328,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":1012,"timestamp":6228324724132,"id":334,"parentId":292,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/web/spec-extension/adapters/reflect.js","layer":"ssr"},"startTime":1775835272328,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":4608,"timestamp":6228324721576,"id":320,"parentId":319,"tags":{},"startTime":1775835272326,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":4622,"timestamp":6228324721564,"id":319,"parentId":308,"tags":{},"startTime":1775835272326,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":5193,"timestamp":6228324721275,"id":308,"parentId":266,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/has-base-path.js","layer":"ssr"},"startTime":1775835272325,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":4917,"timestamp":6228324721563,"id":318,"parentId":317,"tags":{},"startTime":1775835272326,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":4927,"timestamp":6228324721553,"id":317,"parentId":307,"tags":{},"startTime":1775835272326,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":5441,"timestamp":6228324721247,"id":307,"parentId":266,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/remove-base-path.js","layer":"ssr"},"startTime":1775835272325,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":5146,"timestamp":6228324721551,"id":316,"parentId":315,"tags":{},"startTime":1775835272326,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":5171,"timestamp":6228324721527,"id":315,"parentId":306,"tags":{},"startTime":1775835272326,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":5704,"timestamp":6228324721183,"id":306,"parentId":266,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/add-base-path.js","layer":"ssr"},"startTime":1775835272325,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":5310,"timestamp":6228324721584,"id":322,"parentId":321,"tags":{},"startTime":1775835272326,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":5318,"timestamp":6228324721577,"id":321,"parentId":309,"tags":{},"startTime":1775835272326,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":5738,"timestamp":6228324721297,"id":309,"parentId":268,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/unresolved-thenable.js","layer":"ssr"},"startTime":1775835272325,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":5450,"timestamp":6228324721594,"id":324,"parentId":323,"tags":{},"startTime":1775835272326,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":5459,"timestamp":6228324721586,"id":323,"parentId":310,"tags":{},"startTime":1775835272326,"traceId":"48e10e41d80a3d75"}]
+[{"name":"build-module-js","duration":6061,"timestamp":6228324721318,"id":310,"parentId":268,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/match-segments.js","layer":"ssr"},"startTime":1775835272325,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":5790,"timestamp":6228324721602,"id":326,"parentId":325,"tags":{},"startTime":1775835272326,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":5797,"timestamp":6228324721595,"id":325,"parentId":311,"tags":{},"startTime":1775835272326,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":6361,"timestamp":6228324721338,"id":311,"parentId":268,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/redirect-boundary.js","layer":"ssr"},"startTime":1775835272326,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":7903,"timestamp":6228324721618,"id":330,"parentId":329,"tags":{},"startTime":1775835272326,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":7912,"timestamp":6228324721611,"id":329,"parentId":313,"tags":{},"startTime":1775835272326,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":8519,"timestamp":6228324721378,"id":313,"parentId":266,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/app-router-announcer.js","layer":"ssr"},"startTime":1775835272326,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":8322,"timestamp":6228324721610,"id":328,"parentId":327,"tags":{},"startTime":1775835272326,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":8331,"timestamp":6228324721603,"id":327,"parentId":312,"tags":{},"startTime":1775835272326,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":9212,"timestamp":6228324721358,"id":312,"parentId":266,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/use-reducer-with-devtools.js","layer":"ssr"},"startTime":1775835272326,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":9049,"timestamp":6228324721635,"id":332,"parentId":331,"tags":{},"startTime":1775835272326,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":9067,"timestamp":6228324721619,"id":331,"parentId":314,"tags":{},"startTime":1775835272326,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":9670,"timestamp":6228324721397,"id":314,"parentId":266,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/app-router-headers.js","layer":"ssr"},"startTime":1775835272326,"traceId":"48e10e41d80a3d75"},{"name":"read-resource","duration":221,"timestamp":6228324751590,"id":375,"parentId":369,"tags":{},"startTime":1775835272356,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":36,"timestamp":6228324751825,"id":386,"parentId":369,"tags":{},"startTime":1775835272356,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":6674,"timestamp":6228324751281,"id":369,"parentId":333,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/url.js","layer":"ssr"},"startTime":1775835272355,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":15247,"timestamp":6228324742771,"id":352,"parentId":351,"tags":{},"startTime":1775835272347,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":15257,"timestamp":6228324742763,"id":351,"parentId":341,"tags":{},"startTime":1775835272347,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":16730,"timestamp":6228324742213,"id":341,"parentId":266,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/router-reducer-types.js","layer":"ssr"},"startTime":1775835272346,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":16310,"timestamp":6228324742762,"id":350,"parentId":349,"tags":{},"startTime":1775835272347,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":16322,"timestamp":6228324742752,"id":349,"parentId":340,"tags":{},"startTime":1775835272347,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":17263,"timestamp":6228324742184,"id":340,"parentId":268,"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":1775835272346,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":16684,"timestamp":6228324742779,"id":354,"parentId":353,"tags":{},"startTime":1775835272347,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":16693,"timestamp":6228324742772,"id":353,"parentId":342,"tags":{},"startTime":1775835272347,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":17429,"timestamp":6228324742235,"id":342,"parentId":266,"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":1775835272346,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":17333,"timestamp":6228324742749,"id":348,"parentId":347,"tags":{},"startTime":1775835272347,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":17364,"timestamp":6228324742720,"id":347,"parentId":339,"tags":{},"startTime":1775835272347,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":25185,"timestamp":6228324742100,"id":339,"parentId":268,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/fetch-server-response.js","layer":"ssr"},"startTime":1775835272346,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":27862,"timestamp":6228324742787,"id":356,"parentId":355,"tags":{},"startTime":1775835272347,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":27876,"timestamp":6228324742780,"id":355,"parentId":343,"tags":{},"startTime":1775835272347,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":28975,"timestamp":6228324742255,"id":343,"parentId":266,"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":1775835272346,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":32679,"timestamp":6228324742795,"id":358,"parentId":357,"tags":{},"startTime":1775835272347,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":32691,"timestamp":6228324742788,"id":357,"parentId":344,"tags":{},"startTime":1775835272347,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":36178,"timestamp":6228324742274,"id":344,"parentId":268,"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":1775835272346,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":35673,"timestamp":6228324742811,"id":362,"parentId":361,"tags":{},"startTime":1775835272347,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":35682,"timestamp":6228324742804,"id":361,"parentId":346,"tags":{},"startTime":1775835272347,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":36519,"timestamp":6228324742364,"id":346,"parentId":266,"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":1775835272347,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":36092,"timestamp":6228324742803,"id":360,"parentId":359,"tags":{},"startTime":1775835272347,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":36100,"timestamp":6228324742796,"id":359,"parentId":345,"tags":{},"startTime":1775835272347,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":36805,"timestamp":6228324742344,"id":345,"parentId":268,"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":1775835272347,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":27984,"timestamp":6228324751176,"id":368,"parentId":367,"tags":{},"startTime":1775835272355,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":27995,"timestamp":6228324751166,"id":367,"parentId":364,"tags":{},"startTime":1775835272355,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":28228,"timestamp":6228324751071,"id":364,"parentId":286,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/utils/warn-once.js","layer":"ssr"},"startTime":1775835272355,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":29353,"timestamp":6228324751164,"id":366,"parentId":365,"tags":{},"startTime":1775835272355,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":29383,"timestamp":6228324751136,"id":365,"parentId":363,"tags":{},"startTime":1775835272355,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":33566,"timestamp":6228324750999,"id":363,"parentId":266,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/segment.js","layer":"ssr"},"startTime":1775835272355,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":32944,"timestamp":6228324751644,"id":379,"parentId":378,"tags":{},"startTime":1775835272356,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":32958,"timestamp":6228324751632,"id":378,"parentId":371,"tags":{},"startTime":1775835272356,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":33546,"timestamp":6228324751415,"id":371,"parentId":333,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/static-generation-bailout.js","layer":"ssr"},"startTime":1775835272356,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":33314,"timestamp":6228324751663,"id":383,"parentId":382,"tags":{},"startTime":1775835272356,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":33323,"timestamp":6228324751656,"id":382,"parentId":373,"tags":{},"startTime":1775835272356,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":34097,"timestamp":6228324751496,"id":373,"parentId":266,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/is-bot.js","layer":"ssr"},"startTime":1775835272356,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":35239,"timestamp":6228324751654,"id":381,"parentId":380,"tags":{},"startTime":1775835272356,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":35257,"timestamp":6228324751645,"id":380,"parentId":372,"tags":{},"startTime":1775835272356,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":35830,"timestamp":6228324751437,"id":372,"parentId":268,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/handle-smooth-scroll.js","layer":"ssr"},"startTime":1775835272356,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":35653,"timestamp":6228324751630,"id":377,"parentId":376,"tags":{},"startTime":1775835272356,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":35687,"timestamp":6228324751597,"id":376,"parentId":370,"tags":{},"startTime":1775835272356,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":36857,"timestamp":6228324751384,"id":370,"parentId":333,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/hooks-server-context.js","layer":"ssr"},"startTime":1775835272356,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":53611,"timestamp":6228324751673,"id":385,"parentId":384,"tags":{},"startTime":1775835272356,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":53628,"timestamp":6228324751665,"id":384,"parentId":374,"tags":{},"startTime":1775835272356,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":57702,"timestamp":6228324751552,"id":374,"parentId":266,"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":1775835272356,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":8835,"timestamp":6228324803521,"id":395,"parentId":394,"tags":{},"startTime":1775835272408,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":8851,"timestamp":6228324803510,"id":394,"parentId":389,"tags":{},"startTime":1775835272408,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":9388,"timestamp":6228324803372,"id":389,"parentId":297,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/navigation.react-server.js","layer":"ssr"},"startTime":1775835272408,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":9240,"timestamp":6228324803532,"id":397,"parentId":396,"tags":{},"startTime":1775835272408,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":9251,"timestamp":6228324803522,"id":396,"parentId":390,"tags":{},"startTime":1775835272408,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":9615,"timestamp":6228324803399,"id":390,"parentId":297,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/bailout-to-client-rendering.js","layer":"ssr"},"startTime":1775835272408,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":9522,"timestamp":6228324803507,"id":393,"parentId":392,"tags":{},"startTime":1775835272408,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":9565,"timestamp":6228324803465,"id":392,"parentId":387,"tags":{},"startTime":1775835272408,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":10331,"timestamp":6228324803145,"id":387,"parentId":298,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/redirect.js","layer":"ssr"},"startTime":1775835272407,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":1965,"timestamp":6228324818092,"id":407,"parentId":406,"tags":{},"startTime":1775835272422,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":1981,"timestamp":6228324818080,"id":406,"parentId":400,"tags":{},"startTime":1775835272422,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":5033,"timestamp":6228324815276,"id":400,"parentId":308,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/path-has-prefix.js","layer":"ssr"},"startTime":1775835272419,"traceId":"48e10e41d80a3d75"},{"name":"read-resource","duration":17645,"timestamp":6228324803435,"id":391,"parentId":388,"tags":{},"startTime":1775835272408,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":30,"timestamp":6228324821086,"id":435,"parentId":388,"tags":{},"startTime":1775835272425,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":17914,"timestamp":6228324803297,"id":388,"parentId":265,"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":1775835272407,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":3151,"timestamp":6228324818075,"id":405,"parentId":404,"tags":{},"startTime":1775835272422,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":3189,"timestamp":6228324818038,"id":404,"parentId":398,"tags":{},"startTime":1775835272422,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":6890,"timestamp":6228324815121,"id":398,"parentId":306,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/normalize-trailing-slash.js","layer":"ssr"},"startTime":1775835272419,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":3942,"timestamp":6228324818122,"id":411,"parentId":410,"tags":{},"startTime":1775835272422,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":3964,"timestamp":6228324818104,"id":410,"parentId":402,"tags":{},"startTime":1775835272422,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":6944,"timestamp":6228324815388,"id":402,"parentId":306,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/add-path-prefix.js","layer":"ssr"},"startTime":1775835272420,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":5239,"timestamp":6228324818102,"id":409,"parentId":408,"tags":{},"startTime":1775835272422,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":5250,"timestamp":6228324818093,"id":408,"parentId":401,"tags":{},"startTime":1775835272422,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":8602,"timestamp":6228324815360,"id":401,"parentId":312,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/action-queue.js","layer":"ssr"},"startTime":1775835272420,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":4056,"timestamp":6228324819919,"id":426,"parentId":425,"tags":{},"startTime":1775835272424,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":4065,"timestamp":6228324819911,"id":425,"parentId":414,"tags":{},"startTime":1775835272424,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":4637,"timestamp":6228324819695,"id":414,"parentId":339,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/hash.js","layer":"ssr"},"startTime":1775835272424,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":4443,"timestamp":6228324819899,"id":422,"parentId":421,"tags":{},"startTime":1775835272424,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":4467,"timestamp":6228324819877,"id":421,"parentId":412,"tags":{},"startTime":1775835272424,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":4940,"timestamp":6228324819617,"id":412,"parentId":339,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/app-call-server.js","layer":"ssr"},"startTime":1775835272424,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":4658,"timestamp":6228324819910,"id":424,"parentId":423,"tags":{},"startTime":1775835272424,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":4668,"timestamp":6228324819901,"id":423,"parentId":413,"tags":{},"startTime":1775835272424,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":5224,"timestamp":6228324819671,"id":413,"parentId":339,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/flight-data-helpers.js","layer":"ssr"},"startTime":1775835272424,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":4987,"timestamp":6228324819928,"id":428,"parentId":427,"tags":{},"startTime":1775835272424,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":4996,"timestamp":6228324819920,"id":427,"parentId":416,"tags":{},"startTime":1775835272424,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":5711,"timestamp":6228324819762,"id":416,"parentId":343,"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":1775835272424,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":5937,"timestamp":6228324819936,"id":430,"parentId":429,"tags":{},"startTime":1775835272424,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":5946,"timestamp":6228324819929,"id":429,"parentId":417,"tags":{},"startTime":1775835272424,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":6619,"timestamp":6228324819781,"id":417,"parentId":343,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/compute-changed-path.js","layer":"ssr"},"startTime":1775835272424,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":6527,"timestamp":6228324819952,"id":434,"parentId":433,"tags":{},"startTime":1775835272424,"traceId":"48e10e41d80a3d75"}]
+[{"name":"next-swc-loader","duration":6620,"timestamp":6228324819945,"id":433,"parentId":419,"tags":{},"startTime":1775835272424,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":14896,"timestamp":6228324819818,"id":419,"parentId":343,"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":1775835272424,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":19742,"timestamp":6228324819944,"id":432,"parentId":431,"tags":{},"startTime":1775835272424,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":19754,"timestamp":6228324819937,"id":431,"parentId":418,"tags":{},"startTime":1775835272424,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":20716,"timestamp":6228324819799,"id":418,"parentId":343,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/prefetch-cache-utils.js","layer":"ssr"},"startTime":1775835272424,"traceId":"48e10e41d80a3d75"},{"name":"read-resource","duration":25920,"timestamp":6228324815424,"id":403,"parentId":399,"tags":{},"startTime":1775835272420,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":32,"timestamp":6228324841353,"id":448,"parentId":399,"tags":{},"startTime":1775835272446,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":26411,"timestamp":6228324815201,"id":399,"parentId":310,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/app-render/get-segment-param.js","layer":"ssr"},"startTime":1775835272419,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":5964,"timestamp":6228324835748,"id":445,"parentId":444,"tags":{},"startTime":1775835272440,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":5999,"timestamp":6228324835715,"id":444,"parentId":441,"tags":{},"startTime":1775835272440,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":6873,"timestamp":6228324835305,"id":441,"parentId":374,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/shared.js","layer":"ssr"},"startTime":1775835272439,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":6497,"timestamp":6228324835763,"id":447,"parentId":446,"tags":{},"startTime":1775835272440,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":6510,"timestamp":6228324835752,"id":446,"parentId":442,"tags":{},"startTime":1775835272440,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":7630,"timestamp":6228324835340,"id":442,"parentId":374,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/app/ReactDevOverlay.js","layer":"ssr"},"startTime":1775835272440,"traceId":"48e10e41d80a3d75"},{"name":"read-resource","duration":674,"timestamp":6228324843744,"id":450,"parentId":449,"tags":{},"startTime":1775835272448,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":528,"timestamp":6228324844428,"id":451,"parentId":449,"tags":{},"startTime":1775835272449,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":1748,"timestamp":6228324843546,"id":449,"parentId":388,"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":1775835272448,"traceId":"48e10e41d80a3d75"},{"name":"read-resource","duration":26179,"timestamp":6228324819842,"id":420,"parentId":415,"tags":{},"startTime":1775835272424,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":31,"timestamp":6228324846029,"id":452,"parentId":415,"tags":{},"startTime":1775835272450,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":26445,"timestamp":6228324819716,"id":415,"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":1775835272424,"traceId":"48e10e41d80a3d75"},{"name":"read-resource","duration":26077,"timestamp":6228324822877,"id":438,"parentId":436,"tags":{},"startTime":1775835272427,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":104,"timestamp":6228324848964,"id":463,"parentId":436,"tags":{},"startTime":1775835272453,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":26546,"timestamp":6228324822734,"id":436,"parentId":267,"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":1775835272427,"traceId":"48e10e41d80a3d75"},{"name":"read-resource","duration":26407,"timestamp":6228324822886,"id":439,"parentId":437,"tags":{},"startTime":1775835272427,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":32,"timestamp":6228324849300,"id":464,"parentId":437,"tags":{},"startTime":1775835272453,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":26613,"timestamp":6228324822823,"id":437,"parentId":268,"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":1775835272427,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":3124,"timestamp":6228324847287,"id":462,"parentId":461,"tags":{},"startTime":1775835272451,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":3139,"timestamp":6228324847273,"id":461,"parentId":454,"tags":{},"startTime":1775835272451,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":3675,"timestamp":6228324846943,"id":454,"parentId":387,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/redirect-status-code.js","layer":"ssr"},"startTime":1775835272451,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":3390,"timestamp":6228324847270,"id":460,"parentId":459,"tags":{},"startTime":1775835272451,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":3474,"timestamp":6228324847187,"id":459,"parentId":453,"tags":{},"startTime":1775835272451,"traceId":"48e10e41d80a3d75"},{"name":"build-module-tsx","duration":4420,"timestamp":6228324846834,"id":453,"parentId":262,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/change-password-dialog.tsx","layer":"ssr"},"startTime":1775835272451,"traceId":"48e10e41d80a3d75"},{"name":"read-resource","duration":16101,"timestamp":6228324835407,"id":443,"parentId":440,"tags":{},"startTime":1775835272440,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":32,"timestamp":6228324851513,"id":474,"parentId":440,"tags":{},"startTime":1775835272456,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":16841,"timestamp":6228324835201,"id":440,"parentId":345,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/helpers/interception-routes.js","layer":"ssr"},"startTime":1775835272439,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":6483,"timestamp":6228324850234,"id":473,"parentId":472,"tags":{},"startTime":1775835272454,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":6498,"timestamp":6228324850225,"id":472,"parentId":467,"tags":{},"startTime":1775835272454,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":7359,"timestamp":6228324849927,"id":467,"parentId":398,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/parse-path.js","layer":"ssr"},"startTime":1775835272454,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":7146,"timestamp":6228324850211,"id":469,"parentId":468,"tags":{},"startTime":1775835272454,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":7191,"timestamp":6228324850167,"id":468,"parentId":465,"tags":{},"startTime":1775835272454,"traceId":"48e10e41d80a3d75"},{"name":"build-module-ts","duration":7904,"timestamp":6228324849827,"id":465,"parentId":258,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/hooks/use-websocket.ts","layer":"ssr"},"startTime":1775835272454,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":7518,"timestamp":6228324850224,"id":471,"parentId":470,"tags":{},"startTime":1775835272454,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":7530,"timestamp":6228324850213,"id":470,"parentId":466,"tags":{},"startTime":1775835272454,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":8094,"timestamp":6228324849901,"id":466,"parentId":398,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/remove-trailing-slash.js","layer":"ssr"},"startTime":1775835272454,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":4400,"timestamp":6228324853612,"id":485,"parentId":484,"tags":{},"startTime":1775835272458,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":4425,"timestamp":6228324853588,"id":484,"parentId":475,"tags":{},"startTime":1775835272458,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":5062,"timestamp":6228324853124,"id":475,"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":1775835272457,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":4562,"timestamp":6228324853634,"id":489,"parentId":488,"tags":{},"startTime":1775835272458,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":4571,"timestamp":6228324853626,"id":488,"parentId":477,"tags":{},"startTime":1775835272458,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":5279,"timestamp":6228324853213,"id":477,"parentId":374,"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":1775835272457,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":4863,"timestamp":6228324853642,"id":491,"parentId":490,"tags":{},"startTime":1775835272458,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":4872,"timestamp":6228324853635,"id":490,"parentId":478,"tags":{},"startTime":1775835272458,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":5592,"timestamp":6228324853234,"id":478,"parentId":374,"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":1775835272457,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":5184,"timestamp":6228324853650,"id":493,"parentId":492,"tags":{},"startTime":1775835272458,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":5192,"timestamp":6228324853644,"id":492,"parentId":479,"tags":{},"startTime":1775835272458,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":5700,"timestamp":6228324853254,"id":479,"parentId":374,"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":1775835272457,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":6568,"timestamp":6228324853625,"id":487,"parentId":486,"tags":{},"startTime":1775835272458,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":6583,"timestamp":6228324853614,"id":486,"parentId":476,"tags":{},"startTime":1775835272458,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":8565,"timestamp":6228324853180,"id":476,"parentId":374,"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":1775835272457,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":8100,"timestamp":6228324853667,"id":497,"parentId":496,"tags":{},"startTime":1775835272458,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":8108,"timestamp":6228324853660,"id":496,"parentId":481,"tags":{},"startTime":1775835272458,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":8890,"timestamp":6228324853291,"id":481,"parentId":374,"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":1775835272457,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":9319,"timestamp":6228324853674,"id":499,"parentId":498,"tags":{},"startTime":1775835272458,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":9330,"timestamp":6228324853667,"id":498,"parentId":482,"tags":{},"startTime":1775835272458,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":10076,"timestamp":6228324853308,"id":482,"parentId":419,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/apply-flight-data.js","layer":"ssr"},"startTime":1775835272457,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":10262,"timestamp":6228324853682,"id":501,"parentId":500,"tags":{},"startTime":1775835272458,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":10271,"timestamp":6228324853675,"id":500,"parentId":483,"tags":{},"startTime":1775835272458,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":11285,"timestamp":6228324853325,"id":483,"parentId":401,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/router-reducer.js","layer":"ssr"},"startTime":1775835272457,"traceId":"48e10e41d80a3d75"},{"name":"read-resource","duration":18265,"timestamp":6228324847085,"id":458,"parentId":456,"tags":{},"startTime":1775835272451,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":36,"timestamp":6228324865360,"id":505,"parentId":456,"tags":{},"startTime":1775835272470,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":18605,"timestamp":6228324847016,"id":456,"parentId":374,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/dev/extract-modules-from-turbopack-message.js","layer":"ssr"},"startTime":1775835272451,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":11982,"timestamp":6228324853659,"id":495,"parentId":494,"tags":{},"startTime":1775835272458,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":11990,"timestamp":6228324853651,"id":494,"parentId":480,"tags":{},"startTime":1775835272458,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":12810,"timestamp":6228324853272,"id":480,"parentId":374,"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":1775835272457,"traceId":"48e10e41d80a3d75"},{"name":"read-resource","duration":19014,"timestamp":6228324847076,"id":457,"parentId":455,"tags":{},"startTime":1775835272451,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":29,"timestamp":6228324866096,"id":506,"parentId":455,"tags":{},"startTime":1775835272470,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":19278,"timestamp":6228324846972,"id":455,"parentId":374,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/dev/hot-reloader-types.js","layer":"ssr"},"startTime":1775835272451,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":9198,"timestamp":6228324859403,"id":504,"parentId":503,"tags":{},"startTime":1775835272464,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":9224,"timestamp":6228324859379,"id":503,"parentId":502,"tags":{},"startTime":1775835272464,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":9699,"timestamp":6228324859147,"id":502,"parentId":418,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/prefetch-reducer.js","layer":"ssr"},"startTime":1775835272463,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":2144,"timestamp":6228324873106,"id":527,"parentId":526,"tags":{},"startTime":1775835272477,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":2159,"timestamp":6228324873096,"id":526,"parentId":513,"tags":{},"startTime":1775835272477,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":3106,"timestamp":6228324872735,"id":513,"parentId":442,"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":1775835272477,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":4717,"timestamp":6228324873124,"id":531,"parentId":530,"tags":{},"startTime":1775835272477,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":4731,"timestamp":6228324873116,"id":530,"parentId":515,"tags":{},"startTime":1775835272477,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":6493,"timestamp":6228324872786,"id":515,"parentId":442,"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":1775835272477,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":6276,"timestamp":6228324873093,"id":525,"parentId":524,"tags":{},"startTime":1775835272477,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":6314,"timestamp":6228324873060,"id":524,"parentId":512,"tags":{},"startTime":1775835272477,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":7308,"timestamp":6228324872708,"id":512,"parentId":442,"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":1775835272477,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":6916,"timestamp":6228324873132,"id":533,"parentId":532,"tags":{},"startTime":1775835272477,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":6925,"timestamp":6228324873125,"id":532,"parentId":516,"tags":{},"startTime":1775835272477,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":7503,"timestamp":6228324872813,"id":516,"parentId":442,"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":1775835272477,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":7191,"timestamp":6228324873141,"id":535,"parentId":534,"tags":{},"startTime":1775835272477,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":7200,"timestamp":6228324873133,"id":534,"parentId":517,"tags":{},"startTime":1775835272477,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":7750,"timestamp":6228324872831,"id":517,"parentId":442,"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":1775835272477,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":11686,"timestamp":6228324873148,"id":537,"parentId":536,"tags":{},"startTime":1775835272477,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":11700,"timestamp":6228324873141,"id":536,"parentId":518,"tags":{},"startTime":1775835272477,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":12428,"timestamp":6228324872848,"id":518,"parentId":442,"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":1775835272477,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":12569,"timestamp":6228324873115,"id":529,"parentId":528,"tags":{},"startTime":1775835272477,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":12578,"timestamp":6228324873107,"id":528,"parentId":514,"tags":{},"startTime":1775835272477,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":13957,"timestamp":6228324872754,"id":514,"parentId":442,"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":1775835272477,"traceId":"48e10e41d80a3d75"}]
+[{"name":"next-swc-transform","duration":14651,"timestamp":6228324873204,"id":541,"parentId":540,"tags":{},"startTime":1775835272477,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":14680,"timestamp":6228324873178,"id":540,"parentId":520,"tags":{},"startTime":1775835272477,"traceId":"48e10e41d80a3d75"},{"name":"build-module-ts","duration":15213,"timestamp":6228324872937,"id":520,"parentId":258,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/lib/utils.ts","layer":"ssr"},"startTime":1775835272477,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":15010,"timestamp":6228324873177,"id":539,"parentId":538,"tags":{},"startTime":1775835272477,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":15038,"timestamp":6228324873149,"id":538,"parentId":519,"tags":{},"startTime":1775835272477,"traceId":"48e10e41d80a3d75"},{"name":"build-module-ts","duration":16031,"timestamp":6228324872875,"id":519,"parentId":264,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/lib/api.ts","layer":"ssr"},"startTime":1775835272477,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":12710,"timestamp":6228324876330,"id":550,"parentId":549,"tags":{},"startTime":1775835272480,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":12723,"timestamp":6228324876318,"id":549,"parentId":545,"tags":{},"startTime":1775835272480,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":13155,"timestamp":6228324876162,"id":545,"parentId":478,"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":1775835272480,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":13012,"timestamp":6228324876315,"id":548,"parentId":547,"tags":{},"startTime":1775835272480,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":13043,"timestamp":6228324876284,"id":547,"parentId":544,"tags":{},"startTime":1775835272480,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":13457,"timestamp":6228324876075,"id":544,"parentId":440,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/app-paths.js","layer":"ssr"},"startTime":1775835272480,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":13203,"timestamp":6228324876339,"id":552,"parentId":551,"tags":{},"startTime":1775835272481,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":13212,"timestamp":6228324876331,"id":551,"parentId":546,"tags":{},"startTime":1775835272480,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":13551,"timestamp":6228324876191,"id":546,"parentId":478,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/is-hydration-error.js","layer":"ssr"},"startTime":1775835272480,"traceId":"48e10e41d80a3d75"},{"name":"read-resource","duration":25842,"timestamp":6228324867114,"id":508,"parentId":507,"tags":{},"startTime":1775835272471,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":48,"timestamp":6228324892967,"id":553,"parentId":507,"tags":{},"startTime":1775835272497,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":26220,"timestamp":6228324866965,"id":507,"parentId":339,"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":1775835272471,"traceId":"48e10e41d80a3d75"},{"name":"read-resource","duration":22014,"timestamp":6228324873001,"id":522,"parentId":510,"tags":{},"startTime":1775835272477,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":30,"timestamp":6228324895021,"id":582,"parentId":510,"tags":{},"startTime":1775835272499,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":22549,"timestamp":6228324872607,"id":510,"parentId":266,"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":1775835272477,"traceId":"48e10e41d80a3d75"},{"name":"read-resource","duration":22156,"timestamp":6228324873006,"id":523,"parentId":511,"tags":{},"startTime":1775835272477,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":28,"timestamp":6228324895166,"id":583,"parentId":511,"tags":{},"startTime":1775835272499,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":22589,"timestamp":6228324872661,"id":511,"parentId":297,"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":1775835272477,"traceId":"48e10e41d80a3d75"},{"name":"read-resource","duration":22271,"timestamp":6228324872983,"id":521,"parentId":509,"tags":{},"startTime":1775835272477,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":35,"timestamp":6228324895257,"id":584,"parentId":509,"tags":{},"startTime":1775835272499,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":22842,"timestamp":6228324872501,"id":509,"parentId":285,"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":1775835272477,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":1953,"timestamp":6228324894545,"id":573,"parentId":572,"tags":{},"startTime":1775835272499,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":1962,"timestamp":6228324894538,"id":572,"parentId":559,"tags":{},"startTime":1775835272499,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":2603,"timestamp":6228324894229,"id":559,"parentId":483,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/restore-reducer.js","layer":"ssr"},"startTime":1775835272498,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":2307,"timestamp":6228324894537,"id":571,"parentId":570,"tags":{},"startTime":1775835272499,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":2316,"timestamp":6228324894529,"id":570,"parentId":558,"tags":{},"startTime":1775835272499,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":2971,"timestamp":6228324894209,"id":558,"parentId":483,"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":1775835272498,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":2680,"timestamp":6228324894511,"id":567,"parentId":566,"tags":{},"startTime":1775835272499,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":2712,"timestamp":6228324894480,"id":566,"parentId":556,"tags":{},"startTime":1775835272499,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":3402,"timestamp":6228324894147,"id":556,"parentId":482,"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":1775835272498,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":4515,"timestamp":6228324894562,"id":577,"parentId":576,"tags":{},"startTime":1775835272499,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":4524,"timestamp":6228324894555,"id":576,"parentId":561,"tags":{},"startTime":1775835272499,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":5235,"timestamp":6228324894269,"id":561,"parentId":483,"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":1775835272498,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":5030,"timestamp":6228324894554,"id":575,"parentId":574,"tags":{},"startTime":1775835272499,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":5056,"timestamp":6228324894546,"id":574,"parentId":560,"tags":{},"startTime":1775835272499,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":6020,"timestamp":6228324894252,"id":560,"parentId":483,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/refresh-reducer.js","layer":"ssr"},"startTime":1775835272498,"traceId":"48e10e41d80a3d75"},{"name":"read-resource","duration":25339,"timestamp":6228324875203,"id":543,"parentId":542,"tags":{},"startTime":1775835272479,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":32,"timestamp":6228324900549,"id":591,"parentId":542,"tags":{},"startTime":1775835272505,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":25848,"timestamp":6228324875116,"id":542,"parentId":285,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_interop_require_wildcard.js","layer":"ssr"},"startTime":1775835272479,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":7118,"timestamp":6228324894527,"id":569,"parentId":568,"tags":{},"startTime":1775835272499,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":7131,"timestamp":6228324894516,"id":568,"parentId":557,"tags":{},"startTime":1775835272499,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":8434,"timestamp":6228324894182,"id":557,"parentId":483,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/navigate-reducer.js","layer":"ssr"},"startTime":1775835272498,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":8066,"timestamp":6228324894571,"id":579,"parentId":578,"tags":{},"startTime":1775835272499,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":8074,"timestamp":6228324894563,"id":578,"parentId":562,"tags":{},"startTime":1775835272499,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":8950,"timestamp":6228324894290,"id":562,"parentId":483,"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":1775835272498,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":8690,"timestamp":6228324894579,"id":581,"parentId":580,"tags":{},"startTime":1775835272499,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":8704,"timestamp":6228324894572,"id":580,"parentId":563,"tags":{},"startTime":1775835272499,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":9415,"timestamp":6228324894315,"id":563,"parentId":480,"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":1775835272498,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":9630,"timestamp":6228324898189,"id":590,"parentId":589,"tags":{},"startTime":1775835272502,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":9642,"timestamp":6228324898180,"id":589,"parentId":586,"tags":{},"startTime":1775835272502,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":11242,"timestamp":6228324898000,"id":586,"parentId":513,"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":1775835272502,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":11094,"timestamp":6228324898178,"id":588,"parentId":587,"tags":{},"startTime":1775835272502,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":11116,"timestamp":6228324898157,"id":587,"parentId":585,"tags":{},"startTime":1775835272502,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":11854,"timestamp":6228324897942,"id":585,"parentId":502,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/promise-queue.js","layer":"ssr"},"startTime":1775835272502,"traceId":"48e10e41d80a3d75"},{"name":"read-resource","duration":18260,"timestamp":6228324894344,"id":564,"parentId":554,"tags":{},"startTime":1775835272499,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":29,"timestamp":6228324912618,"id":600,"parentId":554,"tags":{},"startTime":1775835272517,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":18839,"timestamp":6228324893977,"id":554,"parentId":263,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/api/link.js","layer":"ssr"},"startTime":1775835272498,"traceId":"48e10e41d80a3d75"},{"name":"read-resource","duration":18466,"timestamp":6228324894355,"id":565,"parentId":555,"tags":{},"startTime":1775835272499,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":25,"timestamp":6228324912825,"id":601,"parentId":555,"tags":{},"startTime":1775835272517,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":18820,"timestamp":6228324894089,"id":555,"parentId":261,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/api/navigation.js","layer":"ssr"},"startTime":1775835272498,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":4172,"timestamp":6228324911763,"id":597,"parentId":596,"tags":{},"startTime":1775835272516,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":4200,"timestamp":6228324911738,"id":596,"parentId":593,"tags":{},"startTime":1775835272516,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":4542,"timestamp":6228324911616,"id":593,"parentId":514,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/error-source.js","layer":"ssr"},"startTime":1775835272516,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":4394,"timestamp":6228324911778,"id":599,"parentId":598,"tags":{},"startTime":1775835272516,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":4407,"timestamp":6228324911765,"id":598,"parentId":594,"tags":{},"startTime":1775835272516,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":4775,"timestamp":6228324911647,"id":594,"parentId":514,"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":1775835272516,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":3663,"timestamp":6228324914743,"id":611,"parentId":610,"tags":{},"startTime":1775835272519,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":3676,"timestamp":6228324914735,"id":610,"parentId":604,"tags":{},"startTime":1775835272519,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":4276,"timestamp":6228324914574,"id":604,"parentId":517,"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":1775835272519,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":4634,"timestamp":6228324914751,"id":613,"parentId":612,"tags":{},"startTime":1775835272519,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":4645,"timestamp":6228324914744,"id":612,"parentId":605,"tags":{},"startTime":1775835272519,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":5040,"timestamp":6228324914593,"id":605,"parentId":517,"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":1775835272519,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":4926,"timestamp":6228324914723,"id":607,"parentId":606,"tags":{},"startTime":1775835272519,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":4948,"timestamp":6228324914703,"id":606,"parentId":602,"tags":{},"startTime":1775835272519,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":5315,"timestamp":6228324914499,"id":602,"parentId":517,"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":1775835272519,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":5089,"timestamp":6228324914734,"id":609,"parentId":608,"tags":{},"startTime":1775835272519,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":5099,"timestamp":6228324914725,"id":608,"parentId":603,"tags":{},"startTime":1775835272519,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":5500,"timestamp":6228324914542,"id":603,"parentId":517,"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":1775835272519,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":4128,"timestamp":6228324917684,"id":624,"parentId":623,"tags":{},"startTime":1775835272522,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":4167,"timestamp":6228324917648,"id":623,"parentId":614,"tags":{},"startTime":1775835272522,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":4670,"timestamp":6228324917325,"id":614,"parentId":544,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/page-path/ensure-leading-slash.js","layer":"ssr"},"startTime":1775835272521,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":4315,"timestamp":6228324917697,"id":626,"parentId":625,"tags":{},"startTime":1775835272522,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":4328,"timestamp":6228324917686,"id":625,"parentId":615,"tags":{},"startTime":1775835272522,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":4846,"timestamp":6228324917396,"id":615,"parentId":514,"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":1775835272522,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":4535,"timestamp":6228324917718,"id":630,"parentId":629,"tags":{},"startTime":1775835272522,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":4546,"timestamp":6228324917708,"id":629,"parentId":617,"tags":{},"startTime":1775835272522,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":4964,"timestamp":6228324917471,"id":617,"parentId":556,"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":1775835272522,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":4748,"timestamp":6228324917707,"id":628,"parentId":627,"tags":{},"startTime":1775835272522,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":4757,"timestamp":6228324917698,"id":627,"parentId":616,"tags":{},"startTime":1775835272522,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":5707,"timestamp":6228324917424,"id":616,"parentId":514,"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":1775835272522,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":5413,"timestamp":6228324917743,"id":636,"parentId":635,"tags":{},"startTime":1775835272522,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":5431,"timestamp":6228324917735,"id":635,"parentId":620,"tags":{},"startTime":1775835272522,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":5872,"timestamp":6228324917546,"id":620,"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":1775835272522,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":5716,"timestamp":6228324917735,"id":634,"parentId":633,"tags":{},"startTime":1775835272522,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":5725,"timestamp":6228324917728,"id":633,"parentId":619,"tags":{},"startTime":1775835272522,"traceId":"48e10e41d80a3d75"}]
+[{"name":"build-module-js","duration":6512,"timestamp":6228324917526,"id":619,"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":1775835272522,"traceId":"48e10e41d80a3d75"},{"name":"read-resource","duration":13329,"timestamp":6228324911712,"id":595,"parentId":592,"tags":{},"startTime":1775835272516,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":31,"timestamp":6228324925050,"id":653,"parentId":592,"tags":{},"startTime":1775835272529,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":13793,"timestamp":6228324911535,"id":592,"parentId":546,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/is-error.js","layer":"ssr"},"startTime":1775835272516,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":7613,"timestamp":6228324917758,"id":640,"parentId":639,"tags":{},"startTime":1775835272522,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":7621,"timestamp":6228324917751,"id":639,"parentId":622,"tags":{},"startTime":1775835272522,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":7967,"timestamp":6228324917593,"id":622,"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":1775835272522,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":7830,"timestamp":6228324917750,"id":638,"parentId":637,"tags":{},"startTime":1775835272522,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":7837,"timestamp":6228324917743,"id":637,"parentId":621,"tags":{},"startTime":1775835272522,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":8306,"timestamp":6228324917574,"id":621,"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":1775835272522,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":5252,"timestamp":6228324920641,"id":646,"parentId":645,"tags":{},"startTime":1775835272525,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":5273,"timestamp":6228324920621,"id":645,"parentId":641,"tags":{},"startTime":1775835272525,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":5675,"timestamp":6228324920439,"id":641,"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":1775835272525,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":5471,"timestamp":6228324920652,"id":648,"parentId":647,"tags":{},"startTime":1775835272525,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":5480,"timestamp":6228324920642,"id":647,"parentId":642,"tags":{},"startTime":1775835272525,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":5780,"timestamp":6228324920479,"id":642,"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":1775835272525,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":9759,"timestamp":6228324917727,"id":632,"parentId":631,"tags":{},"startTime":1775835272522,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":9771,"timestamp":6228324917719,"id":631,"parentId":618,"tags":{},"startTime":1775835272522,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":11325,"timestamp":6228324917502,"id":618,"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":1775835272522,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":8184,"timestamp":6228324920660,"id":650,"parentId":649,"tags":{},"startTime":1775835272525,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":8193,"timestamp":6228324920652,"id":649,"parentId":643,"tags":{},"startTime":1775835272525,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":8597,"timestamp":6228324920500,"id":643,"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":1775835272525,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":11539,"timestamp":6228324920668,"id":652,"parentId":651,"tags":{},"startTime":1775835272525,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":11549,"timestamp":6228324920661,"id":651,"parentId":644,"tags":{},"startTime":1775835272525,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":11953,"timestamp":6228324920519,"id":644,"parentId":563,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/normalized-asset-prefix.js","layer":"ssr"},"startTime":1775835272525,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":2291,"timestamp":6228324934609,"id":662,"parentId":661,"tags":{},"startTime":1775835272539,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":2303,"timestamp":6228324934600,"id":661,"parentId":658,"tags":{},"startTime":1775835272539,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":2665,"timestamp":6228324934544,"id":658,"parentId":374,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/strip-ansi/index.js","layer":"ssr"},"startTime":1775835272539,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":2107,"timestamp":6228324935111,"id":669,"parentId":668,"tags":{},"startTime":1775835272539,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":2120,"timestamp":6228324935098,"id":668,"parentId":663,"tags":{},"startTime":1775835272539,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":2368,"timestamp":6228324934992,"id":663,"parentId":513,"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":1775835272539,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":2779,"timestamp":6228324934599,"id":660,"parentId":659,"tags":{},"startTime":1775835272539,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":2795,"timestamp":6228324934584,"id":659,"parentId":657,"tags":{},"startTime":1775835272539,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":3537,"timestamp":6228324934511,"id":657,"parentId":594,"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":1775835272539,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":3414,"timestamp":6228324935120,"id":671,"parentId":670,"tags":{},"startTime":1775835272539,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":3424,"timestamp":6228324935112,"id":670,"parentId":664,"tags":{},"startTime":1775835272539,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":3701,"timestamp":6228324935019,"id":664,"parentId":513,"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":1775835272539,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":3594,"timestamp":6228324935137,"id":675,"parentId":674,"tags":{},"startTime":1775835272539,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":3603,"timestamp":6228324935130,"id":674,"parentId":666,"tags":{},"startTime":1775835272539,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":3824,"timestamp":6228324935058,"id":666,"parentId":592,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/is-plain-object.js","layer":"ssr"},"startTime":1775835272539,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":3865,"timestamp":6228324935129,"id":673,"parentId":672,"tags":{},"startTime":1775835272539,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":3873,"timestamp":6228324935121,"id":672,"parentId":665,"tags":{},"startTime":1775835272539,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":4423,"timestamp":6228324935040,"id":665,"parentId":517,"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":1775835272539,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":5850,"timestamp":6228324933658,"id":656,"parentId":655,"tags":{},"startTime":1775835272538,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":5877,"timestamp":6228324933632,"id":655,"parentId":654,"tags":{},"startTime":1775835272538,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":7311,"timestamp":6228324933547,"id":654,"parentId":554,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/link.js","layer":"ssr"},"startTime":1775835272538,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":10725,"timestamp":6228324935145,"id":677,"parentId":676,"tags":{},"startTime":1775835272539,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":10734,"timestamp":6228324935138,"id":676,"parentId":667,"tags":{},"startTime":1775835272539,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":11103,"timestamp":6228324935075,"id":667,"parentId":616,"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":1775835272539,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":9320,"timestamp":6228324936867,"id":680,"parentId":679,"tags":{},"startTime":1775835272541,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":9341,"timestamp":6228324936847,"id":679,"parentId":678,"tags":{},"startTime":1775835272541,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":9560,"timestamp":6228324936778,"id":678,"parentId":514,"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":1775835272541,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":7962,"timestamp":6228324938383,"id":686,"parentId":685,"tags":{},"startTime":1775835272543,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":7979,"timestamp":6228324938366,"id":685,"parentId":681,"tags":{},"startTime":1775835272543,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":8387,"timestamp":6228324938128,"id":681,"parentId":513,"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":1775835272542,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":8345,"timestamp":6228324938393,"id":688,"parentId":687,"tags":{},"startTime":1775835272543,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":8355,"timestamp":6228324938384,"id":687,"parentId":682,"tags":{},"startTime":1775835272543,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":8657,"timestamp":6228324938218,"id":682,"parentId":513,"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":1775835272542,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":8485,"timestamp":6228324938402,"id":690,"parentId":689,"tags":{},"startTime":1775835272543,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":8493,"timestamp":6228324938394,"id":689,"parentId":683,"tags":{},"startTime":1775835272543,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":8856,"timestamp":6228324938302,"id":683,"parentId":515,"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":1775835272542,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":8755,"timestamp":6228324938410,"id":692,"parentId":691,"tags":{},"startTime":1775835272543,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":8762,"timestamp":6228324938403,"id":691,"parentId":684,"tags":{},"startTime":1775835272543,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":8969,"timestamp":6228324938331,"id":684,"parentId":517,"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":1775835272542,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":1708,"timestamp":6228324949852,"id":695,"parentId":694,"tags":{},"startTime":1775835272554,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":1733,"timestamp":6228324949829,"id":694,"parentId":693,"tags":{},"startTime":1775835272554,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":1941,"timestamp":6228324949771,"id":693,"parentId":480,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/dev/noop-turbopack-hmr.js","layer":"ssr"},"startTime":1775835272554,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":2043,"timestamp":6228324953155,"id":712,"parentId":711,"tags":{},"startTime":1775835272557,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":2052,"timestamp":6228324953148,"id":711,"parentId":698,"tags":{},"startTime":1775835272557,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":2528,"timestamp":6228324952953,"id":698,"parentId":654,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/add-locale.js","layer":"ssr"},"startTime":1775835272557,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":2358,"timestamp":6228324953137,"id":708,"parentId":707,"tags":{},"startTime":1775835272557,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":2375,"timestamp":6228324953120,"id":707,"parentId":696,"tags":{},"startTime":1775835272557,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":2873,"timestamp":6228324952898,"id":696,"parentId":663,"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":1775835272557,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":4147,"timestamp":6228324953165,"id":714,"parentId":713,"tags":{},"startTime":1775835272557,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":4157,"timestamp":6228324953156,"id":713,"parentId":699,"tags":{},"startTime":1775835272557,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":4744,"timestamp":6228324952971,"id":699,"parentId":654,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/use-intersection.js","layer":"ssr"},"startTime":1775835272557,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":4583,"timestamp":6228324953147,"id":710,"parentId":709,"tags":{},"startTime":1775835272557,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":4592,"timestamp":6228324953139,"id":709,"parentId":697,"tags":{},"startTime":1775835272557,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":5189,"timestamp":6228324952933,"id":697,"parentId":654,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/resolve-href.js","layer":"ssr"},"startTime":1775835272557,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":4960,"timestamp":6228324953172,"id":716,"parentId":715,"tags":{},"startTime":1775835272557,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":4967,"timestamp":6228324953166,"id":715,"parentId":700,"tags":{},"startTime":1775835272557,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":5360,"timestamp":6228324952989,"id":700,"parentId":654,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/get-domain-locale.js","layer":"ssr"},"startTime":1775835272557,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":5170,"timestamp":6228324953187,"id":720,"parentId":719,"tags":{},"startTime":1775835272557,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":5178,"timestamp":6228324953181,"id":719,"parentId":702,"tags":{},"startTime":1775835272557,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":5442,"timestamp":6228324953020,"id":702,"parentId":654,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/is-local-url.js","layer":"ssr"},"startTime":1775835272557,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":5298,"timestamp":6228324953180,"id":718,"parentId":717,"tags":{},"startTime":1775835272557,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":5305,"timestamp":6228324953173,"id":717,"parentId":701,"tags":{},"startTime":1775835272557,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":5930,"timestamp":6228324953005,"id":701,"parentId":654,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/utils.js","layer":"ssr"},"startTime":1775835272557,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":5742,"timestamp":6228324953201,"id":724,"parentId":723,"tags":{},"startTime":1775835272557,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":5750,"timestamp":6228324953195,"id":723,"parentId":704,"tags":{},"startTime":1775835272557,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":6069,"timestamp":6228324953050,"id":704,"parentId":665,"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":1775835272557,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":6029,"timestamp":6228324953194,"id":722,"parentId":721,"tags":{},"startTime":1775835272557,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":6036,"timestamp":6228324953188,"id":721,"parentId":703,"tags":{},"startTime":1775835272557,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":6530,"timestamp":6228324953036,"id":703,"parentId":654,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/format-url.js","layer":"ssr"},"startTime":1775835272557,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":7813,"timestamp":6228324953216,"id":728,"parentId":727,"tags":{},"startTime":1775835272557,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":7821,"timestamp":6228324953209,"id":727,"parentId":706,"tags":{},"startTime":1775835272557,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":8213,"timestamp":6228324953081,"id":706,"parentId":665,"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":1775835272557,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":8111,"timestamp":6228324953208,"id":726,"parentId":725,"tags":{},"startTime":1775835272557,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":8119,"timestamp":6228324953202,"id":725,"parentId":705,"tags":{},"startTime":1775835272557,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":8717,"timestamp":6228324953065,"id":705,"parentId":664,"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":1775835272557,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":6905,"timestamp":6228324954892,"id":741,"parentId":740,"tags":{},"startTime":1775835272559,"traceId":"48e10e41d80a3d75"}]
+[{"name":"next-swc-loader","duration":7021,"timestamp":6228324954871,"id":740,"parentId":729,"tags":{},"startTime":1775835272559,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":7640,"timestamp":6228324954514,"id":729,"parentId":683,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/magic-identifier.js","layer":"ssr"},"startTime":1775835272559,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":7219,"timestamp":6228324954944,"id":749,"parentId":748,"tags":{},"startTime":1775835272559,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":7227,"timestamp":6228324954937,"id":748,"parentId":733,"tags":{},"startTime":1775835272559,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":7571,"timestamp":6228324954732,"id":733,"parentId":681,"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":1775835272559,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":7414,"timestamp":6228324954904,"id":743,"parentId":742,"tags":{},"startTime":1775835272559,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":7425,"timestamp":6228324954894,"id":742,"parentId":730,"tags":{},"startTime":1775835272559,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":8062,"timestamp":6228324954636,"id":730,"parentId":678,"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":1775835272559,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":7797,"timestamp":6228324954914,"id":745,"parentId":744,"tags":{},"startTime":1775835272559,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":7807,"timestamp":6228324954905,"id":744,"parentId":731,"tags":{},"startTime":1775835272559,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":8280,"timestamp":6228324954687,"id":731,"parentId":681,"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":1775835272559,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":8038,"timestamp":6228324954936,"id":747,"parentId":746,"tags":{},"startTime":1775835272559,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":8059,"timestamp":6228324954915,"id":746,"parentId":732,"tags":{},"startTime":1775835272559,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":8381,"timestamp":6228324954711,"id":732,"parentId":681,"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":1775835272559,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":8145,"timestamp":6228324954952,"id":751,"parentId":750,"tags":{},"startTime":1775835272559,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":8153,"timestamp":6228324954945,"id":750,"parentId":734,"tags":{},"startTime":1775835272559,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":8467,"timestamp":6228324954750,"id":734,"parentId":681,"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":1775835272559,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":8240,"timestamp":6228324954983,"id":757,"parentId":756,"tags":{},"startTime":1775835272559,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":8247,"timestamp":6228324954976,"id":756,"parentId":737,"tags":{},"startTime":1775835272559,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":8535,"timestamp":6228324954803,"id":737,"parentId":684,"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":1775835272559,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":8383,"timestamp":6228324954960,"id":753,"parentId":752,"tags":{},"startTime":1775835272559,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":8391,"timestamp":6228324954953,"id":752,"parentId":735,"tags":{},"startTime":1775835272559,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":8695,"timestamp":6228324954768,"id":735,"parentId":681,"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":1775835272559,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":8492,"timestamp":6228324954975,"id":755,"parentId":754,"tags":{},"startTime":1775835272559,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":8506,"timestamp":6228324954961,"id":754,"parentId":736,"tags":{},"startTime":1775835272559,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":8801,"timestamp":6228324954785,"id":736,"parentId":682,"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":1775835272559,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":9715,"timestamp":6228324954991,"id":759,"parentId":758,"tags":{},"startTime":1775835272559,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":9724,"timestamp":6228324954984,"id":758,"parentId":738,"tags":{},"startTime":1775835272559,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":10227,"timestamp":6228324954819,"id":738,"parentId":682,"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":1775835272559,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":10056,"timestamp":6228324954999,"id":761,"parentId":760,"tags":{},"startTime":1775835272559,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":10063,"timestamp":6228324954992,"id":760,"parentId":739,"tags":{},"startTime":1775835272559,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":10380,"timestamp":6228324954838,"id":739,"parentId":684,"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":1775835272559,"traceId":"48e10e41d80a3d75"},{"name":"read-resource","duration":19422,"timestamp":6228324956039,"id":763,"parentId":762,"tags":{},"startTime":1775835272560,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":36,"timestamp":6228324975467,"id":766,"parentId":762,"tags":{},"startTime":1775835272580,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":20041,"timestamp":6228324955942,"id":762,"parentId":477,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/stacktrace-parser/stack-trace-parser.cjs.js","layer":"ssr"},"startTime":1775835272560,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":1097,"timestamp":6228324976664,"id":778,"parentId":777,"tags":{},"startTime":1775835272581,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":1108,"timestamp":6228324976654,"id":777,"parentId":769,"tags":{},"startTime":1775835272581,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":1473,"timestamp":6228324976529,"id":769,"parentId":699,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/request-idle-callback.js","layer":"ssr"},"startTime":1775835272581,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":1402,"timestamp":6228324976650,"id":776,"parentId":775,"tags":{},"startTime":1775835272581,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":1412,"timestamp":6228324976641,"id":775,"parentId":768,"tags":{},"startTime":1775835272581,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":1774,"timestamp":6228324976506,"id":768,"parentId":696,"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":1775835272581,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":1621,"timestamp":6228324976671,"id":780,"parentId":779,"tags":{},"startTime":1775835272581,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":1628,"timestamp":6228324976664,"id":779,"parentId":770,"tags":{},"startTime":1775835272581,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":1959,"timestamp":6228324976549,"id":770,"parentId":697,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/querystring.js","layer":"ssr"},"startTime":1775835272581,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":5411,"timestamp":6228324976679,"id":782,"parentId":781,"tags":{},"startTime":1775835272581,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":5425,"timestamp":6228324976672,"id":781,"parentId":771,"tags":{},"startTime":1775835272581,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":5864,"timestamp":6228324976567,"id":771,"parentId":697,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/omit.js","layer":"ssr"},"startTime":1775835272581,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":5763,"timestamp":6228324976686,"id":784,"parentId":783,"tags":{},"startTime":1775835272581,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":5771,"timestamp":6228324976679,"id":783,"parentId":772,"tags":{},"startTime":1775835272581,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":6207,"timestamp":6228324976584,"id":772,"parentId":697,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/interpolate-as.js","layer":"ssr"},"startTime":1775835272581,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":5842,"timestamp":6228324976968,"id":791,"parentId":790,"tags":{},"startTime":1775835272581,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":5850,"timestamp":6228324976960,"id":790,"parentId":786,"tags":{},"startTime":1775835272581,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":6290,"timestamp":6228324976908,"id":786,"parentId":706,"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":1775835272581,"traceId":"48e10e41d80a3d75"},{"name":"read-resource","duration":8767,"timestamp":6228324974444,"id":765,"parentId":764,"tags":{},"startTime":1775835272579,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":37,"timestamp":6228324983216,"id":794,"parentId":764,"tags":{},"startTime":1775835272587,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":9062,"timestamp":6228324974358,"id":764,"parentId":513,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_tagged_template_literal_loose.js","layer":"ssr"},"startTime":1775835272579,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":6744,"timestamp":6228324976959,"id":789,"parentId":788,"tags":{},"startTime":1775835272581,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":6756,"timestamp":6228324976947,"id":788,"parentId":785,"tags":{},"startTime":1775835272581,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":7126,"timestamp":6228324976887,"id":785,"parentId":706,"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":1775835272581,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":8493,"timestamp":6228324976975,"id":793,"parentId":792,"tags":{},"startTime":1775835272581,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":8504,"timestamp":6228324976968,"id":792,"parentId":787,"tags":{},"startTime":1775835272581,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":9072,"timestamp":6228324976930,"id":787,"parentId":705,"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":1775835272581,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":1908,"timestamp":6228324984805,"id":802,"parentId":801,"tags":{},"startTime":1775835272589,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":1937,"timestamp":6228324984778,"id":801,"parentId":795,"tags":{},"startTime":1775835272589,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":2608,"timestamp":6228324984318,"id":795,"parentId":665,"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":1775835272588,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":2118,"timestamp":6228324984818,"id":804,"parentId":803,"tags":{},"startTime":1775835272589,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":2129,"timestamp":6228324984808,"id":803,"parentId":796,"tags":{},"startTime":1775835272589,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":2748,"timestamp":6228324984382,"id":796,"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":1775835272589,"traceId":"48e10e41d80a3d75"},{"name":"read-resource","duration":4534,"timestamp":6228324984560,"id":800,"parentId":798,"tags":{},"startTime":1775835272589,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":33,"timestamp":6228324989100,"id":807,"parentId":798,"tags":{},"startTime":1775835272593,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":4823,"timestamp":6228324984458,"id":798,"parentId":585,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_class_private_field_loose_base.js","layer":"ssr"},"startTime":1775835272589,"traceId":"48e10e41d80a3d75"},{"name":"read-resource","duration":4750,"timestamp":6228324984544,"id":799,"parentId":797,"tags":{},"startTime":1775835272589,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":26,"timestamp":6228324989298,"id":808,"parentId":797,"tags":{},"startTime":1775835272593,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":5090,"timestamp":6228324984408,"id":797,"parentId":585,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_class_private_field_loose_key.js","layer":"ssr"},"startTime":1775835272589,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":1063,"timestamp":6228324989659,"id":817,"parentId":816,"tags":{},"startTime":1775835272594,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":1075,"timestamp":6228324989651,"id":816,"parentId":811,"tags":{},"startTime":1775835272594,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":1578,"timestamp":6228324989595,"id":811,"parentId":786,"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":1775835272594,"traceId":"48e10e41d80a3d75"},{"name":"read-resource","duration":3827,"timestamp":6228324987394,"id":806,"parentId":805,"tags":{},"startTime":1775835272592,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":33,"timestamp":6228324991227,"id":824,"parentId":805,"tags":{},"startTime":1775835272595,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":4064,"timestamp":6228324987301,"id":805,"parentId":654,"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":1775835272591,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":2126,"timestamp":6228324989639,"id":813,"parentId":812,"tags":{},"startTime":1775835272594,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":2147,"timestamp":6228324989618,"id":812,"parentId":809,"tags":{},"startTime":1775835272594,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":2458,"timestamp":6228324989529,"id":809,"parentId":772,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/route-matcher.js","layer":"ssr"},"startTime":1775835272594,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":1696,"timestamp":6228324990301,"id":821,"parentId":820,"tags":{},"startTime":1775835272594,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":1711,"timestamp":6228324990287,"id":820,"parentId":818,"tags":{},"startTime":1775835272594,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":2058,"timestamp":6228324990089,"id":818,"parentId":697,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/index.js","layer":"ssr"},"startTime":1775835272594,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":2535,"timestamp":6228324989650,"id":815,"parentId":814,"tags":{},"startTime":1775835272594,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":2546,"timestamp":6228324989640,"id":814,"parentId":810,"tags":{},"startTime":1775835272594,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":3257,"timestamp":6228324989572,"id":810,"parentId":772,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/route-regex.js","layer":"ssr"},"startTime":1775835272594,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":3380,"timestamp":6228324990311,"id":823,"parentId":822,"tags":{},"startTime":1775835272594,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":3390,"timestamp":6228324990302,"id":822,"parentId":819,"tags":{},"startTime":1775835272594,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":3869,"timestamp":6228324990255,"id":819,"parentId":795,"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":1775835272594,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":19965,"timestamp":6228324976639,"id":774,"parentId":773,"tags":{},"startTime":1775835272581,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":19991,"timestamp":6228324976614,"id":773,"parentId":767,"tags":{},"startTime":1775835272581,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":28440,"timestamp":6228324976462,"id":767,"parentId":696,"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":1775835272581,"traceId":"48e10e41d80a3d75"},{"name":"read-resource","duration":26,"timestamp":6228325005468,"id":826,"parentId":825,"tags":{},"startTime":1775835272610,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":176,"timestamp":6228325005499,"id":827,"parentId":825,"tags":{},"startTime":1775835272610,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":962,"timestamp":6228325005161,"id":825,"parentId":810,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/constants.js","layer":"ssr"},"startTime":1775835272609,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":1049,"timestamp":6228325007028,"id":832,"parentId":831,"tags":{},"startTime":1775835272611,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":1074,"timestamp":6228325007006,"id":831,"parentId":828,"tags":{},"startTime":1775835272611,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":1327,"timestamp":6228325006914,"id":828,"parentId":810,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/escape-regexp.js","layer":"ssr"},"startTime":1775835272611,"traceId":"48e10e41d80a3d75"}]
+[{"name":"next-swc-transform","duration":1339,"timestamp":6228325007048,"id":836,"parentId":835,"tags":{},"startTime":1775835272611,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":1347,"timestamp":6228325007041,"id":835,"parentId":830,"tags":{},"startTime":1775835272611,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":1512,"timestamp":6228325006986,"id":830,"parentId":818,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/is-dynamic.js","layer":"ssr"},"startTime":1775835272611,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":1849,"timestamp":6228325007040,"id":834,"parentId":833,"tags":{},"startTime":1775835272611,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":1859,"timestamp":6228325007030,"id":833,"parentId":829,"tags":{},"startTime":1775835272611,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":2361,"timestamp":6228325006964,"id":829,"parentId":818,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/sorted-routes.js","layer":"ssr"},"startTime":1775835272611,"traceId":"48e10e41d80a3d75"},{"name":"read-resource","duration":1371,"timestamp":6228325008028,"id":838,"parentId":837,"tags":{},"startTime":1775835272612,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":42,"timestamp":6228325009409,"id":839,"parentId":837,"tags":{},"startTime":1775835272614,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":2837,"timestamp":6228325007933,"id":837,"parentId":705,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/anser/index.js","layer":"ssr"},"startTime":1775835272612,"traceId":"48e10e41d80a3d75"},{"name":"read-resource","duration":1058,"timestamp":6228325011489,"id":841,"parentId":840,"tags":{},"startTime":1775835272616,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":34,"timestamp":6228325012554,"id":844,"parentId":840,"tags":{},"startTime":1775835272617,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":1533,"timestamp":6228325011431,"id":840,"parentId":767,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/css.escape/css.escape.js","layer":"ssr"},"startTime":1775835272616,"traceId":"48e10e41d80a3d75"},{"name":"read-resource","duration":728,"timestamp":6228325012283,"id":843,"parentId":842,"tags":{},"startTime":1775835272616,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":73,"timestamp":6228325013018,"id":845,"parentId":842,"tags":{},"startTime":1775835272617,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":3860,"timestamp":6228325012185,"id":842,"parentId":767,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/platform/platform.js","layer":"ssr"},"startTime":1775835272616,"traceId":"48e10e41d80a3d75"},{"name":"make","duration":510529,"timestamp":6228324505980,"id":119,"parentId":118,"tags":{},"startTime":1775835272110,"traceId":"48e10e41d80a3d75"},{"name":"chunk-graph","duration":2786,"timestamp":6228325022446,"id":847,"parentId":846,"tags":{},"startTime":1775835272627,"traceId":"48e10e41d80a3d75"},{"name":"optimize-modules","duration":3,"timestamp":6228325025248,"id":849,"parentId":846,"tags":{},"startTime":1775835272629,"traceId":"48e10e41d80a3d75"},{"name":"optimize-chunks","duration":2272,"timestamp":6228325025266,"id":850,"parentId":846,"tags":{},"startTime":1775835272629,"traceId":"48e10e41d80a3d75"},{"name":"optimize-tree","duration":4,"timestamp":6228325027551,"id":851,"parentId":846,"tags":{},"startTime":1775835272632,"traceId":"48e10e41d80a3d75"},{"name":"optimize-chunk-modules","duration":3,"timestamp":6228325027567,"id":852,"parentId":846,"tags":{},"startTime":1775835272632,"traceId":"48e10e41d80a3d75"},{"name":"optimize","duration":2887,"timestamp":6228325025241,"id":848,"parentId":846,"tags":{},"startTime":1775835272629,"traceId":"48e10e41d80a3d75"},{"name":"module-hash","duration":4219,"timestamp":6228325029852,"id":853,"parentId":846,"tags":{},"startTime":1775835272634,"traceId":"48e10e41d80a3d75"},{"name":"code-generation","duration":12138,"timestamp":6228325034080,"id":854,"parentId":846,"tags":{},"startTime":1775835272638,"traceId":"48e10e41d80a3d75"},{"name":"hash","duration":2874,"timestamp":6228325048320,"id":855,"parentId":846,"tags":{},"startTime":1775835272652,"traceId":"48e10e41d80a3d75"},{"name":"code-generation-jobs","duration":185,"timestamp":6228325051193,"id":856,"parentId":846,"tags":{},"startTime":1775835272655,"traceId":"48e10e41d80a3d75"},{"name":"module-assets","duration":84,"timestamp":6228325051373,"id":857,"parentId":846,"tags":{},"startTime":1775835272656,"traceId":"48e10e41d80a3d75"},{"name":"create-chunk-assets","duration":42801,"timestamp":6228325051460,"id":858,"parentId":846,"tags":{},"startTime":1775835272656,"traceId":"48e10e41d80a3d75"},{"name":"seal","duration":74605,"timestamp":6228325021723,"id":846,"parentId":118,"tags":{},"startTime":1775835272626,"traceId":"48e10e41d80a3d75"},{"name":"webpack-compilation","duration":591563,"timestamp":6228324505683,"id":118,"parentId":116,"tags":{"name":"server"},"startTime":1775835272110,"traceId":"48e10e41d80a3d75"},{"name":"emit","duration":12817,"timestamp":6228325097268,"id":859,"parentId":116,"tags":{},"startTime":1775835272701,"traceId":"48e10e41d80a3d75"},{"name":"webpack-invalidated-server","duration":606726,"timestamp":6228324504384,"id":116,"parentId":3,"tags":{"trigger":"manual"},"startTime":1775835272109,"traceId":"48e10e41d80a3d75"},{"name":"build-module","duration":1048,"timestamp":6228325122305,"id":867,"parentId":864,"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%2Fsectors%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!","layer":"app-pages-browser"},"startTime":1775835272726,"traceId":"48e10e41d80a3d75"},{"name":"build-module","duration":1249,"timestamp":6228325123422,"id":868,"parentId":865,"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%2Fglobals.css%22%2C%22ids%22%3A%5B%5D%7D&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&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":1775835272728,"traceId":"48e10e41d80a3d75"},{"name":"build-module","duration":1276,"timestamp":6228325124692,"id":869,"parentId":866,"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":1775835272729,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":3763,"timestamp":6228325133072,"id":883,"parentId":882,"tags":{},"startTime":1775835272737,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":3833,"timestamp":6228325133008,"id":882,"parentId":870,"tags":{},"startTime":1775835272737,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":7099,"timestamp":6228325130805,"id":870,"parentId":863,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/app-next-dev.js","layer":"app-pages-browser"},"startTime":1775835272735,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":5428,"timestamp":6228325133118,"id":885,"parentId":884,"tags":{},"startTime":1775835272737,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":5472,"timestamp":6228325133076,"id":884,"parentId":871,"tags":{},"startTime":1775835272737,"traceId":"48e10e41d80a3d75"},{"name":"build-module-tsx","duration":6773,"timestamp":6228325132315,"id":871,"parentId":868,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/auth-guard.tsx","layer":"app-pages-browser"},"startTime":1775835272736,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":5937,"timestamp":6228325133173,"id":889,"parentId":888,"tags":{},"startTime":1775835272737,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":5963,"timestamp":6228325133147,"id":888,"parentId":873,"tags":{},"startTime":1775835272737,"traceId":"48e10e41d80a3d75"},{"name":"build-module-tsx","duration":6839,"timestamp":6228325132657,"id":873,"parentId":868,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/user-menu.tsx","layer":"app-pages-browser"},"startTime":1775835272737,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":6388,"timestamp":6228325133146,"id":887,"parentId":886,"tags":{},"startTime":1775835272737,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":6416,"timestamp":6228325133119,"id":886,"parentId":872,"tags":{},"startTime":1775835272737,"traceId":"48e10e41d80a3d75"},{"name":"build-module-tsx","duration":7907,"timestamp":6228325132611,"id":872,"parentId":868,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/nav.tsx","layer":"app-pages-browser"},"startTime":1775835272737,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":7313,"timestamp":6228325133218,"id":895,"parentId":894,"tags":{},"startTime":1775835272737,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":7321,"timestamp":6228325133210,"id":894,"parentId":876,"tags":{},"startTime":1775835272737,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":8023,"timestamp":6228325132817,"id":876,"parentId":869,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/client-page.js","layer":"app-pages-browser"},"startTime":1775835272737,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":7656,"timestamp":6228325133200,"id":891,"parentId":890,"tags":{},"startTime":1775835272737,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":7683,"timestamp":6228325133174,"id":890,"parentId":874,"tags":{},"startTime":1775835272737,"traceId":"48e10e41d80a3d75"},{"name":"build-module-tsx","duration":8545,"timestamp":6228325132698,"id":874,"parentId":868,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/hooks/use-auth.tsx","layer":"app-pages-browser"},"startTime":1775835272737,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":10549,"timestamp":6228325133245,"id":901,"parentId":900,"tags":{},"startTime":1775835272737,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":10559,"timestamp":6228325133236,"id":900,"parentId":879,"tags":{},"startTime":1775835272737,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":11594,"timestamp":6228325132892,"id":879,"parentId":869,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/not-found-boundary.js","layer":"app-pages-browser"},"startTime":1775835272737,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":11302,"timestamp":6228325133226,"id":897,"parentId":896,"tags":{},"startTime":1775835272737,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":11310,"timestamp":6228325133219,"id":896,"parentId":877,"tags":{},"startTime":1775835272737,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":12218,"timestamp":6228325132841,"id":877,"parentId":869,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/error-boundary.js","layer":"app-pages-browser"},"startTime":1775835272737,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":11882,"timestamp":6228325133209,"id":893,"parentId":892,"tags":{},"startTime":1775835272737,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":11891,"timestamp":6228325133201,"id":892,"parentId":875,"tags":{},"startTime":1775835272737,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":15268,"timestamp":6228325132739,"id":875,"parentId":869,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/app-router.js","layer":"app-pages-browser"},"startTime":1775835272737,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":15006,"timestamp":6228325133255,"id":903,"parentId":902,"tags":{},"startTime":1775835272737,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":15016,"timestamp":6228325133246,"id":902,"parentId":880,"tags":{},"startTime":1775835272737,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":15999,"timestamp":6228325132939,"id":880,"parentId":869,"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":1775835272737,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":15764,"timestamp":6228325133236,"id":899,"parentId":898,"tags":{},"startTime":1775835272737,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":15774,"timestamp":6228325133227,"id":898,"parentId":878,"tags":{},"startTime":1775835272737,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":17506,"timestamp":6228325132862,"id":878,"parentId":869,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/layout-router.js","layer":"app-pages-browser"},"startTime":1775835272737,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":17286,"timestamp":6228325133282,"id":905,"parentId":904,"tags":{},"startTime":1775835272737,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":17313,"timestamp":6228325133256,"id":904,"parentId":881,"tags":{},"startTime":1775835272737,"traceId":"48e10e41d80a3d75"},{"name":"build-module-tsx","duration":18941,"timestamp":6228325132962,"id":881,"parentId":867,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/sectors/page.tsx","layer":"app-pages-browser"},"startTime":1775835272737,"traceId":"48e10e41d80a3d75"},{"name":"read-resource","duration":203,"timestamp":6228325159170,"id":910,"parentId":907,"tags":{},"startTime":1775835272763,"traceId":"48e10e41d80a3d75"},{"name":"read-resource","duration":226,"timestamp":6228325159183,"id":911,"parentId":908,"tags":{},"startTime":1775835272763,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":50,"timestamp":6228325159382,"id":915,"parentId":907,"tags":{},"startTime":1775835272764,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":21,"timestamp":6228325159411,"id":916,"parentId":908,"tags":{},"startTime":1775835272764,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":771,"timestamp":6228325158840,"id":907,"parentId":871,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/api/navigation.js","layer":"app-pages-browser"},"startTime":1775835272763,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":763,"timestamp":6228325158924,"id":908,"parentId":872,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/api/link.js","layer":"app-pages-browser"},"startTime":1775835272763,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":4689,"timestamp":6228325159337,"id":914,"parentId":913,"tags":{},"startTime":1775835272763,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":4725,"timestamp":6228325159304,"id":913,"parentId":906,"tags":{},"startTime":1775835272763,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":5800,"timestamp":6228325158722,"id":906,"parentId":876,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/search-params.js","layer":"app-pages-browser"},"startTime":1775835272763,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":3061,"timestamp":6228325161476,"id":951,"parentId":950,"tags":{},"startTime":1775835272766,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":3070,"timestamp":6228325161467,"id":950,"parentId":919,"tags":{},"startTime":1775835272766,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":4924,"timestamp":6228325160800,"id":919,"parentId":875,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/has-base-path.js","layer":"app-pages-browser"},"startTime":1775835272765,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":4337,"timestamp":6228325161445,"id":947,"parentId":946,"tags":{},"startTime":1775835272766,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":4361,"timestamp":6228325161422,"id":946,"parentId":917,"tags":{},"startTime":1775835272766,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":5478,"timestamp":6228325160715,"id":917,"parentId":875,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/add-base-path.js","layer":"app-pages-browser"},"startTime":1775835272765,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":4740,"timestamp":6228325161466,"id":949,"parentId":948,"tags":{},"startTime":1775835272766,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":4760,"timestamp":6228325161447,"id":948,"parentId":918,"tags":{},"startTime":1775835272766,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":5780,"timestamp":6228325160774,"id":918,"parentId":875,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/remove-base-path.js","layer":"app-pages-browser"},"startTime":1775835272765,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":5056,"timestamp":6228325161509,"id":959,"parentId":958,"tags":{},"startTime":1775835272766,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":5064,"timestamp":6228325161502,"id":958,"parentId":923,"tags":{},"startTime":1775835272766,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":5905,"timestamp":6228325160895,"id":923,"parentId":877,"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":1775835272765,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":5331,"timestamp":6228325161484,"id":953,"parentId":952,"tags":{},"startTime":1775835272766,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":5339,"timestamp":6228325161476,"id":952,"parentId":920,"tags":{},"startTime":1775835272766,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":6781,"timestamp":6228325160824,"id":920,"parentId":879,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/navigation.js","layer":"app-pages-browser"},"startTime":1775835272765,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":6126,"timestamp":6228325161494,"id":955,"parentId":954,"tags":{},"startTime":1775835272766,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":6134,"timestamp":6228325161487,"id":954,"parentId":921,"tags":{},"startTime":1775835272766,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":7102,"timestamp":6228325160845,"id":921,"parentId":879,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/not-found.js","layer":"app-pages-browser"},"startTime":1775835272765,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":6456,"timestamp":6228325161501,"id":957,"parentId":956,"tags":{},"startTime":1775835272766,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":6463,"timestamp":6228325161494,"id":956,"parentId":922,"tags":{},"startTime":1775835272766,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":7329,"timestamp":6228325160876,"id":922,"parentId":879,"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":1775835272765,"traceId":"48e10e41d80a3d75"}]
+[{"name":"next-swc-transform","duration":9728,"timestamp":6228325161516,"id":961,"parentId":960,"tags":{},"startTime":1775835272766,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":9736,"timestamp":6228325161509,"id":960,"parentId":924,"tags":{},"startTime":1775835272766,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":10633,"timestamp":6228325160913,"id":924,"parentId":877,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/static-generation-async-storage.external.js","layer":"shared"},"startTime":1775835272765,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":10031,"timestamp":6228325161523,"id":963,"parentId":962,"tags":{},"startTime":1775835272766,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":10038,"timestamp":6228325161517,"id":962,"parentId":925,"tags":{},"startTime":1775835272766,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":10882,"timestamp":6228325160930,"id":925,"parentId":875,"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":1775835272765,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":10269,"timestamp":6228325161551,"id":971,"parentId":970,"tags":{},"startTime":1775835272766,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":10276,"timestamp":6228325161545,"id":970,"parentId":929,"tags":{},"startTime":1775835272766,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":11041,"timestamp":6228325161000,"id":929,"parentId":875,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/unresolved-thenable.js","layer":"app-pages-browser"},"startTime":1775835272765,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":10525,"timestamp":6228325161530,"id":965,"parentId":964,"tags":{},"startTime":1775835272766,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":10532,"timestamp":6228325161524,"id":964,"parentId":926,"tags":{},"startTime":1775835272766,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":11629,"timestamp":6228325160948,"id":926,"parentId":875,"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":1775835272765,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":11051,"timestamp":6228325161537,"id":967,"parentId":966,"tags":{},"startTime":1775835272766,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":11058,"timestamp":6228325161531,"id":966,"parentId":927,"tags":{},"startTime":1775835272766,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":12150,"timestamp":6228325160965,"id":927,"parentId":875,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/app-router-announcer.js","layer":"app-pages-browser"},"startTime":1775835272765,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":11594,"timestamp":6228325161544,"id":969,"parentId":968,"tags":{},"startTime":1775835272766,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":11617,"timestamp":6228325161538,"id":968,"parentId":928,"tags":{},"startTime":1775835272766,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":12610,"timestamp":6228325160981,"id":928,"parentId":875,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/redirect-boundary.js","layer":"app-pages-browser"},"startTime":1775835272765,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":12042,"timestamp":6228325161559,"id":973,"parentId":972,"tags":{},"startTime":1775835272766,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":12049,"timestamp":6228325161552,"id":972,"parentId":930,"tags":{},"startTime":1775835272766,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":12915,"timestamp":6228325161017,"id":930,"parentId":875,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/app-router-headers.js","layer":"app-pages-browser"},"startTime":1775835272765,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":12367,"timestamp":6228325161573,"id":977,"parentId":976,"tags":{},"startTime":1775835272766,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":12374,"timestamp":6228325161566,"id":976,"parentId":932,"tags":{},"startTime":1775835272766,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":13248,"timestamp":6228325161061,"id":932,"parentId":878,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/match-segments.js","layer":"app-pages-browser"},"startTime":1775835272765,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":12739,"timestamp":6228325161580,"id":979,"parentId":978,"tags":{},"startTime":1775835272766,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":12745,"timestamp":6228325161573,"id":978,"parentId":933,"tags":{},"startTime":1775835272766,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":13541,"timestamp":6228325161079,"id":933,"parentId":879,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/utils/warn-once.js","layer":"app-pages-browser"},"startTime":1775835272765,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":13084,"timestamp":6228325161566,"id":975,"parentId":974,"tags":{},"startTime":1775835272766,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":13091,"timestamp":6228325161559,"id":974,"parentId":931,"tags":{},"startTime":1775835272766,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":13921,"timestamp":6228325161034,"id":931,"parentId":875,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/segment.js","layer":"app-pages-browser"},"startTime":1775835272765,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":13373,"timestamp":6228325161594,"id":983,"parentId":982,"tags":{},"startTime":1775835272766,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":13380,"timestamp":6228325161588,"id":982,"parentId":935,"tags":{},"startTime":1775835272766,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":15663,"timestamp":6228325161127,"id":935,"parentId":875,"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":1775835272765,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":15228,"timestamp":6228325161587,"id":981,"parentId":980,"tags":{},"startTime":1775835272766,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":15236,"timestamp":6228325161580,"id":980,"parentId":934,"tags":{},"startTime":1775835272766,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":16167,"timestamp":6228325161104,"id":934,"parentId":875,"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":1775835272765,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":15690,"timestamp":6228325161601,"id":985,"parentId":984,"tags":{},"startTime":1775835272766,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":15698,"timestamp":6228325161595,"id":984,"parentId":936,"tags":{},"startTime":1775835272766,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":16582,"timestamp":6228325161152,"id":936,"parentId":875,"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":1775835272765,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":16125,"timestamp":6228325161622,"id":991,"parentId":990,"tags":{},"startTime":1775835272766,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":16133,"timestamp":6228325161616,"id":990,"parentId":939,"tags":{},"startTime":1775835272766,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":16848,"timestamp":6228325161204,"id":939,"parentId":875,"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":1775835272765,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":16447,"timestamp":6228325161616,"id":989,"parentId":988,"tags":{},"startTime":1775835272766,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":16454,"timestamp":6228325161609,"id":988,"parentId":938,"tags":{},"startTime":1775835272766,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":17185,"timestamp":6228325161186,"id":938,"parentId":878,"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":1775835272765,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":16779,"timestamp":6228325161608,"id":987,"parentId":986,"tags":{},"startTime":1775835272766,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":16786,"timestamp":6228325161602,"id":986,"parentId":937,"tags":{},"startTime":1775835272766,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":17785,"timestamp":6228325161169,"id":937,"parentId":878,"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":1775835272765,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":17321,"timestamp":6228325161644,"id":997,"parentId":996,"tags":{},"startTime":1775835272766,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":17328,"timestamp":6228325161637,"id":996,"parentId":942,"tags":{},"startTime":1775835272766,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":17916,"timestamp":6228325161261,"id":942,"parentId":878,"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":1775835272765,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":17536,"timestamp":6228325161651,"id":999,"parentId":998,"tags":{},"startTime":1775835272766,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":17543,"timestamp":6228325161644,"id":998,"parentId":943,"tags":{},"startTime":1775835272766,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":18125,"timestamp":6228325161277,"id":943,"parentId":878,"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":1775835272765,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":17757,"timestamp":6228325161658,"id":1001,"parentId":1000,"tags":{},"startTime":1775835272766,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":17764,"timestamp":6228325161651,"id":1000,"parentId":944,"tags":{},"startTime":1775835272766,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":18375,"timestamp":6228325161310,"id":944,"parentId":878,"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":1775835272765,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":18283,"timestamp":6228325161630,"id":993,"parentId":992,"tags":{},"startTime":1775835272766,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":18291,"timestamp":6228325161623,"id":992,"parentId":940,"tags":{},"startTime":1775835272766,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":18948,"timestamp":6228325161223,"id":940,"parentId":875,"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":1775835272765,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":18530,"timestamp":6228325161688,"id":1003,"parentId":1002,"tags":{},"startTime":1775835272766,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":18560,"timestamp":6228325161659,"id":1002,"parentId":945,"tags":{},"startTime":1775835272766,"traceId":"48e10e41d80a3d75"},{"name":"build-module-tsx","duration":19462,"timestamp":6228325161328,"id":945,"parentId":873,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/change-password-dialog.tsx","layer":"app-pages-browser"},"startTime":1775835272765,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":19198,"timestamp":6228325161637,"id":995,"parentId":994,"tags":{},"startTime":1775835272766,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":19205,"timestamp":6228325161630,"id":994,"parentId":941,"tags":{},"startTime":1775835272766,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":21328,"timestamp":6228325161242,"id":941,"parentId":875,"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":1775835272765,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":13136,"timestamp":6228325169486,"id":1012,"parentId":1011,"tags":{},"startTime":1775835272774,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":13168,"timestamp":6228325169458,"id":1011,"parentId":1005,"tags":{},"startTime":1775835272774,"traceId":"48e10e41d80a3d75"},{"name":"build-module-ts","duration":13867,"timestamp":6228325169200,"id":1005,"parentId":881,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/lib/utils.ts","layer":"app-pages-browser"},"startTime":1775835272773,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":13583,"timestamp":6228325169507,"id":1016,"parentId":1015,"tags":{},"startTime":1775835272774,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":13592,"timestamp":6228325169499,"id":1015,"parentId":1007,"tags":{},"startTime":1775835272774,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":14175,"timestamp":6228325169275,"id":1007,"parentId":870,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/app-bootstrap.js","layer":"app-pages-browser"},"startTime":1775835272773,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":13964,"timestamp":6228325169498,"id":1014,"parentId":1013,"tags":{},"startTime":1775835272774,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":13975,"timestamp":6228325169487,"id":1013,"parentId":1006,"tags":{},"startTime":1775835272774,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":14533,"timestamp":6228325169247,"id":1006,"parentId":870,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/app-webpack.js","layer":"app-pages-browser"},"startTime":1775835272773,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":14353,"timestamp":6228325169456,"id":1010,"parentId":1009,"tags":{},"startTime":1775835272774,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":14402,"timestamp":6228325169408,"id":1009,"parentId":1004,"tags":{},"startTime":1775835272774,"traceId":"48e10e41d80a3d75"},{"name":"build-module-ts","duration":15296,"timestamp":6228325169114,"id":1004,"parentId":874,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/lib/api.ts","layer":"app-pages-browser"},"startTime":1775835272773,"traceId":"48e10e41d80a3d75"},{"name":"read-resource","duration":350,"timestamp":6228325186682,"id":1024,"parentId":1021,"tags":{},"startTime":1775835272791,"traceId":"48e10e41d80a3d75"},{"name":"read-resource","duration":391,"timestamp":6228325186686,"id":1025,"parentId":1022,"tags":{},"startTime":1775835272791,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":4819,"timestamp":6228325187043,"id":1032,"parentId":1021,"tags":{},"startTime":1775835272791,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":4784,"timestamp":6228325187080,"id":1033,"parentId":1022,"tags":{},"startTime":1775835272791,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":5990,"timestamp":6228325186319,"id":1021,"parentId":879,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_interop_require_wildcard.js","layer":"app-pages-browser"},"startTime":1775835272790,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":5813,"timestamp":6228325186595,"id":1022,"parentId":877,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_interop_require_default.js","layer":"app-pages-browser"},"startTime":1775835272791,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":22938,"timestamp":6228325169515,"id":1018,"parentId":1017,"tags":{},"startTime":1775835272774,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":22946,"timestamp":6228325169507,"id":1017,"parentId":1008,"tags":{},"startTime":1775835272774,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":24537,"timestamp":6228325169304,"id":1008,"parentId":870,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/app-index.js","layer":"app-pages-browser"},"startTime":1775835272773,"traceId":"48e10e41d80a3d75"},{"name":"read-resource","duration":34923,"timestamp":6228325159184,"id":912,"parentId":909,"tags":{},"startTime":1775835272763,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":35,"timestamp":6228325194114,"id":1034,"parentId":909,"tags":{},"startTime":1775835272798,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":35350,"timestamp":6228325158978,"id":909,"parentId":862,"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":1775835272763,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":7465,"timestamp":6228325186926,"id":1029,"parentId":1028,"tags":{},"startTime":1775835272791,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":7544,"timestamp":6228325186848,"id":1028,"parentId":1020,"tags":{},"startTime":1775835272791,"traceId":"48e10e41d80a3d75"},{"name":"build-module-ts","duration":8519,"timestamp":6228325186268,"id":1020,"parentId":881,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/hooks/use-websocket.ts","layer":"app-pages-browser"},"startTime":1775835272790,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":7845,"timestamp":6228325186954,"id":1031,"parentId":1030,"tags":{},"startTime":1775835272791,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":7866,"timestamp":6228325186933,"id":1030,"parentId":1023,"tags":{},"startTime":1775835272791,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":8918,"timestamp":6228325186633,"id":1023,"parentId":875,"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":1775835272791,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":8903,"timestamp":6228325186845,"id":1027,"parentId":1026,"tags":{},"startTime":1775835272791,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":8942,"timestamp":6228325186809,"id":1026,"parentId":1019,"tags":{},"startTime":1775835272791,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":10724,"timestamp":6228325186180,"id":1019,"parentId":908,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/link.js","layer":"app-pages-browser"},"startTime":1775835272790,"traceId":"48e10e41d80a3d75"},{"name":"read-resource","duration":395,"timestamp":6228325198344,"id":1040,"parentId":1036,"tags":{},"startTime":1775835272803,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":4284,"timestamp":6228325198778,"id":1049,"parentId":1036,"tags":{},"startTime":1775835272803,"traceId":"48e10e41d80a3d75"}]
+[{"name":"build-module-js","duration":5684,"timestamp":6228325198210,"id":1036,"parentId":906,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/app-render/dynamic-rendering.js","layer":"app-pages-browser"},"startTime":1775835272802,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":5857,"timestamp":6228325198562,"id":1048,"parentId":1047,"tags":{},"startTime":1775835272803,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":5866,"timestamp":6228325198554,"id":1047,"parentId":1039,"tags":{},"startTime":1775835272803,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":6450,"timestamp":6228325198304,"id":1039,"parentId":920,"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":1775835272802,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":6350,"timestamp":6228325198553,"id":1046,"parentId":1045,"tags":{},"startTime":1775835272803,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":6359,"timestamp":6228325198545,"id":1045,"parentId":1038,"tags":{},"startTime":1775835272803,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":6979,"timestamp":6228325198281,"id":1038,"parentId":920,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/navigation.react-server.js","layer":"app-pages-browser"},"startTime":1775835272802,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":6739,"timestamp":6228325198532,"id":1042,"parentId":1041,"tags":{},"startTime":1775835272803,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":6767,"timestamp":6228325198506,"id":1041,"parentId":1035,"tags":{},"startTime":1775835272803,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":7508,"timestamp":6228325198131,"id":1035,"parentId":917,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/normalize-trailing-slash.js","layer":"app-pages-browser"},"startTime":1775835272802,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":7153,"timestamp":6228325198544,"id":1044,"parentId":1043,"tags":{},"startTime":1775835272803,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":7164,"timestamp":6228325198535,"id":1043,"parentId":1037,"tags":{},"startTime":1775835272803,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":8023,"timestamp":6228325198255,"id":1037,"parentId":923,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/redirect.js","layer":"app-pages-browser"},"startTime":1775835272802,"traceId":"48e10e41d80a3d75"},{"name":"read-resource","duration":666,"timestamp":6228325208803,"id":1075,"parentId":1053,"tags":{},"startTime":1775835272813,"traceId":"48e10e41d80a3d75"},{"name":"read-resource","duration":712,"timestamp":6228325208806,"id":1076,"parentId":1056,"tags":{},"startTime":1775835272813,"traceId":"48e10e41d80a3d75"},{"name":"read-resource","duration":740,"timestamp":6228325208808,"id":1077,"parentId":1059,"tags":{},"startTime":1775835272813,"traceId":"48e10e41d80a3d75"},{"name":"read-resource","duration":760,"timestamp":6228325208816,"id":1078,"parentId":1060,"tags":{},"startTime":1775835272813,"traceId":"48e10e41d80a3d75"},{"name":"read-resource","duration":785,"timestamp":6228325208817,"id":1079,"parentId":1065,"tags":{},"startTime":1775835272813,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":1292,"timestamp":6228325209482,"id":1120,"parentId":1053,"tags":{},"startTime":1775835272814,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":1253,"timestamp":6228325209522,"id":1121,"parentId":1056,"tags":{},"startTime":1775835272814,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":1225,"timestamp":6228325209551,"id":1122,"parentId":1059,"tags":{},"startTime":1775835272814,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":1198,"timestamp":6228325209578,"id":1123,"parentId":1060,"tags":{},"startTime":1775835272814,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":1171,"timestamp":6228325209606,"id":1124,"parentId":1065,"tags":{},"startTime":1775835272814,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":2777,"timestamp":6228325208226,"id":1053,"parentId":906,"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":1775835272812,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":2844,"timestamp":6228325208314,"id":1056,"parentId":932,"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":1775835272812,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":2860,"timestamp":6228325208397,"id":1059,"parentId":941,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/dev/hot-reloader-types.js","layer":"app-pages-browser"},"startTime":1775835272813,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":2971,"timestamp":6228325208437,"id":1060,"parentId":941,"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":1775835272813,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":3095,"timestamp":6228325208582,"id":1065,"parentId":944,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/helpers/interception-routes.js","layer":"app-pages-browser"},"startTime":1775835272813,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":3281,"timestamp":6228325209013,"id":1085,"parentId":1084,"tags":{},"startTime":1775835272813,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":3290,"timestamp":6228325209005,"id":1084,"parentId":1052,"tags":{},"startTime":1775835272813,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":4362,"timestamp":6228325208203,"id":1052,"parentId":917,"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":1775835272812,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":3571,"timestamp":6228325209003,"id":1083,"parentId":1082,"tags":{},"startTime":1775835272813,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":3582,"timestamp":6228325208993,"id":1082,"parentId":1051,"tags":{},"startTime":1775835272813,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":4590,"timestamp":6228325208174,"id":1051,"parentId":919,"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":1775835272812,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":3781,"timestamp":6228325208991,"id":1081,"parentId":1080,"tags":{},"startTime":1775835272813,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":3812,"timestamp":6228325208960,"id":1080,"parentId":1050,"tags":{},"startTime":1775835272813,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":4905,"timestamp":6228325208097,"id":1050,"parentId":920,"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":1775835272812,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":3988,"timestamp":6228325209021,"id":1087,"parentId":1086,"tags":{},"startTime":1775835272813,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":3997,"timestamp":6228325209014,"id":1086,"parentId":1054,"tags":{},"startTime":1775835272813,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":4991,"timestamp":6228325208271,"id":1054,"parentId":937,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/app-call-server.js","layer":"app-pages-browser"},"startTime":1775835272812,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":4236,"timestamp":6228325209038,"id":1091,"parentId":1090,"tags":{},"startTime":1775835272813,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":4243,"timestamp":6228325209031,"id":1090,"parentId":1057,"tags":{},"startTime":1775835272813,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":5201,"timestamp":6228325208357,"id":1057,"parentId":937,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/hash.js","layer":"app-pages-browser"},"startTime":1775835272813,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":4538,"timestamp":6228325209030,"id":1089,"parentId":1088,"tags":{},"startTime":1775835272813,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":4546,"timestamp":6228325209022,"id":1088,"parentId":1055,"tags":{},"startTime":1775835272813,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":5543,"timestamp":6228325208292,"id":1055,"parentId":937,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/flight-data-helpers.js","layer":"app-pages-browser"},"startTime":1775835272812,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":4802,"timestamp":6228325209045,"id":1093,"parentId":1092,"tags":{},"startTime":1775835272813,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":4809,"timestamp":6228325209039,"id":1092,"parentId":1058,"tags":{},"startTime":1775835272813,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":6187,"timestamp":6228325208378,"id":1058,"parentId":926,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/action-queue.js","layer":"app-pages-browser"},"startTime":1775835272813,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":5552,"timestamp":6228325209053,"id":1095,"parentId":1094,"tags":{},"startTime":1775835272813,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":5560,"timestamp":6228325209046,"id":1094,"parentId":1061,"tags":{},"startTime":1775835272813,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":6679,"timestamp":6228325208505,"id":1061,"parentId":936,"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":1775835272813,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":9098,"timestamp":6228325209061,"id":1097,"parentId":1096,"tags":{},"startTime":1775835272813,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":9108,"timestamp":6228325209054,"id":1096,"parentId":1062,"tags":{},"startTime":1775835272813,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":10219,"timestamp":6228325208527,"id":1062,"parentId":936,"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":1775835272813,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":9686,"timestamp":6228325209076,"id":1101,"parentId":1100,"tags":{},"startTime":1775835272813,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":9694,"timestamp":6228325209069,"id":1100,"parentId":1064,"tags":{},"startTime":1775835272813,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":10630,"timestamp":6228325208565,"id":1064,"parentId":936,"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":1775835272813,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":10142,"timestamp":6228325209068,"id":1099,"parentId":1098,"tags":{},"startTime":1775835272813,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":10150,"timestamp":6228325209062,"id":1098,"parentId":1063,"tags":{},"startTime":1775835272813,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":11239,"timestamp":6228325208546,"id":1063,"parentId":936,"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":1775835272813,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":10715,"timestamp":6228325209084,"id":1103,"parentId":1102,"tags":{},"startTime":1775835272813,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":10722,"timestamp":6228325209077,"id":1102,"parentId":1066,"tags":{},"startTime":1775835272813,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":11579,"timestamp":6228325208619,"id":1066,"parentId":941,"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":1775835272813,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":11101,"timestamp":6228325209108,"id":1109,"parentId":1108,"tags":{},"startTime":1775835272813,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":11108,"timestamp":6228325209101,"id":1108,"parentId":1069,"tags":{},"startTime":1775835272813,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":11901,"timestamp":6228325208673,"id":1069,"parentId":941,"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":1775835272813,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":11501,"timestamp":6228325209092,"id":1105,"parentId":1104,"tags":{},"startTime":1775835272813,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":11510,"timestamp":6228325209084,"id":1104,"parentId":1067,"tags":{},"startTime":1775835272813,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":12341,"timestamp":6228325208637,"id":1067,"parentId":941,"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":1775835272813,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":11873,"timestamp":6228325209116,"id":1111,"parentId":1110,"tags":{},"startTime":1775835272813,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":11881,"timestamp":6228325209109,"id":1110,"parentId":1070,"tags":{},"startTime":1775835272813,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":12663,"timestamp":6228325208693,"id":1070,"parentId":941,"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":1775835272813,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":12239,"timestamp":6228325209124,"id":1113,"parentId":1112,"tags":{},"startTime":1775835272813,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":12247,"timestamp":6228325209117,"id":1112,"parentId":1071,"tags":{},"startTime":1775835272813,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":12833,"timestamp":6228325208712,"id":1071,"parentId":941,"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":1775835272813,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":12459,"timestamp":6228325209100,"id":1107,"parentId":1106,"tags":{},"startTime":1775835272813,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":12467,"timestamp":6228325209093,"id":1106,"parentId":1068,"tags":{},"startTime":1775835272813,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":14746,"timestamp":6228325208655,"id":1068,"parentId":941,"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":1775835272813,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":14727,"timestamp":6228325209182,"id":1119,"parentId":1118,"tags":{},"startTime":1775835272813,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":14767,"timestamp":6228325209144,"id":1118,"parentId":1074,"tags":{},"startTime":1775835272813,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":15462,"timestamp":6228325208770,"id":1074,"parentId":941,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/strip-ansi/index.js","layer":"app-pages-browser"},"startTime":1775835272813,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":15100,"timestamp":6228325209143,"id":1117,"parentId":1116,"tags":{},"startTime":1775835272813,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":15110,"timestamp":6228325209134,"id":1116,"parentId":1073,"tags":{},"startTime":1775835272813,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":15933,"timestamp":6228325208751,"id":1073,"parentId":941,"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":1775835272813,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":15566,"timestamp":6228325209133,"id":1115,"parentId":1114,"tags":{},"startTime":1775835272813,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":15575,"timestamp":6228325209125,"id":1114,"parentId":1072,"tags":{},"startTime":1775835272813,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":16528,"timestamp":6228325208729,"id":1072,"parentId":941,"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":1775835272813,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":8967,"timestamp":6228325216310,"id":1138,"parentId":1137,"tags":{},"startTime":1775835272820,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":8978,"timestamp":6228325216300,"id":1137,"parentId":1126,"tags":{},"startTime":1775835272820,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":9692,"timestamp":6228325215917,"id":1126,"parentId":1019,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/add-locale.js","layer":"app-pages-browser"},"startTime":1775835272820,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":9291,"timestamp":6228325216331,"id":1142,"parentId":1141,"tags":{},"startTime":1775835272820,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":9300,"timestamp":6228325216323,"id":1141,"parentId":1128,"tags":{},"startTime":1775835272820,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":9920,"timestamp":6228325215987,"id":1128,"parentId":1019,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/get-domain-locale.js","layer":"app-pages-browser"},"startTime":1775835272820,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":9624,"timestamp":6228325216298,"id":1136,"parentId":1135,"tags":{},"startTime":1775835272820,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":9652,"timestamp":6228325216271,"id":1135,"parentId":1125,"tags":{},"startTime":1775835272820,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":10572,"timestamp":6228325215860,"id":1125,"parentId":1019,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/resolve-href.js","layer":"app-pages-browser"},"startTime":1775835272820,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":10128,"timestamp":6228325216322,"id":1140,"parentId":1139,"tags":{},"startTime":1775835272820,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":10140,"timestamp":6228325216311,"id":1139,"parentId":1127,"tags":{},"startTime":1775835272820,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":10891,"timestamp":6228325215960,"id":1127,"parentId":1019,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/use-intersection.js","layer":"app-pages-browser"},"startTime":1775835272820,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":10504,"timestamp":6228325216356,"id":1148,"parentId":1147,"tags":{},"startTime":1775835272821,"traceId":"48e10e41d80a3d75"}]
+[{"name":"next-swc-loader","duration":10614,"timestamp":6228325216349,"id":1147,"parentId":1131,"tags":{},"startTime":1775835272821,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":11115,"timestamp":6228325216051,"id":1131,"parentId":1019,"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":1775835272820,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":10825,"timestamp":6228325216348,"id":1146,"parentId":1145,"tags":{},"startTime":1775835272821,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":10833,"timestamp":6228325216341,"id":1145,"parentId":1130,"tags":{},"startTime":1775835272821,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":11429,"timestamp":6228325216031,"id":1130,"parentId":1019,"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":1775835272820,"traceId":"48e10e41d80a3d75"},{"name":"read-resource","duration":168,"timestamp":6228325229525,"id":1157,"parentId":1155,"tags":{},"startTime":1775835272834,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":4019,"timestamp":6228325229698,"id":1160,"parentId":1155,"tags":{},"startTime":1775835272834,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":4571,"timestamp":6228325229394,"id":1155,"parentId":1036,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/url.js","layer":"app-pages-browser"},"startTime":1775835272834,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":17670,"timestamp":6228325216340,"id":1144,"parentId":1143,"tags":{},"startTime":1775835272821,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":17692,"timestamp":6228325216332,"id":1143,"parentId":1129,"tags":{},"startTime":1775835272820,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":18645,"timestamp":6228325216010,"id":1129,"parentId":1019,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/utils.js","layer":"app-pages-browser"},"startTime":1775835272820,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":18305,"timestamp":6228325216364,"id":1150,"parentId":1149,"tags":{},"startTime":1775835272821,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":18313,"timestamp":6228325216357,"id":1149,"parentId":1132,"tags":{},"startTime":1775835272821,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":18976,"timestamp":6228325216074,"id":1132,"parentId":1019,"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":1775835272820,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":18683,"timestamp":6228325216380,"id":1154,"parentId":1153,"tags":{},"startTime":1775835272821,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":18691,"timestamp":6228325216373,"id":1153,"parentId":1134,"tags":{},"startTime":1775835272821,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":19167,"timestamp":6228325216156,"id":1134,"parentId":1008,"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":1775835272820,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":18961,"timestamp":6228325216372,"id":1152,"parentId":1151,"tags":{},"startTime":1775835272821,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":18969,"timestamp":6228325216365,"id":1151,"parentId":1133,"tags":{},"startTime":1775835272821,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":19509,"timestamp":6228325216107,"id":1133,"parentId":1008,"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":1775835272820,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":6251,"timestamp":6228325229663,"id":1159,"parentId":1158,"tags":{},"startTime":1775835272834,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":6275,"timestamp":6228325229639,"id":1158,"parentId":1156,"tags":{},"startTime":1775835272834,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":6706,"timestamp":6228325229475,"id":1156,"parentId":1036,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/hooks-server-context.js","layer":"app-pages-browser"},"startTime":1775835272834,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":1520,"timestamp":6228325238352,"id":1183,"parentId":1182,"tags":{},"startTime":1775835272843,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":1530,"timestamp":6228325238345,"id":1182,"parentId":1164,"tags":{},"startTime":1775835272843,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":2579,"timestamp":6228325237597,"id":1164,"parentId":1037,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/redirect-status-code.js","layer":"app-pages-browser"},"startTime":1775835272842,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":1840,"timestamp":6228325238344,"id":1181,"parentId":1180,"tags":{},"startTime":1775835272843,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":1848,"timestamp":6228325238337,"id":1180,"parentId":1163,"tags":{},"startTime":1775835272842,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":2827,"timestamp":6228325237573,"id":1163,"parentId":1037,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/action-async-storage.external.js","layer":"shared"},"startTime":1775835272842,"traceId":"48e10e41d80a3d75"},{"name":"read-resource","duration":342,"timestamp":6228325241011,"id":1219,"parentId":1218,"tags":{},"startTime":1775835272845,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":77,"timestamp":6228325241359,"id":1252,"parentId":1218,"tags":{},"startTime":1775835272846,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":950,"timestamp":6228325240962,"id":1218,"parentId":1069,"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":1775835272845,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":3594,"timestamp":6228325238336,"id":1179,"parentId":1178,"tags":{},"startTime":1775835272842,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":3604,"timestamp":6228325238326,"id":1178,"parentId":1162,"tags":{},"startTime":1775835272842,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":4683,"timestamp":6228325237542,"id":1162,"parentId":1037,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/request-async-storage.external.js","layer":"shared"},"startTime":1775835272842,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":3872,"timestamp":6228325238361,"id":1185,"parentId":1184,"tags":{},"startTime":1775835272843,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":3881,"timestamp":6228325238353,"id":1184,"parentId":1165,"tags":{},"startTime":1775835272843,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":4803,"timestamp":6228325237620,"id":1165,"parentId":1035,"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":1775835272842,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":4108,"timestamp":6228325238324,"id":1177,"parentId":1176,"tags":{},"startTime":1775835272842,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":4139,"timestamp":6228325238293,"id":1176,"parentId":1161,"tags":{},"startTime":1775835272842,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":5248,"timestamp":6228325237446,"id":1161,"parentId":1036,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/static-generation-bailout.js","layer":"app-pages-browser"},"startTime":1775835272842,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":4336,"timestamp":6228325238369,"id":1187,"parentId":1186,"tags":{},"startTime":1775835272843,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":4343,"timestamp":6228325238362,"id":1186,"parentId":1166,"tags":{},"startTime":1775835272843,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":5318,"timestamp":6228325237641,"id":1166,"parentId":1035,"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":1775835272842,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":4609,"timestamp":6228325238387,"id":1189,"parentId":1188,"tags":{},"startTime":1775835272843,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":4633,"timestamp":6228325238370,"id":1188,"parentId":1168,"tags":{},"startTime":1775835272843,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":5826,"timestamp":6228325237723,"id":1168,"parentId":924,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/static-generation-async-storage-instance.js","layer":"shared"},"startTime":1775835272842,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":5174,"timestamp":6228325238395,"id":1191,"parentId":1190,"tags":{},"startTime":1775835272843,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":5183,"timestamp":6228325238388,"id":1190,"parentId":1169,"tags":{},"startTime":1775835272843,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":5884,"timestamp":6228325238006,"id":1169,"parentId":1050,"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":1775835272842,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":5500,"timestamp":6228325238403,"id":1193,"parentId":1192,"tags":{},"startTime":1775835272843,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":5508,"timestamp":6228325238396,"id":1192,"parentId":1170,"tags":{},"startTime":1775835272843,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":6239,"timestamp":6228325238044,"id":1170,"parentId":1058,"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":1775835272842,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":5885,"timestamp":6228325238410,"id":1195,"parentId":1194,"tags":{},"startTime":1775835272843,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":5892,"timestamp":6228325238403,"id":1194,"parentId":1171,"tags":{},"startTime":1775835272843,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":6571,"timestamp":6228325238074,"id":1171,"parentId":1065,"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":1775835272842,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":6438,"timestamp":6228325238435,"id":1201,"parentId":1200,"tags":{},"startTime":1775835272843,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":6448,"timestamp":6228325238425,"id":1200,"parentId":1174,"tags":{},"startTime":1775835272843,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":6945,"timestamp":6228325238150,"id":1174,"parentId":1008,"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":1775835272842,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":6687,"timestamp":6228325238424,"id":1199,"parentId":1198,"tags":{},"startTime":1775835272843,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":6694,"timestamp":6228325238418,"id":1198,"parentId":1173,"tags":{},"startTime":1775835272843,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":7367,"timestamp":6228325238126,"id":1173,"parentId":1008,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/app-link-gc.js","layer":"app-pages-browser"},"startTime":1775835272842,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":7084,"timestamp":6228325238417,"id":1197,"parentId":1196,"tags":{},"startTime":1775835272843,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":7091,"timestamp":6228325238411,"id":1196,"parentId":1172,"tags":{},"startTime":1775835272843,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":7639,"timestamp":6228325238102,"id":1172,"parentId":1008,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/on-recoverable-error.js","layer":"app-pages-browser"},"startTime":1775835272842,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":4646,"timestamp":6228325241102,"id":1225,"parentId":1224,"tags":{},"startTime":1775835272845,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":4655,"timestamp":6228325241094,"id":1224,"parentId":1204,"tags":{},"startTime":1775835272845,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":5373,"timestamp":6228325240599,"id":1204,"parentId":1070,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/is-hydration-error.js","layer":"app-pages-browser"},"startTime":1775835272845,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":4900,"timestamp":6228325241080,"id":1221,"parentId":1220,"tags":{},"startTime":1775835272845,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":4926,"timestamp":6228325241054,"id":1220,"parentId":1202,"tags":{},"startTime":1775835272845,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":5727,"timestamp":6228325240517,"id":1202,"parentId":1127,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/request-idle-callback.js","layer":"app-pages-browser"},"startTime":1775835272845,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":9631,"timestamp":6228325241119,"id":1229,"parentId":1228,"tags":{},"startTime":1775835272845,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":9640,"timestamp":6228325241112,"id":1228,"parentId":1206,"tags":{},"startTime":1775835272845,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":10396,"timestamp":6228325240660,"id":1206,"parentId":1125,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/omit.js","layer":"app-pages-browser"},"startTime":1775835272845,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":9977,"timestamp":6228325241093,"id":1223,"parentId":1222,"tags":{},"startTime":1775835272845,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":9989,"timestamp":6228325241081,"id":1222,"parentId":1203,"tags":{},"startTime":1775835272845,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":10843,"timestamp":6228325240572,"id":1203,"parentId":1064,"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":1775835272845,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":10299,"timestamp":6228325241127,"id":1231,"parentId":1230,"tags":{},"startTime":1775835272845,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":10307,"timestamp":6228325241120,"id":1230,"parentId":1207,"tags":{},"startTime":1775835272845,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":10994,"timestamp":6228325240726,"id":1207,"parentId":1125,"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":1775835272845,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":10621,"timestamp":6228325241111,"id":1227,"parentId":1226,"tags":{},"startTime":1775835272845,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":10629,"timestamp":6228325241103,"id":1226,"parentId":1205,"tags":{},"startTime":1775835272845,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":11394,"timestamp":6228325240638,"id":1205,"parentId":1125,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/querystring.js","layer":"app-pages-browser"},"startTime":1775835272845,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":10911,"timestamp":6228325241135,"id":1233,"parentId":1232,"tags":{},"startTime":1775835272845,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":10918,"timestamp":6228325241128,"id":1232,"parentId":1208,"tags":{},"startTime":1775835272845,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":11508,"timestamp":6228325240770,"id":1208,"parentId":1063,"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":1775835272845,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":11145,"timestamp":6228325241143,"id":1235,"parentId":1234,"tags":{},"startTime":1775835272845,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":11152,"timestamp":6228325241136,"id":1234,"parentId":1209,"tags":{},"startTime":1775835272845,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":11746,"timestamp":6228325240792,"id":1209,"parentId":1067,"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":1775835272845,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":11399,"timestamp":6228325241151,"id":1237,"parentId":1236,"tags":{},"startTime":1775835272845,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":11407,"timestamp":6228325241144,"id":1236,"parentId":1210,"tags":{},"startTime":1775835272845,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":12077,"timestamp":6228325240813,"id":1210,"parentId":1067,"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":1775835272845,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":11730,"timestamp":6228325241166,"id":1241,"parentId":1240,"tags":{},"startTime":1775835272845,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":11738,"timestamp":6228325241159,"id":1240,"parentId":1212,"tags":{},"startTime":1775835272845,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":12289,"timestamp":6228325240851,"id":1212,"parentId":1067,"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":1775835272845,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":11974,"timestamp":6228325241174,"id":1243,"parentId":1242,"tags":{},"startTime":1775835272845,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":11981,"timestamp":6228325241167,"id":1242,"parentId":1213,"tags":{},"startTime":1775835272845,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":12527,"timestamp":6228325240869,"id":1213,"parentId":1067,"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":1775835272845,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":12222,"timestamp":6228325241182,"id":1245,"parentId":1244,"tags":{},"startTime":1775835272845,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":12229,"timestamp":6228325241175,"id":1244,"parentId":1214,"tags":{},"startTime":1775835272845,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":12797,"timestamp":6228325240890,"id":1214,"parentId":1067,"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":1775835272845,"traceId":"48e10e41d80a3d75"}]
+[{"name":"next-swc-transform","duration":12597,"timestamp":6228325241197,"id":1249,"parentId":1248,"tags":{},"startTime":1775835272845,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":12605,"timestamp":6228325241191,"id":1248,"parentId":1216,"tags":{},"startTime":1775835272845,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":14034,"timestamp":6228325240926,"id":1216,"parentId":1125,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/index.js","layer":"app-pages-browser"},"startTime":1775835272845,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":13802,"timestamp":6228325241205,"id":1251,"parentId":1250,"tags":{},"startTime":1775835272845,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":13810,"timestamp":6228325241198,"id":1250,"parentId":1217,"tags":{},"startTime":1775835272845,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":14350,"timestamp":6228325240944,"id":1217,"parentId":1072,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/dev/noop-turbopack-hmr.js","layer":"app-pages-browser"},"startTime":1775835272845,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":14217,"timestamp":6228325241190,"id":1247,"parentId":1246,"tags":{},"startTime":1775835272845,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":14225,"timestamp":6228325241183,"id":1246,"parentId":1215,"tags":{},"startTime":1775835272845,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":14854,"timestamp":6228325240908,"id":1215,"parentId":1067,"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":1775835272845,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":14896,"timestamp":6228325241158,"id":1239,"parentId":1238,"tags":{},"startTime":1775835272845,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":14903,"timestamp":6228325241152,"id":1238,"parentId":1211,"tags":{},"startTime":1775835272845,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":16083,"timestamp":6228325240832,"id":1211,"parentId":1067,"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":1775835272845,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":7283,"timestamp":6228325249696,"id":1260,"parentId":1259,"tags":{},"startTime":1775835272854,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":7307,"timestamp":6228325249672,"id":1259,"parentId":1253,"tags":{},"startTime":1775835272854,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":9855,"timestamp":6228325247341,"id":1253,"parentId":1134,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/normalized-asset-prefix.js","layer":"app-pages-browser"},"startTime":1775835272852,"traceId":"48e10e41d80a3d75"},{"name":"read-resource","duration":28971,"timestamp":6228325238181,"id":1175,"parentId":1167,"tags":{},"startTime":1775835272842,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":46,"timestamp":6228325267165,"id":1261,"parentId":1167,"tags":{},"startTime":1775835272871,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":29844,"timestamp":6228325237666,"id":1167,"parentId":1006,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/deployment-id.js","layer":"app-pages-browser"},"startTime":1775835272842,"traceId":"48e10e41d80a3d75"},{"name":"read-resource","duration":81,"timestamp":6228325278826,"id":1276,"parentId":1275,"tags":{},"startTime":1775835272883,"traceId":"48e10e41d80a3d75"},{"name":"read-resource","duration":653,"timestamp":6228325292987,"id":1279,"parentId":1262,"tags":{},"startTime":1775835272897,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":1096,"timestamp":6228325293659,"id":1306,"parentId":1262,"tags":{},"startTime":1775835272898,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":20167,"timestamp":6228325275115,"id":1262,"parentId":1204,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/is-error.js","layer":"app-pages-browser"},"startTime":1775835272879,"traceId":"48e10e41d80a3d75"},{"name":"read-resource","duration":46399,"timestamp":6228325249582,"id":1257,"parentId":1255,"tags":{},"startTime":1775835272854,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":53,"timestamp":6228325295988,"id":1307,"parentId":1255,"tags":{},"startTime":1775835272900,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":47115,"timestamp":6228325249452,"id":1255,"parentId":1008,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/polyfills/polyfill-module.js","layer":"app-pages-browser"},"startTime":1775835272854,"traceId":"48e10e41d80a3d75"},{"name":"read-resource","duration":46976,"timestamp":6228325249597,"id":1258,"parentId":1256,"tags":{},"startTime":1775835272854,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":57,"timestamp":6228325296579,"id":1308,"parentId":1256,"tags":{},"startTime":1775835272901,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":47714,"timestamp":6228325249524,"id":1256,"parentId":909,"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":1775835272854,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":4105,"timestamp":6228325293198,"id":1281,"parentId":1280,"tags":{},"startTime":1775835272897,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":4144,"timestamp":6228325293161,"id":1280,"parentId":1263,"tags":{},"startTime":1775835272897,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":22466,"timestamp":6228325275263,"id":1263,"parentId":1171,"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":1775835272879,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":4472,"timestamp":6228325293272,"id":1287,"parentId":1286,"tags":{},"startTime":1775835272897,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":4514,"timestamp":6228325293231,"id":1286,"parentId":1266,"tags":{},"startTime":1775835272897,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":22859,"timestamp":6228325275418,"id":1266,"parentId":1170,"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":1775835272880,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":5076,"timestamp":6228325293230,"id":1285,"parentId":1284,"tags":{},"startTime":1775835272897,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":5087,"timestamp":6228325293219,"id":1284,"parentId":1265,"tags":{},"startTime":1775835272897,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":23538,"timestamp":6228325275386,"id":1265,"parentId":1170,"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":1775835272880,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":5657,"timestamp":6228325293284,"id":1289,"parentId":1288,"tags":{},"startTime":1775835272897,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":5668,"timestamp":6228325293274,"id":1288,"parentId":1267,"tags":{},"startTime":1775835272897,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":24236,"timestamp":6228325275445,"id":1267,"parentId":1170,"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":1775835272880,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":6419,"timestamp":6228325293295,"id":1291,"parentId":1290,"tags":{},"startTime":1775835272897,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":6429,"timestamp":6228325293286,"id":1290,"parentId":1268,"tags":{},"startTime":1775835272897,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":24927,"timestamp":6228325275471,"id":1268,"parentId":1170,"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":1775835272880,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":13226,"timestamp":6228325293305,"id":1293,"parentId":1292,"tags":{},"startTime":1775835272897,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":13239,"timestamp":6228325293296,"id":1292,"parentId":1269,"tags":{},"startTime":1775835272897,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":31969,"timestamp":6228325275503,"id":1269,"parentId":1170,"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":1775835272880,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":14162,"timestamp":6228325293330,"id":1297,"parentId":1296,"tags":{},"startTime":1775835272897,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":14176,"timestamp":6228325293317,"id":1296,"parentId":1271,"tags":{},"startTime":1775835272897,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":32647,"timestamp":6228325275556,"id":1271,"parentId":1203,"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":1775835272880,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":15037,"timestamp":6228325293217,"id":1283,"parentId":1282,"tags":{},"startTime":1775835272897,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":15052,"timestamp":6228325293203,"id":1282,"parentId":1264,"tags":{},"startTime":1775835272897,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":34010,"timestamp":6228325275342,"id":1264,"parentId":1170,"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":1775835272880,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":16059,"timestamp":6228325293316,"id":1295,"parentId":1294,"tags":{},"startTime":1775835272897,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":16069,"timestamp":6228325293307,"id":1294,"parentId":1270,"tags":{},"startTime":1775835272897,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":34320,"timestamp":6228325275529,"id":1270,"parentId":1208,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/promise-queue.js","layer":"app-pages-browser"},"startTime":1775835272880,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":16505,"timestamp":6228325293357,"id":1299,"parentId":1298,"tags":{},"startTime":1775835272898,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":16530,"timestamp":6228325293332,"id":1298,"parentId":1272,"tags":{},"startTime":1775835272897,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":34533,"timestamp":6228325275588,"id":1272,"parentId":1207,"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":1775835272880,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":18979,"timestamp":6228325293388,"id":1305,"parentId":1304,"tags":{},"startTime":1775835272898,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":18989,"timestamp":6228325293379,"id":1304,"parentId":1277,"tags":{},"startTime":1775835272898,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":33797,"timestamp":6228325278839,"id":1277,"parentId":1213,"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":1775835272883,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":19267,"timestamp":6228325293378,"id":1303,"parentId":1302,"tags":{},"startTime":1775835272898,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":19277,"timestamp":6228325293369,"id":1302,"parentId":1274,"tags":{},"startTime":1775835272898,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":37218,"timestamp":6228325275641,"id":1274,"parentId":1210,"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":1775835272880,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":19546,"timestamp":6228325293367,"id":1301,"parentId":1300,"tags":{},"startTime":1775835272898,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":19555,"timestamp":6228325293358,"id":1300,"parentId":1273,"tags":{},"startTime":1775835272898,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":37872,"timestamp":6228325275612,"id":1273,"parentId":1207,"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":1775835272880,"traceId":"48e10e41d80a3d75"},{"name":"read-resource","duration":579,"timestamp":6228325316804,"id":1330,"parentId":1316,"tags":{},"startTime":1775835272921,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":4058,"timestamp":6228325317388,"id":1371,"parentId":1316,"tags":{},"startTime":1775835272922,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":5245,"timestamp":6228325316533,"id":1316,"parentId":1210,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_tagged_template_literal_loose.js","layer":"app-pages-browser"},"startTime":1775835272921,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":8271,"timestamp":6228325317023,"id":1334,"parentId":1333,"tags":{},"startTime":1775835272921,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":8286,"timestamp":6228325317012,"id":1333,"parentId":1310,"tags":{},"startTime":1775835272921,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":9391,"timestamp":6228325316384,"id":1310,"parentId":1213,"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":1775835272921,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":8750,"timestamp":6228325317040,"id":1338,"parentId":1337,"tags":{},"startTime":1775835272921,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":8758,"timestamp":6228325317033,"id":1337,"parentId":1312,"tags":{},"startTime":1775835272921,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":9639,"timestamp":6228325316448,"id":1312,"parentId":1210,"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":1775835272921,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":9066,"timestamp":6228325317032,"id":1336,"parentId":1335,"tags":{},"startTime":1775835272921,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":9075,"timestamp":6228325317024,"id":1335,"parentId":1311,"tags":{},"startTime":1775835272921,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":9901,"timestamp":6228325316416,"id":1311,"parentId":1213,"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":1775835272921,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":9314,"timestamp":6228325317010,"id":1332,"parentId":1331,"tags":{},"startTime":1775835272921,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":9343,"timestamp":6228325316983,"id":1331,"parentId":1309,"tags":{},"startTime":1775835272921,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":10236,"timestamp":6228325316302,"id":1309,"parentId":1213,"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":1775835272920,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":9501,"timestamp":6228325317049,"id":1340,"parentId":1339,"tags":{},"startTime":1775835272921,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":9510,"timestamp":6228325317041,"id":1339,"parentId":1313,"tags":{},"startTime":1775835272921,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":10256,"timestamp":6228325316470,"id":1313,"parentId":1210,"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":1775835272921,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":9645,"timestamp":6228325317087,"id":1344,"parentId":1343,"tags":{},"startTime":1775835272921,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":9654,"timestamp":6228325317080,"id":1343,"parentId":1315,"tags":{},"startTime":1775835272921,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":10447,"timestamp":6228325316514,"id":1315,"parentId":1210,"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":1775835272921,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":9894,"timestamp":6228325317079,"id":1342,"parentId":1341,"tags":{},"startTime":1775835272921,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":9913,"timestamp":6228325317061,"id":1341,"parentId":1314,"tags":{},"startTime":1775835272921,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":10645,"timestamp":6228325316494,"id":1314,"parentId":1210,"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":1775835272921,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":10044,"timestamp":6228325317102,"id":1348,"parentId":1347,"tags":{},"startTime":1775835272921,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":10052,"timestamp":6228325317095,"id":1347,"parentId":1318,"tags":{},"startTime":1775835272921,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":10749,"timestamp":6228325316592,"id":1318,"parentId":1216,"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":1775835272921,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":10233,"timestamp":6228325317116,"id":1352,"parentId":1351,"tags":{},"startTime":1775835272921,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":10241,"timestamp":6228325317110,"id":1351,"parentId":1320,"tags":{},"startTime":1775835272921,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":10927,"timestamp":6228325316627,"id":1320,"parentId":1213,"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":1775835272921,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":10454,"timestamp":6228325317109,"id":1350,"parentId":1349,"tags":{},"startTime":1775835272921,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":10462,"timestamp":6228325317102,"id":1349,"parentId":1319,"tags":{},"startTime":1775835272921,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":11224,"timestamp":6228325316610,"id":1319,"parentId":1211,"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":1775835272921,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":10754,"timestamp":6228325317095,"id":1346,"parentId":1345,"tags":{},"startTime":1775835272921,"traceId":"48e10e41d80a3d75"}]
+[{"name":"next-swc-loader","duration":10890,"timestamp":6228325317088,"id":1345,"parentId":1317,"tags":{},"startTime":1775835272921,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":11975,"timestamp":6228325316573,"id":1317,"parentId":1216,"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":1775835272921,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":11417,"timestamp":6228325317138,"id":1358,"parentId":1357,"tags":{},"startTime":1775835272921,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":11425,"timestamp":6228325317132,"id":1357,"parentId":1323,"tags":{},"startTime":1775835272921,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":12105,"timestamp":6228325316680,"id":1323,"parentId":1211,"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":1775835272921,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":11666,"timestamp":6228325317131,"id":1356,"parentId":1355,"tags":{},"startTime":1775835272921,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":11674,"timestamp":6228325317124,"id":1355,"parentId":1322,"tags":{},"startTime":1775835272921,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":12466,"timestamp":6228325316662,"id":1322,"parentId":1215,"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":1775835272921,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":12019,"timestamp":6228325317123,"id":1354,"parentId":1353,"tags":{},"startTime":1775835272921,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":12026,"timestamp":6228325317117,"id":1353,"parentId":1321,"tags":{},"startTime":1775835272921,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":12975,"timestamp":6228325316645,"id":1321,"parentId":1213,"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":1775835272921,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":12476,"timestamp":6228325317150,"id":1360,"parentId":1359,"tags":{},"startTime":1775835272921,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":12488,"timestamp":6228325317139,"id":1359,"parentId":1324,"tags":{},"startTime":1775835272921,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":13153,"timestamp":6228325316696,"id":1324,"parentId":1163,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/action-async-storage-instance.js","layer":"shared"},"startTime":1775835272921,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":12699,"timestamp":6228325317158,"id":1362,"parentId":1361,"tags":{},"startTime":1775835272921,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":12707,"timestamp":6228325317151,"id":1361,"parentId":1325,"tags":{},"startTime":1775835272921,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":13348,"timestamp":6228325316712,"id":1325,"parentId":1162,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/request-async-storage-instance.js","layer":"shared"},"startTime":1775835272921,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":12888,"timestamp":6228325317179,"id":1368,"parentId":1367,"tags":{},"startTime":1775835272921,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":12896,"timestamp":6228325317173,"id":1367,"parentId":1328,"tags":{},"startTime":1775835272921,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":13629,"timestamp":6228325316760,"id":1328,"parentId":1211,"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":1775835272921,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":13233,"timestamp":6228325317165,"id":1364,"parentId":1363,"tags":{},"startTime":1775835272921,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":13240,"timestamp":6228325317158,"id":1363,"parentId":1326,"tags":{},"startTime":1775835272921,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":13908,"timestamp":6228325316727,"id":1326,"parentId":1168,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/async-local-storage.js","layer":"shared"},"startTime":1775835272921,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":13471,"timestamp":6228325317172,"id":1366,"parentId":1365,"tags":{},"startTime":1775835272921,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":13478,"timestamp":6228325317165,"id":1365,"parentId":1327,"tags":{},"startTime":1775835272921,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":14274,"timestamp":6228325316742,"id":1327,"parentId":1211,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/error-source.js","layer":"app-pages-browser"},"startTime":1775835272921,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":23061,"timestamp":6228325317186,"id":1370,"parentId":1369,"tags":{},"startTime":1775835272921,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":23072,"timestamp":6228325317180,"id":1369,"parentId":1329,"tags":{},"startTime":1775835272921,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":24287,"timestamp":6228325316777,"id":1329,"parentId":1211,"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":1775835272921,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":7296,"timestamp":6228325334048,"id":1383,"parentId":1382,"tags":{},"startTime":1775835272938,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":7340,"timestamp":6228325334005,"id":1382,"parentId":1372,"tags":{},"startTime":1775835272938,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":8407,"timestamp":6228325333164,"id":1372,"parentId":1262,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/is-plain-object.js","layer":"app-pages-browser"},"startTime":1775835272937,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":7500,"timestamp":6228325334081,"id":1389,"parentId":1388,"tags":{},"startTime":1775835272938,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":7508,"timestamp":6228325334074,"id":1388,"parentId":1375,"tags":{},"startTime":1775835272938,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":8530,"timestamp":6228325333285,"id":1375,"parentId":1265,"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":1775835272937,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":7754,"timestamp":6228325334073,"id":1387,"parentId":1386,"tags":{},"startTime":1775835272938,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":7762,"timestamp":6228325334066,"id":1386,"parentId":1374,"tags":{},"startTime":1775835272938,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":8905,"timestamp":6228325333263,"id":1374,"parentId":1265,"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":1775835272937,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":8086,"timestamp":6228325334096,"id":1393,"parentId":1392,"tags":{},"startTime":1775835272938,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":8093,"timestamp":6228325334090,"id":1392,"parentId":1377,"tags":{},"startTime":1775835272938,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":9068,"timestamp":6228325333325,"id":1377,"parentId":1265,"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":1775835272937,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":8316,"timestamp":6228325334089,"id":1391,"parentId":1390,"tags":{},"startTime":1775835272938,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":8323,"timestamp":6228325334082,"id":1390,"parentId":1376,"tags":{},"startTime":1775835272938,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":9399,"timestamp":6228325333306,"id":1376,"parentId":1265,"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":1775835272937,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":8692,"timestamp":6228325334065,"id":1385,"parentId":1384,"tags":{},"startTime":1775835272938,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":8707,"timestamp":6228325334050,"id":1384,"parentId":1373,"tags":{},"startTime":1775835272938,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":10608,"timestamp":6228325333237,"id":1373,"parentId":1266,"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":1775835272937,"traceId":"48e10e41d80a3d75"},{"name":"read-resource","duration":280,"timestamp":6228325345802,"id":1404,"parentId":1394,"tags":{},"startTime":1775835272950,"traceId":"48e10e41d80a3d75"},{"name":"read-resource","duration":322,"timestamp":6228325345806,"id":1405,"parentId":1400,"tags":{},"startTime":1775835272950,"traceId":"48e10e41d80a3d75"},{"name":"read-resource","duration":348,"timestamp":6228325345808,"id":1406,"parentId":1401,"tags":{},"startTime":1775835272950,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":324,"timestamp":6228325346090,"id":1417,"parentId":1394,"tags":{},"startTime":1775835272950,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":284,"timestamp":6228325346131,"id":1418,"parentId":1400,"tags":{},"startTime":1775835272950,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":257,"timestamp":6228325346158,"id":1419,"parentId":1401,"tags":{},"startTime":1775835272950,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":1479,"timestamp":6228325345372,"id":1394,"parentId":1273,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/constants.js","layer":"app-pages-browser"},"startTime":1775835272950,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":1300,"timestamp":6228325345671,"id":1400,"parentId":1270,"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":1775835272950,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":1323,"timestamp":6228325345711,"id":1401,"parentId":1270,"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":1775835272950,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":3055,"timestamp":6228325345906,"id":1408,"parentId":1407,"tags":{},"startTime":1775835272950,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":3087,"timestamp":6228325345876,"id":1407,"parentId":1395,"tags":{},"startTime":1775835272950,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":3754,"timestamp":6228325345481,"id":1395,"parentId":1273,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/escape-regexp.js","layer":"app-pages-browser"},"startTime":1775835272950,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":3301,"timestamp":6228325345944,"id":1414,"parentId":1413,"tags":{},"startTime":1775835272950,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":3309,"timestamp":6228325345936,"id":1413,"parentId":1398,"tags":{},"startTime":1775835272950,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":3872,"timestamp":6228325345624,"id":1398,"parentId":1264,"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":1775835272950,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":3637,"timestamp":6228325345935,"id":1412,"parentId":1411,"tags":{},"startTime":1775835272950,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":3647,"timestamp":6228325345927,"id":1411,"parentId":1397,"tags":{},"startTime":1775835272950,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":4276,"timestamp":6228325345596,"id":1397,"parentId":1264,"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":1775835272950,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":285138,"timestamp":6228325345926,"id":1410,"parentId":1409,"tags":{},"startTime":1775835272950,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":285164,"timestamp":6228325345909,"id":1409,"parentId":1396,"tags":{},"startTime":1775835272950,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":286252,"timestamp":6228325345552,"id":1396,"parentId":1271,"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":1775835272950,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":285893,"timestamp":6228325345952,"id":1416,"parentId":1415,"tags":{},"startTime":1775835272950,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":285902,"timestamp":6228325345945,"id":1415,"parentId":1399,"tags":{},"startTime":1775835272950,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":286992,"timestamp":6228325345646,"id":1399,"parentId":1264,"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":1775835272950,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":285756,"timestamp":6228325348659,"id":1442,"parentId":1441,"tags":{},"startTime":1775835272953,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":285771,"timestamp":6228325348649,"id":1441,"parentId":1422,"tags":{},"startTime":1775835272953,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":286995,"timestamp":6228325348015,"id":1422,"parentId":1321,"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":1775835272952,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":286420,"timestamp":6228325348623,"id":1438,"parentId":1437,"tags":{},"startTime":1775835272953,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":286471,"timestamp":6228325348573,"id":1437,"parentId":1420,"tags":{},"startTime":1775835272953,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":287829,"timestamp":6228325347931,"id":1420,"parentId":1322,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/magic-identifier.js","layer":"app-pages-browser"},"startTime":1775835272952,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":287124,"timestamp":6228325348668,"id":1444,"parentId":1443,"tags":{},"startTime":1775835272953,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":287134,"timestamp":6228325348660,"id":1443,"parentId":1423,"tags":{},"startTime":1775835272953,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":288334,"timestamp":6228325348037,"id":1423,"parentId":1312,"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":1775835272952,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":287707,"timestamp":6228325348677,"id":1446,"parentId":1445,"tags":{},"startTime":1775835272953,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":287716,"timestamp":6228325348669,"id":1445,"parentId":1424,"tags":{},"startTime":1775835272953,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":288629,"timestamp":6228325348058,"id":1424,"parentId":1312,"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":1775835272952,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":288012,"timestamp":6228325348685,"id":1448,"parentId":1447,"tags":{},"startTime":1775835272953,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":288021,"timestamp":6228325348678,"id":1447,"parentId":1425,"tags":{},"startTime":1775835272953,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":288897,"timestamp":6228325348079,"id":1425,"parentId":1312,"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":1775835272952,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":288347,"timestamp":6228325348647,"id":1440,"parentId":1439,"tags":{},"startTime":1775835272953,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":288368,"timestamp":6228325348628,"id":1439,"parentId":1421,"tags":{},"startTime":1775835272953,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":289846,"timestamp":6228325347986,"id":1421,"parentId":1319,"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":1775835272952,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":289150,"timestamp":6228325348693,"id":1450,"parentId":1449,"tags":{},"startTime":1775835272953,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":289158,"timestamp":6228325348686,"id":1449,"parentId":1426,"tags":{},"startTime":1775835272953,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":290021,"timestamp":6228325348098,"id":1426,"parentId":1312,"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":1775835272952,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":289411,"timestamp":6228325348717,"id":1456,"parentId":1455,"tags":{},"startTime":1775835272953,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":289420,"timestamp":6228325348710,"id":1455,"parentId":1429,"tags":{},"startTime":1775835272953,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":290263,"timestamp":6228325348157,"id":1429,"parentId":1315,"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":1775835272952,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":289728,"timestamp":6228325348701,"id":1452,"parentId":1451,"tags":{},"startTime":1775835272953,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":289736,"timestamp":6228325348694,"id":1451,"parentId":1427,"tags":{},"startTime":1775835272953,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":290572,"timestamp":6228325348119,"id":1427,"parentId":1312,"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":1775835272952,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":289958,"timestamp":6228325348742,"id":1462,"parentId":1461,"tags":{},"startTime":1775835272953,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":289966,"timestamp":6228325348735,"id":1461,"parentId":1432,"tags":{},"startTime":1775835272953,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":290683,"timestamp":6228325348305,"id":1432,"parentId":1320,"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":1775835272952,"traceId":"48e10e41d80a3d75"}]
+[{"name":"next-swc-transform","duration":290391,"timestamp":6228325348725,"id":1458,"parentId":1457,"tags":{},"startTime":1775835272953,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":290399,"timestamp":6228325348718,"id":1457,"parentId":1430,"tags":{},"startTime":1775835272953,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":291427,"timestamp":6228325348177,"id":1430,"parentId":1315,"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":1775835272952,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":290907,"timestamp":6228325348710,"id":1454,"parentId":1453,"tags":{},"startTime":1775835272953,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":290915,"timestamp":6228325348703,"id":1453,"parentId":1428,"tags":{},"startTime":1775835272953,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":291834,"timestamp":6228325348138,"id":1428,"parentId":1313,"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":1775835272952,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":291231,"timestamp":6228325348750,"id":1464,"parentId":1463,"tags":{},"startTime":1775835272953,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":291240,"timestamp":6228325348743,"id":1463,"parentId":1433,"tags":{},"startTime":1775835272953,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":291864,"timestamp":6228325348402,"id":1433,"parentId":1320,"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":1775835272953,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":291547,"timestamp":6228325348733,"id":1460,"parentId":1459,"tags":{},"startTime":1775835272953,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":291555,"timestamp":6228325348727,"id":1459,"parentId":1431,"tags":{},"startTime":1775835272953,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":292623,"timestamp":6228325348197,"id":1431,"parentId":1314,"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":1775835272952,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":293012,"timestamp":6228325348766,"id":1468,"parentId":1467,"tags":{},"startTime":1775835272953,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":293020,"timestamp":6228325348759,"id":1467,"parentId":1435,"tags":{},"startTime":1775835272953,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":293769,"timestamp":6228325348461,"id":1435,"parentId":1321,"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":1775835272953,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":293470,"timestamp":6228325348774,"id":1470,"parentId":1469,"tags":{},"startTime":1775835272953,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":293478,"timestamp":6228325348767,"id":1469,"parentId":1436,"tags":{},"startTime":1775835272953,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":293971,"timestamp":6228325348517,"id":1436,"parentId":1321,"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":1775835272953,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":293749,"timestamp":6228325348758,"id":1466,"parentId":1465,"tags":{},"startTime":1775835272953,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":293757,"timestamp":6228325348751,"id":1465,"parentId":1434,"tags":{},"startTime":1775835272953,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":294635,"timestamp":6228325348435,"id":1434,"parentId":1323,"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":1775835272953,"traceId":"48e10e41d80a3d75"},{"name":"read-resource","duration":309629,"timestamp":6228325333623,"id":1379,"parentId":1378,"tags":{},"startTime":1775835272938,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":309999,"timestamp":6228325333345,"id":1378,"parentId":871,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react/jsx-dev-runtime.js","layer":"app-pages-browser"},"startTime":1775835272938,"traceId":"48e10e41d80a3d75"},{"name":"read-resource","duration":309708,"timestamp":6228325333647,"id":1381,"parentId":1380,"tags":{},"startTime":1775835272938,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":309762,"timestamp":6228325333639,"id":1380,"parentId":876,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react/jsx-runtime.js","layer":"app-pages-browser"},"startTime":1775835272938,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":21577,"timestamp":6228325633999,"id":1474,"parentId":1473,"tags":{},"startTime":1775835273238,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":21614,"timestamp":6228325633966,"id":1473,"parentId":1472,"tags":{},"startTime":1775835273238,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":22218,"timestamp":6228325633862,"id":1472,"parentId":1329,"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":1775835273238,"traceId":"48e10e41d80a3d75"},{"name":"read-resource","duration":310826,"timestamp":6228325345761,"id":1403,"parentId":1402,"tags":{},"startTime":1775835272950,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":311096,"timestamp":6228325345749,"id":1402,"parentId":879,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react/index.js","layer":"app-pages-browser"},"startTime":1775835272950,"traceId":"48e10e41d80a3d75"},{"name":"read-resource","duration":249,"timestamp":6228325658124,"id":1490,"parentId":1488,"tags":{},"startTime":1775835273262,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":29,"timestamp":6228325658378,"id":1506,"parentId":1488,"tags":{},"startTime":1775835273263,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":1518,"timestamp":6228325658045,"id":1488,"parentId":1431,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/anser/index.js","layer":"app-pages-browser"},"startTime":1775835273262,"traceId":"48e10e41d80a3d75"},{"name":"postcss-process","duration":228468,"timestamp":6228325537918,"id":1471,"parentId":1278,"tags":{},"startTime":1775835273142,"traceId":"48e10e41d80a3d75"},{"name":"postcss-loader","duration":488450,"timestamp":6228325279001,"id":1278,"parentId":1275,"tags":{},"startTime":1775835272883,"traceId":"48e10e41d80a3d75"},{"name":"css-loader","duration":27068,"timestamp":6228325767571,"id":1507,"parentId":1275,"tags":{"astUsed":"true"},"startTime":1775835273372,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":139411,"timestamp":6228325658163,"id":1493,"parentId":1492,"tags":{},"startTime":1775835273262,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":139445,"timestamp":6228325658133,"id":1492,"parentId":1481,"tags":{},"startTime":1775835273262,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":140279,"timestamp":6228325657866,"id":1481,"parentId":1423,"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":1775835273262,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":139976,"timestamp":6228325658189,"id":1499,"parentId":1498,"tags":{},"startTime":1775835273262,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":139983,"timestamp":6228325658182,"id":1498,"parentId":1484,"tags":{},"startTime":1775835273262,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":140602,"timestamp":6228325657968,"id":1484,"parentId":1428,"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":1775835273262,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":140445,"timestamp":6228325658174,"id":1495,"parentId":1494,"tags":{},"startTime":1775835273262,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":140456,"timestamp":6228325658165,"id":1494,"parentId":1482,"tags":{},"startTime":1775835273262,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":141445,"timestamp":6228325657921,"id":1482,"parentId":1435,"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":1775835273262,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":142851,"timestamp":6228325658195,"id":1501,"parentId":1500,"tags":{},"startTime":1775835273262,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":142860,"timestamp":6228325658189,"id":1500,"parentId":1485,"tags":{},"startTime":1775835273262,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":143559,"timestamp":6228325657988,"id":1485,"parentId":1431,"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":1775835273262,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":143378,"timestamp":6228325658202,"id":1503,"parentId":1502,"tags":{},"startTime":1775835273262,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":143385,"timestamp":6228325658196,"id":1502,"parentId":1486,"tags":{},"startTime":1775835273262,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":143939,"timestamp":6228325658007,"id":1486,"parentId":1435,"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":1775835273262,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":143761,"timestamp":6228325658209,"id":1505,"parentId":1504,"tags":{},"startTime":1775835273262,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":143767,"timestamp":6228325658203,"id":1504,"parentId":1487,"tags":{},"startTime":1775835273262,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":144825,"timestamp":6228325658026,"id":1487,"parentId":1436,"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":1775835273262,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":144931,"timestamp":6228325658182,"id":1497,"parentId":1496,"tags":{},"startTime":1775835273262,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":144940,"timestamp":6228325658175,"id":1496,"parentId":1483,"tags":{},"startTime":1775835273262,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":152072,"timestamp":6228325657946,"id":1483,"parentId":1428,"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":1775835273262,"traceId":"48e10e41d80a3d75"},{"name":"read-resource","duration":161535,"timestamp":6228325657352,"id":1476,"parentId":1475,"tags":{},"startTime":1775835273262,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":162179,"timestamp":6228325657282,"id":1475,"parentId":937,"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":1775835273261,"traceId":"48e10e41d80a3d75"},{"name":"read-resource","duration":162048,"timestamp":6228325657424,"id":1478,"parentId":1477,"tags":{},"startTime":1775835273262,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":162441,"timestamp":6228325657380,"id":1477,"parentId":878,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react-dom/index.js","layer":"app-pages-browser"},"startTime":1775835273262,"traceId":"48e10e41d80a3d75"},{"name":"read-resource","duration":162371,"timestamp":6228325657457,"id":1480,"parentId":1479,"tags":{},"startTime":1775835273262,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":162524,"timestamp":6228325657439,"id":1479,"parentId":1008,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react-dom/client.js","layer":"app-pages-browser"},"startTime":1775835273262,"traceId":"48e10e41d80a3d75"},{"name":"read-resource","duration":163789,"timestamp":6228325658126,"id":1491,"parentId":1489,"tags":{},"startTime":1775835273262,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":38,"timestamp":6228325821929,"id":1514,"parentId":1489,"tags":{},"startTime":1775835273426,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":164017,"timestamp":6228325658085,"id":1489,"parentId":909,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react-refresh/runtime.js","layer":"app-pages-browser"},"startTime":1775835273262,"traceId":"48e10e41d80a3d75"},{"name":"read-resource","duration":124,"timestamp":6228325822685,"id":1518,"parentId":1516,"tags":{},"startTime":1775835273427,"traceId":"48e10e41d80a3d75"},{"name":"read-resource","duration":178,"timestamp":6228325822688,"id":1519,"parentId":1517,"tags":{},"startTime":1775835273427,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":147,"timestamp":6228325822813,"id":1522,"parentId":1516,"tags":{},"startTime":1775835273427,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":93,"timestamp":6228325822868,"id":1523,"parentId":1517,"tags":{},"startTime":1775835273427,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":3053,"timestamp":6228325822579,"id":1516,"parentId":1483,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/platform/platform.js","layer":"app-pages-browser"},"startTime":1775835273427,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":3277,"timestamp":6228325822634,"id":1517,"parentId":1483,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/css.escape/css.escape.js","layer":"app-pages-browser"},"startTime":1775835273427,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":3417,"timestamp":6228325822763,"id":1521,"parentId":1520,"tags":{},"startTime":1775835273427,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":3452,"timestamp":6228325822729,"id":1520,"parentId":1515,"tags":{},"startTime":1775835273427,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":4126,"timestamp":6228325822505,"id":1515,"parentId":1485,"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":1775835273427,"traceId":"48e10e41d80a3d75"},{"name":"read-resource","duration":6772,"timestamp":6228325820623,"id":1511,"parentId":1510,"tags":{},"startTime":1775835273425,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":8648,"timestamp":6228325820608,"id":1510,"parentId":1380,"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":1775835273425,"traceId":"48e10e41d80a3d75"},{"name":"read-resource","duration":8615,"timestamp":6228325820647,"id":1513,"parentId":1512,"tags":{},"startTime":1775835273425,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":14511,"timestamp":6228325820635,"id":1512,"parentId":1402,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react/cjs/react.development.js","layer":"app-pages-browser"},"startTime":1775835273425,"traceId":"48e10e41d80a3d75"},{"name":"read-resource","duration":14576,"timestamp":6228325820583,"id":1509,"parentId":1508,"tags":{},"startTime":1775835273425,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":16175,"timestamp":6228325820528,"id":1508,"parentId":1378,"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":1775835273425,"traceId":"48e10e41d80a3d75"},{"name":"add-entry","duration":722169,"timestamp":6228325115442,"id":864,"parentId":861,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2Fsectors%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1775835272720,"traceId":"48e10e41d80a3d75"},{"name":"build-module-css","duration":562911,"timestamp":6228325275670,"id":1275,"parentId":1254,"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":1775835272880,"traceId":"48e10e41d80a3d75"},{"name":"read-resource","duration":805,"timestamp":6228325838131,"id":1529,"parentId":1528,"tags":{},"startTime":1775835273442,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":52,"timestamp":6228325838944,"id":1530,"parentId":1528,"tags":{},"startTime":1775835273443,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":1849,"timestamp":6228325838029,"id":1528,"parentId":1489,"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":1775835273442,"traceId":"48e10e41d80a3d75"},{"name":"read-resource","duration":3009,"timestamp":6228325836879,"id":1525,"parentId":1524,"tags":{},"startTime":1775835273441,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":3116,"timestamp":6228325836836,"id":1524,"parentId":1475,"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":1775835273441,"traceId":"48e10e41d80a3d75"},{"name":"add-entry","duration":724652,"timestamp":6228325115321,"id":862,"parentId":861,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js"},"startTime":1775835272719,"traceId":"48e10e41d80a3d75"},{"name":"read-resource","duration":351,"timestamp":6228325840638,"id":1532,"parentId":1531,"tags":{},"startTime":1775835273445,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":1069,"timestamp":6228325840406,"id":1531,"parentId":1275,"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":1775835273445,"traceId":"48e10e41d80a3d75"},{"name":"build-module-css","duration":601013,"timestamp":6228325247417,"id":1254,"parentId":868,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/globals.css","layer":"app-pages-browser"},"startTime":1775835272852,"traceId":"48e10e41d80a3d75"},{"name":"read-resource","duration":10611,"timestamp":6228325837856,"id":1527,"parentId":1526,"tags":{},"startTime":1775835273442,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":93594,"timestamp":6228325837837,"id":1526,"parentId":1477,"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":1775835273442,"traceId":"48e10e41d80a3d75"},{"name":"read-resource","duration":91875,"timestamp":6228325840804,"id":1534,"parentId":1533,"tags":{},"startTime":1775835273445,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":94622,"timestamp":6228325840790,"id":1533,"parentId":1524,"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":1775835273445,"traceId":"48e10e41d80a3d75"},{"name":"build-module","duration":86,"timestamp":6228325936525,"id":1535,"parentId":1254,"tags":{},"startTime":1775835273541,"traceId":"48e10e41d80a3d75"},{"name":"add-entry","duration":821165,"timestamp":6228325115497,"id":865,"parentId":861,"tags":{"request":"next-flight-client-entry-loader?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%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&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":1775835272720,"traceId":"48e10e41d80a3d75"},{"name":"read-resource","duration":395,"timestamp":6228325939379,"id":1537,"parentId":1536,"tags":{},"startTime":1775835273544,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":32,"timestamp":6228325939793,"id":1538,"parentId":1536,"tags":{},"startTime":1775835273544,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":923,"timestamp":6228325939181,"id":1536,"parentId":1526,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/scheduler/index.js","layer":"app-pages-browser"},"startTime":1775835273543,"traceId":"48e10e41d80a3d75"}]
+[{"name":"read-resource","duration":383,"timestamp":6228325940853,"id":1540,"parentId":1539,"tags":{},"startTime":1775835273545,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":55,"timestamp":6228325941247,"id":1541,"parentId":1539,"tags":{},"startTime":1775835273545,"traceId":"48e10e41d80a3d75"},{"name":"build-module-js","duration":1735,"timestamp":6228325940736,"id":1539,"parentId":1536,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/scheduler/cjs/scheduler.development.js","layer":"app-pages-browser"},"startTime":1775835273545,"traceId":"48e10e41d80a3d75"},{"name":"add-entry","duration":827027,"timestamp":6228325115508,"id":866,"parentId":861,"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":1775835272720,"traceId":"48e10e41d80a3d75"},{"name":"add-entry","duration":827117,"timestamp":6228325115423,"id":863,"parentId":861,"tags":{"request":"./node_modules/next/dist/client/app-next-dev.js"},"startTime":1775835272720,"traceId":"48e10e41d80a3d75"},{"name":"make","duration":829998,"timestamp":6228325112563,"id":861,"parentId":860,"tags":{},"startTime":1775835272717,"traceId":"48e10e41d80a3d75"},{"name":"chunk-graph","duration":2189,"timestamp":6228325946016,"id":1543,"parentId":1542,"tags":{},"startTime":1775835273550,"traceId":"48e10e41d80a3d75"},{"name":"optimize-modules","duration":4,"timestamp":6228325948228,"id":1545,"parentId":1542,"tags":{},"startTime":1775835273552,"traceId":"48e10e41d80a3d75"},{"name":"optimize-chunks","duration":55,"timestamp":6228325948242,"id":1546,"parentId":1542,"tags":{},"startTime":1775835273552,"traceId":"48e10e41d80a3d75"},{"name":"optimize-tree","duration":5,"timestamp":6228325948311,"id":1547,"parentId":1542,"tags":{},"startTime":1775835273552,"traceId":"48e10e41d80a3d75"},{"name":"optimize-chunk-modules","duration":3,"timestamp":6228325948326,"id":1548,"parentId":1542,"tags":{},"startTime":1775835273552,"traceId":"48e10e41d80a3d75"},{"name":"optimize","duration":816,"timestamp":6228325948220,"id":1544,"parentId":1542,"tags":{},"startTime":1775835273552,"traceId":"48e10e41d80a3d75"},{"name":"module-hash","duration":3277,"timestamp":6228325951122,"id":1549,"parentId":1542,"tags":{},"startTime":1775835273555,"traceId":"48e10e41d80a3d75"},{"name":"code-generation","duration":7227,"timestamp":6228325954414,"id":1550,"parentId":1542,"tags":{},"startTime":1775835273559,"traceId":"48e10e41d80a3d75"},{"name":"hash","duration":9742,"timestamp":6228325963104,"id":1551,"parentId":1542,"tags":{},"startTime":1775835273567,"traceId":"48e10e41d80a3d75"},{"name":"code-generation-jobs","duration":288,"timestamp":6228325972846,"id":1552,"parentId":1542,"tags":{},"startTime":1775835273577,"traceId":"48e10e41d80a3d75"},{"name":"module-assets","duration":56,"timestamp":6228325973116,"id":1553,"parentId":1542,"tags":{},"startTime":1775835273577,"traceId":"48e10e41d80a3d75"},{"name":"create-chunk-assets","duration":85954,"timestamp":6228325973175,"id":1554,"parentId":1542,"tags":{},"startTime":1775835273577,"traceId":"48e10e41d80a3d75"},{"name":"NextJsBuildManifest-generateClientManifest","duration":61,"timestamp":6228326059767,"id":1556,"parentId":860,"tags":{},"startTime":1775835273664,"traceId":"48e10e41d80a3d75"},{"name":"NextJsBuildManifest-createassets","duration":250,"timestamp":6228326059582,"id":1555,"parentId":860,"tags":{},"startTime":1775835273664,"traceId":"48e10e41d80a3d75"},{"name":"seal","duration":116076,"timestamp":6228325945382,"id":1542,"parentId":860,"tags":{},"startTime":1775835273550,"traceId":"48e10e41d80a3d75"},{"name":"webpack-compilation","duration":949182,"timestamp":6228325112320,"id":860,"parentId":254,"tags":{"name":"client"},"startTime":1775835272716,"traceId":"48e10e41d80a3d75"},{"name":"emit","duration":16359,"timestamp":6228326061532,"id":1557,"parentId":254,"tags":{},"startTime":1775835273666,"traceId":"48e10e41d80a3d75"},{"name":"compile-path","duration":1574374,"timestamp":6228324504412,"id":117,"tags":{"trigger":"/sectors","isTurbopack":false},"startTime":1775835272109,"traceId":"48e10e41d80a3d75"},{"name":"webpack-invalidated-client","duration":1406229,"timestamp":6228324672796,"id":254,"parentId":3,"tags":{"trigger":"manual"},"startTime":1775835272277,"traceId":"48e10e41d80a3d75"}]
+[{"name":"handle-request","duration":1680902,"timestamp":6228324493906,"id":115,"tags":{"url":"/sectors","isTurbopack":false},"startTime":1775835272098,"traceId":"48e10e41d80a3d75"},{"name":"memory-usage","duration":0,"timestamp":6228326174848,"id":1558,"parentId":115,"tags":{"url":"/sectors","memory.rss":"465338368","memory.heapUsed":"272285448","memory.heapTotal":"297369600"},"startTime":1775835273779,"traceId":"48e10e41d80a3d75"},{"name":"client-success","duration":30,"timestamp":6228326575538,"id":1559,"parentId":3,"tags":{},"startTime":1775835274180,"traceId":"48e10e41d80a3d75"},{"name":"add-entry","duration":10665,"timestamp":6228331800455,"id":1565,"parentId":1564,"tags":{"request":"next-app-loader?name=app%2Fsectors%2Fpage&page=%2Fsectors%2Fpage&appPaths=%2Fsectors%2Fpage&pagePath=private-next-app-dir%2Fsectors%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":1775835279405,"traceId":"48e10e41d80a3d75"},{"name":"build-module","duration":7603,"timestamp":6228331807414,"id":1567,"parentId":1566,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-app-loader.js?name=app%2Fpage&page=%2Fpage&appPaths=%2Fpage&pagePath=private-next-app-dir%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":1775835279412,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":1958,"timestamp":6228331817207,"id":1570,"parentId":1569,"tags":{},"startTime":1775835279421,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":2044,"timestamp":6228331817125,"id":1569,"parentId":1568,"tags":{},"startTime":1775835279421,"traceId":"48e10e41d80a3d75"},{"name":"build-module-tsx","duration":2508,"timestamp":6228331816957,"id":1568,"parentId":1567,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/page.tsx","layer":"rsc"},"startTime":1775835279421,"traceId":"48e10e41d80a3d75"},{"name":"add-entry","duration":19980,"timestamp":6228331800571,"id":1566,"parentId":1564,"tags":{"request":"next-app-loader?name=app%2Fpage&page=%2Fpage&appPaths=%2Fpage&pagePath=private-next-app-dir%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":1775835279405,"traceId":"48e10e41d80a3d75"},{"name":"build-module","duration":557,"timestamp":6228331826036,"id":1578,"parentId":1563,"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%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=true!","layer":"ssr"},"startTime":1775835279430,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":4139,"timestamp":6228331830931,"id":1581,"parentId":1580,"tags":{},"startTime":1775835279435,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":4255,"timestamp":6228331830819,"id":1580,"parentId":1579,"tags":{},"startTime":1775835279435,"traceId":"48e10e41d80a3d75"},{"name":"build-module-tsx","duration":6965,"timestamp":6228331830065,"id":1579,"parentId":1578,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/page.tsx","layer":"ssr"},"startTime":1775835279434,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":1798,"timestamp":6228331844693,"id":1590,"parentId":1589,"tags":{},"startTime":1775835279449,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":1830,"timestamp":6228331844664,"id":1589,"parentId":1584,"tags":{},"startTime":1775835279449,"traceId":"48e10e41d80a3d75"},{"name":"build-module-tsx","duration":2706,"timestamp":6228331844542,"id":1584,"parentId":1579,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/sector-heatmap.tsx","layer":"ssr"},"startTime":1775835279449,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":2886,"timestamp":6228331844632,"id":1586,"parentId":1585,"tags":{},"startTime":1775835279449,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":2929,"timestamp":6228331844591,"id":1585,"parentId":1582,"tags":{},"startTime":1775835279449,"traceId":"48e10e41d80a3d75"},{"name":"build-module-tsx","duration":4293,"timestamp":6228331844366,"id":1582,"parentId":1579,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/market-temp.tsx","layer":"ssr"},"startTime":1775835279449,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":5345,"timestamp":6228331844662,"id":1588,"parentId":1587,"tags":{},"startTime":1775835279449,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":5375,"timestamp":6228331844635,"id":1587,"parentId":1583,"tags":{},"startTime":1775835279449,"traceId":"48e10e41d80a3d75"},{"name":"build-module-tsx","duration":7158,"timestamp":6228331844449,"id":1583,"parentId":1579,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/stock-card.tsx","layer":"ssr"},"startTime":1775835279449,"traceId":"48e10e41d80a3d75"},{"name":"make","duration":55601,"timestamp":6228331798930,"id":1564,"parentId":1563,"tags":{},"startTime":1775835279403,"traceId":"48e10e41d80a3d75"},{"name":"chunk-graph","duration":1184,"timestamp":6228331856467,"id":1592,"parentId":1591,"tags":{},"startTime":1775835279461,"traceId":"48e10e41d80a3d75"},{"name":"optimize-modules","duration":2,"timestamp":6228331857665,"id":1594,"parentId":1591,"tags":{},"startTime":1775835279462,"traceId":"48e10e41d80a3d75"},{"name":"optimize-chunks","duration":1092,"timestamp":6228331857681,"id":1595,"parentId":1591,"tags":{},"startTime":1775835279462,"traceId":"48e10e41d80a3d75"},{"name":"optimize-tree","duration":3,"timestamp":6228331858784,"id":1596,"parentId":1591,"tags":{},"startTime":1775835279463,"traceId":"48e10e41d80a3d75"},{"name":"optimize-chunk-modules","duration":4,"timestamp":6228331858807,"id":1597,"parentId":1591,"tags":{},"startTime":1775835279463,"traceId":"48e10e41d80a3d75"},{"name":"optimize","duration":1827,"timestamp":6228331857659,"id":1593,"parentId":1591,"tags":{},"startTime":1775835279462,"traceId":"48e10e41d80a3d75"},{"name":"module-hash","duration":354,"timestamp":6228331860290,"id":1598,"parentId":1591,"tags":{},"startTime":1775835279464,"traceId":"48e10e41d80a3d75"},{"name":"code-generation","duration":2538,"timestamp":6228331860650,"id":1599,"parentId":1591,"tags":{},"startTime":1775835279465,"traceId":"48e10e41d80a3d75"},{"name":"hash","duration":710,"timestamp":6228331863966,"id":1600,"parentId":1591,"tags":{},"startTime":1775835279468,"traceId":"48e10e41d80a3d75"},{"name":"code-generation-jobs","duration":72,"timestamp":6228331864675,"id":1601,"parentId":1591,"tags":{},"startTime":1775835279469,"traceId":"48e10e41d80a3d75"},{"name":"module-assets","duration":38,"timestamp":6228331864734,"id":1602,"parentId":1591,"tags":{},"startTime":1775835279469,"traceId":"48e10e41d80a3d75"},{"name":"create-chunk-assets","duration":2743,"timestamp":6228331864774,"id":1603,"parentId":1591,"tags":{},"startTime":1775835279469,"traceId":"48e10e41d80a3d75"},{"name":"seal","duration":13843,"timestamp":6228331855950,"id":1591,"parentId":1563,"tags":{},"startTime":1775835279460,"traceId":"48e10e41d80a3d75"},{"name":"webpack-compilation","duration":73740,"timestamp":6228331797187,"id":1563,"parentId":1561,"tags":{"name":"server"},"startTime":1775835279401,"traceId":"48e10e41d80a3d75"},{"name":"emit","duration":2393,"timestamp":6228331870972,"id":1604,"parentId":1561,"tags":{},"startTime":1775835279475,"traceId":"48e10e41d80a3d75"},{"name":"webpack-invalidated-server","duration":81042,"timestamp":6228331792630,"id":1561,"parentId":3,"tags":{"trigger":"manual"},"startTime":1775835279397,"traceId":"48e10e41d80a3d75"},{"name":"add-entry","duration":8257,"timestamp":6228331877959,"id":1607,"parentId":1606,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js"},"startTime":1775835279482,"traceId":"48e10e41d80a3d75"},{"name":"add-entry","duration":9585,"timestamp":6228331877994,"id":1609,"parentId":1606,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2Fsectors%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1775835279482,"traceId":"48e10e41d80a3d75"},{"name":"build-module","duration":671,"timestamp":6228331892332,"id":1616,"parentId":1612,"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%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!","layer":"app-pages-browser"},"startTime":1775835279496,"traceId":"48e10e41d80a3d75"},{"name":"add-entry","duration":15303,"timestamp":6228331878006,"id":1611,"parentId":1606,"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":1775835279482,"traceId":"48e10e41d80a3d75"},{"name":"read-resource","duration":5375,"timestamp":6228331888172,"id":1615,"parentId":1614,"tags":{},"startTime":1775835279492,"traceId":"48e10e41d80a3d75"},{"name":"postcss-process","duration":43901,"timestamp":6228331893593,"id":1618,"parentId":1617,"tags":{},"startTime":1775835279498,"traceId":"48e10e41d80a3d75"},{"name":"postcss-loader","duration":44163,"timestamp":6228331893578,"id":1617,"parentId":1614,"tags":{},"startTime":1775835279498,"traceId":"48e10e41d80a3d75"},{"name":"css-loader","duration":25951,"timestamp":6228331937763,"id":1619,"parentId":1614,"tags":{"astUsed":"true"},"startTime":1775835279542,"traceId":"48e10e41d80a3d75"},{"name":"build-module-css","duration":76656,"timestamp":6228331888036,"id":1614,"parentId":1613,"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":1775835279492,"traceId":"48e10e41d80a3d75"},{"name":"add-entry","duration":87262,"timestamp":6228331877987,"id":1608,"parentId":1606,"tags":{"request":"./node_modules/next/dist/client/app-next-dev.js"},"startTime":1775835279482,"traceId":"48e10e41d80a3d75"},{"name":"build-module-css","duration":87620,"timestamp":6228331880128,"id":1613,"parentId":1605,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/globals.css","layer":"app-pages-browser"},"startTime":1775835279484,"traceId":"48e10e41d80a3d75"},{"name":"build-module","duration":24,"timestamp":6228331968078,"id":1623,"parentId":1613,"tags":{},"startTime":1775835279572,"traceId":"48e10e41d80a3d75"},{"name":"add-entry","duration":90123,"timestamp":6228331878001,"id":1610,"parentId":1606,"tags":{"request":"next-flight-client-entry-loader?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%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&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":1775835279482,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":2530,"timestamp":6228331967874,"id":1622,"parentId":1621,"tags":{},"startTime":1775835279572,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":2635,"timestamp":6228331967771,"id":1621,"parentId":1620,"tags":{},"startTime":1775835279572,"traceId":"48e10e41d80a3d75"},{"name":"build-module-tsx","duration":6308,"timestamp":6228331965610,"id":1620,"parentId":1616,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/page.tsx","layer":"app-pages-browser"},"startTime":1775835279570,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":1792,"timestamp":6228331974267,"id":1632,"parentId":1631,"tags":{},"startTime":1775835279578,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":1823,"timestamp":6228331974239,"id":1631,"parentId":1626,"tags":{},"startTime":1775835279578,"traceId":"48e10e41d80a3d75"},{"name":"build-module-tsx","duration":3123,"timestamp":6228331974097,"id":1626,"parentId":1620,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/sector-heatmap.tsx","layer":"app-pages-browser"},"startTime":1775835279578,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":3623,"timestamp":6228331974206,"id":1628,"parentId":1627,"tags":{},"startTime":1775835279578,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":3677,"timestamp":6228331974155,"id":1627,"parentId":1624,"tags":{},"startTime":1775835279578,"traceId":"48e10e41d80a3d75"},{"name":"build-module-tsx","duration":5120,"timestamp":6228331973938,"id":1624,"parentId":1620,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/market-temp.tsx","layer":"app-pages-browser"},"startTime":1775835279578,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":4932,"timestamp":6228331974237,"id":1630,"parentId":1629,"tags":{},"startTime":1775835279578,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":4960,"timestamp":6228331974210,"id":1629,"parentId":1625,"tags":{},"startTime":1775835279578,"traceId":"48e10e41d80a3d75"},{"name":"build-module-tsx","duration":6618,"timestamp":6228331974041,"id":1625,"parentId":1620,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/stock-card.tsx","layer":"app-pages-browser"},"startTime":1775835279578,"traceId":"48e10e41d80a3d75"},{"name":"add-entry","duration":104120,"timestamp":6228331878009,"id":1612,"parentId":1606,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1775835279482,"traceId":"48e10e41d80a3d75"},{"name":"make","duration":106458,"timestamp":6228331875693,"id":1606,"parentId":1605,"tags":{},"startTime":1775835279480,"traceId":"48e10e41d80a3d75"},{"name":"chunk-graph","duration":831,"timestamp":6228331984169,"id":1634,"parentId":1633,"tags":{},"startTime":1775835279588,"traceId":"48e10e41d80a3d75"},{"name":"optimize-modules","duration":4,"timestamp":6228331985022,"id":1636,"parentId":1633,"tags":{},"startTime":1775835279589,"traceId":"48e10e41d80a3d75"},{"name":"optimize-chunks","duration":44,"timestamp":6228331985036,"id":1637,"parentId":1633,"tags":{},"startTime":1775835279589,"traceId":"48e10e41d80a3d75"},{"name":"optimize-tree","duration":5,"timestamp":6228331985093,"id":1638,"parentId":1633,"tags":{},"startTime":1775835279589,"traceId":"48e10e41d80a3d75"},{"name":"optimize-chunk-modules","duration":3,"timestamp":6228331985116,"id":1639,"parentId":1633,"tags":{},"startTime":1775835279589,"traceId":"48e10e41d80a3d75"},{"name":"optimize","duration":768,"timestamp":6228331985010,"id":1635,"parentId":1633,"tags":{},"startTime":1775835279589,"traceId":"48e10e41d80a3d75"},{"name":"module-hash","duration":424,"timestamp":6228331986445,"id":1640,"parentId":1633,"tags":{},"startTime":1775835279591,"traceId":"48e10e41d80a3d75"},{"name":"code-generation","duration":1797,"timestamp":6228331986878,"id":1641,"parentId":1633,"tags":{},"startTime":1775835279591,"traceId":"48e10e41d80a3d75"},{"name":"hash","duration":2116,"timestamp":6228331989483,"id":1642,"parentId":1633,"tags":{},"startTime":1775835279594,"traceId":"48e10e41d80a3d75"},{"name":"code-generation-jobs","duration":68,"timestamp":6228331991599,"id":1643,"parentId":1633,"tags":{},"startTime":1775835279596,"traceId":"48e10e41d80a3d75"},{"name":"module-assets","duration":48,"timestamp":6228331991656,"id":1644,"parentId":1633,"tags":{},"startTime":1775835279596,"traceId":"48e10e41d80a3d75"},{"name":"create-chunk-assets","duration":3831,"timestamp":6228331991707,"id":1645,"parentId":1633,"tags":{},"startTime":1775835279596,"traceId":"48e10e41d80a3d75"},{"name":"NextJsBuildManifest-generateClientManifest","duration":103,"timestamp":6228331996461,"id":1647,"parentId":1605,"tags":{},"startTime":1775835279601,"traceId":"48e10e41d80a3d75"},{"name":"NextJsBuildManifest-createassets","duration":142,"timestamp":6228331996423,"id":1646,"parentId":1605,"tags":{},"startTime":1775835279601,"traceId":"48e10e41d80a3d75"},{"name":"seal","duration":14080,"timestamp":6228331983499,"id":1633,"parentId":1605,"tags":{},"startTime":1775835279588,"traceId":"48e10e41d80a3d75"},{"name":"webpack-compilation","duration":122279,"timestamp":6228331875364,"id":1605,"parentId":1577,"tags":{"name":"client"},"startTime":1775835279480,"traceId":"48e10e41d80a3d75"},{"name":"emit","duration":4151,"timestamp":6228331997667,"id":1648,"parentId":1577,"tags":{},"startTime":1775835279602,"traceId":"48e10e41d80a3d75"},{"name":"compile-path","duration":209750,"timestamp":6228331792663,"id":1562,"tags":{"trigger":"/","isTurbopack":false},"startTime":1775835279397,"traceId":"48e10e41d80a3d75"},{"name":"webpack-invalidated-client","duration":180699,"timestamp":6228331822043,"id":1577,"parentId":3,"tags":{"trigger":"manual"},"startTime":1775835279426,"traceId":"48e10e41d80a3d75"}]
+[{"name":"client-success","duration":4,"timestamp":6228332004023,"id":1649,"parentId":3,"tags":{},"startTime":1775835279608,"traceId":"48e10e41d80a3d75"},{"name":"handle-request","duration":229361,"timestamp":6228331789146,"id":1560,"tags":{"url":"/?_rsc=tylbc","isTurbopack":false},"startTime":1775835279393,"traceId":"48e10e41d80a3d75"},{"name":"memory-usage","duration":0,"timestamp":6228332018540,"id":1650,"parentId":1560,"tags":{"url":"/?_rsc=tylbc","memory.rss":"409960448","memory.heapUsed":"203907784","memory.heapTotal":"280002560"},"startTime":1775835279623,"traceId":"48e10e41d80a3d75"},{"name":"client-hmr-latency","duration":198000,"timestamp":6228331822423,"id":1652,"parentId":3,"tags":{"updatedModules":["[project]/src/app/globals.css"],"page":"/sectors","isPageHidden":false},"startTime":1775835279626,"traceId":"48e10e41d80a3d75"},{"name":"handle-request","duration":8669,"timestamp":6228332020447,"id":1651,"tags":{"url":"/?_rsc=1p60s","isTurbopack":false},"startTime":1775835279625,"traceId":"48e10e41d80a3d75"},{"name":"memory-usage","duration":1,"timestamp":6228332029151,"id":1653,"parentId":1651,"tags":{"url":"/?_rsc=1p60s","memory.rss":"410009600","memory.heapUsed":"205330024","memory.heapTotal":"280002560"},"startTime":1775835279633,"traceId":"48e10e41d80a3d75"},{"name":"add-entry","duration":14929,"timestamp":6228467836768,"id":1661,"parentId":1658,"tags":{"request":"next-app-loader?name=app%2Fsectors%2Fpage&page=%2Fsectors%2Fpage&appPaths=%2Fsectors%2Fpage&pagePath=private-next-app-dir%2Fsectors%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":1775835415441,"traceId":"48e10e41d80a3d75"},{"name":"add-entry","duration":20171,"timestamp":6228467836764,"id":1660,"parentId":1658,"tags":{"request":"next-app-loader?name=app%2Fpage&page=%2Fpage&appPaths=%2Fpage&pagePath=private-next-app-dir%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":1775835415441,"traceId":"48e10e41d80a3d75"},{"name":"build-module","duration":17245,"timestamp":6228467849713,"id":1662,"parentId":1659,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-app-loader.js?name=app%2Frecommendations%2Fpage&page=%2Frecommendations%2Fpage&appPaths=%2Frecommendations%2Fpage&pagePath=private-next-app-dir%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":1775835415454,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":4549,"timestamp":6228467870766,"id":1665,"parentId":1664,"tags":{},"startTime":1775835415475,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":4729,"timestamp":6228467870598,"id":1664,"parentId":1663,"tags":{},"startTime":1775835415475,"traceId":"48e10e41d80a3d75"},{"name":"build-module-tsx","duration":5892,"timestamp":6228467870306,"id":1663,"parentId":1662,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/recommendations/page.tsx","layer":"rsc"},"startTime":1775835415474,"traceId":"48e10e41d80a3d75"},{"name":"add-entry","duration":42656,"timestamp":6228467836598,"id":1659,"parentId":1658,"tags":{"request":"next-app-loader?name=app%2Frecommendations%2Fpage&page=%2Frecommendations%2Fpage&appPaths=%2Frecommendations%2Fpage&pagePath=private-next-app-dir%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":1775835415441,"traceId":"48e10e41d80a3d75"},{"name":"build-module","duration":740,"timestamp":6228467888419,"id":1676,"parentId":1657,"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%2Frecommendations%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=true!","layer":"ssr"},"startTime":1775835415492,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":7137,"timestamp":6228467894697,"id":1679,"parentId":1678,"tags":{},"startTime":1775835415499,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":7927,"timestamp":6228467893922,"id":1678,"parentId":1677,"tags":{},"startTime":1775835415498,"traceId":"48e10e41d80a3d75"},{"name":"build-module-tsx","duration":16970,"timestamp":6228467893138,"id":1677,"parentId":1676,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/recommendations/page.tsx","layer":"ssr"},"startTime":1775835415497,"traceId":"48e10e41d80a3d75"},{"name":"make","duration":85210,"timestamp":6228467834192,"id":1658,"parentId":1657,"tags":{},"startTime":1775835415438,"traceId":"48e10e41d80a3d75"},{"name":"chunk-graph","duration":2228,"timestamp":6228467921868,"id":1681,"parentId":1680,"tags":{},"startTime":1775835415526,"traceId":"48e10e41d80a3d75"},{"name":"optimize-modules","duration":3,"timestamp":6228467924113,"id":1683,"parentId":1680,"tags":{},"startTime":1775835415528,"traceId":"48e10e41d80a3d75"},{"name":"optimize-chunks","duration":1376,"timestamp":6228467924127,"id":1684,"parentId":1680,"tags":{},"startTime":1775835415528,"traceId":"48e10e41d80a3d75"},{"name":"optimize-tree","duration":5,"timestamp":6228467925518,"id":1685,"parentId":1680,"tags":{},"startTime":1775835415530,"traceId":"48e10e41d80a3d75"},{"name":"optimize-chunk-modules","duration":3,"timestamp":6228467925535,"id":1686,"parentId":1680,"tags":{},"startTime":1775835415530,"traceId":"48e10e41d80a3d75"},{"name":"optimize","duration":2464,"timestamp":6228467924108,"id":1682,"parentId":1680,"tags":{},"startTime":1775835415528,"traceId":"48e10e41d80a3d75"},{"name":"module-hash","duration":376,"timestamp":6228467927799,"id":1687,"parentId":1680,"tags":{},"startTime":1775835415532,"traceId":"48e10e41d80a3d75"},{"name":"code-generation","duration":1420,"timestamp":6228467928192,"id":1688,"parentId":1680,"tags":{},"startTime":1775835415532,"traceId":"48e10e41d80a3d75"},{"name":"hash","duration":1291,"timestamp":6228467930534,"id":1689,"parentId":1680,"tags":{},"startTime":1775835415535,"traceId":"48e10e41d80a3d75"},{"name":"code-generation-jobs","duration":77,"timestamp":6228467931824,"id":1690,"parentId":1680,"tags":{},"startTime":1775835415536,"traceId":"48e10e41d80a3d75"},{"name":"module-assets","duration":49,"timestamp":6228467931893,"id":1691,"parentId":1680,"tags":{},"startTime":1775835415536,"traceId":"48e10e41d80a3d75"},{"name":"create-chunk-assets","duration":1846,"timestamp":6228467931945,"id":1692,"parentId":1680,"tags":{},"startTime":1775835415536,"traceId":"48e10e41d80a3d75"},{"name":"seal","duration":14654,"timestamp":6228467921304,"id":1680,"parentId":1657,"tags":{},"startTime":1775835415525,"traceId":"48e10e41d80a3d75"},{"name":"webpack-compilation","duration":103895,"timestamp":6228467833348,"id":1657,"parentId":1655,"tags":{"name":"server"},"startTime":1775835415437,"traceId":"48e10e41d80a3d75"},{"name":"emit","duration":2715,"timestamp":6228467937273,"id":1693,"parentId":1655,"tags":{},"startTime":1775835415541,"traceId":"48e10e41d80a3d75"},{"name":"webpack-invalidated-server","duration":113053,"timestamp":6228467827378,"id":1655,"parentId":3,"tags":{"trigger":"manual"},"startTime":1775835415431,"traceId":"48e10e41d80a3d75"},{"name":"add-entry","duration":10217,"timestamp":6228467946114,"id":1696,"parentId":1695,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js"},"startTime":1775835415550,"traceId":"48e10e41d80a3d75"},{"name":"add-entry","duration":11196,"timestamp":6228467946161,"id":1701,"parentId":1695,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1775835415550,"traceId":"48e10e41d80a3d75"},{"name":"add-entry","duration":11849,"timestamp":6228467946154,"id":1698,"parentId":1695,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2Fsectors%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1775835415550,"traceId":"48e10e41d80a3d75"},{"name":"build-module","duration":737,"timestamp":6228467960989,"id":1703,"parentId":1702,"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%2Frecommendations%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!","layer":"app-pages-browser"},"startTime":1775835415565,"traceId":"48e10e41d80a3d75"},{"name":"add-entry","duration":15843,"timestamp":6228467946158,"id":1700,"parentId":1695,"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":1775835415550,"traceId":"48e10e41d80a3d75"},{"name":"add-entry","duration":16174,"timestamp":6228467946150,"id":1697,"parentId":1695,"tags":{"request":"./node_modules/next/dist/client/app-next-dev.js"},"startTime":1775835415550,"traceId":"48e10e41d80a3d75"},{"name":"add-entry","duration":16171,"timestamp":6228467946156,"id":1699,"parentId":1695,"tags":{"request":"next-flight-client-entry-loader?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%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&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":1775835415550,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-transform","duration":5252,"timestamp":6228467962792,"id":1706,"parentId":1705,"tags":{},"startTime":1775835415567,"traceId":"48e10e41d80a3d75"},{"name":"next-swc-loader","duration":5351,"timestamp":6228467962698,"id":1705,"parentId":1704,"tags":{},"startTime":1775835415567,"traceId":"48e10e41d80a3d75"},{"name":"build-module-tsx","duration":15387,"timestamp":6228467962551,"id":1704,"parentId":1703,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/recommendations/page.tsx","layer":"app-pages-browser"},"startTime":1775835415567,"traceId":"48e10e41d80a3d75"},{"name":"add-entry","duration":37733,"timestamp":6228467946163,"id":1702,"parentId":1695,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2Frecommendations%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1775835415550,"traceId":"48e10e41d80a3d75"},{"name":"make","duration":41585,"timestamp":6228467942351,"id":1695,"parentId":1694,"tags":{},"startTime":1775835415546,"traceId":"48e10e41d80a3d75"},{"name":"chunk-graph","duration":884,"timestamp":6228467985476,"id":1708,"parentId":1707,"tags":{},"startTime":1775835415590,"traceId":"48e10e41d80a3d75"},{"name":"optimize-modules","duration":3,"timestamp":6228467986380,"id":1710,"parentId":1707,"tags":{},"startTime":1775835415590,"traceId":"48e10e41d80a3d75"},{"name":"optimize-chunks","duration":27,"timestamp":6228467986396,"id":1711,"parentId":1707,"tags":{},"startTime":1775835415590,"traceId":"48e10e41d80a3d75"},{"name":"optimize-tree","duration":4,"timestamp":6228467986435,"id":1712,"parentId":1707,"tags":{},"startTime":1775835415590,"traceId":"48e10e41d80a3d75"},{"name":"optimize-chunk-modules","duration":3,"timestamp":6228467986451,"id":1713,"parentId":1707,"tags":{},"startTime":1775835415591,"traceId":"48e10e41d80a3d75"},{"name":"optimize","duration":737,"timestamp":6228467986373,"id":1709,"parentId":1707,"tags":{},"startTime":1775835415590,"traceId":"48e10e41d80a3d75"},{"name":"module-hash","duration":367,"timestamp":6228467987932,"id":1714,"parentId":1707,"tags":{},"startTime":1775835415592,"traceId":"48e10e41d80a3d75"},{"name":"code-generation","duration":1424,"timestamp":6228467988312,"id":1715,"parentId":1707,"tags":{},"startTime":1775835415592,"traceId":"48e10e41d80a3d75"},{"name":"hash","duration":4808,"timestamp":6228467990962,"id":1716,"parentId":1707,"tags":{},"startTime":1775835415595,"traceId":"48e10e41d80a3d75"},{"name":"code-generation-jobs","duration":129,"timestamp":6228467995770,"id":1717,"parentId":1707,"tags":{},"startTime":1775835415600,"traceId":"48e10e41d80a3d75"},{"name":"module-assets","duration":50,"timestamp":6228467995887,"id":1718,"parentId":1707,"tags":{},"startTime":1775835415600,"traceId":"48e10e41d80a3d75"},{"name":"create-chunk-assets","duration":2860,"timestamp":6228467995940,"id":1719,"parentId":1707,"tags":{},"startTime":1775835415600,"traceId":"48e10e41d80a3d75"},{"name":"NextJsBuildManifest-generateClientManifest","duration":78,"timestamp":6228467999559,"id":1721,"parentId":1694,"tags":{},"startTime":1775835415604,"traceId":"48e10e41d80a3d75"},{"name":"NextJsBuildManifest-createassets","duration":134,"timestamp":6228467999507,"id":1720,"parentId":1694,"tags":{},"startTime":1775835415604,"traceId":"48e10e41d80a3d75"},{"name":"seal","duration":16232,"timestamp":6228467984786,"id":1707,"parentId":1694,"tags":{},"startTime":1775835415589,"traceId":"48e10e41d80a3d75"},{"name":"webpack-compilation","duration":59049,"timestamp":6228467941993,"id":1694,"parentId":1675,"tags":{"name":"client"},"startTime":1775835415546,"traceId":"48e10e41d80a3d75"},{"name":"emit","duration":7160,"timestamp":6228468001061,"id":1722,"parentId":1675,"tags":{},"startTime":1775835415605,"traceId":"48e10e41d80a3d75"},{"name":"compile-path","duration":181269,"timestamp":6228467827553,"id":1656,"tags":{"trigger":"/recommendations","isTurbopack":false},"startTime":1775835415432,"traceId":"48e10e41d80a3d75"},{"name":"webpack-invalidated-client","duration":128597,"timestamp":6228467880833,"id":1675,"parentId":3,"tags":{"trigger":"manual"},"startTime":1775835415485,"traceId":"48e10e41d80a3d75"}]
diff --git a/frontend/src/app/page.tsx b/frontend/src/app/page.tsx
index 281921a5..66adb21f 100644
--- a/frontend/src/app/page.tsx
+++ b/frontend/src/app/page.tsx
@@ -7,6 +7,7 @@ import MarketTemp from "@/components/market-temp";
import StockCard from "@/components/stock-card";
import SectorHeatmap from "@/components/sector-heatmap";
import { useWebSocket } from "@/hooks/use-websocket";
+import { useAuth } from "@/hooks/use-auth";
interface ScanStatus {
is_trading: boolean;
@@ -15,6 +16,7 @@ interface ScanStatus {
}
export default function DashboardPage() {
+ const { user } = useAuth();
const [data, setData] = useState