diff --git a/backend/app/api/recommendations.py b/backend/app/api/recommendations.py index e3b90fb8..d78453fa 100644 --- a/backend/app/api/recommendations.py +++ b/backend/app/api/recommendations.py @@ -86,6 +86,7 @@ async def get_latest(): "market_anomalies": anomalies, "scan_mode": result.get("scan_mode", "unknown"), "strategy_profile": result.get("strategy_profile"), + "latest_scan": result.get("latest_scan"), } diff --git a/backend/app/engine/recommender.py b/backend/app/engine/recommender.py index 1cf9d73d..6bb81420 100644 --- a/backend/app/engine/recommender.py +++ b/backend/app/engine/recommender.py @@ -85,6 +85,61 @@ def _build_legacy_decision_trace(row) -> dict: } +def _scan_meta_from_row(row) -> dict | None: + if not row: + return None + r = row._mapping if hasattr(row, "_mapping") else row + detail = _safe_json_dict(r.get("detail_json")) + return { + "scan_session": r.get("scan_session") or "", + "scan_mode": r.get("scan_mode") or "", + "status": r.get("status") or "ok", + "stage": r.get("stage") or "", + "input_count": int(r.get("input_count") or 0), + "output_count": int(r.get("output_count") or 0), + "filtered_count": int(r.get("filtered_count") or 0), + "summary": r.get("summary") or "", + "created_at": str(r.get("created_at") or ""), + "date": str(r.get("created_at") or "")[:10] if r.get("created_at") else "", + "detail": detail, + "action_counts": detail.get("action_counts") or {}, + "elimination_reasons": detail.get("elimination_reasons") or {}, + } + + +async def _load_latest_completed_scan(db) -> dict | None: + from sqlalchemy import text + + result = await db.execute( + text( + "SELECT * FROM scan_process_logs " + "WHERE stage = 'final_filter' " + "ORDER BY created_at DESC, id DESC LIMIT 1" + ) + ) + return _scan_meta_from_row(result.fetchone()) + + +async def _load_latest_strategy_profile_for_session(db, scan_session: str) -> dict | None: + if not scan_session: + return None + from sqlalchemy import text + + result = await db.execute( + text( + "SELECT detail_json FROM scan_process_logs " + "WHERE scan_session = :session AND stage = 'strategy_profile' " + "ORDER BY created_at DESC, id DESC LIMIT 1" + ), + {"session": scan_session}, + ) + row = result.fetchone() + if not row: + return None + profile = _safe_json_dict(row._mapping.get("detail_json")) + return profile or None + + async def refresh_recommendations(trade_date: str = None, scan_session: str = "manual") -> dict: """刷新推荐列表(带扫描锁防止并发)""" global _scan_running @@ -577,6 +632,25 @@ async def get_recommendation_history(days: int = 7) -> list[dict]: async with get_db() as db: from sqlalchemy import text + scan_result = await db.execute( + text( + "SELECT s.* FROM scan_process_logs s " + "INNER JOIN (" + " SELECT date(created_at) AS scan_date, MAX(id) AS max_id " + " FROM scan_process_logs " + " WHERE stage = 'final_filter' AND created_at >= :start " + " GROUP BY date(created_at)" + ") latest ON s.id = latest.max_id " + "ORDER BY s.created_at DESC, s.id DESC" + ), + {"start": start}, + ) + scan_groups = { + meta["date"]: meta + for meta in (_scan_meta_from_row(row) for row in scan_result.fetchall()) + if meta and meta.get("date") + } + # 查询所有历史推荐,按 ts_code 去重(每天取最新一条) stmt = text( "SELECT r.*, " @@ -614,8 +688,11 @@ async def get_recommendation_history(days: int = 7) -> list[dict]: result = await db.execute(stmt, {"start": start}) rows = result.fetchall() - # 按日期分组 - grouped: dict[str, list[dict]] = {} + # 按日期分组。先用扫描日志建组,保证“当天扫描但无推荐”也会被展示。 + grouped: dict[str, dict] = { + date_str: {"scan": scan_meta, "recommendations": []} + for date_str, scan_meta in scan_groups.items() + } for row in rows: r = row._mapping # SQLite created_at 是字符串 "YYYY-MM-DD HH:MM:SS" @@ -679,13 +756,15 @@ async def get_recommendation_history(days: int = 7) -> list[dict]: } if date_str not in grouped: - grouped[date_str] = [] - grouped[date_str].append(rec_dict) + grouped[date_str] = {"scan": None, "recommendations": []} + grouped[date_str]["recommendations"].append(rec_dict) # 转为列表,按日期降序 result_list = [] for date_str in sorted(grouped.keys(), reverse=True): - recs = grouped[date_str] + group = grouped[date_str] + recs = group["recommendations"] + scan_meta = group["scan"] 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({ @@ -694,6 +773,15 @@ async def get_recommendation_history(days: int = 7) -> list[dict]: "buy_count": buy_count, "avg_score": avg_score, "recommendations": recs, + "scan_session": scan_meta.get("scan_session") if scan_meta else "", + "scan_mode": scan_meta.get("scan_mode") if scan_meta else "", + "scan_status": scan_meta.get("status") if scan_meta else "", + "scanned_at": scan_meta.get("created_at") if scan_meta else "", + "scan_summary": scan_meta.get("summary") if scan_meta else "", + "scan_input_count": scan_meta.get("input_count") if scan_meta else 0, + "scan_output_count": scan_meta.get("output_count") if scan_meta else len(recs), + "scan_filtered_count": scan_meta.get("filtered_count") if scan_meta else 0, + "elimination_reasons": scan_meta.get("elimination_reasons") if scan_meta else {}, }) return result_list @@ -908,6 +996,10 @@ async def _load_today_from_db() -> dict: from sqlalchemy import text import json + latest_scan = await _load_latest_completed_scan(db) + latest_scan_date = (latest_scan or {}).get("date") or "" + latest_scan_session = (latest_scan or {}).get("scan_session") or "" + # 加载市场温度(按 trade_date 取最新交易日) result = await db.execute( text( @@ -931,22 +1023,47 @@ async def _load_today_from_db() -> dict: temperature=m["temperature"], ) - # 加载推荐(取最近一个有数据的日期,按 ts_code 去重,优先保留行动级别更高的结果) - result = await db.execute( - text("SELECT * FROM recommendations " - "WHERE date(created_at) = (SELECT date(created_at) FROM recommendations ORDER BY created_at DESC LIMIT 1) " - "AND (action_plan IN ('可操作', '重点关注') OR score >= 56) " - "AND (" - " COALESCE(recall_tags, '[]') LIKE '%hot_theme_core%' " - " OR COALESCE(recall_tags, '[]') LIKE '%theme_leader%' " - " OR COALESCE(recall_tags, '[]') LIKE '%top_theme_member%' " - " OR COALESCE(recall_tags, '[]') LIKE '%sector_recall%'" - ") " - "AND id IN (SELECT MAX(id) FROM recommendations " - " WHERE date(created_at) = (SELECT date(created_at) FROM recommendations ORDER BY created_at DESC LIMIT 1) " - " GROUP BY ts_code) " - "ORDER BY score DESC") - ) + if latest_scan: + recommendation_sql = ( + "SELECT * FROM recommendations " + "WHERE date(created_at) = :target_date " + "AND (:scan_session = '' OR scan_session = :scan_session) " + "AND (action_plan IN ('可操作', '重点关注') OR score >= 56) " + "AND (" + " COALESCE(recall_tags, '[]') LIKE '%hot_theme_core%' " + " OR COALESCE(recall_tags, '[]') LIKE '%theme_leader%' " + " OR COALESCE(recall_tags, '[]') LIKE '%top_theme_member%' " + " OR COALESCE(recall_tags, '[]') LIKE '%sector_recall%'" + ") " + "AND id IN (" + " SELECT MAX(id) FROM recommendations " + " WHERE date(created_at) = :target_date " + " AND (:scan_session = '' OR scan_session = :scan_session) " + " GROUP BY ts_code" + ") " + "ORDER BY score DESC" + ) + result = await db.execute( + text(recommendation_sql), + {"target_date": latest_scan_date, "scan_session": latest_scan_session}, + ) + else: + # 兼容旧库:没有扫描日志时,才回退到最近一个有推荐的日期。 + result = await db.execute( + text("SELECT * FROM recommendations " + "WHERE date(created_at) = (SELECT date(created_at) FROM recommendations ORDER BY created_at DESC LIMIT 1) " + "AND (action_plan IN ('可操作', '重点关注') OR score >= 56) " + "AND (" + " COALESCE(recall_tags, '[]') LIKE '%hot_theme_core%' " + " OR COALESCE(recall_tags, '[]') LIKE '%theme_leader%' " + " OR COALESCE(recall_tags, '[]') LIKE '%top_theme_member%' " + " OR COALESCE(recall_tags, '[]') LIKE '%sector_recall%'" + ") " + "AND id IN (SELECT MAX(id) FROM recommendations " + " WHERE date(created_at) = (SELECT date(created_at) FROM recommendations ORDER BY created_at DESC LIMIT 1) " + " GROUP BY ts_code) " + "ORDER BY score DESC") + ) rows = result.fetchall() recommendations = [] for row in rows: @@ -988,24 +1105,29 @@ async def _load_today_from_db() -> dict: focus_points=json.loads(r.get("focus_points") or "[]"), decision_trace=_safe_json_dict(r.get("decision_trace")) or _build_legacy_decision_trace(r), scan_session=r["scan_session"] or "", + created_at=r["created_at"], )) + strategy_profile = None + if latest_scan: + strategy_profile = await _load_latest_strategy_profile_for_session(db, latest_scan_session) + if not strategy_profile and recommendations: + strategy_profile = get_strategy_profile_by_id(recommendations[0].strategy).model_dump() + return { "market_temp": market_temp, "hot_sectors": [], "capital_filtered": [], "recommendations": recommendations, - "strategy_profile": ( - get_strategy_profile_by_id(recommendations[0].strategy).model_dump() - if recommendations - else None - ), + "strategy_profile": strategy_profile, + "latest_scan": latest_scan, + "scan_mode": (latest_scan or {}).get("scan_mode", "unknown"), } except Exception as e: logger.error(f"从数据库加载推荐失败: {e}") from app.db.error_logger import log_error await log_error("recommender", f"从数据库加载推荐失败: {e}", detail=traceback.format_exc()) - return {"market_temp": None, "hot_sectors": [], "capital_filtered": [], "recommendations": []} + return {"market_temp": None, "hot_sectors": [], "capital_filtered": [], "recommendations": [], "latest_scan": None} async def _load_sectors_from_db() -> list[SectorInfo]: diff --git a/backend/astock.db b/backend/astock.db index 8eaad2ca..7ffd3270 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 2cf843b1..10a2adf5 100644 --- a/frontend/.next/app-build-manifest.json +++ b/frontend/.next/app-build-manifest.json @@ -12,16 +12,15 @@ "static/chunks/fd9d1056-04f4ef6e08ec3462.js", "static/chunks/117-a8e886455f28924b.js", "static/chunks/main-app-7d7e5d1021afd90c.js", - "static/css/b12d1381ac64f6da.css", - "static/chunks/app/layout-3a83ac2605aef91b.js" + "static/css/cc34bfc02fe53996.css", + "static/chunks/app/layout-9da89db040cc7fe7.js" ], - "/(auth)/sectors/page": [ + "/(auth)/dashboard/page": [ "static/chunks/webpack-76aa9cbbdedb6a49.js", "static/chunks/fd9d1056-04f4ef6e08ec3462.js", "static/chunks/117-a8e886455f28924b.js", "static/chunks/main-app-7d7e5d1021afd90c.js", - "static/chunks/648-737196aebda2b095.js", - "static/chunks/app/(auth)/sectors/page-b1b520bb87096d8c.js" + "static/chunks/app/(auth)/dashboard/page-7c42cdee67f7ba1f.js" ], "/(auth)/layout": [ "static/chunks/webpack-76aa9cbbdedb6a49.js", @@ -29,14 +28,29 @@ "static/chunks/117-a8e886455f28924b.js", "static/chunks/main-app-7d7e5d1021afd90c.js", "static/chunks/648-737196aebda2b095.js", - "static/chunks/app/(auth)/layout-895972713478d7d5.js" + "static/chunks/app/(auth)/layout-00c8b5ffc11909fc.js" ], - "/(auth)/sentiment/page": [ + "/(auth)/recommendations/page": [ "static/chunks/webpack-76aa9cbbdedb6a49.js", "static/chunks/fd9d1056-04f4ef6e08ec3462.js", "static/chunks/117-a8e886455f28924b.js", "static/chunks/main-app-7d7e5d1021afd90c.js", - "static/chunks/app/(auth)/sentiment/page-914adbd9eac71003.js" + "static/chunks/app/(auth)/recommendations/page-04ad0514ad59d914.js" + ], + "/(auth)/admin/page": [ + "static/chunks/webpack-76aa9cbbdedb6a49.js", + "static/chunks/fd9d1056-04f4ef6e08ec3462.js", + "static/chunks/117-a8e886455f28924b.js", + "static/chunks/main-app-7d7e5d1021afd90c.js", + "static/chunks/648-737196aebda2b095.js", + "static/chunks/app/(auth)/admin/page-d0e73ac1163fe810.js" + ], + "/(auth)/chat/page": [ + "static/chunks/webpack-76aa9cbbdedb6a49.js", + "static/chunks/fd9d1056-04f4ef6e08ec3462.js", + "static/chunks/117-a8e886455f28924b.js", + "static/chunks/main-app-7d7e5d1021afd90c.js", + "static/chunks/app/(auth)/chat/page-2ee86107f57d5938.js" ], "/(auth)/sectors/[name]/page": [ "static/chunks/webpack-76aa9cbbdedb6a49.js", @@ -44,49 +58,59 @@ "static/chunks/117-a8e886455f28924b.js", "static/chunks/main-app-7d7e5d1021afd90c.js", "static/chunks/648-737196aebda2b095.js", - "static/chunks/app/(auth)/sectors/[name]/page-b47ed772b7ed0b86.js" + "static/chunks/app/(auth)/sectors/[name]/page-f200c8a32f30483d.js" ], - "/(auth)/chat/page": [ + "/(auth)/admin/users/page": [ "static/chunks/webpack-76aa9cbbdedb6a49.js", "static/chunks/fd9d1056-04f4ef6e08ec3462.js", "static/chunks/117-a8e886455f28924b.js", "static/chunks/main-app-7d7e5d1021afd90c.js", - "static/chunks/app/(auth)/chat/page-2460c0ba93c793ad.js" + "static/chunks/648-737196aebda2b095.js", + "static/chunks/app/(auth)/admin/users/page-133cb4455ae7ff45.js" ], - "/(auth)/dashboard/page": [ + "/(auth)/sectors/page": [ "static/chunks/webpack-76aa9cbbdedb6a49.js", "static/chunks/fd9d1056-04f4ef6e08ec3462.js", "static/chunks/117-a8e886455f28924b.js", "static/chunks/main-app-7d7e5d1021afd90c.js", - "static/chunks/app/(auth)/dashboard/page-7ff91dee1ef2fdbc.js" - ], - "/(auth)/watchlists/page": [ - "static/chunks/webpack-76aa9cbbdedb6a49.js", - "static/chunks/fd9d1056-04f4ef6e08ec3462.js", - "static/chunks/117-a8e886455f28924b.js", - "static/chunks/main-app-7d7e5d1021afd90c.js", - "static/chunks/app/(auth)/watchlists/page-d8baeb97cf398976.js" - ], - "/(auth)/recommendations/page": [ - "static/chunks/webpack-76aa9cbbdedb6a49.js", - "static/chunks/fd9d1056-04f4ef6e08ec3462.js", - "static/chunks/117-a8e886455f28924b.js", - "static/chunks/main-app-7d7e5d1021afd90c.js", - "static/chunks/app/(auth)/recommendations/page-7a67286c61a1d8d0.js" + "static/chunks/648-737196aebda2b095.js", + "static/chunks/app/(auth)/sectors/page-af480a7c6de07a7d.js" ], "/(auth)/stock/[code]/page": [ "static/chunks/webpack-76aa9cbbdedb6a49.js", "static/chunks/fd9d1056-04f4ef6e08ec3462.js", "static/chunks/117-a8e886455f28924b.js", "static/chunks/main-app-7d7e5d1021afd90c.js", - "static/chunks/app/(auth)/stock/[code]/page-5a76132c106da8d3.js" + "static/chunks/app/(auth)/stock/[code]/page-2af464be6f422116.js" + ], + "/(auth)/sentiment/page": [ + "static/chunks/webpack-76aa9cbbdedb6a49.js", + "static/chunks/fd9d1056-04f4ef6e08ec3462.js", + "static/chunks/117-a8e886455f28924b.js", + "static/chunks/main-app-7d7e5d1021afd90c.js", + "static/chunks/app/(auth)/sentiment/page-23ada87205189134.js" + ], + "/(auth)/admin/invites/page": [ + "static/chunks/webpack-76aa9cbbdedb6a49.js", + "static/chunks/fd9d1056-04f4ef6e08ec3462.js", + "static/chunks/117-a8e886455f28924b.js", + "static/chunks/main-app-7d7e5d1021afd90c.js", + "static/chunks/648-737196aebda2b095.js", + "static/chunks/app/(auth)/admin/invites/page-f0d0e84e699f2a8e.js" + ], + "/(auth)/watchlists/page": [ + "static/chunks/webpack-76aa9cbbdedb6a49.js", + "static/chunks/fd9d1056-04f4ef6e08ec3462.js", + "static/chunks/117-a8e886455f28924b.js", + "static/chunks/main-app-7d7e5d1021afd90c.js", + "static/chunks/app/(auth)/watchlists/page-5728882e0ff74783.js" ], "/(public)/login/page": [ "static/chunks/webpack-76aa9cbbdedb6a49.js", "static/chunks/fd9d1056-04f4ef6e08ec3462.js", "static/chunks/117-a8e886455f28924b.js", "static/chunks/main-app-7d7e5d1021afd90c.js", - "static/chunks/app/(public)/login/page-a72b3e6424d449e4.js" + "static/chunks/app/(public)/login/page-0b6bac111efdebf4.js" ], "/(public)/layout": [ "static/chunks/webpack-76aa9cbbdedb6a49.js", diff --git a/frontend/.next/build-manifest.json b/frontend/.next/build-manifest.json index d3ce1738..bceb2a0a 100644 --- a/frontend/.next/build-manifest.json +++ b/frontend/.next/build-manifest.json @@ -5,8 +5,8 @@ "devFiles": [], "ampDevFiles": [], "lowPriorityFiles": [ - "static/ENQu76Djfgx3eox8nyd0C/_buildManifest.js", - "static/ENQu76Djfgx3eox8nyd0C/_ssgManifest.js" + "static/DIAczInZnAiIi82P18FrS/_buildManifest.js", + "static/DIAczInZnAiIi82P18FrS/_ssgManifest.js" ], "rootMainFiles": [ "static/chunks/webpack-76aa9cbbdedb6a49.js", @@ -18,13 +18,13 @@ "/_app": [ "static/chunks/webpack-76aa9cbbdedb6a49.js", "static/chunks/framework-f66176bb897dc684.js", - "static/chunks/main-728cc0b2064d905a.js", + "static/chunks/main-b28cc01a35d4249a.js", "static/chunks/pages/_app-72b849fbd24ac258.js" ], "/_error": [ "static/chunks/webpack-76aa9cbbdedb6a49.js", "static/chunks/framework-f66176bb897dc684.js", - "static/chunks/main-728cc0b2064d905a.js", + "static/chunks/main-b28cc01a35d4249a.js", "static/chunks/pages/_error-7ba65e1336b92748.js" ] }, diff --git a/frontend/.next/server/app-paths-manifest.json b/frontend/.next/server/app-paths-manifest.json index 6da6464d..d90d2124 100644 --- a/frontend/.next/server/app-paths-manifest.json +++ b/frontend/.next/server/app-paths-manifest.json @@ -1,14 +1,17 @@ { "/_not-found/page": "app/_not-found/page.js", - "/(auth)/sectors/page": "app/(auth)/sectors/page.js", - "/(auth)/sentiment/page": "app/(auth)/sentiment/page.js", - "/(auth)/sectors/[name]/page": "app/(auth)/sectors/[name]/page.js", - "/(auth)/chat/page": "app/(auth)/chat/page.js", "/(auth)/dashboard/page": "app/(auth)/dashboard/page.js", - "/(auth)/api/chat/stream/route": "app/(auth)/api/chat/stream/route.js", - "/(auth)/watchlists/page": "app/(auth)/watchlists/page.js", "/(auth)/recommendations/page": "app/(auth)/recommendations/page.js", + "/(auth)/admin/page": "app/(auth)/admin/page.js", + "/(auth)/chat/page": "app/(auth)/chat/page.js", + "/(auth)/sectors/[name]/page": "app/(auth)/sectors/[name]/page.js", + "/(auth)/admin/users/page": "app/(auth)/admin/users/page.js", + "/(auth)/api/chat/stream/route": "app/(auth)/api/chat/stream/route.js", + "/(auth)/sectors/page": "app/(auth)/sectors/page.js", "/(auth)/stock/[code]/page": "app/(auth)/stock/[code]/page.js", + "/(auth)/sentiment/page": "app/(auth)/sentiment/page.js", + "/(auth)/admin/invites/page": "app/(auth)/admin/invites/page.js", + "/(auth)/watchlists/page": "app/(auth)/watchlists/page.js", "/(public)/login/page": "app/(public)/login/page.js", "/(public)/page": "app/(public)/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 498ba05f..37aece68 100644 --- a/frontend/.next/server/middleware-build-manifest.js +++ b/frontend/.next/server/middleware-build-manifest.js @@ -1 +1 @@ -self.__BUILD_MANIFEST={polyfillFiles:["static/chunks/polyfills-42372ed130431b0a.js"],devFiles:[],ampDevFiles:[],lowPriorityFiles:[],rootMainFiles:["static/chunks/webpack-76aa9cbbdedb6a49.js","static/chunks/fd9d1056-04f4ef6e08ec3462.js","static/chunks/117-a8e886455f28924b.js","static/chunks/main-app-7d7e5d1021afd90c.js"],pages:{"/_app":["static/chunks/webpack-76aa9cbbdedb6a49.js","static/chunks/framework-f66176bb897dc684.js","static/chunks/main-728cc0b2064d905a.js","static/chunks/pages/_app-72b849fbd24ac258.js"],"/_error":["static/chunks/webpack-76aa9cbbdedb6a49.js","static/chunks/framework-f66176bb897dc684.js","static/chunks/main-728cc0b2064d905a.js","static/chunks/pages/_error-7ba65e1336b92748.js"]},ampFirstPages:[]},self.__BUILD_MANIFEST.lowPriorityFiles=["/static/"+process.env.__NEXT_BUILD_ID+"/_buildManifest.js",,"/static/"+process.env.__NEXT_BUILD_ID+"/_ssgManifest.js"]; \ No newline at end of file +self.__BUILD_MANIFEST={polyfillFiles:["static/chunks/polyfills-42372ed130431b0a.js"],devFiles:[],ampDevFiles:[],lowPriorityFiles:[],rootMainFiles:["static/chunks/webpack-76aa9cbbdedb6a49.js","static/chunks/fd9d1056-04f4ef6e08ec3462.js","static/chunks/117-a8e886455f28924b.js","static/chunks/main-app-7d7e5d1021afd90c.js"],pages:{"/_app":["static/chunks/webpack-76aa9cbbdedb6a49.js","static/chunks/framework-f66176bb897dc684.js","static/chunks/main-b28cc01a35d4249a.js","static/chunks/pages/_app-72b849fbd24ac258.js"],"/_error":["static/chunks/webpack-76aa9cbbdedb6a49.js","static/chunks/framework-f66176bb897dc684.js","static/chunks/main-b28cc01a35d4249a.js","static/chunks/pages/_error-7ba65e1336b92748.js"]},ampFirstPages:[]},self.__BUILD_MANIFEST.lowPriorityFiles=["/static/"+process.env.__NEXT_BUILD_ID+"/_buildManifest.js",,"/static/"+process.env.__NEXT_BUILD_ID+"/_ssgManifest.js"]; \ No newline at end of file diff --git a/frontend/.next/server/server-reference-manifest.json b/frontend/.next/server/server-reference-manifest.json index 4bc33208..1c4e98c2 100644 --- a/frontend/.next/server/server-reference-manifest.json +++ b/frontend/.next/server/server-reference-manifest.json @@ -1 +1 @@ -{"node":{},"edge":{},"encryptionKey":"Y+iTYVqqfu0PTKokbxxh1ZopwesJ4kb+sPOCvZ1fElY="} \ No newline at end of file +{"node":{},"edge":{},"encryptionKey":"s1k3DNf5kMTqjFQA+B2LjtdtSv8ZKMACjH1mm7oDr6I="} \ No newline at end of file diff --git a/frontend/.next/trace b/frontend/.next/trace index 7a8f792a..3e4387ea 100644 --- a/frontend/.next/trace +++ b/frontend/.next/trace @@ -1,34 +1,35 @@ -[{"name":"build-module-js","duration":8291,"timestamp":1876014764647,"id":133,"parentId":37,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/error-boundary.js","layer":"rsc"},"startTime":1780368983407,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":66334,"timestamp":1876014708188,"id":117,"parentId":114,"tags":{},"startTime":1780368983350,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":252,"timestamp":1876014774540,"id":148,"parentId":114,"tags":{},"startTime":1780368983417,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":71254,"timestamp":1876014706079,"id":114,"parentId":37,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/app-render/entry-base.js","layer":"rsc"},"startTime":1780368983348,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":69242,"timestamp":1876014708213,"id":118,"parentId":115,"tags":{},"startTime":1780368983350,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":47,"timestamp":1876014777468,"id":149,"parentId":115,"tags":{},"startTime":1780368983420,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":69946,"timestamp":1876014708002,"id":115,"parentId":37,"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":1780368983350,"traceId":"f5ac02f0451719cf"},{"name":"build-module","duration":325,"timestamp":1876014780992,"id":150,"parentId":124,"tags":{"name":"path","layer":null},"startTime":1780368983423,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":26252,"timestamp":1876014768953,"id":146,"parentId":142,"tags":{},"startTime":1780368983411,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":55,"timestamp":1876014795223,"id":157,"parentId":142,"tags":{},"startTime":1780368983437,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":29492,"timestamp":1876014768768,"id":142,"parentId":90,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/app-render/dynamic-rendering.js","layer":"rsc"},"startTime":1780368983411,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":29368,"timestamp":1876014768927,"id":144,"parentId":140,"tags":{},"startTime":1780368983411,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":44,"timestamp":1876014798306,"id":158,"parentId":140,"tags":{},"startTime":1780368983441,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":36703,"timestamp":1876014768369,"id":140,"parentId":90,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/constants.js","layer":"rsc"},"startTime":1780368983411,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":37087,"timestamp":1876014768960,"id":147,"parentId":143,"tags":{},"startTime":1780368983411,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":731,"timestamp":1876014806065,"id":159,"parentId":143,"tags":{},"startTime":1780368983448,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":39549,"timestamp":1876014768844,"id":143,"parentId":90,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/lib/clone-response.js","layer":"rsc"},"startTime":1780368983411,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":39491,"timestamp":1876014768945,"id":145,"parentId":141,"tags":{},"startTime":1780368983411,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":264,"timestamp":1876014810998,"id":160,"parentId":141,"tags":{},"startTime":1780368983453,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":54424,"timestamp":1876014768685,"id":141,"parentId":90,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/lib/dedupe-fetch.js","layer":"rsc"},"startTime":1780368983411,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":46,"timestamp":1876014832576,"id":161,"parentId":115,"tags":{"name":"next/dist/compiled/next-server/app-page.runtime.prod.js","layer":null},"startTime":1780368983475,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":7102,"timestamp":1876014833422,"id":165,"parentId":164,"tags":{},"startTime":1780368983476,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":7146,"timestamp":1876014833384,"id":164,"parentId":162,"tags":{},"startTime":1780368983476,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":8303,"timestamp":1876014832639,"id":162,"parentId":123,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/page-path/normalize-path-sep.js","layer":null},"startTime":1780368983475,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":7541,"timestamp":1876014833439,"id":167,"parentId":166,"tags":{},"startTime":1780368983476,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":7555,"timestamp":1876014833427,"id":166,"parentId":163,"tags":{},"startTime":1780368983476,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":8322,"timestamp":1876014832825,"id":163,"parentId":124,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/page-path/ensure-leading-slash.js","layer":null},"startTime":1780368983475,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":58818,"timestamp":1876014782615,"id":154,"parentId":151,"tags":{},"startTime":1780368983425,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":41,"timestamp":1876014841442,"id":171,"parentId":151,"tags":{},"startTime":1780368983484,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":61970,"timestamp":1876014781359,"id":151,"parentId":90,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/lib/trace/constants.js","layer":"rsc"},"startTime":1780368983424,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":60658,"timestamp":1876014782682,"id":156,"parentId":153,"tags":{},"startTime":1780368983425,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":192,"timestamp":1876014843348,"id":172,"parentId":153,"tags":{},"startTime":1780368983486,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":62182,"timestamp":1876014782155,"id":153,"parentId":90,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/output/log.js","layer":"rsc"},"startTime":1780368983424,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":61684,"timestamp":1876014782664,"id":155,"parentId":152,"tags":{},"startTime":1780368983425,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":35,"timestamp":1876014844354,"id":173,"parentId":152,"tags":{},"startTime":1780368983487,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":64016,"timestamp":1876014781888,"id":152,"parentId":90,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/lib/trace/tracer.js","layer":"rsc"},"startTime":1780368983424,"traceId":"f5ac02f0451719cf"},{"name":"build-module-external","duration":16,"timestamp":1876014846331,"id":183,"parentId":114,"tags":{"name":"../../client/components/static-generation-async-storage.external","layer":null},"startTime":1780368983489,"traceId":"f5ac02f0451719cf"},{"name":"build-module-external","duration":4,"timestamp":1876014846352,"id":184,"parentId":114,"tags":{"name":"../../client/components/request-async-storage.external","layer":null},"startTime":1780368983489,"traceId":"f5ac02f0451719cf"},{"name":"build-module-external","duration":55,"timestamp":1876014846359,"id":185,"parentId":114,"tags":{"name":"../../client/components/action-async-storage.external","layer":null},"startTime":1780368983489,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":14545,"timestamp":1876014840193,"id":170,"parentId":169,"tags":{},"startTime":1780368983482,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":14580,"timestamp":1876014840162,"id":169,"parentId":168,"tags":{},"startTime":1780368983482,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":15140,"timestamp":1876014839991,"id":168,"parentId":131,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/not-found.js","layer":"rsc"},"startTime":1780368983482,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":9240,"timestamp":1876014846688,"id":195,"parentId":194,"tags":{},"startTime":1780368983489,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":9251,"timestamp":1876014846679,"id":194,"parentId":182,"tags":{},"startTime":1780368983489,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":9826,"timestamp":1876014846305,"id":182,"parentId":114,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/render-from-template-context.js","layer":"rsc"},"startTime":1780368983489,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":9441,"timestamp":1876014846697,"id":197,"parentId":196,"tags":{},"startTime":1780368983489,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":9450,"timestamp":1876014846689,"id":196,"parentId":186,"tags":{},"startTime":1780368983489,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":9773,"timestamp":1876014846460,"id":186,"parentId":114,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/client-page.js","layer":"rsc"},"startTime":1780368983489,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":9575,"timestamp":1876014846665,"id":191,"parentId":190,"tags":{},"startTime":1780368983489,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":9605,"timestamp":1876014846636,"id":190,"parentId":180,"tags":{},"startTime":1780368983489,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":10092,"timestamp":1876014846215,"id":180,"parentId":114,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/app-router.js","layer":"rsc"},"startTime":1780368983488,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":9634,"timestamp":1876014846678,"id":193,"parentId":192,"tags":{},"startTime":1780368983489,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":9646,"timestamp":1876014846667,"id":192,"parentId":181,"tags":{},"startTime":1780368983489,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":10129,"timestamp":1876014846274,"id":181,"parentId":114,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/layout-router.js","layer":"rsc"},"startTime":1780368983489,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":9905,"timestamp":1876014846706,"id":199,"parentId":198,"tags":{},"startTime":1780368983489,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":9914,"timestamp":1876014846698,"id":198,"parentId":187,"tags":{},"startTime":1780368983489,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":11473,"timestamp":1876014846490,"id":187,"parentId":114,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/search-params.js","layer":"rsc"},"startTime":1780368983489,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":11252,"timestamp":1876014846725,"id":203,"parentId":202,"tags":{},"startTime":1780368983489,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":11261,"timestamp":1876014846717,"id":202,"parentId":189,"tags":{},"startTime":1780368983489,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":11563,"timestamp":1876014846536,"id":189,"parentId":114,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/not-found-boundary.js","layer":"rsc"},"startTime":1780368983489,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":11390,"timestamp":1876014846716,"id":201,"parentId":200,"tags":{},"startTime":1780368983489,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":11399,"timestamp":1876014846708,"id":200,"parentId":188,"tags":{},"startTime":1780368983489,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":12140,"timestamp":1876014846514,"id":188,"parentId":114,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/hooks-server-context.js","layer":"rsc"},"startTime":1780368983489,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":6,"timestamp":1876014864895,"id":216,"parentId":215,"tags":{},"startTime":1780368983507,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":3248,"timestamp":1876014862258,"id":214,"parentId":213,"tags":{},"startTime":1780368983505,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":3279,"timestamp":1876014862229,"id":213,"parentId":208,"tags":{},"startTime":1780368983504,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":3922,"timestamp":1876014862074,"id":208,"parentId":142,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/static-generation-bailout.js","layer":"rsc"},"startTime":1780368983504,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":20243,"timestamp":1876014846209,"id":179,"parentId":178,"tags":{},"startTime":1780368983488,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":20334,"timestamp":1876014846199,"id":178,"parentId":79,"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":1780368983488,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":20346,"timestamp":1876014846193,"id":177,"parentId":176,"tags":{},"startTime":1780368983488,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":20406,"timestamp":1876014846177,"id":176,"parentId":79,"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":1780368983488,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":20429,"timestamp":1876014846163,"id":175,"parentId":174,"tags":{},"startTime":1780368983488,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":20498,"timestamp":1876014846130,"id":174,"parentId":51,"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":1780368983488,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":6489,"timestamp":1876014862194,"id":212,"parentId":207,"tags":{},"startTime":1780368983504,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":28,"timestamp":1876014868689,"id":219,"parentId":207,"tags":{},"startTime":1780368983511,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":7014,"timestamp":1876014862030,"id":207,"parentId":142,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/url.js","layer":"rsc"},"startTime":1780368983504,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":6902,"timestamp":1876014862173,"id":209,"parentId":204,"tags":{},"startTime":1780368983504,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":27,"timestamp":1876014869081,"id":220,"parentId":204,"tags":{},"startTime":1780368983511,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":7536,"timestamp":1876014861808,"id":204,"parentId":114,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/app-render/rsc/preloads.js","layer":"rsc"},"startTime":1780368983504,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":7159,"timestamp":1876014862190,"id":211,"parentId":206,"tags":{},"startTime":1780368983504,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":27,"timestamp":1876014869353,"id":221,"parentId":206,"tags":{},"startTime":1780368983512,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":7842,"timestamp":1876014861981,"id":206,"parentId":114,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/app-render/rsc/taint.js","layer":"rsc"},"startTime":1780368983504,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":7643,"timestamp":1876014862185,"id":210,"parentId":205,"tags":{},"startTime":1780368983504,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":64,"timestamp":1876014869832,"id":222,"parentId":205,"tags":{},"startTime":1780368983512,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":8117,"timestamp":1876014861925,"id":205,"parentId":114,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/app-render/rsc/postpone.js","layer":"rsc"},"startTime":1780368983504,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":7918,"timestamp":1876014868337,"id":218,"parentId":217,"tags":{},"startTime":1780368983511,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":38,"timestamp":1876014876267,"id":223,"parentId":217,"tags":{},"startTime":1780368983519,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":9014,"timestamp":1876014868263,"id":217,"parentId":153,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/picocolors.js","layer":"rsc"},"startTime":1780368983511,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":3589,"timestamp":1876014881627,"id":234,"parentId":233,"tags":{},"startTime":1780368983524,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":3624,"timestamp":1876014881595,"id":233,"parentId":231,"tags":{},"startTime":1780368983524,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":3934,"timestamp":1876014881543,"id":231,"parentId":123,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/index.js","layer":null},"startTime":1780368983524,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":6377,"timestamp":1876014880394,"id":225,"parentId":224,"tags":{},"startTime":1780368983523,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":45,"timestamp":1876014886787,"id":243,"parentId":224,"tags":{},"startTime":1780368983529,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":6781,"timestamp":1876014880293,"id":224,"parentId":133,"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":1780368983523,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":6257,"timestamp":1876014881179,"id":227,"parentId":226,"tags":{},"startTime":1780368983523,"traceId":"f5ac02f0451719cf"},{"name":"build-module-cjs","duration":7094,"timestamp":1876014881161,"id":226,"parentId":50,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/cjs/_interop_require_default.cjs","layer":null},"startTime":1780368983523,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":7072,"timestamp":1876014881200,"id":229,"parentId":228,"tags":{},"startTime":1780368983523,"traceId":"f5ac02f0451719cf"},{"name":"build-module-cjs","duration":7678,"timestamp":1876014881189,"id":228,"parentId":79,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/cjs/_interop_require_wildcard.cjs","layer":null},"startTime":1780368983523,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":7334,"timestamp":1876014881578,"id":232,"parentId":230,"tags":{},"startTime":1780368983524,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":31,"timestamp":1876014888919,"id":244,"parentId":230,"tags":{},"startTime":1780368983531,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":8162,"timestamp":1876014881206,"id":230,"parentId":132,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_interop_require_default.js","layer":"rsc"},"startTime":1780368983523,"traceId":"f5ac02f0451719cf"}] -[{"name":"next-swc-loader","duration":572,"timestamp":1876015305633,"id":620,"parentId":592,"tags":{},"startTime":1780368983948,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":1712,"timestamp":1876015304750,"id":592,"parentId":502,"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":1780368983947,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":11645,"timestamp":1876015295114,"id":589,"parentId":588,"tags":{},"startTime":1780368983937,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":11680,"timestamp":1876015295081,"id":588,"parentId":581,"tags":{},"startTime":1780368983937,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":3762,"timestamp":1876015305472,"id":609,"parentId":608,"tags":{},"startTime":1780368983948,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":3796,"timestamp":1876015305442,"id":608,"parentId":596,"tags":{},"startTime":1780368983948,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":4007,"timestamp":1876015305427,"id":605,"parentId":604,"tags":{},"startTime":1780368983948,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":4041,"timestamp":1876015305395,"id":604,"parentId":593,"tags":{},"startTime":1780368983948,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":5054,"timestamp":1876015304848,"id":593,"parentId":503,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/normalize-trailing-slash.js","layer":"ssr"},"startTime":1780368983947,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":4469,"timestamp":1876015305441,"id":607,"parentId":606,"tags":{},"startTime":1780368983948,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":4480,"timestamp":1876015305430,"id":606,"parentId":594,"tags":{},"startTime":1780368983948,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":5168,"timestamp":1876015304884,"id":594,"parentId":503,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/add-path-prefix.js","layer":"ssr"},"startTime":1780368983947,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":5181,"timestamp":1876015305481,"id":611,"parentId":610,"tags":{},"startTime":1780368983948,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":5192,"timestamp":1876015305473,"id":610,"parentId":597,"tags":{},"startTime":1780368983948,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":6535,"timestamp":1876015304990,"id":597,"parentId":504,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/action-queue.js","layer":"ssr"},"startTime":1780368983947,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":6065,"timestamp":1876015305490,"id":613,"parentId":612,"tags":{},"startTime":1780368983948,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":6086,"timestamp":1876015305482,"id":612,"parentId":598,"tags":{},"startTime":1780368983948,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":7938,"timestamp":1876015305009,"id":598,"parentId":517,"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":1780368983947,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":11454,"timestamp":1876015305508,"id":617,"parentId":616,"tags":{},"startTime":1780368983948,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":11465,"timestamp":1876015305501,"id":616,"parentId":600,"tags":{},"startTime":1780368983948,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":13232,"timestamp":1876015305052,"id":600,"parentId":517,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/compute-changed-path.js","layer":"ssr"},"startTime":1780368983947,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":9196,"timestamp":1876015309102,"id":627,"parentId":626,"tags":{},"startTime":1780368983951,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":9247,"timestamp":1876015309052,"id":626,"parentId":621,"tags":{},"startTime":1780368983951,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":13060,"timestamp":1876015305500,"id":615,"parentId":614,"tags":{},"startTime":1780368983948,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":13069,"timestamp":1876015305491,"id":614,"parentId":599,"tags":{},"startTime":1780368983948,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":15156,"timestamp":1876015305027,"id":599,"parentId":517,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/prefetch-cache-utils.js","layer":"ssr"},"startTime":1780368983947,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":11079,"timestamp":1876015309117,"id":629,"parentId":628,"tags":{},"startTime":1780368983951,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":11092,"timestamp":1876015309104,"id":628,"parentId":622,"tags":{},"startTime":1780368983951,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":11507,"timestamp":1876015308911,"id":622,"parentId":514,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/app-call-server.js","layer":"ssr"},"startTime":1780368983951,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":11292,"timestamp":1876015309134,"id":633,"parentId":632,"tags":{},"startTime":1780368983951,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":11301,"timestamp":1876015309127,"id":632,"parentId":624,"tags":{},"startTime":1780368983951,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":11727,"timestamp":1876015308961,"id":624,"parentId":514,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/hash.js","layer":"ssr"},"startTime":1780368983951,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":15186,"timestamp":1876015305518,"id":619,"parentId":618,"tags":{},"startTime":1780368983948,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":15195,"timestamp":1876015305509,"id":618,"parentId":601,"tags":{},"startTime":1780368983948,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":15972,"timestamp":1876015305070,"id":601,"parentId":517,"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":1780368983947,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":11999,"timestamp":1876015309126,"id":631,"parentId":630,"tags":{},"startTime":1780368983951,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":12008,"timestamp":1876015309118,"id":630,"parentId":623,"tags":{},"startTime":1780368983951,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":12413,"timestamp":1876015308939,"id":623,"parentId":514,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/flight-data-helpers.js","layer":"ssr"},"startTime":1780368983951,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":12216,"timestamp":1876015309143,"id":635,"parentId":634,"tags":{},"startTime":1780368983951,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":12224,"timestamp":1876015309135,"id":634,"parentId":625,"tags":{},"startTime":1780368983951,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":12462,"timestamp":1876015308981,"id":625,"parentId":521,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/path-has-prefix.js","layer":"ssr"},"startTime":1780368983951,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":10903,"timestamp":1876015310546,"id":640,"parentId":639,"tags":{},"startTime":1780368983953,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":10928,"timestamp":1876015310521,"id":639,"parentId":636,"tags":{},"startTime":1780368983953,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":11521,"timestamp":1876015310178,"id":636,"parentId":580,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/app-paths.js","layer":"ssr"},"startTime":1780368983952,"traceId":"f5ac02f0451719cf"},{"name":"build-module-tsx","duration":36504,"timestamp":1876015290006,"id":559,"parentId":406,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/error-boundary.tsx","layer":"ssr"},"startTime":1780368983932,"traceId":"f5ac02f0451719cf"},{"name":"build-module-tsx","duration":36308,"timestamp":1876015290215,"id":561,"parentId":409,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/theme-toggle.tsx","layer":"ssr"},"startTime":1780368983932,"traceId":"f5ac02f0451719cf"},{"name":"build-module-tsx","duration":36366,"timestamp":1876015290164,"id":560,"parentId":411,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/stock-card.tsx","layer":"ssr"},"startTime":1780368983932,"traceId":"f5ac02f0451719cf"},{"name":"build-module-ts","duration":37545,"timestamp":1876015294941,"id":581,"parentId":406,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/hooks/use-websocket.ts","layer":"ssr"},"startTime":1780368983937,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":28989,"timestamp":1876015305263,"id":603,"parentId":595,"tags":{},"startTime":1780368983948,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":81,"timestamp":1876015334276,"id":641,"parentId":595,"tags":{},"startTime":1780368983977,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":30583,"timestamp":1876015304907,"id":595,"parentId":487,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/app-render/get-segment-param.js","layer":"ssr"},"startTime":1780368983947,"traceId":"f5ac02f0451719cf"},{"name":"build-module-tsx","duration":40294,"timestamp":1876015304950,"id":596,"parentId":414,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/kline-chart.tsx","layer":"ssr"},"startTime":1780368983947,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":50500,"timestamp":1876015310329,"id":638,"parentId":637,"tags":{},"startTime":1780368983953,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":47,"timestamp":1876015360848,"id":654,"parentId":637,"tags":{},"startTime":1780368984003,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":51022,"timestamp":1876015310214,"id":637,"parentId":453,"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":1780368983952,"traceId":"f5ac02f0451719cf"},{"name":"build-module-tsx","duration":55136,"timestamp":1876015308826,"id":621,"parentId":414,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/capital-flow.tsx","layer":"ssr"},"startTime":1780368983951,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":23980,"timestamp":1876015340009,"id":647,"parentId":646,"tags":{},"startTime":1780368983982,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":24019,"timestamp":1876015339971,"id":646,"parentId":642,"tags":{},"startTime":1780368983982,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":26704,"timestamp":1876015337548,"id":642,"parentId":636,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/page-path/ensure-leading-slash.js","layer":"ssr"},"startTime":1780368983980,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":24506,"timestamp":1876015340051,"id":649,"parentId":648,"tags":{},"startTime":1780368983982,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":24545,"timestamp":1876015340015,"id":648,"parentId":643,"tags":{},"startTime":1780368983982,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":25203,"timestamp":1876015340113,"id":653,"parentId":652,"tags":{},"startTime":1780368983982,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":25232,"timestamp":1876015340085,"id":652,"parentId":645,"tags":{},"startTime":1780368983982,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":25503,"timestamp":1876015340083,"id":651,"parentId":650,"tags":{},"startTime":1780368983982,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":25533,"timestamp":1876015340053,"id":650,"parentId":644,"tags":{},"startTime":1780368983982,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":6074,"timestamp":1876015362596,"id":666,"parentId":665,"tags":{},"startTime":1780368984005,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":6104,"timestamp":1876015362567,"id":665,"parentId":657,"tags":{},"startTime":1780368984005,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":6328,"timestamp":1876015362606,"id":668,"parentId":667,"tags":{},"startTime":1780368984005,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":6337,"timestamp":1876015362597,"id":667,"parentId":658,"tags":{},"startTime":1780368984005,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":7093,"timestamp":1876015361950,"id":658,"parentId":593,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/remove-trailing-slash.js","layer":"ssr"},"startTime":1780368984004,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":6519,"timestamp":1876015362529,"id":662,"parentId":661,"tags":{},"startTime":1780368984005,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":6558,"timestamp":1876015362491,"id":661,"parentId":655,"tags":{},"startTime":1780368984005,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":7505,"timestamp":1876015361722,"id":655,"parentId":562,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/redirect-status-code.js","layer":"ssr"},"startTime":1780368984004,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":6735,"timestamp":1876015362566,"id":664,"parentId":663,"tags":{},"startTime":1780368984005,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":6769,"timestamp":1876015362533,"id":663,"parentId":656,"tags":{},"startTime":1780368984005,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":7118,"timestamp":1876015362623,"id":672,"parentId":671,"tags":{},"startTime":1780368984005,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":7127,"timestamp":1876015362616,"id":671,"parentId":660,"tags":{},"startTime":1780368984005,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":7870,"timestamp":1876015362025,"id":660,"parentId":593,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/parse-path.js","layer":"ssr"},"startTime":1780368984004,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":7287,"timestamp":1876015362615,"id":670,"parentId":669,"tags":{},"startTime":1780368984005,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":7296,"timestamp":1876015362607,"id":669,"parentId":659,"tags":{},"startTime":1780368984005,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":8265,"timestamp":1876015361974,"id":659,"parentId":597,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/router-reducer.js","layer":"ssr"},"startTime":1780368984004,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":8607,"timestamp":1876015367776,"id":682,"parentId":681,"tags":{},"startTime":1780368984010,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":8621,"timestamp":1876015367766,"id":681,"parentId":676,"tags":{},"startTime":1780368984010,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":9490,"timestamp":1876015367485,"id":676,"parentId":599,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/prefetch-reducer.js","layer":"ssr"},"startTime":1780368984010,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":9227,"timestamp":1876015367764,"id":680,"parentId":679,"tags":{},"startTime":1780368984010,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":9252,"timestamp":1876015367739,"id":679,"parentId":675,"tags":{},"startTime":1780368984010,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":9846,"timestamp":1876015367462,"id":675,"parentId":601,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/apply-flight-data.js","layer":"ssr"},"startTime":1780368984010,"traceId":"f5ac02f0451719cf"},{"name":"build-module-ts","duration":41159,"timestamp":1876015337859,"id":643,"parentId":408,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/lib/markdown.ts","layer":"ssr"},"startTime":1780368983980,"traceId":"f5ac02f0451719cf"},{"name":"build-module-ts","duration":40757,"timestamp":1876015338273,"id":644,"parentId":408,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/lib/api.ts","layer":"ssr"},"startTime":1780368983981,"traceId":"f5ac02f0451719cf"},{"name":"build-module-ts","duration":40594,"timestamp":1876015338445,"id":645,"parentId":406,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/lib/utils.ts","layer":"ssr"},"startTime":1780368983981,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":3657,"timestamp":1876015375787,"id":689,"parentId":688,"tags":{},"startTime":1780368984018,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":3707,"timestamp":1876015375746,"id":688,"parentId":683,"tags":{},"startTime":1780368984018,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":5414,"timestamp":1876015374720,"id":683,"parentId":564,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/lazy-dynamic/bailout-to-csr.js","layer":"ssr"},"startTime":1780368984017,"traceId":"f5ac02f0451719cf"},{"name":"build-module-tsx","duration":19317,"timestamp":1876015361843,"id":656,"parentId":442,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/nav.tsx","layer":"ssr"},"startTime":1780368984004,"traceId":"f5ac02f0451719cf"},{"name":"build-module-tsx","duration":19265,"timestamp":1876015361903,"id":657,"parentId":442,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/user-menu.tsx","layer":"ssr"},"startTime":1780368984004,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":13647,"timestamp":1876015367661,"id":677,"parentId":673,"tags":{},"startTime":1780368984010,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":27,"timestamp":1876015381314,"id":694,"parentId":673,"tags":{},"startTime":1780368984024,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":14117,"timestamp":1876015367355,"id":673,"parentId":405,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/api/link.js","layer":"ssr"},"startTime":1780368984010,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":13800,"timestamp":1876015367678,"id":678,"parentId":674,"tags":{},"startTime":1780368984010,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":23,"timestamp":1876015381482,"id":695,"parentId":674,"tags":{},"startTime":1780368984024,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":14131,"timestamp":1876015367419,"id":674,"parentId":412,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/api/navigation.js","layer":"ssr"},"startTime":1780368984010,"traceId":"f5ac02f0451719cf"}] -[{"name":"read-resource","duration":12508,"timestamp":1876015375596,"id":687,"parentId":685,"tags":{},"startTime":1780368984018,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":35,"timestamp":1876015388115,"id":696,"parentId":685,"tags":{},"startTime":1780368984030,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":13520,"timestamp":1876015374861,"id":685,"parentId":451,"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":1780368984017,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":12825,"timestamp":1876015375563,"id":686,"parentId":684,"tags":{},"startTime":1780368984018,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":29,"timestamp":1876015388393,"id":697,"parentId":684,"tags":{},"startTime":1780368984031,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":13675,"timestamp":1876015374803,"id":684,"parentId":454,"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":1780368984017,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":2872,"timestamp":1876015389496,"id":705,"parentId":704,"tags":{},"startTime":1780368984032,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":2916,"timestamp":1876015389460,"id":704,"parentId":698,"tags":{},"startTime":1780368984032,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":4275,"timestamp":1876015389221,"id":698,"parentId":659,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/restore-reducer.js","layer":"ssr"},"startTime":1780368984031,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":4011,"timestamp":1876015389509,"id":707,"parentId":706,"tags":{},"startTime":1780368984032,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":4022,"timestamp":1876015389499,"id":706,"parentId":699,"tags":{},"startTime":1780368984032,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":4659,"timestamp":1876015389310,"id":699,"parentId":659,"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":1780368984032,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":8111,"timestamp":1876015389526,"id":711,"parentId":710,"tags":{},"startTime":1780368984032,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":8124,"timestamp":1876015389519,"id":710,"parentId":701,"tags":{},"startTime":1780368984032,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":9476,"timestamp":1876015389367,"id":701,"parentId":659,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/refresh-reducer.js","layer":"ssr"},"startTime":1780368984032,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":9407,"timestamp":1876015389518,"id":709,"parentId":708,"tags":{},"startTime":1780368984032,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":9417,"timestamp":1876015389510,"id":708,"parentId":700,"tags":{},"startTime":1780368984032,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":11742,"timestamp":1876015389342,"id":700,"parentId":659,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/navigate-reducer.js","layer":"ssr"},"startTime":1780368984032,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":14679,"timestamp":1876015389542,"id":715,"parentId":714,"tags":{},"startTime":1780368984032,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":14691,"timestamp":1876015389535,"id":714,"parentId":703,"tags":{},"startTime":1780368984032,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":17252,"timestamp":1876015389408,"id":703,"parentId":659,"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":1780368984032,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":15776,"timestamp":1876015390996,"id":721,"parentId":720,"tags":{},"startTime":1780368984033,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":15790,"timestamp":1876015390984,"id":720,"parentId":717,"tags":{},"startTime":1780368984033,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":16917,"timestamp":1876015390929,"id":717,"parentId":675,"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":1780368984033,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":18326,"timestamp":1876015389535,"id":713,"parentId":712,"tags":{},"startTime":1780368984032,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":18334,"timestamp":1876015389527,"id":712,"parentId":702,"tags":{},"startTime":1780368984032,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":20539,"timestamp":1876015389388,"id":702,"parentId":659,"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":1780368984032,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":18964,"timestamp":1876015390982,"id":719,"parentId":718,"tags":{},"startTime":1780368984033,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":18990,"timestamp":1876015390957,"id":718,"parentId":716,"tags":{},"startTime":1780368984033,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":19518,"timestamp":1876015390872,"id":716,"parentId":676,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/promise-queue.js","layer":"ssr"},"startTime":1780368984033,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":29304,"timestamp":1876015381138,"id":693,"parentId":691,"tags":{},"startTime":1780368984023,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":43,"timestamp":1876015410450,"id":722,"parentId":691,"tags":{},"startTime":1780368984053,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":29488,"timestamp":1876015381067,"id":691,"parentId":514,"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":1780368984023,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":29527,"timestamp":1876015381127,"id":692,"parentId":690,"tags":{},"startTime":1780368984023,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":30,"timestamp":1876015410658,"id":723,"parentId":690,"tags":{},"startTime":1780368984053,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":29760,"timestamp":1876015380973,"id":690,"parentId":473,"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":1780368984023,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":5370,"timestamp":1876015412825,"id":726,"parentId":725,"tags":{},"startTime":1780368984055,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":5447,"timestamp":1876015412752,"id":725,"parentId":724,"tags":{},"startTime":1780368984055,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":8052,"timestamp":1876015411722,"id":724,"parentId":673,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/link.js","layer":"ssr"},"startTime":1780368984054,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":2096,"timestamp":1876015431326,"id":743,"parentId":742,"tags":{},"startTime":1780368984074,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":2109,"timestamp":1876015431318,"id":742,"parentId":730,"tags":{},"startTime":1780368984074,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":3447,"timestamp":1876015431133,"id":730,"parentId":699,"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":1780368984073,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":3343,"timestamp":1876015431308,"id":739,"parentId":738,"tags":{},"startTime":1780368984074,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":3357,"timestamp":1876015431298,"id":738,"parentId":728,"tags":{},"startTime":1780368984074,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":4914,"timestamp":1876015431076,"id":728,"parentId":699,"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":1780368984073,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":6168,"timestamp":1876015431295,"id":737,"parentId":736,"tags":{},"startTime":1780368984074,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":6206,"timestamp":1876015431260,"id":736,"parentId":727,"tags":{},"startTime":1780368984074,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":7415,"timestamp":1876015430984,"id":727,"parentId":724,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/utils.js","layer":"ssr"},"startTime":1780368984073,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":7078,"timestamp":1876015431335,"id":745,"parentId":744,"tags":{},"startTime":1780368984074,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":7086,"timestamp":1876015431328,"id":744,"parentId":731,"tags":{},"startTime":1780368984074,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":7508,"timestamp":1876015431155,"id":731,"parentId":699,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/handle-segment-mismatch.js","layer":"ssr"},"startTime":1780368984073,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":7385,"timestamp":1876015431317,"id":741,"parentId":740,"tags":{},"startTime":1780368984074,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":7394,"timestamp":1876015431309,"id":740,"parentId":729,"tags":{},"startTime":1780368984074,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":9180,"timestamp":1876015431107,"id":729,"parentId":698,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/ppr-navigations.js","layer":"ssr"},"startTime":1780368984073,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":8978,"timestamp":1876015431351,"id":749,"parentId":748,"tags":{},"startTime":1780368984074,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":8987,"timestamp":1876015431344,"id":748,"parentId":733,"tags":{},"startTime":1780368984074,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":9865,"timestamp":1876015431193,"id":733,"parentId":700,"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":1780368984073,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":10512,"timestamp":1876015431359,"id":751,"parentId":750,"tags":{},"startTime":1780368984074,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":10521,"timestamp":1876015431352,"id":750,"parentId":734,"tags":{},"startTime":1780368984074,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":11937,"timestamp":1876015431212,"id":734,"parentId":700,"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":1780368984073,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":11882,"timestamp":1876015431343,"id":747,"parentId":746,"tags":{},"startTime":1780368984074,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":11892,"timestamp":1876015431336,"id":746,"parentId":732,"tags":{},"startTime":1780368984074,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":12501,"timestamp":1876015431174,"id":732,"parentId":699,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/handle-mutable.js","layer":"ssr"},"startTime":1780368984073,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":12338,"timestamp":1876015431367,"id":753,"parentId":752,"tags":{},"startTime":1780368984074,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":12347,"timestamp":1876015431360,"id":752,"parentId":735,"tags":{},"startTime":1780368984074,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":13164,"timestamp":1876015431229,"id":735,"parentId":700,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/should-hard-navigate.js","layer":"ssr"},"startTime":1780368984073,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":11024,"timestamp":1876015433381,"id":756,"parentId":755,"tags":{},"startTime":1780368984076,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":11056,"timestamp":1876015433350,"id":755,"parentId":754,"tags":{},"startTime":1780368984076,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":12125,"timestamp":1876015432907,"id":754,"parentId":717,"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":1780368984075,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":11084,"timestamp":1876015437032,"id":768,"parentId":767,"tags":{},"startTime":1780368984079,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":11098,"timestamp":1876015437023,"id":767,"parentId":759,"tags":{},"startTime":1780368984079,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":12108,"timestamp":1876015436546,"id":759,"parentId":724,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/get-domain-locale.js","layer":"ssr"},"startTime":1780368984079,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":11660,"timestamp":1876015437008,"id":764,"parentId":763,"tags":{},"startTime":1780368984079,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":11685,"timestamp":1876015436983,"id":763,"parentId":757,"tags":{},"startTime":1780368984079,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":12760,"timestamp":1876015436458,"id":757,"parentId":724,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/resolve-href.js","layer":"ssr"},"startTime":1780368984079,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":12197,"timestamp":1876015437041,"id":770,"parentId":769,"tags":{},"startTime":1780368984079,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":12207,"timestamp":1876015437033,"id":769,"parentId":760,"tags":{},"startTime":1780368984079,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":12963,"timestamp":1876015436568,"id":760,"parentId":724,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/add-locale.js","layer":"ssr"},"startTime":1780368984079,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":12491,"timestamp":1876015437050,"id":772,"parentId":771,"tags":{},"startTime":1780368984079,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":12499,"timestamp":1876015437042,"id":771,"parentId":761,"tags":{},"startTime":1780368984079,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":13074,"timestamp":1876015436588,"id":761,"parentId":724,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/is-local-url.js","layer":"ssr"},"startTime":1780368984079,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":12647,"timestamp":1876015437022,"id":766,"parentId":765,"tags":{},"startTime":1780368984079,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":12660,"timestamp":1876015437010,"id":765,"parentId":758,"tags":{},"startTime":1780368984079,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":13493,"timestamp":1876015436518,"id":758,"parentId":724,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/use-intersection.js","layer":"ssr"},"startTime":1780368984079,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":12960,"timestamp":1876015437058,"id":774,"parentId":773,"tags":{},"startTime":1780368984079,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":12968,"timestamp":1876015437051,"id":773,"parentId":762,"tags":{},"startTime":1780368984079,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":13830,"timestamp":1876015436606,"id":762,"parentId":724,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/format-url.js","layer":"ssr"},"startTime":1780368984079,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":3108,"timestamp":1876015464954,"id":777,"parentId":776,"tags":{},"startTime":1780368984107,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":3147,"timestamp":1876015464922,"id":776,"parentId":775,"tags":{},"startTime":1780368984107,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":3635,"timestamp":1876015464841,"id":775,"parentId":757,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/index.js","layer":"ssr"},"startTime":1780368984107,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":1476,"timestamp":1876015468840,"id":789,"parentId":788,"tags":{},"startTime":1780368984111,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":1486,"timestamp":1876015468832,"id":788,"parentId":781,"tags":{},"startTime":1780368984111,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":1900,"timestamp":1876015468741,"id":781,"parentId":757,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/omit.js","layer":"ssr"},"startTime":1780368984111,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":1967,"timestamp":1876015468831,"id":787,"parentId":786,"tags":{},"startTime":1780368984111,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":1978,"timestamp":1876015468823,"id":786,"parentId":780,"tags":{},"startTime":1780368984111,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":2520,"timestamp":1876015468718,"id":780,"parentId":757,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/interpolate-as.js","layer":"ssr"},"startTime":1780368984111,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":2429,"timestamp":1876015468822,"id":785,"parentId":784,"tags":{},"startTime":1780368984111,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":2440,"timestamp":1876015468811,"id":784,"parentId":779,"tags":{},"startTime":1780368984111,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":2864,"timestamp":1876015468687,"id":779,"parentId":757,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/querystring.js","layer":"ssr"},"startTime":1780368984111,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":2874,"timestamp":1876015468809,"id":783,"parentId":782,"tags":{},"startTime":1780368984111,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":2907,"timestamp":1876015468778,"id":782,"parentId":778,"tags":{},"startTime":1780368984111,"traceId":"f5ac02f0451719cf"}] -[{"name":"build-module-js","duration":11308,"timestamp":1876015252368,"id":486,"parentId":453,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/unresolved-thenable.js","layer":"ssr"},"startTime":1780368983895,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":10652,"timestamp":1876015253048,"id":492,"parentId":491,"tags":{},"startTime":1780368983895,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":10698,"timestamp":1876015253004,"id":491,"parentId":485,"tags":{},"startTime":1780368983895,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":11609,"timestamp":1876015252329,"id":485,"parentId":451,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/segment.js","layer":"ssr"},"startTime":1780368983895,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":10926,"timestamp":1876015253085,"id":498,"parentId":497,"tags":{},"startTime":1780368983895,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":10935,"timestamp":1876015253077,"id":497,"parentId":488,"tags":{},"startTime":1780368983895,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":12032,"timestamp":1876015252417,"id":488,"parentId":453,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/redirect-boundary.js","layer":"ssr"},"startTime":1780368983895,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":11383,"timestamp":1876015253075,"id":496,"parentId":495,"tags":{},"startTime":1780368983895,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":11393,"timestamp":1876015253067,"id":495,"parentId":487,"tags":{},"startTime":1780368983895,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":12320,"timestamp":1876015252393,"id":487,"parentId":453,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/match-segments.js","layer":"ssr"},"startTime":1780368983895,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":11627,"timestamp":1876015253093,"id":500,"parentId":499,"tags":{},"startTime":1780368983895,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":11636,"timestamp":1876015253086,"id":499,"parentId":489,"tags":{},"startTime":1780368983895,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":12401,"timestamp":1876015252440,"id":489,"parentId":453,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/handle-smooth-scroll.js","layer":"ssr"},"startTime":1780368983895,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":3832,"timestamp":1876015261631,"id":509,"parentId":508,"tags":{},"startTime":1780368983904,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":3872,"timestamp":1876015261595,"id":508,"parentId":503,"tags":{},"startTime":1780368983904,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":4963,"timestamp":1876015260901,"id":503,"parentId":451,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/add-base-path.js","layer":"ssr"},"startTime":1780368983903,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":4222,"timestamp":1876015261656,"id":513,"parentId":512,"tags":{},"startTime":1780368983904,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":4252,"timestamp":1876015261647,"id":512,"parentId":505,"tags":{},"startTime":1780368983904,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":5353,"timestamp":1876015260956,"id":505,"parentId":451,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/is-bot.js","layer":"ssr"},"startTime":1780368983903,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":7830,"timestamp":1876015261645,"id":511,"parentId":510,"tags":{},"startTime":1780368983904,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":7845,"timestamp":1876015261634,"id":510,"parentId":504,"tags":{},"startTime":1780368983904,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":9204,"timestamp":1876015260934,"id":504,"parentId":451,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/use-reducer-with-devtools.js","layer":"ssr"},"startTime":1780368983903,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":4240,"timestamp":1876015267325,"id":529,"parentId":528,"tags":{},"startTime":1780368983910,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":4266,"timestamp":1876015267314,"id":528,"parentId":515,"tags":{},"startTime":1780368983910,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":5442,"timestamp":1876015266688,"id":515,"parentId":453,"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":1780368983909,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":4806,"timestamp":1876015267344,"id":533,"parentId":532,"tags":{},"startTime":1780368983910,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":4815,"timestamp":1876015267336,"id":532,"parentId":517,"tags":{},"startTime":1780368983910,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":5829,"timestamp":1876015266740,"id":517,"parentId":451,"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":1780368983909,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":5246,"timestamp":1876015267334,"id":531,"parentId":530,"tags":{},"startTime":1780368983910,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":5255,"timestamp":1876015267326,"id":530,"parentId":516,"tags":{},"startTime":1780368983910,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":6126,"timestamp":1876015266716,"id":516,"parentId":451,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/router-reducer-types.js","layer":"ssr"},"startTime":1780368983909,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":59,"timestamp":1876015273645,"id":552,"parentId":550,"tags":{},"startTime":1780368983916,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":100,"timestamp":1876015273648,"id":553,"parentId":551,"tags":{},"startTime":1780368983916,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":892,"timestamp":1876015273709,"id":554,"parentId":550,"tags":{},"startTime":1780368983916,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":852,"timestamp":1876015273751,"id":555,"parentId":551,"tags":{},"startTime":1780368983916,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":2664,"timestamp":1876015273272,"id":550,"parentId":469,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/app-render/dynamic-rendering.js","layer":"ssr"},"startTime":1780368983916,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":2784,"timestamp":1876015273392,"id":551,"parentId":469,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/web/spec-extension/adapters/reflect.js","layer":"ssr"},"startTime":1780368983916,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":9604,"timestamp":1876015267375,"id":539,"parentId":538,"tags":{},"startTime":1780368983910,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":9619,"timestamp":1876015267362,"id":538,"parentId":520,"tags":{},"startTime":1780368983910,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":10623,"timestamp":1876015266799,"id":520,"parentId":453,"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":1780368983909,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":10122,"timestamp":1876015267311,"id":527,"parentId":526,"tags":{},"startTime":1780368983910,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":10155,"timestamp":1876015267280,"id":526,"parentId":514,"tags":{},"startTime":1780368983910,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":11330,"timestamp":1876015266617,"id":514,"parentId":453,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/fetch-server-response.js","layer":"ssr"},"startTime":1780368983909,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":10602,"timestamp":1876015267352,"id":535,"parentId":534,"tags":{},"startTime":1780368983910,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":10611,"timestamp":1876015267345,"id":534,"parentId":518,"tags":{},"startTime":1780368983910,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":11317,"timestamp":1876015266760,"id":518,"parentId":451,"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":1780368983909,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":10723,"timestamp":1876015267361,"id":537,"parentId":536,"tags":{},"startTime":1780368983910,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":10732,"timestamp":1876015267353,"id":536,"parentId":519,"tags":{},"startTime":1780368983910,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":11410,"timestamp":1876015266779,"id":519,"parentId":453,"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":1780368983909,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":10795,"timestamp":1876015267400,"id":545,"parentId":544,"tags":{},"startTime":1780368983910,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":10803,"timestamp":1876015267393,"id":544,"parentId":523,"tags":{},"startTime":1780368983910,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":11641,"timestamp":1876015266866,"id":523,"parentId":451,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/app-router-announcer.js","layer":"ssr"},"startTime":1780368983909,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":11129,"timestamp":1876015267384,"id":541,"parentId":540,"tags":{},"startTime":1780368983910,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":11138,"timestamp":1876015267376,"id":540,"parentId":521,"tags":{},"startTime":1780368983910,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":11856,"timestamp":1876015266818,"id":521,"parentId":451,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/has-base-path.js","layer":"ssr"},"startTime":1780368983909,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":11492,"timestamp":1876015267393,"id":543,"parentId":542,"tags":{},"startTime":1780368983910,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":11500,"timestamp":1876015267385,"id":542,"parentId":522,"tags":{},"startTime":1780368983910,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":12210,"timestamp":1876015266848,"id":522,"parentId":451,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/remove-base-path.js","layer":"ssr"},"startTime":1780368983909,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":14378,"timestamp":1876015267409,"id":547,"parentId":546,"tags":{},"startTime":1780368983910,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":14388,"timestamp":1876015267401,"id":546,"parentId":524,"tags":{},"startTime":1780368983910,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":15256,"timestamp":1876015266883,"id":524,"parentId":451,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/app-router-headers.js","layer":"ssr"},"startTime":1780368983909,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":30455,"timestamp":1876015252469,"id":490,"parentId":484,"tags":{},"startTime":1780368983895,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":35,"timestamp":1876015282932,"id":556,"parentId":484,"tags":{},"startTime":1780368983925,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":31126,"timestamp":1876015252207,"id":484,"parentId":454,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_interop_require_wildcard.js","layer":"ssr"},"startTime":1780368983894,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":15933,"timestamp":1876015267417,"id":549,"parentId":548,"tags":{},"startTime":1780368983910,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":15941,"timestamp":1876015267410,"id":548,"parentId":525,"tags":{},"startTime":1780368983910,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":16682,"timestamp":1876015266913,"id":525,"parentId":451,"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":1780368983909,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":27768,"timestamp":1876015261380,"id":507,"parentId":502,"tags":{},"startTime":1780368983904,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":32,"timestamp":1876015289161,"id":557,"parentId":502,"tags":{},"startTime":1780368983931,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":28493,"timestamp":1876015260846,"id":502,"parentId":408,"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":1780368983903,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":27991,"timestamp":1876015261360,"id":506,"parentId":501,"tags":{},"startTime":1780368983904,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":28,"timestamp":1876015289358,"id":558,"parentId":501,"tags":{},"startTime":1780368983932,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":28728,"timestamp":1876015260710,"id":501,"parentId":405,"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":1780368983903,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":187,"timestamp":1876015294990,"id":582,"parentId":577,"tags":{},"startTime":1780368983937,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":216,"timestamp":1876015294994,"id":583,"parentId":580,"tags":{},"startTime":1780368983937,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":54,"timestamp":1876015295185,"id":590,"parentId":577,"tags":{},"startTime":1780368983937,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":27,"timestamp":1876015295213,"id":591,"parentId":580,"tags":{},"startTime":1780368983937,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":857,"timestamp":1876015294755,"id":577,"parentId":550,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/url.js","layer":"ssr"},"startTime":1780368983937,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":1115,"timestamp":1876015294897,"id":580,"parentId":520,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/helpers/interception-routes.js","layer":"ssr"},"startTime":1780368983937,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":5363,"timestamp":1876015290701,"id":566,"parentId":565,"tags":{},"startTime":1780368983933,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":5481,"timestamp":1876015290584,"id":565,"parentId":559,"tags":{},"startTime":1780368983933,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":5632,"timestamp":1876015290738,"id":568,"parentId":567,"tags":{},"startTime":1780368983933,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":5668,"timestamp":1876015290704,"id":567,"parentId":560,"tags":{},"startTime":1780368983933,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":6361,"timestamp":1876015290780,"id":572,"parentId":571,"tags":{},"startTime":1780368983933,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":6372,"timestamp":1876015290771,"id":571,"parentId":562,"tags":{},"startTime":1780368983933,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":7146,"timestamp":1876015290427,"id":562,"parentId":472,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/redirect.js","layer":"ssr"},"startTime":1780368983933,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":7919,"timestamp":1876015290769,"id":570,"parentId":569,"tags":{},"startTime":1780368983933,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":7951,"timestamp":1876015290740,"id":569,"parentId":561,"tags":{},"startTime":1780368983933,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":8301,"timestamp":1876015290798,"id":576,"parentId":575,"tags":{},"startTime":1780368983933,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":8315,"timestamp":1876015290790,"id":575,"parentId":564,"tags":{},"startTime":1780368983933,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":8957,"timestamp":1876015290500,"id":564,"parentId":473,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/bailout-to-client-rendering.js","layer":"ssr"},"startTime":1780368983933,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":8680,"timestamp":1876015290789,"id":574,"parentId":573,"tags":{},"startTime":1780368983933,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":8689,"timestamp":1876015290781,"id":573,"parentId":563,"tags":{},"startTime":1780368983933,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":9336,"timestamp":1876015290474,"id":563,"parentId":473,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/navigation.react-server.js","layer":"ssr"},"startTime":1780368983933,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":7585,"timestamp":1876015295068,"id":585,"parentId":584,"tags":{},"startTime":1780368983937,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":7616,"timestamp":1876015295040,"id":584,"parentId":578,"tags":{},"startTime":1780368983937,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":8125,"timestamp":1876015294843,"id":578,"parentId":550,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/hooks-server-context.js","layer":"ssr"},"startTime":1780368983937,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":7918,"timestamp":1876015295080,"id":587,"parentId":586,"tags":{},"startTime":1780368983937,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":7929,"timestamp":1876015295070,"id":586,"parentId":579,"tags":{},"startTime":1780368983937,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":8308,"timestamp":1876015294874,"id":579,"parentId":550,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/static-generation-bailout.js","layer":"ssr"},"startTime":1780368983937,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":366,"timestamp":1876015305260,"id":602,"parentId":592,"tags":{},"startTime":1780368983948,"traceId":"f5ac02f0451719cf"}] -[{"name":"build-module-tsx","duration":3064,"timestamp":1876015017856,"id":313,"parentId":279,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/mobile-shell.tsx","layer":"rsc"},"startTime":1780368983660,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":4303,"timestamp":1876015016971,"id":308,"parentId":307,"tags":{},"startTime":1780368983659,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":4354,"timestamp":1876015016921,"id":307,"parentId":306,"tags":{},"startTime":1780368983659,"traceId":"f5ac02f0451719cf"},{"name":"build-module-tsx","duration":4646,"timestamp":1876015016792,"id":306,"parentId":46,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/stock/[code]/page.tsx","layer":"rsc"},"startTime":1780368983659,"traceId":"f5ac02f0451719cf"},{"name":"add-entry","duration":604840,"timestamp":1876014417393,"id":27,"parentId":21,"tags":{"request":"next-app-loader?page=%2F(auth)%2Fsentiment%2Fpage&name=app%2F(auth)%2Fsentiment%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fsentiment%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&appPaths=%2F(auth)%2Fsentiment%2Fpage&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&basePath=&assetPrefix=&nextConfigOutput=standalone&nextConfigExperimentalUseEarlyImport=false&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1780368983060,"traceId":"f5ac02f0451719cf"},{"name":"add-entry","duration":604645,"timestamp":1876014417593,"id":34,"parentId":21,"tags":{"request":"next-app-loader?page=%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage&name=app%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&appPaths=%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&basePath=&assetPrefix=&nextConfigOutput=standalone&nextConfigExperimentalUseEarlyImport=false&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1780368983060,"traceId":"f5ac02f0451719cf"},{"name":"build-module","duration":2183,"timestamp":1876015087515,"id":391,"parentId":19,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext-themes%2Fdist%2Findex.mjs%22%2C%22ids%22%3A%5B%22ThemeProvider%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2Fglobals.css%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fhooks%2Fuse-auth.tsx%22%2C%22ids%22%3A%5B%22AuthProvider%22%5D%7D&server=true!","layer":"ssr"},"startTime":1780368983730,"traceId":"f5ac02f0451719cf"},{"name":"build-module","duration":3425,"timestamp":1876015089727,"id":392,"parentId":19,"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":1780368983732,"traceId":"f5ac02f0451719cf"},{"name":"build-module","duration":914,"timestamp":1876015093172,"id":393,"parentId":19,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fsectors%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=true!","layer":"ssr"},"startTime":1780368983735,"traceId":"f5ac02f0451719cf"},{"name":"build-module","duration":1735,"timestamp":1876015094099,"id":394,"parentId":19,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fauth-guard.tsx%22%2C%22ids%22%3A%5B%22AuthGuard%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fmobile-shell.tsx%22%2C%22ids%22%3A%5B%22MobileShell%22%5D%7D&server=true!","layer":"ssr"},"startTime":1780368983736,"traceId":"f5ac02f0451719cf"},{"name":"build-module","duration":538,"timestamp":1876015095849,"id":395,"parentId":19,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fsentiment%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=true!","layer":"ssr"},"startTime":1780368983738,"traceId":"f5ac02f0451719cf"},{"name":"build-module","duration":813,"timestamp":1876015096396,"id":396,"parentId":19,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fsectors%2F%5Bname%5D%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=true!","layer":"ssr"},"startTime":1780368983739,"traceId":"f5ac02f0451719cf"},{"name":"build-module","duration":462,"timestamp":1876015097217,"id":397,"parentId":19,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fchat%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=true!","layer":"ssr"},"startTime":1780368983739,"traceId":"f5ac02f0451719cf"},{"name":"build-module","duration":308,"timestamp":1876015097687,"id":398,"parentId":19,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fdashboard%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=true!","layer":"ssr"},"startTime":1780368983740,"traceId":"f5ac02f0451719cf"},{"name":"build-module","duration":362,"timestamp":1876015098002,"id":399,"parentId":19,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fwatchlists%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=true!","layer":"ssr"},"startTime":1780368983740,"traceId":"f5ac02f0451719cf"},{"name":"build-module","duration":285,"timestamp":1876015098370,"id":400,"parentId":19,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Frecommendations%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=true!","layer":"ssr"},"startTime":1780368983741,"traceId":"f5ac02f0451719cf"},{"name":"build-module","duration":244,"timestamp":1876015098661,"id":401,"parentId":19,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=true!","layer":"ssr"},"startTime":1780368983741,"traceId":"f5ac02f0451719cf"},{"name":"build-module","duration":251,"timestamp":1876015098911,"id":402,"parentId":19,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(public)%2Flogin%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=true!","layer":"ssr"},"startTime":1780368983741,"traceId":"f5ac02f0451719cf"},{"name":"build-module","duration":47,"timestamp":1876015099167,"id":403,"parentId":19,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?server=true!","layer":"ssr"},"startTime":1780368983741,"traceId":"f5ac02f0451719cf"},{"name":"build-module","duration":252,"timestamp":1876015099221,"id":404,"parentId":19,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(public)%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=true!","layer":"ssr"},"startTime":1780368983741,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":5273,"timestamp":1876015115019,"id":416,"parentId":415,"tags":{},"startTime":1780368983757,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":5355,"timestamp":1876015114953,"id":415,"parentId":405,"tags":{},"startTime":1780368983757,"traceId":"f5ac02f0451719cf"},{"name":"build-module-tsx","duration":8172,"timestamp":1876015112891,"id":405,"parentId":404,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(public)/page.tsx","layer":"ssr"},"startTime":1780368983755,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":7458,"timestamp":1876015115116,"id":422,"parentId":421,"tags":{},"startTime":1780368983757,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":7493,"timestamp":1876015115086,"id":421,"parentId":408,"tags":{},"startTime":1780368983757,"traceId":"f5ac02f0451719cf"},{"name":"build-module-tsx","duration":9392,"timestamp":1876015114656,"id":408,"parentId":397,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/chat/page.tsx","layer":"ssr"},"startTime":1780368983757,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":15289,"timestamp":1876015115055,"id":418,"parentId":417,"tags":{},"startTime":1780368983757,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":15345,"timestamp":1876015115022,"id":417,"parentId":406,"tags":{},"startTime":1780368983757,"traceId":"f5ac02f0451719cf"},{"name":"build-module-tsx","duration":45438,"timestamp":1876015114524,"id":406,"parentId":393,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/sectors/page.tsx","layer":"ssr"},"startTime":1780368983757,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":48056,"timestamp":1876015115146,"id":424,"parentId":423,"tags":{},"startTime":1780368983757,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":48091,"timestamp":1876015115117,"id":423,"parentId":409,"tags":{},"startTime":1780368983757,"traceId":"f5ac02f0451719cf"},{"name":"build-module-tsx","duration":55673,"timestamp":1876015114700,"id":409,"parentId":398,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/dashboard/page.tsx","layer":"ssr"},"startTime":1780368983757,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":55376,"timestamp":1876015115085,"id":420,"parentId":419,"tags":{},"startTime":1780368983757,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":55407,"timestamp":1876015115056,"id":419,"parentId":407,"tags":{},"startTime":1780368983757,"traceId":"f5ac02f0451719cf"},{"name":"build-module-tsx","duration":58344,"timestamp":1876015114608,"id":407,"parentId":395,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/sentiment/page.tsx","layer":"ssr"},"startTime":1780368983757,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":57754,"timestamp":1876015115260,"id":430,"parentId":429,"tags":{},"startTime":1780368983758,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":57783,"timestamp":1876015115232,"id":429,"parentId":412,"tags":{},"startTime":1780368983757,"traceId":"f5ac02f0451719cf"},{"name":"build-module-tsx","duration":59197,"timestamp":1876015114823,"id":412,"parentId":402,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(public)/login/page.tsx","layer":"ssr"},"startTime":1780368983757,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":58898,"timestamp":1876015115189,"id":426,"parentId":425,"tags":{},"startTime":1780368983757,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":58929,"timestamp":1876015115160,"id":425,"parentId":410,"tags":{},"startTime":1780368983757,"traceId":"f5ac02f0451719cf"},{"name":"build-module-tsx","duration":62573,"timestamp":1876015114742,"id":410,"parentId":399,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/watchlists/page.tsx","layer":"ssr"},"startTime":1780368983757,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":64279,"timestamp":1876015115231,"id":428,"parentId":427,"tags":{},"startTime":1780368983757,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":64324,"timestamp":1876015115191,"id":427,"parentId":411,"tags":{},"startTime":1780368983757,"traceId":"f5ac02f0451719cf"},{"name":"build-module-tsx","duration":67534,"timestamp":1876015114783,"id":411,"parentId":400,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/recommendations/page.tsx","layer":"ssr"},"startTime":1780368983757,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":67065,"timestamp":1876015115289,"id":432,"parentId":431,"tags":{},"startTime":1780368983758,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":67095,"timestamp":1876015115261,"id":431,"parentId":413,"tags":{},"startTime":1780368983758,"traceId":"f5ac02f0451719cf"},{"name":"build-module-tsx","duration":68784,"timestamp":1876015114863,"id":413,"parentId":396,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/sectors/[name]/page.tsx","layer":"ssr"},"startTime":1780368983757,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":71887,"timestamp":1876015115322,"id":434,"parentId":433,"tags":{},"startTime":1780368983758,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":71924,"timestamp":1876015115290,"id":433,"parentId":414,"tags":{},"startTime":1780368983758,"traceId":"f5ac02f0451719cf"},{"name":"build-module-tsx","duration":75969,"timestamp":1876015114905,"id":414,"parentId":401,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/stock/[code]/page.tsx","layer":"ssr"},"startTime":1780368983757,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":19,"timestamp":1876015195059,"id":436,"parentId":435,"tags":{},"startTime":1780368983837,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":4387,"timestamp":1876015195140,"id":438,"parentId":437,"tags":{},"startTime":1780368983837,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":4445,"timestamp":1876015195086,"id":437,"parentId":435,"tags":{},"startTime":1780368983837,"traceId":"f5ac02f0451719cf"},{"name":"build-module-mjs","duration":7418,"timestamp":1876015194710,"id":435,"parentId":408,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next-themes/dist/index.mjs","layer":"ssr"},"startTime":1780368983837,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":7478,"timestamp":1876015204667,"id":441,"parentId":440,"tags":{},"startTime":1780368983847,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":7532,"timestamp":1876015204621,"id":440,"parentId":439,"tags":{},"startTime":1780368983847,"traceId":"f5ac02f0451719cf"},{"name":"build-module-tsx","duration":8161,"timestamp":1876015204510,"id":439,"parentId":409,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/hooks/use-auth.tsx","layer":"ssr"},"startTime":1780368983847,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":4161,"timestamp":1876015209383,"id":448,"parentId":447,"tags":{},"startTime":1780368983852,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":4194,"timestamp":1876015209352,"id":447,"parentId":443,"tags":{},"startTime":1780368983852,"traceId":"f5ac02f0451719cf"},{"name":"build-module-tsx","duration":5115,"timestamp":1876015209027,"id":443,"parentId":394,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/auth-guard.tsx","layer":"ssr"},"startTime":1780368983851,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":4813,"timestamp":1876015209350,"id":446,"parentId":445,"tags":{},"startTime":1780368983852,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":4857,"timestamp":1876015209307,"id":445,"parentId":442,"tags":{},"startTime":1780368983852,"traceId":"f5ac02f0451719cf"},{"name":"build-module-tsx","duration":5548,"timestamp":1876015208943,"id":442,"parentId":394,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/mobile-shell.tsx","layer":"ssr"},"startTime":1780368983851,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":5108,"timestamp":1876015209393,"id":450,"parentId":449,"tags":{},"startTime":1780368983852,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":5118,"timestamp":1876015209384,"id":449,"parentId":444,"tags":{},"startTime":1780368983852,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":7406,"timestamp":1876015209079,"id":444,"parentId":392,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/error-boundary.js","layer":"ssr"},"startTime":1780368983851,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":3634,"timestamp":1876015217612,"id":459,"parentId":458,"tags":{},"startTime":1780368983860,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":3649,"timestamp":1876015217601,"id":458,"parentId":452,"tags":{},"startTime":1780368983860,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":4304,"timestamp":1876015217348,"id":452,"parentId":392,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/client-page.js","layer":"ssr"},"startTime":1780368983860,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":4036,"timestamp":1876015217631,"id":463,"parentId":462,"tags":{},"startTime":1780368983860,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":4045,"timestamp":1876015217623,"id":462,"parentId":454,"tags":{},"startTime":1780368983860,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":4734,"timestamp":1876015217400,"id":454,"parentId":392,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/not-found-boundary.js","layer":"ssr"},"startTime":1780368983860,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":4504,"timestamp":1876015217639,"id":465,"parentId":464,"tags":{},"startTime":1780368983860,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":4512,"timestamp":1876015217632,"id":464,"parentId":455,"tags":{},"startTime":1780368983860,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":4902,"timestamp":1876015217420,"id":455,"parentId":392,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/render-from-template-context.js","layer":"ssr"},"startTime":1780368983860,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":6698,"timestamp":1876015217622,"id":461,"parentId":460,"tags":{},"startTime":1780368983860,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":6711,"timestamp":1876015217613,"id":460,"parentId":453,"tags":{},"startTime":1780368983860,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":9123,"timestamp":1876015217375,"id":453,"parentId":392,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/layout-router.js","layer":"ssr"},"startTime":1780368983860,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":88,"timestamp":1876015227374,"id":467,"parentId":466,"tags":{},"startTime":1780368983870,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":1043,"timestamp":1876015227469,"id":468,"parentId":466,"tags":{},"startTime":1780368983870,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":1535,"timestamp":1876015227200,"id":466,"parentId":444,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_interop_require_default.js","layer":"ssr"},"startTime":1780368983869,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":17445,"timestamp":1876015217599,"id":457,"parentId":456,"tags":{},"startTime":1780368983860,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":17485,"timestamp":1876015217563,"id":456,"parentId":451,"tags":{},"startTime":1780368983860,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":19943,"timestamp":1876015217276,"id":451,"parentId":392,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/app-router.js","layer":"ssr"},"startTime":1780368983860,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":7252,"timestamp":1876015245948,"id":479,"parentId":478,"tags":{},"startTime":1780368983888,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":7267,"timestamp":1876015245939,"id":478,"parentId":471,"tags":{},"startTime":1780368983888,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":7778,"timestamp":1876015245774,"id":471,"parentId":454,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/utils/warn-once.js","layer":"ssr"},"startTime":1780368983888,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":7612,"timestamp":1876015245957,"id":481,"parentId":480,"tags":{},"startTime":1780368983888,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":7621,"timestamp":1876015245949,"id":480,"parentId":472,"tags":{},"startTime":1780368983888,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":8044,"timestamp":1876015245795,"id":472,"parentId":444,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/is-next-router-error.js","layer":"ssr"},"startTime":1780368983888,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":7974,"timestamp":1876015245925,"id":475,"parentId":474,"tags":{},"startTime":1780368983888,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":8009,"timestamp":1876015245891,"id":474,"parentId":469,"tags":{},"startTime":1780368983888,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":8605,"timestamp":1876015245646,"id":469,"parentId":452,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/search-params.js","layer":"ssr"},"startTime":1780368983888,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":8322,"timestamp":1876015245938,"id":477,"parentId":476,"tags":{},"startTime":1780368983888,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":8333,"timestamp":1876015245928,"id":476,"parentId":470,"tags":{},"startTime":1780368983888,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":9221,"timestamp":1876015245741,"id":470,"parentId":454,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/not-found.js","layer":"ssr"},"startTime":1780368983888,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":9082,"timestamp":1876015245965,"id":483,"parentId":482,"tags":{},"startTime":1780368983888,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":9098,"timestamp":1876015245958,"id":482,"parentId":473,"tags":{},"startTime":1780368983888,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":10120,"timestamp":1876015245817,"id":473,"parentId":444,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/navigation.js","layer":"ssr"},"startTime":1780368983888,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":10155,"timestamp":1876015253065,"id":494,"parentId":493,"tags":{},"startTime":1780368983895,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":10175,"timestamp":1876015253052,"id":493,"parentId":486,"tags":{},"startTime":1780368983895,"traceId":"f5ac02f0451719cf"}] -[{"name":"generate-buildid","duration":4411,"timestamp":1876012277316,"id":4,"parentId":1,"tags":{},"startTime":1780368980920,"traceId":"f5ac02f0451719cf"},{"name":"load-custom-routes","duration":1656,"timestamp":1876012282025,"id":5,"parentId":1,"tags":{},"startTime":1780368980924,"traceId":"f5ac02f0451719cf"},{"name":"create-pages-mapping","duration":125,"timestamp":1876012526992,"id":6,"parentId":1,"tags":{},"startTime":1780368981169,"traceId":"f5ac02f0451719cf"},{"name":"collect-app-paths","duration":5807,"timestamp":1876012527165,"id":7,"parentId":1,"tags":{},"startTime":1780368981169,"traceId":"f5ac02f0451719cf"},{"name":"create-app-mapping","duration":1113,"timestamp":1876012533013,"id":8,"parentId":1,"tags":{},"startTime":1780368981175,"traceId":"f5ac02f0451719cf"},{"name":"public-dir-conflict-check","duration":856,"timestamp":1876012534486,"id":9,"parentId":1,"tags":{},"startTime":1780368981177,"traceId":"f5ac02f0451719cf"},{"name":"generate-routes-manifest","duration":3362,"timestamp":1876012535529,"id":10,"parentId":1,"tags":{},"startTime":1780368981178,"traceId":"f5ac02f0451719cf"},{"name":"create-dist-dir","duration":559,"timestamp":1876012544464,"id":11,"parentId":1,"tags":{},"startTime":1780368981187,"traceId":"f5ac02f0451719cf"},{"name":"write-routes-manifest","duration":895,"timestamp":1876012951513,"id":12,"parentId":1,"tags":{},"startTime":1780368981594,"traceId":"f5ac02f0451719cf"},{"name":"generate-required-server-files","duration":182,"timestamp":1876012952453,"id":13,"parentId":1,"tags":{},"startTime":1780368981595,"traceId":"f5ac02f0451719cf"},{"name":"create-entrypoints","duration":329342,"timestamp":1876013730928,"id":17,"parentId":15,"tags":{},"startTime":1780368982373,"traceId":"f5ac02f0451719cf"},{"name":"generate-webpack-config","duration":261640,"timestamp":1876014060542,"id":18,"parentId":16,"tags":{},"startTime":1780368982703,"traceId":"f5ac02f0451719cf"},{"name":"next-trace-entrypoint-plugin","duration":1004,"timestamp":1876014414904,"id":20,"parentId":19,"tags":{},"startTime":1780368983057,"traceId":"f5ac02f0451719cf"},{"name":"build-module","duration":19330,"timestamp":1876014486123,"id":49,"parentId":24,"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":1780368983128,"traceId":"f5ac02f0451719cf"},{"name":"build-module","duration":26746,"timestamp":1876014485211,"id":43,"parentId":31,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-app-loader.js?page=%2F(auth)%2Fapi%2Fchat%2Fstream%2Froute&name=app%2F(auth)%2Fapi%2Fchat%2Fstream%2Froute&pagePath=private-next-app-dir%2F(auth)%2Fapi%2Fchat%2Fstream%2Froute.ts&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&appPaths=%2F(auth)%2Fapi%2Fchat%2Fstream%2Froute&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&basePath=&assetPrefix=&nextConfigOutput=standalone&nextConfigExperimentalUseEarlyImport=false&preferredRegion=&middlewareConfig=e30%3D!","layer":"rsc"},"startTime":1780368983127,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":66010,"timestamp":1876014489819,"id":53,"parentId":52,"tags":{},"startTime":1780368983132,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":66599,"timestamp":1876014489290,"id":52,"parentId":50,"tags":{},"startTime":1780368983132,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":73024,"timestamp":1876014488160,"id":50,"parentId":23,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/pages/_app.js","layer":null},"startTime":1780368983130,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":13788,"timestamp":1876014547533,"id":58,"parentId":57,"tags":{},"startTime":1780368983190,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":13871,"timestamp":1876014547457,"id":57,"parentId":56,"tags":{},"startTime":1780368983190,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":17025,"timestamp":1876014547225,"id":56,"parentId":49,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/pages/_error.js","layer":null},"startTime":1780368983189,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":75668,"timestamp":1876014489931,"id":55,"parentId":54,"tags":{},"startTime":1780368983132,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":75755,"timestamp":1876014489848,"id":54,"parentId":51,"tags":{},"startTime":1780368983132,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":101384,"timestamp":1876014489161,"id":51,"parentId":25,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/pages/_document.js","layer":null},"startTime":1780368983131,"traceId":"f5ac02f0451719cf"},{"name":"build-module","duration":112493,"timestamp":1876014478330,"id":37,"parentId":22,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-app-loader.js?page=%2F_not-found%2Fpage&name=app%2F_not-found%2Fpage&pagePath=next%2Fdist%2Fclient%2Fcomponents%2Fnot-found-error&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&appPaths=next%2Fdist%2Fclient%2Fcomponents%2Fnot-found-error&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&basePath=&assetPrefix=&nextConfigOutput=standalone&nextConfigExperimentalUseEarlyImport=false&preferredRegion=&middlewareConfig=e30%3D!","layer":"rsc"},"startTime":1780368983121,"traceId":"f5ac02f0451719cf"},{"name":"build-module","duration":128,"timestamp":1876014596020,"id":59,"parentId":50,"tags":{"name":"react/jsx-runtime","layer":null},"startTime":1780368983238,"traceId":"f5ac02f0451719cf"},{"name":"build-module","duration":9,"timestamp":1876014596165,"id":60,"parentId":50,"tags":{"name":"react","layer":null},"startTime":1780368983238,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":4629,"timestamp":1876014598066,"id":62,"parentId":61,"tags":{},"startTime":1780368983240,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":5388,"timestamp":1876014597942,"id":61,"parentId":49,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/templates/helpers.js","layer":null},"startTime":1780368983240,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":10131,"timestamp":1876014598754,"id":64,"parentId":63,"tags":{},"startTime":1780368983241,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":11499,"timestamp":1876014598730,"id":63,"parentId":49,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/route-kind.js","layer":null},"startTime":1780368983241,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":12279,"timestamp":1876014598776,"id":66,"parentId":65,"tags":{},"startTime":1780368983241,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":13475,"timestamp":1876014598763,"id":65,"parentId":49,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/route-modules/pages/module.compiled.js","layer":null},"startTime":1780368983241,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":4518,"timestamp":1876014608204,"id":88,"parentId":87,"tags":{},"startTime":1780368983250,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":4549,"timestamp":1876014608175,"id":87,"parentId":80,"tags":{},"startTime":1780368983250,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":5157,"timestamp":1876014607873,"id":80,"parentId":51,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/encode-uri-path.js","layer":null},"startTime":1780368983250,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":4961,"timestamp":1876014608174,"id":86,"parentId":85,"tags":{},"startTime":1780368983250,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":4994,"timestamp":1876014608143,"id":85,"parentId":79,"tags":{},"startTime":1780368983250,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":8142,"timestamp":1876014607842,"id":79,"parentId":56,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/head.js","layer":null},"startTime":1780368983250,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":15489,"timestamp":1876014601231,"id":72,"parentId":71,"tags":{},"startTime":1780368983243,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":16684,"timestamp":1876014601220,"id":71,"parentId":51,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/utils.js","layer":null},"startTime":1780368983243,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":10974,"timestamp":1876014608139,"id":84,"parentId":83,"tags":{},"startTime":1780368983250,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":11031,"timestamp":1876014608088,"id":83,"parentId":78,"tags":{},"startTime":1780368983250,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":13695,"timestamp":1876014607772,"id":78,"parentId":51,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/constants.js","layer":null},"startTime":1780368983250,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":20284,"timestamp":1876014601209,"id":70,"parentId":69,"tags":{},"startTime":1780368983243,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":21120,"timestamp":1876014601194,"id":69,"parentId":51,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/htmlescape.js","layer":null},"startTime":1780368983243,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":21150,"timestamp":1876014601178,"id":68,"parentId":67,"tags":{},"startTime":1780368983243,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":21469,"timestamp":1876014601138,"id":67,"parentId":51,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/get-page-files.js","layer":null},"startTime":1780368983243,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":14611,"timestamp":1876014608079,"id":82,"parentId":81,"tags":{},"startTime":1780368983250,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":14763,"timestamp":1876014607930,"id":81,"parentId":77,"tags":{},"startTime":1780368983250,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":16915,"timestamp":1876014607495,"id":77,"parentId":50,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/utils.js","layer":null},"startTime":1780368983250,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":48,"timestamp":1876014627486,"id":89,"parentId":65,"tags":{"name":"next/dist/compiled/next-server/pages.runtime.prod.js","layer":null},"startTime":1780368983270,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":70,"timestamp":1876014628408,"id":94,"parentId":91,"tags":{},"startTime":1780368983271,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":265,"timestamp":1876014628562,"id":96,"parentId":91,"tags":{},"startTime":1780368983271,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":1287,"timestamp":1876014628131,"id":91,"parentId":43,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/route-kind.js","layer":"rsc"},"startTime":1780368983270,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":27201,"timestamp":1876014602335,"id":74,"parentId":73,"tags":{},"startTime":1780368983245,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":27900,"timestamp":1876014602310,"id":73,"parentId":51,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/pretty-bytes.js","layer":null},"startTime":1780368983245,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":27965,"timestamp":1876014602361,"id":76,"parentId":75,"tags":{},"startTime":1780368983245,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":28399,"timestamp":1876014602345,"id":75,"parentId":51,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/is-error.js","layer":null},"startTime":1780368983245,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":24062,"timestamp":1876014628384,"id":93,"parentId":90,"tags":{},"startTime":1780368983271,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":150,"timestamp":1876014652462,"id":109,"parentId":90,"tags":{},"startTime":1780368983295,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":42741,"timestamp":1876014627556,"id":90,"parentId":43,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/lib/patch-fetch.js","layer":"rsc"},"startTime":1780368983270,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":41911,"timestamp":1876014628418,"id":95,"parentId":92,"tags":{},"startTime":1780368983271,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":83,"timestamp":1876014670342,"id":110,"parentId":92,"tags":{},"startTime":1780368983313,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":42660,"timestamp":1876014628281,"id":92,"parentId":43,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/route-modules/app-route/module.compiled.js","layer":"rsc"},"startTime":1780368983271,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":34704,"timestamp":1876014649811,"id":108,"parentId":107,"tags":{},"startTime":1780368983292,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":34741,"timestamp":1876014649780,"id":107,"parentId":100,"tags":{},"startTime":1780368983292,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":35725,"timestamp":1876014649284,"id":100,"parentId":79,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/amp-mode.js","layer":null},"startTime":1780368983292,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":42274,"timestamp":1876014649776,"id":106,"parentId":105,"tags":{},"startTime":1780368983292,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":42340,"timestamp":1876014649716,"id":105,"parentId":99,"tags":{},"startTime":1780368983292,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":43988,"timestamp":1876014649252,"id":99,"parentId":79,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/side-effect.js","layer":null},"startTime":1780368983292,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":43551,"timestamp":1876014649711,"id":104,"parentId":103,"tags":{},"startTime":1780368983292,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":43739,"timestamp":1876014649524,"id":103,"parentId":98,"tags":{},"startTime":1780368983292,"traceId":"f5ac02f0451719cf"},{"name":"build-module-ts","duration":44424,"timestamp":1876014649160,"id":98,"parentId":43,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/api/chat/stream/route.ts","layer":"rsc"},"startTime":1780368983291,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":44245,"timestamp":1876014649446,"id":102,"parentId":101,"tags":{},"startTime":1780368983292,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":44359,"timestamp":1876014649335,"id":101,"parentId":97,"tags":{},"startTime":1780368983292,"traceId":"f5ac02f0451719cf"},{"name":"build-module-tsx","duration":45689,"timestamp":1876014648712,"id":97,"parentId":37,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/layout.tsx","layer":"rsc"},"startTime":1780368983291,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":11673,"timestamp":1876014683096,"id":113,"parentId":112,"tags":{},"startTime":1780368983325,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":11711,"timestamp":1876014683059,"id":112,"parentId":111,"tags":{},"startTime":1780368983325,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":12264,"timestamp":1876014682783,"id":111,"parentId":78,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/modern-browserslist-target.js","layer":null},"startTime":1780368983325,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":51,"timestamp":1876014751290,"id":121,"parentId":92,"tags":{"name":"next/dist/compiled/next-server/app-route.runtime.prod.js","layer":null},"startTime":1780368983394,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":43836,"timestamp":1876014708414,"id":120,"parentId":119,"tags":{},"startTime":1780368983351,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":43875,"timestamp":1876014708378,"id":119,"parentId":116,"tags":{},"startTime":1780368983351,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":44664,"timestamp":1876014708097,"id":116,"parentId":79,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/utils/warn-once.js","layer":null},"startTime":1780368983350,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":14315,"timestamp":1876014751631,"id":126,"parentId":125,"tags":{},"startTime":1780368983394,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":14401,"timestamp":1876014751552,"id":125,"parentId":122,"tags":{},"startTime":1780368983394,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":15375,"timestamp":1876014751370,"id":122,"parentId":75,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/is-plain-object.js","layer":null},"startTime":1780368983394,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":15099,"timestamp":1876014751663,"id":128,"parentId":127,"tags":{},"startTime":1780368983394,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":15121,"timestamp":1876014751642,"id":127,"parentId":123,"tags":{},"startTime":1780368983394,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":15577,"timestamp":1876014751465,"id":123,"parentId":67,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/page-path/denormalize-page-path.js","layer":null},"startTime":1780368983394,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":15469,"timestamp":1876014751677,"id":130,"parentId":129,"tags":{},"startTime":1780368983394,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":15483,"timestamp":1876014751665,"id":129,"parentId":124,"tags":{},"startTime":1780368983394,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":16463,"timestamp":1876014751494,"id":124,"parentId":67,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/page-path/normalize-page-path.js","layer":null},"startTime":1780368983394,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":5388,"timestamp":1876014764765,"id":135,"parentId":134,"tags":{},"startTime":1780368983407,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":5439,"timestamp":1876014764719,"id":134,"parentId":131,"tags":{},"startTime":1780368983407,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":6216,"timestamp":1876014764501,"id":131,"parentId":37,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/parallel-route-default.js","layer":"rsc"},"startTime":1780368983407,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":5948,"timestamp":1876014764781,"id":137,"parentId":136,"tags":{},"startTime":1780368983407,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":5962,"timestamp":1876014764768,"id":136,"parentId":132,"tags":{},"startTime":1780368983407,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":6523,"timestamp":1876014764610,"id":132,"parentId":37,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/not-found-error.js","layer":"rsc"},"startTime":1780368983407,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":7742,"timestamp":1876014764791,"id":139,"parentId":138,"tags":{},"startTime":1780368983407,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":7753,"timestamp":1876014764782,"id":138,"parentId":133,"tags":{},"startTime":1780368983407,"traceId":"f5ac02f0451719cf"}] -[{"name":"add-entry","duration":472228,"timestamp":1876014417349,"id":23,"parentId":21,"tags":{"request":"next/dist/pages/_app"},"startTime":1780368983060,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":7635,"timestamp":1876014884501,"id":236,"parentId":235,"tags":{},"startTime":1780368983527,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":88,"timestamp":1876014892148,"id":245,"parentId":235,"tags":{},"startTime":1780368983534,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":8271,"timestamp":1876014884338,"id":235,"parentId":187,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/web/spec-extension/adapters/reflect.js","layer":"rsc"},"startTime":1780368983527,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":7833,"timestamp":1876014885991,"id":240,"parentId":238,"tags":{},"startTime":1780368983528,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":7954,"timestamp":1876014885979,"id":239,"parentId":237,"tags":{},"startTime":1780368983528,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":27,"timestamp":1876014893937,"id":252,"parentId":237,"tags":{},"startTime":1780368983536,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":8312,"timestamp":1876014885748,"id":237,"parentId":132,"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":1780368983528,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":10115,"timestamp":1876014886393,"id":242,"parentId":241,"tags":{},"startTime":1780368983529,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":84,"timestamp":1876014896518,"id":259,"parentId":241,"tags":{},"startTime":1780368983539,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":10485,"timestamp":1876014886330,"id":241,"parentId":114,"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":1780368983529,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":3370,"timestamp":1876014893881,"id":251,"parentId":250,"tags":{},"startTime":1780368983536,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":3424,"timestamp":1876014893829,"id":250,"parentId":238,"tags":{},"startTime":1780368983536,"traceId":"f5ac02f0451719cf"},{"name":"build-module-mjs","duration":11964,"timestamp":1876014885923,"id":238,"parentId":97,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next-themes/dist/index.mjs","layer":"rsc"},"startTime":1780368983528,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":3390,"timestamp":1876014894525,"id":256,"parentId":255,"tags":{},"startTime":1780368983537,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":3411,"timestamp":1876014894506,"id":255,"parentId":253,"tags":{},"startTime":1780368983537,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":3722,"timestamp":1876014894450,"id":253,"parentId":231,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/is-dynamic.js","layer":null},"startTime":1780368983537,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":3644,"timestamp":1876014894538,"id":258,"parentId":257,"tags":{},"startTime":1780368983537,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":3655,"timestamp":1876014894527,"id":257,"parentId":254,"tags":{},"startTime":1780368983537,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":4509,"timestamp":1876014894479,"id":254,"parentId":231,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/sorted-routes.js","layer":null},"startTime":1780368983537,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":7345,"timestamp":1876014893775,"id":249,"parentId":247,"tags":{},"startTime":1780368983536,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":48,"timestamp":1876014901129,"id":260,"parentId":247,"tags":{},"startTime":1780368983543,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":14873,"timestamp":1876014893710,"id":247,"parentId":152,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@opentelemetry/api/index.js","layer":"rsc"},"startTime":1780368983536,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":15084,"timestamp":1876014893765,"id":248,"parentId":246,"tags":{},"startTime":1780368983536,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":43,"timestamp":1876014908857,"id":261,"parentId":246,"tags":{},"startTime":1780368983551,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":15546,"timestamp":1876014893620,"id":246,"parentId":132,"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":1780368983536,"traceId":"f5ac02f0451719cf"},{"name":"add-entry","duration":495216,"timestamp":1876014417563,"id":31,"parentId":21,"tags":{"request":"next-app-loader?page=%2F(auth)%2Fapi%2Fchat%2Fstream%2Froute&name=app%2F(auth)%2Fapi%2Fchat%2Fstream%2Froute&pagePath=private-next-app-dir%2F(auth)%2Fapi%2Fchat%2Fstream%2Froute.ts&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&appPaths=%2F(auth)%2Fapi%2Fchat%2Fstream%2Froute&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&basePath=&assetPrefix=&nextConfigOutput=standalone&nextConfigExperimentalUseEarlyImport=false&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1780368983060,"traceId":"f5ac02f0451719cf"},{"name":"build-module","duration":427026,"timestamp":1876014486076,"id":48,"parentId":36,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-app-loader.js?page=%2F(public)%2Fpage&name=app%2F(public)%2Fpage&pagePath=private-next-app-dir%2F(public)%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&appPaths=%2F(public)%2Fpage&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&basePath=&assetPrefix=&nextConfigOutput=standalone&nextConfigExperimentalUseEarlyImport=false&preferredRegion=&middlewareConfig=e30%3D!","layer":"rsc"},"startTime":1780368983128,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":2207,"timestamp":1876014915770,"id":263,"parentId":262,"tags":{},"startTime":1780368983558,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":3003,"timestamp":1876014915732,"id":262,"parentId":253,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/helpers/interception-routes.js","layer":null},"startTime":1780368983558,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":2226,"timestamp":1876014919060,"id":265,"parentId":264,"tags":{},"startTime":1780368983561,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":37,"timestamp":1876014921299,"id":269,"parentId":264,"tags":{},"startTime":1780368983564,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":2611,"timestamp":1876014918926,"id":264,"parentId":204,"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":1780368983561,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":2187,"timestamp":1876014921065,"id":268,"parentId":267,"tags":{},"startTime":1780368983563,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":2249,"timestamp":1876014921005,"id":267,"parentId":266,"tags":{},"startTime":1780368983563,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":2733,"timestamp":1876014920923,"id":266,"parentId":262,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/app-paths.js","layer":null},"startTime":1780368983563,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":1622,"timestamp":1876014924729,"id":273,"parentId":272,"tags":{},"startTime":1780368983567,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":1669,"timestamp":1876014924686,"id":272,"parentId":270,"tags":{},"startTime":1780368983567,"traceId":"f5ac02f0451719cf"},{"name":"build-module-tsx","duration":2123,"timestamp":1876014924528,"id":270,"parentId":48,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(public)/page.tsx","layer":"rsc"},"startTime":1780368983567,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":2570,"timestamp":1876014924760,"id":275,"parentId":274,"tags":{},"startTime":1780368983567,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":2600,"timestamp":1876014924731,"id":274,"parentId":271,"tags":{},"startTime":1780368983567,"traceId":"f5ac02f0451719cf"},{"name":"build-module-tsx","duration":2876,"timestamp":1876014924630,"id":271,"parentId":48,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(public)/layout.tsx","layer":"rsc"},"startTime":1780368983567,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":1592,"timestamp":1876014926287,"id":278,"parentId":277,"tags":{},"startTime":1780368983569,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":1618,"timestamp":1876014926263,"id":277,"parentId":276,"tags":{},"startTime":1780368983569,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":1899,"timestamp":1876014926196,"id":276,"parentId":266,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/segment.js","layer":null},"startTime":1780368983568,"traceId":"f5ac02f0451719cf"},{"name":"add-entry","duration":511403,"timestamp":1876014417595,"id":36,"parentId":21,"tags":{"request":"next-app-loader?page=%2F(public)%2Fpage&name=app%2F(public)%2Fpage&pagePath=private-next-app-dir%2F(public)%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&appPaths=%2F(public)%2Fpage&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&basePath=&assetPrefix=&nextConfigOutput=standalone&nextConfigExperimentalUseEarlyImport=false&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1780368983060,"traceId":"f5ac02f0451719cf"},{"name":"add-entry","duration":511843,"timestamp":1876014417379,"id":25,"parentId":21,"tags":{"request":"next/dist/pages/_document"},"startTime":1780368983060,"traceId":"f5ac02f0451719cf"},{"name":"add-entry","duration":511857,"timestamp":1876014417369,"id":24,"parentId":21,"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":1780368983060,"traceId":"f5ac02f0451719cf"},{"name":"build-module","duration":451005,"timestamp":1876014484839,"id":39,"parentId":27,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-app-loader.js?page=%2F(auth)%2Fsentiment%2Fpage&name=app%2F(auth)%2Fsentiment%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fsentiment%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&appPaths=%2F(auth)%2Fsentiment%2Fpage&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&basePath=&assetPrefix=&nextConfigOutput=standalone&nextConfigExperimentalUseEarlyImport=false&preferredRegion=&middlewareConfig=e30%3D!","layer":"rsc"},"startTime":1780368983127,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":1895,"timestamp":1876014941946,"id":281,"parentId":280,"tags":{},"startTime":1780368983584,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":1952,"timestamp":1876014941895,"id":280,"parentId":279,"tags":{},"startTime":1780368983584,"traceId":"f5ac02f0451719cf"},{"name":"build-module-tsx","duration":2594,"timestamp":1876014941770,"id":279,"parentId":39,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/layout.tsx","layer":"rsc"},"startTime":1780368983584,"traceId":"f5ac02f0451719cf"},{"name":"build-module","duration":460892,"timestamp":1876014485328,"id":44,"parentId":32,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-app-loader.js?page=%2F(auth)%2Fwatchlists%2Fpage&name=app%2F(auth)%2Fwatchlists%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fwatchlists%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&appPaths=%2F(auth)%2Fwatchlists%2Fpage&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&basePath=&assetPrefix=&nextConfigOutput=standalone&nextConfigExperimentalUseEarlyImport=false&preferredRegion=&middlewareConfig=e30%3D!","layer":"rsc"},"startTime":1780368983128,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":3600,"timestamp":1876014944703,"id":284,"parentId":283,"tags":{},"startTime":1780368983587,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":3646,"timestamp":1876014944662,"id":283,"parentId":282,"tags":{},"startTime":1780368983587,"traceId":"f5ac02f0451719cf"},{"name":"build-module-tsx","duration":3989,"timestamp":1876014944555,"id":282,"parentId":39,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/sentiment/page.tsx","layer":"rsc"},"startTime":1780368983587,"traceId":"f5ac02f0451719cf"},{"name":"build-module","duration":470063,"timestamp":1876014485138,"id":42,"parentId":30,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-app-loader.js?page=%2F(auth)%2Fdashboard%2Fpage&name=app%2F(auth)%2Fdashboard%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fdashboard%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&appPaths=%2F(auth)%2Fdashboard%2Fpage&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&basePath=&assetPrefix=&nextConfigOutput=standalone&nextConfigExperimentalUseEarlyImport=false&preferredRegion=&middlewareConfig=e30%3D!","layer":"rsc"},"startTime":1780368983127,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":3182,"timestamp":1876014954280,"id":287,"parentId":286,"tags":{},"startTime":1780368983597,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":3240,"timestamp":1876014954228,"id":286,"parentId":285,"tags":{},"startTime":1780368983596,"traceId":"f5ac02f0451719cf"},{"name":"build-module-tsx","duration":3670,"timestamp":1876014954098,"id":285,"parentId":44,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/watchlists/page.tsx","layer":"rsc"},"startTime":1780368983596,"traceId":"f5ac02f0451719cf"},{"name":"add-entry","duration":541129,"timestamp":1876014417586,"id":32,"parentId":21,"tags":{"request":"next-app-loader?page=%2F(auth)%2Fwatchlists%2Fpage&name=app%2F(auth)%2Fwatchlists%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fwatchlists%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&appPaths=%2F(auth)%2Fwatchlists%2Fpage&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&basePath=&assetPrefix=&nextConfigOutput=standalone&nextConfigExperimentalUseEarlyImport=false&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1780368983060,"traceId":"f5ac02f0451719cf"},{"name":"build-module","duration":479754,"timestamp":1876014485412,"id":45,"parentId":33,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-app-loader.js?page=%2F(auth)%2Frecommendations%2Fpage&name=app%2F(auth)%2Frecommendations%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Frecommendations%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&appPaths=%2F(auth)%2Frecommendations%2Fpage&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&basePath=&assetPrefix=&nextConfigOutput=standalone&nextConfigExperimentalUseEarlyImport=false&preferredRegion=&middlewareConfig=e30%3D!","layer":"rsc"},"startTime":1780368983128,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":2390,"timestamp":1876014965008,"id":290,"parentId":289,"tags":{},"startTime":1780368983607,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":2462,"timestamp":1876014964939,"id":289,"parentId":288,"tags":{},"startTime":1780368983607,"traceId":"f5ac02f0451719cf"},{"name":"build-module-tsx","duration":2932,"timestamp":1876014964739,"id":288,"parentId":42,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/dashboard/page.tsx","layer":"rsc"},"startTime":1780368983607,"traceId":"f5ac02f0451719cf"},{"name":"add-entry","duration":550880,"timestamp":1876014417410,"id":30,"parentId":21,"tags":{"request":"next-app-loader?page=%2F(auth)%2Fdashboard%2Fpage&name=app%2F(auth)%2Fdashboard%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fdashboard%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&appPaths=%2F(auth)%2Fdashboard%2Fpage&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&basePath=&assetPrefix=&nextConfigOutput=standalone&nextConfigExperimentalUseEarlyImport=false&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1780368983060,"traceId":"f5ac02f0451719cf"},{"name":"build-module","duration":486238,"timestamp":1876014486010,"id":47,"parentId":35,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-app-loader.js?page=%2F(public)%2Flogin%2Fpage&name=app%2F(public)%2Flogin%2Fpage&pagePath=private-next-app-dir%2F(public)%2Flogin%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&appPaths=%2F(public)%2Flogin%2Fpage&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&basePath=&assetPrefix=&nextConfigOutput=standalone&nextConfigExperimentalUseEarlyImport=false&preferredRegion=&middlewareConfig=e30%3D!","layer":"rsc"},"startTime":1780368983128,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":3371,"timestamp":1876014970963,"id":293,"parentId":292,"tags":{},"startTime":1780368983613,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":3423,"timestamp":1876014970915,"id":292,"parentId":291,"tags":{},"startTime":1780368983613,"traceId":"f5ac02f0451719cf"},{"name":"build-module-tsx","duration":3892,"timestamp":1876014970779,"id":291,"parentId":45,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/recommendations/page.tsx","layer":"rsc"},"startTime":1780368983613,"traceId":"f5ac02f0451719cf"},{"name":"add-entry","duration":557680,"timestamp":1876014417591,"id":33,"parentId":21,"tags":{"request":"next-app-loader?page=%2F(auth)%2Frecommendations%2Fpage&name=app%2F(auth)%2Frecommendations%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Frecommendations%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&appPaths=%2F(auth)%2Frecommendations%2Fpage&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&basePath=&assetPrefix=&nextConfigOutput=standalone&nextConfigExperimentalUseEarlyImport=false&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1780368983060,"traceId":"f5ac02f0451719cf"},{"name":"build-module","duration":495412,"timestamp":1876014485013,"id":41,"parentId":29,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-app-loader.js?page=%2F(auth)%2Fchat%2Fpage&name=app%2F(auth)%2Fchat%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fchat%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&appPaths=%2F(auth)%2Fchat%2Fpage&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&basePath=&assetPrefix=&nextConfigOutput=standalone&nextConfigExperimentalUseEarlyImport=false&preferredRegion=&middlewareConfig=e30%3D!","layer":"rsc"},"startTime":1780368983127,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":2202,"timestamp":1876014979887,"id":296,"parentId":295,"tags":{},"startTime":1780368983622,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":2252,"timestamp":1876014979839,"id":295,"parentId":294,"tags":{},"startTime":1780368983622,"traceId":"f5ac02f0451719cf"},{"name":"build-module-tsx","duration":2571,"timestamp":1876014979711,"id":294,"parentId":47,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(public)/login/page.tsx","layer":"rsc"},"startTime":1780368983622,"traceId":"f5ac02f0451719cf"},{"name":"add-entry","duration":565298,"timestamp":1876014417594,"id":35,"parentId":21,"tags":{"request":"next-app-loader?page=%2F(public)%2Flogin%2Fpage&name=app%2F(public)%2Flogin%2Fpage&pagePath=private-next-app-dir%2F(public)%2Flogin%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&appPaths=%2F(public)%2Flogin%2Fpage&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&basePath=&assetPrefix=&nextConfigOutput=standalone&nextConfigExperimentalUseEarlyImport=false&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1780368983060,"traceId":"f5ac02f0451719cf"},{"name":"build-module-css","duration":124500,"timestamp":1876014864417,"id":215,"parentId":97,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/globals.css","layer":"rsc"},"startTime":1780368983507,"traceId":"f5ac02f0451719cf"},{"name":"build-module","duration":504331,"timestamp":1876014484682,"id":38,"parentId":26,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-app-loader.js?page=%2F(auth)%2Fsectors%2Fpage&name=app%2F(auth)%2Fsectors%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fsectors%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&appPaths=%2F(auth)%2Fsectors%2Fpage&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&basePath=&assetPrefix=&nextConfigOutput=standalone&nextConfigExperimentalUseEarlyImport=false&preferredRegion=&middlewareConfig=e30%3D!","layer":"rsc"},"startTime":1780368983127,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":3536,"timestamp":1876014988082,"id":299,"parentId":298,"tags":{},"startTime":1780368983630,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":3586,"timestamp":1876014988035,"id":298,"parentId":297,"tags":{},"startTime":1780368983630,"traceId":"f5ac02f0451719cf"},{"name":"build-module-tsx","duration":4226,"timestamp":1876014987921,"id":297,"parentId":41,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/chat/page.tsx","layer":"rsc"},"startTime":1780368983630,"traceId":"f5ac02f0451719cf"},{"name":"add-entry","duration":575367,"timestamp":1876014417404,"id":29,"parentId":21,"tags":{"request":"next-app-loader?page=%2F(auth)%2Fchat%2Fpage&name=app%2F(auth)%2Fchat%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fchat%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&appPaths=%2F(auth)%2Fchat%2Fpage&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&basePath=&assetPrefix=&nextConfigOutput=standalone&nextConfigExperimentalUseEarlyImport=false&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1780368983060,"traceId":"f5ac02f0451719cf"},{"name":"build-module","duration":512046,"timestamp":1876014484924,"id":40,"parentId":28,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-app-loader.js?page=%2F(auth)%2Fsectors%2F%5Bname%5D%2Fpage&name=app%2F(auth)%2Fsectors%2F%5Bname%5D%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fsectors%2F%5Bname%5D%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&appPaths=%2F(auth)%2Fsectors%2F%5Bname%5D%2Fpage&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&basePath=&assetPrefix=&nextConfigOutput=standalone&nextConfigExperimentalUseEarlyImport=false&preferredRegion=&middlewareConfig=e30%3D!","layer":"rsc"},"startTime":1780368983127,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":2092,"timestamp":1876014996785,"id":302,"parentId":301,"tags":{},"startTime":1780368983639,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":2144,"timestamp":1876014996741,"id":301,"parentId":300,"tags":{},"startTime":1780368983639,"traceId":"f5ac02f0451719cf"},{"name":"build-module-tsx","duration":2607,"timestamp":1876014996654,"id":300,"parentId":38,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/sectors/page.tsx","layer":"rsc"},"startTime":1780368983639,"traceId":"f5ac02f0451719cf"},{"name":"add-entry","duration":582610,"timestamp":1876014417387,"id":26,"parentId":21,"tags":{"request":"next-app-loader?page=%2F(auth)%2Fsectors%2Fpage&name=app%2F(auth)%2Fsectors%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fsectors%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&appPaths=%2F(auth)%2Fsectors%2Fpage&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&basePath=&assetPrefix=&nextConfigOutput=standalone&nextConfigExperimentalUseEarlyImport=false&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1780368983060,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":2539,"timestamp":1876015003887,"id":305,"parentId":304,"tags":{},"startTime":1780368983646,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":2604,"timestamp":1876015003828,"id":304,"parentId":303,"tags":{},"startTime":1780368983646,"traceId":"f5ac02f0451719cf"},{"name":"build-module-tsx","duration":3122,"timestamp":1876015003595,"id":303,"parentId":40,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/sectors/[name]/page.tsx","layer":"rsc"},"startTime":1780368983646,"traceId":"f5ac02f0451719cf"},{"name":"add-entry","duration":589982,"timestamp":1876014417399,"id":28,"parentId":21,"tags":{"request":"next-app-loader?page=%2F(auth)%2Fsectors%2F%5Bname%5D%2Fpage&name=app%2F(auth)%2Fsectors%2F%5Bname%5D%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fsectors%2F%5Bname%5D%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&appPaths=%2F(auth)%2Fsectors%2F%5Bname%5D%2Fpage&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&basePath=&assetPrefix=&nextConfigOutput=standalone&nextConfigExperimentalUseEarlyImport=false&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1780368983060,"traceId":"f5ac02f0451719cf"},{"name":"build-module","duration":524136,"timestamp":1876014485899,"id":46,"parentId":34,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-app-loader.js?page=%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage&name=app%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&appPaths=%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&basePath=&assetPrefix=&nextConfigOutput=standalone&nextConfigExperimentalUseEarlyImport=false&preferredRegion=&middlewareConfig=e30%3D!","layer":"rsc"},"startTime":1780368983128,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":1150,"timestamp":1876015017231,"id":311,"parentId":310,"tags":{},"startTime":1780368983659,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":1200,"timestamp":1876015017197,"id":310,"parentId":309,"tags":{},"startTime":1780368983659,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":1279,"timestamp":1876015017948,"id":315,"parentId":314,"tags":{},"startTime":1780368983660,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":1328,"timestamp":1876015017905,"id":314,"parentId":312,"tags":{},"startTime":1780368983660,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":1550,"timestamp":1876015017978,"id":317,"parentId":316,"tags":{},"startTime":1780368983660,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":1582,"timestamp":1876015017950,"id":316,"parentId":313,"tags":{},"startTime":1780368983660,"traceId":"f5ac02f0451719cf"},{"name":"build-module-tsx","duration":2703,"timestamp":1876015017130,"id":309,"parentId":97,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/hooks/use-auth.tsx","layer":"rsc"},"startTime":1780368983659,"traceId":"f5ac02f0451719cf"},{"name":"add-entry","duration":603307,"timestamp":1876014417133,"id":22,"parentId":21,"tags":{"request":"next-app-loader?page=%2F_not-found%2Fpage&name=app%2F_not-found%2Fpage&pagePath=next%2Fdist%2Fclient%2Fcomponents%2Fnot-found-error&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&appPaths=next%2Fdist%2Fclient%2Fcomponents%2Fnot-found-error&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&basePath=&assetPrefix=&nextConfigOutput=standalone&nextConfigExperimentalUseEarlyImport=false&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1780368983059,"traceId":"f5ac02f0451719cf"},{"name":"build-module-tsx","duration":3118,"timestamp":1876015017793,"id":312,"parentId":279,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/auth-guard.tsx","layer":"rsc"},"startTime":1780368983660,"traceId":"f5ac02f0451719cf"}] -[{"name":"build-module-js","duration":3418,"timestamp":1876015468598,"id":778,"parentId":758,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/request-idle-callback.js","layer":"ssr"},"startTime":1780368984111,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":1791,"timestamp":1876015472715,"id":795,"parentId":794,"tags":{},"startTime":1780368984115,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":1814,"timestamp":1876015472697,"id":794,"parentId":791,"tags":{},"startTime":1780368984115,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":2785,"timestamp":1876015472532,"id":791,"parentId":775,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/is-dynamic.js","layer":"ssr"},"startTime":1780368984115,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":4663,"timestamp":1876015472694,"id":793,"parentId":792,"tags":{},"startTime":1780368984115,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":4722,"timestamp":1876015472638,"id":792,"parentId":790,"tags":{},"startTime":1780368984115,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":5592,"timestamp":1876015472429,"id":790,"parentId":775,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/sorted-routes.js","layer":"ssr"},"startTime":1780368984115,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":4522,"timestamp":1876015473646,"id":798,"parentId":797,"tags":{},"startTime":1780368984116,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":4611,"timestamp":1876015473558,"id":797,"parentId":796,"tags":{},"startTime":1780368984116,"traceId":"f5ac02f0451719cf"},{"name":"build-module-tsx","duration":5688,"timestamp":1876015473478,"id":796,"parentId":657,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/change-password-dialog.tsx","layer":"ssr"},"startTime":1780368984116,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":2037,"timestamp":1876015478993,"id":804,"parentId":803,"tags":{},"startTime":1780368984121,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":2064,"timestamp":1876015478966,"id":803,"parentId":800,"tags":{},"startTime":1780368984121,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":2518,"timestamp":1876015478901,"id":800,"parentId":780,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/route-matcher.js","layer":"ssr"},"startTime":1780368984121,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":2424,"timestamp":1876015479004,"id":806,"parentId":805,"tags":{},"startTime":1780368984121,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":2434,"timestamp":1876015478995,"id":805,"parentId":801,"tags":{},"startTime":1780368984121,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":3179,"timestamp":1876015478931,"id":801,"parentId":780,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/route-regex.js","layer":"ssr"},"startTime":1780368984121,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":6204,"timestamp":1876015478957,"id":802,"parentId":799,"tags":{},"startTime":1780368984121,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":35,"timestamp":1876015485170,"id":807,"parentId":799,"tags":{},"startTime":1780368984127,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":6497,"timestamp":1876015478816,"id":799,"parentId":724,"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":1780368984121,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":36,"timestamp":1876015485618,"id":809,"parentId":808,"tags":{},"startTime":1780368984128,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":224,"timestamp":1876015485658,"id":810,"parentId":808,"tags":{},"startTime":1780368984128,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":914,"timestamp":1876015485484,"id":808,"parentId":801,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/constants.js","layer":"ssr"},"startTime":1780368984128,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":1213,"timestamp":1876015487420,"id":813,"parentId":812,"tags":{},"startTime":1780368984130,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":1247,"timestamp":1876015487388,"id":812,"parentId":811,"tags":{},"startTime":1780368984130,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":1636,"timestamp":1876015487311,"id":811,"parentId":801,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/escape-regexp.js","layer":"ssr"},"startTime":1780368984130,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":1319,"timestamp":1876015487714,"id":817,"parentId":815,"tags":{},"startTime":1780368984130,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":39,"timestamp":1876015489048,"id":818,"parentId":815,"tags":{},"startTime":1780368984131,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":1808,"timestamp":1876015487637,"id":815,"parentId":716,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_class_private_field_loose_base.js","layer":"ssr"},"startTime":1780368984130,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":1758,"timestamp":1876015487696,"id":816,"parentId":814,"tags":{},"startTime":1780368984130,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":30,"timestamp":1876015489458,"id":819,"parentId":814,"tags":{},"startTime":1780368984132,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":2056,"timestamp":1876015487564,"id":814,"parentId":716,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_class_private_field_loose_key.js","layer":"ssr"},"startTime":1780368984130,"traceId":"f5ac02f0451719cf"},{"name":"make","duration":1074791,"timestamp":1876014416961,"id":21,"parentId":19,"tags":{},"startTime":1780368983059,"traceId":"f5ac02f0451719cf"},{"name":"get-entries","duration":601,"timestamp":1876015492750,"id":821,"parentId":820,"tags":{},"startTime":1780368984135,"traceId":"f5ac02f0451719cf"},{"name":"node-file-trace-plugin","duration":38707,"timestamp":1876015495471,"id":822,"parentId":820,"tags":{"traceEntryCount":"26"},"startTime":1780368984138,"traceId":"f5ac02f0451719cf"},{"name":"collect-traced-files","duration":337,"timestamp":1876015534186,"id":823,"parentId":820,"tags":{},"startTime":1780368984176,"traceId":"f5ac02f0451719cf"},{"name":"finish-modules","duration":41885,"timestamp":1876015492640,"id":820,"parentId":20,"tags":{},"startTime":1780368984135,"traceId":"f5ac02f0451719cf"},{"name":"chunk-graph","duration":7635,"timestamp":1876015546989,"id":825,"parentId":824,"tags":{},"startTime":1780368984189,"traceId":"f5ac02f0451719cf"},{"name":"optimize-modules","duration":13,"timestamp":1876015554722,"id":827,"parentId":824,"tags":{},"startTime":1780368984197,"traceId":"f5ac02f0451719cf"},{"name":"optimize-chunks","duration":45821,"timestamp":1876015554789,"id":828,"parentId":824,"tags":{},"startTime":1780368984197,"traceId":"f5ac02f0451719cf"},{"name":"optimize-tree","duration":17,"timestamp":1876015600688,"id":829,"parentId":824,"tags":{},"startTime":1780368984243,"traceId":"f5ac02f0451719cf"},{"name":"optimize-chunk-modules","duration":12240,"timestamp":1876015600808,"id":830,"parentId":824,"tags":{},"startTime":1780368984243,"traceId":"f5ac02f0451719cf"},{"name":"optimize","duration":58399,"timestamp":1876015554685,"id":826,"parentId":824,"tags":{},"startTime":1780368984197,"traceId":"f5ac02f0451719cf"},{"name":"module-hash","duration":5834,"timestamp":1876015626739,"id":831,"parentId":824,"tags":{},"startTime":1780368984269,"traceId":"f5ac02f0451719cf"},{"name":"code-generation","duration":41446,"timestamp":1876015632603,"id":832,"parentId":824,"tags":{},"startTime":1780368984275,"traceId":"f5ac02f0451719cf"},{"name":"hash","duration":4270,"timestamp":1876015677375,"id":833,"parentId":824,"tags":{},"startTime":1780368984320,"traceId":"f5ac02f0451719cf"},{"name":"code-generation-jobs","duration":298,"timestamp":1876015681643,"id":834,"parentId":824,"tags":{},"startTime":1780368984324,"traceId":"f5ac02f0451719cf"},{"name":"module-assets","duration":131,"timestamp":1876015681915,"id":835,"parentId":824,"tags":{},"startTime":1780368984324,"traceId":"f5ac02f0451719cf"},{"name":"create-chunk-assets","duration":7656,"timestamp":1876015682050,"id":836,"parentId":824,"tags":{},"startTime":1780368984324,"traceId":"f5ac02f0451719cf"},{"name":"minify-js","duration":25568,"timestamp":1876015702066,"id":841,"parentId":837,"tags":{"name":"../pages/_document.js","cache":"MISS"},"startTime":1780368984344,"traceId":"f5ac02f0451719cf"},{"name":"minify-js","duration":26085,"timestamp":1876015701575,"id":839,"parentId":837,"tags":{"name":"../pages/_app.js","cache":"MISS"},"startTime":1780368984344,"traceId":"f5ac02f0451719cf"},{"name":"minify-js","duration":27985,"timestamp":1876015699686,"id":838,"parentId":837,"tags":{"name":"../app/_not-found/page.js","cache":"MISS"},"startTime":1780368984342,"traceId":"f5ac02f0451719cf"},{"name":"minify-js","duration":25977,"timestamp":1876015701705,"id":840,"parentId":837,"tags":{"name":"../pages/_error.js","cache":"MISS"},"startTime":1780368984344,"traceId":"f5ac02f0451719cf"},{"name":"minify-js","duration":25227,"timestamp":1876015702482,"id":843,"parentId":837,"tags":{"name":"../app/(auth)/sentiment/page.js","cache":"MISS"},"startTime":1780368984345,"traceId":"f5ac02f0451719cf"},{"name":"minify-js","duration":25636,"timestamp":1876015702101,"id":842,"parentId":837,"tags":{"name":"../app/(auth)/sectors/page.js","cache":"MISS"},"startTime":1780368984344,"traceId":"f5ac02f0451719cf"},{"name":"minify-js","duration":23419,"timestamp":1876015704326,"id":847,"parentId":837,"tags":{"name":"../app/(auth)/api/chat/stream/route.js","cache":"MISS"},"startTime":1780368984347,"traceId":"f5ac02f0451719cf"},{"name":"minify-js","duration":24961,"timestamp":1876015702802,"id":844,"parentId":837,"tags":{"name":"../app/(auth)/sectors/[name]/page.js","cache":"MISS"},"startTime":1780368984345,"traceId":"f5ac02f0451719cf"},{"name":"minify-js","duration":25611,"timestamp":1876015703390,"id":845,"parentId":837,"tags":{"name":"../app/(auth)/chat/page.js","cache":"MISS"},"startTime":1780368984346,"traceId":"f5ac02f0451719cf"},{"name":"minify-js","duration":30205,"timestamp":1876015703891,"id":846,"parentId":837,"tags":{"name":"../app/(auth)/dashboard/page.js","cache":"MISS"},"startTime":1780368984346,"traceId":"f5ac02f0451719cf"},{"name":"minify-js","duration":35123,"timestamp":1876015704420,"id":848,"parentId":837,"tags":{"name":"../app/(auth)/watchlists/page.js","cache":"MISS"},"startTime":1780368984347,"traceId":"f5ac02f0451719cf"},{"name":"minify-js","duration":34460,"timestamp":1876015705125,"id":850,"parentId":837,"tags":{"name":"../app/(auth)/stock/[code]/page.js","cache":"MISS"},"startTime":1780368984347,"traceId":"f5ac02f0451719cf"},{"name":"minify-js","duration":33781,"timestamp":1876015705836,"id":853,"parentId":837,"tags":{"name":"../webpack-runtime.js","cache":"MISS"},"startTime":1780368984348,"traceId":"f5ac02f0451719cf"},{"name":"minify-js","duration":48967,"timestamp":1876015704661,"id":849,"parentId":837,"tags":{"name":"../app/(auth)/recommendations/page.js","cache":"MISS"},"startTime":1780368984347,"traceId":"f5ac02f0451719cf"},{"name":"minify-js","duration":48191,"timestamp":1876015705483,"id":851,"parentId":837,"tags":{"name":"../app/(public)/login/page.js","cache":"MISS"},"startTime":1780368984348,"traceId":"f5ac02f0451719cf"},{"name":"minify-js","duration":52108,"timestamp":1876015705697,"id":852,"parentId":837,"tags":{"name":"../app/(public)/page.js","cache":"MISS"},"startTime":1780368984348,"traceId":"f5ac02f0451719cf"},{"name":"minify-js","duration":84967,"timestamp":1876015708093,"id":856,"parentId":837,"tags":{"name":"434.js","cache":"MISS"},"startTime":1780368984350,"traceId":"f5ac02f0451719cf"},{"name":"minify-js","duration":91390,"timestamp":1876015711379,"id":857,"parentId":837,"tags":{"name":"682.js","cache":"MISS"},"startTime":1780368984354,"traceId":"f5ac02f0451719cf"},{"name":"minify-js","duration":107401,"timestamp":1876015711805,"id":858,"parentId":837,"tags":{"name":"186.js","cache":"MISS"},"startTime":1780368984354,"traceId":"f5ac02f0451719cf"},{"name":"minify-js","duration":133320,"timestamp":1876015706028,"id":854,"parentId":837,"tags":{"name":"948.js","cache":"MISS"},"startTime":1780368984348,"traceId":"f5ac02f0451719cf"},{"name":"minify-js","duration":310971,"timestamp":1876015706489,"id":855,"parentId":837,"tags":{"name":"720.js","cache":"MISS"},"startTime":1780368984349,"traceId":"f5ac02f0451719cf"},{"name":"terser-webpack-plugin-optimize","duration":323348,"timestamp":1876015694137,"id":837,"parentId":19,"tags":{"compilationName":"server","swcMinify":true},"startTime":1780368984336,"traceId":"f5ac02f0451719cf"},{"name":"css-minimizer-plugin","duration":163,"timestamp":1876016017695,"id":859,"parentId":19,"tags":{},"startTime":1780368984660,"traceId":"f5ac02f0451719cf"},{"name":"create-trace-assets","duration":2212,"timestamp":1876016017990,"id":860,"parentId":20,"tags":{},"startTime":1780368984660,"traceId":"f5ac02f0451719cf"},{"name":"seal","duration":489824,"timestamp":1876015541042,"id":824,"parentId":19,"tags":{},"startTime":1780368984183,"traceId":"f5ac02f0451719cf"},{"name":"webpack-compilation","duration":1622319,"timestamp":1876014413638,"id":19,"parentId":16,"tags":{"name":"server"},"startTime":1780368983056,"traceId":"f5ac02f0451719cf"},{"name":"emit","duration":103469,"timestamp":1876016036209,"id":861,"parentId":16,"tags":{},"startTime":1780368984678,"traceId":"f5ac02f0451719cf"},{"name":"webpack-close","duration":227119,"timestamp":1876016139942,"id":862,"parentId":16,"tags":{"name":"server"},"startTime":1780368984782,"traceId":"f5ac02f0451719cf"},{"name":"webpack-generate-error-stats","duration":1765,"timestamp":1876016367098,"id":863,"parentId":862,"tags":{},"startTime":1780368985009,"traceId":"f5ac02f0451719cf"},{"name":"run-webpack-compiler","duration":2638113,"timestamp":1876013730927,"id":16,"parentId":15,"tags":{},"startTime":1780368982373,"traceId":"f5ac02f0451719cf"},{"name":"format-webpack-messages","duration":36,"timestamp":1876016369042,"id":864,"parentId":15,"tags":{},"startTime":1780368985011,"traceId":"f5ac02f0451719cf"},{"name":"worker-main-server","duration":2638370,"timestamp":1876013730755,"id":15,"parentId":1,"tags":{},"startTime":1780368982373,"traceId":"f5ac02f0451719cf"},{"name":"create-entrypoints","duration":189341,"timestamp":1876016695603,"id":868,"parentId":866,"tags":{},"startTime":1780368985338,"traceId":"f5ac02f0451719cf"},{"name":"generate-webpack-config","duration":177044,"timestamp":1876016885036,"id":869,"parentId":867,"tags":{},"startTime":1780368985527,"traceId":"f5ac02f0451719cf"},{"name":"make","duration":447,"timestamp":1876017105543,"id":871,"parentId":870,"tags":{},"startTime":1780368985748,"traceId":"f5ac02f0451719cf"},{"name":"chunk-graph","duration":332,"timestamp":1876017107242,"id":873,"parentId":872,"tags":{},"startTime":1780368985749,"traceId":"f5ac02f0451719cf"},{"name":"optimize-modules","duration":20,"timestamp":1876017107738,"id":875,"parentId":872,"tags":{},"startTime":1780368985750,"traceId":"f5ac02f0451719cf"},{"name":"optimize-chunks","duration":157,"timestamp":1876017108365,"id":876,"parentId":872,"tags":{},"startTime":1780368985751,"traceId":"f5ac02f0451719cf"},{"name":"optimize-tree","duration":88,"timestamp":1876017109434,"id":877,"parentId":872,"tags":{},"startTime":1780368985752,"traceId":"f5ac02f0451719cf"},{"name":"optimize-chunk-modules","duration":142,"timestamp":1876017109744,"id":878,"parentId":872,"tags":{},"startTime":1780368985752,"traceId":"f5ac02f0451719cf"},{"name":"optimize","duration":2204,"timestamp":1876017107709,"id":874,"parentId":872,"tags":{},"startTime":1780368985750,"traceId":"f5ac02f0451719cf"},{"name":"module-hash","duration":67,"timestamp":1876017110521,"id":879,"parentId":872,"tags":{},"startTime":1780368985753,"traceId":"f5ac02f0451719cf"},{"name":"code-generation","duration":233,"timestamp":1876017110612,"id":880,"parentId":872,"tags":{},"startTime":1780368985753,"traceId":"f5ac02f0451719cf"},{"name":"hash","duration":287,"timestamp":1876017111020,"id":881,"parentId":872,"tags":{},"startTime":1780368985753,"traceId":"f5ac02f0451719cf"},{"name":"code-generation-jobs","duration":34,"timestamp":1876017111306,"id":882,"parentId":872,"tags":{},"startTime":1780368985754,"traceId":"f5ac02f0451719cf"},{"name":"module-assets","duration":40,"timestamp":1876017111327,"id":883,"parentId":872,"tags":{},"startTime":1780368985754,"traceId":"f5ac02f0451719cf"},{"name":"create-chunk-assets","duration":134,"timestamp":1876017111371,"id":884,"parentId":872,"tags":{},"startTime":1780368985754,"traceId":"f5ac02f0451719cf"},{"name":"minify-js","duration":328,"timestamp":1876017135394,"id":886,"parentId":885,"tags":{"name":"interception-route-rewrite-manifest.js","cache":"HIT"},"startTime":1780368985778,"traceId":"f5ac02f0451719cf"},{"name":"terser-webpack-plugin-optimize","duration":9958,"timestamp":1876017125832,"id":885,"parentId":870,"tags":{"compilationName":"edge-server","swcMinify":true},"startTime":1780368985768,"traceId":"f5ac02f0451719cf"},{"name":"css-minimizer-plugin","duration":321,"timestamp":1876017135959,"id":887,"parentId":870,"tags":{},"startTime":1780368985778,"traceId":"f5ac02f0451719cf"},{"name":"seal","duration":30791,"timestamp":1876017107086,"id":872,"parentId":870,"tags":{},"startTime":1780368985749,"traceId":"f5ac02f0451719cf"},{"name":"webpack-compilation","duration":34770,"timestamp":1876017103276,"id":870,"parentId":867,"tags":{"name":"edge-server"},"startTime":1780368985746,"traceId":"f5ac02f0451719cf"},{"name":"emit","duration":1932,"timestamp":1876017138239,"id":888,"parentId":867,"tags":{},"startTime":1780368985780,"traceId":"f5ac02f0451719cf"}] -[{"name":"webpack-close","duration":715,"timestamp":1876017140402,"id":889,"parentId":867,"tags":{"name":"edge-server"},"startTime":1780368985783,"traceId":"f5ac02f0451719cf"},{"name":"webpack-generate-error-stats","duration":2412,"timestamp":1876017141148,"id":890,"parentId":889,"tags":{},"startTime":1780368985783,"traceId":"f5ac02f0451719cf"},{"name":"run-webpack-compiler","duration":448189,"timestamp":1876016695602,"id":867,"parentId":866,"tags":{},"startTime":1780368985338,"traceId":"f5ac02f0451719cf"},{"name":"format-webpack-messages","duration":54,"timestamp":1876017143797,"id":891,"parentId":866,"tags":{},"startTime":1780368985786,"traceId":"f5ac02f0451719cf"},{"name":"worker-main-edge-server","duration":448491,"timestamp":1876016695436,"id":866,"parentId":1,"tags":{},"startTime":1780368985338,"traceId":"f5ac02f0451719cf"},{"name":"create-entrypoints","duration":197616,"timestamp":1876017438247,"id":894,"parentId":892,"tags":{},"startTime":1780368986080,"traceId":"f5ac02f0451719cf"},{"name":"generate-webpack-config","duration":181499,"timestamp":1876017635976,"id":895,"parentId":893,"tags":{},"startTime":1780368986278,"traceId":"f5ac02f0451719cf"},{"name":"build-module","duration":6349,"timestamp":1876017894108,"id":918,"parentId":900,"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":1780368986536,"traceId":"f5ac02f0451719cf"},{"name":"build-module","duration":1603,"timestamp":1876017900556,"id":919,"parentId":905,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext-themes%2Fdist%2Findex.mjs%22%2C%22ids%22%3A%5B%22ThemeProvider%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2Fglobals.css%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fhooks%2Fuse-auth.tsx%22%2C%22ids%22%3A%5B%22AuthProvider%22%5D%7D&server=false!","layer":"app-pages-browser"},"startTime":1780368986543,"traceId":"f5ac02f0451719cf"},{"name":"build-module","duration":709,"timestamp":1876017902178,"id":920,"parentId":906,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fsectors%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!","layer":"app-pages-browser"},"startTime":1780368986544,"traceId":"f5ac02f0451719cf"},{"name":"build-module","duration":895,"timestamp":1876017902992,"id":921,"parentId":907,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fauth-guard.tsx%22%2C%22ids%22%3A%5B%22AuthGuard%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fmobile-shell.tsx%22%2C%22ids%22%3A%5B%22MobileShell%22%5D%7D&server=false!","layer":"app-pages-browser"},"startTime":1780368986545,"traceId":"f5ac02f0451719cf"},{"name":"build-module","duration":669,"timestamp":1876017903938,"id":922,"parentId":908,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fsentiment%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!","layer":"app-pages-browser"},"startTime":1780368986546,"traceId":"f5ac02f0451719cf"},{"name":"build-module","duration":359,"timestamp":1876017904623,"id":923,"parentId":909,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fsectors%2F%5Bname%5D%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!","layer":"app-pages-browser"},"startTime":1780368986547,"traceId":"f5ac02f0451719cf"},{"name":"build-module","duration":829,"timestamp":1876017904994,"id":924,"parentId":910,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fchat%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!","layer":"app-pages-browser"},"startTime":1780368986547,"traceId":"f5ac02f0451719cf"},{"name":"build-module","duration":458,"timestamp":1876017905916,"id":925,"parentId":911,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fdashboard%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!","layer":"app-pages-browser"},"startTime":1780368986548,"traceId":"f5ac02f0451719cf"},{"name":"build-module","duration":1219,"timestamp":1876017906392,"id":926,"parentId":912,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fwatchlists%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!","layer":"app-pages-browser"},"startTime":1780368986549,"traceId":"f5ac02f0451719cf"},{"name":"build-module","duration":2394,"timestamp":1876017907980,"id":927,"parentId":913,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Frecommendations%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!","layer":"app-pages-browser"},"startTime":1780368986550,"traceId":"f5ac02f0451719cf"},{"name":"build-module","duration":1260,"timestamp":1876017910423,"id":928,"parentId":914,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!","layer":"app-pages-browser"},"startTime":1780368986553,"traceId":"f5ac02f0451719cf"},{"name":"build-module","duration":443,"timestamp":1876017911697,"id":929,"parentId":915,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(public)%2Flogin%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!","layer":"app-pages-browser"},"startTime":1780368986554,"traceId":"f5ac02f0451719cf"},{"name":"build-module","duration":136,"timestamp":1876017912153,"id":930,"parentId":916,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?server=false!","layer":"app-pages-browser"},"startTime":1780368986554,"traceId":"f5ac02f0451719cf"},{"name":"build-module","duration":1549,"timestamp":1876017912297,"id":931,"parentId":917,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(public)%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!","layer":"app-pages-browser"},"startTime":1780368986555,"traceId":"f5ac02f0451719cf"},{"name":"next-client-pages-loader","duration":182,"timestamp":1876017915255,"id":933,"parentId":932,"tags":{"absolutePagePath":"next/dist/client/components/not-found-error"},"startTime":1780368986558,"traceId":"f5ac02f0451719cf"},{"name":"build-module","duration":5143,"timestamp":1876017913860,"id":932,"parentId":901,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?absolutePagePath=next%2Fdist%2Fclient%2Fcomponents%2Fnot-found-error&page=%2F_not-found%2Fpage!","layer":"app-pages-browser"},"startTime":1780368986556,"traceId":"f5ac02f0451719cf"},{"name":"next-client-pages-loader","duration":54,"timestamp":1876017924139,"id":935,"parentId":934,"tags":{"absolutePagePath":"next/dist/pages/_error"},"startTime":1780368986566,"traceId":"f5ac02f0451719cf"},{"name":"build-module","duration":7035,"timestamp":1876017919063,"id":934,"parentId":902,"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":1780368986561,"traceId":"f5ac02f0451719cf"},{"name":"next-client-pages-loader","duration":17,"timestamp":1876017926227,"id":937,"parentId":936,"tags":{"absolutePagePath":"next/dist/pages/_app"},"startTime":1780368986568,"traceId":"f5ac02f0451719cf"},{"name":"build-module","duration":3832,"timestamp":1876017926118,"id":936,"parentId":903,"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":1780368986568,"traceId":"f5ac02f0451719cf"},{"name":"add-entry","duration":79898,"timestamp":1876017864649,"id":916,"parentId":897,"tags":{"request":"next-flight-client-entry-loader?server=false!"},"startTime":1780368986507,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":10577,"timestamp":1876017955065,"id":946,"parentId":945,"tags":{},"startTime":1780368986597,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":10629,"timestamp":1876017955025,"id":945,"parentId":940,"tags":{},"startTime":1780368986597,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":15550,"timestamp":1876017953686,"id":940,"parentId":899,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/app-next.js","layer":"app-pages-browser"},"startTime":1780368986596,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":14412,"timestamp":1876017954902,"id":942,"parentId":941,"tags":{},"startTime":1780368986597,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":14876,"timestamp":1876017954441,"id":941,"parentId":938,"tags":{},"startTime":1780368986597,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":21279,"timestamp":1876017949791,"id":938,"parentId":898,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/next.js","layer":null},"startTime":1780368986592,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":19289,"timestamp":1876017955022,"id":944,"parentId":943,"tags":{},"startTime":1780368986597,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":19389,"timestamp":1876017954931,"id":943,"parentId":939,"tags":{},"startTime":1780368986597,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":25200,"timestamp":1876017953609,"id":939,"parentId":904,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/router.js","layer":null},"startTime":1780368986596,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":4562,"timestamp":1876017982990,"id":957,"parentId":956,"tags":{},"startTime":1780368986625,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":4753,"timestamp":1876017982803,"id":956,"parentId":948,"tags":{},"startTime":1780368986625,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":7498,"timestamp":1876017982537,"id":948,"parentId":918,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/client-page.js","layer":"app-pages-browser"},"startTime":1780368986625,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":7312,"timestamp":1876017983040,"id":959,"parentId":958,"tags":{},"startTime":1780368986625,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":7359,"timestamp":1876017982995,"id":958,"parentId":949,"tags":{},"startTime":1780368986625,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":13055,"timestamp":1876017982583,"id":949,"parentId":918,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/error-boundary.js","layer":"app-pages-browser"},"startTime":1780368986625,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":12575,"timestamp":1876017983083,"id":961,"parentId":960,"tags":{},"startTime":1780368986625,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":12613,"timestamp":1876017983045,"id":960,"parentId":950,"tags":{},"startTime":1780368986625,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":16889,"timestamp":1876017982612,"id":950,"parentId":918,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/layout-router.js","layer":"app-pages-browser"},"startTime":1780368986625,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":16721,"timestamp":1876017982801,"id":955,"parentId":954,"tags":{},"startTime":1780368986625,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":16796,"timestamp":1876017982726,"id":954,"parentId":947,"tags":{},"startTime":1780368986625,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":20934,"timestamp":1876017982428,"id":947,"parentId":918,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/app-router.js","layer":"app-pages-browser"},"startTime":1780368986625,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":22532,"timestamp":1876017983121,"id":963,"parentId":962,"tags":{},"startTime":1780368986625,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":22572,"timestamp":1876017983085,"id":962,"parentId":951,"tags":{},"startTime":1780368986625,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":27972,"timestamp":1876017982635,"id":951,"parentId":918,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/not-found-boundary.js","layer":"app-pages-browser"},"startTime":1780368986625,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":29814,"timestamp":1876017983403,"id":967,"parentId":966,"tags":{},"startTime":1780368986626,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":29884,"timestamp":1876017983338,"id":966,"parentId":953,"tags":{},"startTime":1780368986626,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":31370,"timestamp":1876017982689,"id":953,"parentId":932,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/not-found-error.js","layer":"app-pages-browser"},"startTime":1780368986625,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":30789,"timestamp":1876017983288,"id":965,"parentId":964,"tags":{},"startTime":1780368986626,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":30956,"timestamp":1876017983123,"id":964,"parentId":952,"tags":{},"startTime":1780368986625,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":31819,"timestamp":1876017982661,"id":952,"parentId":918,"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":1780368986625,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":27287,"timestamp":1876017987205,"id":979,"parentId":978,"tags":{},"startTime":1780368986629,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":27301,"timestamp":1876017987192,"id":978,"parentId":970,"tags":{},"startTime":1780368986629,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":28323,"timestamp":1876017986935,"id":970,"parentId":940,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/app-webpack.js","layer":"app-pages-browser"},"startTime":1780368986629,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":27854,"timestamp":1876017987414,"id":981,"parentId":980,"tags":{},"startTime":1780368986630,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":28062,"timestamp":1876017987207,"id":980,"parentId":971,"tags":{},"startTime":1780368986629,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":29052,"timestamp":1876017987039,"id":971,"parentId":940,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/app-bootstrap.js","layer":"app-pages-browser"},"startTime":1780368986629,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":28934,"timestamp":1876017987171,"id":975,"parentId":974,"tags":{},"startTime":1780368986629,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":28985,"timestamp":1876017987122,"id":974,"parentId":968,"tags":{},"startTime":1780368986629,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":30059,"timestamp":1876017986835,"id":968,"parentId":934,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/pages/_error.js","layer":null},"startTime":1780368986629,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":29779,"timestamp":1876017987190,"id":977,"parentId":976,"tags":{},"startTime":1780368986629,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":29798,"timestamp":1876017987174,"id":976,"parentId":969,"tags":{},"startTime":1780368986629,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":30544,"timestamp":1876017986903,"id":969,"parentId":936,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/pages/_app.js","layer":null},"startTime":1780368986629,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":30008,"timestamp":1876017987449,"id":985,"parentId":984,"tags":{},"startTime":1780368986630,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":30020,"timestamp":1876017987439,"id":984,"parentId":973,"tags":{},"startTime":1780368986630,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":30844,"timestamp":1876017987101,"id":973,"parentId":938,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/webpack.js","layer":null},"startTime":1780368986629,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":30517,"timestamp":1876017987437,"id":983,"parentId":982,"tags":{},"startTime":1780368986630,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":30537,"timestamp":1876017987418,"id":982,"parentId":972,"tags":{},"startTime":1780368986630,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":32683,"timestamp":1876017987073,"id":972,"parentId":940,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/app-index.js","layer":"app-pages-browser"},"startTime":1780368986629,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":3032,"timestamp":1876018024237,"id":998,"parentId":997,"tags":{},"startTime":1780368986666,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":3072,"timestamp":1876018024200,"id":997,"parentId":989,"tags":{},"startTime":1780368986666,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":6756,"timestamp":1876018024199,"id":996,"parentId":995,"tags":{},"startTime":1780368986666,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":6805,"timestamp":1876018024161,"id":995,"parentId":988,"tags":{},"startTime":1780368986666,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":15418,"timestamp":1876018024160,"id":994,"parentId":993,"tags":{},"startTime":1780368986666,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":15467,"timestamp":1876018024118,"id":993,"parentId":987,"tags":{},"startTime":1780368986666,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":16512,"timestamp":1876018024115,"id":992,"parentId":991,"tags":{},"startTime":1780368986666,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":16591,"timestamp":1876018024040,"id":991,"parentId":986,"tags":{},"startTime":1780368986666,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":18699,"timestamp":1876018024274,"id":1000,"parentId":999,"tags":{},"startTime":1780368986667,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":18740,"timestamp":1876018024238,"id":999,"parentId":990,"tags":{},"startTime":1780368986666,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":20257,"timestamp":1876018026872,"id":1012,"parentId":1011,"tags":{},"startTime":1780368986669,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":20271,"timestamp":1876018026862,"id":1011,"parentId":1002,"tags":{},"startTime":1780368986669,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":21227,"timestamp":1876018026514,"id":1002,"parentId":939,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/with-router.js","layer":null},"startTime":1780368986669,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":20841,"timestamp":1876018026950,"id":1016,"parentId":1015,"tags":{},"startTime":1780368986669,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":20881,"timestamp":1876018026911,"id":1015,"parentId":1004,"tags":{},"startTime":1780368986669,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":26690,"timestamp":1876018026910,"id":1014,"parentId":1013,"tags":{},"startTime":1780368986669,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":26732,"timestamp":1876018026873,"id":1013,"parentId":1003,"tags":{},"startTime":1780368986669,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":33209,"timestamp":1876018026989,"id":1018,"parentId":1017,"tags":{},"startTime":1780368986669,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":33256,"timestamp":1876018026951,"id":1017,"parentId":1005,"tags":{},"startTime":1780368986669,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":36952,"timestamp":1876018026860,"id":1010,"parentId":1009,"tags":{},"startTime":1780368986669,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":36980,"timestamp":1876018026837,"id":1009,"parentId":1001,"tags":{},"startTime":1780368986669,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":43703,"timestamp":1876018026468,"id":1001,"parentId":938,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/index.js","layer":null},"startTime":1780368986669,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":43498,"timestamp":1876018027028,"id":1020,"parentId":1019,"tags":{},"startTime":1780368986669,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":43540,"timestamp":1876018026990,"id":1019,"parentId":1006,"tags":{},"startTime":1780368986669,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":53074,"timestamp":1876018027113,"id":1024,"parentId":1023,"tags":{},"startTime":1780368986669,"traceId":"f5ac02f0451719cf"}] -[{"name":"next-swc-loader","duration":53121,"timestamp":1876018027073,"id":1023,"parentId":1008,"tags":{},"startTime":1780368986669,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":59479,"timestamp":1876018027072,"id":1022,"parentId":1021,"tags":{},"startTime":1780368986669,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":59527,"timestamp":1876018027029,"id":1021,"parentId":1007,"tags":{},"startTime":1780368986669,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":57157,"timestamp":1876018042592,"id":1030,"parentId":1029,"tags":{},"startTime":1780368986685,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":57239,"timestamp":1876018042518,"id":1029,"parentId":1025,"tags":{},"startTime":1780368986685,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":61120,"timestamp":1876018042638,"id":1032,"parentId":1031,"tags":{},"startTime":1780368986685,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":61165,"timestamp":1876018042599,"id":1031,"parentId":1026,"tags":{},"startTime":1780368986685,"traceId":"f5ac02f0451719cf"},{"name":"build-module-tsx","duration":105175,"timestamp":1876018023161,"id":986,"parentId":921,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/mobile-shell.tsx","layer":"app-pages-browser"},"startTime":1780368986665,"traceId":"f5ac02f0451719cf"},{"name":"build-module-tsx","duration":104624,"timestamp":1876018023735,"id":988,"parentId":931,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(public)/page.tsx","layer":"app-pages-browser"},"startTime":1780368986666,"traceId":"f5ac02f0451719cf"},{"name":"build-module-tsx","duration":104786,"timestamp":1876018023582,"id":987,"parentId":921,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/auth-guard.tsx","layer":"app-pages-browser"},"startTime":1780368986666,"traceId":"f5ac02f0451719cf"},{"name":"build-module-tsx","duration":104585,"timestamp":1876018023791,"id":989,"parentId":919,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/hooks/use-auth.tsx","layer":"app-pages-browser"},"startTime":1780368986666,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":92228,"timestamp":1876018042187,"id":1028,"parentId":1027,"tags":{},"startTime":1780368986684,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":93181,"timestamp":1876018041872,"id":1027,"parentId":939,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/is-error.js","layer":null},"startTime":1780368986684,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":5891,"timestamp":1876018131261,"id":1045,"parentId":1044,"tags":{},"startTime":1780368986774,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":5908,"timestamp":1876018131247,"id":1044,"parentId":1034,"tags":{},"startTime":1780368986773,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":6823,"timestamp":1876018130807,"id":1034,"parentId":947,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/add-base-path.js","layer":"app-pages-browser"},"startTime":1780368986773,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":6401,"timestamp":1876018131243,"id":1043,"parentId":1042,"tags":{},"startTime":1780368986773,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":6438,"timestamp":1876018131207,"id":1042,"parentId":1033,"tags":{},"startTime":1780368986773,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":7383,"timestamp":1876018130724,"id":1033,"parentId":948,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/search-params.js","layer":"app-pages-browser"},"startTime":1780368986773,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":6843,"timestamp":1876018131273,"id":1047,"parentId":1046,"tags":{},"startTime":1780368986774,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":6855,"timestamp":1876018131263,"id":1046,"parentId":1035,"tags":{},"startTime":1780368986774,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":7594,"timestamp":1876018130843,"id":1035,"parentId":947,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/remove-base-path.js","layer":"app-pages-browser"},"startTime":1780368986773,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":7159,"timestamp":1876018131285,"id":1049,"parentId":1048,"tags":{},"startTime":1780368986774,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":7170,"timestamp":1876018131275,"id":1048,"parentId":1036,"tags":{},"startTime":1780368986774,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":7835,"timestamp":1876018130869,"id":1036,"parentId":947,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/has-base-path.js","layer":"app-pages-browser"},"startTime":1780368986773,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":7388,"timestamp":1876018131323,"id":1055,"parentId":1054,"tags":{},"startTime":1780368986774,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":7403,"timestamp":1876018131309,"id":1054,"parentId":1039,"tags":{},"startTime":1780368986774,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":7980,"timestamp":1876018130943,"id":1039,"parentId":949,"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":1780368986773,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":7622,"timestamp":1876018131308,"id":1053,"parentId":1052,"tags":{},"startTime":1780368986774,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":7633,"timestamp":1876018131298,"id":1052,"parentId":1038,"tags":{},"startTime":1780368986774,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":8186,"timestamp":1876018130920,"id":1038,"parentId":949,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/static-generation-async-storage.external.js","layer":"shared"},"startTime":1780368986773,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":7997,"timestamp":1876018131335,"id":1057,"parentId":1056,"tags":{},"startTime":1780368986774,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":8008,"timestamp":1876018131325,"id":1056,"parentId":1040,"tags":{},"startTime":1780368986774,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":11459,"timestamp":1876018130967,"id":1040,"parentId":950,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/unresolved-thenable.js","layer":"app-pages-browser"},"startTime":1780368986773,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":14826,"timestamp":1876018131297,"id":1051,"parentId":1050,"tags":{},"startTime":1780368986774,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":14840,"timestamp":1876018131287,"id":1050,"parentId":1037,"tags":{},"startTime":1780368986774,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":16182,"timestamp":1876018130894,"id":1037,"parentId":949,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/navigation.js","layer":"app-pages-browser"},"startTime":1780368986773,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":16131,"timestamp":1876018131346,"id":1059,"parentId":1058,"tags":{},"startTime":1780368986774,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":16143,"timestamp":1876018131336,"id":1058,"parentId":1041,"tags":{},"startTime":1780368986774,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":16923,"timestamp":1876018130989,"id":1041,"parentId":950,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/match-segments.js","layer":"app-pages-browser"},"startTime":1780368986773,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":4409,"timestamp":1876018144784,"id":1065,"parentId":1064,"tags":{},"startTime":1780368986787,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":4455,"timestamp":1876018144746,"id":1064,"parentId":1060,"tags":{},"startTime":1780368986787,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":6378,"timestamp":1876018143709,"id":1060,"parentId":950,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/redirect-boundary.js","layer":"app-pages-browser"},"startTime":1780368986786,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":11732,"timestamp":1876018144821,"id":1069,"parentId":1068,"tags":{},"startTime":1780368986787,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":11750,"timestamp":1876018144809,"id":1068,"parentId":1062,"tags":{},"startTime":1780368986787,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":13345,"timestamp":1876018143873,"id":1062,"parentId":947,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/app-router-announcer.js","layer":"app-pages-browser"},"startTime":1780368986786,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":12398,"timestamp":1876018144835,"id":1071,"parentId":1070,"tags":{},"startTime":1780368986787,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":12409,"timestamp":1876018144825,"id":1070,"parentId":1063,"tags":{},"startTime":1780368986787,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":13611,"timestamp":1876018143909,"id":1063,"parentId":947,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/app-router-headers.js","layer":"app-pages-browser"},"startTime":1780368986786,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":12726,"timestamp":1876018144807,"id":1067,"parentId":1066,"tags":{},"startTime":1780368986787,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":12744,"timestamp":1876018144789,"id":1066,"parentId":1061,"tags":{},"startTime":1780368986787,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":14433,"timestamp":1876018143834,"id":1061,"parentId":947,"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":1780368986786,"traceId":"f5ac02f0451719cf"},{"name":"build-module-tsx","duration":138032,"timestamp":1876018023837,"id":990,"parentId":929,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(public)/login/page.tsx","layer":"app-pages-browser"},"startTime":1780368986666,"traceId":"f5ac02f0451719cf"},{"name":"build-module-tsx","duration":135352,"timestamp":1876018026535,"id":1003,"parentId":920,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/sectors/page.tsx","layer":"app-pages-browser"},"startTime":1780368986669,"traceId":"f5ac02f0451719cf"},{"name":"build-module-tsx","duration":135276,"timestamp":1876018026685,"id":1006,"parentId":924,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/chat/page.tsx","layer":"app-pages-browser"},"startTime":1780368986669,"traceId":"f5ac02f0451719cf"},{"name":"build-module-tsx","duration":135385,"timestamp":1876018026586,"id":1004,"parentId":922,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/sentiment/page.tsx","layer":"app-pages-browser"},"startTime":1780368986669,"traceId":"f5ac02f0451719cf"},{"name":"build-module-tsx","duration":135344,"timestamp":1876018026636,"id":1005,"parentId":923,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/sectors/[name]/page.tsx","layer":"app-pages-browser"},"startTime":1780368986669,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":6002,"timestamp":1876018156015,"id":1076,"parentId":1075,"tags":{},"startTime":1780368986798,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":6039,"timestamp":1876018155979,"id":1075,"parentId":1072,"tags":{},"startTime":1780368986798,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":8163,"timestamp":1876018154180,"id":1072,"parentId":951,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/not-found.js","layer":"app-pages-browser"},"startTime":1780368986796,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":4300,"timestamp":1876018161402,"id":1083,"parentId":1082,"tags":{},"startTime":1780368986804,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":4342,"timestamp":1876018161364,"id":1082,"parentId":1077,"tags":{},"startTime":1780368986804,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":5036,"timestamp":1876018160911,"id":1077,"parentId":939,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router-context.shared-runtime.js","layer":null},"startTime":1780368986803,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":4511,"timestamp":1876018161446,"id":1089,"parentId":1088,"tags":{},"startTime":1780368986804,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":4521,"timestamp":1876018161437,"id":1088,"parentId":1080,"tags":{},"startTime":1780368986804,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":5127,"timestamp":1876018161024,"id":1080,"parentId":947,"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":1780368986803,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":4728,"timestamp":1876018161436,"id":1087,"parentId":1086,"tags":{},"startTime":1780368986804,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":4740,"timestamp":1876018161425,"id":1086,"parentId":1079,"tags":{},"startTime":1780368986804,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":5347,"timestamp":1876018161000,"id":1079,"parentId":950,"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":1780368986803,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":6233,"timestamp":1876018161455,"id":1091,"parentId":1090,"tags":{},"startTime":1780368986804,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":6243,"timestamp":1876018161447,"id":1090,"parentId":1081,"tags":{},"startTime":1780368986804,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":6802,"timestamp":1876018161044,"id":1081,"parentId":947,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/segment.js","layer":"app-pages-browser"},"startTime":1780368986803,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":17418,"timestamp":1876018155909,"id":1074,"parentId":1073,"tags":{},"startTime":1780368986798,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":16580,"timestamp":1876018161423,"id":1085,"parentId":1084,"tags":{},"startTime":1780368986804,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":16605,"timestamp":1876018161405,"id":1084,"parentId":1078,"tags":{},"startTime":1780368986804,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":24391,"timestamp":1876018160976,"id":1078,"parentId":939,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/router.js","layer":null},"startTime":1780368986803,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":12089,"timestamp":1876018173508,"id":1093,"parentId":1092,"tags":{},"startTime":1780368986816,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":12218,"timestamp":1876018173381,"id":1092,"parentId":1073,"tags":{},"startTime":1780368986816,"traceId":"f5ac02f0451719cf"},{"name":"build-module-mjs","duration":33470,"timestamp":1876018154289,"id":1073,"parentId":919,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next-themes/dist/index.mjs","layer":"app-pages-browser"},"startTime":1780368986797,"traceId":"f5ac02f0451719cf"},{"name":"build-module-tsx","duration":148176,"timestamp":1876018041633,"id":1025,"parentId":927,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/recommendations/page.tsx","layer":"app-pages-browser"},"startTime":1780368986684,"traceId":"f5ac02f0451719cf"},{"name":"build-module-tsx","duration":148021,"timestamp":1876018041804,"id":1026,"parentId":928,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/stock/[code]/page.tsx","layer":"app-pages-browser"},"startTime":1780368986684,"traceId":"f5ac02f0451719cf"},{"name":"build-module-tsx","duration":163052,"timestamp":1876018026779,"id":1008,"parentId":926,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/watchlists/page.tsx","layer":"app-pages-browser"},"startTime":1780368986669,"traceId":"f5ac02f0451719cf"},{"name":"build-module-tsx","duration":163102,"timestamp":1876018026737,"id":1007,"parentId":925,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/dashboard/page.tsx","layer":"app-pages-browser"},"startTime":1780368986669,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":4298,"timestamp":1876018219354,"id":1120,"parentId":1119,"tags":{},"startTime":1780368986862,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":4318,"timestamp":1876018219342,"id":1119,"parentId":1098,"tags":{},"startTime":1780368986862,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":5536,"timestamp":1876018218679,"id":1098,"parentId":972,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/app-call-server.js","layer":"app-pages-browser"},"startTime":1780368986861,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":4890,"timestamp":1876018219339,"id":1118,"parentId":1117,"tags":{},"startTime":1780368986862,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":4927,"timestamp":1876018219303,"id":1117,"parentId":1097,"tags":{},"startTime":1780368986862,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":5867,"timestamp":1876018218646,"id":1097,"parentId":972,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/on-recoverable-error.js","layer":"app-pages-browser"},"startTime":1780368986861,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":5158,"timestamp":1876018219365,"id":1122,"parentId":1121,"tags":{},"startTime":1780368986862,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":5169,"timestamp":1876018219356,"id":1121,"parentId":1099,"tags":{},"startTime":1780368986862,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":7334,"timestamp":1876018218704,"id":1099,"parentId":968,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/head.js","layer":null},"startTime":1780368986861,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":6677,"timestamp":1876018219376,"id":1124,"parentId":1123,"tags":{},"startTime":1780368986862,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":6688,"timestamp":1876018219366,"id":1123,"parentId":1100,"tags":{},"startTime":1780368986862,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":8558,"timestamp":1876018218721,"id":1100,"parentId":969,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/utils.js","layer":null},"startTime":1780368986861,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":7890,"timestamp":1876018219401,"id":1128,"parentId":1127,"tags":{},"startTime":1780368986862,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":7900,"timestamp":1876018219392,"id":1127,"parentId":1102,"tags":{},"startTime":1780368986862,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":8680,"timestamp":1876018218757,"id":1102,"parentId":1001,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/head-manager-context.shared-runtime.js","layer":null},"startTime":1780368986861,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":8059,"timestamp":1876018219390,"id":1126,"parentId":1125,"tags":{},"startTime":1780368986862,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":8073,"timestamp":1876018219377,"id":1125,"parentId":1101,"tags":{},"startTime":1780368986862,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":8872,"timestamp":1876018218736,"id":1101,"parentId":972,"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":1780368986861,"traceId":"f5ac02f0451719cf"}] -[{"name":"next-swc-transform","duration":8206,"timestamp":1876018219410,"id":1130,"parentId":1129,"tags":{},"startTime":1780368986862,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":8215,"timestamp":1876018219402,"id":1129,"parentId":1103,"tags":{},"startTime":1780368986862,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":9336,"timestamp":1876018218772,"id":1103,"parentId":972,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/action-queue.js","layer":"app-pages-browser"},"startTime":1780368986861,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":8707,"timestamp":1876018219419,"id":1132,"parentId":1131,"tags":{},"startTime":1780368986862,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":8716,"timestamp":1876018219410,"id":1131,"parentId":1104,"tags":{},"startTime":1780368986862,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":9902,"timestamp":1876018218791,"id":1104,"parentId":950,"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":1780368986861,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":14345,"timestamp":1876018219457,"id":1138,"parentId":1137,"tags":{},"startTime":1780368986862,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":14368,"timestamp":1876018219437,"id":1137,"parentId":1107,"tags":{},"startTime":1780368986862,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":15131,"timestamp":1876018218934,"id":1107,"parentId":947,"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":1780368986861,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":14647,"timestamp":1876018219436,"id":1136,"parentId":1135,"tags":{},"startTime":1780368986862,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":14656,"timestamp":1876018219428,"id":1135,"parentId":1106,"tags":{},"startTime":1780368986862,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":15880,"timestamp":1876018218915,"id":1106,"parentId":947,"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":1780368986861,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":15365,"timestamp":1876018219466,"id":1140,"parentId":1139,"tags":{},"startTime":1780368986862,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":15375,"timestamp":1876018219459,"id":1139,"parentId":1108,"tags":{},"startTime":1780368986862,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":16492,"timestamp":1876018218952,"id":1108,"parentId":947,"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":1780368986861,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":16030,"timestamp":1876018219427,"id":1134,"parentId":1133,"tags":{},"startTime":1780368986862,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":16039,"timestamp":1876018219419,"id":1133,"parentId":1105,"tags":{},"startTime":1780368986862,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":16746,"timestamp":1876018218895,"id":1105,"parentId":950,"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":1780368986861,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":16147,"timestamp":1876018219502,"id":1148,"parentId":1147,"tags":{},"startTime":1780368986862,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":16156,"timestamp":1876018219494,"id":1147,"parentId":1112,"tags":{},"startTime":1780368986862,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":17031,"timestamp":1876018219028,"id":1112,"parentId":947,"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":1780368986861,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":16590,"timestamp":1876018219475,"id":1142,"parentId":1141,"tags":{},"startTime":1780368986862,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":16599,"timestamp":1876018219467,"id":1141,"parentId":1109,"tags":{},"startTime":1780368986862,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":17218,"timestamp":1876018218969,"id":1109,"parentId":950,"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":1780368986861,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":16701,"timestamp":1876018219493,"id":1146,"parentId":1145,"tags":{},"startTime":1780368986862,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":16710,"timestamp":1876018219485,"id":1145,"parentId":1111,"tags":{},"startTime":1780368986862,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":17392,"timestamp":1876018219003,"id":1111,"parentId":947,"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":1780368986861,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":16917,"timestamp":1876018219484,"id":1144,"parentId":1143,"tags":{},"startTime":1780368986862,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":16926,"timestamp":1876018219476,"id":1143,"parentId":1110,"tags":{},"startTime":1780368986862,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":17580,"timestamp":1876018218987,"id":1110,"parentId":950,"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":1780368986861,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":17795,"timestamp":1876018219510,"id":1150,"parentId":1149,"tags":{},"startTime":1780368986862,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":17808,"timestamp":1876018219503,"id":1149,"parentId":1113,"tags":{},"startTime":1780368986862,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":18592,"timestamp":1876018219046,"id":1113,"parentId":950,"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":1780368986861,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":18123,"timestamp":1876018219528,"id":1154,"parentId":1153,"tags":{},"startTime":1780368986862,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":18132,"timestamp":1876018219520,"id":1153,"parentId":1115,"tags":{},"startTime":1780368986862,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":18709,"timestamp":1876018219077,"id":1115,"parentId":951,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/utils/warn-once.js","layer":"app-pages-browser"},"startTime":1780368986861,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":18275,"timestamp":1876018219519,"id":1152,"parentId":1151,"tags":{},"startTime":1780368986862,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":18284,"timestamp":1876018219511,"id":1151,"parentId":1114,"tags":{},"startTime":1780368986862,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":18856,"timestamp":1876018219063,"id":1114,"parentId":1001,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/handle-smooth-scroll.js","layer":null},"startTime":1780368986861,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":6027,"timestamp":1876018231900,"id":1162,"parentId":1161,"tags":{},"startTime":1780368986874,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":6040,"timestamp":1876018231888,"id":1161,"parentId":1156,"tags":{},"startTime":1780368986874,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":7234,"timestamp":1876018230947,"id":1156,"parentId":1001,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/has-base-path.js","layer":null},"startTime":1780368986873,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":6460,"timestamp":1876018231885,"id":1160,"parentId":1159,"tags":{},"startTime":1780368986874,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":6495,"timestamp":1876018231851,"id":1159,"parentId":1155,"tags":{},"startTime":1780368986874,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":7708,"timestamp":1876018230880,"id":1155,"parentId":1001,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/remove-base-path.js","layer":null},"startTime":1780368986873,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":6675,"timestamp":1876018231920,"id":1166,"parentId":1165,"tags":{},"startTime":1780368986874,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":6685,"timestamp":1876018231911,"id":1165,"parentId":1158,"tags":{},"startTime":1780368986874,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":7808,"timestamp":1876018230985,"id":1158,"parentId":1001,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/app-router-context.shared-runtime.js","layer":null},"startTime":1780368986873,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":6890,"timestamp":1876018231910,"id":1164,"parentId":1163,"tags":{},"startTime":1780368986874,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":6900,"timestamp":1876018231902,"id":1163,"parentId":1157,"tags":{},"startTime":1780368986874,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":7978,"timestamp":1876018230969,"id":1157,"parentId":1001,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/on-recoverable-error.js","layer":null},"startTime":1780368986873,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":5639,"timestamp":1876018244363,"id":1191,"parentId":1190,"tags":{},"startTime":1780368986887,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":5673,"timestamp":1876018244334,"id":1190,"parentId":1167,"tags":{},"startTime":1780368986887,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":10453,"timestamp":1876018239858,"id":1167,"parentId":1001,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/hooks-client-context.shared-runtime.js","layer":null},"startTime":1780368986882,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":5923,"timestamp":1876018244398,"id":1197,"parentId":1196,"tags":{},"startTime":1780368986887,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":5932,"timestamp":1876018244390,"id":1196,"parentId":1173,"tags":{},"startTime":1780368986887,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":11325,"timestamp":1876018240119,"id":1173,"parentId":1001,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/performance-relayer.js","layer":null},"startTime":1780368986882,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":7037,"timestamp":1876018244416,"id":1201,"parentId":1200,"tags":{},"startTime":1780368986887,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":7047,"timestamp":1876018244409,"id":1200,"parentId":1175,"tags":{},"startTime":1780368986887,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":11456,"timestamp":1876018240230,"id":1175,"parentId":1001,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/mitt.js","layer":null},"startTime":1780368986882,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":7290,"timestamp":1876018244407,"id":1199,"parentId":1198,"tags":{},"startTime":1780368986887,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":7299,"timestamp":1876018244399,"id":1198,"parentId":1174,"tags":{},"startTime":1780368986887,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":11875,"timestamp":1876018240191,"id":1174,"parentId":1001,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/route-announcer.js","layer":null},"startTime":1780368986882,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":7697,"timestamp":1876018244377,"id":1193,"parentId":1192,"tags":{},"startTime":1780368986887,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":7709,"timestamp":1876018244366,"id":1192,"parentId":1171,"tags":{},"startTime":1780368986887,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":12568,"timestamp":1876018240030,"id":1171,"parentId":1001,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/page-loader.js","layer":null},"startTime":1780368986882,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":8136,"timestamp":1876018244469,"id":1203,"parentId":1202,"tags":{},"startTime":1780368986887,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":8188,"timestamp":1876018244418,"id":1202,"parentId":1176,"tags":{},"startTime":1780368986887,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":14910,"timestamp":1876018240252,"id":1176,"parentId":1001,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/runtime-config.external.js","layer":null},"startTime":1780368986882,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":10750,"timestamp":1876018244480,"id":1205,"parentId":1204,"tags":{},"startTime":1780368986887,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":10763,"timestamp":1876018244471,"id":1204,"parentId":1177,"tags":{},"startTime":1780368986887,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":16010,"timestamp":1876018240269,"id":1177,"parentId":1001,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/is-dynamic.js","layer":null},"startTime":1780368986883,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":11922,"timestamp":1876018244388,"id":1195,"parentId":1194,"tags":{},"startTime":1780368986887,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":11933,"timestamp":1876018244379,"id":1194,"parentId":1172,"tags":{},"startTime":1780368986887,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":19287,"timestamp":1876018240048,"id":1172,"parentId":1001,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/head-manager.js","layer":null},"startTime":1780368986882,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":14871,"timestamp":1876018244490,"id":1207,"parentId":1206,"tags":{},"startTime":1780368986887,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":14881,"timestamp":1876018244482,"id":1206,"parentId":1178,"tags":{},"startTime":1780368986887,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":19445,"timestamp":1876018240285,"id":1178,"parentId":1001,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/querystring.js","layer":null},"startTime":1780368986883,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":15231,"timestamp":1876018244510,"id":1209,"parentId":1208,"tags":{},"startTime":1780368986887,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":15251,"timestamp":1876018244492,"id":1208,"parentId":1180,"tags":{},"startTime":1780368986887,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":16870,"timestamp":1876018243042,"id":1180,"parentId":1001,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/image-config-context.shared-runtime.js","layer":null},"startTime":1780368986885,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":15382,"timestamp":1876018244541,"id":1215,"parentId":1214,"tags":{},"startTime":1780368986887,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":15414,"timestamp":1876018244530,"id":1214,"parentId":1184,"tags":{},"startTime":1780368986887,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":17309,"timestamp":1876018243189,"id":1184,"parentId":1034,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/normalize-trailing-slash.js","layer":"app-pages-browser"},"startTime":1780368986885,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":15989,"timestamp":1876018244520,"id":1211,"parentId":1210,"tags":{},"startTime":1780368986887,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":15998,"timestamp":1876018244512,"id":1210,"parentId":1181,"tags":{},"startTime":1780368986887,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":17920,"timestamp":1876018243098,"id":1181,"parentId":1001,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/adapters.js","layer":null},"startTime":1780368986885,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":16476,"timestamp":1876018244553,"id":1217,"parentId":1216,"tags":{},"startTime":1780368986887,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":16487,"timestamp":1876018244543,"id":1216,"parentId":1185,"tags":{},"startTime":1780368986887,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":18040,"timestamp":1876018243209,"id":1185,"parentId":1027,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/is-plain-object.js","layer":null},"startTime":1780368986885,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":43972,"timestamp":1876018218550,"id":1095,"parentId":1094,"tags":{},"startTime":1780368986861,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":44763,"timestamp":1876018218507,"id":1094,"parentId":973,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/deployment-id.js","layer":null},"startTime":1780368986861,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":44168,"timestamp":1876018219106,"id":1116,"parentId":1096,"tags":{},"startTime":1780368986861,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":37,"timestamp":1876018263283,"id":1270,"parentId":1096,"tags":{},"startTime":1780368986906,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":45084,"timestamp":1876018218566,"id":1096,"parentId":970,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/deployment-id.js","layer":"app-pages-browser"},"startTime":1780368986861,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":20052,"timestamp":1876018244572,"id":1221,"parentId":1220,"tags":{},"startTime":1780368986887,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":20065,"timestamp":1876018244565,"id":1220,"parentId":1187,"tags":{},"startTime":1780368986887,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":21911,"timestamp":1876018243242,"id":1187,"parentId":1038,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/static-generation-async-storage-instance.js","layer":"shared"},"startTime":1780368986885,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":22790,"timestamp":1876018244563,"id":1219,"parentId":1218,"tags":{},"startTime":1780368986887,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":22802,"timestamp":1876018244554,"id":1218,"parentId":1186,"tags":{},"startTime":1780368986887,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":25573,"timestamp":1876018243224,"id":1186,"parentId":1039,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/redirect.js","layer":"app-pages-browser"},"startTime":1780368986885,"traceId":"f5ac02f0451719cf"}] -[{"name":"next-swc-transform","duration":19626,"timestamp":1876018249183,"id":1251,"parentId":1250,"tags":{},"startTime":1780368986891,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":19635,"timestamp":1876018249174,"id":1250,"parentId":1224,"tags":{},"startTime":1780368986891,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":20959,"timestamp":1876018248364,"id":1224,"parentId":1001,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/tracing/tracer.js","layer":null},"startTime":1780368986891,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":24803,"timestamp":1876018244528,"id":1213,"parentId":1212,"tags":{},"startTime":1780368986887,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":24812,"timestamp":1876018244521,"id":1212,"parentId":1183,"tags":{},"startTime":1780368986887,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":28209,"timestamp":1876018243172,"id":1183,"parentId":1001,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/script.js","layer":null},"startTime":1780368986885,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":22251,"timestamp":1876018249161,"id":1247,"parentId":1246,"tags":{},"startTime":1780368986891,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":22282,"timestamp":1876018249135,"id":1246,"parentId":1222,"tags":{},"startTime":1780368986891,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":23479,"timestamp":1876018248284,"id":1222,"parentId":1034,"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":1780368986891,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":22585,"timestamp":1876018249192,"id":1253,"parentId":1252,"tags":{},"startTime":1780368986891,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":22595,"timestamp":1876018249184,"id":1252,"parentId":1225,"tags":{},"startTime":1780368986891,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":23676,"timestamp":1876018248381,"id":1225,"parentId":1001,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/tracing/report-to-socket.js","layer":null},"startTime":1780368986891,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":22894,"timestamp":1876018249173,"id":1249,"parentId":1248,"tags":{},"startTime":1780368986891,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":22905,"timestamp":1876018249163,"id":1248,"parentId":1223,"tags":{},"startTime":1780368986891,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":23867,"timestamp":1876018248335,"id":1223,"parentId":1036,"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":1780368986891,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":23008,"timestamp":1876018249201,"id":1255,"parentId":1254,"tags":{},"startTime":1780368986891,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":23017,"timestamp":1876018249193,"id":1254,"parentId":1226,"tags":{},"startTime":1780368986891,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":23999,"timestamp":1876018248398,"id":1226,"parentId":1037,"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":1780368986891,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":23187,"timestamp":1876018249217,"id":1259,"parentId":1258,"tags":{},"startTime":1780368986891,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":23196,"timestamp":1876018249210,"id":1258,"parentId":1228,"tags":{},"startTime":1780368986891,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":24323,"timestamp":1876018248435,"id":1228,"parentId":1037,"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":1780368986891,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":23541,"timestamp":1876018249232,"id":1263,"parentId":1262,"tags":{},"startTime":1780368986891,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":23549,"timestamp":1876018249226,"id":1262,"parentId":1239,"tags":{},"startTime":1780368986891,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":24148,"timestamp":1876018248898,"id":1239,"parentId":1078,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/add-base-path.js","layer":null},"startTime":1780368986891,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":23829,"timestamp":1876018249225,"id":1261,"parentId":1260,"tags":{},"startTime":1780368986891,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":23837,"timestamp":1876018249218,"id":1260,"parentId":1238,"tags":{},"startTime":1780368986891,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":24399,"timestamp":1876018248880,"id":1238,"parentId":1001,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/portal/index.js","layer":null},"startTime":1780368986891,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":24046,"timestamp":1876018249240,"id":1265,"parentId":1264,"tags":{},"startTime":1780368986891,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":24053,"timestamp":1876018249234,"id":1264,"parentId":1240,"tags":{},"startTime":1780368986891,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":24834,"timestamp":1876018248913,"id":1240,"parentId":1078,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/is-bot.js","layer":null},"startTime":1780368986891,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":24604,"timestamp":1876018249209,"id":1257,"parentId":1256,"tags":{},"startTime":1780368986891,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":24614,"timestamp":1876018249202,"id":1256,"parentId":1227,"tags":{},"startTime":1780368986891,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":25755,"timestamp":1876018248417,"id":1227,"parentId":1037,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/navigation.react-server.js","layer":"app-pages-browser"},"startTime":1780368986891,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":24942,"timestamp":1876018249248,"id":1267,"parentId":1266,"tags":{},"startTime":1780368986891,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":24950,"timestamp":1876018249241,"id":1266,"parentId":1241,"tags":{},"startTime":1780368986891,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":27046,"timestamp":1876018248936,"id":1241,"parentId":1078,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/route-loader.js","layer":null},"startTime":1780368986891,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":26685,"timestamp":1876018249309,"id":1269,"parentId":1268,"tags":{},"startTime":1780368986892,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":26780,"timestamp":1876018249249,"id":1268,"parentId":1242,"tags":{},"startTime":1780368986891,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":27411,"timestamp":1876018248977,"id":1242,"parentId":1078,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/remove-trailing-slash.js","layer":null},"startTime":1780368986891,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":41079,"timestamp":1876018244265,"id":1189,"parentId":1182,"tags":{},"startTime":1780368986887,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":38,"timestamp":1876018285362,"id":1271,"parentId":1182,"tags":{},"startTime":1780368986928,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":42584,"timestamp":1876018243122,"id":1182,"parentId":972,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/dev/hot-reloader-types.js","layer":"app-pages-browser"},"startTime":1780368986885,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":45758,"timestamp":1876018239956,"id":1169,"parentId":1168,"tags":{},"startTime":1780368986882,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":46269,"timestamp":1876018239939,"id":1168,"parentId":1001,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/polyfills/polyfill-module.js","layer":null},"startTime":1780368986882,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":41952,"timestamp":1876018244261,"id":1188,"parentId":1170,"tags":{},"startTime":1780368986887,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":32,"timestamp":1876018286219,"id":1272,"parentId":1170,"tags":{},"startTime":1780368986928,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":46586,"timestamp":1876018239975,"id":1170,"parentId":972,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/polyfills/polyfill-module.js","layer":"app-pages-browser"},"startTime":1780368986882,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":41910,"timestamp":1876018249034,"id":1244,"parentId":1232,"tags":{},"startTime":1780368986891,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":121,"timestamp":1876018291007,"id":1324,"parentId":1232,"tags":{},"startTime":1780368986933,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":43958,"timestamp":1876018248527,"id":1232,"parentId":1041,"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":1780368986891,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":43464,"timestamp":1876018249039,"id":1245,"parentId":1235,"tags":{},"startTime":1780368986891,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":172,"timestamp":1876018292514,"id":1325,"parentId":1235,"tags":{},"startTime":1780368986935,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":44467,"timestamp":1876018248593,"id":1235,"parentId":1033,"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":1780368986891,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":44041,"timestamp":1876018249028,"id":1243,"parentId":1231,"tags":{},"startTime":1780368986891,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":36,"timestamp":1876018293079,"id":1326,"parentId":1231,"tags":{},"startTime":1780368986935,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":49881,"timestamp":1876018248474,"id":1231,"parentId":1033,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/app-render/dynamic-rendering.js","layer":"app-pages-browser"},"startTime":1780368986891,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":50943,"timestamp":1876018248461,"id":1230,"parentId":1229,"tags":{},"startTime":1780368986891,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":52262,"timestamp":1876018248452,"id":1229,"parentId":968,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/react/jsx-runtime.js","layer":null},"startTime":1780368986891,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":51926,"timestamp":1876018248874,"id":1237,"parentId":1236,"tags":{},"startTime":1780368986891,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":52686,"timestamp":1876018248648,"id":1236,"parentId":948,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react/jsx-runtime.js","layer":"app-pages-browser"},"startTime":1780368986891,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":52809,"timestamp":1876018248587,"id":1234,"parentId":1233,"tags":{},"startTime":1780368986891,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":53474,"timestamp":1876018248578,"id":1233,"parentId":1001,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/react-dom/client.js","layer":null},"startTime":1780368986891,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":16043,"timestamp":1876018289217,"id":1303,"parentId":1302,"tags":{},"startTime":1780368986931,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":16060,"timestamp":1876018289203,"id":1302,"parentId":1285,"tags":{},"startTime":1780368986931,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":18422,"timestamp":1876018288649,"id":1285,"parentId":1078,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/detect-domain-locale.js","layer":null},"startTime":1780368986931,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":17899,"timestamp":1876018289192,"id":1301,"parentId":1300,"tags":{},"startTime":1780368986931,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":17933,"timestamp":1876018289159,"id":1300,"parentId":1280,"tags":{},"startTime":1780368986931,"traceId":"f5ac02f0451719cf"},{"name":"build-module-tsx","duration":19065,"timestamp":1876018288573,"id":1280,"parentId":986,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/user-menu.tsx","layer":"app-pages-browser"},"startTime":1780368986931,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":18420,"timestamp":1876018289227,"id":1305,"parentId":1304,"tags":{},"startTime":1780368986931,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":18429,"timestamp":1876018289219,"id":1304,"parentId":1286,"tags":{},"startTime":1780368986931,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":20803,"timestamp":1876018288671,"id":1286,"parentId":1078,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/add-locale.js","layer":null},"startTime":1780368986931,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":20333,"timestamp":1876018289157,"id":1299,"parentId":1298,"tags":{},"startTime":1780368986931,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":20397,"timestamp":1876018289093,"id":1298,"parentId":1279,"tags":{},"startTime":1780368986931,"traceId":"f5ac02f0451719cf"},{"name":"build-module-tsx","duration":23324,"timestamp":1876018288495,"id":1279,"parentId":986,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/nav.tsx","layer":"app-pages-browser"},"startTime":1780368986931,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":22596,"timestamp":1876018289236,"id":1307,"parentId":1306,"tags":{},"startTime":1780368986931,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":22605,"timestamp":1876018289228,"id":1306,"parentId":1287,"tags":{},"startTime":1780368986931,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":23683,"timestamp":1876018288687,"id":1287,"parentId":1078,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/remove-locale.js","layer":null},"startTime":1780368986931,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":23120,"timestamp":1876018289262,"id":1313,"parentId":1312,"tags":{},"startTime":1780368986932,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":23129,"timestamp":1876018289254,"id":1312,"parentId":1292,"tags":{},"startTime":1780368986931,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":24290,"timestamp":1876018288745,"id":1292,"parentId":1078,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/parse-relative-url.js","layer":null},"startTime":1780368986931,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":23800,"timestamp":1876018289245,"id":1309,"parentId":1308,"tags":{},"startTime":1780368986931,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":23808,"timestamp":1876018289237,"id":1308,"parentId":1290,"tags":{},"startTime":1780368986931,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":25246,"timestamp":1876018288715,"id":1290,"parentId":1078,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/resolve-href.js","layer":null},"startTime":1780368986931,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":24718,"timestamp":1876018289253,"id":1311,"parentId":1310,"tags":{},"startTime":1780368986931,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":24727,"timestamp":1876018289246,"id":1310,"parentId":1291,"tags":{},"startTime":1780368986931,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":26437,"timestamp":1876018288730,"id":1291,"parentId":1078,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/resolve-rewrites.js","layer":null},"startTime":1780368986931,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":25890,"timestamp":1876018289287,"id":1319,"parentId":1318,"tags":{},"startTime":1780368986932,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":25898,"timestamp":1876018289279,"id":1318,"parentId":1295,"tags":{},"startTime":1780368986932,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":27129,"timestamp":1876018288790,"id":1295,"parentId":1078,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/format-url.js","layer":null},"startTime":1780368986931,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":26653,"timestamp":1876018289278,"id":1317,"parentId":1316,"tags":{},"startTime":1780368986932,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":26661,"timestamp":1876018289271,"id":1316,"parentId":1294,"tags":{},"startTime":1780368986932,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":28408,"timestamp":1876018288772,"id":1294,"parentId":1078,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/route-regex.js","layer":null},"startTime":1780368986931,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":28400,"timestamp":1876018289269,"id":1315,"parentId":1314,"tags":{},"startTime":1780368986932,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":28409,"timestamp":1876018289263,"id":1314,"parentId":1293,"tags":{},"startTime":1780368986932,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":29297,"timestamp":1876018288758,"id":1293,"parentId":1078,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/route-matcher.js","layer":null},"startTime":1780368986931,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":29360,"timestamp":1876018289296,"id":1321,"parentId":1320,"tags":{},"startTime":1780368986932,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":29370,"timestamp":1876018289288,"id":1320,"parentId":1296,"tags":{},"startTime":1780368986932,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":30022,"timestamp":1876018288805,"id":1296,"parentId":1078,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/parse-path.js","layer":null},"startTime":1780368986931,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":29566,"timestamp":1876018289306,"id":1323,"parentId":1322,"tags":{},"startTime":1780368986932,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":29576,"timestamp":1876018289297,"id":1322,"parentId":1297,"tags":{},"startTime":1780368986932,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":30471,"timestamp":1876018288822,"id":1297,"parentId":1078,"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":1780368986931,"traceId":"f5ac02f0451719cf"}] -[{"name":"next-swc-transform","duration":23196,"timestamp":1876018304326,"id":1342,"parentId":1341,"tags":{},"startTime":1780368986947,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":23211,"timestamp":1876018304318,"id":1341,"parentId":1330,"tags":{},"startTime":1780368986947,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":24031,"timestamp":1876018303994,"id":1330,"parentId":1078,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/page-path/denormalize-page-path.js","layer":null},"startTime":1780368986946,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":23721,"timestamp":1876018304317,"id":1340,"parentId":1339,"tags":{},"startTime":1780368986947,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":23731,"timestamp":1876018304308,"id":1339,"parentId":1329,"tags":{},"startTime":1780368986947,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":24322,"timestamp":1876018303973,"id":1329,"parentId":1078,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/is-local-url.js","layer":null},"startTime":1780368986946,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":24011,"timestamp":1876018304293,"id":1336,"parentId":1335,"tags":{},"startTime":1780368986947,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":24047,"timestamp":1876018304258,"id":1335,"parentId":1327,"tags":{},"startTime":1780368986947,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":24715,"timestamp":1876018303876,"id":1327,"parentId":1078,"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":1780368986946,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":24333,"timestamp":1876018304351,"id":1348,"parentId":1347,"tags":{},"startTime":1780368986947,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":24421,"timestamp":1876018304344,"id":1347,"parentId":1333,"tags":{},"startTime":1780368986947,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":25392,"timestamp":1876018304100,"id":1333,"parentId":1078,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/omit.js","layer":null},"startTime":1780368986946,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":25253,"timestamp":1876018304306,"id":1338,"parentId":1337,"tags":{},"startTime":1780368986947,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":25267,"timestamp":1876018304296,"id":1337,"parentId":1328,"tags":{},"startTime":1780368986947,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":26230,"timestamp":1876018303948,"id":1328,"parentId":1078,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/compare-states.js","layer":null},"startTime":1780368986946,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":26103,"timestamp":1876018304334,"id":1344,"parentId":1343,"tags":{},"startTime":1780368986947,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":26112,"timestamp":1876018304327,"id":1343,"parentId":1331,"tags":{},"startTime":1780368986947,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":26601,"timestamp":1876018304014,"id":1331,"parentId":1078,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/i18n/normalize-locale-path.js","layer":null},"startTime":1780368986946,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":26280,"timestamp":1876018304343,"id":1346,"parentId":1345,"tags":{},"startTime":1780368986947,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":26288,"timestamp":1876018304336,"id":1345,"parentId":1332,"tags":{},"startTime":1780368986947,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":27160,"timestamp":1876018304041,"id":1332,"parentId":1078,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/bloom-filter.js","layer":null},"startTime":1780368986946,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":26850,"timestamp":1876018304359,"id":1350,"parentId":1349,"tags":{},"startTime":1780368986947,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":26858,"timestamp":1876018304352,"id":1349,"parentId":1334,"tags":{},"startTime":1780368986947,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":27411,"timestamp":1876018304117,"id":1334,"parentId":1078,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/interpolate-as.js","layer":null},"startTime":1780368986946,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":47318,"timestamp":1876018288439,"id":1274,"parentId":1273,"tags":{},"startTime":1780368986931,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":47513,"timestamp":1876018288397,"id":1273,"parentId":939,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/react/index.js","layer":null},"startTime":1780368986931,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":47278,"timestamp":1876018288642,"id":1284,"parentId":1283,"tags":{},"startTime":1780368986931,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":47460,"timestamp":1876018288635,"id":1283,"parentId":950,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react-dom/index.js","layer":"app-pages-browser"},"startTime":1780368986931,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":47628,"timestamp":1876018288472,"id":1276,"parentId":1275,"tags":{},"startTime":1780368986931,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":47849,"timestamp":1876018288452,"id":1275,"parentId":972,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react-dom/client.js","layer":"app-pages-browser"},"startTime":1780368986931,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":47597,"timestamp":1876018288709,"id":1289,"parentId":1288,"tags":{},"startTime":1780368986931,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":47698,"timestamp":1876018288702,"id":1288,"parentId":1078,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/is-api-route.js","layer":null},"startTime":1780368986931,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":47918,"timestamp":1876018288489,"id":1278,"parentId":1277,"tags":{},"startTime":1780368986931,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":47967,"timestamp":1876018288480,"id":1277,"parentId":972,"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":1780368986931,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":47823,"timestamp":1876018288628,"id":1282,"parentId":1281,"tags":{},"startTime":1780368986931,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":47902,"timestamp":1876018288620,"id":1281,"parentId":949,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react/index.js","layer":"app-pages-browser"},"startTime":1780368986931,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":747,"timestamp":1876018341666,"id":1356,"parentId":1355,"tags":{},"startTime":1780368986984,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":7299,"timestamp":1876018343165,"id":1382,"parentId":1381,"tags":{},"startTime":1780368986985,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":7316,"timestamp":1876018343153,"id":1381,"parentId":1352,"tags":{},"startTime":1780368986985,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":13673,"timestamp":1876018337152,"id":1352,"parentId":1156,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/path-has-prefix.js","layer":null},"startTime":1780368986979,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":7689,"timestamp":1876018343150,"id":1380,"parentId":1379,"tags":{},"startTime":1780368986985,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":7721,"timestamp":1876018343119,"id":1379,"parentId":1351,"tags":{},"startTime":1780368986985,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":13896,"timestamp":1876018337087,"id":1351,"parentId":1099,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/utils/warn-once.js","layer":null},"startTime":1780368986979,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":8727,"timestamp":1876018343231,"id":1386,"parentId":1385,"tags":{},"startTime":1780368986985,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":8762,"timestamp":1876018343199,"id":1385,"parentId":1354,"tags":{},"startTime":1780368986985,"traceId":"f5ac02f0451719cf"},{"name":"build-module-tsx","duration":15114,"timestamp":1876018337221,"id":1354,"parentId":1003,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/error-boundary.tsx","layer":"app-pages-browser"},"startTime":1780368986979,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":9088,"timestamp":1876018343258,"id":1388,"parentId":1387,"tags":{},"startTime":1780368986986,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":9115,"timestamp":1876018343232,"id":1387,"parentId":1357,"tags":{},"startTime":1780368986985,"traceId":"f5ac02f0451719cf"},{"name":"build-module-ts","duration":11079,"timestamp":1876018341679,"id":1357,"parentId":1003,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/lib/utils.ts","layer":"app-pages-browser"},"startTime":1780368986984,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":9483,"timestamp":1876018343287,"id":1390,"parentId":1389,"tags":{},"startTime":1780368986986,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":9512,"timestamp":1876018343259,"id":1389,"parentId":1358,"tags":{},"startTime":1780368986986,"traceId":"f5ac02f0451719cf"},{"name":"build-module-ts","duration":11589,"timestamp":1876018341751,"id":1358,"parentId":1003,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/hooks/use-websocket.ts","layer":"app-pages-browser"},"startTime":1780368986984,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":10040,"timestamp":1876018343311,"id":1396,"parentId":1395,"tags":{},"startTime":1780368986986,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":10048,"timestamp":1876018343305,"id":1395,"parentId":1361,"tags":{},"startTime":1780368986986,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":11596,"timestamp":1876018341923,"id":1361,"parentId":1099,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/amp-mode.js","layer":null},"startTime":1780368986984,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":10223,"timestamp":1876018343303,"id":1394,"parentId":1393,"tags":{},"startTime":1780368986986,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":10231,"timestamp":1876018343296,"id":1393,"parentId":1360,"tags":{},"startTime":1780368986986,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":11781,"timestamp":1876018341898,"id":1360,"parentId":1099,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/amp-context.shared-runtime.js","layer":null},"startTime":1780368986984,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":10391,"timestamp":1876018343295,"id":1392,"parentId":1391,"tags":{},"startTime":1780368986986,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":10400,"timestamp":1876018343288,"id":1391,"parentId":1359,"tags":{},"startTime":1780368986986,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":12147,"timestamp":1876018341822,"id":1359,"parentId":1099,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/side-effect.js","layer":null},"startTime":1780368986984,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":10647,"timestamp":1876018343331,"id":1400,"parentId":1399,"tags":{},"startTime":1780368986986,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":10657,"timestamp":1876018343323,"id":1399,"parentId":1363,"tags":{},"startTime":1780368986986,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":12223,"timestamp":1876018341961,"id":1363,"parentId":1104,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/hash.js","layer":"app-pages-browser"},"startTime":1780368986984,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":10833,"timestamp":1876018343357,"id":1402,"parentId":1401,"tags":{},"startTime":1780368986986,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":10859,"timestamp":1876018343333,"id":1401,"parentId":1364,"tags":{},"startTime":1780368986986,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":12560,"timestamp":1876018341979,"id":1364,"parentId":1103,"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":1780368986984,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":11351,"timestamp":1876018343197,"id":1384,"parentId":1383,"tags":{},"startTime":1780368986985,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":11381,"timestamp":1876018343168,"id":1383,"parentId":1353,"tags":{},"startTime":1780368986985,"traceId":"f5ac02f0451719cf"},{"name":"build-module-ts","duration":18911,"timestamp":1876018337175,"id":1353,"parentId":989,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/lib/api.ts","layer":"app-pages-browser"},"startTime":1780368986979,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":12721,"timestamp":1876018343379,"id":1404,"parentId":1403,"tags":{},"startTime":1780368986986,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":12733,"timestamp":1876018343369,"id":1403,"parentId":1365,"tags":{},"startTime":1780368986986,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":14263,"timestamp":1876018342011,"id":1365,"parentId":1184,"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":1780368986984,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":12961,"timestamp":1876018343321,"id":1398,"parentId":1397,"tags":{},"startTime":1780368986986,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":12971,"timestamp":1876018343313,"id":1397,"parentId":1362,"tags":{},"startTime":1780368986986,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":14678,"timestamp":1876018341940,"id":1362,"parentId":1104,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/flight-data-helpers.js","layer":"app-pages-browser"},"startTime":1780368986984,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":13191,"timestamp":1876018343443,"id":1412,"parentId":1411,"tags":{},"startTime":1780368986986,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":13200,"timestamp":1876018343436,"id":1411,"parentId":1369,"tags":{},"startTime":1780368986986,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":14724,"timestamp":1876018342098,"id":1369,"parentId":1239,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/add-path-prefix.js","layer":null},"startTime":1780368986984,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":13395,"timestamp":1876018343435,"id":1410,"parentId":1409,"tags":{},"startTime":1780368986986,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":13403,"timestamp":1876018343427,"id":1409,"parentId":1368,"tags":{},"startTime":1780368986986,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":15016,"timestamp":1876018342084,"id":1368,"parentId":1239,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/normalize-trailing-slash.js","layer":null},"startTime":1780368986984,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":13718,"timestamp":1876018343388,"id":1406,"parentId":1405,"tags":{},"startTime":1780368986986,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":13726,"timestamp":1876018343381,"id":1405,"parentId":1366,"tags":{},"startTime":1780368986986,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":15235,"timestamp":1876018342030,"id":1366,"parentId":1184,"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":1780368986984,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":13847,"timestamp":1876018343425,"id":1408,"parentId":1407,"tags":{},"startTime":1780368986986,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":13883,"timestamp":1876018343389,"id":1407,"parentId":1367,"tags":{},"startTime":1780368986986,"traceId":"f5ac02f0451719cf"},{"name":"build-module-ts","duration":16315,"timestamp":1876018342047,"id":1367,"parentId":1006,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/lib/markdown.ts","layer":"app-pages-browser"},"startTime":1780368986984,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":14884,"timestamp":1876018343489,"id":1420,"parentId":1419,"tags":{},"startTime":1780368986986,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":14894,"timestamp":1876018343480,"id":1419,"parentId":1373,"tags":{},"startTime":1780368986986,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":16724,"timestamp":1876018342178,"id":1373,"parentId":1108,"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":1780368986984,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":15467,"timestamp":1876018343471,"id":1418,"parentId":1417,"tags":{},"startTime":1780368986986,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":15484,"timestamp":1876018343463,"id":1417,"parentId":1372,"tags":{},"startTime":1780368986986,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":18256,"timestamp":1876018342162,"id":1372,"parentId":1108,"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":1780368986984,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":16989,"timestamp":1876018343462,"id":1416,"parentId":1415,"tags":{},"startTime":1780368986986,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":16999,"timestamp":1876018343454,"id":1415,"parentId":1371,"tags":{},"startTime":1780368986986,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":18862,"timestamp":1876018342145,"id":1371,"parentId":1108,"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":1780368986984,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":17524,"timestamp":1876018343498,"id":1422,"parentId":1421,"tags":{},"startTime":1780368986986,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":17532,"timestamp":1876018343491,"id":1421,"parentId":1374,"tags":{},"startTime":1780368986986,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":19035,"timestamp":1876018342195,"id":1374,"parentId":1097,"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":1780368986984,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":17792,"timestamp":1876018343453,"id":1414,"parentId":1413,"tags":{},"startTime":1780368986986,"traceId":"f5ac02f0451719cf"}] -[{"name":"next-swc-loader","duration":17801,"timestamp":1876018343445,"id":1413,"parentId":1370,"tags":{},"startTime":1780368986986,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":19661,"timestamp":1876018342115,"id":1370,"parentId":1108,"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":1780368986984,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":18913,"timestamp":1876018343507,"id":1424,"parentId":1423,"tags":{},"startTime":1780368986986,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":18922,"timestamp":1876018343499,"id":1423,"parentId":1375,"tags":{},"startTime":1780368986986,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":20332,"timestamp":1876018342311,"id":1375,"parentId":1157,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/lazy-dynamic/bailout-to-csr.js","layer":null},"startTime":1780368986985,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":19127,"timestamp":1876018343524,"id":1428,"parentId":1427,"tags":{},"startTime":1780368986986,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":19135,"timestamp":1876018343517,"id":1427,"parentId":1377,"tags":{},"startTime":1780368986986,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":20407,"timestamp":1876018342392,"id":1377,"parentId":1180,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/image-config.js","layer":null},"startTime":1780368986985,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":19292,"timestamp":1876018343515,"id":1426,"parentId":1425,"tags":{},"startTime":1780368986986,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":19299,"timestamp":1876018343508,"id":1425,"parentId":1376,"tags":{},"startTime":1780368986986,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":21194,"timestamp":1876018342369,"id":1376,"parentId":1171,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/constants.js","layer":null},"startTime":1780368986985,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":19722,"timestamp":1876018351559,"id":1448,"parentId":1447,"tags":{},"startTime":1780368986994,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":19738,"timestamp":1876018351549,"id":1447,"parentId":1430,"tags":{},"startTime":1780368986994,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":20722,"timestamp":1876018351128,"id":1430,"parentId":1183,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/request-idle-callback.js","layer":null},"startTime":1780368986993,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":20288,"timestamp":1876018351577,"id":1450,"parentId":1449,"tags":{},"startTime":1780368986994,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":20306,"timestamp":1876018351560,"id":1449,"parentId":1431,"tags":{},"startTime":1780368986994,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":20966,"timestamp":1876018351149,"id":1431,"parentId":1187,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/async-local-storage.js","layer":"shared"},"startTime":1780368986993,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":20577,"timestamp":1876018351547,"id":1446,"parentId":1445,"tags":{},"startTime":1780368986994,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":20605,"timestamp":1876018351520,"id":1445,"parentId":1429,"tags":{},"startTime":1780368986994,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":21208,"timestamp":1876018351072,"id":1429,"parentId":1171,"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":1780368986993,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":20683,"timestamp":1876018351605,"id":1456,"parentId":1455,"tags":{},"startTime":1780368986994,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":20691,"timestamp":1876018351598,"id":1455,"parentId":1434,"tags":{},"startTime":1780368986994,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":21255,"timestamp":1876018351205,"id":1434,"parentId":1186,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/redirect-status-code.js","layer":"app-pages-browser"},"startTime":1780368986993,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":20878,"timestamp":1876018351588,"id":1452,"parentId":1451,"tags":{},"startTime":1780368986994,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":20889,"timestamp":1876018351578,"id":1451,"parentId":1432,"tags":{},"startTime":1780368986994,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":21516,"timestamp":1876018351166,"id":1432,"parentId":1186,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/request-async-storage.external.js","layer":"shared"},"startTime":1780368986993,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":21100,"timestamp":1876018351597,"id":1454,"parentId":1453,"tags":{},"startTime":1780368986994,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":21109,"timestamp":1876018351589,"id":1453,"parentId":1433,"tags":{},"startTime":1780368986994,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":21669,"timestamp":1876018351187,"id":1433,"parentId":1186,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/action-async-storage.external.js","layer":"shared"},"startTime":1780368986993,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":21249,"timestamp":1876018351612,"id":1458,"parentId":1457,"tags":{},"startTime":1780368986994,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":21257,"timestamp":1876018351606,"id":1457,"parentId":1435,"tags":{},"startTime":1780368986994,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":21712,"timestamp":1876018351222,"id":1435,"parentId":1181,"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":1780368986993,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":21320,"timestamp":1876018351620,"id":1460,"parentId":1459,"tags":{},"startTime":1780368986994,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":21327,"timestamp":1876018351613,"id":1459,"parentId":1436,"tags":{},"startTime":1780368986994,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":21939,"timestamp":1876018351237,"id":1436,"parentId":1241,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/trusted-types.js","layer":null},"startTime":1780368986993,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":4028,"timestamp":1876018369967,"id":1476,"parentId":1475,"tags":{},"startTime":1780368987012,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":4040,"timestamp":1876018369956,"id":1475,"parentId":1463,"tags":{},"startTime":1780368987012,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":6779,"timestamp":1876018367506,"id":1463,"parentId":1231,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/static-generation-bailout.js","layer":"app-pages-browser"},"startTime":1780368987010,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":4339,"timestamp":1876018369952,"id":1474,"parentId":1473,"tags":{},"startTime":1780368987012,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":4372,"timestamp":1876018369919,"id":1473,"parentId":1462,"tags":{},"startTime":1780368987012,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":7009,"timestamp":1876018367475,"id":1462,"parentId":1231,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/hooks-server-context.js","layer":"app-pages-browser"},"startTime":1780368987010,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":1814,"timestamp":1876018375282,"id":1500,"parentId":1499,"tags":{},"startTime":1780368987018,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":1825,"timestamp":1876018375274,"id":1499,"parentId":1486,"tags":{},"startTime":1780368987018,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":2310,"timestamp":1876018375033,"id":1486,"parentId":1294,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/escape-regexp.js","layer":null},"startTime":1780368987017,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":2479,"timestamp":1876018375273,"id":1498,"parentId":1497,"tags":{},"startTime":1780368987018,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":2490,"timestamp":1876018375263,"id":1497,"parentId":1483,"tags":{},"startTime":1780368987018,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":3148,"timestamp":1876018375002,"id":1483,"parentId":1225,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/pages/websocket.js","layer":null},"startTime":1780368987017,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":3139,"timestamp":1876018375226,"id":1494,"parentId":1493,"tags":{},"startTime":1780368987017,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":3186,"timestamp":1876018375181,"id":1493,"parentId":1481,"tags":{},"startTime":1780368987017,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":3714,"timestamp":1876018375262,"id":1496,"parentId":1495,"tags":{},"startTime":1780368987018,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":3748,"timestamp":1876018375229,"id":1495,"parentId":1482,"tags":{},"startTime":1780368987017,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":5169,"timestamp":1876018375293,"id":1502,"parentId":1501,"tags":{},"startTime":1780368987018,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":5183,"timestamp":1876018375283,"id":1501,"parentId":1487,"tags":{},"startTime":1780368987018,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":5620,"timestamp":1876018375049,"id":1487,"parentId":1330,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/page-path/normalize-path-sep.js","layer":null},"startTime":1780368987017,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":5226,"timestamp":1876018375459,"id":1508,"parentId":1507,"tags":{},"startTime":1780368987018,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":5238,"timestamp":1876018375448,"id":1507,"parentId":1490,"tags":{},"startTime":1780368987018,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":5754,"timestamp":1876018375103,"id":1490,"parentId":1297,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/remove-path-prefix.js","layer":null},"startTime":1780368987017,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":5562,"timestamp":1876018375302,"id":1504,"parentId":1503,"tags":{},"startTime":1780368987018,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":5571,"timestamp":1876018375294,"id":1503,"parentId":1488,"tags":{},"startTime":1780368987018,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":6018,"timestamp":1876018375068,"id":1488,"parentId":1291,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/path-match.js","layer":null},"startTime":1780368987017,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":30710,"timestamp":1876018351259,"id":1438,"parentId":1437,"tags":{},"startTime":1780368986994,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":31288,"timestamp":1876018351250,"id":1437,"parentId":1177,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/helpers/interception-routes.js","layer":null},"startTime":1780368986993,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":31147,"timestamp":1876018351395,"id":1442,"parentId":1439,"tags":{},"startTime":1780368986994,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":45,"timestamp":1876018382550,"id":1525,"parentId":1439,"tags":{},"startTime":1780368987025,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":31826,"timestamp":1876018351272,"id":1439,"parentId":1110,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/helpers/interception-routes.js","layer":"app-pages-browser"},"startTime":1780368986994,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":31719,"timestamp":1876018351403,"id":1444,"parentId":1441,"tags":{},"startTime":1780368986994,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":33,"timestamp":1876018383129,"id":1526,"parentId":1441,"tags":{},"startTime":1780368987025,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":32081,"timestamp":1876018351353,"id":1441,"parentId":987,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/api/navigation.js","layer":"app-pages-browser"},"startTime":1780368986994,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":32047,"timestamp":1876018351397,"id":1443,"parentId":1440,"tags":{},"startTime":1780368986994,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":27,"timestamp":1876018383449,"id":1527,"parentId":1440,"tags":{},"startTime":1780368987026,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":32256,"timestamp":1876018351317,"id":1440,"parentId":988,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/api/link.js","layer":"app-pages-browser"},"startTime":1780368986994,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":10385,"timestamp":1876018375467,"id":1510,"parentId":1509,"tags":{},"startTime":1780368987018,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":10401,"timestamp":1876018375459,"id":1509,"parentId":1491,"tags":{},"startTime":1780368987018,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":10927,"timestamp":1876018375117,"id":1491,"parentId":1327,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/add-path-suffix.js","layer":null},"startTime":1780368987017,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":10577,"timestamp":1876018375474,"id":1512,"parentId":1511,"tags":{},"startTime":1780368987018,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":10584,"timestamp":1876018375468,"id":1511,"parentId":1492,"tags":{},"startTime":1780368987018,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":11103,"timestamp":1876018375131,"id":1492,"parentId":1327,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/add-locale.js","layer":null},"startTime":1780368987017,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":10816,"timestamp":1876018375447,"id":1506,"parentId":1505,"tags":{},"startTime":1780368987018,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":10961,"timestamp":1876018375303,"id":1505,"parentId":1489,"tags":{},"startTime":1780368987018,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":12160,"timestamp":1876018375086,"id":1489,"parentId":1291,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/prepare-destination.js","layer":null},"startTime":1780368987017,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":9728,"timestamp":1876018377535,"id":1524,"parentId":1523,"tags":{},"startTime":1780368987020,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":9756,"timestamp":1876018377507,"id":1523,"parentId":1520,"tags":{},"startTime":1780368987020,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":11136,"timestamp":1876018377506,"id":1522,"parentId":1521,"tags":{},"startTime":1780368987020,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":11178,"timestamp":1876018377468,"id":1521,"parentId":1519,"tags":{},"startTime":1780368987020,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":315369,"timestamp":1876018367780,"id":1467,"parentId":1466,"tags":{},"startTime":1780368987010,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":315879,"timestamp":1876018367769,"id":1466,"parentId":939,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_interop_require_default.js","layer":null},"startTime":1780368987010,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":313853,"timestamp":1876018369816,"id":1472,"parentId":1469,"tags":{},"startTime":1780368987012,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":87,"timestamp":1876018683680,"id":1529,"parentId":1469,"tags":{},"startTime":1780368987326,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":316229,"timestamp":1876018367835,"id":1469,"parentId":949,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_interop_require_default.js","layer":"app-pages-browser"},"startTime":1780368987010,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":316336,"timestamp":1876018367750,"id":1465,"parentId":1464,"tags":{},"startTime":1780368987010,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":317123,"timestamp":1876018367527,"id":1464,"parentId":1001,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_interop_require_wildcard.js","layer":null},"startTime":1780368987010,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":314844,"timestamp":1876018369814,"id":1471,"parentId":1468,"tags":{},"startTime":1780368987012,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":39,"timestamp":1876018684666,"id":1530,"parentId":1468,"tags":{},"startTime":1780368987327,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":317297,"timestamp":1876018367787,"id":1468,"parentId":950,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_interop_require_wildcard.js","layer":"app-pages-browser"},"startTime":1780368987010,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":315297,"timestamp":1876018369802,"id":1470,"parentId":1461,"tags":{},"startTime":1780368987012,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":31,"timestamp":1876018685105,"id":1531,"parentId":1461,"tags":{},"startTime":1780368987327,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":318090,"timestamp":1876018367379,"id":1461,"parentId":1231,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/url.js","layer":"app-pages-browser"},"startTime":1780368987010,"traceId":"f5ac02f0451719cf"},{"name":"build-module-tsx","duration":312851,"timestamp":1876018374887,"id":1481,"parentId":1026,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/kline-chart.tsx","layer":"app-pages-browser"},"startTime":1780368987017,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":313957,"timestamp":1876018375026,"id":1485,"parentId":1484,"tags":{},"startTime":1780368987017,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":314958,"timestamp":1876018375019,"id":1484,"parentId":1294,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/constants.js","layer":null},"startTime":1780368987017,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":315135,"timestamp":1876018374856,"id":1478,"parentId":1477,"tags":{},"startTime":1780368987017,"traceId":"f5ac02f0451719cf"}] -[{"name":"build-module-js","duration":315509,"timestamp":1876018374825,"id":1477,"parentId":1229,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/react/cjs/react-jsx-runtime.production.min.js","layer":null},"startTime":1780368987017,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":315462,"timestamp":1876018374878,"id":1480,"parentId":1479,"tags":{},"startTime":1780368987017,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":315725,"timestamp":1876018374867,"id":1479,"parentId":1236,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react/cjs/react-jsx-runtime.production.min.js","layer":"app-pages-browser"},"startTime":1780368987017,"traceId":"f5ac02f0451719cf"},{"name":"build-module-tsx","duration":323880,"timestamp":1876018374954,"id":1482,"parentId":1025,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/stock-card.tsx","layer":"app-pages-browser"},"startTime":1780368987017,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":11941,"timestamp":1876018686976,"id":1544,"parentId":1543,"tags":{},"startTime":1780368987329,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":11976,"timestamp":1876018686942,"id":1543,"parentId":1534,"tags":{},"startTime":1780368987329,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":12571,"timestamp":1876018686685,"id":1534,"parentId":1376,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/modern-browserslist-target.js","layer":null},"startTime":1780368987329,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":12254,"timestamp":1876018687018,"id":1552,"parentId":1551,"tags":{},"startTime":1780368987329,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":12262,"timestamp":1876018687010,"id":1551,"parentId":1538,"tags":{},"startTime":1780368987329,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":13010,"timestamp":1876018686808,"id":1538,"parentId":1364,"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":1780368987329,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":12847,"timestamp":1876018686991,"id":1546,"parentId":1545,"tags":{},"startTime":1780368987329,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":12860,"timestamp":1876018686978,"id":1545,"parentId":1535,"tags":{},"startTime":1780368987329,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":13818,"timestamp":1876018686739,"id":1535,"parentId":1373,"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":1780368987329,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":13535,"timestamp":1876018687033,"id":1556,"parentId":1555,"tags":{},"startTime":1780368987329,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":13543,"timestamp":1876018687026,"id":1555,"parentId":1540,"tags":{},"startTime":1780368987329,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":14310,"timestamp":1876018686843,"id":1540,"parentId":1364,"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":1780368987329,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":14170,"timestamp":1876018687000,"id":1548,"parentId":1547,"tags":{},"startTime":1780368987329,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":14179,"timestamp":1876018686992,"id":1547,"parentId":1536,"tags":{},"startTime":1780368987329,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":17152,"timestamp":1876018686767,"id":1536,"parentId":1364,"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":1780368987329,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":16935,"timestamp":1876018687009,"id":1550,"parentId":1549,"tags":{},"startTime":1780368987329,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":16944,"timestamp":1876018687001,"id":1549,"parentId":1537,"tags":{},"startTime":1780368987329,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":17554,"timestamp":1876018686788,"id":1537,"parentId":1364,"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":1780368987329,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":327772,"timestamp":1876018376992,"id":1514,"parentId":1513,"tags":{},"startTime":1780368987019,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":329503,"timestamp":1876018376963,"id":1513,"parentId":1273,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/react/cjs/react.production.min.js","layer":null},"startTime":1780368987019,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":330425,"timestamp":1876018377011,"id":1516,"parentId":1515,"tags":{},"startTime":1780368987019,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":335026,"timestamp":1876018377001,"id":1515,"parentId":1281,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react/cjs/react.production.min.js","layer":"app-pages-browser"},"startTime":1780368987019,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":334679,"timestamp":1876018377369,"id":1518,"parentId":1517,"tags":{},"startTime":1780368987020,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":334833,"timestamp":1876018377357,"id":1517,"parentId":1277,"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":1780368987020,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":25197,"timestamp":1876018687026,"id":1554,"parentId":1553,"tags":{},"startTime":1780368987329,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":25206,"timestamp":1876018687018,"id":1553,"parentId":1539,"tags":{},"startTime":1780368987329,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":26086,"timestamp":1876018686825,"id":1539,"parentId":1364,"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":1780368987329,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":25885,"timestamp":1876018687041,"id":1558,"parentId":1557,"tags":{},"startTime":1780368987329,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":25892,"timestamp":1876018687034,"id":1557,"parentId":1541,"tags":{},"startTime":1780368987329,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":26549,"timestamp":1876018686862,"id":1541,"parentId":1364,"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":1780368987329,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":26779,"timestamp":1876018687049,"id":1560,"parentId":1559,"tags":{},"startTime":1780368987329,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":26787,"timestamp":1876018687042,"id":1559,"parentId":1542,"tags":{},"startTime":1780368987329,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":27710,"timestamp":1876018686878,"id":1542,"parentId":1364,"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":1780368987329,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":17268,"timestamp":1876018697329,"id":1564,"parentId":1563,"tags":{},"startTime":1780368987340,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":17312,"timestamp":1876018697285,"id":1563,"parentId":1561,"tags":{},"startTime":1780368987340,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":23539,"timestamp":1876018691418,"id":1561,"parentId":1489,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/app-router-headers.js","layer":null},"startTime":1780368987334,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":17620,"timestamp":1876018697348,"id":1566,"parentId":1565,"tags":{},"startTime":1780368987340,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":17633,"timestamp":1876018697335,"id":1565,"parentId":1562,"tags":{},"startTime":1780368987340,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":23695,"timestamp":1876018691484,"id":1562,"parentId":1181,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/index.js","layer":null},"startTime":1780368987334,"traceId":"f5ac02f0451719cf"},{"name":"add-entry","duration":850833,"timestamp":1876017864491,"id":903,"parentId":897,"tags":{"request":"next-client-pages-loader?absolutePagePath=next%2Fdist%2Fpages%2F_app&page=%2F_app!"},"startTime":1780368986507,"traceId":"f5ac02f0451719cf"},{"name":"add-entry","duration":850943,"timestamp":1876017864430,"id":901,"parentId":897,"tags":{"request":"next-client-pages-loader?absolutePagePath=next%2Fdist%2Fclient%2Fcomponents%2Fnot-found-error&page=%2F_not-found%2Fpage!"},"startTime":1780368986507,"traceId":"f5ac02f0451719cf"},{"name":"add-entry","duration":850741,"timestamp":1876017864648,"id":915,"parentId":897,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(public)%2Flogin%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1780368986507,"traceId":"f5ac02f0451719cf"},{"name":"add-entry","duration":850752,"timestamp":1876017864640,"id":910,"parentId":897,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fchat%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1780368986507,"traceId":"f5ac02f0451719cf"},{"name":"add-entry","duration":850760,"timestamp":1876017864635,"id":908,"parentId":897,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fsentiment%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1780368986507,"traceId":"f5ac02f0451719cf"},{"name":"add-entry","duration":850761,"timestamp":1876017864643,"id":912,"parentId":897,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fwatchlists%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1780368986507,"traceId":"f5ac02f0451719cf"},{"name":"add-entry","duration":852976,"timestamp":1876017864478,"id":902,"parentId":897,"tags":{"request":"next-client-pages-loader?absolutePagePath=next%2Fdist%2Fpages%2F_error&page=%2F_error!"},"startTime":1780368986507,"traceId":"f5ac02f0451719cf"},{"name":"add-entry","duration":853272,"timestamp":1876017864644,"id":913,"parentId":897,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Frecommendations%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1780368986507,"traceId":"f5ac02f0451719cf"},{"name":"build-module-tsx","duration":344958,"timestamp":1876018377428,"id":1520,"parentId":1007,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/theme-toggle.tsx","layer":"app-pages-browser"},"startTime":1780368987020,"traceId":"f5ac02f0451719cf"},{"name":"build-module-tsx","duration":345024,"timestamp":1876018377374,"id":1519,"parentId":1026,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/capital-flow.tsx","layer":"app-pages-browser"},"startTime":1780368987020,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":5303,"timestamp":1876018718105,"id":1572,"parentId":1571,"tags":{},"startTime":1780368987360,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":5337,"timestamp":1876018718074,"id":1571,"parentId":1567,"tags":{},"startTime":1780368987360,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":6507,"timestamp":1876018717300,"id":1567,"parentId":1432,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/request-async-storage-instance.js","layer":"shared"},"startTime":1780368987360,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":5696,"timestamp":1876018718121,"id":1574,"parentId":1573,"tags":{},"startTime":1780368987360,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":5708,"timestamp":1876018718109,"id":1573,"parentId":1568,"tags":{},"startTime":1780368987360,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":6596,"timestamp":1876018717387,"id":1568,"parentId":1433,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/action-async-storage-instance.js","layer":"shared"},"startTime":1780368987360,"traceId":"f5ac02f0451719cf"},{"name":"add-entry","duration":861843,"timestamp":1876017864642,"id":911,"parentId":897,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fdashboard%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1780368986507,"traceId":"f5ac02f0451719cf"},{"name":"postcss-process","duration":296505,"timestamp":1876018591494,"id":1528,"parentId":1378,"tags":{},"startTime":1780368987234,"traceId":"f5ac02f0451719cf"},{"name":"postcss-loader","duration":545525,"timestamp":1876018342528,"id":1378,"parentId":1355,"tags":{},"startTime":1780368986985,"traceId":"f5ac02f0451719cf"},{"name":"css-loader","duration":23146,"timestamp":1876018888169,"id":1587,"parentId":1355,"tags":{"astUsed":"true"},"startTime":1780368987530,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":225913,"timestamp":1876018686666,"id":1533,"parentId":1532,"tags":{},"startTime":1780368987329,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":275829,"timestamp":1876018686621,"id":1532,"parentId":1283,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react-dom/cjs/react-dom.production.min.js","layer":"app-pages-browser"},"startTime":1780368987329,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":237285,"timestamp":1876018726567,"id":1586,"parentId":1585,"tags":{},"startTime":1780368987369,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":237298,"timestamp":1876018726559,"id":1585,"parentId":1578,"tags":{},"startTime":1780368987369,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":239893,"timestamp":1876018724511,"id":1578,"parentId":1489,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/parse-url.js","layer":null},"startTime":1780368987367,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":239252,"timestamp":1876018726557,"id":1584,"parentId":1583,"tags":{},"startTime":1780368987369,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":239264,"timestamp":1876018726548,"id":1583,"parentId":1577,"tags":{},"startTime":1780368987369,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":241928,"timestamp":1876018724386,"id":1577,"parentId":1439,"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":1780368987367,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":239786,"timestamp":1876018726546,"id":1582,"parentId":1581,"tags":{},"startTime":1780368987369,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":239799,"timestamp":1876018726534,"id":1581,"parentId":1576,"tags":{},"startTime":1780368987369,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":242311,"timestamp":1876018724365,"id":1576,"parentId":1437,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/app-paths.js","layer":null},"startTime":1780368987367,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":240605,"timestamp":1876018726529,"id":1580,"parentId":1579,"tags":{},"startTime":1780368987369,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":240641,"timestamp":1876018726496,"id":1579,"parentId":1575,"tags":{},"startTime":1780368987369,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":244106,"timestamp":1876018724303,"id":1575,"parentId":1440,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/link.js","layer":"app-pages-browser"},"startTime":1780368987367,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":259023,"timestamp":1876018717425,"id":1570,"parentId":1569,"tags":{},"startTime":1780368987360,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":259580,"timestamp":1876018717413,"id":1569,"parentId":1233,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/react-dom/index.js","layer":null},"startTime":1780368987360,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":1599,"timestamp":1876018978067,"id":1608,"parentId":1607,"tags":{},"startTime":1780368987620,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":1617,"timestamp":1876018978053,"id":1607,"parentId":1592,"tags":{},"startTime":1780368987620,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":2620,"timestamp":1876018977522,"id":1592,"parentId":1535,"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":1780368987620,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":2577,"timestamp":1876018978052,"id":1606,"parentId":1605,"tags":{},"startTime":1780368987620,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":2593,"timestamp":1876018978038,"id":1605,"parentId":1591,"tags":{},"startTime":1780368987620,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":3415,"timestamp":1876018977494,"id":1591,"parentId":1483,"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":1780368987620,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":2839,"timestamp":1876018978078,"id":1610,"parentId":1609,"tags":{},"startTime":1780368987620,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":2849,"timestamp":1876018978068,"id":1609,"parentId":1593,"tags":{},"startTime":1780368987620,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":3773,"timestamp":1876018977545,"id":1593,"parentId":1540,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/promise-queue.js","layer":"app-pages-browser"},"startTime":1780368987620,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":3298,"timestamp":1876018978035,"id":1604,"parentId":1603,"tags":{},"startTime":1780368987620,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":3374,"timestamp":1876018977960,"id":1603,"parentId":1590,"tags":{},"startTime":1780368987620,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":3834,"timestamp":1876018978087,"id":1612,"parentId":1611,"tags":{},"startTime":1780368987620,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":3843,"timestamp":1876018978079,"id":1611,"parentId":1594,"tags":{},"startTime":1780368987620,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":4565,"timestamp":1876018977565,"id":1594,"parentId":1536,"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":1780368987620,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":4032,"timestamp":1876018978105,"id":1616,"parentId":1615,"tags":{},"startTime":1780368987620,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":4040,"timestamp":1876018978097,"id":1615,"parentId":1596,"tags":{},"startTime":1780368987620,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":4736,"timestamp":1876018977682,"id":1596,"parentId":1536,"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":1780368987620,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":4322,"timestamp":1876018978113,"id":1618,"parentId":1617,"tags":{},"startTime":1780368987620,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":4330,"timestamp":1876018978106,"id":1617,"parentId":1597,"tags":{},"startTime":1780368987620,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":4860,"timestamp":1876018977721,"id":1597,"parentId":1536,"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":1780368987620,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":4464,"timestamp":1876018978122,"id":1620,"parentId":1619,"tags":{},"startTime":1780368987620,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":4472,"timestamp":1876018978115,"id":1619,"parentId":1598,"tags":{},"startTime":1780368987620,"traceId":"f5ac02f0451719cf"}] -[{"name":"build-module-js","duration":4996,"timestamp":1876018977752,"id":1598,"parentId":1536,"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":1780368987620,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":5170,"timestamp":1876018978149,"id":1626,"parentId":1625,"tags":{},"startTime":1780368987620,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":5178,"timestamp":1876018978141,"id":1625,"parentId":1601,"tags":{},"startTime":1780368987620,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":5687,"timestamp":1876018977810,"id":1601,"parentId":1537,"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":1780368987620,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":5372,"timestamp":1876018978131,"id":1622,"parentId":1621,"tags":{},"startTime":1780368987620,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":5380,"timestamp":1876018978123,"id":1621,"parentId":1599,"tags":{},"startTime":1780368987620,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":5979,"timestamp":1876018977772,"id":1599,"parentId":1536,"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":1780368987620,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":5645,"timestamp":1876018978140,"id":1624,"parentId":1623,"tags":{},"startTime":1780368987620,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":5653,"timestamp":1876018978132,"id":1623,"parentId":1600,"tags":{},"startTime":1780368987620,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":6226,"timestamp":1876018977792,"id":1600,"parentId":1536,"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":1780368987620,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":8763,"timestamp":1876018978902,"id":1639,"parentId":1638,"tags":{},"startTime":1780368987621,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":8782,"timestamp":1876018978886,"id":1638,"parentId":1629,"tags":{},"startTime":1780368987621,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":9445,"timestamp":1876018978730,"id":1629,"parentId":1575,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/resolve-href.js","layer":"app-pages-browser"},"startTime":1780368987621,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":9270,"timestamp":1876018978912,"id":1641,"parentId":1640,"tags":{},"startTime":1780368987621,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":9280,"timestamp":1876018978903,"id":1640,"parentId":1630,"tags":{},"startTime":1780368987621,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":9620,"timestamp":1876018978762,"id":1630,"parentId":1575,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/add-locale.js","layer":"app-pages-browser"},"startTime":1780368987621,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":10320,"timestamp":1876018978096,"id":1614,"parentId":1613,"tags":{},"startTime":1780368987620,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":10328,"timestamp":1876018978088,"id":1613,"parentId":1595,"tags":{},"startTime":1780368987620,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":11972,"timestamp":1876018977624,"id":1595,"parentId":1538,"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":1780368987620,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":10668,"timestamp":1876018978937,"id":1647,"parentId":1646,"tags":{},"startTime":1780368987621,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":10676,"timestamp":1876018978929,"id":1646,"parentId":1633,"tags":{},"startTime":1780368987621,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":10892,"timestamp":1876018978820,"id":1633,"parentId":1576,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/segment.js","layer":null},"startTime":1780368987621,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":10798,"timestamp":1876018978920,"id":1643,"parentId":1642,"tags":{},"startTime":1780368987621,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":10807,"timestamp":1876018978912,"id":1642,"parentId":1631,"tags":{},"startTime":1780368987621,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":11445,"timestamp":1876018978784,"id":1631,"parentId":1575,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/utils.js","layer":"app-pages-browser"},"startTime":1780368987621,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":11306,"timestamp":1876018978928,"id":1645,"parentId":1644,"tags":{},"startTime":1780368987621,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":11314,"timestamp":1876018978921,"id":1644,"parentId":1632,"tags":{},"startTime":1780368987621,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":11533,"timestamp":1876018978802,"id":1632,"parentId":1575,"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":1780368987621,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":11404,"timestamp":1876018978945,"id":1649,"parentId":1648,"tags":{},"startTime":1780368987621,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":11412,"timestamp":1876018978937,"id":1648,"parentId":1634,"tags":{},"startTime":1780368987621,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":11638,"timestamp":1876018978834,"id":1634,"parentId":1575,"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":1780368987621,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":12684,"timestamp":1876018978157,"id":1628,"parentId":1627,"tags":{},"startTime":1780368987620,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":12693,"timestamp":1876018978149,"id":1627,"parentId":1602,"tags":{},"startTime":1780368987620,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":13484,"timestamp":1876018977828,"id":1602,"parentId":1562,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/sorted-routes.js","layer":null},"startTime":1780368987620,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":18269,"timestamp":1876018973089,"id":1589,"parentId":1588,"tags":{},"startTime":1780368987615,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":18411,"timestamp":1876018973047,"id":1588,"parentId":1489,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/api-utils/get-cookie-parser.js","layer":null},"startTime":1780368987615,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":20336,"timestamp":1876018978953,"id":1651,"parentId":1650,"tags":{},"startTime":1780368987621,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":20346,"timestamp":1876018978946,"id":1650,"parentId":1635,"tags":{},"startTime":1780368987621,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":20882,"timestamp":1876018978854,"id":1635,"parentId":1575,"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":1780368987621,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":2620,"timestamp":1876018997439,"id":1661,"parentId":1660,"tags":{},"startTime":1780368987640,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":2649,"timestamp":1876018997412,"id":1660,"parentId":1654,"tags":{},"startTime":1780368987640,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":4492,"timestamp":1876018995659,"id":1654,"parentId":1576,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/page-path/ensure-leading-slash.js","layer":null},"startTime":1780368987638,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":2757,"timestamp":1876018997410,"id":1659,"parentId":1658,"tags":{},"startTime":1780368987640,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":2771,"timestamp":1876018997397,"id":1658,"parentId":1653,"tags":{},"startTime":1780368987640,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":4609,"timestamp":1876018995626,"id":1653,"parentId":1577,"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":1780368987638,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":2779,"timestamp":1876018997460,"id":1663,"parentId":1662,"tags":{},"startTime":1780368987640,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":2797,"timestamp":1876018997443,"id":1662,"parentId":1655,"tags":{},"startTime":1780368987640,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":4769,"timestamp":1876018995678,"id":1655,"parentId":1575,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/get-domain-locale.js","layer":"app-pages-browser"},"startTime":1780368987638,"traceId":"f5ac02f0451719cf"},{"name":"build-module-tsx","duration":24787,"timestamp":1876018977379,"id":1590,"parentId":1280,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/change-password-dialog.tsx","layer":"app-pages-browser"},"startTime":1780368987620,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":4877,"timestamp":1876018997392,"id":1657,"parentId":1656,"tags":{},"startTime":1780368987640,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":4919,"timestamp":1876018997352,"id":1656,"parentId":1652,"tags":{},"startTime":1780368987640,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":7349,"timestamp":1876018995526,"id":1652,"parentId":1575,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/use-intersection.js","layer":"app-pages-browser"},"startTime":1780368987638,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":24863,"timestamp":1876018978880,"id":1637,"parentId":1636,"tags":{},"startTime":1780368987621,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":26628,"timestamp":1876018978869,"id":1636,"parentId":1517,"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.production.min.js","layer":"app-pages-browser"},"startTime":1780368987621,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":2338,"timestamp":1876019007100,"id":1669,"parentId":1668,"tags":{},"startTime":1780368987649,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":2380,"timestamp":1876019007064,"id":1668,"parentId":1664,"tags":{},"startTime":1780368987649,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":4039,"timestamp":1876019005893,"id":1664,"parentId":1629,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/querystring.js","layer":"app-pages-browser"},"startTime":1780368987648,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":3015,"timestamp":1876019007129,"id":1673,"parentId":1672,"tags":{},"startTime":1780368987649,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":3027,"timestamp":1876019007118,"id":1672,"parentId":1666,"tags":{},"startTime":1780368987649,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":4428,"timestamp":1876019006035,"id":1666,"parentId":1629,"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":1780368987648,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":3351,"timestamp":1876019007140,"id":1675,"parentId":1674,"tags":{},"startTime":1780368987649,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":3361,"timestamp":1876019007130,"id":1674,"parentId":1667,"tags":{},"startTime":1780368987649,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":4541,"timestamp":1876019006061,"id":1667,"parentId":1629,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/index.js","layer":"app-pages-browser"},"startTime":1780368987648,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":4245,"timestamp":1876019007116,"id":1671,"parentId":1670,"tags":{},"startTime":1780368987649,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":4258,"timestamp":1876019007104,"id":1670,"parentId":1665,"tags":{},"startTime":1780368987649,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":5493,"timestamp":1876019005986,"id":1665,"parentId":1629,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/omit.js","layer":"app-pages-browser"},"startTime":1780368987648,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":2717,"timestamp":1876019009302,"id":1683,"parentId":1682,"tags":{},"startTime":1780368987652,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":2755,"timestamp":1876019009266,"id":1682,"parentId":1676,"tags":{},"startTime":1780368987652,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":3632,"timestamp":1876019008604,"id":1676,"parentId":1592,"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":1780368987651,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":2921,"timestamp":1876019009321,"id":1685,"parentId":1684,"tags":{},"startTime":1780368987652,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":2936,"timestamp":1876019009307,"id":1684,"parentId":1677,"tags":{},"startTime":1780368987652,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":3734,"timestamp":1876019008662,"id":1677,"parentId":1591,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/normalized-asset-prefix.js","layer":null},"startTime":1780368987651,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":4038,"timestamp":1876019010878,"id":1688,"parentId":1687,"tags":{},"startTime":1780368987653,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":4061,"timestamp":1876019010857,"id":1687,"parentId":1686,"tags":{},"startTime":1780368987653,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":4405,"timestamp":1876019010783,"id":1686,"parentId":1652,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/request-idle-callback.js","layer":"app-pages-browser"},"startTime":1780368987653,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":7264,"timestamp":1876019008694,"id":1679,"parentId":1678,"tags":{},"startTime":1780368987651,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":47413,"timestamp":1876019008682,"id":1678,"parentId":1569,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/react-dom/cjs/react-dom.production.min.js","layer":null},"startTime":1780368987651,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":40741,"timestamp":1876019015677,"id":1700,"parentId":1699,"tags":{},"startTime":1780368987658,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":40752,"timestamp":1876019015669,"id":1699,"parentId":1692,"tags":{},"startTime":1780368987658,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":41207,"timestamp":1876019015585,"id":1692,"parentId":1667,"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":1780368987658,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":41175,"timestamp":1876019015644,"id":1694,"parentId":1693,"tags":{},"startTime":1780368987658,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":41202,"timestamp":1876019015619,"id":1693,"parentId":1689,"tags":{},"startTime":1780368987658,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":41567,"timestamp":1876019015489,"id":1689,"parentId":1666,"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":1780368987658,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":47848,"timestamp":1876019009228,"id":1681,"parentId":1680,"tags":{},"startTime":1780368987651,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":52058,"timestamp":1876019009199,"id":1680,"parentId":1173,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/web-vitals/web-vitals.js","layer":null},"startTime":1780368987651,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":48549,"timestamp":1876019015667,"id":1698,"parentId":1697,"tags":{},"startTime":1780368987658,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":48572,"timestamp":1876019015658,"id":1697,"parentId":1691,"tags":{},"startTime":1780368987658,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":50047,"timestamp":1876019015565,"id":1691,"parentId":1667,"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":1780368987658,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":49972,"timestamp":1876019015657,"id":1696,"parentId":1695,"tags":{},"startTime":1780368987658,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":49985,"timestamp":1876019015646,"id":1695,"parentId":1690,"tags":{},"startTime":1780368987658,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":51388,"timestamp":1876019015541,"id":1690,"parentId":1666,"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":1780368987658,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":79,"timestamp":1876019071865,"id":1705,"parentId":1703,"tags":{},"startTime":1780368987714,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":35,"timestamp":1876019071955,"id":1708,"parentId":1703,"tags":{},"startTime":1780368987714,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":926,"timestamp":1876019071733,"id":1703,"parentId":1690,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/constants.js","layer":"app-pages-browser"},"startTime":1780368987714,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-transform","duration":2547,"timestamp":1876019071902,"id":1707,"parentId":1706,"tags":{},"startTime":1780368987714,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":2586,"timestamp":1876019071867,"id":1706,"parentId":1704,"tags":{},"startTime":1780368987714,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":2904,"timestamp":1876019071828,"id":1704,"parentId":1690,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/escape-regexp.js","layer":"app-pages-browser"},"startTime":1780368987714,"traceId":"f5ac02f0451719cf"},{"name":"add-entry","duration":1210341,"timestamp":1876017864650,"id":917,"parentId":897,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(public)%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1780368986507,"traceId":"f5ac02f0451719cf"},{"name":"add-entry","duration":1210491,"timestamp":1876017864508,"id":906,"parentId":897,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fsectors%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1780368986507,"traceId":"f5ac02f0451719cf"},{"name":"add-entry","duration":1210364,"timestamp":1876017864639,"id":909,"parentId":897,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fsectors%2F%5Bname%5D%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1780368986507,"traceId":"f5ac02f0451719cf"},{"name":"add-entry","duration":1210397,"timestamp":1876017864610,"id":907,"parentId":897,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fauth-guard.tsx%22%2C%22ids%22%3A%5B%22AuthGuard%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fmobile-shell.tsx%22%2C%22ids%22%3A%5B%22MobileShell%22%5D%7D&server=false!"},"startTime":1780368986507,"traceId":"f5ac02f0451719cf"}] -[{"name":"read-resource","duration":4447,"timestamp":1876019071443,"id":1702,"parentId":1701,"tags":{},"startTime":1780368987714,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":35,"timestamp":1876019075898,"id":1711,"parentId":1701,"tags":{},"startTime":1780368987718,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":5369,"timestamp":1876019071335,"id":1701,"parentId":1481,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/index.js","layer":"app-pages-browser"},"startTime":1780368987714,"traceId":"f5ac02f0451719cf"},{"name":"build-module-css","duration":740304,"timestamp":1876018337268,"id":1355,"parentId":1179,"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":1780368986980,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":2844,"timestamp":1876019074972,"id":1710,"parentId":1709,"tags":{},"startTime":1780368987717,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":4095,"timestamp":1876019074938,"id":1709,"parentId":1488,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/path-to-regexp/index.js","layer":null},"startTime":1780368987717,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":3936,"timestamp":1876019087464,"id":1720,"parentId":1714,"tags":{},"startTime":1780368987730,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":32,"timestamp":1876019091424,"id":1732,"parentId":1714,"tags":{},"startTime":1780368987734,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":5056,"timestamp":1876019087279,"id":1714,"parentId":1701,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/renderers.js","layer":"app-pages-browser"},"startTime":1780368987730,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":4873,"timestamp":1876019087472,"id":1722,"parentId":1716,"tags":{},"startTime":1780368987730,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":94,"timestamp":1876019092351,"id":1733,"parentId":1716,"tags":{},"startTime":1780368987735,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":6222,"timestamp":1876019087361,"id":1716,"parentId":1701,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/components.js","layer":"app-pages-browser"},"startTime":1780368987730,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":9509,"timestamp":1876019087459,"id":1719,"parentId":1713,"tags":{},"startTime":1780368987730,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":34,"timestamp":1876019096976,"id":1736,"parentId":1713,"tags":{},"startTime":1780368987739,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":10035,"timestamp":1876019087227,"id":1713,"parentId":1701,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/core.js","layer":"app-pages-browser"},"startTime":1780368987729,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":9816,"timestamp":1876019087475,"id":1723,"parentId":1717,"tags":{},"startTime":1780368987730,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":29,"timestamp":1876019097296,"id":1737,"parentId":1717,"tags":{},"startTime":1780368987740,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":10248,"timestamp":1876019087400,"id":1717,"parentId":1701,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/features.js","layer":"app-pages-browser"},"startTime":1780368987730,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":10420,"timestamp":1876019087468,"id":1721,"parentId":1715,"tags":{},"startTime":1780368987730,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":33,"timestamp":1876019097894,"id":1738,"parentId":1715,"tags":{},"startTime":1780368987740,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":10872,"timestamp":1876019087322,"id":1715,"parentId":1701,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/charts.js","layer":"app-pages-browser"},"startTime":1780368987730,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":10194,"timestamp":1876019088007,"id":1726,"parentId":1725,"tags":{},"startTime":1780368987730,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":10601,"timestamp":1876019087996,"id":1725,"parentId":1355,"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":1780368987730,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":10539,"timestamp":1876019088065,"id":1729,"parentId":1727,"tags":{},"startTime":1780368987730,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":28,"timestamp":1876019098608,"id":1739,"parentId":1727,"tags":{},"startTime":1780368987741,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":10778,"timestamp":1876019088013,"id":1727,"parentId":1593,"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":1780368987730,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":11355,"timestamp":1876019087445,"id":1718,"parentId":1712,"tags":{},"startTime":1780368987730,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":32,"timestamp":1876019098803,"id":1740,"parentId":1712,"tags":{},"startTime":1780368987741,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":12101,"timestamp":1876019087085,"id":1712,"parentId":1701,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/extension.js","layer":"app-pages-browser"},"startTime":1780368987729,"traceId":"f5ac02f0451719cf"},{"name":"build-module-css","duration":871447,"timestamp":1876018240301,"id":1179,"parentId":919,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/globals.css","layer":"app-pages-browser"},"startTime":1780368986883,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":25102,"timestamp":1876019088061,"id":1728,"parentId":1724,"tags":{},"startTime":1780368987730,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":36,"timestamp":1876019113174,"id":1741,"parentId":1724,"tags":{},"startTime":1780368987755,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":25508,"timestamp":1876019087937,"id":1724,"parentId":1532,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/scheduler/index.js","layer":"app-pages-browser"},"startTime":1780368987730,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":25090,"timestamp":1876019088852,"id":1731,"parentId":1730,"tags":{},"startTime":1780368987731,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":34,"timestamp":1876019113950,"id":1742,"parentId":1730,"tags":{},"startTime":1780368987756,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":25528,"timestamp":1876019088801,"id":1730,"parentId":1593,"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":1780368987731,"traceId":"f5ac02f0451719cf"},{"name":"add-entry","duration":1253265,"timestamp":1876017864345,"id":899,"parentId":897,"tags":{"request":"./node_modules/next/dist/client/app-next.js"},"startTime":1780368986507,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":23162,"timestamp":1876019096401,"id":1735,"parentId":1734,"tags":{},"startTime":1780368987739,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":23795,"timestamp":1876019096354,"id":1734,"parentId":1588,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/cookie/index.js","layer":null},"startTime":1780368987739,"traceId":"f5ac02f0451719cf"},{"name":"build-module","duration":109,"timestamp":1876019120569,"id":1743,"parentId":1179,"tags":{},"startTime":1780368987763,"traceId":"f5ac02f0451719cf"},{"name":"add-entry","duration":1257958,"timestamp":1876017864503,"id":905,"parentId":897,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext-themes%2Fdist%2Findex.mjs%22%2C%22ids%22%3A%5B%22ThemeProvider%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2Fglobals.css%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fhooks%2Fuse-auth.tsx%22%2C%22ids%22%3A%5B%22AuthProvider%22%5D%7D&server=false!"},"startTime":1780368986507,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":14924,"timestamp":1876019120885,"id":1745,"parentId":1744,"tags":{},"startTime":1780368987763,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":55,"timestamp":1876019135823,"id":1872,"parentId":1744,"tags":{},"startTime":1780368987778,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":15895,"timestamp":1876019120721,"id":1744,"parentId":1713,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/api.js","layer":"app-pages-browser"},"startTime":1780368987763,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":14378,"timestamp":1876019122622,"id":1748,"parentId":1746,"tags":{},"startTime":1780368987765,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":31,"timestamp":1876019137007,"id":1873,"parentId":1746,"tags":{},"startTime":1780368987779,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":14688,"timestamp":1876019122497,"id":1746,"parentId":1714,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/renderer/installSVGRenderer.js","layer":"app-pages-browser"},"startTime":1780368987765,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":17232,"timestamp":1876019122630,"id":1749,"parentId":1747,"tags":{},"startTime":1780368987765,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":30,"timestamp":1876019139871,"id":1874,"parentId":1747,"tags":{},"startTime":1780368987782,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":17549,"timestamp":1876019122572,"id":1747,"parentId":1714,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/renderer/installCanvasRenderer.js","layer":"app-pages-browser"},"startTime":1780368987765,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":14640,"timestamp":1876019126031,"id":1758,"parentId":1750,"tags":{},"startTime":1780368987768,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":100,"timestamp":1876019140684,"id":1877,"parentId":1750,"tags":{},"startTime":1780368987783,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":24083,"timestamp":1876019125646,"id":1750,"parentId":1712,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/core/echarts.js","layer":"app-pages-browser"},"startTime":1780368987768,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":24247,"timestamp":1876019126049,"id":1761,"parentId":1753,"tags":{},"startTime":1780368987768,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":42,"timestamp":1876019150308,"id":1878,"parentId":1753,"tags":{},"startTime":1780368987793,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":25338,"timestamp":1876019125822,"id":1753,"parentId":1712,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/view/Chart.js","layer":"app-pages-browser"},"startTime":1780368987768,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":25127,"timestamp":1876019126045,"id":1760,"parentId":1752,"tags":{},"startTime":1780368987768,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":33,"timestamp":1876019151178,"id":1879,"parentId":1752,"tags":{},"startTime":1780368987793,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":25661,"timestamp":1876019125779,"id":1752,"parentId":1712,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/view/Component.js","layer":"app-pages-browser"},"startTime":1780368987768,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":25420,"timestamp":1876019126040,"id":1759,"parentId":1751,"tags":{},"startTime":1780368987768,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":27,"timestamp":1876019151464,"id":1880,"parentId":1751,"tags":{},"startTime":1780368987794,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":25912,"timestamp":1876019125731,"id":1751,"parentId":1712,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/core/impl.js","layer":"app-pages-browser"},"startTime":1780368987768,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":25592,"timestamp":1876019126057,"id":1764,"parentId":1756,"tags":{},"startTime":1780368987768,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":27,"timestamp":1876019151653,"id":1881,"parentId":1756,"tags":{},"startTime":1780368987794,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":26228,"timestamp":1876019125942,"id":1756,"parentId":1713,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/label/installLabelLayout.js","layer":"app-pages-browser"},"startTime":1780368987768,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":26234,"timestamp":1876019126052,"id":1762,"parentId":1754,"tags":{},"startTime":1780368987768,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":54,"timestamp":1876019152298,"id":1882,"parentId":1754,"tags":{},"startTime":1780368987795,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":27268,"timestamp":1876019125862,"id":1754,"parentId":1712,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/Component.js","layer":"app-pages-browser"},"startTime":1780368987768,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":27160,"timestamp":1876019126054,"id":1763,"parentId":1755,"tags":{},"startTime":1780368987768,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":40,"timestamp":1876019153220,"id":1883,"parentId":1755,"tags":{},"startTime":1780368987795,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":29146,"timestamp":1876019125903,"id":1755,"parentId":1712,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/Series.js","layer":"app-pages-browser"},"startTime":1780368987768,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":29084,"timestamp":1876019126059,"id":1765,"parentId":1757,"tags":{},"startTime":1780368987768,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":47,"timestamp":1876019155152,"id":1884,"parentId":1757,"tags":{},"startTime":1780368987797,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":33308,"timestamp":1876019125982,"id":1757,"parentId":1717,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/animation/universalTransition.js","layer":"app-pages-browser"},"startTime":1780368987768,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":29584,"timestamp":1876019129917,"id":1798,"parentId":1768,"tags":{},"startTime":1780368987772,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":51,"timestamp":1876019159510,"id":1885,"parentId":1768,"tags":{},"startTime":1780368987802,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":31033,"timestamp":1876019128840,"id":1768,"parentId":1716,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/polar/install.js","layer":"app-pages-browser"},"startTime":1780368987771,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":29961,"timestamp":1876019129921,"id":1799,"parentId":1769,"tags":{},"startTime":1780368987772,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":29,"timestamp":1876019159886,"id":1886,"parentId":1769,"tags":{},"startTime":1780368987802,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":31157,"timestamp":1876019128881,"id":1769,"parentId":1716,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/radar/install.js","layer":"app-pages-browser"},"startTime":1780368987771,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":30130,"timestamp":1876019129912,"id":1797,"parentId":1767,"tags":{},"startTime":1780368987772,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":27,"timestamp":1876019160047,"id":1887,"parentId":1767,"tags":{},"startTime":1780368987802,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":31358,"timestamp":1876019128797,"id":1767,"parentId":1716,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/grid/install.js","layer":"app-pages-browser"},"startTime":1780368987771,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":30256,"timestamp":1876019129902,"id":1796,"parentId":1766,"tags":{},"startTime":1780368987772,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":27,"timestamp":1876019160162,"id":1888,"parentId":1766,"tags":{},"startTime":1780368987802,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":31680,"timestamp":1876019128730,"id":1766,"parentId":1716,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/grid/installSimple.js","layer":"app-pages-browser"},"startTime":1780368987771,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":30488,"timestamp":1876019129927,"id":1800,"parentId":1770,"tags":{},"startTime":1780368987772,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":27,"timestamp":1876019160418,"id":1889,"parentId":1770,"tags":{},"startTime":1780368987803,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":31677,"timestamp":1876019128931,"id":1770,"parentId":1716,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/singleAxis/install.js","layer":"app-pages-browser"},"startTime":1780368987771,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":30679,"timestamp":1876019129935,"id":1803,"parentId":1773,"tags":{},"startTime":1780368987772,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":26,"timestamp":1876019160618,"id":1890,"parentId":1773,"tags":{},"startTime":1780368987803,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":31699,"timestamp":1876019129053,"id":1773,"parentId":1716,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/graphic/install.js","layer":"app-pages-browser"},"startTime":1780368987771,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":30816,"timestamp":1876019129940,"id":1805,"parentId":1775,"tags":{},"startTime":1780368987772,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":25,"timestamp":1876019160760,"id":1891,"parentId":1775,"tags":{},"startTime":1780368987803,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":31763,"timestamp":1876019129127,"id":1775,"parentId":1716,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/toolbox/install.js","layer":"app-pages-browser"},"startTime":1780368987771,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":30956,"timestamp":1876019129937,"id":1804,"parentId":1774,"tags":{},"startTime":1780368987772,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":25,"timestamp":1876019160896,"id":1892,"parentId":1774,"tags":{},"startTime":1780368987803,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":31892,"timestamp":1876019129090,"id":1774,"parentId":1716,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/calendar/install.js","layer":"app-pages-browser"},"startTime":1780368987771,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":31054,"timestamp":1876019129933,"id":1802,"parentId":1772,"tags":{},"startTime":1780368987772,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":26,"timestamp":1876019160989,"id":1893,"parentId":1772,"tags":{},"startTime":1780368987803,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":32113,"timestamp":1876019129008,"id":1772,"parentId":1716,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/parallel/install.js","layer":"app-pages-browser"},"startTime":1780368987771,"traceId":"f5ac02f0451719cf"}] -[{"name":"read-resource","duration":31179,"timestamp":1876019129947,"id":1808,"parentId":1778,"tags":{},"startTime":1780368987772,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":25,"timestamp":1876019161129,"id":1894,"parentId":1778,"tags":{},"startTime":1780368987803,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":32039,"timestamp":1876019129237,"id":1778,"parentId":1716,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/brush/install.js","layer":"app-pages-browser"},"startTime":1780368987771,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":31332,"timestamp":1876019129949,"id":1809,"parentId":1779,"tags":{},"startTime":1780368987772,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":24,"timestamp":1876019161285,"id":1895,"parentId":1779,"tags":{},"startTime":1780368987804,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":32107,"timestamp":1876019129273,"id":1779,"parentId":1716,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/timeline/install.js","layer":"app-pages-browser"},"startTime":1780368987772,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":31444,"timestamp":1876019129942,"id":1806,"parentId":1776,"tags":{},"startTime":1780368987772,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":24,"timestamp":1876019161389,"id":1896,"parentId":1776,"tags":{},"startTime":1780368987804,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":32344,"timestamp":1876019129165,"id":1776,"parentId":1716,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/tooltip/install.js","layer":"app-pages-browser"},"startTime":1780368987771,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":31560,"timestamp":1876019129952,"id":1810,"parentId":1780,"tags":{},"startTime":1780368987772,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":43,"timestamp":1876019161515,"id":1897,"parentId":1780,"tags":{},"startTime":1780368987804,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":32311,"timestamp":1876019129310,"id":1780,"parentId":1716,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/legend/install.js","layer":"app-pages-browser"},"startTime":1780368987772,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":31669,"timestamp":1876019129956,"id":1812,"parentId":1782,"tags":{},"startTime":1780368987772,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":25,"timestamp":1876019161628,"id":1898,"parentId":1782,"tags":{},"startTime":1780368987804,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":32341,"timestamp":1876019129382,"id":1782,"parentId":1716,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/legend/installLegendPlain.js","layer":"app-pages-browser"},"startTime":1780368987772,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":31782,"timestamp":1876019129944,"id":1807,"parentId":1777,"tags":{},"startTime":1780368987772,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":26,"timestamp":1876019161729,"id":1899,"parentId":1777,"tags":{},"startTime":1780368987804,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":32694,"timestamp":1876019129201,"id":1777,"parentId":1716,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/install.js","layer":"app-pages-browser"},"startTime":1780368987771,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":31942,"timestamp":1876019129958,"id":1813,"parentId":1783,"tags":{},"startTime":1780368987772,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":39,"timestamp":1876019161902,"id":1900,"parentId":1783,"tags":{},"startTime":1780368987804,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":33201,"timestamp":1876019129420,"id":1783,"parentId":1716,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/title/install.js","layer":"app-pages-browser"},"startTime":1780368987772,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":32678,"timestamp":1876019129966,"id":1817,"parentId":1787,"tags":{},"startTime":1780368987772,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":42,"timestamp":1876019162653,"id":1901,"parentId":1787,"tags":{},"startTime":1780368987805,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":33260,"timestamp":1876019129565,"id":1787,"parentId":1716,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/installMarkPoint.js","layer":"app-pages-browser"},"startTime":1780368987772,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":32870,"timestamp":1876019129962,"id":1815,"parentId":1785,"tags":{},"startTime":1780368987772,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":29,"timestamp":1876019162837,"id":1902,"parentId":1785,"tags":{},"startTime":1780368987805,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":33467,"timestamp":1876019129492,"id":1785,"parentId":1716,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/installDataZoomInside.js","layer":"app-pages-browser"},"startTime":1780368987772,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":33002,"timestamp":1876019129968,"id":1818,"parentId":1788,"tags":{},"startTime":1780368987772,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":27,"timestamp":1876019162974,"id":1903,"parentId":1788,"tags":{},"startTime":1780368987805,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":33483,"timestamp":1876019129602,"id":1788,"parentId":1716,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/installMarkArea.js","layer":"app-pages-browser"},"startTime":1780368987772,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":32709,"timestamp":1876019130381,"id":1819,"parentId":1789,"tags":{},"startTime":1780368987773,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":25,"timestamp":1876019163093,"id":1904,"parentId":1789,"tags":{},"startTime":1780368987805,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":33561,"timestamp":1876019129638,"id":1789,"parentId":1716,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/installMarkLine.js","layer":"app-pages-browser"},"startTime":1780368987772,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":33245,"timestamp":1876019129960,"id":1814,"parentId":1784,"tags":{},"startTime":1780368987772,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":26,"timestamp":1876019163208,"id":1905,"parentId":1784,"tags":{},"startTime":1780368987805,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":33847,"timestamp":1876019129456,"id":1784,"parentId":1716,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/install.js","layer":"app-pages-browser"},"startTime":1780368987772,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":33342,"timestamp":1876019129965,"id":1816,"parentId":1786,"tags":{},"startTime":1780368987772,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":25,"timestamp":1876019163310,"id":1906,"parentId":1786,"tags":{},"startTime":1780368987806,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":33870,"timestamp":1876019129528,"id":1786,"parentId":1716,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/installDataZoomSlider.js","layer":"app-pages-browser"},"startTime":1780368987772,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":32992,"timestamp":1876019130409,"id":1820,"parentId":1790,"tags":{},"startTime":1780368987773,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":36,"timestamp":1876019163405,"id":1907,"parentId":1790,"tags":{},"startTime":1780368987806,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":33837,"timestamp":1876019129673,"id":1790,"parentId":1716,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/install.js","layer":"app-pages-browser"},"startTime":1780368987772,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":33100,"timestamp":1876019130414,"id":1821,"parentId":1791,"tags":{},"startTime":1780368987773,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":25,"timestamp":1876019163518,"id":1908,"parentId":1791,"tags":{},"startTime":1780368987806,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":33894,"timestamp":1876019129707,"id":1791,"parentId":1716,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/installVisualMapPiecewise.js","layer":"app-pages-browser"},"startTime":1780368987772,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":36295,"timestamp":1876019130418,"id":1822,"parentId":1792,"tags":{},"startTime":1780368987773,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":32,"timestamp":1876019166721,"id":1909,"parentId":1792,"tags":{},"startTime":1780368987809,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":37164,"timestamp":1876019129743,"id":1792,"parentId":1716,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/installVisualMapContinuous.js","layer":"app-pages-browser"},"startTime":1780368987772,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":36493,"timestamp":1876019130421,"id":1823,"parentId":1793,"tags":{},"startTime":1780368987773,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":27,"timestamp":1876019166919,"id":1910,"parentId":1793,"tags":{},"startTime":1780368987809,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":37248,"timestamp":1876019129780,"id":1793,"parentId":1716,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/aria/install.js","layer":"app-pages-browser"},"startTime":1780368987772,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":36608,"timestamp":1876019130425,"id":1824,"parentId":1794,"tags":{},"startTime":1780368987773,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":27,"timestamp":1876019167036,"id":1911,"parentId":1794,"tags":{},"startTime":1780368987809,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":37485,"timestamp":1876019129823,"id":1794,"parentId":1716,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataset/install.js","layer":"app-pages-browser"},"startTime":1780368987772,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":36885,"timestamp":1876019130428,"id":1825,"parentId":1795,"tags":{},"startTime":1780368987773,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":26,"timestamp":1876019167317,"id":1912,"parentId":1795,"tags":{},"startTime":1780368987810,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":37558,"timestamp":1876019129859,"id":1795,"parentId":1716,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/transform/install.js","layer":"app-pages-browser"},"startTime":1780368987772,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":37960,"timestamp":1876019129954,"id":1811,"parentId":1781,"tags":{},"startTime":1780368987772,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":27,"timestamp":1876019167918,"id":1913,"parentId":1781,"tags":{},"startTime":1780368987810,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":38695,"timestamp":1876019129346,"id":1781,"parentId":1716,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/legend/installLegendScroll.js","layer":"app-pages-browser"},"startTime":1780368987772,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":38196,"timestamp":1876019129930,"id":1801,"parentId":1771,"tags":{},"startTime":1780368987772,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":27,"timestamp":1876019168130,"id":1914,"parentId":1771,"tags":{},"startTime":1780368987810,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":39427,"timestamp":1876019128971,"id":1771,"parentId":1716,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/geo/install.js","layer":"app-pages-browser"},"startTime":1780368987771,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":35664,"timestamp":1876019134534,"id":1849,"parentId":1826,"tags":{},"startTime":1780368987777,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":37,"timestamp":1876019170229,"id":1915,"parentId":1826,"tags":{},"startTime":1780368987812,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":38894,"timestamp":1876019132491,"id":1826,"parentId":1724,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/scheduler/cjs/scheduler.production.min.js","layer":"app-pages-browser"},"startTime":1780368987775,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":36853,"timestamp":1876019134598,"id":1852,"parentId":1829,"tags":{},"startTime":1780368987777,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":33,"timestamp":1876019171457,"id":1916,"parentId":1829,"tags":{},"startTime":1780368987814,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":38328,"timestamp":1876019133371,"id":1829,"parentId":1715,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/pie/install.js","layer":"app-pages-browser"},"startTime":1780368987776,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":37098,"timestamp":1876019134609,"id":1854,"parentId":1831,"tags":{},"startTime":1780368987777,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":28,"timestamp":1876019171713,"id":1917,"parentId":1831,"tags":{},"startTime":1780368987814,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":38187,"timestamp":1876019133695,"id":1831,"parentId":1715,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/scatter/install.js","layer":"app-pages-browser"},"startTime":1780368987776,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":37274,"timestamp":1876019134613,"id":1855,"parentId":1832,"tags":{},"startTime":1780368987777,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":26,"timestamp":1876019171891,"id":1918,"parentId":1832,"tags":{},"startTime":1780368987814,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":38268,"timestamp":1876019133741,"id":1832,"parentId":1715,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/radar/install.js","layer":"app-pages-browser"},"startTime":1780368987776,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":37409,"timestamp":1876019134605,"id":1853,"parentId":1830,"tags":{},"startTime":1780368987777,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":25,"timestamp":1876019172018,"id":1919,"parentId":1830,"tags":{},"startTime":1780368987814,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":38661,"timestamp":1876019133527,"id":1830,"parentId":1715,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/line/install.js","layer":"app-pages-browser"},"startTime":1780368987776,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":37577,"timestamp":1876019134616,"id":1856,"parentId":1833,"tags":{},"startTime":1780368987777,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":25,"timestamp":1876019172197,"id":1920,"parentId":1833,"tags":{},"startTime":1780368987814,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":38565,"timestamp":1876019133782,"id":1833,"parentId":1715,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/map/install.js","layer":"app-pages-browser"},"startTime":1780368987776,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":37793,"timestamp":1876019134558,"id":1851,"parentId":1828,"tags":{},"startTime":1780368987777,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":47,"timestamp":1876019172355,"id":1921,"parentId":1828,"tags":{},"startTime":1780368987815,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":39368,"timestamp":1876019133198,"id":1828,"parentId":1715,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/bar/installPictorialBar.js","layer":"app-pages-browser"},"startTime":1780368987775,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":37941,"timestamp":1876019134635,"id":1859,"parentId":1836,"tags":{},"startTime":1780368987777,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":30,"timestamp":1876019172580,"id":1922,"parentId":1836,"tags":{},"startTime":1780368987815,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":38789,"timestamp":1876019133917,"id":1836,"parentId":1715,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/treemap/install.js","layer":"app-pages-browser"},"startTime":1780368987776,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":38079,"timestamp":1876019134631,"id":1858,"parentId":1835,"tags":{},"startTime":1780368987777,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":26,"timestamp":1876019172714,"id":1923,"parentId":1835,"tags":{},"startTime":1780368987815,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":38941,"timestamp":1876019133878,"id":1835,"parentId":1715,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/tree/install.js","layer":"app-pages-browser"},"startTime":1780368987776,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":38185,"timestamp":1876019134638,"id":1860,"parentId":1837,"tags":{},"startTime":1780368987777,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":24,"timestamp":1876019172827,"id":1924,"parentId":1837,"tags":{},"startTime":1780368987815,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":38952,"timestamp":1876019133955,"id":1837,"parentId":1715,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/gauge/install.js","layer":"app-pages-browser"},"startTime":1780368987776,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":38291,"timestamp":1876019134620,"id":1857,"parentId":1834,"tags":{},"startTime":1780368987777,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":24,"timestamp":1876019172914,"id":1925,"parentId":1834,"tags":{},"startTime":1780368987815,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":39266,"timestamp":1876019133837,"id":1834,"parentId":1715,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/install.js","layer":"app-pages-browser"},"startTime":1780368987776,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":38362,"timestamp":1876019134747,"id":1866,"parentId":1843,"tags":{},"startTime":1780368987777,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":26,"timestamp":1876019173112,"id":1926,"parentId":1843,"tags":{},"startTime":1780368987815,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":39016,"timestamp":1876019134194,"id":1843,"parentId":1715,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/candlestick/install.js","layer":"app-pages-browser"},"startTime":1780368987776,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":38563,"timestamp":1876019134651,"id":1865,"parentId":1842,"tags":{},"startTime":1780368987777,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":25,"timestamp":1876019173217,"id":1927,"parentId":1842,"tags":{},"startTime":1780368987815,"traceId":"f5ac02f0451719cf"}] -[{"name":"build-module-js","duration":39153,"timestamp":1876019134148,"id":1842,"parentId":1715,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/effectScatter/install.js","layer":"app-pages-browser"},"startTime":1780368987776,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":38657,"timestamp":1876019134648,"id":1864,"parentId":1841,"tags":{},"startTime":1780368987777,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":24,"timestamp":1876019173308,"id":1928,"parentId":1841,"tags":{},"startTime":1780368987816,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":39306,"timestamp":1876019134111,"id":1841,"parentId":1715,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sankey/install.js","layer":"app-pages-browser"},"startTime":1780368987776,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":38774,"timestamp":1876019134646,"id":1863,"parentId":1840,"tags":{},"startTime":1780368987777,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":24,"timestamp":1876019173424,"id":1929,"parentId":1840,"tags":{},"startTime":1780368987816,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":39433,"timestamp":1876019134074,"id":1840,"parentId":1715,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/boxplot/install.js","layer":"app-pages-browser"},"startTime":1780368987776,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":38687,"timestamp":1876019134825,"id":1870,"parentId":1847,"tags":{},"startTime":1780368987777,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":25,"timestamp":1876019173515,"id":1930,"parentId":1847,"tags":{},"startTime":1780368987816,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":39285,"timestamp":1876019134339,"id":1847,"parentId":1715,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sunburst/install.js","layer":"app-pages-browser"},"startTime":1780368987777,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":38986,"timestamp":1876019134641,"id":1861,"parentId":1838,"tags":{},"startTime":1780368987777,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":23,"timestamp":1876019173630,"id":1931,"parentId":1838,"tags":{},"startTime":1780368987816,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":39723,"timestamp":1876019133992,"id":1838,"parentId":1715,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/funnel/install.js","layer":"app-pages-browser"},"startTime":1780368987776,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":38911,"timestamp":1876019134807,"id":1868,"parentId":1845,"tags":{},"startTime":1780368987777,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":24,"timestamp":1876019173722,"id":1932,"parentId":1845,"tags":{},"startTime":1780368987816,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":39528,"timestamp":1876019134268,"id":1845,"parentId":1715,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/heatmap/install.js","layer":"app-pages-browser"},"startTime":1780368987777,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":39005,"timestamp":1876019134794,"id":1867,"parentId":1844,"tags":{},"startTime":1780368987777,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":24,"timestamp":1876019173803,"id":1933,"parentId":1844,"tags":{},"startTime":1780368987816,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":39653,"timestamp":1876019134232,"id":1844,"parentId":1715,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/lines/install.js","layer":"app-pages-browser"},"startTime":1780368987776,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":39072,"timestamp":1876019134816,"id":1869,"parentId":1846,"tags":{},"startTime":1780368987777,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":23,"timestamp":1876019173891,"id":1934,"parentId":1846,"tags":{},"startTime":1780368987816,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":39665,"timestamp":1876019134304,"id":1846,"parentId":1715,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/themeRiver/install.js","layer":"app-pages-browser"},"startTime":1780368987777,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":39134,"timestamp":1876019134840,"id":1871,"parentId":1848,"tags":{},"startTime":1780368987777,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":23,"timestamp":1876019173976,"id":1935,"parentId":1848,"tags":{},"startTime":1780368987816,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":41522,"timestamp":1876019134486,"id":1848,"parentId":1715,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/custom/install.js","layer":"app-pages-browser"},"startTime":1780368987777,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":41468,"timestamp":1876019134552,"id":1850,"parentId":1827,"tags":{},"startTime":1780368987777,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":32,"timestamp":1876019176027,"id":1936,"parentId":1827,"tags":{},"startTime":1780368987818,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":43505,"timestamp":1876019132802,"id":1827,"parentId":1715,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/bar/install.js","layer":"app-pages-browser"},"startTime":1780368987775,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":41669,"timestamp":1876019134644,"id":1862,"parentId":1839,"tags":{},"startTime":1780368987777,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":28,"timestamp":1876019176317,"id":1937,"parentId":1839,"tags":{},"startTime":1780368987819,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":42405,"timestamp":1876019134033,"id":1839,"parentId":1715,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/parallel/install.js","layer":"app-pages-browser"},"startTime":1780368987776,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":47786,"timestamp":1876019140571,"id":1876,"parentId":1875,"tags":{},"startTime":1780368987783,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":48234,"timestamp":1876019140506,"id":1875,"parentId":1678,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/scheduler/index.js","layer":null},"startTime":1780368987783,"traceId":"f5ac02f0451719cf"},{"name":"add-entry","duration":1349059,"timestamp":1876017864366,"id":900,"parentId":897,"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":1780368986507,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":13884,"timestamp":1876019240007,"id":1948,"parentId":1940,"tags":{},"startTime":1780368987882,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":28,"timestamp":1876019253900,"id":2120,"parentId":1940,"tags":{},"startTime":1780368987896,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":15199,"timestamp":1876019239122,"id":1940,"parentId":1750,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/core/ExtensionAPI.js","layer":"app-pages-browser"},"startTime":1780368987881,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":14333,"timestamp":1876019239999,"id":1947,"parentId":1939,"tags":{},"startTime":1780368987882,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":48,"timestamp":1876019254336,"id":2121,"parentId":1939,"tags":{},"startTime":1780368987897,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":17340,"timestamp":1876019239075,"id":1939,"parentId":1750,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/Global.js","layer":"app-pages-browser"},"startTime":1780368987881,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":16489,"timestamp":1876019240022,"id":1950,"parentId":1942,"tags":{},"startTime":1780368987882,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":50,"timestamp":1876019256521,"id":2122,"parentId":1942,"tags":{},"startTime":1780368987899,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":18154,"timestamp":1876019239205,"id":1942,"parentId":1750,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/OptionManager.js","layer":"app-pages-browser"},"startTime":1780368987881,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":17338,"timestamp":1876019240032,"id":1953,"parentId":1945,"tags":{},"startTime":1780368987882,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":31,"timestamp":1876019257377,"id":2123,"parentId":1945,"tags":{},"startTime":1780368987900,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":18297,"timestamp":1876019239323,"id":1945,"parentId":1750,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/core/lifecycle.js","layer":"app-pages-browser"},"startTime":1780368987882,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":17610,"timestamp":1876019240016,"id":1949,"parentId":1941,"tags":{},"startTime":1780368987882,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":27,"timestamp":1876019257629,"id":2124,"parentId":1941,"tags":{},"startTime":1780368987900,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":18754,"timestamp":1876019239164,"id":1941,"parentId":1750,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/core/CoordinateSystem.js","layer":"app-pages-browser"},"startTime":1780368987881,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":17898,"timestamp":1876019240025,"id":1951,"parentId":1943,"tags":{},"startTime":1780368987882,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":37,"timestamp":1876019257927,"id":2125,"parentId":1943,"tags":{},"startTime":1780368987900,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":20085,"timestamp":1876019239244,"id":1943,"parentId":1750,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/core/Scheduler.js","layer":"app-pages-browser"},"startTime":1780368987881,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":19358,"timestamp":1876019239978,"id":1946,"parentId":1938,"tags":{},"startTime":1780368987882,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":29,"timestamp":1876019259341,"id":2126,"parentId":1938,"tags":{},"startTime":1780368987902,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":20739,"timestamp":1876019238955,"id":1938,"parentId":1744,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/Model.js","layer":"app-pages-browser"},"startTime":1780368987881,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":19672,"timestamp":1876019240029,"id":1952,"parentId":1944,"tags":{},"startTime":1780368987882,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":26,"timestamp":1876019259705,"id":2127,"parentId":1944,"tags":{},"startTime":1780368987902,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":20697,"timestamp":1876019239285,"id":1944,"parentId":1750,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/core/locale.js","layer":"app-pages-browser"},"startTime":1780368987882,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":13492,"timestamp":1876019249195,"id":2003,"parentId":1954,"tags":{},"startTime":1780368987891,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":40,"timestamp":1876019262700,"id":2128,"parentId":1954,"tags":{},"startTime":1780368987905,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":16493,"timestamp":1876019247126,"id":1954,"parentId":1753,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/core/task.js","layer":"app-pages-browser"},"startTime":1780368987889,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":15411,"timestamp":1876019249235,"id":2007,"parentId":1958,"tags":{},"startTime":1780368987891,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":26,"timestamp":1876019264651,"id":2129,"parentId":1958,"tags":{},"startTime":1780368987907,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":17393,"timestamp":1876019247377,"id":1958,"parentId":1744,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/api/time.js","layer":"app-pages-browser"},"startTime":1780368987890,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":15536,"timestamp":1876019249239,"id":2008,"parentId":1959,"tags":{},"startTime":1780368987891,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":24,"timestamp":1876019264778,"id":2130,"parentId":1959,"tags":{},"startTime":1780368987907,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":17497,"timestamp":1876019247415,"id":1959,"parentId":1744,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/api/graphic.js","layer":"app-pages-browser"},"startTime":1780368987890,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":15700,"timestamp":1876019249216,"id":2004,"parentId":1955,"tags":{},"startTime":1780368987891,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":45,"timestamp":1876019264919,"id":2131,"parentId":1955,"tags":{},"startTime":1780368987907,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":19956,"timestamp":1876019247218,"id":1955,"parentId":1744,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/SeriesData.js","layer":"app-pages-browser"},"startTime":1780368987889,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":17947,"timestamp":1876019249254,"id":2012,"parentId":1963,"tags":{},"startTime":1780368987891,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":43,"timestamp":1876019267209,"id":2132,"parentId":1963,"tags":{},"startTime":1780368987909,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":20888,"timestamp":1876019247560,"id":1963,"parentId":1750,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/graphic.js","layer":"app-pages-browser"},"startTime":1780368987890,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":19233,"timestamp":1876019249223,"id":2005,"parentId":1956,"tags":{},"startTime":1780368987891,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":30,"timestamp":1876019268461,"id":2133,"parentId":1956,"tags":{},"startTime":1780368987911,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":21440,"timestamp":1876019247280,"id":1956,"parentId":1744,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/api/helper.js","layer":"app-pages-browser"},"startTime":1780368987890,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":19496,"timestamp":1876019249229,"id":2006,"parentId":1957,"tags":{},"startTime":1780368987891,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":26,"timestamp":1876019268729,"id":2134,"parentId":1957,"tags":{},"startTime":1780368987911,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":21506,"timestamp":1876019247325,"id":1957,"parentId":1744,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/api/number.js","layer":"app-pages-browser"},"startTime":1780368987890,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":19589,"timestamp":1876019249247,"id":2010,"parentId":1961,"tags":{},"startTime":1780368987891,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":24,"timestamp":1876019268839,"id":2135,"parentId":1961,"tags":{},"startTime":1780368987911,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":21433,"timestamp":1876019247488,"id":1961,"parentId":1744,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/api/util.js","layer":"app-pages-browser"},"startTime":1780368987890,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":19670,"timestamp":1876019249256,"id":2013,"parentId":1964,"tags":{},"startTime":1780368987891,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":23,"timestamp":1876019268929,"id":2136,"parentId":1964,"tags":{},"startTime":1780368987911,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":21463,"timestamp":1876019247595,"id":1964,"parentId":1750,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/innerStore.js","layer":"app-pages-browser"},"startTime":1780368987890,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":19812,"timestamp":1876019249250,"id":2011,"parentId":1962,"tags":{},"startTime":1780368987891,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":25,"timestamp":1876019269065,"id":2137,"parentId":1962,"tags":{},"startTime":1780368987911,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":21788,"timestamp":1876019247524,"id":1962,"parentId":1744,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/throttle.js","layer":"app-pages-browser"},"startTime":1780368987890,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":20074,"timestamp":1876019249243,"id":2009,"parentId":1960,"tags":{},"startTime":1780368987891,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":23,"timestamp":1876019269319,"id":2138,"parentId":1960,"tags":{},"startTime":1780368987912,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":21946,"timestamp":1876019247452,"id":1960,"parentId":1744,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/api/format.js","layer":"app-pages-browser"},"startTime":1780368987890,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":20139,"timestamp":1876019249262,"id":2015,"parentId":1966,"tags":{},"startTime":1780368987892,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":37,"timestamp":1876019269405,"id":2139,"parentId":1966,"tags":{},"startTime":1780368987912,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":23421,"timestamp":1876019247667,"id":1966,"parentId":1750,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/model.js","layer":"app-pages-browser"},"startTime":1780368987890,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":21814,"timestamp":1876019249284,"id":2018,"parentId":1969,"tags":{},"startTime":1780368987892,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":31,"timestamp":1876019271104,"id":2140,"parentId":1969,"tags":{},"startTime":1780368987913,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":23668,"timestamp":1876019247782,"id":1969,"parentId":1750,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/log.js","layer":"app-pages-browser"},"startTime":1780368987890,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":22198,"timestamp":1876019249259,"id":2014,"parentId":1965,"tags":{},"startTime":1780368987892,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":39,"timestamp":1876019271464,"id":2141,"parentId":1965,"tags":{},"startTime":1780368987914,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":25560,"timestamp":1876019247629,"id":1965,"parentId":1750,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/states.js","layer":"app-pages-browser"},"startTime":1780368987890,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":23888,"timestamp":1876019249308,"id":2020,"parentId":1971,"tags":{},"startTime":1780368987892,"traceId":"f5ac02f0451719cf"}] -[{"name":"next-swc-loader","duration":29,"timestamp":1876019273201,"id":2142,"parentId":1971,"tags":{},"startTime":1780368987915,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":25724,"timestamp":1876019247881,"id":1971,"parentId":1753,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/component.js","layer":"app-pages-browser"},"startTime":1780368987890,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":24311,"timestamp":1876019249300,"id":2019,"parentId":1970,"tags":{},"startTime":1780368987892,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":25,"timestamp":1876019273614,"id":2143,"parentId":1970,"tags":{},"startTime":1780368987916,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":25887,"timestamp":1876019247827,"id":1970,"parentId":1750,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/event.js","layer":"app-pages-browser"},"startTime":1780368987890,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":24408,"timestamp":1876019249312,"id":2021,"parentId":1972,"tags":{},"startTime":1780368987892,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":28,"timestamp":1876019273723,"id":2144,"parentId":1972,"tags":{},"startTime":1780368987916,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":28033,"timestamp":1876019247917,"id":1972,"parentId":1744,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/Axis.js","layer":"app-pages-browser"},"startTime":1780368987890,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":26710,"timestamp":1876019249266,"id":2016,"parentId":1967,"tags":{},"startTime":1780368987892,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":45,"timestamp":1876019275985,"id":2145,"parentId":1967,"tags":{},"startTime":1780368987918,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":29176,"timestamp":1876019247711,"id":1967,"parentId":1750,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/clazz.js","layer":"app-pages-browser"},"startTime":1780368987890,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":27584,"timestamp":1876019249315,"id":2022,"parentId":1973,"tags":{},"startTime":1780368987892,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":33,"timestamp":1876019276904,"id":2146,"parentId":1973,"tags":{},"startTime":1780368987919,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":29405,"timestamp":1876019247961,"id":1973,"parentId":1744,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/parseGeoJson.js","layer":"app-pages-browser"},"startTime":1780368987890,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":28051,"timestamp":1876019249324,"id":2025,"parentId":1976,"tags":{},"startTime":1780368987892,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":30,"timestamp":1876019277381,"id":2147,"parentId":1976,"tags":{},"startTime":1780368987920,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":29657,"timestamp":1876019248077,"id":1976,"parentId":1744,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/matrix.js","layer":"app-pages-browser"},"startTime":1780368987890,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":28421,"timestamp":1876019249319,"id":2023,"parentId":1974,"tags":{},"startTime":1780368987892,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":36,"timestamp":1876019277743,"id":2148,"parentId":1974,"tags":{},"startTime":1780368987920,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":30493,"timestamp":1876019248008,"id":1974,"parentId":1712,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/zrender.js","layer":"app-pages-browser"},"startTime":1780368987890,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":29244,"timestamp":1876019249269,"id":2017,"parentId":1968,"tags":{},"startTime":1780368987892,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":35,"timestamp":1876019278532,"id":2149,"parentId":1968,"tags":{},"startTime":1780368987921,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":31132,"timestamp":1876019247746,"id":1968,"parentId":1750,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/ECEventProcessor.js","layer":"app-pages-browser"},"startTime":1780368987890,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":29555,"timestamp":1876019249331,"id":2027,"parentId":1978,"tags":{},"startTime":1780368987892,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":26,"timestamp":1876019278890,"id":2150,"parentId":1978,"tags":{},"startTime":1780368987921,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":31080,"timestamp":1876019248146,"id":1978,"parentId":1744,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/platform.js","layer":"app-pages-browser"},"startTime":1780368987890,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":29897,"timestamp":1876019249334,"id":2028,"parentId":1979,"tags":{},"startTime":1780368987892,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":24,"timestamp":1876019279235,"id":2151,"parentId":1979,"tags":{},"startTime":1780368987921,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":31356,"timestamp":1876019248180,"id":1979,"parentId":1744,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/env.js","layer":"app-pages-browser"},"startTime":1780368987890,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":30221,"timestamp":1876019249322,"id":2024,"parentId":1975,"tags":{},"startTime":1780368987892,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":32,"timestamp":1876019279546,"id":2152,"parentId":1975,"tags":{},"startTime":1780368987922,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":32794,"timestamp":1876019248043,"id":1975,"parentId":1712,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/util.js","layer":"app-pages-browser"},"startTime":1780368987890,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":31518,"timestamp":1876019249328,"id":2026,"parentId":1977,"tags":{},"startTime":1780368987892,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":25,"timestamp":1876019280849,"id":2153,"parentId":1977,"tags":{},"startTime":1780368987923,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":33223,"timestamp":1876019248112,"id":1977,"parentId":1744,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/vector.js","layer":"app-pages-browser"},"startTime":1780368987890,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":32009,"timestamp":1876019249345,"id":2031,"parentId":1982,"tags":{},"startTime":1780368987892,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":44,"timestamp":1876019281359,"id":2154,"parentId":1982,"tags":{},"startTime":1780368987924,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":34011,"timestamp":1876019248285,"id":1982,"parentId":1756,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/label/LabelManager.js","layer":"app-pages-browser"},"startTime":1780368987891,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":32971,"timestamp":1876019249342,"id":2030,"parentId":1981,"tags":{},"startTime":1780368987892,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":30,"timestamp":1876019282317,"id":2155,"parentId":1981,"tags":{},"startTime":1780368987925,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":34486,"timestamp":1876019248250,"id":1981,"parentId":1750,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/Eventful.js","layer":"app-pages-browser"},"startTime":1780368987890,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":33395,"timestamp":1876019249354,"id":2033,"parentId":1984,"tags":{},"startTime":1780368987892,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":36,"timestamp":1876019282753,"id":2156,"parentId":1984,"tags":{},"startTime":1780368987925,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":36370,"timestamp":1876019248364,"id":1984,"parentId":1744,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/canvas/graphic.js","layer":"app-pages-browser"},"startTime":1780368987891,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":35478,"timestamp":1876019249361,"id":2036,"parentId":1987,"tags":{},"startTime":1780368987892,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":38,"timestamp":1876019284847,"id":2157,"parentId":1987,"tags":{},"startTime":1780368987927,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":37181,"timestamp":1876019248572,"id":1987,"parentId":1750,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/preprocessor/backwardCompat.js","layer":"app-pages-browser"},"startTime":1780368987891,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":36414,"timestamp":1876019249359,"id":2035,"parentId":1986,"tags":{},"startTime":1780368987892,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":44,"timestamp":1876019285782,"id":2158,"parentId":1986,"tags":{},"startTime":1780368987928,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":38241,"timestamp":1876019248527,"id":1986,"parentId":1746,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/Painter.js","layer":"app-pages-browser"},"startTime":1780368987891,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":37426,"timestamp":1876019249357,"id":2034,"parentId":1985,"tags":{},"startTime":1780368987892,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":47,"timestamp":1876019286791,"id":2159,"parentId":1985,"tags":{},"startTime":1780368987929,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":40971,"timestamp":1876019248445,"id":1985,"parentId":1747,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/canvas/Painter.js","layer":"app-pages-browser"},"startTime":1780368987891,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":40090,"timestamp":1876019249339,"id":2029,"parentId":1980,"tags":{},"startTime":1780368987892,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":40,"timestamp":1876019289436,"id":2160,"parentId":1980,"tags":{},"startTime":1780368987932,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":42233,"timestamp":1876019248216,"id":1980,"parentId":1750,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/timsort.js","layer":"app-pages-browser"},"startTime":1780368987890,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":41113,"timestamp":1876019249351,"id":2032,"parentId":1983,"tags":{},"startTime":1780368987892,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":40,"timestamp":1876019290469,"id":2161,"parentId":1983,"tags":{},"startTime":1780368987933,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":43650,"timestamp":1876019248330,"id":1983,"parentId":1744,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/tool/color.js","layer":"app-pages-browser"},"startTime":1780368987891,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":42623,"timestamp":1876019249368,"id":2039,"parentId":1990,"tags":{},"startTime":1780368987892,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":32,"timestamp":1876019291997,"id":2162,"parentId":1990,"tags":{},"startTime":1780368987934,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":43885,"timestamp":1876019248710,"id":1990,"parentId":1750,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/visual/symbol.js","layer":"app-pages-browser"},"startTime":1780368987891,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":43240,"timestamp":1876019249365,"id":2038,"parentId":1989,"tags":{},"startTime":1780368987892,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":48,"timestamp":1876019292610,"id":2163,"parentId":1989,"tags":{},"startTime":1780368987935,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":44501,"timestamp":1876019248651,"id":1989,"parentId":1750,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/visual/style.js","layer":"app-pages-browser"},"startTime":1780368987891,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":43729,"timestamp":1876019249429,"id":2042,"parentId":1993,"tags":{},"startTime":1780368987892,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":35,"timestamp":1876019293162,"id":2164,"parentId":1993,"tags":{},"startTime":1780368987935,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":44600,"timestamp":1876019248820,"id":1993,"parentId":1750,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/loading/default.js","layer":"app-pages-browser"},"startTime":1780368987891,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":44052,"timestamp":1876019249375,"id":2041,"parentId":1992,"tags":{},"startTime":1780368987892,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":25,"timestamp":1876019293431,"id":2165,"parentId":1992,"tags":{},"startTime":1780368987936,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":44768,"timestamp":1876019248785,"id":1992,"parentId":1750,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/visual/decal.js","layer":"app-pages-browser"},"startTime":1780368987891,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":44188,"timestamp":1876019249370,"id":2040,"parentId":1991,"tags":{},"startTime":1780368987892,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":29,"timestamp":1876019293561,"id":2166,"parentId":1991,"tags":{},"startTime":1780368987936,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":45007,"timestamp":1876019248747,"id":1991,"parentId":1750,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/visual/helper.js","layer":"app-pages-browser"},"startTime":1780368987891,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":44402,"timestamp":1876019249363,"id":2037,"parentId":1988,"tags":{},"startTime":1780368987892,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":28,"timestamp":1876019293769,"id":2167,"parentId":1988,"tags":{},"startTime":1780368987936,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":45428,"timestamp":1876019248613,"id":1988,"parentId":1750,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/processor/dataStack.js","layer":"app-pages-browser"},"startTime":1780368987891,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":44479,"timestamp":1876019249567,"id":2043,"parentId":1994,"tags":{},"startTime":1780368987892,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":24,"timestamp":1876019294049,"id":2168,"parentId":1994,"tags":{},"startTime":1780368987936,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":45296,"timestamp":1876019248859,"id":1994,"parentId":1750,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/theme/light.js","layer":"app-pages-browser"},"startTime":1780368987891,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":44579,"timestamp":1876019249580,"id":2044,"parentId":1995,"tags":{},"startTime":1780368987892,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":24,"timestamp":1876019294162,"id":2169,"parentId":1995,"tags":{},"startTime":1780368987936,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":45449,"timestamp":1876019248894,"id":1995,"parentId":1750,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/theme/dark.js","layer":"app-pages-browser"},"startTime":1780368987891,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":44763,"timestamp":1876019249584,"id":2045,"parentId":1996,"tags":{},"startTime":1780368987892,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":26,"timestamp":1876019294349,"id":2170,"parentId":1996,"tags":{},"startTime":1780368987937,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":45804,"timestamp":1876019248929,"id":1996,"parentId":1750,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/legacy/dataSelectAction.js","layer":"app-pages-browser"},"startTime":1780368987891,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":45155,"timestamp":1876019249596,"id":2050,"parentId":2001,"tags":{},"startTime":1780368987892,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":40,"timestamp":1876019294760,"id":2171,"parentId":2001,"tags":{},"startTime":1780368987937,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":46233,"timestamp":1876019249108,"id":2001,"parentId":1757,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/DataDiffer.js","layer":"app-pages-browser"},"startTime":1780368987891,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":45775,"timestamp":1876019249591,"id":2048,"parentId":1999,"tags":{},"startTime":1780368987892,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":40,"timestamp":1876019295373,"id":2172,"parentId":1999,"tags":{},"startTime":1780368987938,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":47230,"timestamp":1876019249037,"id":1999,"parentId":1754,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/layout.js","layer":"app-pages-browser"},"startTime":1780368987891,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":46681,"timestamp":1876019249594,"id":2049,"parentId":2000,"tags":{},"startTime":1780368987892,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":33,"timestamp":1876019296278,"id":2173,"parentId":2000,"tags":{},"startTime":1780368987939,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":47747,"timestamp":1876019249072,"id":2000,"parentId":1757,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/animation/morphTransitionHelper.js","layer":"app-pages-browser"},"startTime":1780368987891,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":47478,"timestamp":1876019249587,"id":2046,"parentId":1997,"tags":{},"startTime":1780368987892,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":41,"timestamp":1876019297072,"id":2174,"parentId":1997,"tags":{},"startTime":1780368987939,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":49144,"timestamp":1876019248964,"id":1997,"parentId":1750,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/helper/transform.js","layer":"app-pages-browser"},"startTime":1780368987891,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":48688,"timestamp":1876019249589,"id":2047,"parentId":1998,"tags":{},"startTime":1780368987892,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":60,"timestamp":1876019298285,"id":2175,"parentId":1998,"tags":{},"startTime":1780368987941,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":49587,"timestamp":1876019249001,"id":1998,"parentId":1753,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/createRenderPlanner.js","layer":"app-pages-browser"},"startTime":1780368987891,"traceId":"f5ac02f0451719cf"}] -[{"name":"read-resource","duration":49038,"timestamp":1876019249599,"id":2051,"parentId":2002,"tags":{},"startTime":1780368987892,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":40,"timestamp":1876019298643,"id":2176,"parentId":2002,"tags":{},"startTime":1780368987941,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":50108,"timestamp":1876019249143,"id":2002,"parentId":1757,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/animation/basicTransition.js","layer":"app-pages-browser"},"startTime":1780368987891,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":54536,"timestamp":1876019252795,"id":2079,"parentId":2052,"tags":{},"startTime":1780368987895,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":45,"timestamp":1876019307344,"id":2177,"parentId":2052,"tags":{},"startTime":1780368987950,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":57472,"timestamp":1876019251649,"id":2052,"parentId":1755,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/helper/sourceManager.js","layer":"app-pages-browser"},"startTime":1780368987894,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":56325,"timestamp":1876019252812,"id":2080,"parentId":2053,"tags":{},"startTime":1780368987895,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":41,"timestamp":1876019309318,"id":2178,"parentId":2053,"tags":{},"startTime":1780368987952,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":58586,"timestamp":1876019251745,"id":2053,"parentId":1755,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/tooltip/seriesFormatTooltip.js","layer":"app-pages-browser"},"startTime":1780368987894,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":57650,"timestamp":1876019252818,"id":2081,"parentId":2054,"tags":{},"startTime":1780368987895,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":35,"timestamp":1876019310476,"id":2179,"parentId":2054,"tags":{},"startTime":1780368987953,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":59806,"timestamp":1876019251827,"id":2054,"parentId":1753,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/Group.js","layer":"app-pages-browser"},"startTime":1780368987894,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":58820,"timestamp":1876019252824,"id":2082,"parentId":2055,"tags":{},"startTime":1780368987895,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":34,"timestamp":1876019311649,"id":2180,"parentId":2055,"tags":{},"startTime":1780368987954,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":60765,"timestamp":1876019251873,"id":2055,"parentId":1757,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/Path.js","layer":"app-pages-browser"},"startTime":1780368987894,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":59816,"timestamp":1876019252832,"id":2084,"parentId":2057,"tags":{},"startTime":1780368987895,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":31,"timestamp":1876019312653,"id":2181,"parentId":2057,"tags":{},"startTime":1780368987955,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":61079,"timestamp":1876019251966,"id":2057,"parentId":1768,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/PolarAxisPointer.js","layer":"app-pages-browser"},"startTime":1780368987894,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":60212,"timestamp":1876019252839,"id":2086,"parentId":2059,"tags":{},"startTime":1780368987895,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":42,"timestamp":1876019313056,"id":2182,"parentId":2059,"tags":{},"startTime":1780368987955,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":61350,"timestamp":1876019252049,"id":2059,"parentId":1770,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/SingleAxisPointer.js","layer":"app-pages-browser"},"startTime":1780368987894,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":60568,"timestamp":1876019252837,"id":2085,"parentId":2058,"tags":{},"startTime":1780368987895,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":32,"timestamp":1876019313408,"id":2183,"parentId":2058,"tags":{},"startTime":1780368987956,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":61850,"timestamp":1876019252005,"id":2058,"parentId":1769,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/radar/RadarView.js","layer":"app-pages-browser"},"startTime":1780368987894,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":61041,"timestamp":1876019252829,"id":2083,"parentId":2056,"tags":{},"startTime":1780368987895,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":28,"timestamp":1876019313876,"id":2184,"parentId":2056,"tags":{},"startTime":1780368987956,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":62183,"timestamp":1876019251926,"id":2056,"parentId":1768,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/axisModelCreator.js","layer":"app-pages-browser"},"startTime":1780368987894,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":61271,"timestamp":1876019252849,"id":2090,"parentId":2063,"tags":{},"startTime":1780368987895,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":30,"timestamp":1876019314127,"id":2185,"parentId":2063,"tags":{},"startTime":1780368987956,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":62412,"timestamp":1876019252203,"id":2063,"parentId":1773,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/graphic/GraphicModel.js","layer":"app-pages-browser"},"startTime":1780368987894,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":61781,"timestamp":1876019252847,"id":2089,"parentId":2062,"tags":{},"startTime":1780368987895,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":30,"timestamp":1876019314632,"id":2186,"parentId":2062,"tags":{},"startTime":1780368987957,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":62874,"timestamp":1876019252163,"id":2062,"parentId":1755,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/mixin/dataFormat.js","layer":"app-pages-browser"},"startTime":1780368987894,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":62189,"timestamp":1876019252853,"id":2092,"parentId":2065,"tags":{},"startTime":1780368987895,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":29,"timestamp":1876019315046,"id":2187,"parentId":2065,"tags":{},"startTime":1780368987957,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":62872,"timestamp":1876019252276,"id":2065,"parentId":1775,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/installDataZoomSelect.js","layer":"app-pages-browser"},"startTime":1780368987895,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":62306,"timestamp":1876019252851,"id":2091,"parentId":2064,"tags":{},"startTime":1780368987895,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":34,"timestamp":1876019315160,"id":2188,"parentId":2064,"tags":{},"startTime":1780368987957,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":63737,"timestamp":1876019252239,"id":2064,"parentId":1773,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/graphic/GraphicView.js","layer":"app-pages-browser"},"startTime":1780368987894,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":63125,"timestamp":1876019252857,"id":2094,"parentId":2067,"tags":{},"startTime":1780368987895,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":33,"timestamp":1876019315986,"id":2189,"parentId":2067,"tags":{},"startTime":1780368987958,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":64348,"timestamp":1876019252349,"id":2067,"parentId":1775,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/toolbox/ToolboxView.js","layer":"app-pages-browser"},"startTime":1780368987895,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":63859,"timestamp":1876019252842,"id":2087,"parentId":2060,"tags":{},"startTime":1780368987895,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":36,"timestamp":1876019316705,"id":2190,"parentId":2060,"tags":{},"startTime":1780368987959,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":65452,"timestamp":1876019252088,"id":2060,"parentId":1757,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/Displayable.js","layer":"app-pages-browser"},"startTime":1780368987894,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":64690,"timestamp":1876019252860,"id":2095,"parentId":2068,"tags":{},"startTime":1780368987895,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":38,"timestamp":1876019317554,"id":2191,"parentId":2068,"tags":{},"startTime":1780368987960,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":65315,"timestamp":1876019252384,"id":2068,"parentId":1775,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/toolbox/featureManager.js","layer":"app-pages-browser"},"startTime":1780368987895,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":64841,"timestamp":1876019252868,"id":2099,"parentId":2072,"tags":{},"startTime":1780368987895,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":43,"timestamp":1876019317715,"id":2192,"parentId":2072,"tags":{},"startTime":1780368987960,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":65499,"timestamp":1876019252529,"id":2072,"parentId":1778,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/brush/BrushView.js","layer":"app-pages-browser"},"startTime":1780368987895,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":65165,"timestamp":1876019252870,"id":2100,"parentId":2073,"tags":{},"startTime":1780368987895,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":35,"timestamp":1876019318040,"id":2193,"parentId":2073,"tags":{},"startTime":1780368987960,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":65897,"timestamp":1876019252565,"id":2073,"parentId":1778,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/brush/BrushModel.js","layer":"app-pages-browser"},"startTime":1780368987895,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":65627,"timestamp":1876019252845,"id":2088,"parentId":2061,"tags":{},"startTime":1780368987895,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":31,"timestamp":1876019318477,"id":2194,"parentId":2061,"tags":{},"startTime":1780368987961,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":66685,"timestamp":1876019252125,"id":2061,"parentId":1755,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/mixin/palette.js","layer":"app-pages-browser"},"startTime":1780368987894,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":65968,"timestamp":1876019252855,"id":2093,"parentId":2066,"tags":{},"startTime":1780368987895,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":35,"timestamp":1876019318827,"id":2195,"parentId":2066,"tags":{},"startTime":1780368987961,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":66699,"timestamp":1876019252314,"id":2066,"parentId":1775,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/toolbox/ToolboxModel.js","layer":"app-pages-browser"},"startTime":1780368987895,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":66155,"timestamp":1876019252862,"id":2096,"parentId":2069,"tags":{},"startTime":1780368987895,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":97,"timestamp":1876019319020,"id":2196,"parentId":2069,"tags":{},"startTime":1780368987961,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":68811,"timestamp":1876019252420,"id":2069,"parentId":1774,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/calendar/CalendarView.js","layer":"app-pages-browser"},"startTime":1780368987895,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":68385,"timestamp":1876019252873,"id":2101,"parentId":2074,"tags":{},"startTime":1780368987895,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":63,"timestamp":1876019321270,"id":2197,"parentId":2074,"tags":{},"startTime":1780368987964,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":69567,"timestamp":1876019252603,"id":2074,"parentId":1778,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/brush/visualEncoding.js","layer":"app-pages-browser"},"startTime":1780368987895,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":69317,"timestamp":1876019252866,"id":2098,"parentId":2071,"tags":{},"startTime":1780368987895,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":33,"timestamp":1876019322189,"id":2198,"parentId":2071,"tags":{},"startTime":1780368987964,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":69977,"timestamp":1876019252493,"id":2071,"parentId":1778,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/brush/preprocessor.js","layer":"app-pages-browser"},"startTime":1780368987895,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":69601,"timestamp":1876019252875,"id":2102,"parentId":2075,"tags":{},"startTime":1780368987895,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":36,"timestamp":1876019322480,"id":2199,"parentId":2075,"tags":{},"startTime":1780368987965,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":70084,"timestamp":1876019252640,"id":2075,"parentId":1779,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/timeline/SliderTimelineModel.js","layer":"app-pages-browser"},"startTime":1780368987895,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":69872,"timestamp":1876019252864,"id":2097,"parentId":2070,"tags":{},"startTime":1780368987895,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":27,"timestamp":1876019322740,"id":2200,"parentId":2070,"tags":{},"startTime":1780368987965,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":70565,"timestamp":1876019252457,"id":2070,"parentId":1772,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/parallel/ParallelView.js","layer":"app-pages-browser"},"startTime":1780368987895,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":70210,"timestamp":1876019252877,"id":2103,"parentId":2076,"tags":{},"startTime":1780368987895,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":40,"timestamp":1876019323091,"id":2201,"parentId":2076,"tags":{},"startTime":1780368987965,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":71861,"timestamp":1876019252677,"id":2076,"parentId":1779,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/timeline/SliderTimelineView.js","layer":"app-pages-browser"},"startTime":1780368987895,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":71820,"timestamp":1876019252883,"id":2105,"parentId":2078,"tags":{},"startTime":1780368987895,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":31,"timestamp":1876019324710,"id":2202,"parentId":2078,"tags":{},"startTime":1780368987967,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":72241,"timestamp":1876019252749,"id":2078,"parentId":1779,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/timeline/preprocessor.js","layer":"app-pages-browser"},"startTime":1780368987895,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":72117,"timestamp":1876019252879,"id":2104,"parentId":2077,"tags":{},"startTime":1780368987895,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":28,"timestamp":1876019325000,"id":2203,"parentId":2077,"tags":{},"startTime":1780368987967,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":72439,"timestamp":1876019252713,"id":2077,"parentId":1779,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/timeline/timelineAction.js","layer":"app-pages-browser"},"startTime":1780368987895,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":77957,"timestamp":1876019253534,"id":2113,"parentId":2106,"tags":{},"startTime":1780368987896,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":39,"timestamp":1876019331501,"id":2204,"parentId":2106,"tags":{},"startTime":1780368987974,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":78536,"timestamp":1876019253273,"id":2106,"parentId":1776,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/tooltip/TooltipModel.js","layer":"app-pages-browser"},"startTime":1780368987896,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":78277,"timestamp":1876019253539,"id":2114,"parentId":2107,"tags":{},"startTime":1780368987896,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":45,"timestamp":1876019331820,"id":2205,"parentId":2107,"tags":{},"startTime":1780368987974,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":80597,"timestamp":1876019253316,"id":2107,"parentId":1776,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/tooltip/TooltipView.js","layer":"app-pages-browser"},"startTime":1780368987896,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":80391,"timestamp":1876019253550,"id":2118,"parentId":2111,"tags":{},"startTime":1780368987896,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":58,"timestamp":1876019333953,"id":2206,"parentId":2111,"tags":{},"startTime":1780368987976,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":82245,"timestamp":1876019253455,"id":2111,"parentId":1766,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axis/CartesianAxisView.js","layer":"app-pages-browser"},"startTime":1780368987896,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":82180,"timestamp":1876019253552,"id":2119,"parentId":2112,"tags":{},"startTime":1780368987896,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":40,"timestamp":1876019335742,"id":2207,"parentId":2112,"tags":{},"startTime":1780368987978,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":82832,"timestamp":1876019253491,"id":2112,"parentId":1770,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axis/SingleAxisView.js","layer":"app-pages-browser"},"startTime":1780368987896,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":82787,"timestamp":1876019253546,"id":2116,"parentId":2109,"tags":{},"startTime":1780368987896,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":39,"timestamp":1876019336338,"id":2208,"parentId":2109,"tags":{},"startTime":1780368987979,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":83924,"timestamp":1876019253386,"id":2109,"parentId":1768,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axis/AngleAxisView.js","layer":"app-pages-browser"},"startTime":1780368987896,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":83774,"timestamp":1876019253548,"id":2117,"parentId":2110,"tags":{},"startTime":1780368987896,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":65,"timestamp":1876019337328,"id":2209,"parentId":2110,"tags":{},"startTime":1780368987980,"traceId":"f5ac02f0451719cf"}] -[{"name":"build-module-js","duration":84468,"timestamp":1876019253420,"id":2110,"parentId":1768,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axis/RadiusAxisView.js","layer":"app-pages-browser"},"startTime":1780368987896,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":84355,"timestamp":1876019253544,"id":2115,"parentId":2108,"tags":{},"startTime":1780368987896,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":32,"timestamp":1876019337903,"id":2210,"parentId":2108,"tags":{},"startTime":1780368987980,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":84951,"timestamp":1876019253352,"id":2108,"parentId":1768,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axis/AxisView.js","layer":"app-pages-browser"},"startTime":1780368987896,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":8612,"timestamp":1876019398191,"id":2284,"parentId":2211,"tags":{},"startTime":1780368988040,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":40,"timestamp":1876019406816,"id":2405,"parentId":2211,"tags":{},"startTime":1780368988049,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":12307,"timestamp":1876019395232,"id":2211,"parentId":1772,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axis/ParallelAxisView.js","layer":"app-pages-browser"},"startTime":1780368988037,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":9309,"timestamp":1876019398239,"id":2289,"parentId":2216,"tags":{},"startTime":1780368988040,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":30,"timestamp":1876019407553,"id":2406,"parentId":2216,"tags":{},"startTime":1780368988050,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":12624,"timestamp":1876019395500,"id":2216,"parentId":1768,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/layout/barPolar.js","layer":"app-pages-browser"},"startTime":1780368988038,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":9875,"timestamp":1876019398254,"id":2290,"parentId":2217,"tags":{},"startTime":1780368988040,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":29,"timestamp":1876019408133,"id":2407,"parentId":2217,"tags":{},"startTime":1780368988050,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":13187,"timestamp":1876019395538,"id":2217,"parentId":1769,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/radar/Radar.js","layer":"app-pages-browser"},"startTime":1780368988038,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":11387,"timestamp":1876019398235,"id":2288,"parentId":2215,"tags":{},"startTime":1780368988040,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":29,"timestamp":1876019409628,"id":2408,"parentId":2215,"tags":{},"startTime":1780368988052,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":14702,"timestamp":1876019395457,"id":2215,"parentId":1768,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/polar/polarCreator.js","layer":"app-pages-browser"},"startTime":1780368988038,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":11950,"timestamp":1876019398218,"id":2286,"parentId":2213,"tags":{},"startTime":1780368988040,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":29,"timestamp":1876019410173,"id":2409,"parentId":2213,"tags":{},"startTime":1780368988052,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":14982,"timestamp":1876019395380,"id":2213,"parentId":1768,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/polar/PolarModel.js","layer":"app-pages-browser"},"startTime":1780368988038,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":12116,"timestamp":1876019398258,"id":2291,"parentId":2218,"tags":{},"startTime":1780368988041,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":29,"timestamp":1876019410378,"id":2410,"parentId":2218,"tags":{},"startTime":1780368988053,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":15117,"timestamp":1876019395573,"id":2218,"parentId":1769,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/radar/RadarModel.js","layer":"app-pages-browser"},"startTime":1780368988038,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":12434,"timestamp":1876019398261,"id":2292,"parentId":2219,"tags":{},"startTime":1780368988041,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":27,"timestamp":1876019410701,"id":2411,"parentId":2219,"tags":{},"startTime":1780368988053,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":15219,"timestamp":1876019395607,"id":2219,"parentId":1766,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/cartesian/GridModel.js","layer":"app-pages-browser"},"startTime":1780368988038,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":12606,"timestamp":1876019398225,"id":2287,"parentId":2214,"tags":{},"startTime":1780368988040,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":25,"timestamp":1876019410834,"id":2412,"parentId":2214,"tags":{},"startTime":1780368988053,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":15612,"timestamp":1876019395420,"id":2214,"parentId":1768,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/polar/AxisModel.js","layer":"app-pages-browser"},"startTime":1780368988038,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":12827,"timestamp":1876019398209,"id":2285,"parentId":2212,"tags":{},"startTime":1780368988040,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":25,"timestamp":1876019411040,"id":2413,"parentId":2212,"tags":{},"startTime":1780368988053,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":15808,"timestamp":1876019395334,"id":2212,"parentId":1772,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axis/parallelAxisAction.js","layer":"app-pages-browser"},"startTime":1780368988038,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":12882,"timestamp":1876019398265,"id":2293,"parentId":2220,"tags":{},"startTime":1780368988041,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":24,"timestamp":1876019411150,"id":2414,"parentId":2220,"tags":{},"startTime":1780368988053,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":15641,"timestamp":1876019395643,"id":2220,"parentId":1766,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/cartesian/AxisModel.js","layer":"app-pages-browser"},"startTime":1780368988038,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":13020,"timestamp":1876019398268,"id":2294,"parentId":2221,"tags":{},"startTime":1780368988041,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":34,"timestamp":1876019411291,"id":2415,"parentId":2221,"tags":{},"startTime":1780368988054,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":17690,"timestamp":1876019395717,"id":2221,"parentId":1766,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/cartesian/Grid.js","layer":"app-pages-browser"},"startTime":1780368988038,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":15173,"timestamp":1876019398270,"id":2295,"parentId":2222,"tags":{},"startTime":1780368988041,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":37,"timestamp":1876019413453,"id":2416,"parentId":2222,"tags":{},"startTime":1780368988056,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":17985,"timestamp":1876019395755,"id":2222,"parentId":1770,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/single/AxisModel.js","layer":"app-pages-browser"},"startTime":1780368988038,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":15464,"timestamp":1876019398284,"id":2300,"parentId":2227,"tags":{},"startTime":1780368988041,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":28,"timestamp":1876019413752,"id":2417,"parentId":2227,"tags":{},"startTime":1780368988056,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":17970,"timestamp":1876019395925,"id":2227,"parentId":1782,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/legend/legendFilter.js","layer":"app-pages-browser"},"startTime":1780368988038,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":15622,"timestamp":1876019398279,"id":2298,"parentId":2225,"tags":{},"startTime":1780368988041,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":29,"timestamp":1876019413905,"id":2418,"parentId":2225,"tags":{},"startTime":1780368988056,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":18766,"timestamp":1876019395858,"id":2225,"parentId":1783,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/format.js","layer":"app-pages-browser"},"startTime":1780368988038,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":16351,"timestamp":1876019398282,"id":2299,"parentId":2226,"tags":{},"startTime":1780368988041,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":31,"timestamp":1876019414637,"id":2419,"parentId":2226,"tags":{},"startTime":1780368988057,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":19246,"timestamp":1876019395891,"id":2226,"parentId":1782,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/legend/LegendModel.js","layer":"app-pages-browser"},"startTime":1780368988038,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":16869,"timestamp":1876019398273,"id":2296,"parentId":2223,"tags":{},"startTime":1780368988041,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":26,"timestamp":1876019415146,"id":2420,"parentId":2223,"tags":{},"startTime":1780368988057,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":19488,"timestamp":1876019395790,"id":2223,"parentId":1770,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/single/singleCreator.js","layer":"app-pages-browser"},"startTime":1780368988038,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":17006,"timestamp":1876019398276,"id":2297,"parentId":2224,"tags":{},"startTime":1780368988041,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":35,"timestamp":1876019415288,"id":2421,"parentId":2224,"tags":{},"startTime":1780368988058,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":20537,"timestamp":1876019395825,"id":2224,"parentId":1783,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/label/labelStyle.js","layer":"app-pages-browser"},"startTime":1780368988038,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":18086,"timestamp":1876019398288,"id":2301,"parentId":2228,"tags":{},"startTime":1780368988041,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":32,"timestamp":1876019416379,"id":2422,"parentId":2228,"tags":{},"startTime":1780368988059,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":20669,"timestamp":1876019395958,"id":2228,"parentId":1782,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/legend/legendAction.js","layer":"app-pages-browser"},"startTime":1780368988038,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":18341,"timestamp":1876019398291,"id":2302,"parentId":2229,"tags":{},"startTime":1780368988041,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":30,"timestamp":1876019416636,"id":2423,"parentId":2229,"tags":{},"startTime":1780368988059,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":20981,"timestamp":1876019395992,"id":2229,"parentId":1777,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/CartesianAxisPointer.js","layer":"app-pages-browser"},"startTime":1780368988038,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":18681,"timestamp":1876019398296,"id":2304,"parentId":2231,"tags":{},"startTime":1780368988041,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":29,"timestamp":1876019416981,"id":2424,"parentId":2231,"tags":{},"startTime":1780368988059,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":21209,"timestamp":1876019396068,"id":2231,"parentId":1777,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/AxisPointerModel.js","layer":"app-pages-browser"},"startTime":1780368988038,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":18973,"timestamp":1876019398317,"id":2307,"parentId":2234,"tags":{},"startTime":1780368988041,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":33,"timestamp":1876019417297,"id":2425,"parentId":2234,"tags":{},"startTime":1780368988060,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":21302,"timestamp":1876019396170,"id":2234,"parentId":1787,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/checkMarkerInSeries.js","layer":"app-pages-browser"},"startTime":1780368988038,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":19186,"timestamp":1876019398293,"id":2303,"parentId":2230,"tags":{},"startTime":1780368988041,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":42,"timestamp":1876019417483,"id":2426,"parentId":2230,"tags":{},"startTime":1780368988060,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":22670,"timestamp":1876019396034,"id":2230,"parentId":1782,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/legend/LegendView.js","layer":"app-pages-browser"},"startTime":1780368988038,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":20407,"timestamp":1876019398309,"id":2306,"parentId":2233,"tags":{},"startTime":1780368988041,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":39,"timestamp":1876019418723,"id":2427,"parentId":2233,"tags":{},"startTime":1780368988061,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":23184,"timestamp":1876019396137,"id":2233,"parentId":1777,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/modelHelper.js","layer":"app-pages-browser"},"startTime":1780368988038,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":21008,"timestamp":1876019398320,"id":2308,"parentId":2235,"tags":{},"startTime":1780368988041,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":35,"timestamp":1876019419333,"id":2428,"parentId":2235,"tags":{},"startTime":1780368988062,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":23905,"timestamp":1876019396203,"id":2235,"parentId":1777,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/axisTrigger.js","layer":"app-pages-browser"},"startTime":1780368988038,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":21824,"timestamp":1876019398323,"id":2309,"parentId":2236,"tags":{},"startTime":1780368988041,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":26,"timestamp":1876019420151,"id":2429,"parentId":2236,"tags":{},"startTime":1780368988062,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":24178,"timestamp":1876019396236,"id":2236,"parentId":1787,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/MarkPointModel.js","layer":"app-pages-browser"},"startTime":1780368988038,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":22126,"timestamp":1876019398299,"id":2305,"parentId":2232,"tags":{},"startTime":1780368988041,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":30,"timestamp":1876019420432,"id":2430,"parentId":2232,"tags":{},"startTime":1780368988063,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":24660,"timestamp":1876019396103,"id":2232,"parentId":1777,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/AxisPointerView.js","layer":"app-pages-browser"},"startTime":1780368988038,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":22445,"timestamp":1876019398325,"id":2310,"parentId":2237,"tags":{},"startTime":1780368988041,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":37,"timestamp":1876019420778,"id":2431,"parentId":2237,"tags":{},"startTime":1780368988063,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":25167,"timestamp":1876019396270,"id":2237,"parentId":1787,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/MarkPointView.js","layer":"app-pages-browser"},"startTime":1780368988039,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":23120,"timestamp":1876019398327,"id":2311,"parentId":2238,"tags":{},"startTime":1780368988041,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":35,"timestamp":1876019421452,"id":2432,"parentId":2238,"tags":{},"startTime":1780368988064,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":25694,"timestamp":1876019396302,"id":2238,"parentId":1785,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/InsideZoomView.js","layer":"app-pages-browser"},"startTime":1780368988039,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":23672,"timestamp":1876019398329,"id":2312,"parentId":2239,"tags":{},"startTime":1780368988041,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":30,"timestamp":1876019422006,"id":2433,"parentId":2239,"tags":{},"startTime":1780368988064,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":26142,"timestamp":1876019396335,"id":2239,"parentId":1785,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/roams.js","layer":"app-pages-browser"},"startTime":1780368988039,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":24148,"timestamp":1876019398335,"id":2314,"parentId":2241,"tags":{},"startTime":1780368988041,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":26,"timestamp":1876019422487,"id":2434,"parentId":2241,"tags":{},"startTime":1780368988065,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":26211,"timestamp":1876019396400,"id":2241,"parentId":1785,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/installCommon.js","layer":"app-pages-browser"},"startTime":1780368988039,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":24297,"timestamp":1876019398332,"id":2313,"parentId":2240,"tags":{},"startTime":1780368988041,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":25,"timestamp":1876019422633,"id":2435,"parentId":2240,"tags":{},"startTime":1780368988065,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":26394,"timestamp":1876019396367,"id":2240,"parentId":1785,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/InsideZoomModel.js","layer":"app-pages-browser"},"startTime":1780368988039,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":24433,"timestamp":1876019398338,"id":2315,"parentId":2242,"tags":{},"startTime":1780368988041,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":24,"timestamp":1876019422775,"id":2436,"parentId":2242,"tags":{},"startTime":1780368988065,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":26458,"timestamp":1876019396433,"id":2242,"parentId":1788,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/MarkAreaModel.js","layer":"app-pages-browser"},"startTime":1780368988039,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":24565,"timestamp":1876019398340,"id":2316,"parentId":2243,"tags":{},"startTime":1780368988041,"traceId":"f5ac02f0451719cf"}] -[{"name":"next-swc-loader","duration":30,"timestamp":1876019422909,"id":2437,"parentId":2243,"tags":{},"startTime":1780368988065,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":27389,"timestamp":1876019396471,"id":2243,"parentId":1788,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/MarkAreaView.js","layer":"app-pages-browser"},"startTime":1780368988039,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":25570,"timestamp":1876019398343,"id":2317,"parentId":2244,"tags":{},"startTime":1780368988041,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":32,"timestamp":1876019423920,"id":2438,"parentId":2244,"tags":{},"startTime":1780368988066,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":27683,"timestamp":1876019396503,"id":2244,"parentId":1789,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/MarkLineModel.js","layer":"app-pages-browser"},"startTime":1780368988039,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":25850,"timestamp":1876019398346,"id":2318,"parentId":2245,"tags":{},"startTime":1780368988041,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":37,"timestamp":1876019424201,"id":2439,"parentId":2245,"tags":{},"startTime":1780368988066,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":29754,"timestamp":1876019396536,"id":2245,"parentId":1789,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/MarkLineView.js","layer":"app-pages-browser"},"startTime":1780368988039,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":27953,"timestamp":1876019398349,"id":2319,"parentId":2246,"tags":{},"startTime":1780368988041,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":43,"timestamp":1876019426321,"id":2440,"parentId":2246,"tags":{},"startTime":1780368988069,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":30204,"timestamp":1876019396568,"id":2246,"parentId":1775,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/toolbox/feature/SaveAsImage.js","layer":"app-pages-browser"},"startTime":1780368988039,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":28427,"timestamp":1876019398351,"id":2320,"parentId":2247,"tags":{},"startTime":1780368988041,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":32,"timestamp":1876019426783,"id":2441,"parentId":2247,"tags":{},"startTime":1780368988069,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":30616,"timestamp":1876019396601,"id":2247,"parentId":1775,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/toolbox/feature/MagicType.js","layer":"app-pages-browser"},"startTime":1780368988039,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":28867,"timestamp":1876019398356,"id":2322,"parentId":2249,"tags":{},"startTime":1780368988041,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":28,"timestamp":1876019427226,"id":2442,"parentId":2249,"tags":{},"startTime":1780368988069,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":30716,"timestamp":1876019396675,"id":2249,"parentId":1775,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/toolbox/feature/Restore.js","layer":"app-pages-browser"},"startTime":1780368988039,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":29043,"timestamp":1876019398354,"id":2321,"parentId":2248,"tags":{},"startTime":1780368988041,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":33,"timestamp":1876019427399,"id":2443,"parentId":2248,"tags":{},"startTime":1780368988070,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":31719,"timestamp":1876019396637,"id":2248,"parentId":1775,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/toolbox/feature/DataView.js","layer":"app-pages-browser"},"startTime":1780368988039,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":30002,"timestamp":1876019398360,"id":2324,"parentId":2251,"tags":{},"startTime":1780368988041,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":29,"timestamp":1876019428366,"id":2444,"parentId":2251,"tags":{},"startTime":1780368988071,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":31971,"timestamp":1876019396749,"id":2251,"parentId":1778,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/toolbox/feature/Brush.js","layer":"app-pages-browser"},"startTime":1780368988039,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":30363,"timestamp":1876019398368,"id":2327,"parentId":2254,"tags":{},"startTime":1780368988041,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":32,"timestamp":1876019428736,"id":2445,"parentId":2254,"tags":{},"startTime":1780368988071,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":32069,"timestamp":1876019396847,"id":2254,"parentId":1772,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/parallel/parallelPreprocessor.js","layer":"app-pages-browser"},"startTime":1780368988039,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":30563,"timestamp":1876019398358,"id":2323,"parentId":2250,"tags":{},"startTime":1780368988041,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":34,"timestamp":1876019428925,"id":2446,"parentId":2250,"tags":{},"startTime":1780368988071,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":32727,"timestamp":1876019396708,"id":2250,"parentId":1775,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/toolbox/feature/DataZoom.js","layer":"app-pages-browser"},"startTime":1780368988039,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":31068,"timestamp":1876019398372,"id":2329,"parentId":2256,"tags":{},"startTime":1780368988041,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":27,"timestamp":1876019429443,"id":2447,"parentId":2256,"tags":{},"startTime":1780368988072,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":32663,"timestamp":1876019396914,"id":2256,"parentId":1772,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/parallel/parallelCreator.js","layer":"app-pages-browser"},"startTime":1780368988039,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":31219,"timestamp":1876019398363,"id":2325,"parentId":2252,"tags":{},"startTime":1780368988041,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":27,"timestamp":1876019429585,"id":2448,"parentId":2252,"tags":{},"startTime":1780368988072,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":33035,"timestamp":1876019396782,"id":2252,"parentId":1774,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/calendar/CalendarModel.js","layer":"app-pages-browser"},"startTime":1780368988039,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":31458,"timestamp":1876019398370,"id":2328,"parentId":2255,"tags":{},"startTime":1780368988041,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":28,"timestamp":1876019429831,"id":2449,"parentId":2255,"tags":{},"startTime":1780368988072,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":33156,"timestamp":1876019396880,"id":2255,"parentId":1772,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/parallel/ParallelModel.js","layer":"app-pages-browser"},"startTime":1780368988039,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":31666,"timestamp":1876019398375,"id":2330,"parentId":2257,"tags":{},"startTime":1780368988041,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":26,"timestamp":1876019430048,"id":2450,"parentId":2257,"tags":{},"startTime":1780368988072,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":33315,"timestamp":1876019396946,"id":2257,"parentId":1772,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/parallel/AxisModel.js","layer":"app-pages-browser"},"startTime":1780368988039,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":31899,"timestamp":1876019398365,"id":2326,"parentId":2253,"tags":{},"startTime":1780368988041,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":30,"timestamp":1876019430267,"id":2451,"parentId":2253,"tags":{},"startTime":1780368988073,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":34193,"timestamp":1876019396815,"id":2253,"parentId":1774,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/calendar/Calendar.js","layer":"app-pages-browser"},"startTime":1780368988039,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":32633,"timestamp":1876019398380,"id":2332,"parentId":2259,"tags":{},"startTime":1780368988041,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":51,"timestamp":1876019431016,"id":2452,"parentId":2259,"tags":{},"startTime":1780368988073,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":34907,"timestamp":1876019397016,"id":2259,"parentId":1791,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/PiecewiseModel.js","layer":"app-pages-browser"},"startTime":1780368988039,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":33552,"timestamp":1876019398377,"id":2331,"parentId":2258,"tags":{},"startTime":1780368988041,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":30,"timestamp":1876019431932,"id":2453,"parentId":2258,"tags":{},"startTime":1780368988074,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":35422,"timestamp":1876019396979,"id":2258,"parentId":1793,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/visual/aria.js","layer":"app-pages-browser"},"startTime":1780368988039,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":34012,"timestamp":1876019398395,"id":2334,"parentId":2261,"tags":{},"startTime":1780368988041,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":26,"timestamp":1876019432410,"id":2454,"parentId":2261,"tags":{},"startTime":1780368988075,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":35469,"timestamp":1876019397082,"id":2261,"parentId":1791,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/installCommon.js","layer":"app-pages-browser"},"startTime":1780368988039,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":34174,"timestamp":1876019398382,"id":2333,"parentId":2260,"tags":{},"startTime":1780368988041,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":30,"timestamp":1876019432559,"id":2455,"parentId":2260,"tags":{},"startTime":1780368988075,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":36317,"timestamp":1876019397049,"id":2260,"parentId":1791,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/PiecewiseView.js","layer":"app-pages-browser"},"startTime":1780368988039,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":34978,"timestamp":1876019398397,"id":2335,"parentId":2262,"tags":{},"startTime":1780368988041,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":34,"timestamp":1876019433380,"id":2456,"parentId":2262,"tags":{},"startTime":1780368988076,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":36491,"timestamp":1876019397114,"id":2262,"parentId":1786,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/SliderZoomModel.js","layer":"app-pages-browser"},"startTime":1780368988039,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":35212,"timestamp":1876019398399,"id":2336,"parentId":2263,"tags":{},"startTime":1780368988041,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":87,"timestamp":1876019433616,"id":2457,"parentId":2263,"tags":{},"startTime":1780368988076,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":38492,"timestamp":1876019397162,"id":2263,"parentId":1786,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/SliderZoomView.js","layer":"app-pages-browser"},"startTime":1780368988039,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":37263,"timestamp":1876019398404,"id":2338,"parentId":2265,"tags":{},"startTime":1780368988041,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":131,"timestamp":1876019435673,"id":2458,"parentId":2265,"tags":{},"startTime":1780368988078,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":40957,"timestamp":1876019397252,"id":2265,"parentId":1792,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/ContinuousView.js","layer":"app-pages-browser"},"startTime":1780368988039,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":39838,"timestamp":1876019398402,"id":2337,"parentId":2264,"tags":{},"startTime":1780368988041,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":50,"timestamp":1876019438252,"id":2459,"parentId":2264,"tags":{},"startTime":1780368988080,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":42040,"timestamp":1876019397197,"id":2264,"parentId":1792,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/ContinuousModel.js","layer":"app-pages-browser"},"startTime":1780368988039,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":40848,"timestamp":1876019398406,"id":2339,"parentId":2266,"tags":{},"startTime":1780368988041,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":35,"timestamp":1876019439261,"id":2460,"parentId":2266,"tags":{},"startTime":1780368988082,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":42156,"timestamp":1876019397291,"id":2266,"parentId":1793,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/aria/preprocessor.js","layer":"app-pages-browser"},"startTime":1780368988040,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":41045,"timestamp":1876019398411,"id":2341,"parentId":2268,"tags":{},"startTime":1780368988041,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":37,"timestamp":1876019439460,"id":2461,"parentId":2268,"tags":{},"startTime":1780368988082,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":42240,"timestamp":1876019397360,"id":2268,"parentId":1829,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/processor/dataFilter.js","layer":"app-pages-browser"},"startTime":1780368988040,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":41199,"timestamp":1876019398413,"id":2342,"parentId":2269,"tags":{},"startTime":1780368988041,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":26,"timestamp":1876019439615,"id":2462,"parentId":2269,"tags":{},"startTime":1780368988082,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":42322,"timestamp":1876019397404,"id":2269,"parentId":1829,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/processor/negativeDataFilter.js","layer":"app-pages-browser"},"startTime":1780368988040,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":41332,"timestamp":1876019398408,"id":2340,"parentId":2267,"tags":{},"startTime":1780368988041,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":24,"timestamp":1876019439745,"id":2463,"parentId":2267,"tags":{},"startTime":1780368988082,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":42635,"timestamp":1876019397328,"id":2267,"parentId":1794,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/types.js","layer":"app-pages-browser"},"startTime":1780368988040,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":41564,"timestamp":1876019398415,"id":2343,"parentId":2270,"tags":{},"startTime":1780368988041,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":27,"timestamp":1876019439984,"id":2464,"parentId":2270,"tags":{},"startTime":1780368988082,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":42833,"timestamp":1876019397451,"id":2270,"parentId":1831,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/layout/points.js","layer":"app-pages-browser"},"startTime":1780368988040,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":41873,"timestamp":1876019398417,"id":2344,"parentId":2271,"tags":{},"startTime":1780368988041,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":28,"timestamp":1876019440294,"id":2465,"parentId":2271,"tags":{},"startTime":1780368988083,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":43083,"timestamp":1876019397555,"id":2271,"parentId":1795,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/transform/filterTransform.js","layer":"app-pages-browser"},"startTime":1780368988040,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":42272,"timestamp":1876019398422,"id":2346,"parentId":2273,"tags":{},"startTime":1780368988041,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":44,"timestamp":1876019440699,"id":2466,"parentId":2273,"tags":{},"startTime":1780368988083,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":43350,"timestamp":1876019397631,"id":2273,"parentId":1781,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/legend/ScrollableLegendModel.js","layer":"app-pages-browser"},"startTime":1780368988040,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":42567,"timestamp":1876019398420,"id":2345,"parentId":2272,"tags":{},"startTime":1780368988041,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":31,"timestamp":1876019440990,"id":2467,"parentId":2272,"tags":{},"startTime":1780368988083,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":43834,"timestamp":1876019397591,"id":2272,"parentId":1795,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/transform/sortTransform.js","layer":"app-pages-browser"},"startTime":1780368988040,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":43002,"timestamp":1876019398427,"id":2348,"parentId":2275,"tags":{},"startTime":1780368988041,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":28,"timestamp":1876019441434,"id":2468,"parentId":2275,"tags":{},"startTime":1780368988084,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":43828,"timestamp":1876019397710,"id":2275,"parentId":1781,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/legend/scrollableLegendAction.js","layer":"app-pages-browser"},"startTime":1780368988040,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":43117,"timestamp":1876019398425,"id":2347,"parentId":2274,"tags":{},"startTime":1780368988041,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":35,"timestamp":1876019441545,"id":2469,"parentId":2274,"tags":{},"startTime":1780368988084,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":45191,"timestamp":1876019397674,"id":2274,"parentId":1781,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/legend/ScrollableLegendView.js","layer":"app-pages-browser"},"startTime":1780368988040,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":44451,"timestamp":1876019398429,"id":2349,"parentId":2276,"tags":{},"startTime":1780368988041,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":41,"timestamp":1876019442888,"id":2470,"parentId":2276,"tags":{},"startTime":1780368988085,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":45552,"timestamp":1876019397783,"id":2276,"parentId":1771,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/GeoModel.js","layer":"app-pages-browser"},"startTime":1780368988040,"traceId":"f5ac02f0451719cf"}] -[{"name":"read-resource","duration":44908,"timestamp":1876019398436,"id":2352,"parentId":2279,"tags":{},"startTime":1780368988041,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":31,"timestamp":1876019443348,"id":2471,"parentId":2279,"tags":{},"startTime":1780368988086,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":45617,"timestamp":1876019397953,"id":2279,"parentId":1771,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/geoSourceManager.js","layer":"app-pages-browser"},"startTime":1780368988040,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":45141,"timestamp":1876019398434,"id":2351,"parentId":2278,"tags":{},"startTime":1780368988041,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":26,"timestamp":1876019443578,"id":2472,"parentId":2278,"tags":{},"startTime":1780368988086,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":45946,"timestamp":1876019397895,"id":2278,"parentId":1771,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/geo/GeoView.js","layer":"app-pages-browser"},"startTime":1780368988040,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":45407,"timestamp":1876019398438,"id":2353,"parentId":2280,"tags":{},"startTime":1780368988041,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":40,"timestamp":1876019443848,"id":2473,"parentId":2280,"tags":{},"startTime":1780368988086,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":46432,"timestamp":1876019397992,"id":2280,"parentId":1829,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/pie/pieLayout.js","layer":"app-pages-browser"},"startTime":1780368988040,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":45997,"timestamp":1876019398431,"id":2350,"parentId":2277,"tags":{},"startTime":1780368988041,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":29,"timestamp":1876019444432,"id":2474,"parentId":2277,"tags":{},"startTime":1780368988087,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":47165,"timestamp":1876019397848,"id":2277,"parentId":1771,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/geoCreator.js","layer":"app-pages-browser"},"startTime":1780368988040,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":46644,"timestamp":1876019398442,"id":2355,"parentId":2282,"tags":{},"startTime":1780368988041,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":39,"timestamp":1876019445090,"id":2475,"parentId":2282,"tags":{},"startTime":1780368988087,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":47298,"timestamp":1876019398113,"id":2282,"parentId":1829,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/pie/PieSeries.js","layer":"app-pages-browser"},"startTime":1780368988040,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":46977,"timestamp":1876019398440,"id":2354,"parentId":2281,"tags":{},"startTime":1780368988041,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":32,"timestamp":1876019445420,"id":2476,"parentId":2281,"tags":{},"startTime":1780368988088,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":47975,"timestamp":1876019398028,"id":2281,"parentId":1829,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/pie/PieView.js","layer":"app-pages-browser"},"startTime":1780368988040,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":55842,"timestamp":1876019398444,"id":2356,"parentId":2283,"tags":{},"startTime":1780368988041,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":43,"timestamp":1876019454297,"id":2477,"parentId":2283,"tags":{},"startTime":1780368988097,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":56553,"timestamp":1876019398147,"id":2283,"parentId":1831,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/scatter/ScatterSeries.js","layer":"app-pages-browser"},"startTime":1780368988040,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":53827,"timestamp":1876019400999,"id":2365,"parentId":2357,"tags":{},"startTime":1780368988043,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":44,"timestamp":1876019454843,"id":2478,"parentId":2357,"tags":{},"startTime":1780368988097,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":54673,"timestamp":1876019400625,"id":2357,"parentId":1831,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/scatter/ScatterView.js","layer":"app-pages-browser"},"startTime":1780368988043,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":54310,"timestamp":1876019401010,"id":2366,"parentId":2358,"tags":{},"startTime":1780368988043,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":32,"timestamp":1876019455326,"id":2479,"parentId":2358,"tags":{},"startTime":1780368988098,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":54927,"timestamp":1876019400702,"id":2358,"parentId":1830,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/processor/dataSample.js","layer":"app-pages-browser"},"startTime":1780368988043,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":54617,"timestamp":1876019401036,"id":2369,"parentId":2361,"tags":{},"startTime":1780368988043,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":32,"timestamp":1876019455658,"id":2480,"parentId":2361,"tags":{},"startTime":1780368988098,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":55012,"timestamp":1876019400828,"id":2361,"parentId":1832,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/radar/radarLayout.js","layer":"app-pages-browser"},"startTime":1780368988043,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":54828,"timestamp":1876019401017,"id":2367,"parentId":2359,"tags":{},"startTime":1780368988043,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":39,"timestamp":1876019455850,"id":2481,"parentId":2359,"tags":{},"startTime":1780368988098,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":56031,"timestamp":1876019400754,"id":2359,"parentId":1828,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/layout/barGrid.js","layer":"app-pages-browser"},"startTime":1780368988043,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":55752,"timestamp":1876019401039,"id":2370,"parentId":2362,"tags":{},"startTime":1780368988043,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":27,"timestamp":1876019456796,"id":2482,"parentId":2362,"tags":{},"startTime":1780368988099,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":56077,"timestamp":1876019400862,"id":2362,"parentId":1832,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/radar/backwardCompat.js","layer":"app-pages-browser"},"startTime":1780368988043,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":55960,"timestamp":1876019401043,"id":2372,"parentId":2364,"tags":{},"startTime":1780368988043,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":27,"timestamp":1876019457008,"id":2483,"parentId":2364,"tags":{},"startTime":1780368988099,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":56315,"timestamp":1876019400938,"id":2364,"parentId":1832,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/radar/RadarSeries.js","layer":"app-pages-browser"},"startTime":1780368988043,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":56442,"timestamp":1876019401041,"id":2371,"parentId":2363,"tags":{},"startTime":1780368988043,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":30,"timestamp":1876019457487,"id":2484,"parentId":2363,"tags":{},"startTime":1780368988100,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":57094,"timestamp":1876019400900,"id":2363,"parentId":1832,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/radar/RadarView.js","layer":"app-pages-browser"},"startTime":1780368988043,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":56979,"timestamp":1876019401021,"id":2368,"parentId":2360,"tags":{},"startTime":1780368988043,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":28,"timestamp":1876019458003,"id":2485,"parentId":2360,"tags":{},"startTime":1780368988100,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":57635,"timestamp":1876019400791,"id":2360,"parentId":1834,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/View.js","layer":"app-pages-browser"},"startTime":1780368988043,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":65051,"timestamp":1876019402338,"id":2384,"parentId":2375,"tags":{},"startTime":1780368988045,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":34,"timestamp":1876019467402,"id":2486,"parentId":2375,"tags":{},"startTime":1780368988110,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":65938,"timestamp":1876019402012,"id":2375,"parentId":1833,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/map/MapView.js","layer":"app-pages-browser"},"startTime":1780368988044,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":65656,"timestamp":1876019402327,"id":2382,"parentId":2373,"tags":{},"startTime":1780368988045,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":46,"timestamp":1876019467994,"id":2487,"parentId":2373,"tags":{},"startTime":1780368988110,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":66618,"timestamp":1876019401812,"id":2373,"parentId":1830,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/line/LineSeries.js","layer":"app-pages-browser"},"startTime":1780368988044,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":66097,"timestamp":1876019402343,"id":2386,"parentId":2377,"tags":{},"startTime":1780368988045,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":41,"timestamp":1876019468445,"id":2488,"parentId":2377,"tags":{},"startTime":1780368988111,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":66839,"timestamp":1876019402125,"id":2377,"parentId":1833,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/map/mapDataStatistic.js","layer":"app-pages-browser"},"startTime":1780368988044,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":66625,"timestamp":1876019402345,"id":2387,"parentId":2378,"tags":{},"startTime":1780368988045,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":30,"timestamp":1876019468975,"id":2489,"parentId":2378,"tags":{},"startTime":1780368988111,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":67016,"timestamp":1876019402163,"id":2378,"parentId":1833,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/map/mapSymbolLayout.js","layer":"app-pages-browser"},"startTime":1780368988044,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":66843,"timestamp":1876019402341,"id":2385,"parentId":2376,"tags":{},"startTime":1780368988045,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":37,"timestamp":1876019469187,"id":2490,"parentId":2376,"tags":{},"startTime":1780368988111,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":67518,"timestamp":1876019402080,"id":2376,"parentId":1833,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/map/MapSeries.js","layer":"app-pages-browser"},"startTime":1780368988044,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":67256,"timestamp":1876019402347,"id":2388,"parentId":2379,"tags":{},"startTime":1780368988045,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":42,"timestamp":1876019469606,"id":2491,"parentId":2379,"tags":{},"startTime":1780368988112,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":68771,"timestamp":1876019402199,"id":2379,"parentId":1828,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/bar/PictorialBarView.js","layer":"app-pages-browser"},"startTime":1780368988044,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":68644,"timestamp":1876019402336,"id":2383,"parentId":2374,"tags":{},"startTime":1780368988045,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":53,"timestamp":1876019470985,"id":2492,"parentId":2374,"tags":{},"startTime":1780368988113,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":71301,"timestamp":1876019401892,"id":2374,"parentId":1830,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/line/LineView.js","layer":"app-pages-browser"},"startTime":1780368988044,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":70853,"timestamp":1876019402349,"id":2389,"parentId":2380,"tags":{},"startTime":1780368988045,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":29,"timestamp":1876019473207,"id":2493,"parentId":2380,"tags":{},"startTime":1780368988115,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":71134,"timestamp":1876019402238,"id":2380,"parentId":1828,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/bar/PictorialBarSeries.js","layer":"app-pages-browser"},"startTime":1780368988044,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":71025,"timestamp":1876019402351,"id":2390,"parentId":2381,"tags":{},"startTime":1780368988045,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":26,"timestamp":1876019473381,"id":2494,"parentId":2381,"tags":{},"startTime":1780368988116,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":71247,"timestamp":1876019402273,"id":2381,"parentId":1836,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/treemap/treemapAction.js","layer":"app-pages-browser"},"startTime":1780368988045,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":79347,"timestamp":1876019402997,"id":2394,"parentId":2391,"tags":{},"startTime":1780368988045,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":52,"timestamp":1876019482358,"id":2495,"parentId":2391,"tags":{},"startTime":1780368988125,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":80343,"timestamp":1876019402879,"id":2391,"parentId":1836,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/treemap/TreemapSeries.js","layer":"app-pages-browser"},"startTime":1780368988045,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":80231,"timestamp":1876019403002,"id":2395,"parentId":2392,"tags":{},"startTime":1780368988045,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":90,"timestamp":1876019483238,"id":2496,"parentId":2392,"tags":{},"startTime":1780368988125,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":82104,"timestamp":1876019402923,"id":2392,"parentId":1836,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/treemap/TreemapView.js","layer":"app-pages-browser"},"startTime":1780368988045,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":81860,"timestamp":1876019403176,"id":2403,"parentId":2399,"tags":{},"startTime":1780368988045,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":35,"timestamp":1876019485041,"id":2497,"parentId":2399,"tags":{},"startTime":1780368988127,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":82282,"timestamp":1876019403102,"id":2399,"parentId":1835,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/tree/TreeSeries.js","layer":"app-pages-browser"},"startTime":1780368988045,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":82211,"timestamp":1876019403178,"id":2404,"parentId":2400,"tags":{},"startTime":1780368988045,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":28,"timestamp":1876019485393,"id":2498,"parentId":2400,"tags":{},"startTime":1780368988128,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":82572,"timestamp":1876019403135,"id":2400,"parentId":1835,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/tree/treeLayout.js","layer":"app-pages-browser"},"startTime":1780368988045,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":82540,"timestamp":1876019403172,"id":2401,"parentId":2397,"tags":{},"startTime":1780368988045,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":59,"timestamp":1876019485716,"id":2499,"parentId":2397,"tags":{},"startTime":1780368988128,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":83673,"timestamp":1876019403031,"id":2397,"parentId":1836,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/treemap/treemapLayout.js","layer":"app-pages-browser"},"startTime":1780368988045,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":83535,"timestamp":1876019403175,"id":2402,"parentId":2398,"tags":{},"startTime":1780368988045,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":36,"timestamp":1876019486713,"id":2500,"parentId":2398,"tags":{},"startTime":1780368988129,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":84854,"timestamp":1876019403068,"id":2398,"parentId":1835,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/tree/TreeView.js","layer":"app-pages-browser"},"startTime":1780368988045,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":84925,"timestamp":1876019403004,"id":2396,"parentId":2393,"tags":{},"startTime":1780368988045,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":31,"timestamp":1876019487933,"id":2501,"parentId":2393,"tags":{},"startTime":1780368988130,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":85397,"timestamp":1876019402959,"id":2393,"parentId":1836,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/treemap/treemapVisual.js","layer":"app-pages-browser"},"startTime":1780368988045,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":12150,"timestamp":1876019526621,"id":2527,"parentId":2504,"tags":{},"startTime":1780368988169,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":39,"timestamp":1876019538782,"id":2694,"parentId":2504,"tags":{},"startTime":1780368988181,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":13869,"timestamp":1876019525353,"id":2504,"parentId":1835,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/tree/treeAction.js","layer":"app-pages-browser"},"startTime":1780368988168,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":12600,"timestamp":1876019526630,"id":2528,"parentId":2505,"tags":{},"startTime":1780368988169,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":34,"timestamp":1876019539232,"id":2695,"parentId":2505,"tags":{},"startTime":1780368988181,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":14136,"timestamp":1876019525404,"id":2505,"parentId":1837,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/gauge/GaugeSeries.js","layer":"app-pages-browser"},"startTime":1780368988168,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":12934,"timestamp":1876019526617,"id":2526,"parentId":2503,"tags":{},"startTime":1780368988169,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":37,"timestamp":1876019539554,"id":2696,"parentId":2503,"tags":{},"startTime":1780368988182,"traceId":"f5ac02f0451719cf"}] -[{"name":"build-module-js","duration":15719,"timestamp":1876019525307,"id":2503,"parentId":1837,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/gauge/GaugeView.js","layer":"app-pages-browser"},"startTime":1780368988168,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":14430,"timestamp":1876019526605,"id":2525,"parentId":2502,"tags":{},"startTime":1780368988169,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":31,"timestamp":1876019541039,"id":2697,"parentId":2502,"tags":{},"startTime":1780368988183,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":15974,"timestamp":1876019525207,"id":2502,"parentId":1835,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/tree/treeVisual.js","layer":"app-pages-browser"},"startTime":1780368988167,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":14549,"timestamp":1876019526637,"id":2529,"parentId":2506,"tags":{},"startTime":1780368988169,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":27,"timestamp":1876019541189,"id":2698,"parentId":2506,"tags":{},"startTime":1780368988183,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":15911,"timestamp":1876019525444,"id":2506,"parentId":1834,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/categoryFilter.js","layer":"app-pages-browser"},"startTime":1780368988168,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":14712,"timestamp":1876019526648,"id":2533,"parentId":2510,"tags":{},"startTime":1780368988169,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":26,"timestamp":1876019541364,"id":2699,"parentId":2510,"tags":{},"startTime":1780368988184,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":15873,"timestamp":1876019525606,"id":2510,"parentId":1834,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/circularLayout.js","layer":"app-pages-browser"},"startTime":1780368988168,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":14838,"timestamp":1876019526646,"id":2532,"parentId":2509,"tags":{},"startTime":1780368988169,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":42,"timestamp":1876019541486,"id":2700,"parentId":2509,"tags":{},"startTime":1780368988184,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":16096,"timestamp":1876019525569,"id":2509,"parentId":1834,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/simpleLayout.js","layer":"app-pages-browser"},"startTime":1780368988168,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":15061,"timestamp":1876019526640,"id":2530,"parentId":2507,"tags":{},"startTime":1780368988169,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":27,"timestamp":1876019541705,"id":2701,"parentId":2507,"tags":{},"startTime":1780368988184,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":16392,"timestamp":1876019525492,"id":2507,"parentId":1834,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/categoryVisual.js","layer":"app-pages-browser"},"startTime":1780368988168,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":15252,"timestamp":1876019526654,"id":2536,"parentId":2513,"tags":{},"startTime":1780368988169,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":29,"timestamp":1876019541910,"id":2702,"parentId":2513,"tags":{},"startTime":1780368988184,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":17100,"timestamp":1876019525713,"id":2513,"parentId":1834,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/GraphView.js","layer":"app-pages-browser"},"startTime":1780368988168,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":16165,"timestamp":1876019526656,"id":2537,"parentId":2514,"tags":{},"startTime":1780368988169,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":35,"timestamp":1876019542826,"id":2703,"parentId":2514,"tags":{},"startTime":1780368988185,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":17607,"timestamp":1876019525747,"id":2514,"parentId":1834,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/GraphSeries.js","layer":"app-pages-browser"},"startTime":1780368988168,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":16709,"timestamp":1876019526650,"id":2534,"parentId":2511,"tags":{},"startTime":1780368988169,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":29,"timestamp":1876019543363,"id":2704,"parentId":2511,"tags":{},"startTime":1780368988186,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":18075,"timestamp":1876019525642,"id":2511,"parentId":1834,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/forceLayout.js","layer":"app-pages-browser"},"startTime":1780368988168,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":17060,"timestamp":1876019526662,"id":2540,"parentId":2517,"tags":{},"startTime":1780368988169,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":30,"timestamp":1876019543726,"id":2705,"parentId":2517,"tags":{},"startTime":1780368988186,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":17976,"timestamp":1876019525854,"id":2517,"parentId":1843,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/candlestick/preprocessor.js","layer":"app-pages-browser"},"startTime":1780368988168,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":17171,"timestamp":1876019526664,"id":2541,"parentId":2518,"tags":{},"startTime":1780368988169,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":26,"timestamp":1876019543838,"id":2706,"parentId":2518,"tags":{},"startTime":1780368988186,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":18125,"timestamp":1876019525898,"id":2518,"parentId":1843,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/candlestick/candlestickVisual.js","layer":"app-pages-browser"},"startTime":1780368988168,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":17375,"timestamp":1876019526652,"id":2535,"parentId":2512,"tags":{},"startTime":1780368988169,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":26,"timestamp":1876019544030,"id":2707,"parentId":2512,"tags":{},"startTime":1780368988186,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":18545,"timestamp":1876019525678,"id":2512,"parentId":1834,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/createView.js","layer":"app-pages-browser"},"startTime":1780368988168,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":17566,"timestamp":1876019526660,"id":2539,"parentId":2516,"tags":{},"startTime":1780368988169,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":28,"timestamp":1876019544229,"id":2708,"parentId":2516,"tags":{},"startTime":1780368988186,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":18570,"timestamp":1876019525820,"id":2516,"parentId":1843,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/candlestick/CandlestickSeries.js","layer":"app-pages-browser"},"startTime":1780368988168,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":17724,"timestamp":1876019526669,"id":2544,"parentId":2521,"tags":{},"startTime":1780368988169,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":25,"timestamp":1876019544397,"id":2709,"parentId":2521,"tags":{},"startTime":1780368988187,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":18522,"timestamp":1876019526020,"id":2521,"parentId":1771,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/action/roamHelper.js","layer":"app-pages-browser"},"startTime":1780368988168,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":17887,"timestamp":1876019526658,"id":2538,"parentId":2515,"tags":{},"startTime":1780368988169,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":31,"timestamp":1876019544548,"id":2710,"parentId":2515,"tags":{},"startTime":1780368988187,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":19409,"timestamp":1876019525785,"id":2515,"parentId":1843,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/candlestick/CandlestickView.js","layer":"app-pages-browser"},"startTime":1780368988168,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":18555,"timestamp":1876019526643,"id":2531,"parentId":2508,"tags":{},"startTime":1780368988169,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":26,"timestamp":1876019545202,"id":2711,"parentId":2508,"tags":{},"startTime":1780368988187,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":19836,"timestamp":1876019525533,"id":2508,"parentId":1834,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/edgeVisual.js","layer":"app-pages-browser"},"startTime":1780368988168,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":18704,"timestamp":1876019526668,"id":2543,"parentId":2520,"tags":{},"startTime":1780368988169,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":26,"timestamp":1876019545374,"id":2712,"parentId":2520,"tags":{},"startTime":1780368988188,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":19602,"timestamp":1876019525977,"id":2520,"parentId":1842,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/effectScatter/EffectScatterView.js","layer":"app-pages-browser"},"startTime":1780368988168,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":18918,"timestamp":1876019526666,"id":2542,"parentId":2519,"tags":{},"startTime":1780368988169,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":30,"timestamp":1876019545587,"id":2713,"parentId":2519,"tags":{},"startTime":1780368988188,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":20096,"timestamp":1876019525942,"id":2519,"parentId":1843,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/candlestick/candlestickLayout.js","layer":"app-pages-browser"},"startTime":1780368988168,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":19398,"timestamp":1876019526671,"id":2545,"parentId":2522,"tags":{},"startTime":1780368988169,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":31,"timestamp":1876019546072,"id":2714,"parentId":2522,"tags":{},"startTime":1780368988188,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":20177,"timestamp":1876019526053,"id":2522,"parentId":1842,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/effectScatter/EffectScatterSeries.js","layer":"app-pages-browser"},"startTime":1780368988168,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":19561,"timestamp":1876019526675,"id":2547,"parentId":2524,"tags":{},"startTime":1780368988169,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":34,"timestamp":1876019546239,"id":2715,"parentId":2524,"tags":{},"startTime":1780368988188,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":20941,"timestamp":1876019526130,"id":2524,"parentId":1841,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sankey/sankeyLayout.js","layer":"app-pages-browser"},"startTime":1780368988168,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":20401,"timestamp":1876019526673,"id":2546,"parentId":2523,"tags":{},"startTime":1780368988169,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":30,"timestamp":1876019547077,"id":2716,"parentId":2523,"tags":{},"startTime":1780368988189,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":21810,"timestamp":1876019526087,"id":2523,"parentId":1841,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sankey/SankeyView.js","layer":"app-pages-browser"},"startTime":1780368988168,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":18305,"timestamp":1876019534069,"id":2606,"parentId":2549,"tags":{},"startTime":1780368988176,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":33,"timestamp":1876019552383,"id":2717,"parentId":2549,"tags":{},"startTime":1780368988195,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":20744,"timestamp":1876019531919,"id":2549,"parentId":1841,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sankey/sankeyVisual.js","layer":"app-pages-browser"},"startTime":1780368988174,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":18594,"timestamp":1876019534075,"id":2607,"parentId":2550,"tags":{},"startTime":1780368988176,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":28,"timestamp":1876019552676,"id":2718,"parentId":2550,"tags":{},"startTime":1780368988195,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":20867,"timestamp":1876019531986,"id":2550,"parentId":1840,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/boxplot/BoxplotSeries.js","layer":"app-pages-browser"},"startTime":1780368988174,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":18798,"timestamp":1876019534061,"id":2605,"parentId":2548,"tags":{},"startTime":1780368988176,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":29,"timestamp":1876019552862,"id":2719,"parentId":2548,"tags":{},"startTime":1780368988195,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":21415,"timestamp":1876019531831,"id":2548,"parentId":1841,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sankey/SankeySeries.js","layer":"app-pages-browser"},"startTime":1780368988174,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":19164,"timestamp":1876019534088,"id":2609,"parentId":2552,"tags":{},"startTime":1780368988176,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":28,"timestamp":1876019553256,"id":2720,"parentId":2552,"tags":{},"startTime":1780368988195,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":21564,"timestamp":1876019532062,"id":2552,"parentId":1840,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/boxplot/BoxplotView.js","layer":"app-pages-browser"},"startTime":1780368988174,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":19551,"timestamp":1876019534091,"id":2610,"parentId":2553,"tags":{},"startTime":1780368988176,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":26,"timestamp":1876019553645,"id":2721,"parentId":2553,"tags":{},"startTime":1780368988196,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":21677,"timestamp":1876019532097,"id":2553,"parentId":1840,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/boxplot/boxplotTransform.js","layer":"app-pages-browser"},"startTime":1780368988174,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":19683,"timestamp":1876019534095,"id":2611,"parentId":2554,"tags":{},"startTime":1780368988176,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":28,"timestamp":1876019553782,"id":2722,"parentId":2554,"tags":{},"startTime":1780368988196,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":22047,"timestamp":1876019532131,"id":2554,"parentId":1847,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sunburst/SunburstView.js","layer":"app-pages-browser"},"startTime":1780368988174,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":20083,"timestamp":1876019534100,"id":2612,"parentId":2555,"tags":{},"startTime":1780368988176,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":37,"timestamp":1876019554187,"id":2723,"parentId":2555,"tags":{},"startTime":1780368988196,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":22353,"timestamp":1876019532165,"id":2555,"parentId":1847,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sunburst/SunburstSeries.js","layer":"app-pages-browser"},"startTime":1780368988174,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":21390,"timestamp":1876019533132,"id":2579,"parentId":2578,"tags":{},"startTime":1780368988175,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":22116,"timestamp":1876019533121,"id":2578,"parentId":1875,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/scheduler/cjs/scheduler.production.min.js","layer":null},"startTime":1780368988175,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":21136,"timestamp":1876019534107,"id":2613,"parentId":2556,"tags":{},"startTime":1780368988176,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":33,"timestamp":1876019555247,"id":2724,"parentId":2556,"tags":{},"startTime":1780368988197,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":23446,"timestamp":1876019532198,"id":2556,"parentId":1847,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sunburst/sunburstLayout.js","layer":"app-pages-browser"},"startTime":1780368988174,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":21539,"timestamp":1876019534110,"id":2614,"parentId":2557,"tags":{},"startTime":1780368988176,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":25,"timestamp":1876019555652,"id":2725,"parentId":2557,"tags":{},"startTime":1780368988198,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":23560,"timestamp":1876019532232,"id":2557,"parentId":1847,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sunburst/sunburstVisual.js","layer":"app-pages-browser"},"startTime":1780368988174,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":25190,"timestamp":1876019534117,"id":2616,"parentId":2559,"tags":{},"startTime":1780368988176,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":38,"timestamp":1876019559317,"id":2726,"parentId":2559,"tags":{},"startTime":1780368988202,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":27570,"timestamp":1876019532303,"id":2559,"parentId":1838,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/funnel/FunnelView.js","layer":"app-pages-browser"},"startTime":1780368988175,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":25799,"timestamp":1876019534081,"id":2608,"parentId":2551,"tags":{},"startTime":1780368988176,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":32,"timestamp":1876019559885,"id":2727,"parentId":2551,"tags":{},"startTime":1780368988202,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":28258,"timestamp":1876019532026,"id":2551,"parentId":1840,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/boxplot/boxplotLayout.js","layer":"app-pages-browser"},"startTime":1780368988174,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":26201,"timestamp":1876019534114,"id":2615,"parentId":2558,"tags":{},"startTime":1780368988176,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":28,"timestamp":1876019560318,"id":2728,"parentId":2558,"tags":{},"startTime":1780368988203,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":28279,"timestamp":1876019532265,"id":2558,"parentId":1847,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sunburst/sunburstAction.js","layer":"app-pages-browser"},"startTime":1780368988175,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":26433,"timestamp":1876019534129,"id":2620,"parentId":2563,"tags":{},"startTime":1780368988176,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":28,"timestamp":1876019560566,"id":2729,"parentId":2563,"tags":{},"startTime":1780368988203,"traceId":"f5ac02f0451719cf"}] -[{"name":"build-module-js","duration":28311,"timestamp":1876019532438,"id":2563,"parentId":1845,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/heatmap/HeatmapSeries.js","layer":"app-pages-browser"},"startTime":1780368988175,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":26634,"timestamp":1876019534119,"id":2617,"parentId":2560,"tags":{},"startTime":1780368988176,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":91,"timestamp":1876019560757,"id":2730,"parentId":2560,"tags":{},"startTime":1780368988203,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":29067,"timestamp":1876019532335,"id":2560,"parentId":1838,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/funnel/FunnelSeries.js","layer":"app-pages-browser"},"startTime":1780368988175,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":27299,"timestamp":1876019534123,"id":2618,"parentId":2561,"tags":{},"startTime":1780368988176,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":41,"timestamp":1876019561429,"id":2731,"parentId":2561,"tags":{},"startTime":1780368988204,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":29894,"timestamp":1876019532368,"id":2561,"parentId":1838,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/funnel/funnelLayout.js","layer":"app-pages-browser"},"startTime":1780368988175,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":28139,"timestamp":1876019534132,"id":2621,"parentId":2564,"tags":{},"startTime":1780368988176,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":33,"timestamp":1876019562275,"id":2732,"parentId":2564,"tags":{},"startTime":1780368988205,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":31501,"timestamp":1876019532473,"id":2564,"parentId":1844,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/lines/LinesView.js","layer":"app-pages-browser"},"startTime":1780368988175,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":29845,"timestamp":1876019534135,"id":2622,"parentId":2565,"tags":{},"startTime":1780368988176,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":42,"timestamp":1876019563984,"id":2733,"parentId":2565,"tags":{},"startTime":1780368988206,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":32148,"timestamp":1876019532511,"id":2565,"parentId":1844,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/lines/LinesSeries.js","layer":"app-pages-browser"},"startTime":1780368988175,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":30526,"timestamp":1876019534138,"id":2623,"parentId":2566,"tags":{},"startTime":1780368988176,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":28,"timestamp":1876019564668,"id":2734,"parentId":2566,"tags":{},"startTime":1780368988207,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":32343,"timestamp":1876019532556,"id":2566,"parentId":1844,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/lines/linesLayout.js","layer":"app-pages-browser"},"startTime":1780368988175,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":30777,"timestamp":1876019534126,"id":2619,"parentId":2562,"tags":{},"startTime":1780368988176,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":32,"timestamp":1876019564906,"id":2735,"parentId":2562,"tags":{},"startTime":1780368988207,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":33202,"timestamp":1876019532402,"id":2562,"parentId":1845,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/heatmap/HeatmapView.js","layer":"app-pages-browser"},"startTime":1780368988175,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":31466,"timestamp":1876019534144,"id":2625,"parentId":2568,"tags":{},"startTime":1780368988176,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":41,"timestamp":1876019565614,"id":2736,"parentId":2568,"tags":{},"startTime":1780368988208,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":33360,"timestamp":1876019532626,"id":2568,"parentId":1846,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/themeRiver/ThemeRiverView.js","layer":"app-pages-browser"},"startTime":1780368988175,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":31850,"timestamp":1876019534141,"id":2624,"parentId":2567,"tags":{},"startTime":1780368988176,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":26,"timestamp":1876019565994,"id":2737,"parentId":2567,"tags":{},"startTime":1780368988208,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":33534,"timestamp":1876019532592,"id":2567,"parentId":1844,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/lines/linesVisual.js","layer":"app-pages-browser"},"startTime":1780368988175,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":31981,"timestamp":1876019534149,"id":2627,"parentId":2570,"tags":{},"startTime":1780368988176,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":27,"timestamp":1876019566133,"id":2738,"parentId":2570,"tags":{},"startTime":1780368988208,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":33693,"timestamp":1876019532706,"id":2570,"parentId":1846,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/themeRiver/themeRiverLayout.js","layer":"app-pages-browser"},"startTime":1780368988175,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":32251,"timestamp":1876019534152,"id":2628,"parentId":2571,"tags":{},"startTime":1780368988176,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":27,"timestamp":1876019566407,"id":2739,"parentId":2571,"tags":{},"startTime":1780368988209,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":33846,"timestamp":1876019532743,"id":2571,"parentId":1848,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/custom/CustomSeries.js","layer":"app-pages-browser"},"startTime":1780368988175,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":32446,"timestamp":1876019534146,"id":2626,"parentId":2569,"tags":{},"startTime":1780368988176,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":31,"timestamp":1876019566596,"id":2740,"parentId":2569,"tags":{},"startTime":1780368988209,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":34344,"timestamp":1876019532663,"id":2569,"parentId":1846,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/themeRiver/ThemeRiverSeries.js","layer":"app-pages-browser"},"startTime":1780368988175,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":32857,"timestamp":1876019534154,"id":2629,"parentId":2572,"tags":{},"startTime":1780368988176,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":48,"timestamp":1876019567014,"id":2741,"parentId":2572,"tags":{},"startTime":1780368988209,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":35937,"timestamp":1876019532793,"id":2572,"parentId":1848,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/custom/CustomView.js","layer":"app-pages-browser"},"startTime":1780368988175,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":34573,"timestamp":1876019534162,"id":2632,"parentId":2575,"tags":{},"startTime":1780368988176,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":31,"timestamp":1876019568740,"id":2742,"parentId":2575,"tags":{},"startTime":1780368988211,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":36193,"timestamp":1876019532942,"id":2575,"parentId":1839,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/parallel/ParallelView.js","layer":"app-pages-browser"},"startTime":1780368988175,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":34982,"timestamp":1876019534157,"id":2630,"parentId":2573,"tags":{},"startTime":1780368988176,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":26,"timestamp":1876019569143,"id":2743,"parentId":2573,"tags":{},"startTime":1780368988211,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":36473,"timestamp":1876019532831,"id":2573,"parentId":1827,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/bar/BarSeries.js","layer":"app-pages-browser"},"startTime":1780368988175,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":35144,"timestamp":1876019534164,"id":2633,"parentId":2576,"tags":{},"startTime":1780368988176,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":26,"timestamp":1876019569311,"id":2744,"parentId":2576,"tags":{},"startTime":1780368988212,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":36479,"timestamp":1876019533012,"id":2576,"parentId":1839,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/parallel/ParallelSeries.js","layer":"app-pages-browser"},"startTime":1780368988175,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":35334,"timestamp":1876019534160,"id":2631,"parentId":2574,"tags":{},"startTime":1780368988176,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":42,"timestamp":1876019569496,"id":2745,"parentId":2574,"tags":{},"startTime":1780368988212,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":38238,"timestamp":1876019532881,"id":2574,"parentId":1827,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/bar/BarView.js","layer":"app-pages-browser"},"startTime":1780368988175,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":36957,"timestamp":1876019534168,"id":2635,"parentId":2580,"tags":{},"startTime":1780368988176,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":28,"timestamp":1876019571129,"id":2746,"parentId":2580,"tags":{},"startTime":1780368988213,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":38226,"timestamp":1876019533143,"id":2580,"parentId":1939,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/globalDefault.js","layer":"app-pages-browser"},"startTime":1780368988175,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":37214,"timestamp":1876019534170,"id":2636,"parentId":2581,"tags":{},"startTime":1780368988176,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":37,"timestamp":1876019571388,"id":2747,"parentId":2581,"tags":{},"startTime":1780368988214,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":38837,"timestamp":1876019533183,"id":2581,"parentId":1939,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/helper/sourceHelper.js","layer":"app-pages-browser"},"startTime":1780368988175,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":37863,"timestamp":1876019534166,"id":2634,"parentId":2577,"tags":{},"startTime":1780368988176,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":26,"timestamp":1876019572035,"id":2748,"parentId":2577,"tags":{},"startTime":1780368988214,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":39078,"timestamp":1876019533080,"id":2577,"parentId":1839,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/parallel/parallelVisual.js","layer":"app-pages-browser"},"startTime":1780368988175,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":37987,"timestamp":1876019534177,"id":2639,"parentId":2584,"tags":{},"startTime":1780368988176,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":26,"timestamp":1876019572168,"id":2749,"parentId":2584,"tags":{},"startTime":1780368988214,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":38962,"timestamp":1876019533306,"id":2584,"parentId":1955,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/SeriesDimensionDefine.js","layer":"app-pages-browser"},"startTime":1780368988176,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":38098,"timestamp":1876019534172,"id":2637,"parentId":2582,"tags":{},"startTime":1780368988176,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":24,"timestamp":1876019572273,"id":2750,"parentId":2582,"tags":{},"startTime":1780368988215,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":39201,"timestamp":1876019533218,"id":2582,"parentId":1939,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/internalComponentCreator.js","layer":"app-pages-browser"},"startTime":1780368988175,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":38241,"timestamp":1876019534182,"id":2642,"parentId":2587,"tags":{},"startTime":1780368988176,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":24,"timestamp":1876019572427,"id":2751,"parentId":2587,"tags":{},"startTime":1780368988215,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":39110,"timestamp":1876019533421,"id":2587,"parentId":1938,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/mixin/areaStyle.js","layer":"app-pages-browser"},"startTime":1780368988176,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":38359,"timestamp":1876019534175,"id":2638,"parentId":2583,"tags":{},"startTime":1780368988176,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":29,"timestamp":1876019572536,"id":2752,"parentId":2583,"tags":{},"startTime":1780368988215,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":42601,"timestamp":1876019533262,"id":2583,"parentId":1750,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/node_modules/tslib/tslib.es6.js","layer":"app-pages-browser"},"startTime":1780368988176,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":41761,"timestamp":1876019534184,"id":2643,"parentId":2588,"tags":{},"startTime":1780368988176,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":36,"timestamp":1876019575952,"id":2753,"parentId":2588,"tags":{},"startTime":1780368988218,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":42786,"timestamp":1876019533455,"id":2588,"parentId":1938,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/mixin/textStyle.js","layer":"app-pages-browser"},"startTime":1780368988176,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":42070,"timestamp":1876019534178,"id":2640,"parentId":2585,"tags":{},"startTime":1780368988176,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":31,"timestamp":1876019576252,"id":2754,"parentId":2585,"tags":{},"startTime":1780368988218,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":43571,"timestamp":1876019533345,"id":2585,"parentId":1955,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/Source.js","layer":"app-pages-browser"},"startTime":1780368988176,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":42743,"timestamp":1876019534180,"id":2641,"parentId":2586,"tags":{},"startTime":1780368988176,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":47,"timestamp":1876019576927,"id":2755,"parentId":2586,"tags":{},"startTime":1780368988219,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":45443,"timestamp":1876019533384,"id":2586,"parentId":1955,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/DataStore.js","layer":"app-pages-browser"},"startTime":1780368988176,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":44646,"timestamp":1876019534188,"id":2644,"parentId":2589,"tags":{},"startTime":1780368988176,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":28,"timestamp":1876019578838,"id":2756,"parentId":2589,"tags":{},"startTime":1780368988221,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":45483,"timestamp":1876019533489,"id":2589,"parentId":1938,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/mixin/itemStyle.js","layer":"app-pages-browser"},"startTime":1780368988176,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":44783,"timestamp":1876019534193,"id":2647,"parentId":2592,"tags":{},"startTime":1780368988176,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":33,"timestamp":1876019578980,"id":2757,"parentId":2592,"tags":{},"startTime":1780368988221,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":46154,"timestamp":1876019533595,"id":2592,"parentId":1955,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/helper/dataProvider.js","layer":"app-pages-browser"},"startTime":1780368988176,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":45568,"timestamp":1876019534190,"id":2645,"parentId":2590,"tags":{},"startTime":1780368988176,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":52,"timestamp":1876019579762,"id":2758,"parentId":2590,"tags":{},"startTime":1780368988222,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":47360,"timestamp":1876019533525,"id":2590,"parentId":1958,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/number.js","layer":"app-pages-browser"},"startTime":1780368988176,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":46703,"timestamp":1876019534195,"id":2648,"parentId":2593,"tags":{},"startTime":1780368988176,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":26,"timestamp":1876019580902,"id":2759,"parentId":2593,"tags":{},"startTime":1780368988223,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":47405,"timestamp":1876019533629,"id":2593,"parentId":1938,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/mixin/lineStyle.js","layer":"app-pages-browser"},"startTime":1780368988176,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":46838,"timestamp":1876019534199,"id":2650,"parentId":2595,"tags":{},"startTime":1780368988176,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":30,"timestamp":1876019581040,"id":2760,"parentId":2595,"tags":{},"startTime":1780368988223,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":47754,"timestamp":1876019533699,"id":2595,"parentId":1955,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/helper/SeriesDataSchema.js","layer":"app-pages-browser"},"startTime":1780368988176,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":47260,"timestamp":1876019534197,"id":2649,"parentId":2594,"tags":{},"startTime":1780368988176,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":29,"timestamp":1876019581460,"id":2761,"parentId":2594,"tags":{},"startTime":1780368988224,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":48086,"timestamp":1876019533665,"id":2594,"parentId":1955,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/helper/dimensionHelper.js","layer":"app-pages-browser"},"startTime":1780368988176,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":47549,"timestamp":1876019534207,"id":2655,"parentId":2600,"tags":{},"startTime":1780368988176,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":25,"timestamp":1876019581760,"id":2762,"parentId":2600,"tags":{},"startTime":1780368988224,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":48066,"timestamp":1876019533885,"id":2600,"parentId":1963,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/CompoundPath.js","layer":"app-pages-browser"},"startTime":1780368988176,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":47751,"timestamp":1876019534204,"id":2653,"parentId":2598,"tags":{},"startTime":1780368988176,"traceId":"f5ac02f0451719cf"}] -[{"name":"next-swc-loader","duration":25,"timestamp":1876019581959,"id":2763,"parentId":2598,"tags":{},"startTime":1780368988224,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":48358,"timestamp":1876019533819,"id":2598,"parentId":1963,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/Image.js","layer":"app-pages-browser"},"startTime":1780368988176,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":47981,"timestamp":1876019534202,"id":2652,"parentId":2597,"tags":{},"startTime":1780368988176,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":26,"timestamp":1876019582188,"id":2764,"parentId":2597,"tags":{},"startTime":1780368988224,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":48966,"timestamp":1876019533783,"id":2597,"parentId":1963,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/Transformable.js","layer":"app-pages-browser"},"startTime":1780368988176,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":48557,"timestamp":1876019534200,"id":2651,"parentId":2596,"tags":{},"startTime":1780368988176,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":28,"timestamp":1876019582761,"id":2765,"parentId":2596,"tags":{},"startTime":1780368988225,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":49818,"timestamp":1876019533733,"id":2596,"parentId":1963,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/tool/path.js","layer":"app-pages-browser"},"startTime":1780368988176,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":49364,"timestamp":1876019534192,"id":2646,"parentId":2591,"tags":{},"startTime":1780368988176,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":29,"timestamp":1876019583560,"id":2766,"parentId":2591,"tags":{},"startTime":1780368988226,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":50802,"timestamp":1876019533562,"id":2591,"parentId":1958,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/time.js","layer":"app-pages-browser"},"startTime":1780368988176,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":50169,"timestamp":1876019534214,"id":2659,"parentId":2604,"tags":{},"startTime":1780368988176,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":27,"timestamp":1876019584387,"id":2767,"parentId":2604,"tags":{},"startTime":1780368988227,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":50464,"timestamp":1876019534018,"id":2604,"parentId":1956,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/axisModelCommonMixin.js","layer":"app-pages-browser"},"startTime":1780368988176,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":50281,"timestamp":1876019534206,"id":2654,"parentId":2599,"tags":{},"startTime":1780368988176,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":36,"timestamp":1876019584490,"id":2768,"parentId":2599,"tags":{},"startTime":1780368988227,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":53046,"timestamp":1876019533853,"id":2599,"parentId":1963,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/Text.js","layer":"app-pages-browser"},"startTime":1780368988176,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":52701,"timestamp":1876019534209,"id":2656,"parentId":2601,"tags":{},"startTime":1780368988176,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":34,"timestamp":1876019586916,"id":2769,"parentId":2601,"tags":{},"startTime":1780368988229,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":53787,"timestamp":1876019533918,"id":2601,"parentId":1974,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/Handler.js","layer":"app-pages-browser"},"startTime":1780368988176,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":53667,"timestamp":1876019534213,"id":2658,"parentId":2603,"tags":{},"startTime":1780368988176,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":40,"timestamp":1876019587886,"id":2770,"parentId":2603,"tags":{},"startTime":1780368988230,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":55106,"timestamp":1876019533985,"id":2603,"parentId":1956,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/axisHelper.js","layer":"app-pages-browser"},"startTime":1780368988176,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":55490,"timestamp":1876019534211,"id":2657,"parentId":2602,"tags":{},"startTime":1780368988176,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":34,"timestamp":1876019589712,"id":2771,"parentId":2602,"tags":{},"startTime":1780368988232,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":56345,"timestamp":1876019533951,"id":2602,"parentId":1974,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/Storage.js","layer":"app-pages-browser"},"startTime":1780368988176,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":53079,"timestamp":1876019537292,"id":2674,"parentId":2664,"tags":{},"startTime":1780368988180,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":37,"timestamp":1876019590378,"id":2772,"parentId":2664,"tags":{},"startTime":1780368988233,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":54145,"timestamp":1876019536971,"id":2664,"parentId":1956,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/helper/createDimensions.js","layer":"app-pages-browser"},"startTime":1780368988179,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":53857,"timestamp":1876019537267,"id":2671,"parentId":2661,"tags":{},"startTime":1780368988180,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":37,"timestamp":1876019591129,"id":2773,"parentId":2661,"tags":{},"startTime":1780368988233,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":55124,"timestamp":1876019536831,"id":2661,"parentId":1972,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/axisTickLabelBuilder.js","layer":"app-pages-browser"},"startTime":1780368988179,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":54749,"timestamp":1876019537217,"id":2670,"parentId":2660,"tags":{},"startTime":1780368988179,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":34,"timestamp":1876019591971,"id":2774,"parentId":2660,"tags":{},"startTime":1780368988234,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":56382,"timestamp":1876019536746,"id":2660,"parentId":1956,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/symbol.js","layer":"app-pages-browser"},"startTime":1780368988179,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":55852,"timestamp":1876019537286,"id":2673,"parentId":2663,"tags":{},"startTime":1780368988180,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":34,"timestamp":1876019593143,"id":2775,"parentId":2663,"tags":{},"startTime":1780368988235,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":56492,"timestamp":1876019536930,"id":2663,"parentId":1956,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/helper/dataStackHelper.js","layer":"app-pages-browser"},"startTime":1780368988179,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":56150,"timestamp":1876019537279,"id":2672,"parentId":2662,"tags":{},"startTime":1780368988180,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":29,"timestamp":1876019593433,"id":2776,"parentId":2662,"tags":{},"startTime":1780368988236,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":56871,"timestamp":1876019536888,"id":2662,"parentId":1956,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/createSeriesData.js","layer":"app-pages-browser"},"startTime":1780368988179,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":56468,"timestamp":1876019537296,"id":2675,"parentId":2665,"tags":{},"startTime":1780368988180,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":28,"timestamp":1876019593768,"id":2777,"parentId":2665,"tags":{},"startTime":1780368988236,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":57326,"timestamp":1876019537013,"id":2665,"parentId":1973,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/Region.js","layer":"app-pages-browser"},"startTime":1780368988179,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":65567,"timestamp":1876019537299,"id":2676,"parentId":2666,"tags":{},"startTime":1780368988180,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":27,"timestamp":1876019602875,"id":2778,"parentId":2666,"tags":{},"startTime":1780368988245,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":66016,"timestamp":1876019537055,"id":2666,"parentId":1963,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/LinearGradient.js","layer":"app-pages-browser"},"startTime":1780368988179,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":65775,"timestamp":1876019537302,"id":2677,"parentId":2667,"tags":{},"startTime":1780368988180,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":25,"timestamp":1876019603081,"id":2779,"parentId":2667,"tags":{},"startTime":1780368988245,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":66101,"timestamp":1876019537090,"id":2667,"parentId":1963,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/RadialGradient.js","layer":"app-pages-browser"},"startTime":1780368988179,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":66000,"timestamp":1876019537308,"id":2679,"parentId":2669,"tags":{},"startTime":1780368988180,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":47,"timestamp":1876019603325,"id":2780,"parentId":2669,"tags":{},"startTime":1780368988246,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":66662,"timestamp":1876019537169,"id":2669,"parentId":1963,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/OrientedBoundingRect.js","layer":"app-pages-browser"},"startTime":1780368988179,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":66539,"timestamp":1876019537305,"id":2678,"parentId":2668,"tags":{},"startTime":1780368988180,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":30,"timestamp":1876019603850,"id":2781,"parentId":2668,"tags":{},"startTime":1780368988246,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":67398,"timestamp":1876019537133,"id":2668,"parentId":1963,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/BoundingRect.js","layer":"app-pages-browser"},"startTime":1780368988179,"traceId":"f5ac02f0451719cf"},{"name":"add-entry","duration":1744293,"timestamp":1876017864499,"id":904,"parentId":897,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/router.js"},"startTime":1780368986507,"traceId":"f5ac02f0451719cf"},{"name":"add-entry","duration":1744656,"timestamp":1876017864141,"id":898,"parentId":897,"tags":{"request":"./node_modules/next/dist/client/next.js"},"startTime":1780368986506,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":76646,"timestamp":1876019538543,"id":2689,"parentId":2682,"tags":{},"startTime":1780368988181,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":37,"timestamp":1876019615197,"id":2782,"parentId":2682,"tags":{},"startTime":1780368988257,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":77149,"timestamp":1876019538337,"id":2682,"parentId":1944,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/i18n/langZH.js","layer":"app-pages-browser"},"startTime":1780368988181,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":76985,"timestamp":1876019538529,"id":2687,"parentId":2680,"tags":{},"startTime":1780368988181,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":28,"timestamp":1876019615522,"id":2783,"parentId":2680,"tags":{},"startTime":1780368988258,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":77651,"timestamp":1876019538218,"id":2680,"parentId":1963,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/Point.js","layer":"app-pages-browser"},"startTime":1780368988180,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":77329,"timestamp":1876019538546,"id":2690,"parentId":2683,"tags":{},"startTime":1780368988181,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":25,"timestamp":1876019615879,"id":2784,"parentId":2683,"tags":{},"startTime":1780368988258,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":77660,"timestamp":1876019538381,"id":2683,"parentId":1944,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/i18n/langEN.js","layer":"app-pages-browser"},"startTime":1780368988181,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":77498,"timestamp":1876019538547,"id":2691,"parentId":2684,"tags":{},"startTime":1780368988181,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":22,"timestamp":1876019616049,"id":2785,"parentId":2684,"tags":{},"startTime":1780368988258,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":77776,"timestamp":1876019538425,"id":2684,"parentId":1974,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/config.js","layer":"app-pages-browser"},"startTime":1780368988181,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":77670,"timestamp":1876019538537,"id":2688,"parentId":2681,"tags":{},"startTime":1780368988181,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":27,"timestamp":1876019616211,"id":2786,"parentId":2681,"tags":{},"startTime":1780368988258,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":78238,"timestamp":1876019538296,"id":2681,"parentId":1963,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/IncrementalDisplayable.js","layer":"app-pages-browser"},"startTime":1780368988181,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":77995,"timestamp":1876019538551,"id":2693,"parentId":2686,"tags":{},"startTime":1780368988181,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":30,"timestamp":1876019616550,"id":2787,"parentId":2686,"tags":{},"startTime":1780368988259,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":78635,"timestamp":1876019538492,"id":2686,"parentId":1982,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/label/labelLayoutHelper.js","layer":"app-pages-browser"},"startTime":1780368988181,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":78584,"timestamp":1876019538549,"id":2692,"parentId":2685,"tags":{},"startTime":1780368988181,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":60,"timestamp":1876019617137,"id":2788,"parentId":2685,"tags":{},"startTime":1780368988259,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":80470,"timestamp":1876019538458,"id":2685,"parentId":1982,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/label/labelGuideHelper.js","layer":"app-pages-browser"},"startTime":1780368988181,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":16202,"timestamp":1876019649751,"id":2864,"parentId":2790,"tags":{},"startTime":1780368988292,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":67,"timestamp":1876019665969,"id":2989,"parentId":2790,"tags":{},"startTime":1780368988308,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":21094,"timestamp":1876019646290,"id":2790,"parentId":1984,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/TSpan.js","layer":"app-pages-browser"},"startTime":1780368988289,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":17672,"timestamp":1876019649771,"id":2867,"parentId":2793,"tags":{},"startTime":1780368988292,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":104,"timestamp":1876019667469,"id":2990,"parentId":2793,"tags":{},"startTime":1780368988310,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":23234,"timestamp":1876019646414,"id":2793,"parentId":1984,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/PathProxy.js","layer":"app-pages-browser"},"startTime":1780368988289,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":19905,"timestamp":1876019649766,"id":2866,"parentId":2792,"tags":{},"startTime":1780368988292,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":34,"timestamp":1876019669679,"id":2991,"parentId":2792,"tags":{},"startTime":1780368988312,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":23421,"timestamp":1876019646375,"id":2792,"parentId":1984,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/constants.js","layer":"app-pages-browser"},"startTime":1780368988289,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":20016,"timestamp":1876019649787,"id":2871,"parentId":2797,"tags":{},"startTime":1780368988292,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":33,"timestamp":1876019669808,"id":2992,"parentId":2797,"tags":{},"startTime":1780368988312,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":23981,"timestamp":1876019646557,"id":2797,"parentId":1985,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/canvas/Layer.js","layer":"app-pages-browser"},"startTime":1780368988289,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":20834,"timestamp":1876019649775,"id":2868,"parentId":2794,"tags":{},"startTime":1780368988292,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":41,"timestamp":1876019670629,"id":2993,"parentId":2794,"tags":{},"startTime":1780368988313,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":25441,"timestamp":1876019646451,"id":2794,"parentId":1986,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/graphic.js","layer":"app-pages-browser"},"startTime":1780368988289,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":22144,"timestamp":1876019649759,"id":2865,"parentId":2791,"tags":{},"startTime":1780368988292,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":30,"timestamp":1876019671909,"id":2994,"parentId":2791,"tags":{},"startTime":1780368988314,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":25731,"timestamp":1876019646335,"id":2791,"parentId":1984,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/canvas/dashStyle.js","layer":"app-pages-browser"},"startTime":1780368988289,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":22293,"timestamp":1876019649779,"id":2869,"parentId":2795,"tags":{},"startTime":1780368988292,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":27,"timestamp":1876019672103,"id":2995,"parentId":2795,"tags":{},"startTime":1780368988314,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":26255,"timestamp":1876019646485,"id":2795,"parentId":1986,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/helper.js","layer":"app-pages-browser"},"startTime":1780368988289,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":22950,"timestamp":1876019649798,"id":2874,"parentId":2800,"tags":{},"startTime":1780368988292,"traceId":"f5ac02f0451719cf"}] -[{"name":"next-swc-loader","duration":29,"timestamp":1876019672753,"id":2996,"parentId":2800,"tags":{},"startTime":1780368988315,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":26249,"timestamp":1876019646659,"id":2800,"parentId":1989,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/mixin/makeStyleMapper.js","layer":"app-pages-browser"},"startTime":1780368988289,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":23135,"timestamp":1876019649791,"id":2872,"parentId":2798,"tags":{},"startTime":1780368988292,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":25,"timestamp":1876019672929,"id":2997,"parentId":2798,"tags":{},"startTime":1780368988315,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":26695,"timestamp":1876019646591,"id":2798,"parentId":1986,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/core.js","layer":"app-pages-browser"},"startTime":1780368988289,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":23498,"timestamp":1876019649794,"id":2873,"parentId":2799,"tags":{},"startTime":1780368988292,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":26,"timestamp":1876019673296,"id":2998,"parentId":2799,"tags":{},"startTime":1780368988316,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":26916,"timestamp":1876019646625,"id":2799,"parentId":1983,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/LRU.js","layer":"app-pages-browser"},"startTime":1780368988289,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":23763,"timestamp":1876019649783,"id":2870,"parentId":2796,"tags":{},"startTime":1780368988292,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":28,"timestamp":1876019673549,"id":2999,"parentId":2796,"tags":{},"startTime":1780368988316,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":27602,"timestamp":1876019646523,"id":2796,"parentId":1986,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/patch.js","layer":"app-pages-browser"},"startTime":1780368988289,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":24322,"timestamp":1876019649809,"id":2877,"parentId":2803,"tags":{},"startTime":1780368988292,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":27,"timestamp":1876019674134,"id":3000,"parentId":2803,"tags":{},"startTime":1780368988316,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":27508,"timestamp":1876019646777,"id":2803,"parentId":1963,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/shape/Ring.js","layer":"app-pages-browser"},"startTime":1780368988289,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":24489,"timestamp":1876019649802,"id":2875,"parentId":2801,"tags":{},"startTime":1780368988292,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":24,"timestamp":1876019674294,"id":3001,"parentId":2801,"tags":{},"startTime":1780368988317,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":27710,"timestamp":1876019646695,"id":2801,"parentId":1963,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/shape/Circle.js","layer":"app-pages-browser"},"startTime":1780368988289,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":24604,"timestamp":1876019649805,"id":2876,"parentId":2802,"tags":{},"startTime":1780368988292,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":23,"timestamp":1876019674412,"id":3002,"parentId":2802,"tags":{},"startTime":1780368988317,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":27802,"timestamp":1876019646743,"id":2802,"parentId":1963,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/shape/Sector.js","layer":"app-pages-browser"},"startTime":1780368988289,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":24734,"timestamp":1876019649816,"id":2879,"parentId":2805,"tags":{},"startTime":1780368988292,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":24,"timestamp":1876019674553,"id":3003,"parentId":2805,"tags":{},"startTime":1780368988317,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":27800,"timestamp":1876019646873,"id":2805,"parentId":1963,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/shape/Polyline.js","layer":"app-pages-browser"},"startTime":1780368988289,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":24865,"timestamp":1876019649812,"id":2878,"parentId":2804,"tags":{},"startTime":1780368988292,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":23,"timestamp":1876019674680,"id":3004,"parentId":2804,"tags":{},"startTime":1780368988317,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":28186,"timestamp":1876019646837,"id":2804,"parentId":1963,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/shape/Polygon.js","layer":"app-pages-browser"},"startTime":1780368988289,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":25209,"timestamp":1876019649819,"id":2880,"parentId":2806,"tags":{},"startTime":1780368988292,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":24,"timestamp":1876019675031,"id":3005,"parentId":2806,"tags":{},"startTime":1780368988317,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":28568,"timestamp":1876019646908,"id":2806,"parentId":1963,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/shape/Rect.js","layer":"app-pages-browser"},"startTime":1780368988289,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":25658,"timestamp":1876019649822,"id":2881,"parentId":2807,"tags":{},"startTime":1780368988292,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":24,"timestamp":1876019675485,"id":3006,"parentId":2807,"tags":{},"startTime":1780368988318,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":28719,"timestamp":1876019646944,"id":2807,"parentId":1963,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/shape/Line.js","layer":"app-pages-browser"},"startTime":1780368988289,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":25837,"timestamp":1876019649831,"id":2884,"parentId":2810,"tags":{},"startTime":1780368988292,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":23,"timestamp":1876019675671,"id":3007,"parentId":2810,"tags":{},"startTime":1780368988318,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":28784,"timestamp":1876019647045,"id":2810,"parentId":1963,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/shape/Ellipse.js","layer":"app-pages-browser"},"startTime":1780368988289,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":26005,"timestamp":1876019649828,"id":2883,"parentId":2809,"tags":{},"startTime":1780368988292,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":22,"timestamp":1876019675836,"id":3008,"parentId":2809,"tags":{},"startTime":1780368988318,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":28988,"timestamp":1876019647012,"id":2809,"parentId":1963,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/shape/Arc.js","layer":"app-pages-browser"},"startTime":1780368988289,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":26182,"timestamp":1876019649825,"id":2882,"parentId":2808,"tags":{},"startTime":1780368988292,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":25,"timestamp":1876019676010,"id":3009,"parentId":2808,"tags":{},"startTime":1780368988318,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":29282,"timestamp":1876019646978,"id":2808,"parentId":1963,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/shape/BezierCurve.js","layer":"app-pages-browser"},"startTime":1780368988289,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":26418,"timestamp":1876019649846,"id":2889,"parentId":2815,"tags":{},"startTime":1780368988292,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":29,"timestamp":1876019676269,"id":3010,"parentId":2815,"tags":{},"startTime":1780368988319,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":29711,"timestamp":1876019647220,"id":2815,"parentId":1992,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/decal.js","layer":"app-pages-browser"},"startTime":1780368988289,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":27108,"timestamp":1876019649837,"id":2886,"parentId":2812,"tags":{},"startTime":1780368988292,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":25,"timestamp":1876019676949,"id":3011,"parentId":2812,"tags":{},"startTime":1780368988319,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":29943,"timestamp":1876019647116,"id":2812,"parentId":1985,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/animation/requestAnimationFrame.js","layer":"app-pages-browser"},"startTime":1780368988289,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":27214,"timestamp":1876019649849,"id":2890,"parentId":2816,"tags":{},"startTime":1780368988292,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":30,"timestamp":1876019677066,"id":3012,"parentId":2816,"tags":{},"startTime":1780368988319,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":31513,"timestamp":1876019647258,"id":2816,"parentId":1997,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/helper/dataValueHelper.js","layer":"app-pages-browser"},"startTime":1780368988290,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":28979,"timestamp":1876019649834,"id":2885,"parentId":2811,"tags":{},"startTime":1780368988292,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":44,"timestamp":1876019678824,"id":3013,"parentId":2811,"tags":{},"startTime":1780368988321,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":32219,"timestamp":1876019647079,"id":2811,"parentId":1974,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/animation/Animation.js","layer":"app-pages-browser"},"startTime":1780368988289,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":29454,"timestamp":1876019649852,"id":2891,"parentId":2817,"tags":{},"startTime":1780368988292,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":43,"timestamp":1876019679311,"id":3014,"parentId":2817,"tags":{},"startTime":1780368988322,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":33503,"timestamp":1876019647295,"id":2817,"parentId":2000,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/tool/morphPath.js","layer":"app-pages-browser"},"startTime":1780368988290,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":30950,"timestamp":1876019649857,"id":2893,"parentId":2819,"tags":{},"startTime":1780368988292,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":35,"timestamp":1876019680813,"id":3015,"parentId":2819,"tags":{},"startTime":1780368988323,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":34148,"timestamp":1876019647365,"id":2819,"parentId":1974,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/dom/HandlerProxy.js","layer":"app-pages-browser"},"startTime":1780368988290,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":31665,"timestamp":1876019649854,"id":2892,"parentId":2818,"tags":{},"startTime":1780368988292,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":36,"timestamp":1876019681523,"id":3016,"parentId":2818,"tags":{},"startTime":1780368988324,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":34995,"timestamp":1876019647330,"id":2818,"parentId":2053,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/tooltip/tooltipMarkup.js","layer":"app-pages-browser"},"startTime":1780368988290,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":32474,"timestamp":1876019649868,"id":2896,"parentId":2822,"tags":{},"startTime":1780368988292,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":30,"timestamp":1876019682347,"id":3017,"parentId":2822,"tags":{},"startTime":1780368988325,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":35093,"timestamp":1876019647468,"id":2822,"parentId":2056,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/OrdinalMeta.js","layer":"app-pages-browser"},"startTime":1780368988290,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":32696,"timestamp":1876019649871,"id":2897,"parentId":2823,"tags":{},"startTime":1780368988292,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":30,"timestamp":1876019682571,"id":3018,"parentId":2823,"tags":{},"startTime":1780368988325,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":35143,"timestamp":1876019647501,"id":2823,"parentId":2056,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/axisCommonTypes.js","layer":"app-pages-browser"},"startTime":1780368988290,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":32785,"timestamp":1876019649864,"id":2895,"parentId":2821,"tags":{},"startTime":1780368988292,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":45,"timestamp":1876019682652,"id":3019,"parentId":2821,"tags":{},"startTime":1780368988325,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":37397,"timestamp":1876019647435,"id":2821,"parentId":2054,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/Element.js","layer":"app-pages-browser"},"startTime":1780368988290,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":34974,"timestamp":1876019649873,"id":2898,"parentId":2824,"tags":{},"startTime":1780368988292,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":37,"timestamp":1876019684854,"id":3020,"parentId":2824,"tags":{},"startTime":1780368988327,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":37516,"timestamp":1876019647534,"id":2824,"parentId":2056,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/axisDefault.js","layer":"app-pages-browser"},"startTime":1780368988290,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":35219,"timestamp":1876019649840,"id":2887,"parentId":2813,"tags":{},"startTime":1780368988292,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":28,"timestamp":1876019685063,"id":3021,"parentId":2813,"tags":{},"startTime":1780368988327,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":38097,"timestamp":1876019647151,"id":2813,"parentId":1963,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/helper/subPixelOptimize.js","layer":"app-pages-browser"},"startTime":1780368988289,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":35411,"timestamp":1876019649842,"id":2888,"parentId":2814,"tags":{},"startTime":1780368988292,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":24,"timestamp":1876019685258,"id":3022,"parentId":2814,"tags":{},"startTime":1780368988328,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":38240,"timestamp":1876019647187,"id":2814,"parentId":1984,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/helper/image.js","layer":"app-pages-browser"},"startTime":1780368988289,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":35570,"timestamp":1876019649861,"id":2894,"parentId":2820,"tags":{},"startTime":1780368988292,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":34,"timestamp":1876019685435,"id":3023,"parentId":2820,"tags":{},"startTime":1780368988328,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":38673,"timestamp":1876019647401,"id":2820,"parentId":1987,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/preprocessor/helper/compatStyle.js","layer":"app-pages-browser"},"startTime":1780368988290,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":36198,"timestamp":1876019649881,"id":2901,"parentId":2827,"tags":{},"startTime":1780368988292,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":28,"timestamp":1876019686083,"id":3024,"parentId":2827,"tags":{},"startTime":1780368988328,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":38720,"timestamp":1876019647633,"id":2827,"parentId":2064,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/animation/customGraphicKeyframeAnimation.js","layer":"app-pages-browser"},"startTime":1780368988290,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":36482,"timestamp":1876019649876,"id":2899,"parentId":2825,"tags":{},"startTime":1780368988292,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":30,"timestamp":1876019686361,"id":3025,"parentId":2825,"tags":{},"startTime":1780368988329,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":39313,"timestamp":1876019647567,"id":2825,"parentId":2064,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/styleCompat.js","layer":"app-pages-browser"},"startTime":1780368988290,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":36996,"timestamp":1876019649888,"id":2903,"parentId":2829,"tags":{},"startTime":1780368988292,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":29,"timestamp":1876019686888,"id":3026,"parentId":2829,"tags":{},"startTime":1780368988329,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":39501,"timestamp":1876019647768,"id":2829,"parentId":2057,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/viewHelper.js","layer":"app-pages-browser"},"startTime":1780368988290,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":37542,"timestamp":1876019649733,"id":2863,"parentId":2789,"tags":{},"startTime":1780368988292,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":25,"timestamp":1876019687279,"id":3027,"parentId":2789,"tags":{},"startTime":1780368988330,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":41382,"timestamp":1876019646182,"id":2789,"parentId":1984,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/canvas/helper.js","layer":"app-pages-browser"},"startTime":1780368988288,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":37677,"timestamp":1876019649893,"id":2905,"parentId":2831,"tags":{},"startTime":1780368988292,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":27,"timestamp":1876019687574,"id":3028,"parentId":2831,"tags":{},"startTime":1780368988330,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":39981,"timestamp":1876019647836,"id":2831,"parentId":2059,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/single/singleAxisHelper.js","layer":"app-pages-browser"},"startTime":1780368988290,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":37938,"timestamp":1876019649885,"id":2902,"parentId":2828,"tags":{},"startTime":1780368988292,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":31,"timestamp":1876019687827,"id":3029,"parentId":2828,"tags":{},"startTime":1780368988330,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":41825,"timestamp":1876019647732,"id":2828,"parentId":2057,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/BaseAxisPointer.js","layer":"app-pages-browser"},"startTime":1780368988290,"traceId":"f5ac02f0451719cf"}] -[{"name":"read-resource","duration":39682,"timestamp":1876019649899,"id":2907,"parentId":2833,"tags":{},"startTime":1780368988292,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":44,"timestamp":1876019689590,"id":3030,"parentId":2833,"tags":{},"startTime":1780368988332,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":41978,"timestamp":1876019647903,"id":2833,"parentId":2065,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/SelectZoomView.js","layer":"app-pages-browser"},"startTime":1780368988290,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":39988,"timestamp":1876019649901,"id":2908,"parentId":2834,"tags":{},"startTime":1780368988292,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":35,"timestamp":1876019689895,"id":3031,"parentId":2834,"tags":{},"startTime":1780368988332,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":42097,"timestamp":1876019647936,"id":2834,"parentId":1982,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/contain/util.js","layer":"app-pages-browser"},"startTime":1780368988290,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":40143,"timestamp":1876019649896,"id":2906,"parentId":2832,"tags":{},"startTime":1780368988292,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":31,"timestamp":1876019690057,"id":3032,"parentId":2832,"tags":{},"startTime":1780368988332,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":42336,"timestamp":1876019647870,"id":2832,"parentId":2065,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/SelectZoomModel.js","layer":"app-pages-browser"},"startTime":1780368988290,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":40301,"timestamp":1876019649910,"id":2911,"parentId":2837,"tags":{},"startTime":1780368988292,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":28,"timestamp":1876019690218,"id":3033,"parentId":2837,"tags":{},"startTime":1780368988332,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":42639,"timestamp":1876019648032,"id":2837,"parentId":2073,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/visual/visualSolution.js","layer":"app-pages-browser"},"startTime":1780368988290,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":40781,"timestamp":1876019649907,"id":2910,"parentId":2836,"tags":{},"startTime":1780368988292,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":34,"timestamp":1876019690692,"id":3034,"parentId":2836,"tags":{},"startTime":1780368988333,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":43127,"timestamp":1876019648001,"id":2836,"parentId":2067,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/contain/text.js","layer":"app-pages-browser"},"startTime":1780368988290,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":41248,"timestamp":1876019649912,"id":2912,"parentId":2838,"tags":{},"startTime":1780368988292,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":48,"timestamp":1876019691163,"id":3035,"parentId":2838,"tags":{},"startTime":1780368988333,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":43451,"timestamp":1876019648066,"id":2838,"parentId":2074,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/brush/selector.js","layer":"app-pages-browser"},"startTime":1780368988290,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":41755,"timestamp":1876019649915,"id":2913,"parentId":2839,"tags":{},"startTime":1780368988292,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":42,"timestamp":1876019691679,"id":3036,"parentId":2839,"tags":{},"startTime":1780368988334,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":43981,"timestamp":1876019648099,"id":2839,"parentId":2075,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/timeline/TimelineModel.js","layer":"app-pages-browser"},"startTime":1780368988290,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":42194,"timestamp":1876019649922,"id":2915,"parentId":2841,"tags":{},"startTime":1780368988292,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":28,"timestamp":1876019692122,"id":3037,"parentId":2841,"tags":{},"startTime":1780368988334,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":44085,"timestamp":1876019648177,"id":2841,"parentId":2076,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/timeline/TimelineAxis.js","layer":"app-pages-browser"},"startTime":1780368988290,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":42363,"timestamp":1876019649904,"id":2909,"parentId":2835,"tags":{},"startTime":1780368988292,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":29,"timestamp":1876019692271,"id":3038,"parentId":2835,"tags":{},"startTime":1780368988335,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":45018,"timestamp":1876019647969,"id":2835,"parentId":2055,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/contain/path.js","layer":"app-pages-browser"},"startTime":1780368988290,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":43083,"timestamp":1876019649919,"id":2914,"parentId":2840,"tags":{},"startTime":1780368988292,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":25,"timestamp":1876019693006,"id":3039,"parentId":2840,"tags":{},"startTime":1780368988335,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":44968,"timestamp":1876019648141,"id":2840,"parentId":2076,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/timeline/TimelineView.js","layer":"app-pages-browser"},"startTime":1780368988290,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":43188,"timestamp":1876019649925,"id":2916,"parentId":2842,"tags":{},"startTime":1780368988292,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":43,"timestamp":1876019693116,"id":3040,"parentId":2842,"tags":{},"startTime":1780368988335,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":45751,"timestamp":1876019648212,"id":2842,"parentId":2107,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/tooltip/TooltipHTMLContent.js","layer":"app-pages-browser"},"startTime":1780368988290,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":44036,"timestamp":1876019649931,"id":2918,"parentId":2844,"tags":{},"startTime":1780368988292,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":28,"timestamp":1876019693972,"id":3041,"parentId":2844,"tags":{},"startTime":1780368988336,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":45872,"timestamp":1876019648280,"id":2844,"parentId":2107,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/findPointFromSeries.js","layer":"app-pages-browser"},"startTime":1780368988291,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":44215,"timestamp":1876019649941,"id":2919,"parentId":2845,"tags":{},"startTime":1780368988292,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":27,"timestamp":1876019694162,"id":3042,"parentId":2845,"tags":{},"startTime":1780368988336,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":46057,"timestamp":1876019648315,"id":2845,"parentId":2107,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/globalListener.js","layer":"app-pages-browser"},"startTime":1780368988291,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":44431,"timestamp":1876019649944,"id":2920,"parentId":2846,"tags":{},"startTime":1780368988292,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":24,"timestamp":1876019694379,"id":3043,"parentId":2846,"tags":{},"startTime":1780368988337,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":46174,"timestamp":1876019648361,"id":2846,"parentId":2107,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/tooltip/helper.js","layer":"app-pages-browser"},"startTime":1780368988291,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":44592,"timestamp":1876019649947,"id":2921,"parentId":2847,"tags":{},"startTime":1780368988292,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":25,"timestamp":1876019694542,"id":3044,"parentId":2847,"tags":{},"startTime":1780368988337,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":46394,"timestamp":1876019648395,"id":2847,"parentId":2111,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/cartesian/cartesianAxisHelper.js","layer":"app-pages-browser"},"startTime":1780368988291,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":44846,"timestamp":1876019649950,"id":2922,"parentId":2848,"tags":{},"startTime":1780368988292,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":26,"timestamp":1876019694799,"id":3045,"parentId":2848,"tags":{},"startTime":1780368988337,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":46565,"timestamp":1876019648429,"id":2848,"parentId":2111,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axis/axisSplitHelper.js","layer":"app-pages-browser"},"startTime":1780368988291,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":45054,"timestamp":1876019649952,"id":2923,"parentId":2849,"tags":{},"startTime":1780368988292,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":26,"timestamp":1876019695009,"id":3046,"parentId":2849,"tags":{},"startTime":1780368988337,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":46680,"timestamp":1876019648464,"id":2849,"parentId":2067,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/helper/listComponent.js","layer":"app-pages-browser"},"startTime":1780368988291,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":45192,"timestamp":1876019649955,"id":2924,"parentId":2850,"tags":{},"startTime":1780368988292,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":35,"timestamp":1876019695149,"id":3047,"parentId":2850,"tags":{},"startTime":1780368988337,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":47918,"timestamp":1876019648499,"id":2850,"parentId":2072,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/helper/BrushController.js","layer":"app-pages-browser"},"startTime":1780368988291,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":46462,"timestamp":1876019649960,"id":2926,"parentId":2852,"tags":{},"startTime":1780368988292,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":28,"timestamp":1876019696425,"id":3048,"parentId":2852,"tags":{},"startTime":1780368988339,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":48169,"timestamp":1876019648572,"id":2852,"parentId":2076,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/scale/Ordinal.js","layer":"app-pages-browser"},"startTime":1780368988291,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":46797,"timestamp":1876019649957,"id":2925,"parentId":2851,"tags":{},"startTime":1780368988292,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":33,"timestamp":1876019696757,"id":3049,"parentId":2851,"tags":{},"startTime":1780368988339,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":49163,"timestamp":1876019648535,"id":2851,"parentId":2074,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/helper/BrushTargetManager.js","layer":"app-pages-browser"},"startTime":1780368988291,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":47782,"timestamp":1876019649928,"id":2917,"parentId":2843,"tags":{},"startTime":1780368988292,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":36,"timestamp":1876019697715,"id":3050,"parentId":2843,"tags":{},"startTime":1780368988340,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":49978,"timestamp":1876019648246,"id":2843,"parentId":2107,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/tooltip/TooltipRichContent.js","layer":"app-pages-browser"},"startTime":1780368988290,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":48267,"timestamp":1876019649963,"id":2927,"parentId":2853,"tags":{},"startTime":1780368988292,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":64,"timestamp":1876019698235,"id":3051,"parentId":2853,"tags":{},"startTime":1780368988340,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":50669,"timestamp":1876019648606,"id":2853,"parentId":2076,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/scale/Time.js","layer":"app-pages-browser"},"startTime":1780368988291,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":49312,"timestamp":1876019649968,"id":2929,"parentId":2855,"tags":{},"startTime":1780368988292,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":27,"timestamp":1876019699283,"id":3052,"parentId":2855,"tags":{},"startTime":1780368988342,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":50877,"timestamp":1876019648669,"id":2855,"parentId":2111,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/scale/helper.js","layer":"app-pages-browser"},"startTime":1780368988291,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":49581,"timestamp":1876019649970,"id":2930,"parentId":2856,"tags":{},"startTime":1780368988292,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":132,"timestamp":1876019699554,"id":3053,"parentId":2856,"tags":{},"startTime":1780368988342,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":51067,"timestamp":1876019648702,"id":2856,"parentId":2225,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/legacy/getTextRect.js","layer":"app-pages-browser"},"startTime":1780368988291,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":49801,"timestamp":1876019649972,"id":2931,"parentId":2857,"tags":{},"startTime":1780368988292,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":26,"timestamp":1876019699777,"id":3054,"parentId":2857,"tags":{},"startTime":1780368988342,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":51312,"timestamp":1876019648739,"id":2857,"parentId":2217,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/axisAlignTicks.js","layer":"app-pages-browser"},"startTime":1780368988291,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":50081,"timestamp":1876019649974,"id":2932,"parentId":2858,"tags":{},"startTime":1780368988292,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":27,"timestamp":1876019700059,"id":3055,"parentId":2858,"tags":{},"startTime":1780368988342,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":52624,"timestamp":1876019648771,"id":2858,"parentId":2215,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/polar/Polar.js","layer":"app-pages-browser"},"startTime":1780368988291,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":51449,"timestamp":1876019649965,"id":2928,"parentId":2854,"tags":{},"startTime":1780368988292,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":57,"timestamp":1876019701424,"id":3056,"parentId":2854,"tags":{},"startTime":1780368988344,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":53319,"timestamp":1876019648637,"id":2854,"parentId":2076,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/scale/Interval.js","layer":"app-pages-browser"},"startTime":1780368988291,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":52085,"timestamp":1876019649879,"id":2900,"parentId":2826,"tags":{},"startTime":1780368988292,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":42,"timestamp":1876019701968,"id":3057,"parentId":2826,"tags":{},"startTime":1780368988344,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":55307,"timestamp":1876019647599,"id":2826,"parentId":2064,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/animation/customGraphicTransition.js","layer":"app-pages-browser"},"startTime":1780368988290,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":52937,"timestamp":1876019649976,"id":2933,"parentId":2859,"tags":{},"startTime":1780368988292,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":26,"timestamp":1876019702917,"id":3058,"parentId":2859,"tags":{},"startTime":1780368988345,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":54260,"timestamp":1876019648804,"id":2859,"parentId":2211,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/helper/brushHelper.js","layer":"app-pages-browser"},"startTime":1780368988291,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":53087,"timestamp":1876019649980,"id":2935,"parentId":2861,"tags":{},"startTime":1780368988292,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":26,"timestamp":1876019703071,"id":3059,"parentId":2861,"tags":{},"startTime":1780368988345,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":54349,"timestamp":1876019648870,"id":2861,"parentId":2221,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/cartesian/Axis2D.js","layer":"app-pages-browser"},"startTime":1780368988291,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":53344,"timestamp":1876019649982,"id":2936,"parentId":2862,"tags":{},"startTime":1780368988292,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":30,"timestamp":1876019703331,"id":3060,"parentId":2862,"tags":{},"startTime":1780368988346,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":54729,"timestamp":1876019648960,"id":2862,"parentId":2223,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/single/Single.js","layer":"app-pages-browser"},"startTime":1780368988291,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":59598,"timestamp":1876019649979,"id":2934,"parentId":2860,"tags":{},"startTime":1780368988292,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":31,"timestamp":1876019709583,"id":3061,"parentId":2860,"tags":{},"startTime":1780368988352,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":61206,"timestamp":1876019648836,"id":2860,"parentId":2221,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/cartesian/Cartesian2D.js","layer":"app-pages-browser"},"startTime":1780368988291,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":52573,"timestamp":1876019657475,"id":2953,"parentId":2937,"tags":{},"startTime":1780368988300,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":24,"timestamp":1876019710052,"id":3062,"parentId":2937,"tags":{},"startTime":1780368988352,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":54748,"timestamp":1876019655600,"id":2937,"parentId":2225,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/dom.js","layer":"app-pages-browser"},"startTime":1780368988298,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":52765,"timestamp":1876019657587,"id":2959,"parentId":2943,"tags":{},"startTime":1780368988300,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":24,"timestamp":1876019710355,"id":3063,"parentId":2943,"tags":{},"startTime":1780368988353,"traceId":"f5ac02f0451719cf"}] -[{"name":"build-module-js","duration":54019,"timestamp":1876019656418,"id":2943,"parentId":2243,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/CoordinateSystem.js","layer":"app-pages-browser"},"startTime":1780368988299,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":60554,"timestamp":1876019649890,"id":2904,"parentId":2830,"tags":{},"startTime":1780368988292,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":36,"timestamp":1876019710448,"id":3064,"parentId":2830,"tags":{},"startTime":1780368988353,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":63977,"timestamp":1876019647803,"id":2830,"parentId":2057,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axis/AxisBuilder.js","layer":"app-pages-browser"},"startTime":1780368988290,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":54242,"timestamp":1876019657574,"id":2958,"parentId":2942,"tags":{},"startTime":1780368988300,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":53,"timestamp":1876019711826,"id":3065,"parentId":2942,"tags":{},"startTime":1780368988354,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":56192,"timestamp":1876019656327,"id":2942,"parentId":2237,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/markerHelper.js","layer":"app-pages-browser"},"startTime":1780368988299,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":54933,"timestamp":1876019657596,"id":2960,"parentId":2944,"tags":{},"startTime":1780368988300,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":34,"timestamp":1876019712534,"id":3066,"parentId":2944,"tags":{},"startTime":1780368988355,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":56192,"timestamp":1876019656519,"id":2944,"parentId":2238,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/DataZoomView.js","layer":"app-pages-browser"},"startTime":1780368988299,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":55160,"timestamp":1876019657562,"id":2957,"parentId":2941,"tags":{},"startTime":1780368988300,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":33,"timestamp":1876019712726,"id":3067,"parentId":2941,"tags":{},"startTime":1780368988355,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":57826,"timestamp":1876019656230,"id":2941,"parentId":2237,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/SymbolDraw.js","layer":"app-pages-browser"},"startTime":1780368988298,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":56366,"timestamp":1876019657708,"id":2962,"parentId":2946,"tags":{},"startTime":1780368988300,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":38,"timestamp":1876019714081,"id":3068,"parentId":2946,"tags":{},"startTime":1780368988356,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":57622,"timestamp":1876019656763,"id":2946,"parentId":2238,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/helper/sliderMove.js","layer":"app-pages-browser"},"startTime":1780368988299,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":56672,"timestamp":1876019657720,"id":2963,"parentId":2947,"tags":{},"startTime":1780368988300,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":42,"timestamp":1876019714395,"id":3069,"parentId":2947,"tags":{},"startTime":1780368988357,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":58011,"timestamp":1876019656879,"id":2947,"parentId":2239,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/helper/RoamController.js","layer":"app-pages-browser"},"startTime":1780368988299,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":57376,"timestamp":1876019657532,"id":2955,"parentId":2939,"tags":{},"startTime":1780368988300,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":27,"timestamp":1876019714912,"id":3070,"parentId":2939,"tags":{},"startTime":1780368988357,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":59006,"timestamp":1876019656022,"id":2939,"parentId":2217,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/radar/IndicatorAxis.js","layer":"app-pages-browser"},"startTime":1780368988298,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":57428,"timestamp":1876019657604,"id":2961,"parentId":2945,"tags":{},"startTime":1780368988300,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":27,"timestamp":1876019715035,"id":3071,"parentId":2945,"tags":{},"startTime":1780368988357,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":58641,"timestamp":1876019656602,"id":2945,"parentId":2237,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/MarkerView.js","layer":"app-pages-browser"},"startTime":1780368988299,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":57517,"timestamp":1876019657729,"id":2964,"parentId":2948,"tags":{},"startTime":1780368988300,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":28,"timestamp":1876019715251,"id":3072,"parentId":2948,"tags":{},"startTime":1780368988357,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":58662,"timestamp":1876019656963,"id":2948,"parentId":2239,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/helper.js","layer":"app-pages-browser"},"startTime":1780368988299,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":57902,"timestamp":1876019657746,"id":2966,"parentId":2950,"tags":{},"startTime":1780368988300,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":29,"timestamp":1876019715652,"id":3073,"parentId":2950,"tags":{},"startTime":1780368988358,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":58729,"timestamp":1876019657138,"id":2950,"parentId":2241,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/dataZoomProcessor.js","layer":"app-pages-browser"},"startTime":1780368988299,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":58135,"timestamp":1876019657737,"id":2965,"parentId":2949,"tags":{},"startTime":1780368988300,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":26,"timestamp":1876019715876,"id":3074,"parentId":2949,"tags":{},"startTime":1780368988358,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":58909,"timestamp":1876019657061,"id":2949,"parentId":2241,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/dataZoomAction.js","layer":"app-pages-browser"},"startTime":1780368988299,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":58261,"timestamp":1876019657767,"id":2967,"parentId":2951,"tags":{},"startTime":1780368988300,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":33,"timestamp":1876019716032,"id":3075,"parentId":2951,"tags":{},"startTime":1780368988358,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":59586,"timestamp":1876019657220,"id":2951,"parentId":2240,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/DataZoomModel.js","layer":"app-pages-browser"},"startTime":1780368988299,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":59028,"timestamp":1876019657840,"id":2968,"parentId":2952,"tags":{},"startTime":1780368988300,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":53,"timestamp":1876019716874,"id":3076,"parentId":2952,"tags":{},"startTime":1780368988359,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":59975,"timestamp":1876019657334,"id":2952,"parentId":2245,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/LineDraw.js","layer":"app-pages-browser"},"startTime":1780368988300,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":59805,"timestamp":1876019657518,"id":2954,"parentId":2938,"tags":{},"startTime":1780368988300,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":70,"timestamp":1876019717329,"id":3077,"parentId":2938,"tags":{},"startTime":1780368988360,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":62789,"timestamp":1876019655884,"id":2938,"parentId":2225,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/helper/parseText.js","layer":"app-pages-browser"},"startTime":1780368988298,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":71415,"timestamp":1876019657545,"id":2956,"parentId":2940,"tags":{},"startTime":1780368988300,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":38,"timestamp":1876019728970,"id":3078,"parentId":2940,"tags":{},"startTime":1780368988371,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":73430,"timestamp":1876019656128,"id":2940,"parentId":2236,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/MarkerModel.js","layer":"app-pages-browser"},"startTime":1780368988298,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":67602,"timestamp":1876019661964,"id":2977,"parentId":2969,"tags":{},"startTime":1780368988304,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":30,"timestamp":1876019729571,"id":3079,"parentId":2969,"tags":{},"startTime":1780368988372,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":69263,"timestamp":1876019660537,"id":2969,"parentId":2249,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/history.js","layer":"app-pages-browser"},"startTime":1780368988303,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":67819,"timestamp":1876019661988,"id":2979,"parentId":2971,"tags":{},"startTime":1780368988304,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":28,"timestamp":1876019729811,"id":3080,"parentId":2971,"tags":{},"startTime":1780368988372,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":69058,"timestamp":1876019661140,"id":2971,"parentId":2248,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/event.js","layer":"app-pages-browser"},"startTime":1780368988303,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":68217,"timestamp":1876019661992,"id":2980,"parentId":2972,"tags":{},"startTime":1780368988304,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":27,"timestamp":1876019730213,"id":3081,"parentId":2972,"tags":{},"startTime":1780368988372,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":68989,"timestamp":1876019661355,"id":2972,"parentId":2270,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/vendor.js","layer":"app-pages-browser"},"startTime":1780368988304,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":68346,"timestamp":1876019662003,"id":2982,"parentId":2974,"tags":{},"startTime":1780368988304,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":32,"timestamp":1876019730352,"id":3082,"parentId":2974,"tags":{},"startTime":1780368988373,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":68912,"timestamp":1876019661575,"id":2974,"parentId":2259,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/visual/visualDefault.js","layer":"app-pages-browser"},"startTime":1780368988304,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":68508,"timestamp":1876019661983,"id":2978,"parentId":2970,"tags":{},"startTime":1780368988304,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":33,"timestamp":1876019730494,"id":3083,"parentId":2970,"tags":{},"startTime":1780368988373,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":70594,"timestamp":1876019660650,"id":2970,"parentId":2256,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/parallel/Parallel.js","layer":"app-pages-browser"},"startTime":1780368988303,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":69299,"timestamp":1876019661998,"id":2981,"parentId":2973,"tags":{},"startTime":1780368988304,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":34,"timestamp":1876019731300,"id":3084,"parentId":2973,"tags":{},"startTime":1780368988374,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":70664,"timestamp":1876019661519,"id":2973,"parentId":2259,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/visual/VisualMapping.js","layer":"app-pages-browser"},"startTime":1780368988304,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":70146,"timestamp":1876019662049,"id":2984,"parentId":2976,"tags":{},"startTime":1780368988304,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":53,"timestamp":1876019732198,"id":3085,"parentId":2976,"tags":{},"startTime":1780368988374,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":71128,"timestamp":1876019661838,"id":2976,"parentId":2259,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/VisualMapModel.js","layer":"app-pages-browser"},"startTime":1780368988304,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":70970,"timestamp":1876019662005,"id":2983,"parentId":2975,"tags":{},"startTime":1780368988304,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":32,"timestamp":1876019732980,"id":3086,"parentId":2975,"tags":{},"startTime":1780368988375,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":72002,"timestamp":1876019661658,"id":2975,"parentId":2271,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/conditionalExpression.js","layer":"app-pages-browser"},"startTime":1780368988304,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":89063,"timestamp":1876019665649,"id":2987,"parentId":2985,"tags":{},"startTime":1780368988308,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":36,"timestamp":1876019754726,"id":3087,"parentId":2985,"tags":{},"startTime":1780368988397,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":89683,"timestamp":1876019665308,"id":2985,"parentId":2261,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/visualMapAction.js","layer":"app-pages-browser"},"startTime":1780368988308,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":89318,"timestamp":1876019665680,"id":2988,"parentId":2986,"tags":{},"startTime":1780368988308,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":28,"timestamp":1876019755005,"id":3088,"parentId":2986,"tags":{},"startTime":1780368988397,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":89771,"timestamp":1876019665524,"id":2986,"parentId":2261,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/visualEncoding.js","layer":"app-pages-browser"},"startTime":1780368988308,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":8458,"timestamp":1876019761447,"id":3145,"parentId":3089,"tags":{},"startTime":1780368988404,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":41,"timestamp":1876019769918,"id":3269,"parentId":3089,"tags":{},"startTime":1780368988412,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":12833,"timestamp":1876019757465,"id":3089,"parentId":2261,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/preprocessor.js","layer":"app-pages-browser"},"startTime":1780368988400,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":8824,"timestamp":1876019761484,"id":3147,"parentId":3091,"tags":{},"startTime":1780368988404,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":28,"timestamp":1876019770312,"id":3270,"parentId":3091,"tags":{},"startTime":1780368988413,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":12956,"timestamp":1876019757592,"id":3091,"parentId":2260,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/helper.js","layer":"app-pages-browser"},"startTime":1780368988400,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":9075,"timestamp":1876019761477,"id":3146,"parentId":3090,"tags":{},"startTime":1780368988404,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":28,"timestamp":1876019770555,"id":3271,"parentId":3090,"tags":{},"startTime":1780368988413,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":13403,"timestamp":1876019757548,"id":3090,"parentId":2260,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/VisualMapView.js","layer":"app-pages-browser"},"startTime":1780368988400,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":8689,"timestamp":1876019762268,"id":3148,"parentId":3092,"tags":{},"startTime":1780368988405,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":31,"timestamp":1876019770962,"id":3272,"parentId":3092,"tags":{},"startTime":1780368988413,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":13479,"timestamp":1876019757631,"id":3092,"parentId":2282,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/visual/LegendVisualProvider.js","layer":"app-pages-browser"},"startTime":1780368988400,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":8785,"timestamp":1876019762335,"id":3154,"parentId":3098,"tags":{},"startTime":1780368988405,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":37,"timestamp":1876019771125,"id":3273,"parentId":3098,"tags":{},"startTime":1780368988413,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":14199,"timestamp":1876019757852,"id":3098,"parentId":2281,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/pie/labelLayout.js","layer":"app-pages-browser"},"startTime":1780368988400,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":9729,"timestamp":1876019762328,"id":3152,"parentId":3096,"tags":{},"startTime":1780368988405,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":30,"timestamp":1876019772061,"id":3274,"parentId":3096,"tags":{},"startTime":1780368988414,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":14704,"timestamp":1876019757781,"id":3096,"parentId":2277,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/Geo.js","layer":"app-pages-browser"},"startTime":1780368988400,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":10179,"timestamp":1876019762322,"id":3151,"parentId":3095,"tags":{},"startTime":1780368988405,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":42,"timestamp":1876019772504,"id":3275,"parentId":3095,"tags":{},"startTime":1780368988415,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":16018,"timestamp":1876019757745,"id":3095,"parentId":2278,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/helper/MapDraw.js","layer":"app-pages-browser"},"startTime":1780368988400,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":11486,"timestamp":1876019762292,"id":3149,"parentId":3093,"tags":{},"startTime":1780368988405,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":36,"timestamp":1876019773785,"id":3276,"parentId":3093,"tags":{},"startTime":1780368988416,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":16529,"timestamp":1876019757672,"id":3093,"parentId":2279,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/GeoSVGResource.js","layer":"app-pages-browser"},"startTime":1780368988400,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":11832,"timestamp":1876019762373,"id":3158,"parentId":3102,"tags":{},"startTime":1780368988405,"traceId":"f5ac02f0451719cf"}] -[{"name":"next-swc-loader","duration":26,"timestamp":1876019774208,"id":3277,"parentId":3102,"tags":{},"startTime":1780368988416,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":16311,"timestamp":1876019758059,"id":3102,"parentId":2379,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/labelHelper.js","layer":"app-pages-browser"},"startTime":1780368988400,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":12077,"timestamp":1876019762301,"id":3150,"parentId":3094,"tags":{},"startTime":1780368988405,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":27,"timestamp":1876019774383,"id":3278,"parentId":3094,"tags":{},"startTime":1780368988417,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":16974,"timestamp":1876019757709,"id":3094,"parentId":2279,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/GeoJSONResource.js","layer":"app-pages-browser"},"startTime":1780368988400,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":12321,"timestamp":1876019762367,"id":3156,"parentId":3100,"tags":{},"startTime":1780368988405,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":32,"timestamp":1876019774692,"id":3279,"parentId":3100,"tags":{},"startTime":1780368988417,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":17363,"timestamp":1876019757922,"id":3100,"parentId":2357,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/LargeSymbolDraw.js","layer":"app-pages-browser"},"startTime":1780368988400,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":12936,"timestamp":1876019762355,"id":3155,"parentId":3099,"tags":{},"startTime":1780368988405,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":26,"timestamp":1876019775294,"id":3280,"parentId":3099,"tags":{},"startTime":1780368988418,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":17532,"timestamp":1876019757887,"id":3099,"parentId":2281,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/sectorHelper.js","layer":"app-pages-browser"},"startTime":1780368988400,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":13041,"timestamp":1876019762382,"id":3161,"parentId":3105,"tags":{},"startTime":1780368988405,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":98,"timestamp":1876019775427,"id":3281,"parentId":3105,"tags":{},"startTime":1780368988418,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":17844,"timestamp":1876019758160,"id":3105,"parentId":2374,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/line/lineAnimationDiff.js","layer":"app-pages-browser"},"startTime":1780368988400,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":13640,"timestamp":1876019762370,"id":3157,"parentId":3101,"tags":{},"startTime":1780368988405,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":33,"timestamp":1876019776014,"id":3282,"parentId":3101,"tags":{},"startTime":1780368988418,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":18610,"timestamp":1876019757957,"id":3101,"parentId":2391,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/Tree.js","layer":"app-pages-browser"},"startTime":1780368988400,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":14195,"timestamp":1876019762379,"id":3160,"parentId":3104,"tags":{},"startTime":1780368988405,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":1046,"timestamp":1876019776578,"id":3283,"parentId":3104,"tags":{},"startTime":1780368988419,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":20431,"timestamp":1876019758128,"id":3104,"parentId":2374,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/Symbol.js","layer":"app-pages-browser"},"startTime":1780368988400,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":16202,"timestamp":1876019762376,"id":3159,"parentId":3103,"tags":{},"startTime":1780368988405,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":38,"timestamp":1876019778586,"id":3284,"parentId":3103,"tags":{},"startTime":1780368988421,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":20830,"timestamp":1876019758093,"id":3103,"parentId":2379,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/createClipPathFromCoordSys.js","layer":"app-pages-browser"},"startTime":1780368988400,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":16609,"timestamp":1876019762331,"id":3153,"parentId":3097,"tags":{},"startTime":1780368988405,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":30,"timestamp":1876019778945,"id":3285,"parentId":3097,"tags":{},"startTime":1780368988421,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":21284,"timestamp":1876019757815,"id":3097,"parentId":2282,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/createSeriesDataSimply.js","layer":"app-pages-browser"},"startTime":1780368988400,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":16721,"timestamp":1876019762386,"id":3162,"parentId":3106,"tags":{},"startTime":1780368988405,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":33,"timestamp":1876019779111,"id":3286,"parentId":3106,"tags":{},"startTime":1780368988421,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":21665,"timestamp":1876019758192,"id":3106,"parentId":2374,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/line/poly.js","layer":"app-pages-browser"},"startTime":1780368988400,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":17466,"timestamp":1876019762398,"id":3166,"parentId":3110,"tags":{},"startTime":1780368988405,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":29,"timestamp":1876019779869,"id":3287,"parentId":3110,"tags":{},"startTime":1780368988422,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":21708,"timestamp":1876019758321,"id":3110,"parentId":2392,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/animation.js","layer":"app-pages-browser"},"startTime":1780368988401,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":17644,"timestamp":1876019762390,"id":3163,"parentId":3107,"tags":{},"startTime":1780368988405,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":28,"timestamp":1876019780037,"id":3288,"parentId":3107,"tags":{},"startTime":1780368988422,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":22021,"timestamp":1876019758225,"id":3107,"parentId":2374,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/line/helper.js","layer":"app-pages-browser"},"startTime":1780368988400,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":17910,"timestamp":1876019762392,"id":3164,"parentId":3108,"tags":{},"startTime":1780368988405,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":27,"timestamp":1876019780305,"id":3289,"parentId":3108,"tags":{},"startTime":1780368988423,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":22302,"timestamp":1876019758256,"id":3108,"parentId":2380,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/bar/BaseBarSeries.js","layer":"app-pages-browser"},"startTime":1780368988400,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":18162,"timestamp":1876019762401,"id":3167,"parentId":3111,"tags":{},"startTime":1780368988405,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":26,"timestamp":1876019780581,"id":3290,"parentId":3111,"tags":{},"startTime":1780368988423,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":22324,"timestamp":1876019758355,"id":3111,"parentId":2391,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/enableAriaDecalForTree.js","layer":"app-pages-browser"},"startTime":1780368988401,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":18287,"timestamp":1876019762395,"id":3165,"parentId":3109,"tags":{},"startTime":1780368988405,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":24,"timestamp":1876019780685,"id":3291,"parentId":3109,"tags":{},"startTime":1780368988423,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":22574,"timestamp":1876019758289,"id":3109,"parentId":2381,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/treeHelper.js","layer":"app-pages-browser"},"startTime":1780368988401,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":18462,"timestamp":1876019762406,"id":3169,"parentId":3113,"tags":{},"startTime":1780368988405,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":24,"timestamp":1876019780872,"id":3292,"parentId":3113,"tags":{},"startTime":1780368988423,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":22561,"timestamp":1876019758427,"id":3113,"parentId":2400,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/tree/traversalHelper.js","layer":"app-pages-browser"},"startTime":1780368988401,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":18587,"timestamp":1876019762403,"id":3168,"parentId":3112,"tags":{},"startTime":1780368988405,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":26,"timestamp":1876019780994,"id":3293,"parentId":3112,"tags":{},"startTime":1780368988423,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":22940,"timestamp":1876019758389,"id":3112,"parentId":2392,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/treemap/Breadcrumb.js","layer":"app-pages-browser"},"startTime":1780368988401,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":18924,"timestamp":1876019762409,"id":3170,"parentId":3114,"tags":{},"startTime":1780368988405,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":35,"timestamp":1876019781336,"id":3294,"parentId":3114,"tags":{},"startTime":1780368988424,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":23277,"timestamp":1876019758464,"id":3114,"parentId":2400,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/tree/layoutHelper.js","layer":"app-pages-browser"},"startTime":1780368988401,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":19335,"timestamp":1876019762411,"id":3171,"parentId":3115,"tags":{},"startTime":1780368988405,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":24,"timestamp":1876019781749,"id":3295,"parentId":3115,"tags":{},"startTime":1780368988424,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":23361,"timestamp":1876019758497,"id":3115,"parentId":2398,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/helper/roamHelper.js","layer":"app-pages-browser"},"startTime":1780368988401,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":19441,"timestamp":1876019762421,"id":3175,"parentId":3119,"tags":{},"startTime":1780368988405,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":24,"timestamp":1876019781866,"id":3296,"parentId":3119,"tags":{},"startTime":1780368988424,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":23377,"timestamp":1876019758640,"id":3119,"parentId":2503,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/gauge/PointerPath.js","layer":"app-pages-browser"},"startTime":1780368988401,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":19606,"timestamp":1876019762414,"id":3172,"parentId":3116,"tags":{},"startTime":1780368988405,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":24,"timestamp":1876019782022,"id":3297,"parentId":3116,"tags":{},"startTime":1780368988424,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":23574,"timestamp":1876019758531,"id":3116,"parentId":2398,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/helper/cursorHelper.js","layer":"app-pages-browser"},"startTime":1780368988401,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":19691,"timestamp":1876019762416,"id":3173,"parentId":3117,"tags":{},"startTime":1780368988405,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":23,"timestamp":1876019782110,"id":3298,"parentId":3117,"tags":{},"startTime":1780368988424,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":23891,"timestamp":1876019758564,"id":3117,"parentId":2398,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/bbox.js","layer":"app-pages-browser"},"startTime":1780368988401,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":20043,"timestamp":1876019762418,"id":3174,"parentId":3118,"tags":{},"startTime":1780368988405,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":29,"timestamp":1876019782464,"id":3299,"parentId":3118,"tags":{},"startTime":1780368988425,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":24944,"timestamp":1876019758603,"id":3118,"parentId":2054,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/node_modules/tslib/tslib.es6.js","layer":"app-pages-browser"},"startTime":1780368988401,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":21133,"timestamp":1876019762423,"id":3176,"parentId":3120,"tags":{},"startTime":1780368988405,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":33,"timestamp":1876019783560,"id":3300,"parentId":3120,"tags":{},"startTime":1780368988426,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":25579,"timestamp":1876019758674,"id":3120,"parentId":2510,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/circularLayoutHelper.js","layer":"app-pages-browser"},"startTime":1780368988401,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":21832,"timestamp":1876019762433,"id":3180,"parentId":3124,"tags":{},"startTime":1780368988405,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":36,"timestamp":1876019784275,"id":3301,"parentId":3124,"tags":{},"startTime":1780368988427,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":25746,"timestamp":1876019758822,"id":3124,"parentId":2514,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/createGraphFromNodeEdge.js","layer":"app-pages-browser"},"startTime":1780368988401,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":22144,"timestamp":1876019762430,"id":3179,"parentId":3123,"tags":{},"startTime":1780368988405,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":40,"timestamp":1876019784580,"id":3302,"parentId":3123,"tags":{},"startTime":1780368988427,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":26239,"timestamp":1876019758786,"id":3123,"parentId":2513,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/adjustEdge.js","layer":"app-pages-browser"},"startTime":1780368988401,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":22596,"timestamp":1876019762435,"id":3181,"parentId":3125,"tags":{},"startTime":1780368988405,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":30,"timestamp":1876019785034,"id":3303,"parentId":3125,"tags":{},"startTime":1780368988427,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":26528,"timestamp":1876019758857,"id":3125,"parentId":2514,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/multipleGraphEdgeHelper.js","layer":"app-pages-browser"},"startTime":1780368988401,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":22954,"timestamp":1876019762437,"id":3182,"parentId":3126,"tags":{},"startTime":1780368988405,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":27,"timestamp":1876019785395,"id":3304,"parentId":3126,"tags":{},"startTime":1780368988428,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":26850,"timestamp":1876019758893,"id":3126,"parentId":2511,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/forceHelper.js","layer":"app-pages-browser"},"startTime":1780368988401,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":23323,"timestamp":1876019762428,"id":3178,"parentId":3122,"tags":{},"startTime":1780368988405,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":37,"timestamp":1876019785756,"id":3305,"parentId":3122,"tags":{},"startTime":1780368988428,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":27170,"timestamp":1876019758750,"id":3122,"parentId":2513,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/graphHelper.js","layer":"app-pages-browser"},"startTime":1780368988401,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":23499,"timestamp":1876019762426,"id":3177,"parentId":3121,"tags":{},"startTime":1780368988405,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":30,"timestamp":1876019785930,"id":3306,"parentId":3121,"tags":{},"startTime":1780368988428,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":27431,"timestamp":1876019758715,"id":3121,"parentId":2509,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/simpleLayoutHelper.js","layer":"app-pages-browser"},"startTime":1780368988401,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":23709,"timestamp":1876019762445,"id":3185,"parentId":3129,"tags":{},"startTime":1780368988405,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":29,"timestamp":1876019786158,"id":3307,"parentId":3129,"tags":{},"startTime":1780368988428,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":27546,"timestamp":1876019758998,"id":3129,"parentId":2520,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/EffectSymbol.js","layer":"app-pages-browser"},"startTime":1780368988401,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":24099,"timestamp":1876019762450,"id":3187,"parentId":3131,"tags":{},"startTime":1780368988405,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":41,"timestamp":1876019786553,"id":3308,"parentId":3131,"tags":{},"startTime":1780368988429,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":27906,"timestamp":1876019759196,"id":3131,"parentId":2554,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sunburst/SunburstPiece.js","layer":"app-pages-browser"},"startTime":1780368988401,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":24665,"timestamp":1876019762442,"id":3184,"parentId":3128,"tags":{},"startTime":1780368988405,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":27,"timestamp":1876019787110,"id":3309,"parentId":3128,"tags":{},"startTime":1780368988429,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":28454,"timestamp":1876019758963,"id":3128,"parentId":2516,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/whiskerBoxCommon.js","layer":"app-pages-browser"},"startTime":1780368988401,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":24985,"timestamp":1876019762440,"id":3183,"parentId":3127,"tags":{},"startTime":1780368988405,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":47,"timestamp":1876019787430,"id":3310,"parentId":3127,"tags":{},"startTime":1780368988430,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":28820,"timestamp":1876019758929,"id":3127,"parentId":2503,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/shape/sausage.js","layer":"app-pages-browser"},"startTime":1780368988401,"traceId":"f5ac02f0451719cf"}] -[{"name":"read-resource","duration":25298,"timestamp":1876019762456,"id":3188,"parentId":3132,"tags":{},"startTime":1780368988405,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":37,"timestamp":1876019787758,"id":3311,"parentId":3132,"tags":{},"startTime":1780368988430,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":29062,"timestamp":1876019759236,"id":3132,"parentId":2564,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/EffectLine.js","layer":"app-pages-browser"},"startTime":1780368988401,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":25844,"timestamp":1876019762461,"id":3190,"parentId":3134,"tags":{},"startTime":1780368988405,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":27,"timestamp":1876019788320,"id":3312,"parentId":3134,"tags":{},"startTime":1780368988431,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":30075,"timestamp":1876019759310,"id":3134,"parentId":2564,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/Polyline.js","layer":"app-pages-browser"},"startTime":1780368988402,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":26946,"timestamp":1876019762448,"id":3186,"parentId":3130,"tags":{},"startTime":1780368988405,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":32,"timestamp":1876019789399,"id":3313,"parentId":3130,"tags":{},"startTime":1780368988432,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":30507,"timestamp":1876019759132,"id":3130,"parentId":2553,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/boxplot/prepareBoxplotData.js","layer":"app-pages-browser"},"startTime":1780368988401,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":27181,"timestamp":1876019762463,"id":3191,"parentId":3135,"tags":{},"startTime":1780368988405,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":28,"timestamp":1876019789649,"id":3314,"parentId":3135,"tags":{},"startTime":1780368988432,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":30607,"timestamp":1876019759345,"id":3135,"parentId":2564,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/EffectPolyline.js","layer":"app-pages-browser"},"startTime":1780368988402,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":27498,"timestamp":1876019762468,"id":3193,"parentId":3137,"tags":{},"startTime":1780368988405,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":32,"timestamp":1876019789972,"id":3315,"parentId":3137,"tags":{},"startTime":1780368988432,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":30893,"timestamp":1876019759414,"id":3137,"parentId":2562,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/heatmap/HeatmapLayer.js","layer":"app-pages-browser"},"startTime":1780368988402,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":27846,"timestamp":1876019762466,"id":3192,"parentId":3136,"tags":{},"startTime":1780368988405,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":31,"timestamp":1876019790315,"id":3316,"parentId":3136,"tags":{},"startTime":1780368988433,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":31485,"timestamp":1876019759379,"id":3136,"parentId":2564,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/LargeLineDraw.js","layer":"app-pages-browser"},"startTime":1780368988402,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":28411,"timestamp":1876019762459,"id":3189,"parentId":3133,"tags":{},"startTime":1780368988405,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":33,"timestamp":1876019790873,"id":3317,"parentId":3133,"tags":{},"startTime":1780368988433,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":32464,"timestamp":1876019759271,"id":3133,"parentId":2564,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/Line.js","layer":"app-pages-browser"},"startTime":1780368988402,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":29272,"timestamp":1876019762471,"id":3194,"parentId":3138,"tags":{},"startTime":1780368988405,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":38,"timestamp":1876019791747,"id":3318,"parentId":3138,"tags":{},"startTime":1780368988434,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":32446,"timestamp":1876019759450,"id":3138,"parentId":2572,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/cartesian/prepareCustom.js","layer":"app-pages-browser"},"startTime":1780368988402,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":29424,"timestamp":1876019762475,"id":3196,"parentId":3140,"tags":{},"startTime":1780368988405,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":29,"timestamp":1876019791905,"id":3319,"parentId":3140,"tags":{},"startTime":1780368988434,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":32406,"timestamp":1876019759590,"id":3140,"parentId":2572,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/calendar/prepareCustom.js","layer":"app-pages-browser"},"startTime":1780368988402,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":29526,"timestamp":1876019762473,"id":3195,"parentId":3139,"tags":{},"startTime":1780368988405,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":25,"timestamp":1876019792003,"id":3320,"parentId":3139,"tags":{},"startTime":1780368988434,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":32958,"timestamp":1876019759486,"id":3139,"parentId":2572,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/polar/prepareCustom.js","layer":"app-pages-browser"},"startTime":1780368988402,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":29973,"timestamp":1876019762479,"id":3198,"parentId":3142,"tags":{},"startTime":1780368988405,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":31,"timestamp":1876019792458,"id":3321,"parentId":3142,"tags":{},"startTime":1780368988435,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":32958,"timestamp":1876019759659,"id":3142,"parentId":2572,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/single/prepareCustom.js","layer":"app-pages-browser"},"startTime":1780368988402,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":37105,"timestamp":1876019762477,"id":3197,"parentId":3141,"tags":{},"startTime":1780368988405,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":29,"timestamp":1876019799592,"id":3322,"parentId":3141,"tags":{},"startTime":1780368988442,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":40219,"timestamp":1876019759626,"id":3141,"parentId":2572,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/prepareCustom.js","layer":"app-pages-browser"},"startTime":1780368988402,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":37483,"timestamp":1876019762482,"id":3199,"parentId":3143,"tags":{},"startTime":1780368988405,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":28,"timestamp":1876019799970,"id":3323,"parentId":3143,"tags":{},"startTime":1780368988442,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":40929,"timestamp":1876019759698,"id":3143,"parentId":2574,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/label/sectorLabel.js","layer":"app-pages-browser"},"startTime":1780368988402,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":48372,"timestamp":1876019762485,"id":3200,"parentId":3144,"tags":{},"startTime":1780368988405,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":36,"timestamp":1876019810872,"id":3324,"parentId":3144,"tags":{},"startTime":1780368988453,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":51730,"timestamp":1876019759739,"id":3144,"parentId":2601,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/GestureMgr.js","layer":"app-pages-browser"},"startTime":1780368988402,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":45239,"timestamp":1876019766242,"id":3234,"parentId":3205,"tags":{},"startTime":1780368988408,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":27,"timestamp":1876019811488,"id":3325,"parentId":3205,"tags":{},"startTime":1780368988454,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":46344,"timestamp":1876019765304,"id":3205,"parentId":2666,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/Gradient.js","layer":"app-pages-browser"},"startTime":1780368988408,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":45410,"timestamp":1876019766245,"id":3235,"parentId":3206,"tags":{},"startTime":1780368988408,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":29,"timestamp":1876019811658,"id":3326,"parentId":3206,"tags":{},"startTime":1780368988454,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":46701,"timestamp":1876019765340,"id":3206,"parentId":2662,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/referHelper.js","layer":"app-pages-browser"},"startTime":1780368988408,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":45823,"timestamp":1876019766225,"id":3231,"parentId":3202,"tags":{},"startTime":1780368988408,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":26,"timestamp":1876019812051,"id":3327,"parentId":3202,"tags":{},"startTime":1780368988454,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":47038,"timestamp":1876019765182,"id":3202,"parentId":2603,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/scale/Scale.js","layer":"app-pages-browser"},"startTime":1780368988407,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":45994,"timestamp":1876019766234,"id":3232,"parentId":3203,"tags":{},"startTime":1780368988408,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":27,"timestamp":1876019812231,"id":3328,"parentId":3203,"tags":{},"startTime":1780368988454,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":47426,"timestamp":1876019765225,"id":3203,"parentId":2603,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/scale/Log.js","layer":"app-pages-browser"},"startTime":1780368988407,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":46418,"timestamp":1876019766239,"id":3233,"parentId":3204,"tags":{},"startTime":1780368988408,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":30,"timestamp":1876019812660,"id":3329,"parentId":3204,"tags":{},"startTime":1780368988455,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":47794,"timestamp":1876019765262,"id":3204,"parentId":2603,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/scaleRawExtentInfo.js","layer":"app-pages-browser"},"startTime":1780368988408,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":46811,"timestamp":1876019766249,"id":3237,"parentId":3208,"tags":{},"startTime":1780368988408,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":27,"timestamp":1876019813063,"id":3330,"parentId":3208,"tags":{},"startTime":1780368988455,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":48403,"timestamp":1876019765413,"id":3208,"parentId":2685,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/curve.js","layer":"app-pages-browser"},"startTime":1780368988408,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":47618,"timestamp":1876019766206,"id":3230,"parentId":3201,"tags":{},"startTime":1780368988408,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":25,"timestamp":1876019813827,"id":3331,"parentId":3201,"tags":{},"startTime":1780368988456,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":48949,"timestamp":1876019765085,"id":3201,"parentId":2596,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/tool/transformPath.js","layer":"app-pages-browser"},"startTime":1780368988407,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":47792,"timestamp":1876019766247,"id":3236,"parentId":3207,"tags":{},"startTime":1780368988408,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":22,"timestamp":1876019814042,"id":3332,"parentId":3207,"tags":{},"startTime":1780368988456,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":48775,"timestamp":1876019765378,"id":3207,"parentId":2665,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/contain/polygon.js","layer":"app-pages-browser"},"startTime":1780368988408,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":47902,"timestamp":1876019766255,"id":3238,"parentId":3209,"tags":{},"startTime":1780368988408,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":23,"timestamp":1876019814161,"id":3333,"parentId":3209,"tags":{},"startTime":1780368988456,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":48889,"timestamp":1876019765447,"id":3209,"parentId":2601,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/mixin/Draggable.js","layer":"app-pages-browser"},"startTime":1780368988408,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":48078,"timestamp":1876019766262,"id":3241,"parentId":3212,"tags":{},"startTime":1780368988409,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":24,"timestamp":1876019814343,"id":3334,"parentId":3212,"tags":{},"startTime":1780368988457,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":49016,"timestamp":1876019765547,"id":3212,"parentId":2794,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/mapStyleToAttrs.js","layer":"app-pages-browser"},"startTime":1780368988408,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":48307,"timestamp":1876019766264,"id":3242,"parentId":3213,"tags":{},"startTime":1780368988409,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":22,"timestamp":1876019814574,"id":3335,"parentId":3213,"tags":{},"startTime":1780368988457,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":49165,"timestamp":1876019765579,"id":3213,"parentId":2794,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/cssEmphasis.js","layer":"app-pages-browser"},"startTime":1780368988408,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":48489,"timestamp":1876019766258,"id":3239,"parentId":3210,"tags":{},"startTime":1780368988409,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":23,"timestamp":1876019814750,"id":3336,"parentId":3210,"tags":{},"startTime":1780368988457,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":49541,"timestamp":1876019765480,"id":3210,"parentId":2794,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/SVGPathRebuilder.js","layer":"app-pages-browser"},"startTime":1780368988408,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":48765,"timestamp":1876019766260,"id":3240,"parentId":3211,"tags":{},"startTime":1780368988409,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":29,"timestamp":1876019815028,"id":3337,"parentId":3211,"tags":{},"startTime":1780368988457,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":50080,"timestamp":1876019765514,"id":3211,"parentId":2794,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/cssAnimation.js","layer":"app-pages-browser"},"startTime":1780368988408,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":49334,"timestamp":1876019766265,"id":3243,"parentId":3214,"tags":{},"startTime":1780368988409,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":23,"timestamp":1876019815602,"id":3338,"parentId":3214,"tags":{},"startTime":1780368988458,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":50096,"timestamp":1876019765649,"id":3214,"parentId":2796,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/domapi.js","layer":"app-pages-browser"},"startTime":1780368988408,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":49489,"timestamp":1876019766267,"id":3244,"parentId":3215,"tags":{},"startTime":1780368988409,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":27,"timestamp":1876019815759,"id":3339,"parentId":3215,"tags":{},"startTime":1780368988458,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":51785,"timestamp":1876019765682,"id":3215,"parentId":2802,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/helper/roundSector.js","layer":"app-pages-browser"},"startTime":1780368988408,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":51231,"timestamp":1876019766269,"id":3245,"parentId":3216,"tags":{},"startTime":1780368988409,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":39,"timestamp":1876019817509,"id":3340,"parentId":3216,"tags":{},"startTime":1780368988460,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":52046,"timestamp":1876019765716,"id":3216,"parentId":2805,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/helper/poly.js","layer":"app-pages-browser"},"startTime":1780368988408,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":51500,"timestamp":1876019766271,"id":3246,"parentId":3217,"tags":{},"startTime":1780368988409,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":32,"timestamp":1876019817775,"id":3341,"parentId":3217,"tags":{},"startTime":1780368988460,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":52227,"timestamp":1876019765748,"id":3217,"parentId":2806,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/helper/roundRect.js","layer":"app-pages-browser"},"startTime":1780368988408,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":51704,"timestamp":1876019766276,"id":3249,"parentId":3220,"tags":{},"startTime":1780368988409,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":22,"timestamp":1876019817984,"id":3342,"parentId":3220,"tags":{},"startTime":1780368988460,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":52261,"timestamp":1876019765855,"id":3220,"parentId":2815,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/WeakMap.js","layer":"app-pages-browser"},"startTime":1780368988408,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":51837,"timestamp":1876019766283,"id":3253,"parentId":3224,"tags":{},"startTime":1780368988409,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":22,"timestamp":1876019818123,"id":3343,"parentId":3224,"tags":{},"startTime":1780368988460,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":52391,"timestamp":1876019765997,"id":3224,"parentId":2835,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/contain/quadratic.js","layer":"app-pages-browser"},"startTime":1780368988408,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":52126,"timestamp":1876019766273,"id":3247,"parentId":3218,"tags":{},"startTime":1780368988409,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":34,"timestamp":1876019818406,"id":3344,"parentId":3218,"tags":{},"startTime":1780368988461,"traceId":"f5ac02f0451719cf"}] -[{"name":"build-module-js","duration":53414,"timestamp":1876019765783,"id":3218,"parentId":2817,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/tool/dividePath.js","layer":"app-pages-browser"},"startTime":1780368988408,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":52926,"timestamp":1876019766280,"id":3251,"parentId":3222,"tags":{},"startTime":1780368988409,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":26,"timestamp":1876019819210,"id":3345,"parentId":3222,"tags":{},"startTime":1780368988461,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":53399,"timestamp":1876019765930,"id":3222,"parentId":2835,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/contain/line.js","layer":"app-pages-browser"},"startTime":1780368988408,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":53053,"timestamp":1876019766281,"id":3252,"parentId":3223,"tags":{},"startTime":1780368988409,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":23,"timestamp":1876019819337,"id":3346,"parentId":3223,"tags":{},"startTime":1780368988462,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":53483,"timestamp":1876019765964,"id":3223,"parentId":2835,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/contain/cubic.js","layer":"app-pages-browser"},"startTime":1780368988408,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":53165,"timestamp":1876019766285,"id":3254,"parentId":3225,"tags":{},"startTime":1780368988409,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":22,"timestamp":1876019819453,"id":3347,"parentId":3225,"tags":{},"startTime":1780368988462,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":53521,"timestamp":1876019766030,"id":3225,"parentId":2835,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/contain/windingLine.js","layer":"app-pages-browser"},"startTime":1780368988408,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":53270,"timestamp":1876019766286,"id":3255,"parentId":3226,"tags":{},"startTime":1780368988409,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":21,"timestamp":1876019819560,"id":3348,"parentId":3226,"tags":{},"startTime":1780368988462,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":53616,"timestamp":1876019766063,"id":3226,"parentId":2835,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/contain/arc.js","layer":"app-pages-browser"},"startTime":1780368988408,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":53417,"timestamp":1876019766275,"id":3248,"parentId":3219,"tags":{},"startTime":1780368988409,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":29,"timestamp":1876019819694,"id":3349,"parentId":3219,"tags":{},"startTime":1780368988462,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":54370,"timestamp":1876019765823,"id":3219,"parentId":2817,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/tool/convertPath.js","layer":"app-pages-browser"},"startTime":1780368988408,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":53919,"timestamp":1876019766278,"id":3250,"parentId":3221,"tags":{},"startTime":1780368988409,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":39,"timestamp":1876019820201,"id":3350,"parentId":3221,"tags":{},"startTime":1780368988462,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":55727,"timestamp":1876019765896,"id":3221,"parentId":2821,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/animation/Animator.js","layer":"app-pages-browser"},"startTime":1780368988408,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":55341,"timestamp":1876019766290,"id":3257,"parentId":3228,"tags":{},"startTime":1780368988409,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":29,"timestamp":1876019821635,"id":3351,"parentId":3228,"tags":{},"startTime":1780368988464,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":55635,"timestamp":1876019766130,"id":3228,"parentId":2858,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/polar/RadiusAxis.js","layer":"app-pages-browser"},"startTime":1780368988408,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":55601,"timestamp":1876019766288,"id":3256,"parentId":3227,"tags":{},"startTime":1780368988409,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":26,"timestamp":1876019821893,"id":3352,"parentId":3227,"tags":{},"startTime":1780368988464,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":55929,"timestamp":1876019766095,"id":3227,"parentId":2850,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/helper/interactionMutex.js","layer":"app-pages-browser"},"startTime":1780368988408,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":55844,"timestamp":1876019766291,"id":3258,"parentId":3229,"tags":{},"startTime":1780368988409,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":27,"timestamp":1876019822138,"id":3353,"parentId":3229,"tags":{},"startTime":1780368988464,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":56177,"timestamp":1876019766163,"id":3229,"parentId":2858,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/polar/AngleAxis.js","layer":"app-pages-browser"},"startTime":1780368988408,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":66450,"timestamp":1876019767495,"id":3265,"parentId":3261,"tags":{},"startTime":1780368988410,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":43,"timestamp":1876019833963,"id":3354,"parentId":3261,"tags":{},"startTime":1780368988476,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":67736,"timestamp":1876019767409,"id":3261,"parentId":2862,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/single/SingleAxis.js","layer":"app-pages-browser"},"startTime":1780368988410,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":67665,"timestamp":1876019767493,"id":3264,"parentId":3260,"tags":{},"startTime":1780368988410,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":59,"timestamp":1876019835187,"id":3355,"parentId":3260,"tags":{},"startTime":1780368988477,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":68693,"timestamp":1876019767373,"id":3260,"parentId":2860,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/cartesian/Cartesian.js","layer":"app-pages-browser"},"startTime":1780368988410,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":68644,"timestamp":1876019767498,"id":3266,"parentId":3262,"tags":{},"startTime":1780368988410,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":41,"timestamp":1876019836150,"id":3356,"parentId":3262,"tags":{},"startTime":1780368988478,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":69701,"timestamp":1876019767446,"id":3262,"parentId":2950,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/AxisProxy.js","layer":"app-pages-browser"},"startTime":1780368988410,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":69980,"timestamp":1876019767486,"id":3263,"parentId":3259,"tags":{},"startTime":1780368988410,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":35,"timestamp":1876019837474,"id":3357,"parentId":3259,"tags":{},"startTime":1780368988480,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":70534,"timestamp":1876019767326,"id":3259,"parentId":2937,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/fourPointsTransform.js","layer":"app-pages-browser"},"startTime":1780368988410,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":70735,"timestamp":1876019767862,"id":3268,"parentId":3267,"tags":{},"startTime":1780368988410,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":27,"timestamp":1876019838602,"id":3358,"parentId":3267,"tags":{},"startTime":1780368988481,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":71100,"timestamp":1876019767791,"id":3267,"parentId":2970,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/parallel/ParallelAxis.js","layer":"app-pages-browser"},"startTime":1780368988410,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":11214,"timestamp":1876019844917,"id":3364,"parentId":3361,"tags":{},"startTime":1780368988487,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":31,"timestamp":1876019856142,"id":3385,"parentId":3361,"tags":{},"startTime":1780368988498,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":15456,"timestamp":1876019841077,"id":3361,"parentId":3093,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/tool/parseXML.js","layer":"app-pages-browser"},"startTime":1780368988483,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":3793,"timestamp":1876019853277,"id":3366,"parentId":3365,"tags":{},"startTime":1780368988496,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":35,"timestamp":1876019857077,"id":3386,"parentId":3365,"tags":{},"startTime":1780368988499,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":5107,"timestamp":1876019853172,"id":3365,"parentId":3124,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/Graph.js","layer":"app-pages-browser"},"startTime":1780368988495,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":13403,"timestamp":1876019844888,"id":3362,"parentId":3359,"tags":{},"startTime":1780368988487,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":30,"timestamp":1876019858295,"id":3387,"parentId":3359,"tags":{},"startTime":1780368988501,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":17670,"timestamp":1876019840921,"id":3359,"parentId":3101,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/helper/linkSeriesData.js","layer":"app-pages-browser"},"startTime":1780368988483,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":4098,"timestamp":1876019854498,"id":3373,"parentId":3368,"tags":{},"startTime":1780368988497,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":31,"timestamp":1876019858600,"id":3388,"parentId":3368,"tags":{},"startTime":1780368988501,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":5190,"timestamp":1876019854328,"id":3368,"parentId":3094,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/fix/nanhai.js","layer":"app-pages-browser"},"startTime":1780368988497,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":5034,"timestamp":1876019854489,"id":3372,"parentId":3367,"tags":{},"startTime":1780368988497,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":28,"timestamp":1876019859527,"id":3389,"parentId":3367,"tags":{},"startTime":1780368988502,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":5384,"timestamp":1876019854271,"id":3367,"parentId":3094,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/fix/textCoord.js","layer":"app-pages-browser"},"startTime":1780368988497,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":14749,"timestamp":1876019844910,"id":3363,"parentId":3360,"tags":{},"startTime":1780368988487,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":39,"timestamp":1876019859662,"id":3390,"parentId":3360,"tags":{},"startTime":1780368988502,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":20175,"timestamp":1876019841033,"id":3360,"parentId":3093,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/tool/parseSVG.js","layer":"app-pages-browser"},"startTime":1780368988483,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":9015,"timestamp":1876019854500,"id":3374,"parentId":3369,"tags":{},"startTime":1780368988497,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":28,"timestamp":1876019863521,"id":3391,"parentId":3369,"tags":{},"startTime":1780368988506,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":9310,"timestamp":1876019854368,"id":3369,"parentId":3094,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/fix/diaoyuIsland.js","layer":"app-pages-browser"},"startTime":1780368988497,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":9184,"timestamp":1876019854503,"id":3375,"parentId":3370,"tags":{},"startTime":1780368988497,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":22,"timestamp":1876019863689,"id":3392,"parentId":3370,"tags":{},"startTime":1780368988506,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":9348,"timestamp":1876019854408,"id":3370,"parentId":3213,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/cssClassId.js","layer":"app-pages-browser"},"startTime":1780368988497,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":8590,"timestamp":1876019855186,"id":3382,"parentId":3378,"tags":{},"startTime":1780368988497,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":24,"timestamp":1876019863778,"id":3393,"parentId":3378,"tags":{},"startTime":1780368988506,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":8934,"timestamp":1876019855062,"id":3378,"parentId":3221,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/animation/Clip.js","layer":"app-pages-browser"},"startTime":1780368988497,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":8822,"timestamp":1876019855179,"id":3381,"parentId":3377,"tags":{},"startTime":1780368988497,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":23,"timestamp":1876019864004,"id":3394,"parentId":3377,"tags":{},"startTime":1780368988506,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":9166,"timestamp":1876019855002,"id":3377,"parentId":3211,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/animation/cubicEasing.js","layer":"app-pages-browser"},"startTime":1780368988497,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":9668,"timestamp":1876019854505,"id":3376,"parentId":3371,"tags":{},"startTime":1780368988497,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":27,"timestamp":1876019864176,"id":3395,"parentId":3371,"tags":{},"startTime":1780368988506,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":9949,"timestamp":1876019854445,"id":3371,"parentId":3133,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/LinePath.js","layer":"app-pages-browser"},"startTime":1780368988497,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":9273,"timestamp":1876019855191,"id":3384,"parentId":3380,"tags":{},"startTime":1780368988497,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":25,"timestamp":1876019864468,"id":3396,"parentId":3380,"tags":{},"startTime":1780368988507,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":9538,"timestamp":1876019855138,"id":3380,"parentId":3216,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/helper/smoothBezier.js","layer":"app-pages-browser"},"startTime":1780368988497,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":9491,"timestamp":1876019855189,"id":3383,"parentId":3379,"tags":{},"startTime":1780368988497,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":25,"timestamp":1876019864682,"id":3397,"parentId":3379,"tags":{},"startTime":1780368988507,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":9910,"timestamp":1876019855102,"id":3379,"parentId":3221,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/animation/easing.js","layer":"app-pages-browser"},"startTime":1780368988497,"traceId":"f5ac02f0451719cf"},{"name":"read-resource","duration":734,"timestamp":1876019871073,"id":3399,"parentId":3398,"tags":{},"startTime":1780368988513,"traceId":"f5ac02f0451719cf"},{"name":"next-swc-loader","duration":55,"timestamp":1876019871825,"id":3400,"parentId":3398,"tags":{},"startTime":1780368988514,"traceId":"f5ac02f0451719cf"},{"name":"build-module-js","duration":4018,"timestamp":1876019870984,"id":3398,"parentId":2795,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/buffer/index.js","layer":"app-pages-browser"},"startTime":1780368988513,"traceId":"f5ac02f0451719cf"},{"name":"add-entry","duration":2010549,"timestamp":1876017864645,"id":914,"parentId":897,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1780368986507,"traceId":"f5ac02f0451719cf"},{"name":"make","duration":2011563,"timestamp":1876017863933,"id":897,"parentId":896,"tags":{},"startTime":1780368986506,"traceId":"f5ac02f0451719cf"},{"name":"chunk-graph","duration":9003,"timestamp":1876019922565,"id":3402,"parentId":3401,"tags":{},"startTime":1780368988565,"traceId":"f5ac02f0451719cf"},{"name":"optimize-modules","duration":11,"timestamp":1876019931641,"id":3404,"parentId":3401,"tags":{},"startTime":1780368988574,"traceId":"f5ac02f0451719cf"},{"name":"optimize-chunks","duration":6317,"timestamp":1876019933363,"id":3406,"parentId":3401,"tags":{},"startTime":1780368988576,"traceId":"f5ac02f0451719cf"},{"name":"optimize-tree","duration":70,"timestamp":1876019939727,"id":3407,"parentId":3401,"tags":{},"startTime":1780368988582,"traceId":"f5ac02f0451719cf"},{"name":"optimize-chunk-modules","duration":29553,"timestamp":1876019939850,"id":3408,"parentId":3401,"tags":{},"startTime":1780368988582,"traceId":"f5ac02f0451719cf"},{"name":"optimize","duration":37827,"timestamp":1876019931610,"id":3403,"parentId":3401,"tags":{},"startTime":1780368988574,"traceId":"f5ac02f0451719cf"},{"name":"module-hash","duration":17623,"timestamp":1876019979671,"id":3409,"parentId":3401,"tags":{},"startTime":1780368988622,"traceId":"f5ac02f0451719cf"},{"name":"code-generation","duration":416086,"timestamp":1876019997329,"id":3410,"parentId":3401,"tags":{},"startTime":1780368988640,"traceId":"f5ac02f0451719cf"},{"name":"hash","duration":5189,"timestamp":1876020416212,"id":3411,"parentId":3401,"tags":{},"startTime":1780368989058,"traceId":"f5ac02f0451719cf"},{"name":"code-generation-jobs","duration":285,"timestamp":1876020421399,"id":3412,"parentId":3401,"tags":{},"startTime":1780368989064,"traceId":"f5ac02f0451719cf"},{"name":"module-assets","duration":240,"timestamp":1876020421650,"id":3413,"parentId":3401,"tags":{},"startTime":1780368989064,"traceId":"f5ac02f0451719cf"},{"name":"create-chunk-assets","duration":7854,"timestamp":1876020421894,"id":3414,"parentId":3401,"tags":{},"startTime":1780368989064,"traceId":"f5ac02f0451719cf"},{"name":"NextJsBuildManifest-generateClientManifest","duration":720,"timestamp":1876020433517,"id":3416,"parentId":896,"tags":{},"startTime":1780368989076,"traceId":"f5ac02f0451719cf"},{"name":"NextJsBuildManifest-createassets","duration":1274,"timestamp":1876020432969,"id":3415,"parentId":896,"tags":{},"startTime":1780368989075,"traceId":"f5ac02f0451719cf"}] -[{"name":"minify-js","duration":88477,"timestamp":1876020456660,"id":3419,"parentId":3417,"tags":{"name":"static/chunks/main-app-7d7e5d1021afd90c.js","cache":"MISS"},"startTime":1780368989099,"traceId":"f5ac02f0451719cf"},{"name":"minify-js","duration":88342,"timestamp":1876020456822,"id":3421,"parentId":3417,"tags":{"name":"static/chunks/pages/_error-7ba65e1336b92748.js","cache":"MISS"},"startTime":1780368989099,"traceId":"f5ac02f0451719cf"},{"name":"minify-js","duration":88295,"timestamp":1876020456877,"id":3422,"parentId":3417,"tags":{"name":"static/chunks/pages/_app-72b849fbd24ac258.js","cache":"MISS"},"startTime":1780368989099,"traceId":"f5ac02f0451719cf"},{"name":"minify-js","duration":88426,"timestamp":1876020456752,"id":3420,"parentId":3417,"tags":{"name":"static/chunks/app/_not-found/page-b80a7c484a1a45e7.js","cache":"MISS"},"startTime":1780368989099,"traceId":"f5ac02f0451719cf"},{"name":"minify-js","duration":88193,"timestamp":1876020456993,"id":3423,"parentId":3417,"tags":{"name":"static/chunks/app/layout-3a83ac2605aef91b.js","cache":"MISS"},"startTime":1780368989099,"traceId":"f5ac02f0451719cf"},{"name":"minify-js","duration":87719,"timestamp":1876020457501,"id":3425,"parentId":3417,"tags":{"name":"static/chunks/app/(auth)/layout-895972713478d7d5.js","cache":"MISS"},"startTime":1780368989100,"traceId":"f5ac02f0451719cf"},{"name":"minify-js","duration":88102,"timestamp":1876020457151,"id":3424,"parentId":3417,"tags":{"name":"static/chunks/app/(auth)/sectors/page-b1b520bb87096d8c.js","cache":"MISS"},"startTime":1780368989099,"traceId":"f5ac02f0451719cf"},{"name":"minify-js","duration":87297,"timestamp":1876020457988,"id":3426,"parentId":3417,"tags":{"name":"static/chunks/app/(auth)/sentiment/page-914adbd9eac71003.js","cache":"MISS"},"startTime":1780368989100,"traceId":"f5ac02f0451719cf"},{"name":"minify-js","duration":87054,"timestamp":1876020458393,"id":3427,"parentId":3417,"tags":{"name":"static/chunks/app/(auth)/sectors/[name]/page-b47ed772b7ed0b86.js","cache":"MISS"},"startTime":1780368989101,"traceId":"f5ac02f0451719cf"},{"name":"minify-js","duration":86828,"timestamp":1876020458651,"id":3428,"parentId":3417,"tags":{"name":"static/chunks/app/(auth)/chat/page-2460c0ba93c793ad.js","cache":"MISS"},"startTime":1780368989101,"traceId":"f5ac02f0451719cf"},{"name":"minify-js","duration":86062,"timestamp":1876020459451,"id":3430,"parentId":3417,"tags":{"name":"static/chunks/app/(auth)/watchlists/page-d8baeb97cf398976.js","cache":"MISS"},"startTime":1780368989102,"traceId":"f5ac02f0451719cf"},{"name":"minify-js","duration":86572,"timestamp":1876020458993,"id":3429,"parentId":3417,"tags":{"name":"static/chunks/app/(auth)/dashboard/page-7ff91dee1ef2fdbc.js","cache":"MISS"},"startTime":1780368989101,"traceId":"f5ac02f0451719cf"},{"name":"minify-js","duration":85901,"timestamp":1876020459708,"id":3431,"parentId":3417,"tags":{"name":"static/chunks/app/(auth)/recommendations/page-7a67286c61a1d8d0.js","cache":"MISS"},"startTime":1780368989102,"traceId":"f5ac02f0451719cf"},{"name":"minify-js","duration":84955,"timestamp":1876020460660,"id":3434,"parentId":3417,"tags":{"name":"static/chunks/app/(public)/layout-d8307c143f9d6e89.js","cache":"MISS"},"startTime":1780368989103,"traceId":"f5ac02f0451719cf"},{"name":"minify-js","duration":84938,"timestamp":1876020460684,"id":3435,"parentId":3417,"tags":{"name":"static/chunks/app/(public)/page-6a015fcfb504f889.js","cache":"MISS"},"startTime":1780368989103,"traceId":"f5ac02f0451719cf"},{"name":"minify-js","duration":84890,"timestamp":1876020460737,"id":3436,"parentId":3417,"tags":{"name":"static/chunks/webpack-76aa9cbbdedb6a49.js","cache":"MISS"},"startTime":1780368989103,"traceId":"f5ac02f0451719cf"},{"name":"minify-js","duration":85120,"timestamp":1876020460524,"id":3433,"parentId":3417,"tags":{"name":"static/chunks/app/(public)/login/page-a72b3e6424d449e4.js","cache":"MISS"},"startTime":1780368989103,"traceId":"f5ac02f0451719cf"},{"name":"minify-js","duration":85583,"timestamp":1876020460103,"id":3432,"parentId":3417,"tags":{"name":"static/chunks/app/(auth)/stock/[code]/page-5a76132c106da8d3.js","cache":"MISS"},"startTime":1780368989102,"traceId":"f5ac02f0451719cf"},{"name":"minify-js","duration":116978,"timestamp":1876020452336,"id":3418,"parentId":3417,"tags":{"name":"static/chunks/main-728cc0b2064d905a.js","cache":"MISS"},"startTime":1780368989095,"traceId":"f5ac02f0451719cf"},{"name":"minify-js","duration":89200,"timestamp":1876020493617,"id":3440,"parentId":3417,"tags":{"name":"static/chunks/648-737196aebda2b095.js","cache":"MISS"},"startTime":1780368989136,"traceId":"f5ac02f0451719cf"},{"name":"minify-js","duration":153851,"timestamp":1876020493041,"id":3438,"parentId":3417,"tags":{"name":"static/chunks/framework-f66176bb897dc684.js","cache":"MISS"},"startTime":1780368989135,"traceId":"f5ac02f0451719cf"},{"name":"minify-js","duration":151661,"timestamp":1876020495308,"id":3442,"parentId":3417,"tags":{"name":"server/middleware-react-loadable-manifest.js","cache":"MISS"},"startTime":1780368989138,"traceId":"f5ac02f0451719cf"},{"name":"minify-js","duration":151537,"timestamp":1876020495441,"id":3443,"parentId":3417,"tags":{"name":"static/ENQu76Djfgx3eox8nyd0C/_ssgManifest.js","cache":"MISS"},"startTime":1780368989138,"traceId":"f5ac02f0451719cf"},{"name":"minify-js","duration":151482,"timestamp":1876020495512,"id":3444,"parentId":3417,"tags":{"name":"server/middleware-build-manifest.js","cache":"MISS"},"startTime":1780368989138,"traceId":"f5ac02f0451719cf"},{"name":"minify-js","duration":151466,"timestamp":1876020495533,"id":3445,"parentId":3417,"tags":{"name":"static/ENQu76Djfgx3eox8nyd0C/_buildManifest.js","cache":"MISS"},"startTime":1780368989138,"traceId":"f5ac02f0451719cf"},{"name":"minify-js","duration":151450,"timestamp":1876020495555,"id":3446,"parentId":3417,"tags":{"name":"server/next-font-manifest.js","cache":"MISS"},"startTime":1780368989138,"traceId":"f5ac02f0451719cf"},{"name":"minify-js","duration":163945,"timestamp":1876020493932,"id":3441,"parentId":3417,"tags":{"name":"static/chunks/117-a8e886455f28924b.js","cache":"MISS"},"startTime":1780368989136,"traceId":"f5ac02f0451719cf"},{"name":"minify-js","duration":171216,"timestamp":1876020493355,"id":3439,"parentId":3417,"tags":{"name":"static/chunks/fd9d1056-04f4ef6e08ec3462.js","cache":"MISS"},"startTime":1780368989136,"traceId":"f5ac02f0451719cf"},{"name":"minify-js","duration":892067,"timestamp":1876020460818,"id":3437,"parentId":3417,"tags":{"name":"static/chunks/614.a7cee7268dab0743.js","cache":"MISS"},"startTime":1780368989103,"traceId":"f5ac02f0451719cf"},{"name":"terser-webpack-plugin-optimize","duration":917958,"timestamp":1876020434941,"id":3417,"parentId":896,"tags":{"compilationName":"client","swcMinify":true},"startTime":1780368989077,"traceId":"f5ac02f0451719cf"},{"name":"minify-css","duration":368277,"timestamp":1876021353175,"id":3448,"parentId":3447,"tags":{"file":"static/css/e80051aabee2ba44.css","cache":"MISS"},"startTime":1780368989995,"traceId":"f5ac02f0451719cf"},{"name":"css-minimizer-plugin","duration":368449,"timestamp":1876021353023,"id":3447,"parentId":896,"tags":{},"startTime":1780368989995,"traceId":"f5ac02f0451719cf"},{"name":"seal","duration":1840535,"timestamp":1876019898997,"id":3401,"parentId":896,"tags":{},"startTime":1780368988541,"traceId":"f5ac02f0451719cf"},{"name":"webpack-compilation","duration":3878205,"timestamp":1876017861791,"id":896,"parentId":893,"tags":{"name":"client"},"startTime":1780368986504,"traceId":"f5ac02f0451719cf"},{"name":"emit","duration":21387,"timestamp":1876021740262,"id":3449,"parentId":893,"tags":{},"startTime":1780368990383,"traceId":"f5ac02f0451719cf"},{"name":"webpack-close","duration":641700,"timestamp":1876021762066,"id":3450,"parentId":893,"tags":{"name":"client"},"startTime":1780368990404,"traceId":"f5ac02f0451719cf"},{"name":"webpack-generate-error-stats","duration":2062,"timestamp":1876022403826,"id":3451,"parentId":3450,"tags":{},"startTime":1780368991046,"traceId":"f5ac02f0451719cf"},{"name":"run-webpack-compiler","duration":4967948,"timestamp":1876017438245,"id":893,"parentId":892,"tags":{},"startTime":1780368986080,"traceId":"f5ac02f0451719cf"},{"name":"format-webpack-messages","duration":38,"timestamp":1876022406196,"id":3452,"parentId":892,"tags":{},"startTime":1780368991048,"traceId":"f5ac02f0451719cf"},{"name":"worker-main-client","duration":4968247,"timestamp":1876017438078,"id":892,"parentId":1,"tags":{},"startTime":1780368986080,"traceId":"f5ac02f0451719cf"},{"name":"verify-and-lint","duration":81466,"timestamp":1876022463164,"id":3456,"parentId":1,"tags":{},"startTime":1780368991105,"traceId":"f5ac02f0451719cf"},{"name":"verify-typescript-setup","duration":2038535,"timestamp":1876022461625,"id":3455,"parentId":1,"tags":{},"startTime":1780368991104,"traceId":"f5ac02f0451719cf"},{"name":"check-static-error-page","duration":2325,"timestamp":1876024515699,"id":3459,"parentId":3458,"tags":{},"startTime":1780368993158,"traceId":"f5ac02f0451719cf"},{"name":"check-page","duration":1691,"timestamp":1876024532071,"id":3460,"parentId":3458,"tags":{"page":"/_app"},"startTime":1780368993175,"traceId":"f5ac02f0451719cf"},{"name":"check-page","duration":839,"timestamp":1876024532934,"id":3462,"parentId":3458,"tags":{"page":"/_document"},"startTime":1780368993175,"traceId":"f5ac02f0451719cf"},{"name":"check-page","duration":1384,"timestamp":1876024532858,"id":3461,"parentId":3458,"tags":{"page":"/_error"},"startTime":1780368993175,"traceId":"f5ac02f0451719cf"},{"name":"is-page-static","duration":439503,"timestamp":1876024536891,"id":3477,"parentId":3465,"tags":{},"startTime":1780368993179,"traceId":"f5ac02f0451719cf"},{"name":"check-page","duration":443367,"timestamp":1876024533073,"id":3465,"parentId":3458,"tags":{"page":"/chat"},"startTime":1780368993176,"traceId":"f5ac02f0451719cf"},{"name":"is-page-static","duration":440959,"timestamp":1876024537551,"id":3484,"parentId":3472,"tags":{},"startTime":1780368993180,"traceId":"f5ac02f0451719cf"},{"name":"check-page","duration":445238,"timestamp":1876024533289,"id":3472,"parentId":3458,"tags":{"page":"/watchlists"},"startTime":1780368993176,"traceId":"f5ac02f0451719cf"},{"name":"is-page-static","duration":445186,"timestamp":1876024537582,"id":3485,"parentId":3473,"tags":{},"startTime":1780368993180,"traceId":"f5ac02f0451719cf"},{"name":"check-page","duration":449477,"timestamp":1876024533308,"id":3473,"parentId":3458,"tags":{"page":"/login"},"startTime":1780368993176,"traceId":"f5ac02f0451719cf"},{"name":"is-page-static","duration":447032,"timestamp":1876024537598,"id":3486,"parentId":3474,"tags":{},"startTime":1780368993180,"traceId":"f5ac02f0451719cf"},{"name":"check-page","duration":451317,"timestamp":1876024533324,"id":3474,"parentId":3458,"tags":{"page":"/"},"startTime":1780368993176,"traceId":"f5ac02f0451719cf"},{"name":"is-page-static","duration":458745,"timestamp":1876024537009,"id":3478,"parentId":3466,"tags":{},"startTime":1780368993180,"traceId":"f5ac02f0451719cf"},{"name":"check-page","duration":462687,"timestamp":1876024533091,"id":3466,"parentId":3458,"tags":{"page":"/dashboard"},"startTime":1780368993176,"traceId":"f5ac02f0451719cf"},{"name":"is-page-static","duration":476928,"timestamp":1876024537266,"id":3481,"parentId":3469,"tags":{},"startTime":1780368993180,"traceId":"f5ac02f0451719cf"},{"name":"check-page","duration":481141,"timestamp":1876024533225,"id":3469,"parentId":3458,"tags":{"page":"/sectors"},"startTime":1780368993176,"traceId":"f5ac02f0451719cf"},{"name":"is-page-static","duration":477373,"timestamp":1876024537105,"id":3479,"parentId":3467,"tags":{},"startTime":1780368993180,"traceId":"f5ac02f0451719cf"},{"name":"check-page","duration":481375,"timestamp":1876024533114,"id":3467,"parentId":3458,"tags":{"page":"/recommendations"},"startTime":1780368993176,"traceId":"f5ac02f0451719cf"},{"name":"is-page-static","duration":477873,"timestamp":1876024536649,"id":3476,"parentId":3463,"tags":{},"startTime":1780368993179,"traceId":"f5ac02f0451719cf"},{"name":"check-page","duration":481574,"timestamp":1876024532956,"id":3463,"parentId":3458,"tags":{"page":"/_not-found"},"startTime":1780368993175,"traceId":"f5ac02f0451719cf"},{"name":"is-page-static","duration":478262,"timestamp":1876024537317,"id":3482,"parentId":3470,"tags":{},"startTime":1780368993180,"traceId":"f5ac02f0451719cf"},{"name":"check-page","duration":482340,"timestamp":1876024533251,"id":3470,"parentId":3458,"tags":{"page":"/sentiment"},"startTime":1780368993176,"traceId":"f5ac02f0451719cf"},{"name":"is-page-static","duration":484033,"timestamp":1876024536294,"id":3475,"parentId":3464,"tags":{},"startTime":1780368993179,"traceId":"f5ac02f0451719cf"},{"name":"check-page","duration":487299,"timestamp":1876024533047,"id":3464,"parentId":3458,"tags":{"page":"/api/chat/stream"},"startTime":1780368993176,"traceId":"f5ac02f0451719cf"},{"name":"is-page-static","duration":498152,"timestamp":1876024537159,"id":3480,"parentId":3468,"tags":{},"startTime":1780368993180,"traceId":"f5ac02f0451719cf"},{"name":"check-page","duration":502231,"timestamp":1876024533136,"id":3468,"parentId":3458,"tags":{"page":"/sectors/[name]"},"startTime":1780368993176,"traceId":"f5ac02f0451719cf"},{"name":"is-page-static","duration":499342,"timestamp":1876024537492,"id":3483,"parentId":3471,"tags":{},"startTime":1780368993180,"traceId":"f5ac02f0451719cf"},{"name":"check-page","duration":503580,"timestamp":1876024533271,"id":3471,"parentId":3458,"tags":{"page":"/stock/[code]"},"startTime":1780368993176,"traceId":"f5ac02f0451719cf"},{"name":"static-check","duration":521499,"timestamp":1876024515375,"id":3458,"parentId":1,"tags":{},"startTime":1780368993158,"traceId":"f5ac02f0451719cf"},{"name":"load-dotenv","duration":11,"timestamp":1876025245186,"id":3491,"parentId":3490,"tags":{},"startTime":1780368993888,"traceId":"f5ac02f0451719cf"},{"name":"run-export-path-map","duration":193,"timestamp":1876025423695,"id":3492,"parentId":3490,"tags":{},"startTime":1780368994067,"traceId":"f5ac02f0451719cf"},{"name":"export-page","duration":122155,"timestamp":1876025424386,"id":3499,"parentId":3490,"tags":{"path":"/dashboard"},"startTime":1780368994068,"traceId":"f5ac02f0451719cf"},{"name":"export-page","duration":122347,"timestamp":1876025424404,"id":3500,"parentId":3490,"tags":{"path":"/sectors"},"startTime":1780368994068,"traceId":"f5ac02f0451719cf"},{"name":"export-page","duration":122522,"timestamp":1876025424330,"id":3496,"parentId":3490,"tags":{"path":"/watchlists"},"startTime":1780368994068,"traceId":"f5ac02f0451719cf"},{"name":"export-page","duration":122769,"timestamp":1876025424460,"id":3503,"parentId":3490,"tags":{"path":"/sentiment"},"startTime":1780368994068,"traceId":"f5ac02f0451719cf"},{"name":"export-page","duration":129868,"timestamp":1876025424308,"id":3495,"parentId":3490,"tags":{"path":"/chat"},"startTime":1780368994067,"traceId":"f5ac02f0451719cf"},{"name":"export-page","duration":129768,"timestamp":1876025424442,"id":3502,"parentId":3490,"tags":{"path":"/_not-found"},"startTime":1780368994068,"traceId":"f5ac02f0451719cf"},{"name":"export-page","duration":129921,"timestamp":1876025424350,"id":3497,"parentId":3490,"tags":{"path":"/login"},"startTime":1780368994068,"traceId":"f5ac02f0451719cf"},{"name":"export-page","duration":129863,"timestamp":1876025424424,"id":3501,"parentId":3490,"tags":{"path":"/recommendations"},"startTime":1780368994068,"traceId":"f5ac02f0451719cf"},{"name":"export-page","duration":129932,"timestamp":1876025424369,"id":3498,"parentId":3490,"tags":{"path":"/"},"startTime":1780368994068,"traceId":"f5ac02f0451719cf"},{"name":"export-page","duration":156599,"timestamp":1876025424476,"id":3504,"parentId":3490,"tags":{"path":"/api/chat/stream"},"startTime":1780368994068,"traceId":"f5ac02f0451719cf"},{"name":"export-page","duration":182096,"timestamp":1876025424165,"id":3493,"parentId":3490,"tags":{"path":"/404"},"startTime":1780368994067,"traceId":"f5ac02f0451719cf"},{"name":"export-page","duration":190953,"timestamp":1876025424276,"id":3494,"parentId":3490,"tags":{"path":"/500"},"startTime":1780368994067,"traceId":"f5ac02f0451719cf"},{"name":"next-export","duration":408948,"timestamp":1876025244777,"id":3490,"parentId":1,"tags":{},"startTime":1780368993888,"traceId":"f5ac02f0451719cf"},{"name":"move-exported-app-not-found-","duration":2779,"timestamp":1876025654432,"id":3505,"parentId":3489,"tags":{},"startTime":1780368994298,"traceId":"f5ac02f0451719cf"},{"name":"move-exported-page","duration":7035,"timestamp":1876025657311,"id":3506,"parentId":3489,"tags":{},"startTime":1780368994301,"traceId":"f5ac02f0451719cf"},{"name":"static-generation","duration":531902,"timestamp":1876025239983,"id":3489,"parentId":1,"tags":{},"startTime":1780368993883,"traceId":"f5ac02f0451719cf"},{"name":"node-file-trace-build","duration":6101401,"timestamp":1876025043311,"id":3488,"parentId":1,"tags":{"isTurbotrace":"false"},"startTime":1780368993686,"traceId":"f5ac02f0451719cf"},{"name":"apply-include-excludes","duration":441,"timestamp":1876031144724,"id":3507,"parentId":1,"tags":{},"startTime":1780368999791,"traceId":"f5ac02f0451719cf"},{"name":"write-standalone-directory","duration":253879,"timestamp":1876031145211,"id":3508,"parentId":1,"tags":{},"startTime":1780368999792,"traceId":"f5ac02f0451719cf"},{"name":"print-tree-view","duration":6300,"timestamp":1876031399230,"id":3509,"parentId":1,"tags":{},"startTime":1780369000046,"traceId":"f5ac02f0451719cf"},{"name":"telemetry-flush","duration":63,"timestamp":1876031405542,"id":3510,"parentId":1,"tags":{},"startTime":1780369000052,"traceId":"f5ac02f0451719cf"},{"name":"next-build","duration":19317711,"timestamp":1876012087905,"id":1,"tags":{"buildMode":"default","isTurboBuild":"false","version":"14.2.35","isTurbopack":false,"has-custom-webpack-config":"false","use-build-worker":"true"},"startTime":1780368980730,"traceId":"f5ac02f0451719cf"}] +[{"name":"build-module-js","duration":26,"timestamp":2394422686462,"id":141,"parentId":110,"tags":{"name":"next/dist/compiled/next-server/app-route.runtime.prod.js","layer":null},"startTime":1780887391234,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":37579,"timestamp":2394422686872,"id":144,"parentId":142,"tags":{},"startTime":1780887391234,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":37,"timestamp":2394422724466,"id":169,"parentId":142,"tags":{},"startTime":1780887391272,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":38614,"timestamp":2394422686507,"id":142,"parentId":40,"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":1780887391234,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":38257,"timestamp":2394422686893,"id":145,"parentId":143,"tags":{},"startTime":1780887391234,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":49,"timestamp":2394422725161,"id":170,"parentId":143,"tags":{},"startTime":1780887391272,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":40419,"timestamp":2394422686738,"id":143,"parentId":40,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/app-render/entry-base.js","layer":"rsc"},"startTime":1780887391234,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":4975,"timestamp":2394422722500,"id":158,"parentId":157,"tags":{},"startTime":1780887391270,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":5054,"timestamp":2394422722423,"id":157,"parentId":154,"tags":{},"startTime":1780887391269,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":5786,"timestamp":2394422722200,"id":154,"parentId":40,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/parallel-route-default.js","layer":"rsc"},"startTime":1780887391269,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":7433,"timestamp":2394422722530,"id":160,"parentId":159,"tags":{},"startTime":1780887391270,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":7461,"timestamp":2394422722503,"id":159,"parentId":155,"tags":{},"startTime":1780887391270,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":8103,"timestamp":2394422722314,"id":155,"parentId":40,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/not-found-error.js","layer":"rsc"},"startTime":1780887391269,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":7970,"timestamp":2394422722541,"id":162,"parentId":161,"tags":{},"startTime":1780887391270,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":7981,"timestamp":2394422722532,"id":161,"parentId":156,"tags":{},"startTime":1780887391270,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":8328,"timestamp":2394422722357,"id":156,"parentId":40,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/error-boundary.js","layer":"rsc"},"startTime":1780887391269,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":20622,"timestamp":2394422712186,"id":150,"parentId":146,"tags":{},"startTime":1780887391259,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":41,"timestamp":2394422732819,"id":171,"parentId":146,"tags":{},"startTime":1780887391280,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":22414,"timestamp":2394422711757,"id":146,"parentId":109,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/app-render/dynamic-rendering.js","layer":"rsc"},"startTime":1780887391259,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":21973,"timestamp":2394422712208,"id":151,"parentId":147,"tags":{},"startTime":1780887391259,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":37,"timestamp":2394422734187,"id":172,"parentId":147,"tags":{},"startTime":1780887391281,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":24100,"timestamp":2394422711935,"id":147,"parentId":109,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/constants.js","layer":"rsc"},"startTime":1780887391259,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":27165,"timestamp":2394422712215,"id":152,"parentId":148,"tags":{},"startTime":1780887391259,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":34,"timestamp":2394422739391,"id":173,"parentId":148,"tags":{},"startTime":1780887391286,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":27797,"timestamp":2394422712026,"id":148,"parentId":109,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/lib/clone-response.js","layer":"rsc"},"startTime":1780887391259,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":27608,"timestamp":2394422712222,"id":153,"parentId":149,"tags":{},"startTime":1780887391259,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":33,"timestamp":2394422739836,"id":174,"parentId":149,"tags":{},"startTime":1780887391287,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":28587,"timestamp":2394422712116,"id":149,"parentId":109,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/lib/dedupe-fetch.js","layer":"rsc"},"startTime":1780887391259,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":28,"timestamp":2394422741526,"id":175,"parentId":142,"tags":{"name":"next/dist/compiled/next-server/app-page.runtime.prod.js","layer":null},"startTime":1780887391289,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":24648,"timestamp":2394422724154,"id":166,"parentId":163,"tags":{},"startTime":1780887391271,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":85,"timestamp":2394422748819,"id":185,"parentId":163,"tags":{},"startTime":1780887391296,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":25889,"timestamp":2394422723878,"id":163,"parentId":109,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/output/log.js","layer":"rsc"},"startTime":1780887391271,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":25634,"timestamp":2394422724167,"id":167,"parentId":164,"tags":{},"startTime":1780887391271,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":36,"timestamp":2394422749808,"id":186,"parentId":164,"tags":{},"startTime":1780887391297,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":26672,"timestamp":2394422724029,"id":164,"parentId":109,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/lib/trace/constants.js","layer":"rsc"},"startTime":1780887391271,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":26536,"timestamp":2394422724172,"id":168,"parentId":165,"tags":{},"startTime":1780887391271,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":34,"timestamp":2394422750714,"id":187,"parentId":165,"tags":{},"startTime":1780887391298,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":28865,"timestamp":2394422724089,"id":165,"parentId":109,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/lib/trace/tracer.js","layer":"rsc"},"startTime":1780887391271,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":11170,"timestamp":2394422741866,"id":184,"parentId":183,"tags":{},"startTime":1780887391289,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":11216,"timestamp":2394422741822,"id":183,"parentId":180,"tags":{},"startTime":1780887391289,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":11641,"timestamp":2394422741623,"id":180,"parentId":97,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/index.js","layer":null},"startTime":1780887391289,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-external","duration":19,"timestamp":2394422754892,"id":191,"parentId":143,"tags":{"name":"../../client/components/static-generation-async-storage.external","layer":null},"startTime":1780887391302,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-external","duration":5,"timestamp":2394422754918,"id":192,"parentId":143,"tags":{"name":"../../client/components/request-async-storage.external","layer":null},"startTime":1780887391302,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-external","duration":59,"timestamp":2394422754926,"id":193,"parentId":143,"tags":{"name":"../../client/components/action-async-storage.external","layer":null},"startTime":1780887391302,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":8494,"timestamp":2394422755283,"id":204,"parentId":203,"tags":{},"startTime":1780887391302,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":8510,"timestamp":2394422755273,"id":203,"parentId":190,"tags":{},"startTime":1780887391302,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":9208,"timestamp":2394422754864,"id":190,"parentId":143,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/render-from-template-context.js","layer":"rsc"},"startTime":1780887391302,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":8791,"timestamp":2394422755292,"id":206,"parentId":205,"tags":{},"startTime":1780887391302,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":8800,"timestamp":2394422755284,"id":205,"parentId":194,"tags":{},"startTime":1780887391302,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":9154,"timestamp":2394422755037,"id":194,"parentId":143,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/client-page.js","layer":"rsc"},"startTime":1780887391302,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":8898,"timestamp":2394422755302,"id":208,"parentId":207,"tags":{},"startTime":1780887391302,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":8906,"timestamp":2394422755294,"id":207,"parentId":195,"tags":{},"startTime":1780887391302,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":9659,"timestamp":2394422755065,"id":195,"parentId":143,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/search-params.js","layer":"rsc"},"startTime":1780887391302,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":9422,"timestamp":2394422755311,"id":210,"parentId":209,"tags":{},"startTime":1780887391302,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":9431,"timestamp":2394422755303,"id":209,"parentId":196,"tags":{},"startTime":1780887391302,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":10004,"timestamp":2394422755088,"id":196,"parentId":143,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/hooks-server-context.js","layer":"rsc"},"startTime":1780887391302,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":9827,"timestamp":2394422755272,"id":202,"parentId":201,"tags":{},"startTime":1780887391302,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":9839,"timestamp":2394422755261,"id":201,"parentId":189,"tags":{},"startTime":1780887391302,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":10408,"timestamp":2394422754830,"id":189,"parentId":143,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/layout-router.js","layer":"rsc"},"startTime":1780887391302,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":21984,"timestamp":2394422755319,"id":212,"parentId":211,"tags":{},"startTime":1780887391302,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":21997,"timestamp":2394422755312,"id":211,"parentId":197,"tags":{},"startTime":1780887391302,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":22386,"timestamp":2394422755111,"id":197,"parentId":143,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/not-found-boundary.js","layer":"rsc"},"startTime":1780887391302,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":22249,"timestamp":2394422755259,"id":200,"parentId":199,"tags":{},"startTime":1780887391302,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":22281,"timestamp":2394422755228,"id":199,"parentId":188,"tags":{},"startTime":1780887391302,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":22903,"timestamp":2394422754695,"id":188,"parentId":143,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/app-router.js","layer":"rsc"},"startTime":1780887391302,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":36320,"timestamp":2394422741597,"id":177,"parentId":176,"tags":{},"startTime":1780887391289,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":36464,"timestamp":2394422741563,"id":176,"parentId":104,"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":1780887391289,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":36354,"timestamp":2394422741679,"id":182,"parentId":181,"tags":{},"startTime":1780887391289,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-cjs","duration":36867,"timestamp":2394422741670,"id":181,"parentId":56,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/cjs/_interop_require_default.cjs","layer":null},"startTime":1780887391289,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":36927,"timestamp":2394422741617,"id":179,"parentId":178,"tags":{},"startTime":1780887391289,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":36996,"timestamp":2394422741605,"id":178,"parentId":104,"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":1780887391289,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":23291,"timestamp":2394422755328,"id":214,"parentId":213,"tags":{},"startTime":1780887391302,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":23299,"timestamp":2394422755320,"id":213,"parentId":198,"tags":{},"startTime":1780887391302,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":23858,"timestamp":2394422755133,"id":198,"parentId":154,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/not-found.js","layer":"rsc"},"startTime":1780887391302,"traceId":"9b70e6dfdb6b3605"},{"name":"add-entry","duration":292358,"timestamp":2394422490960,"id":23,"parentId":21,"tags":{"request":"next/dist/pages/_app"},"startTime":1780887391038,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":21674,"timestamp":2394422763688,"id":219,"parentId":218,"tags":{},"startTime":1780887391311,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":21713,"timestamp":2394422763651,"id":218,"parentId":216,"tags":{},"startTime":1780887391311,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":22471,"timestamp":2394422763542,"id":216,"parentId":146,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/static-generation-bailout.js","layer":"rsc"},"startTime":1780887391311,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":10,"timestamp":2394422790901,"id":228,"parentId":227,"tags":{},"startTime":1780887391338,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":29952,"timestamp":2394422763602,"id":217,"parentId":215,"tags":{},"startTime":1780887391311,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":32,"timestamp":2394422793567,"id":230,"parentId":215,"tags":{},"startTime":1780887391341,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":30655,"timestamp":2394422763396,"id":215,"parentId":146,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/url.js","layer":"rsc"},"startTime":1780887391310,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":11213,"timestamp":2394422784017,"id":223,"parentId":220,"tags":{},"startTime":1780887391331,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":41,"timestamp":2394422795253,"id":239,"parentId":220,"tags":{},"startTime":1780887391342,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":12283,"timestamp":2394422783604,"id":220,"parentId":143,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/app-render/rsc/preloads.js","layer":"rsc"},"startTime":1780887391331,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":11864,"timestamp":2394422784032,"id":224,"parentId":221,"tags":{},"startTime":1780887391331,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":31,"timestamp":2394422795902,"id":240,"parentId":221,"tags":{},"startTime":1780887391343,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":12343,"timestamp":2394422783722,"id":221,"parentId":143,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/app-render/rsc/postpone.js","layer":"rsc"},"startTime":1780887391331,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":12936,"timestamp":2394422784038,"id":225,"parentId":222,"tags":{},"startTime":1780887391331,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":41,"timestamp":2394422797011,"id":243,"parentId":222,"tags":{},"startTime":1780887391344,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":13950,"timestamp":2394422783775,"id":222,"parentId":143,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/app-render/rsc/taint.js","layer":"rsc"},"startTime":1780887391331,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":3663,"timestamp":2394422794681,"id":238,"parentId":237,"tags":{},"startTime":1780887391342,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":3676,"timestamp":2394422794670,"id":237,"parentId":233,"tags":{},"startTime":1780887391342,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":3983,"timestamp":2394422794577,"id":233,"parentId":180,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/is-dynamic.js","layer":null},"startTime":1780887391342,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":4465,"timestamp":2394422794668,"id":236,"parentId":235,"tags":{},"startTime":1780887391342,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":4497,"timestamp":2394422794638,"id":235,"parentId":232,"tags":{},"startTime":1780887391342,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":5591,"timestamp":2394422794395,"id":232,"parentId":180,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/sorted-routes.js","layer":null},"startTime":1780887391341,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":9438,"timestamp":2394422791050,"id":229,"parentId":226,"tags":{},"startTime":1780887391338,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":29,"timestamp":2394422800496,"id":244,"parentId":226,"tags":{},"startTime":1780887391348,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":10897,"timestamp":2394422789943,"id":226,"parentId":155,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_interop_require_default.js","layer":"rsc"},"startTime":1780887391337,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":6921,"timestamp":2394422794620,"id":234,"parentId":231,"tags":{},"startTime":1780887391342,"traceId":"9b70e6dfdb6b3605"}] +[{"name":"generate-buildid","duration":148,"timestamp":2394419693397,"id":4,"parentId":1,"tags":{},"startTime":1780887388240,"traceId":"9b70e6dfdb6b3605"},{"name":"load-custom-routes","duration":1015,"timestamp":2394419693625,"id":5,"parentId":1,"tags":{},"startTime":1780887388241,"traceId":"9b70e6dfdb6b3605"},{"name":"create-pages-mapping","duration":411,"timestamp":2394419728075,"id":6,"parentId":1,"tags":{},"startTime":1780887388275,"traceId":"9b70e6dfdb6b3605"},{"name":"collect-app-paths","duration":3452,"timestamp":2394419728519,"id":7,"parentId":1,"tags":{},"startTime":1780887388276,"traceId":"9b70e6dfdb6b3605"},{"name":"create-app-mapping","duration":521,"timestamp":2394419732035,"id":8,"parentId":1,"tags":{},"startTime":1780887388279,"traceId":"9b70e6dfdb6b3605"},{"name":"public-dir-conflict-check","duration":540,"timestamp":2394419732845,"id":9,"parentId":1,"tags":{},"startTime":1780887388280,"traceId":"9b70e6dfdb6b3605"},{"name":"generate-routes-manifest","duration":3655,"timestamp":2394419733885,"id":10,"parentId":1,"tags":{},"startTime":1780887388281,"traceId":"9b70e6dfdb6b3605"},{"name":"create-dist-dir","duration":140,"timestamp":2394419738400,"id":11,"parentId":1,"tags":{},"startTime":1780887388285,"traceId":"9b70e6dfdb6b3605"},{"name":"write-routes-manifest","duration":435,"timestamp":2394420002076,"id":12,"parentId":1,"tags":{},"startTime":1780887388549,"traceId":"9b70e6dfdb6b3605"},{"name":"generate-required-server-files","duration":192,"timestamp":2394420002555,"id":13,"parentId":1,"tags":{},"startTime":1780887388550,"traceId":"9b70e6dfdb6b3605"},{"name":"create-entrypoints","duration":1443734,"timestamp":2394420681871,"id":17,"parentId":15,"tags":{},"startTime":1780887389229,"traceId":"9b70e6dfdb6b3605"},{"name":"generate-webpack-config","duration":270777,"timestamp":2394422125733,"id":18,"parentId":16,"tags":{},"startTime":1780887390673,"traceId":"9b70e6dfdb6b3605"},{"name":"next-trace-entrypoint-plugin","duration":1185,"timestamp":2394422488257,"id":20,"parentId":19,"tags":{},"startTime":1780887391035,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module","duration":18218,"timestamp":2394422545408,"id":55,"parentId":24,"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":1780887391092,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":20090,"timestamp":2394422548788,"id":59,"parentId":58,"tags":{},"startTime":1780887391096,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":20644,"timestamp":2394422548273,"id":58,"parentId":56,"tags":{},"startTime":1780887391095,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":25957,"timestamp":2394422547200,"id":56,"parentId":23,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/pages/_app.js","layer":null},"startTime":1780887391094,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":24217,"timestamp":2394422548974,"id":61,"parentId":60,"tags":{},"startTime":1780887391096,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":24375,"timestamp":2394422548821,"id":60,"parentId":57,"tags":{},"startTime":1780887391096,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":42488,"timestamp":2394422548182,"id":57,"parentId":25,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/pages/_document.js","layer":null},"startTime":1780887391095,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module","duration":47009,"timestamp":2394422544559,"id":47,"parentId":32,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-app-loader.js?page=%2F(auth)%2Fapi%2Fchat%2Fstream%2Froute&name=app%2F(auth)%2Fapi%2Fchat%2Fstream%2Froute&pagePath=private-next-app-dir%2F(auth)%2Fapi%2Fchat%2Fstream%2Froute.ts&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&appPaths=%2F(auth)%2Fapi%2Fchat%2Fstream%2Froute&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&basePath=&assetPrefix=&nextConfigOutput=standalone&nextConfigExperimentalUseEarlyImport=false&preferredRegion=&middlewareConfig=e30%3D!","layer":"rsc"},"startTime":1780887391092,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module","duration":117,"timestamp":2394422605199,"id":62,"parentId":56,"tags":{"name":"react/jsx-runtime","layer":null},"startTime":1780887391152,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module","duration":8,"timestamp":2394422605340,"id":63,"parentId":56,"tags":{"name":"react","layer":null},"startTime":1780887391152,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":3886,"timestamp":2394422612476,"id":65,"parentId":64,"tags":{},"startTime":1780887391160,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":5083,"timestamp":2394422612254,"id":64,"parentId":57,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/is-error.js","layer":null},"startTime":1780887391159,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":4821,"timestamp":2394422612532,"id":67,"parentId":66,"tags":{},"startTime":1780887391160,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":5529,"timestamp":2394422612501,"id":66,"parentId":57,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/pretty-bytes.js","layer":null},"startTime":1780887391160,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":5484,"timestamp":2394422612553,"id":69,"parentId":68,"tags":{},"startTime":1780887391160,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":6270,"timestamp":2394422612541,"id":68,"parentId":57,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/get-page-files.js","layer":null},"startTime":1780887391160,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":6274,"timestamp":2394422612570,"id":71,"parentId":70,"tags":{},"startTime":1780887391160,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":7105,"timestamp":2394422612561,"id":70,"parentId":57,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/htmlescape.js","layer":null},"startTime":1780887391160,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":7105,"timestamp":2394422612595,"id":73,"parentId":72,"tags":{},"startTime":1780887391160,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":8374,"timestamp":2394422612585,"id":72,"parentId":57,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/utils.js","layer":null},"startTime":1780887391160,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":7344,"timestamp":2394422614841,"id":82,"parentId":81,"tags":{},"startTime":1780887391162,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":7379,"timestamp":2394422614809,"id":81,"parentId":76,"tags":{},"startTime":1780887391162,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":7877,"timestamp":2394422614685,"id":76,"parentId":57,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/encode-uri-path.js","layer":null},"startTime":1780887391162,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":7837,"timestamp":2394422614807,"id":80,"parentId":79,"tags":{},"startTime":1780887391162,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":7871,"timestamp":2394422614775,"id":79,"parentId":75,"tags":{},"startTime":1780887391162,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":9952,"timestamp":2394422614656,"id":75,"parentId":57,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/constants.js","layer":null},"startTime":1780887391162,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":9856,"timestamp":2394422614773,"id":78,"parentId":77,"tags":{},"startTime":1780887391162,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":9922,"timestamp":2394422614709,"id":77,"parentId":74,"tags":{},"startTime":1780887391162,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":12008,"timestamp":2394422614585,"id":74,"parentId":56,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/utils.js","layer":null},"startTime":1780887391162,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":3002,"timestamp":2394422628498,"id":85,"parentId":84,"tags":{},"startTime":1780887391176,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":3073,"timestamp":2394422628430,"id":84,"parentId":83,"tags":{},"startTime":1780887391175,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":4230,"timestamp":2394422628301,"id":83,"parentId":55,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/pages/_error.js","layer":null},"startTime":1780887391175,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module","duration":95255,"timestamp":2394422538283,"id":40,"parentId":22,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-app-loader.js?page=%2F_not-found%2Fpage&name=app%2F_not-found%2Fpage&pagePath=next%2Fdist%2Fclient%2Fcomponents%2Fnot-found-error&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&appPaths=next%2Fdist%2Fclient%2Fcomponents%2Fnot-found-error&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&basePath=&assetPrefix=&nextConfigOutput=standalone&nextConfigExperimentalUseEarlyImport=false&preferredRegion=&middlewareConfig=e30%3D!","layer":"rsc"},"startTime":1780887391085,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":2292,"timestamp":2394422635252,"id":88,"parentId":87,"tags":{},"startTime":1780887391182,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":2351,"timestamp":2394422635198,"id":87,"parentId":86,"tags":{},"startTime":1780887391182,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":3060,"timestamp":2394422635033,"id":86,"parentId":64,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/is-plain-object.js","layer":null},"startTime":1780887391182,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":2867,"timestamp":2394422636603,"id":95,"parentId":94,"tags":{},"startTime":1780887391184,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":2913,"timestamp":2394422636559,"id":94,"parentId":93,"tags":{},"startTime":1780887391184,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":3129,"timestamp":2394422636518,"id":93,"parentId":75,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/modern-browserslist-target.js","layer":null},"startTime":1780887391184,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":1231,"timestamp":2394422639008,"id":101,"parentId":100,"tags":{},"startTime":1780887391186,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":1325,"timestamp":2394422638917,"id":100,"parentId":97,"tags":{},"startTime":1780887391186,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":2073,"timestamp":2394422638594,"id":97,"parentId":68,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/page-path/normalize-page-path.js","layer":null},"startTime":1780887391186,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":2056,"timestamp":2394422638856,"id":99,"parentId":98,"tags":{},"startTime":1780887391186,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":2260,"timestamp":2394422638654,"id":98,"parentId":96,"tags":{},"startTime":1780887391186,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":2665,"timestamp":2394422638461,"id":96,"parentId":68,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/page-path/denormalize-page-path.js","layer":null},"startTime":1780887391186,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":5731,"timestamp":2394422636512,"id":92,"parentId":91,"tags":{},"startTime":1780887391184,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":6527,"timestamp":2394422636502,"id":91,"parentId":55,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/route-kind.js","layer":null},"startTime":1780887391184,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":7048,"timestamp":2394422636493,"id":90,"parentId":89,"tags":{},"startTime":1780887391184,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":7318,"timestamp":2394422636473,"id":89,"parentId":55,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/templates/helpers.js","layer":null},"startTime":1780887391184,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":2667,"timestamp":2394422641397,"id":106,"parentId":105,"tags":{},"startTime":1780887391188,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":2710,"timestamp":2394422641356,"id":105,"parentId":104,"tags":{},"startTime":1780887391188,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":4502,"timestamp":2394422641273,"id":104,"parentId":83,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/head.js","layer":null},"startTime":1780887391188,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module","duration":15,"timestamp":2394422645978,"id":107,"parentId":97,"tags":{"name":"path","layer":null},"startTime":1780887391193,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":11863,"timestamp":2394422640014,"id":103,"parentId":102,"tags":{},"startTime":1780887391187,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":12211,"timestamp":2394422639995,"id":102,"parentId":55,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/route-modules/pages/module.compiled.js","layer":null},"startTime":1780887391187,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":173,"timestamp":2394422655085,"id":113,"parentId":108,"tags":{},"startTime":1780887391202,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":86,"timestamp":2394422655289,"id":120,"parentId":108,"tags":{},"startTime":1780887391202,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":1229,"timestamp":2394422654534,"id":108,"parentId":47,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/route-kind.js","layer":"rsc"},"startTime":1780887391202,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":3134,"timestamp":2394422655197,"id":117,"parentId":116,"tags":{},"startTime":1780887391202,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":3169,"timestamp":2394422655164,"id":116,"parentId":111,"tags":{},"startTime":1780887391202,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":3471,"timestamp":2394422655024,"id":111,"parentId":97,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/page-path/ensure-leading-slash.js","layer":null},"startTime":1780887391202,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":3301,"timestamp":2394422655213,"id":119,"parentId":118,"tags":{},"startTime":1780887391202,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":3315,"timestamp":2394422655200,"id":118,"parentId":112,"tags":{},"startTime":1780887391202,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":3617,"timestamp":2394422655046,"id":112,"parentId":96,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/page-path/normalize-path-sep.js","layer":null},"startTime":1780887391202,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":14,"timestamp":2394422659186,"id":121,"parentId":102,"tags":{"name":"next/dist/compiled/next-server/pages.runtime.prod.js","layer":null},"startTime":1780887391206,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":6312,"timestamp":2394422655145,"id":114,"parentId":109,"tags":{},"startTime":1780887391202,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":115,"timestamp":2394422661479,"id":130,"parentId":109,"tags":{},"startTime":1780887391209,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":12475,"timestamp":2394422654910,"id":109,"parentId":47,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/lib/patch-fetch.js","layer":"rsc"},"startTime":1780887391202,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":8132,"timestamp":2394422659317,"id":127,"parentId":126,"tags":{},"startTime":1780887391206,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":8144,"timestamp":2394422659306,"id":126,"parentId":123,"tags":{},"startTime":1780887391206,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":8409,"timestamp":2394422659248,"id":123,"parentId":104,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/amp-mode.js","layer":null},"startTime":1780887391206,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":8362,"timestamp":2394422659305,"id":125,"parentId":124,"tags":{},"startTime":1780887391206,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":8388,"timestamp":2394422659280,"id":124,"parentId":122,"tags":{},"startTime":1780887391206,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":9113,"timestamp":2394422659206,"id":122,"parentId":104,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/side-effect.js","layer":null},"startTime":1780887391206,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":14682,"timestamp":2394422655157,"id":115,"parentId":110,"tags":{},"startTime":1780887391202,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":36,"timestamp":2394422669848,"id":137,"parentId":110,"tags":{},"startTime":1780887391217,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":15242,"timestamp":2394422654969,"id":110,"parentId":47,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/route-modules/app-route/module.compiled.js","layer":"rsc"},"startTime":1780887391202,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":1394,"timestamp":2394422669508,"id":136,"parentId":135,"tags":{},"startTime":1780887391217,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":1409,"timestamp":2394422669495,"id":135,"parentId":132,"tags":{},"startTime":1780887391217,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":1763,"timestamp":2394422669337,"id":132,"parentId":104,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/utils/warn-once.js","layer":null},"startTime":1780887391216,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":2642,"timestamp":2394422669492,"id":134,"parentId":133,"tags":{},"startTime":1780887391217,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":2704,"timestamp":2394422669433,"id":133,"parentId":131,"tags":{},"startTime":1780887391216,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-tsx","duration":3632,"timestamp":2394422669108,"id":131,"parentId":40,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/layout.tsx","layer":"rsc"},"startTime":1780887391216,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":10803,"timestamp":2394422670807,"id":140,"parentId":139,"tags":{},"startTime":1780887391218,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":10850,"timestamp":2394422670764,"id":139,"parentId":138,"tags":{},"startTime":1780887391218,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-ts","duration":11605,"timestamp":2394422670683,"id":138,"parentId":47,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/api/chat/stream/route.ts","layer":"rsc"},"startTime":1780887391218,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":22264,"timestamp":2394422660253,"id":129,"parentId":128,"tags":{},"startTime":1780887391207,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":22539,"timestamp":2394422660201,"id":128,"parentId":57,"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":1780887391207,"traceId":"9b70e6dfdb6b3605"}] +[{"name":"next-swc-loader","duration":32,"timestamp":2394422801547,"id":245,"parentId":231,"tags":{},"startTime":1780887391349,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":8110,"timestamp":2394422794299,"id":231,"parentId":163,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/picocolors.js","layer":"rsc"},"startTime":1780887391341,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":6853,"timestamp":2394422796204,"id":242,"parentId":241,"tags":{},"startTime":1780887391343,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-cjs","duration":7272,"timestamp":2394422796180,"id":241,"parentId":104,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/cjs/_interop_require_wildcard.cjs","layer":null},"startTime":1780887391343,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":3477,"timestamp":2394422809170,"id":248,"parentId":246,"tags":{},"startTime":1780887391356,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":32,"timestamp":2394422812659,"id":258,"parentId":246,"tags":{},"startTime":1780887391360,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":4058,"timestamp":2394422808973,"id":246,"parentId":156,"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":1780887391356,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":4850,"timestamp":2394422809184,"id":249,"parentId":247,"tags":{},"startTime":1780887391356,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":29,"timestamp":2394422814041,"id":259,"parentId":247,"tags":{},"startTime":1780887391361,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":5260,"timestamp":2394422809109,"id":247,"parentId":195,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/web/spec-extension/adapters/reflect.js","layer":"rsc"},"startTime":1780887391356,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":5000,"timestamp":2394422809985,"id":253,"parentId":252,"tags":{},"startTime":1780887391357,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":5553,"timestamp":2394422809976,"id":252,"parentId":233,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/helpers/interception-routes.js","layer":null},"startTime":1780887391357,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":5604,"timestamp":2394422809996,"id":254,"parentId":250,"tags":{},"startTime":1780887391357,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":31,"timestamp":2394422815606,"id":264,"parentId":250,"tags":{},"startTime":1780887391363,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":5876,"timestamp":2394422809863,"id":250,"parentId":155,"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":1780887391357,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":5741,"timestamp":2394422810004,"id":255,"parentId":251,"tags":{},"startTime":1780887391357,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":5289,"timestamp":2394422810721,"id":257,"parentId":256,"tags":{},"startTime":1780887391358,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":28,"timestamp":2394422816014,"id":267,"parentId":256,"tags":{},"startTime":1780887391363,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":5538,"timestamp":2394422810570,"id":256,"parentId":143,"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":1780887391358,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":1984,"timestamp":2394422815810,"id":266,"parentId":265,"tags":{},"startTime":1780887391363,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":2047,"timestamp":2394422815749,"id":265,"parentId":251,"tags":{},"startTime":1780887391363,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-mjs","duration":8437,"timestamp":2394422809930,"id":251,"parentId":131,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next-themes/dist/index.mjs","layer":"rsc"},"startTime":1780887391357,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":5309,"timestamp":2394422814854,"id":262,"parentId":260,"tags":{},"startTime":1780887391362,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":30,"timestamp":2394422820170,"id":268,"parentId":260,"tags":{},"startTime":1780887391367,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":5597,"timestamp":2394422814704,"id":260,"parentId":155,"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":1780887391362,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":5922,"timestamp":2394422814868,"id":263,"parentId":261,"tags":{},"startTime":1780887391362,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":44,"timestamp":2394422820795,"id":269,"parentId":261,"tags":{},"startTime":1780887391368,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":14846,"timestamp":2394422814798,"id":261,"parentId":165,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@opentelemetry/api/index.js","layer":"rsc"},"startTime":1780887391362,"traceId":"9b70e6dfdb6b3605"},{"name":"add-entry","duration":342879,"timestamp":2394422491180,"id":32,"parentId":21,"tags":{"request":"next-app-loader?page=%2F(auth)%2Fapi%2Fchat%2Fstream%2Froute&name=app%2F(auth)%2Fapi%2Fchat%2Fstream%2Froute&pagePath=private-next-app-dir%2F(auth)%2Fapi%2Fchat%2Fstream%2Froute.ts&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&appPaths=%2F(auth)%2Fapi%2Fchat%2Fstream%2Froute&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&basePath=&assetPrefix=&nextConfigOutput=standalone&nextConfigExperimentalUseEarlyImport=false&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1780887391038,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module","duration":289231,"timestamp":2394422545371,"id":54,"parentId":39,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-app-loader.js?page=%2F(public)%2Fpage&name=app%2F(public)%2Fpage&pagePath=private-next-app-dir%2F(public)%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&appPaths=%2F(public)%2Fpage&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&basePath=&assetPrefix=&nextConfigOutput=standalone&nextConfigExperimentalUseEarlyImport=false&preferredRegion=&middlewareConfig=e30%3D!","layer":"rsc"},"startTime":1780887391092,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":3610,"timestamp":2394422834116,"id":272,"parentId":271,"tags":{},"startTime":1780887391381,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":3658,"timestamp":2394422834071,"id":271,"parentId":270,"tags":{},"startTime":1780887391381,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":4839,"timestamp":2394422833517,"id":270,"parentId":252,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/app-paths.js","layer":null},"startTime":1780887391381,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":3050,"timestamp":2394422842892,"id":275,"parentId":274,"tags":{},"startTime":1780887391390,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":3089,"timestamp":2394422842859,"id":274,"parentId":273,"tags":{},"startTime":1780887391390,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":3541,"timestamp":2394422842773,"id":273,"parentId":270,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/segment.js","layer":null},"startTime":1780887391390,"traceId":"9b70e6dfdb6b3605"},{"name":"add-entry","duration":355660,"timestamp":2394422490987,"id":25,"parentId":21,"tags":{"request":"next/dist/pages/_document"},"startTime":1780887391038,"traceId":"9b70e6dfdb6b3605"},{"name":"add-entry","duration":355678,"timestamp":2394422490978,"id":24,"parentId":21,"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":1780887391038,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":3198,"timestamp":2394422843779,"id":277,"parentId":276,"tags":{},"startTime":1780887391391,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":38,"timestamp":2394422846987,"id":278,"parentId":276,"tags":{},"startTime":1780887391394,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":4003,"timestamp":2394422843174,"id":276,"parentId":220,"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":1780887391390,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":3087,"timestamp":2394422850487,"id":282,"parentId":281,"tags":{},"startTime":1780887391398,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":3167,"timestamp":2394422850412,"id":281,"parentId":279,"tags":{},"startTime":1780887391397,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-tsx","duration":4549,"timestamp":2394422850109,"id":279,"parentId":54,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(public)/page.tsx","layer":"rsc"},"startTime":1780887391397,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":7302,"timestamp":2394422850522,"id":284,"parentId":283,"tags":{},"startTime":1780887391398,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":7335,"timestamp":2394422850490,"id":283,"parentId":280,"tags":{},"startTime":1780887391398,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-tsx","duration":7828,"timestamp":2394422850347,"id":280,"parentId":54,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(public)/layout.tsx","layer":"rsc"},"startTime":1780887391397,"traceId":"9b70e6dfdb6b3605"},{"name":"add-entry","duration":372522,"timestamp":2394422491196,"id":39,"parentId":21,"tags":{"request":"next-app-loader?page=%2F(public)%2Fpage&name=app%2F(public)%2Fpage&pagePath=private-next-app-dir%2F(public)%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&appPaths=%2F(public)%2Fpage&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&basePath=&assetPrefix=&nextConfigOutput=standalone&nextConfigExperimentalUseEarlyImport=false&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1780887391038,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module","duration":338228,"timestamp":2394422543954,"id":41,"parentId":26,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-app-loader.js?page=%2F(auth)%2Fdashboard%2Fpage&name=app%2F(auth)%2Fdashboard%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fdashboard%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&appPaths=%2F(auth)%2Fdashboard%2Fpage&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&basePath=&assetPrefix=&nextConfigOutput=standalone&nextConfigExperimentalUseEarlyImport=false&preferredRegion=&middlewareConfig=e30%3D!","layer":"rsc"},"startTime":1780887391091,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":4832,"timestamp":2394422890848,"id":287,"parentId":286,"tags":{},"startTime":1780887391438,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":4917,"timestamp":2394422890778,"id":286,"parentId":285,"tags":{},"startTime":1780887391438,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-tsx","duration":5620,"timestamp":2394422890515,"id":285,"parentId":41,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/layout.tsx","layer":"rsc"},"startTime":1780887391438,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":5621,"timestamp":2394422892973,"id":290,"parentId":289,"tags":{},"startTime":1780887391440,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":5760,"timestamp":2394422892839,"id":289,"parentId":288,"tags":{},"startTime":1780887391440,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-tsx","duration":6402,"timestamp":2394422892415,"id":288,"parentId":41,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/dashboard/page.tsx","layer":"rsc"},"startTime":1780887391439,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module","duration":354566,"timestamp":2394422544290,"id":44,"parentId":29,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-app-loader.js?page=%2F(auth)%2Fchat%2Fpage&name=app%2F(auth)%2Fchat%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fchat%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&appPaths=%2F(auth)%2Fchat%2Fpage&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&basePath=&assetPrefix=&nextConfigOutput=standalone&nextConfigExperimentalUseEarlyImport=false&preferredRegion=&middlewareConfig=e30%3D!","layer":"rsc"},"startTime":1780887391091,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module","duration":363526,"timestamp":2394422544212,"id":43,"parentId":28,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-app-loader.js?page=%2F(auth)%2Fadmin%2Fpage&name=app%2F(auth)%2Fadmin%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fadmin%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&appPaths=%2F(auth)%2Fadmin%2Fpage&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&basePath=&assetPrefix=&nextConfigOutput=standalone&nextConfigExperimentalUseEarlyImport=false&preferredRegion=&middlewareConfig=e30%3D!","layer":"rsc"},"startTime":1780887391091,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":2926,"timestamp":2394422906661,"id":293,"parentId":292,"tags":{},"startTime":1780887391454,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":2981,"timestamp":2394422906610,"id":292,"parentId":291,"tags":{},"startTime":1780887391454,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-tsx","duration":3454,"timestamp":2394422906464,"id":291,"parentId":44,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/chat/page.tsx","layer":"rsc"},"startTime":1780887391454,"traceId":"9b70e6dfdb6b3605"},{"name":"add-entry","duration":419818,"timestamp":2394422491011,"id":29,"parentId":21,"tags":{"request":"next-app-loader?page=%2F(auth)%2Fchat%2Fpage&name=app%2F(auth)%2Fchat%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fchat%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&appPaths=%2F(auth)%2Fchat%2Fpage&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&basePath=&assetPrefix=&nextConfigOutput=standalone&nextConfigExperimentalUseEarlyImport=false&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1780887391038,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module","duration":372256,"timestamp":2394422544679,"id":48,"parentId":33,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-app-loader.js?page=%2F(auth)%2Fsectors%2Fpage&name=app%2F(auth)%2Fsectors%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fsectors%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&appPaths=%2F(auth)%2Fsectors%2Fpage&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&basePath=&assetPrefix=&nextConfigOutput=standalone&nextConfigExperimentalUseEarlyImport=false&preferredRegion=&middlewareConfig=e30%3D!","layer":"rsc"},"startTime":1780887391092,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":3048,"timestamp":2394422916281,"id":296,"parentId":295,"tags":{},"startTime":1780887391463,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":3112,"timestamp":2394422916224,"id":295,"parentId":294,"tags":{},"startTime":1780887391463,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-tsx","duration":3643,"timestamp":2394422916072,"id":294,"parentId":43,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/admin/page.tsx","layer":"rsc"},"startTime":1780887391463,"traceId":"9b70e6dfdb6b3605"},{"name":"add-entry","duration":429422,"timestamp":2394422491005,"id":28,"parentId":21,"tags":{"request":"next-app-loader?page=%2F(auth)%2Fadmin%2Fpage&name=app%2F(auth)%2Fadmin%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fadmin%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&appPaths=%2F(auth)%2Fadmin%2Fpage&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&basePath=&assetPrefix=&nextConfigOutput=standalone&nextConfigExperimentalUseEarlyImport=false&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1780887391038,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module","duration":379784,"timestamp":2394422545187,"id":50,"parentId":35,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-app-loader.js?page=%2F(auth)%2Fsentiment%2Fpage&name=app%2F(auth)%2Fsentiment%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fsentiment%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&appPaths=%2F(auth)%2Fsentiment%2Fpage&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&basePath=&assetPrefix=&nextConfigOutput=standalone&nextConfigExperimentalUseEarlyImport=false&preferredRegion=&middlewareConfig=e30%3D!","layer":"rsc"},"startTime":1780887391092,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":3003,"timestamp":2394422923951,"id":299,"parentId":298,"tags":{},"startTime":1780887391471,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":3054,"timestamp":2394422923904,"id":298,"parentId":297,"tags":{},"startTime":1780887391471,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-tsx","duration":3452,"timestamp":2394422923795,"id":297,"parentId":48,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/sectors/page.tsx","layer":"rsc"},"startTime":1780887391471,"traceId":"9b70e6dfdb6b3605"},{"name":"add-entry","duration":436803,"timestamp":2394422491185,"id":33,"parentId":21,"tags":{"request":"next-app-loader?page=%2F(auth)%2Fsectors%2Fpage&name=app%2F(auth)%2Fsectors%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fsectors%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&appPaths=%2F(auth)%2Fsectors%2Fpage&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&basePath=&assetPrefix=&nextConfigOutput=standalone&nextConfigExperimentalUseEarlyImport=false&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1780887391038,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module","duration":391187,"timestamp":2394422544117,"id":42,"parentId":27,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-app-loader.js?page=%2F(auth)%2Frecommendations%2Fpage&name=app%2F(auth)%2Frecommendations%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Frecommendations%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&appPaths=%2F(auth)%2Frecommendations%2Fpage&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&basePath=&assetPrefix=&nextConfigOutput=standalone&nextConfigExperimentalUseEarlyImport=false&preferredRegion=&middlewareConfig=e30%3D!","layer":"rsc"},"startTime":1780887391091,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":4362,"timestamp":2394422932659,"id":302,"parentId":301,"tags":{},"startTime":1780887391480,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":4414,"timestamp":2394422932610,"id":301,"parentId":300,"tags":{},"startTime":1780887391480,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-tsx","duration":4792,"timestamp":2394422932493,"id":300,"parentId":50,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/sentiment/page.tsx","layer":"rsc"},"startTime":1780887391480,"traceId":"9b70e6dfdb6b3605"},{"name":"add-entry","duration":446668,"timestamp":2394422491188,"id":35,"parentId":21,"tags":{"request":"next-app-loader?page=%2F(auth)%2Fsentiment%2Fpage&name=app%2F(auth)%2Fsentiment%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fsentiment%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&appPaths=%2F(auth)%2Fsentiment%2Fpage&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&basePath=&assetPrefix=&nextConfigOutput=standalone&nextConfigExperimentalUseEarlyImport=false&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1780887391038,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module","duration":399054,"timestamp":2394422545286,"id":52,"parentId":37,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-app-loader.js?page=%2F(auth)%2Fwatchlists%2Fpage&name=app%2F(auth)%2Fwatchlists%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fwatchlists%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&appPaths=%2F(auth)%2Fwatchlists%2Fpage&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&basePath=&assetPrefix=&nextConfigOutput=standalone&nextConfigExperimentalUseEarlyImport=false&preferredRegion=&middlewareConfig=e30%3D!","layer":"rsc"},"startTime":1780887391092,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":2220,"timestamp":2394422943725,"id":305,"parentId":304,"tags":{},"startTime":1780887391491,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":2283,"timestamp":2394422943664,"id":304,"parentId":303,"tags":{},"startTime":1780887391491,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-tsx","duration":2665,"timestamp":2394422943480,"id":303,"parentId":42,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/recommendations/page.tsx","layer":"rsc"},"startTime":1780887391491,"traceId":"9b70e6dfdb6b3605"},{"name":"add-entry","duration":455781,"timestamp":2394422491000,"id":27,"parentId":21,"tags":{"request":"next-app-loader?page=%2F(auth)%2Frecommendations%2Fpage&name=app%2F(auth)%2Frecommendations%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Frecommendations%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&appPaths=%2F(auth)%2Frecommendations%2Fpage&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&basePath=&assetPrefix=&nextConfigOutput=standalone&nextConfigExperimentalUseEarlyImport=false&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1780887391038,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-css","duration":161255,"timestamp":2394422790343,"id":227,"parentId":131,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/globals.css","layer":"rsc"},"startTime":1780887391337,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module","duration":407263,"timestamp":2394422545326,"id":53,"parentId":38,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-app-loader.js?page=%2F(public)%2Flogin%2Fpage&name=app%2F(public)%2Flogin%2Fpage&pagePath=private-next-app-dir%2F(public)%2Flogin%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&appPaths=%2F(public)%2Flogin%2Fpage&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&basePath=&assetPrefix=&nextConfigOutput=standalone&nextConfigExperimentalUseEarlyImport=false&preferredRegion=&middlewareConfig=e30%3D!","layer":"rsc"},"startTime":1780887391092,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":4170,"timestamp":2394422950338,"id":308,"parentId":307,"tags":{},"startTime":1780887391497,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":4224,"timestamp":2394422950289,"id":307,"parentId":306,"tags":{},"startTime":1780887391497,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-tsx","duration":4742,"timestamp":2394422950145,"id":306,"parentId":52,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/watchlists/page.tsx","layer":"rsc"},"startTime":1780887391497,"traceId":"9b70e6dfdb6b3605"},{"name":"add-entry","duration":464323,"timestamp":2394422491190,"id":37,"parentId":21,"tags":{"request":"next-app-loader?page=%2F(auth)%2Fwatchlists%2Fpage&name=app%2F(auth)%2Fwatchlists%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fwatchlists%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&appPaths=%2F(auth)%2Fwatchlists%2Fpage&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&basePath=&assetPrefix=&nextConfigOutput=standalone&nextConfigExperimentalUseEarlyImport=false&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1780887391038,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module","duration":415770,"timestamp":2394422544418,"id":45,"parentId":30,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-app-loader.js?page=%2F(auth)%2Fsectors%2F%5Bname%5D%2Fpage&name=app%2F(auth)%2Fsectors%2F%5Bname%5D%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fsectors%2F%5Bname%5D%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&appPaths=%2F(auth)%2Fsectors%2F%5Bname%5D%2Fpage&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&basePath=&assetPrefix=&nextConfigOutput=standalone&nextConfigExperimentalUseEarlyImport=false&preferredRegion=&middlewareConfig=e30%3D!","layer":"rsc"},"startTime":1780887391091,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":2578,"timestamp":2394422959302,"id":311,"parentId":310,"tags":{},"startTime":1780887391506,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":2633,"timestamp":2394422959251,"id":310,"parentId":309,"tags":{},"startTime":1780887391506,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-tsx","duration":2979,"timestamp":2394422959141,"id":309,"parentId":53,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(public)/login/page.tsx","layer":"rsc"},"startTime":1780887391506,"traceId":"9b70e6dfdb6b3605"},{"name":"add-entry","duration":472131,"timestamp":2394422491195,"id":38,"parentId":21,"tags":{"request":"next-app-loader?page=%2F(public)%2Flogin%2Fpage&name=app%2F(public)%2Flogin%2Fpage&pagePath=private-next-app-dir%2F(public)%2Flogin%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&appPaths=%2F(public)%2Flogin%2Fpage&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&basePath=&assetPrefix=&nextConfigOutput=standalone&nextConfigExperimentalUseEarlyImport=false&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1780887391038,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module","duration":422657,"timestamp":2394422545243,"id":51,"parentId":36,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-app-loader.js?page=%2F(auth)%2Fadmin%2Finvites%2Fpage&name=app%2F(auth)%2Fadmin%2Finvites%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fadmin%2Finvites%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&appPaths=%2F(auth)%2Fadmin%2Finvites%2Fpage&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&basePath=&assetPrefix=&nextConfigOutput=standalone&nextConfigExperimentalUseEarlyImport=false&preferredRegion=&middlewareConfig=e30%3D!","layer":"rsc"},"startTime":1780887391092,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":3193,"timestamp":2394422966319,"id":314,"parentId":313,"tags":{},"startTime":1780887391513,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":3248,"timestamp":2394422966267,"id":313,"parentId":312,"tags":{},"startTime":1780887391513,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-tsx","duration":3618,"timestamp":2394422966116,"id":312,"parentId":45,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/sectors/[name]/page.tsx","layer":"rsc"},"startTime":1780887391513,"traceId":"9b70e6dfdb6b3605"},{"name":"add-entry","duration":479470,"timestamp":2394422491016,"id":30,"parentId":21,"tags":{"request":"next-app-loader?page=%2F(auth)%2Fsectors%2F%5Bname%5D%2Fpage&name=app%2F(auth)%2Fsectors%2F%5Bname%5D%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fsectors%2F%5Bname%5D%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&appPaths=%2F(auth)%2Fsectors%2F%5Bname%5D%2Fpage&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&basePath=&assetPrefix=&nextConfigOutput=standalone&nextConfigExperimentalUseEarlyImport=false&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1780887391038,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":1359,"timestamp":2394422974608,"id":317,"parentId":316,"tags":{},"startTime":1780887391522,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":1426,"timestamp":2394422974545,"id":316,"parentId":315,"tags":{},"startTime":1780887391522,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-tsx","duration":1751,"timestamp":2394422974407,"id":315,"parentId":51,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/admin/invites/page.tsx","layer":"rsc"},"startTime":1780887391521,"traceId":"9b70e6dfdb6b3605"},{"name":"add-entry","duration":485559,"timestamp":2394422491189,"id":36,"parentId":21,"tags":{"request":"next-app-loader?page=%2F(auth)%2Fadmin%2Finvites%2Fpage&name=app%2F(auth)%2Fadmin%2Finvites%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fadmin%2Finvites%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&appPaths=%2F(auth)%2Fadmin%2Finvites%2Fpage&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&basePath=&assetPrefix=&nextConfigOutput=standalone&nextConfigExperimentalUseEarlyImport=false&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1780887391038,"traceId":"9b70e6dfdb6b3605"}] +[{"name":"build-module","duration":435310,"timestamp":2394422545093,"id":49,"parentId":34,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-app-loader.js?page=%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage&name=app%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&appPaths=%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&basePath=&assetPrefix=&nextConfigOutput=standalone&nextConfigExperimentalUseEarlyImport=false&preferredRegion=&middlewareConfig=e30%3D!","layer":"rsc"},"startTime":1780887391092,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module","duration":444513,"timestamp":2394422544492,"id":46,"parentId":31,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-app-loader.js?page=%2F(auth)%2Fadmin%2Fusers%2Fpage&name=app%2F(auth)%2Fadmin%2Fusers%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fadmin%2Fusers%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&appPaths=%2F(auth)%2Fadmin%2Fusers%2Fpage&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&basePath=&assetPrefix=&nextConfigOutput=standalone&nextConfigExperimentalUseEarlyImport=false&preferredRegion=&middlewareConfig=e30%3D!","layer":"rsc"},"startTime":1780887391092,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":2814,"timestamp":2394422988803,"id":320,"parentId":319,"tags":{},"startTime":1780887391536,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":2872,"timestamp":2394422988752,"id":319,"parentId":318,"tags":{},"startTime":1780887391536,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-tsx","duration":3296,"timestamp":2394422988624,"id":318,"parentId":49,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/stock/[code]/page.tsx","layer":"rsc"},"startTime":1780887391536,"traceId":"9b70e6dfdb6b3605"},{"name":"add-entry","duration":501421,"timestamp":2394422491187,"id":34,"parentId":21,"tags":{"request":"next-app-loader?page=%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage&name=app%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&appPaths=%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&basePath=&assetPrefix=&nextConfigOutput=standalone&nextConfigExperimentalUseEarlyImport=false&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1780887391038,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":1550,"timestamp":2394422996898,"id":323,"parentId":322,"tags":{},"startTime":1780887391544,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":1601,"timestamp":2394422996852,"id":322,"parentId":321,"tags":{},"startTime":1780887391544,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-tsx","duration":1958,"timestamp":2394422996709,"id":321,"parentId":46,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/admin/users/page.tsx","layer":"rsc"},"startTime":1780887391544,"traceId":"9b70e6dfdb6b3605"},{"name":"add-entry","duration":508282,"timestamp":2394422491160,"id":31,"parentId":21,"tags":{"request":"next-app-loader?page=%2F(auth)%2Fadmin%2Fusers%2Fpage&name=app%2F(auth)%2Fadmin%2Fusers%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fadmin%2Fusers%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&appPaths=%2F(auth)%2Fadmin%2Fusers%2Fpage&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&basePath=&assetPrefix=&nextConfigOutput=standalone&nextConfigExperimentalUseEarlyImport=false&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1780887391038,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":12077,"timestamp":2394422999026,"id":330,"parentId":329,"tags":{},"startTime":1780887391546,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":12110,"timestamp":2394422998997,"id":329,"parentId":325,"tags":{},"startTime":1780887391546,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":12404,"timestamp":2394422999053,"id":332,"parentId":331,"tags":{},"startTime":1780887391546,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":12434,"timestamp":2394422999027,"id":331,"parentId":326,"tags":{},"startTime":1780887391546,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":12607,"timestamp":2394422998995,"id":328,"parentId":327,"tags":{},"startTime":1780887391546,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":12653,"timestamp":2394422998952,"id":327,"parentId":324,"tags":{},"startTime":1780887391546,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-tsx","duration":13434,"timestamp":2394422998738,"id":324,"parentId":131,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/hooks/use-auth.tsx","layer":"rsc"},"startTime":1780887391546,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-tsx","duration":13360,"timestamp":2394422998826,"id":325,"parentId":285,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/auth-guard.tsx","layer":"rsc"},"startTime":1780887391546,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-tsx","duration":13318,"timestamp":2394422998875,"id":326,"parentId":285,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/mobile-shell.tsx","layer":"rsc"},"startTime":1780887391546,"traceId":"9b70e6dfdb6b3605"},{"name":"add-entry","duration":522436,"timestamp":2394422490726,"id":22,"parentId":21,"tags":{"request":"next-app-loader?page=%2F_not-found%2Fpage&name=app%2F_not-found%2Fpage&pagePath=next%2Fdist%2Fclient%2Fcomponents%2Fnot-found-error&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&appPaths=next%2Fdist%2Fclient%2Fcomponents%2Fnot-found-error&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&basePath=&assetPrefix=&nextConfigOutput=standalone&nextConfigExperimentalUseEarlyImport=false&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1780887391038,"traceId":"9b70e6dfdb6b3605"},{"name":"add-entry","duration":522178,"timestamp":2394422490994,"id":26,"parentId":21,"tags":{"request":"next-app-loader?page=%2F(auth)%2Fdashboard%2Fpage&name=app%2F(auth)%2Fdashboard%2Fpage&pagePath=private-next-app-dir%2F(auth)%2Fdashboard%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&appPaths=%2F(auth)%2Fdashboard%2Fpage&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&basePath=&assetPrefix=&nextConfigOutput=standalone&nextConfigExperimentalUseEarlyImport=false&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1780887391038,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module","duration":2029,"timestamp":2394423071504,"id":427,"parentId":19,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext-themes%2Fdist%2Findex.mjs%22%2C%22ids%22%3A%5B%22ThemeProvider%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2Fglobals.css%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fhooks%2Fuse-auth.tsx%22%2C%22ids%22%3A%5B%22AuthProvider%22%5D%7D&server=true!","layer":"ssr"},"startTime":1780887391619,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module","duration":1616,"timestamp":2394423073561,"id":428,"parentId":19,"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":1780887391621,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module","duration":396,"timestamp":2394423075194,"id":429,"parentId":19,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fdashboard%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=true!","layer":"ssr"},"startTime":1780887391622,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module","duration":546,"timestamp":2394423075600,"id":430,"parentId":19,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fauth-guard.tsx%22%2C%22ids%22%3A%5B%22AuthGuard%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fmobile-shell.tsx%22%2C%22ids%22%3A%5B%22MobileShell%22%5D%7D&server=true!","layer":"ssr"},"startTime":1780887391623,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module","duration":248,"timestamp":2394423076154,"id":431,"parentId":19,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Frecommendations%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=true!","layer":"ssr"},"startTime":1780887391623,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module","duration":325,"timestamp":2394423076406,"id":432,"parentId":19,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fadmin%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=true!","layer":"ssr"},"startTime":1780887391623,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module","duration":375,"timestamp":2394423076741,"id":433,"parentId":19,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fchat%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=true!","layer":"ssr"},"startTime":1780887391624,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module","duration":287,"timestamp":2394423077122,"id":434,"parentId":19,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fsectors%2F%5Bname%5D%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=true!","layer":"ssr"},"startTime":1780887391624,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module","duration":281,"timestamp":2394423077415,"id":435,"parentId":19,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fadmin%2Fusers%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=true!","layer":"ssr"},"startTime":1780887391624,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module","duration":294,"timestamp":2394423077701,"id":436,"parentId":19,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fsectors%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=true!","layer":"ssr"},"startTime":1780887391625,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module","duration":243,"timestamp":2394423078023,"id":437,"parentId":19,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=true!","layer":"ssr"},"startTime":1780887391625,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module","duration":245,"timestamp":2394423078271,"id":438,"parentId":19,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fsentiment%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=true!","layer":"ssr"},"startTime":1780887391625,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module","duration":225,"timestamp":2394423078520,"id":439,"parentId":19,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fadmin%2Finvites%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=true!","layer":"ssr"},"startTime":1780887391626,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module","duration":237,"timestamp":2394423078749,"id":440,"parentId":19,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fwatchlists%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=true!","layer":"ssr"},"startTime":1780887391626,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module","duration":216,"timestamp":2394423078990,"id":441,"parentId":19,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(public)%2Flogin%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=true!","layer":"ssr"},"startTime":1780887391626,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module","duration":42,"timestamp":2394423079210,"id":442,"parentId":19,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?server=true!","layer":"ssr"},"startTime":1780887391626,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module","duration":232,"timestamp":2394423079256,"id":443,"parentId":19,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(public)%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=true!","layer":"ssr"},"startTime":1780887391626,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":1918,"timestamp":2394423086784,"id":458,"parentId":457,"tags":{},"startTime":1780887391634,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":1988,"timestamp":2394423086721,"id":457,"parentId":444,"tags":{},"startTime":1780887391634,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-tsx","duration":4025,"timestamp":2394423085300,"id":444,"parentId":443,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(public)/page.tsx","layer":"ssr"},"startTime":1780887391632,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":4295,"timestamp":2394423086876,"id":464,"parentId":463,"tags":{},"startTime":1780887391634,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":4327,"timestamp":2394423086849,"id":463,"parentId":447,"tags":{},"startTime":1780887391634,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-tsx","duration":6729,"timestamp":2394423086304,"id":447,"parentId":432,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/admin/page.tsx","layer":"ssr"},"startTime":1780887391633,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":6173,"timestamp":2394423086903,"id":466,"parentId":465,"tags":{},"startTime":1780887391634,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":6200,"timestamp":2394423086877,"id":465,"parentId":448,"tags":{},"startTime":1780887391634,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-tsx","duration":7844,"timestamp":2394423086346,"id":448,"parentId":433,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/chat/page.tsx","layer":"ssr"},"startTime":1780887391633,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":11446,"timestamp":2394423086929,"id":468,"parentId":467,"tags":{},"startTime":1780887391634,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":11483,"timestamp":2394423086904,"id":467,"parentId":449,"tags":{},"startTime":1780887391634,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-tsx","duration":14821,"timestamp":2394423086385,"id":449,"parentId":436,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/sectors/page.tsx","layer":"ssr"},"startTime":1780887391633,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":14486,"timestamp":2394423086818,"id":460,"parentId":459,"tags":{},"startTime":1780887391634,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":14520,"timestamp":2394423086787,"id":459,"parentId":445,"tags":{},"startTime":1780887391634,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-tsx","duration":20691,"timestamp":2394423086167,"id":445,"parentId":429,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/dashboard/page.tsx","layer":"ssr"},"startTime":1780887391633,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":20087,"timestamp":2394423086848,"id":462,"parentId":461,"tags":{},"startTime":1780887391634,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":20118,"timestamp":2394423086819,"id":461,"parentId":446,"tags":{},"startTime":1780887391634,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-tsx","duration":25319,"timestamp":2394423086256,"id":446,"parentId":431,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/recommendations/page.tsx","layer":"ssr"},"startTime":1780887391633,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":24618,"timestamp":2394423087010,"id":474,"parentId":473,"tags":{},"startTime":1780887391634,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":24645,"timestamp":2394423086985,"id":473,"parentId":452,"tags":{},"startTime":1780887391634,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-tsx","duration":25903,"timestamp":2394423086498,"id":452,"parentId":441,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(public)/login/page.tsx","layer":"ssr"},"startTime":1780887391634,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":25490,"timestamp":2394423086957,"id":470,"parentId":469,"tags":{},"startTime":1780887391634,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":25518,"timestamp":2394423086930,"id":469,"parentId":450,"tags":{},"startTime":1780887391634,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-tsx","duration":27381,"timestamp":2394423086422,"id":450,"parentId":438,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/sentiment/page.tsx","layer":"ssr"},"startTime":1780887391633,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":26881,"timestamp":2394423086984,"id":472,"parentId":471,"tags":{},"startTime":1780887391634,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":26908,"timestamp":2394423086958,"id":471,"parentId":451,"tags":{},"startTime":1780887391634,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-tsx","duration":29945,"timestamp":2394423086462,"id":451,"parentId":440,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/watchlists/page.tsx","layer":"ssr"},"startTime":1780887391634,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":29380,"timestamp":2394423087064,"id":478,"parentId":477,"tags":{},"startTime":1780887391634,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":29408,"timestamp":2394423087039,"id":477,"parentId":454,"tags":{},"startTime":1780887391634,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-tsx","duration":30564,"timestamp":2394423086577,"id":454,"parentId":435,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/admin/users/page.tsx","layer":"ssr"},"startTime":1780887391634,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":38232,"timestamp":2394423087037,"id":476,"parentId":475,"tags":{},"startTime":1780887391634,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":38265,"timestamp":2394423087011,"id":475,"parentId":453,"tags":{},"startTime":1780887391634,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-tsx","duration":41526,"timestamp":2394423086540,"id":453,"parentId":434,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/sectors/[name]/page.tsx","layer":"ssr"},"startTime":1780887391634,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":40992,"timestamp":2394423087119,"id":482,"parentId":481,"tags":{},"startTime":1780887391634,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":41020,"timestamp":2394423087092,"id":481,"parentId":456,"tags":{},"startTime":1780887391634,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-tsx","duration":43019,"timestamp":2394423086680,"id":456,"parentId":439,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/admin/invites/page.tsx","layer":"ssr"},"startTime":1780887391634,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":42677,"timestamp":2394423087091,"id":480,"parentId":479,"tags":{},"startTime":1780887391634,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":42704,"timestamp":2394423087065,"id":479,"parentId":455,"tags":{},"startTime":1780887391634,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-tsx","duration":45545,"timestamp":2394423086636,"id":455,"parentId":437,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/stock/[code]/page.tsx","layer":"ssr"},"startTime":1780887391634,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":79,"timestamp":2394423138613,"id":484,"parentId":483,"tags":{},"startTime":1780887391686,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":6737,"timestamp":2394423138763,"id":486,"parentId":485,"tags":{},"startTime":1780887391686,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":6804,"timestamp":2394423138701,"id":485,"parentId":483,"tags":{},"startTime":1780887391686,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-mjs","duration":8780,"timestamp":2394423138163,"id":483,"parentId":448,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next-themes/dist/index.mjs","layer":"ssr"},"startTime":1780887391685,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":7046,"timestamp":2394423147616,"id":493,"parentId":492,"tags":{},"startTime":1780887391695,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":7081,"timestamp":2394423147588,"id":492,"parentId":488,"tags":{},"startTime":1780887391695,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-tsx","duration":7745,"timestamp":2394423147407,"id":488,"parentId":430,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/auth-guard.tsx","layer":"ssr"},"startTime":1780887391694,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":9682,"timestamp":2394423147585,"id":491,"parentId":490,"tags":{},"startTime":1780887391695,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":9731,"timestamp":2394423147540,"id":490,"parentId":487,"tags":{},"startTime":1780887391695,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-tsx","duration":10506,"timestamp":2394423147319,"id":487,"parentId":447,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/hooks/use-auth.tsx","layer":"ssr"},"startTime":1780887391694,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":11399,"timestamp":2394423147643,"id":495,"parentId":494,"tags":{},"startTime":1780887391695,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":11430,"timestamp":2394423147617,"id":494,"parentId":489,"tags":{},"startTime":1780887391695,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-tsx","duration":13776,"timestamp":2394423147453,"id":489,"parentId":430,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/mobile-shell.tsx","layer":"ssr"},"startTime":1780887391695,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":11446,"timestamp":2394423155794,"id":509,"parentId":508,"tags":{},"startTime":1780887391703,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":11493,"timestamp":2394423155786,"id":508,"parentId":499,"tags":{},"startTime":1780887391703,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":12355,"timestamp":2394423155607,"id":499,"parentId":428,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/client-page.js","layer":"ssr"},"startTime":1780887391703,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":12222,"timestamp":2394423155763,"id":503,"parentId":502,"tags":{},"startTime":1780887391703,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":12258,"timestamp":2394423155728,"id":502,"parentId":496,"tags":{},"startTime":1780887391703,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":15282,"timestamp":2394423155260,"id":496,"parentId":428,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/error-boundary.js","layer":"ssr"},"startTime":1780887391702,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":14746,"timestamp":2394423155811,"id":513,"parentId":512,"tags":{},"startTime":1780887391703,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":14754,"timestamp":2394423155804,"id":512,"parentId":501,"tags":{},"startTime":1780887391703,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":15193,"timestamp":2394423155647,"id":501,"parentId":428,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/render-from-template-context.js","layer":"ssr"},"startTime":1780887391703,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":16094,"timestamp":2394423155776,"id":505,"parentId":504,"tags":{},"startTime":1780887391703,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":16106,"timestamp":2394423155765,"id":504,"parentId":497,"tags":{},"startTime":1780887391703,"traceId":"9b70e6dfdb6b3605"}] +[{"name":"build-module-js","duration":22894,"timestamp":2394423155548,"id":497,"parentId":428,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/app-router.js","layer":"ssr"},"startTime":1780887391703,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":24165,"timestamp":2394423155785,"id":507,"parentId":506,"tags":{},"startTime":1780887391703,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":24184,"timestamp":2394423155777,"id":506,"parentId":498,"tags":{},"startTime":1780887391703,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":46040,"timestamp":2394423155577,"id":498,"parentId":428,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/layout-router.js","layer":"ssr"},"startTime":1780887391703,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":61726,"timestamp":2394423155803,"id":511,"parentId":510,"tags":{},"startTime":1780887391703,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":61754,"timestamp":2394423155795,"id":510,"parentId":500,"tags":{},"startTime":1780887391703,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":69772,"timestamp":2394423155628,"id":500,"parentId":428,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/not-found-boundary.js","layer":"ssr"},"startTime":1780887391703,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":16317,"timestamp":2394423323565,"id":529,"parentId":514,"tags":{},"startTime":1780887391871,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":6617,"timestamp":2394423339914,"id":557,"parentId":514,"tags":{},"startTime":1780887391887,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":27602,"timestamp":2394423320095,"id":514,"parentId":496,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_interop_require_default.js","layer":"ssr"},"startTime":1780887391867,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":21573,"timestamp":2394423332728,"id":534,"parentId":533,"tags":{},"startTime":1780887391880,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":21617,"timestamp":2394423332690,"id":533,"parentId":516,"tags":{},"startTime":1780887391880,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":35310,"timestamp":2394423320801,"id":516,"parentId":497,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/segment.js","layer":"ssr"},"startTime":1780887391868,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":23464,"timestamp":2394423332759,"id":536,"parentId":535,"tags":{},"startTime":1780887391880,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":23493,"timestamp":2394423332734,"id":535,"parentId":518,"tags":{},"startTime":1780887391880,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":35918,"timestamp":2394423321348,"id":518,"parentId":497,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/add-base-path.js","layer":"ssr"},"startTime":1780887391868,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":24654,"timestamp":2394423332671,"id":532,"parentId":531,"tags":{},"startTime":1780887391880,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":25249,"timestamp":2394423332550,"id":531,"parentId":515,"tags":{},"startTime":1780887391880,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":39713,"timestamp":2394423320490,"id":515,"parentId":499,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/search-params.js","layer":"ssr"},"startTime":1780887391868,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":33176,"timestamp":2394423332808,"id":540,"parentId":539,"tags":{},"startTime":1780887391880,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":33214,"timestamp":2394423332788,"id":539,"parentId":520,"tags":{},"startTime":1780887391880,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":53903,"timestamp":2394423321428,"id":520,"parentId":496,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/is-next-router-error.js","layer":"ssr"},"startTime":1780887391868,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":42811,"timestamp":2394423332784,"id":538,"parentId":537,"tags":{},"startTime":1780887391880,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":42842,"timestamp":2394423332763,"id":537,"parentId":519,"tags":{},"startTime":1780887391880,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":66011,"timestamp":2394423321400,"id":519,"parentId":496,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/navigation.js","layer":"ssr"},"startTime":1780887391868,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":54685,"timestamp":2394423332859,"id":544,"parentId":543,"tags":{},"startTime":1780887391880,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":54713,"timestamp":2394423332835,"id":543,"parentId":522,"tags":{},"startTime":1780887391880,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":67469,"timestamp":2394423321762,"id":522,"parentId":497,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/redirect-boundary.js","layer":"ssr"},"startTime":1780887391869,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":56432,"timestamp":2394423332831,"id":542,"parentId":541,"tags":{},"startTime":1780887391880,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":56452,"timestamp":2394423332812,"id":541,"parentId":521,"tags":{},"startTime":1780887391880,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":68485,"timestamp":2394423321594,"id":521,"parentId":497,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/use-reducer-with-devtools.js","layer":"ssr"},"startTime":1780887391869,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":57188,"timestamp":2394423332906,"id":548,"parentId":547,"tags":{},"startTime":1780887391880,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":57208,"timestamp":2394423332887,"id":547,"parentId":524,"tags":{},"startTime":1780887391880,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":68369,"timestamp":2394423321985,"id":524,"parentId":497,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/app-router-headers.js","layer":"ssr"},"startTime":1780887391869,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":58939,"timestamp":2394423332929,"id":550,"parentId":549,"tags":{},"startTime":1780887391880,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":58963,"timestamp":2394423332910,"id":549,"parentId":525,"tags":{},"startTime":1780887391880,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":70224,"timestamp":2394423322127,"id":525,"parentId":497,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/is-bot.js","layer":"ssr"},"startTime":1780887391869,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":59479,"timestamp":2394423332884,"id":546,"parentId":545,"tags":{},"startTime":1780887391880,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":59501,"timestamp":2394423332863,"id":545,"parentId":523,"tags":{},"startTime":1780887391880,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":70699,"timestamp":2394423321912,"id":523,"parentId":497,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/unresolved-thenable.js","layer":"ssr"},"startTime":1780887391869,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":74856,"timestamp":2394423332952,"id":552,"parentId":551,"tags":{},"startTime":1780887391880,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":74883,"timestamp":2394423332934,"id":551,"parentId":526,"tags":{},"startTime":1780887391880,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":108303,"timestamp":2394423322226,"id":526,"parentId":497,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/app-router-announcer.js","layer":"ssr"},"startTime":1780887391869,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":97410,"timestamp":2394423333227,"id":556,"parentId":555,"tags":{},"startTime":1780887391880,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":97475,"timestamp":2394423333196,"id":555,"parentId":528,"tags":{},"startTime":1780887391880,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":110365,"timestamp":2394423322390,"id":528,"parentId":497,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/has-base-path.js","layer":"ssr"},"startTime":1780887391869,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":99591,"timestamp":2394423333188,"id":554,"parentId":553,"tags":{},"startTime":1780887391880,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":99825,"timestamp":2394423332956,"id":553,"parentId":527,"tags":{},"startTime":1780887391880,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":110784,"timestamp":2394423322338,"id":527,"parentId":497,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/remove-base-path.js","layer":"ssr"},"startTime":1780887391869,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":68823,"timestamp":2394423364320,"id":567,"parentId":566,"tags":{},"startTime":1780887391911,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":68872,"timestamp":2394423364273,"id":566,"parentId":558,"tags":{},"startTime":1780887391911,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":70664,"timestamp":2394423362650,"id":558,"parentId":497,"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":1780887391910,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":69040,"timestamp":2394423364358,"id":573,"parentId":572,"tags":{},"startTime":1780887391911,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":69049,"timestamp":2394423364350,"id":572,"parentId":561,"tags":{},"startTime":1780887391911,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":70006,"timestamp":2394423363608,"id":561,"parentId":497,"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":1780887391911,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":69286,"timestamp":2394423364338,"id":569,"parentId":568,"tags":{},"startTime":1780887391911,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":69298,"timestamp":2394423364326,"id":568,"parentId":559,"tags":{},"startTime":1780887391911,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":70944,"timestamp":2394423363414,"id":559,"parentId":497,"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":1780887391910,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":70023,"timestamp":2394423364348,"id":571,"parentId":570,"tags":{},"startTime":1780887391911,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":70033,"timestamp":2394423364339,"id":570,"parentId":560,"tags":{},"startTime":1780887391911,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":71220,"timestamp":2394423363571,"id":560,"parentId":497,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/router-reducer-types.js","layer":"ssr"},"startTime":1780887391911,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":37822,"timestamp":2394423399507,"id":577,"parentId":576,"tags":{},"startTime":1780887391947,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":37894,"timestamp":2394423399441,"id":576,"parentId":574,"tags":{},"startTime":1780887391947,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":42222,"timestamp":2394423398076,"id":574,"parentId":500,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/not-found.js","layer":"ssr"},"startTime":1780887391945,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":40883,"timestamp":2394423399529,"id":579,"parentId":578,"tags":{},"startTime":1780887391947,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":40898,"timestamp":2394423399516,"id":578,"parentId":575,"tags":{},"startTime":1780887391947,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":42366,"timestamp":2394423398189,"id":575,"parentId":500,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/utils/warn-once.js","layer":"ssr"},"startTime":1780887391945,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":302,"timestamp":2394423448034,"id":587,"parentId":580,"tags":{},"startTime":1780887391995,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":347,"timestamp":2394423448042,"id":588,"parentId":581,"tags":{},"startTime":1780887391995,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":6203,"timestamp":2394423448349,"id":599,"parentId":580,"tags":{},"startTime":1780887391995,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":6162,"timestamp":2394423448397,"id":600,"parentId":581,"tags":{},"startTime":1780887391995,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":14419,"timestamp":2394423441097,"id":580,"parentId":515,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/app-render/dynamic-rendering.js","layer":"ssr"},"startTime":1780887391988,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":10234,"timestamp":2394423445485,"id":581,"parentId":515,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/web/spec-extension/adapters/reflect.js","layer":"ssr"},"startTime":1780887391993,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":140049,"timestamp":2394423323591,"id":530,"parentId":517,"tags":{},"startTime":1780887391871,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":46,"timestamp":2394423463656,"id":601,"parentId":517,"tags":{},"startTime":1780887392011,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":143435,"timestamp":2394423320970,"id":517,"parentId":501,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_interop_require_wildcard.js","layer":"ssr"},"startTime":1780887391868,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":16290,"timestamp":2394423448212,"id":596,"parentId":595,"tags":{},"startTime":1780887391995,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":16300,"timestamp":2394423448204,"id":595,"parentId":585,"tags":{},"startTime":1780887391995,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":17746,"timestamp":2394423446945,"id":585,"parentId":498,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/handle-smooth-scroll.js","layer":"ssr"},"startTime":1780887391994,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":16510,"timestamp":2394423448191,"id":592,"parentId":591,"tags":{},"startTime":1780887391995,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":16523,"timestamp":2394423448179,"id":591,"parentId":583,"tags":{},"startTime":1780887391995,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":18207,"timestamp":2394423446741,"id":583,"parentId":498,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/match-segments.js","layer":"ssr"},"startTime":1780887391994,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":16848,"timestamp":2394423448202,"id":594,"parentId":593,"tags":{},"startTime":1780887391995,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":16859,"timestamp":2394423448193,"id":593,"parentId":584,"tags":{},"startTime":1780887391995,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":19588,"timestamp":2394423446885,"id":584,"parentId":498,"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":1780887391994,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":20035,"timestamp":2394423448222,"id":598,"parentId":597,"tags":{},"startTime":1780887391995,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":20057,"timestamp":2394423448214,"id":597,"parentId":586,"tags":{},"startTime":1780887391995,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":22498,"timestamp":2394423447022,"id":586,"parentId":498,"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":1780887391994,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":21392,"timestamp":2394423448172,"id":590,"parentId":589,"tags":{},"startTime":1780887391995,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":21441,"timestamp":2394423448124,"id":589,"parentId":582,"tags":{},"startTime":1780887391995,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":24352,"timestamp":2394423446291,"id":582,"parentId":498,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/fetch-server-response.js","layer":"ssr"},"startTime":1780887391993,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":127616,"timestamp":2394423364149,"id":565,"parentId":563,"tags":{},"startTime":1780887391911,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":40,"timestamp":2394423491783,"id":605,"parentId":563,"tags":{},"startTime":1780887392039,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":128771,"timestamp":2394423363855,"id":563,"parentId":447,"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":1780887391911,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":128830,"timestamp":2394423364111,"id":564,"parentId":562,"tags":{},"startTime":1780887391911,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":102,"timestamp":2394423492979,"id":606,"parentId":562,"tags":{},"startTime":1780887392040,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":129881,"timestamp":2394423363633,"id":562,"parentId":444,"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":1780887391911,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":348,"timestamp":2394423497273,"id":617,"parentId":607,"tags":{},"startTime":1780887392044,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":119,"timestamp":2394423497632,"id":636,"parentId":607,"tags":{},"startTime":1780887392045,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":1686,"timestamp":2394423496861,"id":607,"parentId":580,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/url.js","layer":"ssr"},"startTime":1780887392044,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":8985,"timestamp":2394423491640,"id":604,"parentId":603,"tags":{},"startTime":1780887392039,"traceId":"9b70e6dfdb6b3605"}] +[{"name":"build-module-js","duration":19740,"timestamp":2394423687835,"id":806,"parentId":771,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/add-locale.js","layer":"ssr"},"startTime":1780887392235,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":25637,"timestamp":2394423688469,"id":820,"parentId":819,"tags":{},"startTime":1780887392236,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":25649,"timestamp":2394423688461,"id":819,"parentId":809,"tags":{},"startTime":1780887392236,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":26634,"timestamp":2394423687909,"id":809,"parentId":771,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/is-local-url.js","layer":"ssr"},"startTime":1780887392235,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":26093,"timestamp":2394423688460,"id":818,"parentId":817,"tags":{},"startTime":1780887392236,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":26102,"timestamp":2394423688452,"id":817,"parentId":808,"tags":{},"startTime":1780887392236,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":26946,"timestamp":2394423687886,"id":808,"parentId":771,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/get-domain-locale.js","layer":"ssr"},"startTime":1780887392235,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":31399,"timestamp":2394423683467,"id":800,"parentId":799,"tags":{},"startTime":1780887392231,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":31412,"timestamp":2394423683456,"id":799,"parentId":794,"tags":{},"startTime":1780887392231,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":32975,"timestamp":2394423683116,"id":794,"parentId":747,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/ppr-navigations.js","layer":"ssr"},"startTime":1780887392230,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":27623,"timestamp":2394423688477,"id":822,"parentId":821,"tags":{},"startTime":1780887392236,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":27631,"timestamp":2394423688470,"id":821,"parentId":810,"tags":{},"startTime":1780887392236,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":29113,"timestamp":2394423687929,"id":810,"parentId":771,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/format-url.js","layer":"ssr"},"startTime":1780887392235,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":1691,"timestamp":2394423720430,"id":825,"parentId":824,"tags":{},"startTime":1780887392267,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":1747,"timestamp":2394423720378,"id":824,"parentId":823,"tags":{},"startTime":1780887392267,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":2207,"timestamp":2394423720201,"id":823,"parentId":805,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/index.js","layer":"ssr"},"startTime":1780887392267,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":2060,"timestamp":2394423721963,"id":833,"parentId":832,"tags":{},"startTime":1780887392269,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":2090,"timestamp":2394423721936,"id":832,"parentId":827,"tags":{},"startTime":1780887392269,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":2621,"timestamp":2394423721786,"id":827,"parentId":805,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/querystring.js","layer":"ssr"},"startTime":1780887392269,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":2621,"timestamp":2394423722008,"id":837,"parentId":836,"tags":{},"startTime":1780887392269,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":2638,"timestamp":2394423721992,"id":836,"parentId":829,"tags":{},"startTime":1780887392269,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":2921,"timestamp":2394423721850,"id":829,"parentId":805,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/omit.js","layer":"ssr"},"startTime":1780887392269,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":2848,"timestamp":2394423721931,"id":831,"parentId":830,"tags":{},"startTime":1780887392269,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":2901,"timestamp":2394423721878,"id":830,"parentId":826,"tags":{},"startTime":1780887392269,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":3333,"timestamp":2394423721694,"id":826,"parentId":807,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/request-idle-callback.js","layer":"ssr"},"startTime":1780887392269,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":3044,"timestamp":2394423721990,"id":835,"parentId":834,"tags":{},"startTime":1780887392269,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":3069,"timestamp":2394423721966,"id":834,"parentId":828,"tags":{},"startTime":1780887392269,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":3530,"timestamp":2394423721821,"id":828,"parentId":805,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/interpolate-as.js","layer":"ssr"},"startTime":1780887392269,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":3005,"timestamp":2394423725620,"id":840,"parentId":839,"tags":{},"startTime":1780887392273,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":3062,"timestamp":2394423725571,"id":839,"parentId":838,"tags":{},"startTime":1780887392273,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":1790,"timestamp":2394423728156,"id":846,"parentId":845,"tags":{},"startTime":1780887392275,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":1808,"timestamp":2394423728145,"id":845,"parentId":842,"tags":{},"startTime":1780887392275,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":2196,"timestamp":2394423728017,"id":842,"parentId":823,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/is-dynamic.js","layer":"ssr"},"startTime":1780887392275,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":2829,"timestamp":2394423728142,"id":844,"parentId":843,"tags":{},"startTime":1780887392275,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":2871,"timestamp":2394423728100,"id":843,"parentId":841,"tags":{},"startTime":1780887392275,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":3638,"timestamp":2394423727814,"id":841,"parentId":823,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/sorted-routes.js","layer":"ssr"},"startTime":1780887392275,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-tsx","duration":6173,"timestamp":2394423725457,"id":838,"parentId":685,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/change-password-dialog.tsx","layer":"ssr"},"startTime":1780887392273,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":2070,"timestamp":2394423732091,"id":852,"parentId":851,"tags":{},"startTime":1780887392279,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":2099,"timestamp":2394423732065,"id":851,"parentId":849,"tags":{},"startTime":1780887392279,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":2648,"timestamp":2394423731815,"id":849,"parentId":828,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/route-matcher.js","layer":"ssr"},"startTime":1780887392279,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":2857,"timestamp":2394423732104,"id":854,"parentId":853,"tags":{},"startTime":1780887392279,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":2869,"timestamp":2394423732093,"id":853,"parentId":850,"tags":{},"startTime":1780887392279,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":3842,"timestamp":2394423731862,"id":850,"parentId":828,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/route-regex.js","layer":"ssr"},"startTime":1780887392279,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":5290,"timestamp":2394423731590,"id":848,"parentId":847,"tags":{},"startTime":1780887392279,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":40,"timestamp":2394423736893,"id":855,"parentId":847,"tags":{},"startTime":1780887392284,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":5542,"timestamp":2394423731508,"id":847,"parentId":771,"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":1780887392279,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":49,"timestamp":2394423737646,"id":857,"parentId":856,"tags":{},"startTime":1780887392285,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":220,"timestamp":2394423737700,"id":858,"parentId":856,"tags":{},"startTime":1780887392285,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":963,"timestamp":2394423737472,"id":856,"parentId":850,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/constants.js","layer":"ssr"},"startTime":1780887392285,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":800,"timestamp":2394423738948,"id":862,"parentId":860,"tags":{},"startTime":1780887392286,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":26,"timestamp":2394423739752,"id":866,"parentId":860,"tags":{},"startTime":1780887392287,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":1068,"timestamp":2394423738888,"id":860,"parentId":749,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_class_private_field_loose_base.js","layer":"ssr"},"startTime":1780887392286,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":1294,"timestamp":2394423738934,"id":861,"parentId":859,"tags":{},"startTime":1780887392286,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":46,"timestamp":2394423740244,"id":867,"parentId":859,"tags":{},"startTime":1780887392287,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":1853,"timestamp":2394423738826,"id":859,"parentId":749,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_class_private_field_loose_key.js","layer":"ssr"},"startTime":1780887392286,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":1700,"timestamp":2394423739149,"id":865,"parentId":864,"tags":{},"startTime":1780887392286,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":1731,"timestamp":2394423739119,"id":864,"parentId":863,"tags":{},"startTime":1780887392286,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":2447,"timestamp":2394423739089,"id":863,"parentId":850,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/escape-regexp.js","layer":"ssr"},"startTime":1780887392286,"traceId":"9b70e6dfdb6b3605"},{"name":"make","duration":1254893,"timestamp":2394422490548,"id":21,"parentId":19,"tags":{},"startTime":1780887391038,"traceId":"9b70e6dfdb6b3605"},{"name":"get-entries","duration":730,"timestamp":2394423747544,"id":869,"parentId":868,"tags":{},"startTime":1780887392295,"traceId":"9b70e6dfdb6b3605"},{"name":"node-file-trace-plugin","duration":47626,"timestamp":2394423750879,"id":870,"parentId":868,"tags":{"traceEntryCount":"32"},"startTime":1780887392298,"traceId":"9b70e6dfdb6b3605"},{"name":"collect-traced-files","duration":377,"timestamp":2394423798513,"id":871,"parentId":868,"tags":{},"startTime":1780887392346,"traceId":"9b70e6dfdb6b3605"},{"name":"finish-modules","duration":51484,"timestamp":2394423747408,"id":868,"parentId":20,"tags":{},"startTime":1780887392294,"traceId":"9b70e6dfdb6b3605"},{"name":"chunk-graph","duration":7925,"timestamp":2394423814786,"id":873,"parentId":872,"tags":{},"startTime":1780887392362,"traceId":"9b70e6dfdb6b3605"},{"name":"optimize-modules","duration":11,"timestamp":2394423822776,"id":875,"parentId":872,"tags":{},"startTime":1780887392370,"traceId":"9b70e6dfdb6b3605"},{"name":"optimize-chunks","duration":15448,"timestamp":2394423822832,"id":876,"parentId":872,"tags":{},"startTime":1780887392370,"traceId":"9b70e6dfdb6b3605"},{"name":"optimize-tree","duration":14,"timestamp":2394423838335,"id":877,"parentId":872,"tags":{},"startTime":1780887392385,"traceId":"9b70e6dfdb6b3605"},{"name":"optimize-chunk-modules","duration":13800,"timestamp":2394423838392,"id":878,"parentId":872,"tags":{},"startTime":1780887392385,"traceId":"9b70e6dfdb6b3605"},{"name":"optimize","duration":29476,"timestamp":2394423822750,"id":874,"parentId":872,"tags":{},"startTime":1780887392370,"traceId":"9b70e6dfdb6b3605"},{"name":"module-hash","duration":14195,"timestamp":2394423882140,"id":879,"parentId":872,"tags":{},"startTime":1780887392429,"traceId":"9b70e6dfdb6b3605"},{"name":"code-generation","duration":60303,"timestamp":2394423896396,"id":880,"parentId":872,"tags":{},"startTime":1780887392443,"traceId":"9b70e6dfdb6b3605"},{"name":"hash","duration":4585,"timestamp":2394423959950,"id":881,"parentId":872,"tags":{},"startTime":1780887392507,"traceId":"9b70e6dfdb6b3605"},{"name":"code-generation-jobs","duration":304,"timestamp":2394423964534,"id":882,"parentId":872,"tags":{},"startTime":1780887392512,"traceId":"9b70e6dfdb6b3605"},{"name":"module-assets","duration":137,"timestamp":2394423964810,"id":883,"parentId":872,"tags":{},"startTime":1780887392512,"traceId":"9b70e6dfdb6b3605"},{"name":"create-chunk-assets","duration":5249,"timestamp":2394423964951,"id":884,"parentId":872,"tags":{},"startTime":1780887392512,"traceId":"9b70e6dfdb6b3605"},{"name":"minify-js","duration":40935,"timestamp":2394423992870,"id":889,"parentId":885,"tags":{"name":"../pages/_document.js","cache":"MISS"},"startTime":1780887392540,"traceId":"9b70e6dfdb6b3605"},{"name":"minify-js","duration":43360,"timestamp":2394423990467,"id":887,"parentId":885,"tags":{"name":"../pages/_app.js","cache":"MISS"},"startTime":1780887392538,"traceId":"9b70e6dfdb6b3605"},{"name":"minify-js","duration":42899,"timestamp":2394423990939,"id":888,"parentId":885,"tags":{"name":"../pages/_error.js","cache":"MISS"},"startTime":1780887392538,"traceId":"9b70e6dfdb6b3605"},{"name":"minify-js","duration":46914,"timestamp":2394423987020,"id":886,"parentId":885,"tags":{"name":"../app/_not-found/page.js","cache":"MISS"},"startTime":1780887392534,"traceId":"9b70e6dfdb6b3605"},{"name":"minify-js","duration":37242,"timestamp":2394423996712,"id":892,"parentId":885,"tags":{"name":"../app/(auth)/admin/page.js","cache":"MISS"},"startTime":1780887392544,"traceId":"9b70e6dfdb6b3605"},{"name":"minify-js","duration":40821,"timestamp":2394423993183,"id":890,"parentId":885,"tags":{"name":"../app/(auth)/dashboard/page.js","cache":"MISS"},"startTime":1780887392540,"traceId":"9b70e6dfdb6b3605"},{"name":"minify-js","duration":36827,"timestamp":2394423997200,"id":893,"parentId":885,"tags":{"name":"../app/(auth)/chat/page.js","cache":"MISS"},"startTime":1780887392544,"traceId":"9b70e6dfdb6b3605"},{"name":"minify-js","duration":34154,"timestamp":2394423999880,"id":896,"parentId":885,"tags":{"name":"../app/(auth)/api/chat/stream/route.js","cache":"MISS"},"startTime":1780887392547,"traceId":"9b70e6dfdb6b3605"},{"name":"minify-js","duration":34640,"timestamp":2394423999476,"id":895,"parentId":885,"tags":{"name":"../app/(auth)/admin/users/page.js","cache":"MISS"},"startTime":1780887392547,"traceId":"9b70e6dfdb6b3605"},{"name":"minify-js","duration":39186,"timestamp":2394423994979,"id":891,"parentId":885,"tags":{"name":"../app/(auth)/recommendations/page.js","cache":"MISS"},"startTime":1780887392542,"traceId":"9b70e6dfdb6b3605"},{"name":"minify-js","duration":36052,"timestamp":2394423998133,"id":894,"parentId":885,"tags":{"name":"../app/(auth)/sectors/[name]/page.js","cache":"MISS"},"startTime":1780887392545,"traceId":"9b70e6dfdb6b3605"},{"name":"minify-js","duration":34226,"timestamp":2394423999992,"id":897,"parentId":885,"tags":{"name":"../app/(auth)/sectors/page.js","cache":"MISS"},"startTime":1780887392547,"traceId":"9b70e6dfdb6b3605"},{"name":"minify-js","duration":33550,"timestamp":2394424001006,"id":900,"parentId":885,"tags":{"name":"../app/(auth)/admin/invites/page.js","cache":"MISS"},"startTime":1780887392548,"traceId":"9b70e6dfdb6b3605"},{"name":"minify-js","duration":35226,"timestamp":2394424000754,"id":899,"parentId":885,"tags":{"name":"../app/(auth)/sentiment/page.js","cache":"MISS"},"startTime":1780887392548,"traceId":"9b70e6dfdb6b3605"},{"name":"minify-js","duration":37370,"timestamp":2394424000322,"id":898,"parentId":885,"tags":{"name":"../app/(auth)/stock/[code]/page.js","cache":"MISS"},"startTime":1780887392547,"traceId":"9b70e6dfdb6b3605"},{"name":"minify-js","duration":36874,"timestamp":2394424003200,"id":904,"parentId":885,"tags":{"name":"../webpack-runtime.js","cache":"MISS"},"startTime":1780887392550,"traceId":"9b70e6dfdb6b3605"},{"name":"minify-js","duration":38987,"timestamp":2394424001164,"id":901,"parentId":885,"tags":{"name":"../app/(auth)/watchlists/page.js","cache":"MISS"},"startTime":1780887392548,"traceId":"9b70e6dfdb6b3605"},{"name":"minify-js","duration":39918,"timestamp":2394424002286,"id":903,"parentId":885,"tags":{"name":"../app/(public)/page.js","cache":"MISS"},"startTime":1780887392549,"traceId":"9b70e6dfdb6b3605"},{"name":"minify-js","duration":41762,"timestamp":2394424001688,"id":902,"parentId":885,"tags":{"name":"../app/(public)/login/page.js","cache":"MISS"},"startTime":1780887392549,"traceId":"9b70e6dfdb6b3605"},{"name":"minify-js","duration":50295,"timestamp":2394424007014,"id":907,"parentId":885,"tags":{"name":"434.js","cache":"MISS"},"startTime":1780887392554,"traceId":"9b70e6dfdb6b3605"},{"name":"minify-js","duration":53134,"timestamp":2394424007392,"id":908,"parentId":885,"tags":{"name":"682.js","cache":"MISS"},"startTime":1780887392554,"traceId":"9b70e6dfdb6b3605"},{"name":"minify-js","duration":69665,"timestamp":2394424007927,"id":909,"parentId":885,"tags":{"name":"186.js","cache":"MISS"},"startTime":1780887392555,"traceId":"9b70e6dfdb6b3605"},{"name":"minify-js","duration":73816,"timestamp":2394424003849,"id":905,"parentId":885,"tags":{"name":"948.js","cache":"MISS"},"startTime":1780887392551,"traceId":"9b70e6dfdb6b3605"},{"name":"minify-js","duration":94312,"timestamp":2394424005427,"id":906,"parentId":885,"tags":{"name":"720.js","cache":"MISS"},"startTime":1780887392552,"traceId":"9b70e6dfdb6b3605"},{"name":"terser-webpack-plugin-optimize","duration":120137,"timestamp":2394423979620,"id":885,"parentId":19,"tags":{"compilationName":"server","swcMinify":true},"startTime":1780887392527,"traceId":"9b70e6dfdb6b3605"},{"name":"css-minimizer-plugin","duration":158,"timestamp":2394424099888,"id":910,"parentId":19,"tags":{},"startTime":1780887392647,"traceId":"9b70e6dfdb6b3605"}] +[{"name":"build-module-js","duration":11435,"timestamp":2394423571980,"id":716,"parentId":643,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/apply-flight-data.js","layer":"ssr"},"startTime":1780887392119,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":11180,"timestamp":2394423572255,"id":724,"parentId":723,"tags":{},"startTime":1780887392119,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":11191,"timestamp":2394423572245,"id":723,"parentId":717,"tags":{},"startTime":1780887392119,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":11880,"timestamp":2394423572005,"id":717,"parentId":616,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/router-reducer.js","layer":"ssr"},"startTime":1780887392119,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":11633,"timestamp":2394423572264,"id":726,"parentId":725,"tags":{},"startTime":1780887392119,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":11643,"timestamp":2394423572256,"id":725,"parentId":718,"tags":{},"startTime":1780887392119,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":12175,"timestamp":2394423572025,"id":718,"parentId":642,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/prefetch-reducer.js","layer":"ssr"},"startTime":1780887392119,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":10574,"timestamp":2394423573634,"id":733,"parentId":732,"tags":{},"startTime":1780887392121,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":10598,"timestamp":2394423573611,"id":732,"parentId":729,"tags":{},"startTime":1780887392121,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":11042,"timestamp":2394423573329,"id":729,"parentId":615,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/lazy-dynamic/bailout-to-csr.js","layer":"ssr"},"startTime":1780887392120,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":26556,"timestamp":2394423558487,"id":687,"parentId":684,"tags":{},"startTime":1780887392106,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":32,"timestamp":2394423585050,"id":737,"parentId":684,"tags":{},"startTime":1780887392132,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":27094,"timestamp":2394423558064,"id":684,"parentId":498,"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":1780887392105,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-tsx","duration":29674,"timestamp":2394423558188,"id":685,"parentId":489,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/user-menu.tsx","layer":"ssr"},"startTime":1780887392105,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-tsx","duration":29625,"timestamp":2394423558245,"id":686,"parentId":489,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/nav.tsx","layer":"ssr"},"startTime":1780887392105,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":5109,"timestamp":2394423582781,"id":736,"parentId":735,"tags":{},"startTime":1780887392130,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":5201,"timestamp":2394423582690,"id":735,"parentId":734,"tags":{},"startTime":1780887392130,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":5448,"timestamp":2394423582580,"id":734,"parentId":693,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/page-path/ensure-leading-slash.js","layer":"ssr"},"startTime":1780887392130,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-ts","duration":28834,"timestamp":2394423563662,"id":696,"parentId":487,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/lib/api.ts","layer":"ssr"},"startTime":1780887392111,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-ts","duration":28764,"timestamp":2394423563744,"id":698,"parentId":449,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/lib/utils.ts","layer":"ssr"},"startTime":1780887392111,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-ts","duration":28809,"timestamp":2394423563705,"id":697,"parentId":448,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/lib/markdown.ts","layer":"ssr"},"startTime":1780887392111,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":19069,"timestamp":2394423573558,"id":731,"parentId":728,"tags":{},"startTime":1780887392121,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":50,"timestamp":2394423592637,"id":740,"parentId":728,"tags":{},"startTime":1780887392140,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":19557,"timestamp":2394423573266,"id":728,"parentId":452,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/api/navigation.js","layer":"ssr"},"startTime":1780887392120,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":19297,"timestamp":2394423573532,"id":730,"parentId":727,"tags":{},"startTime":1780887392121,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":23,"timestamp":2394423592833,"id":741,"parentId":727,"tags":{},"startTime":1780887392140,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":19849,"timestamp":2394423573198,"id":727,"parentId":444,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/api/link.js","layer":"ssr"},"startTime":1780887392120,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":20955,"timestamp":2394423572152,"id":720,"parentId":715,"tags":{},"startTime":1780887392119,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":52,"timestamp":2394423593122,"id":742,"parentId":715,"tags":{},"startTime":1780887392140,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":21516,"timestamp":2394423571930,"id":715,"parentId":501,"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":1780887392119,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":21318,"timestamp":2394423572138,"id":719,"parentId":714,"tags":{},"startTime":1780887392119,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":33,"timestamp":2394423593462,"id":743,"parentId":714,"tags":{},"startTime":1780887392141,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":21903,"timestamp":2394423571843,"id":714,"parentId":497,"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":1780887392119,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":11244,"timestamp":2394423589452,"id":739,"parentId":738,"tags":{},"startTime":1780887392137,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":98,"timestamp":2394423600731,"id":770,"parentId":738,"tags":{},"startTime":1780887392148,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":12554,"timestamp":2394423588764,"id":738,"parentId":582,"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":1780887392136,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":2890,"timestamp":2394423599770,"id":761,"parentId":760,"tags":{},"startTime":1780887392147,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":2901,"timestamp":2394423599763,"id":760,"parentId":749,"tags":{},"startTime":1780887392147,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":3955,"timestamp":2394423599538,"id":749,"parentId":718,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/promise-queue.js","layer":"ssr"},"startTime":1780887392147,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":3787,"timestamp":2394423599727,"id":755,"parentId":754,"tags":{},"startTime":1780887392147,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":3859,"timestamp":2394423599655,"id":754,"parentId":746,"tags":{},"startTime":1780887392147,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":4607,"timestamp":2394423599299,"id":746,"parentId":716,"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":1780887392146,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":4153,"timestamp":2394423599762,"id":759,"parentId":758,"tags":{},"startTime":1780887392147,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":4163,"timestamp":2394423599752,"id":758,"parentId":748,"tags":{},"startTime":1780887392147,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":4848,"timestamp":2394423599512,"id":748,"parentId":717,"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":1780887392147,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":7069,"timestamp":2394423599751,"id":757,"parentId":756,"tags":{},"startTime":1780887392147,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":7091,"timestamp":2394423599732,"id":756,"parentId":747,"tags":{},"startTime":1780887392147,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":9361,"timestamp":2394423599451,"id":747,"parentId":717,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/navigate-reducer.js","layer":"ssr"},"startTime":1780887392147,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":9037,"timestamp":2394423599788,"id":765,"parentId":764,"tags":{},"startTime":1780887392147,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":9045,"timestamp":2394423599780,"id":764,"parentId":751,"tags":{},"startTime":1780887392147,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":9970,"timestamp":2394423599582,"id":751,"parentId":717,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/restore-reducer.js","layer":"ssr"},"startTime":1780887392147,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":15825,"timestamp":2394423594717,"id":745,"parentId":744,"tags":{},"startTime":1780887392142,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":40,"timestamp":2394423610553,"id":774,"parentId":744,"tags":{},"startTime":1780887392158,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":17440,"timestamp":2394423594617,"id":744,"parentId":519,"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":1780887392142,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":12296,"timestamp":2394423599779,"id":763,"parentId":762,"tags":{},"startTime":1780887392147,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":12304,"timestamp":2394423599772,"id":762,"parentId":750,"tags":{},"startTime":1780887392147,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":32245,"timestamp":2394423599562,"id":750,"parentId":717,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/refresh-reducer.js","layer":"ssr"},"startTime":1780887392147,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":32052,"timestamp":2394423599796,"id":767,"parentId":766,"tags":{},"startTime":1780887392147,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":32061,"timestamp":2394423599789,"id":766,"parentId":752,"tags":{},"startTime":1780887392147,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":33947,"timestamp":2394423599605,"id":752,"parentId":717,"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":1780887392147,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":33774,"timestamp":2394423599804,"id":769,"parentId":768,"tags":{},"startTime":1780887392147,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":33783,"timestamp":2394423599797,"id":768,"parentId":753,"tags":{},"startTime":1780887392147,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":43964,"timestamp":2394423599627,"id":753,"parentId":717,"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":1780887392147,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":50719,"timestamp":2394423602612,"id":773,"parentId":772,"tags":{},"startTime":1780887392150,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":50752,"timestamp":2394423602584,"id":772,"parentId":771,"tags":{},"startTime":1780887392150,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":53776,"timestamp":2394423602323,"id":771,"parentId":727,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/link.js","layer":"ssr"},"startTime":1780887392149,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":4600,"timestamp":2394423678991,"id":784,"parentId":783,"tags":{},"startTime":1780887392226,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":4622,"timestamp":2394423678977,"id":783,"parentId":776,"tags":{},"startTime":1780887392226,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":5731,"timestamp":2394423678713,"id":776,"parentId":746,"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":1780887392226,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":5448,"timestamp":2394423679011,"id":788,"parentId":787,"tags":{},"startTime":1780887392226,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":5457,"timestamp":2394423679003,"id":787,"parentId":778,"tags":{},"startTime":1780887392226,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":5885,"timestamp":2394423678778,"id":778,"parentId":748,"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":1780887392226,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":5698,"timestamp":2394423678974,"id":782,"parentId":781,"tags":{},"startTime":1780887392226,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":5743,"timestamp":2394423678929,"id":781,"parentId":775,"tags":{},"startTime":1780887392226,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":6799,"timestamp":2394423678600,"id":775,"parentId":771,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/utils.js","layer":"ssr"},"startTime":1780887392226,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":6623,"timestamp":2394423679002,"id":786,"parentId":785,"tags":{},"startTime":1780887392226,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":6635,"timestamp":2394423678992,"id":785,"parentId":777,"tags":{},"startTime":1780887392226,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":7318,"timestamp":2394423678753,"id":777,"parentId":748,"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":1780887392226,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":7063,"timestamp":2394423679019,"id":790,"parentId":789,"tags":{},"startTime":1780887392226,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":7072,"timestamp":2394423679012,"id":789,"parentId":779,"tags":{},"startTime":1780887392226,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":7812,"timestamp":2394423678808,"id":779,"parentId":748,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/handle-mutable.js","layer":"ssr"},"startTime":1780887392226,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":7624,"timestamp":2394423679028,"id":792,"parentId":791,"tags":{},"startTime":1780887392226,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":7632,"timestamp":2394423679020,"id":791,"parentId":780,"tags":{},"startTime":1780887392226,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":8219,"timestamp":2394423678829,"id":780,"parentId":748,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/handle-segment-mismatch.js","layer":"ssr"},"startTime":1780887392226,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":13096,"timestamp":2394423683476,"id":802,"parentId":801,"tags":{},"startTime":1780887392231,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":13114,"timestamp":2394423683468,"id":801,"parentId":795,"tags":{},"startTime":1780887392231,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":15967,"timestamp":2394423683258,"id":795,"parentId":747,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/should-hard-navigate.js","layer":"ssr"},"startTime":1780887392230,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":16688,"timestamp":2394423683453,"id":798,"parentId":797,"tags":{},"startTime":1780887392231,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":16730,"timestamp":2394423683419,"id":797,"parentId":793,"tags":{},"startTime":1780887392230,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":22767,"timestamp":2394423683020,"id":793,"parentId":747,"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":1780887392230,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":22331,"timestamp":2394423683485,"id":804,"parentId":803,"tags":{},"startTime":1780887392231,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":22340,"timestamp":2394423683477,"id":803,"parentId":796,"tags":{},"startTime":1780887392231,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":22948,"timestamp":2394423683307,"id":796,"parentId":747,"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":1780887392230,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":17842,"timestamp":2394423688423,"id":812,"parentId":811,"tags":{},"startTime":1780887392235,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":17879,"timestamp":2394423688387,"id":811,"parentId":805,"tags":{},"startTime":1780887392235,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":19016,"timestamp":2394423687755,"id":805,"parentId":771,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/resolve-href.js","layer":"ssr"},"startTime":1780887392235,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":18330,"timestamp":2394423688450,"id":816,"parentId":815,"tags":{},"startTime":1780887392236,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":18344,"timestamp":2394423688438,"id":815,"parentId":807,"tags":{},"startTime":1780887392236,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":19357,"timestamp":2394423687862,"id":807,"parentId":771,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/use-intersection.js","layer":"ssr"},"startTime":1780887392235,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":18822,"timestamp":2394423688437,"id":814,"parentId":813,"tags":{},"startTime":1780887392236,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":18834,"timestamp":2394423688426,"id":813,"parentId":806,"tags":{},"startTime":1780887392235,"traceId":"9b70e6dfdb6b3605"}] +[{"name":"next-swc-loader","duration":9038,"timestamp":2394423491591,"id":603,"parentId":602,"tags":{},"startTime":1780887392039,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":9842,"timestamp":2394423491225,"id":602,"parentId":498,"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":1780887392038,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":9120,"timestamp":2394423497362,"id":619,"parentId":618,"tags":{},"startTime":1780887392044,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":9164,"timestamp":2394423497331,"id":618,"parentId":608,"tags":{},"startTime":1780887392044,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":13544,"timestamp":2394423496947,"id":608,"parentId":580,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/hooks-server-context.js","layer":"ssr"},"startTime":1780887392044,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":13136,"timestamp":2394423497384,"id":623,"parentId":622,"tags":{},"startTime":1780887392044,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":13145,"timestamp":2394423497376,"id":622,"parentId":610,"tags":{},"startTime":1780887392044,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":13846,"timestamp":2394423497010,"id":610,"parentId":518,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/add-path-prefix.js","layer":"ssr"},"startTime":1780887392044,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":13497,"timestamp":2394423497374,"id":621,"parentId":620,"tags":{},"startTime":1780887392044,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":13509,"timestamp":2394423497364,"id":620,"parentId":609,"tags":{},"startTime":1780887392044,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":14166,"timestamp":2394423496985,"id":609,"parentId":580,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/static-generation-bailout.js","layer":"ssr"},"startTime":1780887392044,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":13771,"timestamp":2394423497392,"id":625,"parentId":624,"tags":{},"startTime":1780887392044,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":13780,"timestamp":2394423497385,"id":624,"parentId":611,"tags":{},"startTime":1780887392044,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":14677,"timestamp":2394423497031,"id":611,"parentId":518,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/normalize-trailing-slash.js","layer":"ssr"},"startTime":1780887392044,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":15959,"timestamp":2394423497465,"id":627,"parentId":626,"tags":{},"startTime":1780887392045,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":16046,"timestamp":2394423497393,"id":626,"parentId":612,"tags":{},"startTime":1780887392044,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":25842,"timestamp":2394423497476,"id":629,"parentId":628,"tags":{},"startTime":1780887392045,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":25858,"timestamp":2394423497466,"id":628,"parentId":613,"tags":{},"startTime":1780887392045,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":28800,"timestamp":2394423497168,"id":613,"parentId":520,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/redirect.js","layer":"ssr"},"startTime":1780887392044,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":28501,"timestamp":2394423497492,"id":633,"parentId":632,"tags":{},"startTime":1780887392045,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":28510,"timestamp":2394423497485,"id":632,"parentId":615,"tags":{},"startTime":1780887392045,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":29763,"timestamp":2394423497228,"id":615,"parentId":519,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/bailout-to-client-rendering.js","layer":"ssr"},"startTime":1780887392044,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":32112,"timestamp":2394423497484,"id":631,"parentId":630,"tags":{},"startTime":1780887392045,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":32125,"timestamp":2394423497477,"id":630,"parentId":614,"tags":{},"startTime":1780887392045,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":32854,"timestamp":2394423497208,"id":614,"parentId":519,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/navigation.react-server.js","layer":"ssr"},"startTime":1780887392044,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":454,"timestamp":2394423531765,"id":666,"parentId":661,"tags":{},"startTime":1780887392079,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":1811,"timestamp":2394423532262,"id":674,"parentId":661,"tags":{},"startTime":1780887392079,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":3576,"timestamp":2394423531370,"id":661,"parentId":563,"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":1780887392078,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":38154,"timestamp":2394423497500,"id":635,"parentId":634,"tags":{},"startTime":1780887392045,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":38172,"timestamp":2394423497493,"id":634,"parentId":616,"tags":{},"startTime":1780887392045,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":39414,"timestamp":2394423497247,"id":616,"parentId":521,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/action-queue.js","layer":"ssr"},"startTime":1780887392044,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":24161,"timestamp":2394423512532,"id":650,"parentId":649,"tags":{},"startTime":1780887392060,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":24191,"timestamp":2394423512503,"id":649,"parentId":639,"tags":{},"startTime":1780887392060,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":24575,"timestamp":2394423512543,"id":652,"parentId":651,"tags":{},"startTime":1780887392060,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":24587,"timestamp":2394423512533,"id":651,"parentId":640,"tags":{},"startTime":1780887392060,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":26171,"timestamp":2394423512177,"id":640,"parentId":559,"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":1780887392059,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":25872,"timestamp":2394423512502,"id":648,"parentId":647,"tags":{},"startTime":1780887392060,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":25904,"timestamp":2394423512471,"id":647,"parentId":638,"tags":{},"startTime":1780887392060,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":27110,"timestamp":2394423512468,"id":646,"parentId":645,"tags":{},"startTime":1780887392060,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":27189,"timestamp":2394423512391,"id":645,"parentId":637,"tags":{},"startTime":1780887392059,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":27437,"timestamp":2394423512576,"id":660,"parentId":659,"tags":{},"startTime":1780887392060,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":27446,"timestamp":2394423512569,"id":659,"parentId":644,"tags":{},"startTime":1780887392060,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":27849,"timestamp":2394423512288,"id":644,"parentId":528,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/path-has-prefix.js","layer":"ssr"},"startTime":1780887392059,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":28143,"timestamp":2394423512552,"id":654,"parentId":653,"tags":{},"startTime":1780887392060,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":28152,"timestamp":2394423512543,"id":653,"parentId":641,"tags":{},"startTime":1780887392060,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":29704,"timestamp":2394423512227,"id":641,"parentId":559,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/compute-changed-path.js","layer":"ssr"},"startTime":1780887392059,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":29487,"timestamp":2394423512568,"id":658,"parentId":657,"tags":{},"startTime":1780887392060,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":29497,"timestamp":2394423512561,"id":657,"parentId":643,"tags":{},"startTime":1780887392060,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":30607,"timestamp":2394423512268,"id":643,"parentId":559,"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":1780887392059,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":30364,"timestamp":2394423512560,"id":656,"parentId":655,"tags":{},"startTime":1780887392060,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":30373,"timestamp":2394423512553,"id":655,"parentId":642,"tags":{},"startTime":1780887392060,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":32694,"timestamp":2394423512248,"id":642,"parentId":559,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/prefetch-cache-utils.js","layer":"ssr"},"startTime":1780887392059,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":13123,"timestamp":2394423531950,"id":673,"parentId":672,"tags":{},"startTime":1780887392079,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":13133,"timestamp":2394423531942,"id":672,"parentId":665,"tags":{},"startTime":1780887392079,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":13851,"timestamp":2394423531583,"id":665,"parentId":582,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/hash.js","layer":"ssr"},"startTime":1780887392079,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":368,"timestamp":2394423546479,"id":678,"parentId":675,"tags":{},"startTime":1780887392094,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":1160,"timestamp":2394423546855,"id":683,"parentId":675,"tags":{},"startTime":1780887392094,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":2556,"timestamp":2394423545964,"id":675,"parentId":602,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/helpers/interception-routes.js","layer":"ssr"},"startTime":1780887392093,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":17545,"timestamp":2394423531940,"id":671,"parentId":670,"tags":{},"startTime":1780887392079,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":17558,"timestamp":2394423531930,"id":670,"parentId":663,"tags":{},"startTime":1780887392079,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":18276,"timestamp":2394423531516,"id":663,"parentId":582,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/flight-data-helpers.js","layer":"ssr"},"startTime":1780887392079,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":17872,"timestamp":2394423531928,"id":669,"parentId":668,"tags":{},"startTime":1780887392079,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":17905,"timestamp":2394423531895,"id":668,"parentId":662,"tags":{},"startTime":1780887392079,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":18482,"timestamp":2394423531469,"id":662,"parentId":582,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/app-call-server.js","layer":"ssr"},"startTime":1780887392079,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":4335,"timestamp":2394423546693,"id":680,"parentId":679,"tags":{},"startTime":1780887392094,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":4406,"timestamp":2394423546622,"id":679,"parentId":676,"tags":{},"startTime":1780887392094,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":4479,"timestamp":2394423546727,"id":682,"parentId":681,"tags":{},"startTime":1780887392094,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":4510,"timestamp":2394423546696,"id":681,"parentId":677,"tags":{},"startTime":1780887392094,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-tsx","duration":55132,"timestamp":2394423497088,"id":612,"parentId":449,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/error-boundary.tsx","layer":"ssr"},"startTime":1780887392044,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-tsx","duration":47484,"timestamp":2394423512130,"id":639,"parentId":445,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/theme-toggle.tsx","layer":"ssr"},"startTime":1780887392059,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-tsx","duration":47551,"timestamp":2394423512077,"id":638,"parentId":446,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/stock-card.tsx","layer":"ssr"},"startTime":1780887392059,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":30922,"timestamp":2394423531769,"id":667,"parentId":664,"tags":{},"startTime":1780887392079,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":37,"timestamp":2394423562703,"id":692,"parentId":664,"tags":{},"startTime":1780887392110,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":31685,"timestamp":2394423531540,"id":664,"parentId":583,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/app-render/get-segment-param.js","layer":"ssr"},"startTime":1780887392079,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-ts","duration":56408,"timestamp":2394423511968,"id":637,"parentId":449,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/hooks/use-websocket.ts","layer":"ssr"},"startTime":1780887392059,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":11547,"timestamp":2394423558721,"id":691,"parentId":690,"tags":{},"startTime":1780887392106,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":11581,"timestamp":2394423558690,"id":690,"parentId":686,"tags":{},"startTime":1780887392106,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":7125,"timestamp":2394423564033,"id":703,"parentId":702,"tags":{},"startTime":1780887392111,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":7137,"timestamp":2394423564022,"id":702,"parentId":694,"tags":{},"startTime":1780887392111,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":7766,"timestamp":2394423563571,"id":694,"parentId":611,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/parse-path.js","layer":"ssr"},"startTime":1780887392111,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":7326,"timestamp":2394423564020,"id":701,"parentId":700,"tags":{},"startTime":1780887392111,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":7354,"timestamp":2394423563993,"id":700,"parentId":693,"tags":{},"startTime":1780887392111,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":8197,"timestamp":2394423563507,"id":693,"parentId":675,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/app-paths.js","layer":"ssr"},"startTime":1780887392111,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-tsx","duration":26951,"timestamp":2394423546072,"id":676,"parentId":455,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/capital-flow.tsx","layer":"ssr"},"startTime":1780887392093,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-tsx","duration":26866,"timestamp":2394423546165,"id":677,"parentId":455,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/kline-chart.tsx","layer":"ssr"},"startTime":1780887392093,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":11952,"timestamp":2394423564042,"id":705,"parentId":704,"tags":{},"startTime":1780887392111,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":11964,"timestamp":2394423564034,"id":704,"parentId":695,"tags":{},"startTime":1780887392111,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":13275,"timestamp":2394423563597,"id":695,"parentId":611,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/remove-trailing-slash.js","layer":"ssr"},"startTime":1780887392111,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":18202,"timestamp":2394423558687,"id":689,"parentId":688,"tags":{},"startTime":1780887392106,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":18260,"timestamp":2394423558630,"id":688,"parentId":685,"tags":{},"startTime":1780887392106,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":13253,"timestamp":2394423564071,"id":707,"parentId":706,"tags":{},"startTime":1780887392111,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":13285,"timestamp":2394423564043,"id":706,"parentId":696,"tags":{},"startTime":1780887392111,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":15702,"timestamp":2394423564134,"id":713,"parentId":712,"tags":{},"startTime":1780887392111,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":15715,"timestamp":2394423564126,"id":712,"parentId":699,"tags":{},"startTime":1780887392111,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":16437,"timestamp":2394423563781,"id":699,"parentId":613,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/redirect-status-code.js","layer":"ssr"},"startTime":1780887392111,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":16134,"timestamp":2394423564098,"id":709,"parentId":708,"tags":{},"startTime":1780887392111,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":16161,"timestamp":2394423564072,"id":708,"parentId":697,"tags":{},"startTime":1780887392111,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":16915,"timestamp":2394423564125,"id":711,"parentId":710,"tags":{},"startTime":1780887392111,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":16944,"timestamp":2394423564099,"id":710,"parentId":698,"tags":{},"startTime":1780887392111,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":10639,"timestamp":2394423572243,"id":722,"parentId":721,"tags":{},"startTime":1780887392119,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":10671,"timestamp":2394423572214,"id":721,"parentId":716,"tags":{},"startTime":1780887392119,"traceId":"9b70e6dfdb6b3605"}] +[{"name":"create-trace-assets","duration":1077,"timestamp":2394424100212,"id":911,"parentId":20,"tags":{},"startTime":1780887392647,"traceId":"9b70e6dfdb6b3605"},{"name":"seal","duration":297815,"timestamp":2394423807391,"id":872,"parentId":19,"tags":{},"startTime":1780887392354,"traceId":"9b70e6dfdb6b3605"},{"name":"webpack-compilation","duration":1623775,"timestamp":2394422487181,"id":19,"parentId":16,"tags":{"name":"server"},"startTime":1780887391034,"traceId":"9b70e6dfdb6b3605"},{"name":"emit","duration":316754,"timestamp":2394424111308,"id":912,"parentId":16,"tags":{},"startTime":1780887392658,"traceId":"9b70e6dfdb6b3605"},{"name":"webpack-close","duration":1004408,"timestamp":2394424429299,"id":913,"parentId":16,"tags":{"name":"server"},"startTime":1780887392976,"traceId":"9b70e6dfdb6b3605"},{"name":"webpack-generate-error-stats","duration":12196,"timestamp":2394425434195,"id":914,"parentId":913,"tags":{},"startTime":1780887393981,"traceId":"9b70e6dfdb6b3605"},{"name":"run-webpack-compiler","duration":4766549,"timestamp":2394420681869,"id":16,"parentId":15,"tags":{},"startTime":1780887389229,"traceId":"9b70e6dfdb6b3605"},{"name":"format-webpack-messages","duration":187,"timestamp":2394425449516,"id":915,"parentId":15,"tags":{},"startTime":1780887393997,"traceId":"9b70e6dfdb6b3605"},{"name":"worker-main-server","duration":4768360,"timestamp":2394420681693,"id":15,"parentId":1,"tags":{},"startTime":1780887389229,"traceId":"9b70e6dfdb6b3605"},{"name":"create-entrypoints","duration":262093,"timestamp":2394425958693,"id":919,"parentId":917,"tags":{},"startTime":1780887394506,"traceId":"9b70e6dfdb6b3605"},{"name":"generate-webpack-config","duration":272110,"timestamp":2394426220912,"id":920,"parentId":918,"tags":{},"startTime":1780887394768,"traceId":"9b70e6dfdb6b3605"},{"name":"make","duration":459,"timestamp":2394426539282,"id":922,"parentId":921,"tags":{},"startTime":1780887395086,"traceId":"9b70e6dfdb6b3605"},{"name":"chunk-graph","duration":346,"timestamp":2394426541119,"id":924,"parentId":923,"tags":{},"startTime":1780887395088,"traceId":"9b70e6dfdb6b3605"},{"name":"optimize-modules","duration":12,"timestamp":2394426541521,"id":926,"parentId":923,"tags":{},"startTime":1780887395089,"traceId":"9b70e6dfdb6b3605"},{"name":"optimize-chunks","duration":87,"timestamp":2394426541579,"id":927,"parentId":923,"tags":{},"startTime":1780887395089,"traceId":"9b70e6dfdb6b3605"},{"name":"optimize-tree","duration":12,"timestamp":2394426541697,"id":928,"parentId":923,"tags":{},"startTime":1780887395089,"traceId":"9b70e6dfdb6b3605"},{"name":"optimize-chunk-modules","duration":124,"timestamp":2394426541808,"id":929,"parentId":923,"tags":{},"startTime":1780887395089,"traceId":"9b70e6dfdb6b3605"},{"name":"optimize","duration":461,"timestamp":2394426541494,"id":925,"parentId":923,"tags":{},"startTime":1780887395089,"traceId":"9b70e6dfdb6b3605"},{"name":"module-hash","duration":44,"timestamp":2394426542355,"id":930,"parentId":923,"tags":{},"startTime":1780887395089,"traceId":"9b70e6dfdb6b3605"},{"name":"code-generation","duration":79,"timestamp":2394426542416,"id":931,"parentId":923,"tags":{},"startTime":1780887395089,"traceId":"9b70e6dfdb6b3605"},{"name":"hash","duration":208,"timestamp":2394426542615,"id":932,"parentId":923,"tags":{},"startTime":1780887395090,"traceId":"9b70e6dfdb6b3605"},{"name":"code-generation-jobs","duration":30,"timestamp":2394426542822,"id":933,"parentId":923,"tags":{},"startTime":1780887395090,"traceId":"9b70e6dfdb6b3605"},{"name":"module-assets","duration":38,"timestamp":2394426542840,"id":934,"parentId":923,"tags":{},"startTime":1780887395090,"traceId":"9b70e6dfdb6b3605"},{"name":"create-chunk-assets","duration":126,"timestamp":2394426542882,"id":935,"parentId":923,"tags":{},"startTime":1780887395090,"traceId":"9b70e6dfdb6b3605"},{"name":"minify-js","duration":146,"timestamp":2394426561910,"id":937,"parentId":936,"tags":{"name":"interception-route-rewrite-manifest.js","cache":"HIT"},"startTime":1780887395109,"traceId":"9b70e6dfdb6b3605"},{"name":"terser-webpack-plugin-optimize","duration":1469,"timestamp":2394426560597,"id":936,"parentId":921,"tags":{"compilationName":"edge-server","swcMinify":true},"startTime":1780887395108,"traceId":"9b70e6dfdb6b3605"},{"name":"css-minimizer-plugin","duration":83,"timestamp":2394426562112,"id":938,"parentId":921,"tags":{},"startTime":1780887395109,"traceId":"9b70e6dfdb6b3605"},{"name":"seal","duration":22587,"timestamp":2394426540948,"id":923,"parentId":921,"tags":{},"startTime":1780887395088,"traceId":"9b70e6dfdb6b3605"},{"name":"webpack-compilation","duration":27309,"timestamp":2394426536386,"id":921,"parentId":918,"tags":{"name":"edge-server"},"startTime":1780887395083,"traceId":"9b70e6dfdb6b3605"},{"name":"emit","duration":1175,"timestamp":2394426563878,"id":939,"parentId":918,"tags":{},"startTime":1780887395111,"traceId":"9b70e6dfdb6b3605"},{"name":"webpack-close","duration":293,"timestamp":2394426565226,"id":940,"parentId":918,"tags":{"name":"edge-server"},"startTime":1780887395112,"traceId":"9b70e6dfdb6b3605"},{"name":"webpack-generate-error-stats","duration":1292,"timestamp":2394426565543,"id":941,"parentId":940,"tags":{},"startTime":1780887395113,"traceId":"9b70e6dfdb6b3605"},{"name":"run-webpack-compiler","duration":608258,"timestamp":2394425958691,"id":918,"parentId":917,"tags":{},"startTime":1780887394506,"traceId":"9b70e6dfdb6b3605"},{"name":"format-webpack-messages","duration":36,"timestamp":2394426566952,"id":942,"parentId":917,"tags":{},"startTime":1780887395114,"traceId":"9b70e6dfdb6b3605"},{"name":"worker-main-edge-server","duration":608507,"timestamp":2394425958524,"id":917,"parentId":1,"tags":{},"startTime":1780887394506,"traceId":"9b70e6dfdb6b3605"},{"name":"create-entrypoints","duration":216543,"timestamp":2394426877411,"id":945,"parentId":943,"tags":{},"startTime":1780887395424,"traceId":"9b70e6dfdb6b3605"},{"name":"generate-webpack-config","duration":391965,"timestamp":2394427094058,"id":946,"parentId":944,"tags":{},"startTime":1780887395641,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module","duration":8451,"timestamp":2394427576803,"id":972,"parentId":951,"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":1780887396124,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module","duration":1431,"timestamp":2394427585378,"id":973,"parentId":956,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext-themes%2Fdist%2Findex.mjs%22%2C%22ids%22%3A%5B%22ThemeProvider%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2Fglobals.css%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fhooks%2Fuse-auth.tsx%22%2C%22ids%22%3A%5B%22AuthProvider%22%5D%7D&server=false!","layer":"app-pages-browser"},"startTime":1780887396132,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module","duration":591,"timestamp":2394427586830,"id":974,"parentId":957,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fdashboard%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!","layer":"app-pages-browser"},"startTime":1780887396134,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module","duration":742,"timestamp":2394427587437,"id":975,"parentId":958,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fauth-guard.tsx%22%2C%22ids%22%3A%5B%22AuthGuard%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fmobile-shell.tsx%22%2C%22ids%22%3A%5B%22MobileShell%22%5D%7D&server=false!","layer":"app-pages-browser"},"startTime":1780887396135,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module","duration":364,"timestamp":2394427588192,"id":976,"parentId":959,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Frecommendations%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!","layer":"app-pages-browser"},"startTime":1780887396135,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module","duration":620,"timestamp":2394427588685,"id":977,"parentId":960,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fadmin%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!","layer":"app-pages-browser"},"startTime":1780887396136,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module","duration":405,"timestamp":2394427589322,"id":978,"parentId":961,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fchat%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!","layer":"app-pages-browser"},"startTime":1780887396136,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module","duration":472,"timestamp":2394427589788,"id":979,"parentId":962,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fsectors%2F%5Bname%5D%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!","layer":"app-pages-browser"},"startTime":1780887396137,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module","duration":916,"timestamp":2394427590276,"id":980,"parentId":963,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fadmin%2Fusers%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!","layer":"app-pages-browser"},"startTime":1780887396137,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module","duration":447,"timestamp":2394427591571,"id":981,"parentId":964,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fsectors%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!","layer":"app-pages-browser"},"startTime":1780887396139,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module","duration":348,"timestamp":2394427592031,"id":982,"parentId":965,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!","layer":"app-pages-browser"},"startTime":1780887396139,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module","duration":308,"timestamp":2394427592386,"id":983,"parentId":966,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fsentiment%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!","layer":"app-pages-browser"},"startTime":1780887396139,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module","duration":277,"timestamp":2394427592701,"id":984,"parentId":967,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fadmin%2Finvites%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!","layer":"app-pages-browser"},"startTime":1780887396140,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module","duration":253,"timestamp":2394427592986,"id":985,"parentId":968,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fwatchlists%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!","layer":"app-pages-browser"},"startTime":1780887396140,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module","duration":301,"timestamp":2394427593245,"id":986,"parentId":969,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(public)%2Flogin%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!","layer":"app-pages-browser"},"startTime":1780887396140,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module","duration":58,"timestamp":2394427593553,"id":987,"parentId":970,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?server=false!","layer":"app-pages-browser"},"startTime":1780887396141,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module","duration":267,"timestamp":2394427593616,"id":988,"parentId":971,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(public)%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!","layer":"app-pages-browser"},"startTime":1780887396141,"traceId":"9b70e6dfdb6b3605"},{"name":"next-client-pages-loader","duration":158,"timestamp":2394427594942,"id":990,"parentId":989,"tags":{"absolutePagePath":"next/dist/client/components/not-found-error"},"startTime":1780887396142,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module","duration":3463,"timestamp":2394427593891,"id":989,"parentId":952,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?absolutePagePath=next%2Fdist%2Fclient%2Fcomponents%2Fnot-found-error&page=%2F_not-found%2Fpage!","layer":"app-pages-browser"},"startTime":1780887396141,"traceId":"9b70e6dfdb6b3605"},{"name":"next-client-pages-loader","duration":35,"timestamp":2394427597962,"id":992,"parentId":991,"tags":{"absolutePagePath":"next/dist/pages/_app"},"startTime":1780887396145,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module","duration":1321,"timestamp":2394427597412,"id":991,"parentId":953,"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":1780887396144,"traceId":"9b70e6dfdb6b3605"},{"name":"next-client-pages-loader","duration":13,"timestamp":2394427598781,"id":994,"parentId":993,"tags":{"absolutePagePath":"next/dist/pages/_error"},"startTime":1780887396146,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module","duration":417,"timestamp":2394427598746,"id":993,"parentId":955,"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":1780887396146,"traceId":"9b70e6dfdb6b3605"},{"name":"add-entry","duration":64831,"timestamp":2394427542388,"id":970,"parentId":948,"tags":{"request":"next-flight-client-entry-loader?server=false!"},"startTime":1780887396089,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":5872,"timestamp":2394427615736,"id":999,"parentId":998,"tags":{},"startTime":1780887396163,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":6335,"timestamp":2394427615280,"id":998,"parentId":995,"tags":{},"startTime":1780887396162,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":13094,"timestamp":2394427611938,"id":995,"parentId":949,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/next.js","layer":null},"startTime":1780887396159,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":9242,"timestamp":2394427615890,"id":1003,"parentId":1002,"tags":{},"startTime":1780887396163,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":9290,"timestamp":2394427615846,"id":1002,"parentId":997,"tags":{},"startTime":1780887396163,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":12725,"timestamp":2394427614239,"id":997,"parentId":950,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/app-next.js","layer":"app-pages-browser"},"startTime":1780887396161,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":13365,"timestamp":2394427615843,"id":1001,"parentId":1000,"tags":{},"startTime":1780887396163,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":13452,"timestamp":2394427615760,"id":1000,"parentId":996,"tags":{},"startTime":1780887396163,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":20220,"timestamp":2394427613965,"id":996,"parentId":954,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/router.js","layer":null},"startTime":1780887396161,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":1642,"timestamp":2394427639789,"id":1009,"parentId":1008,"tags":{},"startTime":1780887396187,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":1737,"timestamp":2394427639710,"id":1008,"parentId":1004,"tags":{},"startTime":1780887396187,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":3524,"timestamp":2394427639513,"id":1004,"parentId":995,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/webpack.js","layer":null},"startTime":1780887396187,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":3891,"timestamp":2394427639839,"id":1011,"parentId":1010,"tags":{},"startTime":1780887396187,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":3941,"timestamp":2394427639792,"id":1010,"parentId":1005,"tags":{},"startTime":1780887396187,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":5186,"timestamp":2394427639594,"id":1005,"parentId":997,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/app-webpack.js","layer":"app-pages-browser"},"startTime":1780887396187,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":4833,"timestamp":2394427639959,"id":1015,"parentId":1014,"tags":{},"startTime":1780887396187,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":4920,"timestamp":2394427639873,"id":1014,"parentId":1007,"tags":{},"startTime":1780887396187,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":7025,"timestamp":2394427639659,"id":1007,"parentId":997,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/app-bootstrap.js","layer":"app-pages-browser"},"startTime":1780887396187,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":6850,"timestamp":2394427639871,"id":1013,"parentId":1012,"tags":{},"startTime":1780887396187,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":6881,"timestamp":2394427639841,"id":1012,"parentId":1006,"tags":{},"startTime":1780887396187,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":10826,"timestamp":2394427639634,"id":1006,"parentId":997,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/app-index.js","layer":"app-pages-browser"},"startTime":1780887396187,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":9257,"timestamp":2394427641229,"id":1021,"parentId":1020,"tags":{},"startTime":1780887396188,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":9437,"timestamp":2394427641051,"id":1020,"parentId":1019,"tags":{},"startTime":1780887396188,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":10339,"timestamp":2394427640941,"id":1019,"parentId":996,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/with-router.js","layer":null},"startTime":1780887396188,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":12629,"timestamp":2394427640894,"id":1018,"parentId":1017,"tags":{},"startTime":1780887396188,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":12700,"timestamp":2394427640853,"id":1017,"parentId":1016,"tags":{},"startTime":1780887396188,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":19803,"timestamp":2394427640801,"id":1016,"parentId":995,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/index.js","layer":null},"startTime":1780887396188,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":3195,"timestamp":2394427674553,"id":1045,"parentId":1044,"tags":{},"startTime":1780887396222,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":3329,"timestamp":2394427674435,"id":1044,"parentId":1027,"tags":{},"startTime":1780887396221,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":5136,"timestamp":2394427673922,"id":1027,"parentId":996,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router-context.shared-runtime.js","layer":null},"startTime":1780887396221,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":4701,"timestamp":2394427674740,"id":1051,"parentId":1050,"tags":{},"startTime":1780887396222,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":4722,"timestamp":2394427674723,"id":1050,"parentId":1030,"tags":{},"startTime":1780887396222,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":6126,"timestamp":2394427674013,"id":1030,"parentId":972,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/client-page.js","layer":"app-pages-browser"},"startTime":1780887396221,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":5391,"timestamp":2394427674771,"id":1055,"parentId":1054,"tags":{},"startTime":1780887396222,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":5403,"timestamp":2394427674761,"id":1054,"parentId":1032,"tags":{},"startTime":1780887396222,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":6361,"timestamp":2394427674125,"id":1032,"parentId":972,"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":1780887396221,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":7359,"timestamp":2394427674759,"id":1053,"parentId":1052,"tags":{},"startTime":1780887396222,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":7380,"timestamp":2394427674743,"id":1052,"parentId":1031,"tags":{},"startTime":1780887396222,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":9457,"timestamp":2394427674040,"id":1031,"parentId":972,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/not-found-boundary.js","layer":"app-pages-browser"},"startTime":1780887396221,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":8805,"timestamp":2394427674719,"id":1049,"parentId":1048,"tags":{},"startTime":1780887396222,"traceId":"9b70e6dfdb6b3605"}] +[{"name":"next-swc-loader","duration":8869,"timestamp":2394427674656,"id":1048,"parentId":1029,"tags":{},"startTime":1780887396222,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":19152,"timestamp":2394427673986,"id":1029,"parentId":972,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/app-router.js","layer":"app-pages-browser"},"startTime":1780887396221,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":18387,"timestamp":2394427674792,"id":1059,"parentId":1058,"tags":{},"startTime":1780887396222,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":18397,"timestamp":2394427674783,"id":1058,"parentId":1034,"tags":{},"startTime":1780887396222,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":20075,"timestamp":2394427674167,"id":1034,"parentId":972,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/error-boundary.js","layer":"app-pages-browser"},"startTime":1780887396221,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":19483,"timestamp":2394427674781,"id":1057,"parentId":1056,"tags":{},"startTime":1780887396222,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":19493,"timestamp":2394427674772,"id":1056,"parentId":1033,"tags":{},"startTime":1780887396222,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":25426,"timestamp":2394427674147,"id":1033,"parentId":972,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/layout-router.js","layer":"app-pages-browser"},"startTime":1780887396221,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":24833,"timestamp":2394427674803,"id":1061,"parentId":1060,"tags":{},"startTime":1780887396222,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":24845,"timestamp":2394427674793,"id":1060,"parentId":1035,"tags":{},"startTime":1780887396222,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":26092,"timestamp":2394427674189,"id":1035,"parentId":989,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/not-found-error.js","layer":"app-pages-browser"},"startTime":1780887396221,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":27013,"timestamp":2394427674945,"id":1067,"parentId":1066,"tags":{},"startTime":1780887396222,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":27032,"timestamp":2394427674929,"id":1066,"parentId":1038,"tags":{},"startTime":1780887396222,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":28117,"timestamp":2394427674241,"id":1038,"parentId":1006,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/app-call-server.js","layer":"app-pages-browser"},"startTime":1780887396221,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":27563,"timestamp":2394427674815,"id":1063,"parentId":1062,"tags":{},"startTime":1780887396222,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":27575,"timestamp":2394427674806,"id":1062,"parentId":1036,"tags":{},"startTime":1780887396222,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":28451,"timestamp":2394427674208,"id":1036,"parentId":1006,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/on-recoverable-error.js","layer":"app-pages-browser"},"startTime":1780887396221,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":27767,"timestamp":2394427674900,"id":1065,"parentId":1064,"tags":{},"startTime":1780887396222,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":27852,"timestamp":2394427674817,"id":1064,"parentId":1037,"tags":{},"startTime":1780887396222,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":28661,"timestamp":2394427674227,"id":1037,"parentId":1016,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/on-recoverable-error.js","layer":null},"startTime":1780887396221,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":27924,"timestamp":2394427674971,"id":1071,"parentId":1070,"tags":{},"startTime":1780887396222,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":27937,"timestamp":2394427674960,"id":1070,"parentId":1040,"tags":{},"startTime":1780887396222,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":28731,"timestamp":2394427674287,"id":1040,"parentId":1016,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/head-manager-context.shared-runtime.js","layer":null},"startTime":1780887396221,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":28042,"timestamp":2394427674982,"id":1073,"parentId":1072,"tags":{},"startTime":1780887396222,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":28052,"timestamp":2394427674973,"id":1072,"parentId":1041,"tags":{},"startTime":1780887396222,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":28927,"timestamp":2394427674303,"id":1041,"parentId":1006,"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":1780887396221,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":29776,"timestamp":2394427674993,"id":1075,"parentId":1074,"tags":{},"startTime":1780887396222,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":29786,"timestamp":2394427674984,"id":1074,"parentId":1042,"tags":{},"startTime":1780887396222,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":31164,"timestamp":2394427674338,"id":1042,"parentId":1006,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/action-queue.js","layer":"app-pages-browser"},"startTime":1780887396221,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":30552,"timestamp":2394427674959,"id":1069,"parentId":1068,"tags":{},"startTime":1780887396222,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":30565,"timestamp":2394427674947,"id":1068,"parentId":1039,"tags":{},"startTime":1780887396222,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":31393,"timestamp":2394427674264,"id":1039,"parentId":1006,"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":1780887396221,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":31134,"timestamp":2394427674646,"id":1047,"parentId":1046,"tags":{},"startTime":1780887396222,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":31224,"timestamp":2394427674558,"id":1046,"parentId":1028,"tags":{},"startTime":1780887396222,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":46611,"timestamp":2394427673961,"id":1028,"parentId":996,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/router.js","layer":null},"startTime":1780887396221,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":43903,"timestamp":2394427676706,"id":1093,"parentId":1092,"tags":{},"startTime":1780887396224,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":43917,"timestamp":2394427676695,"id":1092,"parentId":1077,"tags":{},"startTime":1780887396224,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":45282,"timestamp":2394427676418,"id":1077,"parentId":1016,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/page-loader.js","layer":null},"startTime":1780887396223,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":45002,"timestamp":2394427676717,"id":1095,"parentId":1094,"tags":{},"startTime":1780887396224,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":45014,"timestamp":2394427676708,"id":1094,"parentId":1078,"tags":{},"startTime":1780887396224,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":46026,"timestamp":2394427676438,"id":1078,"parentId":1016,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/performance-relayer.js","layer":null},"startTime":1780887396224,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":45754,"timestamp":2394427676747,"id":1101,"parentId":1100,"tags":{},"startTime":1780887396224,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":45764,"timestamp":2394427676738,"id":1100,"parentId":1081,"tags":{},"startTime":1780887396224,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":46473,"timestamp":2394427676490,"id":1081,"parentId":1016,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/has-base-path.js","layer":null},"startTime":1780887396224,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":46247,"timestamp":2394427676737,"id":1099,"parentId":1098,"tags":{},"startTime":1780887396224,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":46258,"timestamp":2394427676728,"id":1098,"parentId":1080,"tags":{},"startTime":1780887396224,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":46945,"timestamp":2394427676473,"id":1080,"parentId":1016,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/remove-base-path.js","layer":null},"startTime":1780887396224,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":46714,"timestamp":2394427676726,"id":1097,"parentId":1096,"tags":{},"startTime":1780887396224,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":46723,"timestamp":2394427676718,"id":1096,"parentId":1079,"tags":{},"startTime":1780887396224,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":47391,"timestamp":2394427676456,"id":1079,"parentId":1016,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/route-announcer.js","layer":null},"startTime":1780887396224,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":47165,"timestamp":2394427676693,"id":1091,"parentId":1090,"tags":{},"startTime":1780887396224,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":47188,"timestamp":2394427676671,"id":1090,"parentId":1076,"tags":{},"startTime":1780887396224,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":49716,"timestamp":2394427676378,"id":1076,"parentId":1016,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/head-manager.js","layer":null},"startTime":1780887396223,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":49329,"timestamp":2394427676783,"id":1109,"parentId":1108,"tags":{},"startTime":1780887396224,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":49343,"timestamp":2394427676776,"id":1108,"parentId":1085,"tags":{},"startTime":1780887396224,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":49760,"timestamp":2394427676552,"id":1085,"parentId":1016,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/image-config-context.shared-runtime.js","layer":null},"startTime":1780887396224,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":49567,"timestamp":2394427676755,"id":1103,"parentId":1102,"tags":{},"startTime":1780887396224,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":49576,"timestamp":2394427676748,"id":1102,"parentId":1082,"tags":{},"startTime":1780887396224,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":50949,"timestamp":2394427676506,"id":1082,"parentId":1016,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/script.js","layer":null},"startTime":1780887396224,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":50691,"timestamp":2394427676775,"id":1107,"parentId":1106,"tags":{},"startTime":1780887396224,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":50701,"timestamp":2394427676766,"id":1106,"parentId":1084,"tags":{},"startTime":1780887396224,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":51087,"timestamp":2394427676537,"id":1084,"parentId":1016,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/runtime-config.external.js","layer":null},"startTime":1780887396224,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":50866,"timestamp":2394427676765,"id":1105,"parentId":1104,"tags":{},"startTime":1780887396224,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":50876,"timestamp":2394427676756,"id":1104,"parentId":1083,"tags":{},"startTime":1780887396224,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":51284,"timestamp":2394427676521,"id":1083,"parentId":1016,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/mitt.js","layer":null},"startTime":1780887396224,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":51005,"timestamp":2394427676809,"id":1115,"parentId":1114,"tags":{},"startTime":1780887396224,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":51013,"timestamp":2394427676801,"id":1114,"parentId":1088,"tags":{},"startTime":1780887396224,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":51372,"timestamp":2394427676601,"id":1088,"parentId":1016,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/hooks-client-context.shared-runtime.js","layer":null},"startTime":1780887396224,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":51204,"timestamp":2394427676792,"id":1111,"parentId":1110,"tags":{},"startTime":1780887396224,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":51214,"timestamp":2394427676784,"id":1110,"parentId":1086,"tags":{},"startTime":1780887396224,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":51900,"timestamp":2394427676567,"id":1086,"parentId":1016,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/app-router-context.shared-runtime.js","layer":null},"startTime":1780887396224,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":51679,"timestamp":2394427676800,"id":1113,"parentId":1112,"tags":{},"startTime":1780887396224,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":51689,"timestamp":2394427676793,"id":1112,"parentId":1087,"tags":{},"startTime":1780887396224,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":53741,"timestamp":2394427676585,"id":1087,"parentId":1016,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/utils.js","layer":null},"startTime":1780887396224,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":53605,"timestamp":2394427676821,"id":1117,"parentId":1116,"tags":{},"startTime":1780887396224,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":53619,"timestamp":2394427676809,"id":1116,"parentId":1089,"tags":{},"startTime":1780887396224,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":54389,"timestamp":2394427676616,"id":1089,"parentId":1016,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/adapters.js","layer":null},"startTime":1780887396224,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":53768,"timestamp":2394427677249,"id":1125,"parentId":1124,"tags":{},"startTime":1780887396224,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":53783,"timestamp":2394427677235,"id":1124,"parentId":1118,"tags":{},"startTime":1780887396224,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":54206,"timestamp":2394427677114,"id":1118,"parentId":991,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/pages/_app.js","layer":null},"startTime":1780887396224,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":54074,"timestamp":2394427677259,"id":1127,"parentId":1126,"tags":{},"startTime":1780887396224,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":54083,"timestamp":2394427677251,"id":1126,"parentId":1119,"tags":{},"startTime":1780887396224,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":54563,"timestamp":2394427677136,"id":1119,"parentId":993,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/pages/_error.js","layer":null},"startTime":1780887396224,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":67603,"timestamp":2394427667574,"id":1023,"parentId":1022,"tags":{},"startTime":1780887396215,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":68246,"timestamp":2394427667377,"id":1022,"parentId":996,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/is-error.js","layer":null},"startTime":1780887396214,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":73695,"timestamp":2394427673818,"id":1025,"parentId":1024,"tags":{},"startTime":1780887396221,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":75041,"timestamp":2394427673780,"id":1024,"parentId":1004,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/deployment-id.js","layer":null},"startTime":1780887396221,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":74463,"timestamp":2394427674369,"id":1043,"parentId":1026,"tags":{},"startTime":1780887396221,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":169,"timestamp":2394427748882,"id":1128,"parentId":1026,"tags":{},"startTime":1780887396296,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":75827,"timestamp":2394427673831,"id":1026,"parentId":1005,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/deployment-id.js","layer":"app-pages-browser"},"startTime":1780887396221,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":79624,"timestamp":2394427677163,"id":1121,"parentId":1120,"tags":{},"startTime":1780887396224,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":80969,"timestamp":2394427677152,"id":1120,"parentId":1016,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/polyfills/polyfill-module.js","layer":null},"startTime":1780887396224,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":80907,"timestamp":2394427677233,"id":1123,"parentId":1122,"tags":{},"startTime":1780887396224,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":88,"timestamp":2394427758152,"id":1129,"parentId":1122,"tags":{},"startTime":1780887396305,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":82121,"timestamp":2394427677176,"id":1122,"parentId":1006,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/polyfills/polyfill-module.js","layer":"app-pages-browser"},"startTime":1780887396224,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":3022,"timestamp":2394427778044,"id":1143,"parentId":1142,"tags":{},"startTime":1780887396325,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":3042,"timestamp":2394427778032,"id":1142,"parentId":1131,"tags":{},"startTime":1780887396325,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":4673,"timestamp":2394427777325,"id":1131,"parentId":1029,"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":1780887396324,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":4004,"timestamp":2394427778030,"id":1141,"parentId":1140,"tags":{},"startTime":1780887396325,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":4035,"timestamp":2394427777999,"id":1140,"parentId":1130,"tags":{},"startTime":1780887396325,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":5512,"timestamp":2394427777232,"id":1130,"parentId":1032,"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":1780887396324,"traceId":"9b70e6dfdb6b3605"}] +[{"name":"next-swc-transform","duration":4669,"timestamp":2394427778094,"id":1145,"parentId":1144,"tags":{},"startTime":1780887396325,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":4719,"timestamp":2394427778045,"id":1144,"parentId":1132,"tags":{},"startTime":1780887396325,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-tsx","duration":7953,"timestamp":2394427777370,"id":1132,"parentId":973,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/hooks/use-auth.tsx","layer":"app-pages-browser"},"startTime":1780887396324,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":7173,"timestamp":2394427778178,"id":1147,"parentId":1146,"tags":{},"startTime":1780887396325,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":7256,"timestamp":2394427778095,"id":1146,"parentId":1133,"tags":{},"startTime":1780887396325,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-tsx","duration":8598,"timestamp":2394427777703,"id":1133,"parentId":988,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(public)/page.tsx","layer":"app-pages-browser"},"startTime":1780887396325,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":10613,"timestamp":2394427778225,"id":1149,"parentId":1148,"tags":{},"startTime":1780887396325,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":10657,"timestamp":2394427778185,"id":1148,"parentId":1134,"tags":{},"startTime":1780887396325,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-tsx","duration":12204,"timestamp":2394427777750,"id":1134,"parentId":975,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/auth-guard.tsx","layer":"app-pages-browser"},"startTime":1780887396325,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":11751,"timestamp":2394427778261,"id":1151,"parentId":1150,"tags":{},"startTime":1780887396325,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":11786,"timestamp":2394427778228,"id":1150,"parentId":1135,"tags":{},"startTime":1780887396325,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-tsx","duration":13221,"timestamp":2394427777795,"id":1135,"parentId":975,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/mobile-shell.tsx","layer":"app-pages-browser"},"startTime":1780887396325,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":12730,"timestamp":2394427778312,"id":1155,"parentId":1154,"tags":{},"startTime":1780887396325,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":12743,"timestamp":2394427778299,"id":1154,"parentId":1137,"tags":{},"startTime":1780887396325,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":13648,"timestamp":2394427777881,"id":1137,"parentId":1016,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/handle-smooth-scroll.js","layer":null},"startTime":1780887396325,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":14136,"timestamp":2394427778323,"id":1157,"parentId":1156,"tags":{},"startTime":1780887396325,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":14148,"timestamp":2394427778314,"id":1156,"parentId":1138,"tags":{},"startTime":1780887396325,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":15051,"timestamp":2394427777896,"id":1138,"parentId":1016,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/is-dynamic.js","layer":null},"startTime":1780887396325,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":15479,"timestamp":2394427778333,"id":1159,"parentId":1158,"tags":{},"startTime":1780887396325,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":15490,"timestamp":2394427778325,"id":1158,"parentId":1139,"tags":{},"startTime":1780887396325,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":16586,"timestamp":2394427777911,"id":1139,"parentId":1016,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/querystring.js","layer":null},"startTime":1780887396325,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":16224,"timestamp":2394427778298,"id":1153,"parentId":1152,"tags":{},"startTime":1780887396325,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":16258,"timestamp":2394427778265,"id":1152,"parentId":1136,"tags":{},"startTime":1780887396325,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":15710,"timestamp":2394427780520,"id":1178,"parentId":1177,"tags":{},"startTime":1780887396328,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":15721,"timestamp":2394427780511,"id":1177,"parentId":1162,"tags":{},"startTime":1780887396328,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":16710,"timestamp":2394427779986,"id":1162,"parentId":1029,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/remove-base-path.js","layer":"app-pages-browser"},"startTime":1780887396327,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":16209,"timestamp":2394427780498,"id":1174,"parentId":1173,"tags":{},"startTime":1780887396328,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":16233,"timestamp":2394427780475,"id":1173,"parentId":1160,"tags":{},"startTime":1780887396328,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":17447,"timestamp":2394427779896,"id":1160,"parentId":1016,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/tracing/tracer.js","layer":null},"startTime":1780887396327,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":16865,"timestamp":2394427780510,"id":1176,"parentId":1175,"tags":{},"startTime":1780887396328,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":16876,"timestamp":2394427780500,"id":1175,"parentId":1161,"tags":{},"startTime":1780887396328,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":18017,"timestamp":2394427779960,"id":1161,"parentId":1016,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/tracing/report-to-socket.js","layer":null},"startTime":1780887396327,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":17461,"timestamp":2394427780530,"id":1180,"parentId":1179,"tags":{},"startTime":1780887396328,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":17471,"timestamp":2394427780521,"id":1179,"parentId":1163,"tags":{},"startTime":1780887396328,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":18404,"timestamp":2394427780048,"id":1163,"parentId":1029,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/has-base-path.js","layer":"app-pages-browser"},"startTime":1780887396327,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":17927,"timestamp":2394427780539,"id":1182,"parentId":1181,"tags":{},"startTime":1780887396328,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":17936,"timestamp":2394427780531,"id":1181,"parentId":1164,"tags":{},"startTime":1780887396328,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":18691,"timestamp":2394427780070,"id":1164,"parentId":1033,"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":1780887396327,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":18181,"timestamp":2394427780607,"id":1186,"parentId":1185,"tags":{},"startTime":1780887396328,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":18226,"timestamp":2394427780574,"id":1185,"parentId":1166,"tags":{},"startTime":1780887396328,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":19416,"timestamp":2394427780706,"id":1192,"parentId":1191,"tags":{},"startTime":1780887396328,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":19453,"timestamp":2394427780673,"id":1191,"parentId":1169,"tags":{},"startTime":1780887396328,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":23402,"timestamp":2394427780672,"id":1190,"parentId":1189,"tags":{},"startTime":1780887396328,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":23440,"timestamp":2394427780641,"id":1189,"parentId":1168,"tags":{},"startTime":1780887396328,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":28130,"timestamp":2394427780573,"id":1184,"parentId":1183,"tags":{},"startTime":1780887396328,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":28168,"timestamp":2394427780540,"id":1183,"parentId":1165,"tags":{},"startTime":1780887396328,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":38879,"timestamp":2394427780640,"id":1188,"parentId":1187,"tags":{},"startTime":1780887396328,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":38919,"timestamp":2394427780608,"id":1187,"parentId":1167,"tags":{},"startTime":1780887396328,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":43944,"timestamp":2394427780739,"id":1194,"parentId":1193,"tags":{},"startTime":1780887396328,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":43985,"timestamp":2394427780707,"id":1193,"parentId":1170,"tags":{},"startTime":1780887396328,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":48364,"timestamp":2394427780773,"id":1196,"parentId":1195,"tags":{},"startTime":1780887396328,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":48403,"timestamp":2394427780741,"id":1195,"parentId":1171,"tags":{},"startTime":1780887396328,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":67292,"timestamp":2394427780806,"id":1198,"parentId":1197,"tags":{},"startTime":1780887396328,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":67331,"timestamp":2394427780774,"id":1197,"parentId":1172,"tags":{},"startTime":1780887396328,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-tsx","duration":95776,"timestamp":2394427777838,"id":1136,"parentId":986,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(public)/login/page.tsx","layer":"app-pages-browser"},"startTime":1780887396325,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-tsx","duration":93500,"timestamp":2394427780137,"id":1166,"parentId":977,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/admin/page.tsx","layer":"app-pages-browser"},"startTime":1780887396327,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-tsx","duration":93561,"timestamp":2394427780092,"id":1165,"parentId":974,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/dashboard/page.tsx","layer":"app-pages-browser"},"startTime":1780887396327,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-tsx","duration":93485,"timestamp":2394427780180,"id":1167,"parentId":976,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/recommendations/page.tsx","layer":"app-pages-browser"},"startTime":1780887396327,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-tsx","duration":93453,"timestamp":2394427780223,"id":1168,"parentId":978,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/chat/page.tsx","layer":"app-pages-browser"},"startTime":1780887396327,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":19512,"timestamp":2394427871984,"id":1212,"parentId":1211,"tags":{},"startTime":1780887396419,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":19531,"timestamp":2394427871972,"id":1211,"parentId":1203,"tags":{},"startTime":1780887396419,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":22083,"timestamp":2394427871728,"id":1203,"parentId":1030,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/search-params.js","layer":"app-pages-browser"},"startTime":1780887396419,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":48620,"timestamp":2394427871971,"id":1210,"parentId":1209,"tags":{},"startTime":1780887396419,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":48659,"timestamp":2394427871940,"id":1209,"parentId":1201,"tags":{},"startTime":1780887396419,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":67577,"timestamp":2394427871902,"id":1206,"parentId":1205,"tags":{},"startTime":1780887396419,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":67666,"timestamp":2394427871841,"id":1205,"parentId":1199,"tags":{},"startTime":1780887396419,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":71683,"timestamp":2394427871939,"id":1208,"parentId":1207,"tags":{},"startTime":1780887396419,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":71723,"timestamp":2394427871905,"id":1207,"parentId":1200,"tags":{},"startTime":1780887396419,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":86747,"timestamp":2394427871782,"id":1204,"parentId":1202,"tags":{},"startTime":1780887396419,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":37,"timestamp":2394427958549,"id":1242,"parentId":1202,"tags":{},"startTime":1780887396506,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":87530,"timestamp":2394427871679,"id":1202,"parentId":1006,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/dev/hot-reloader-types.js","layer":"app-pages-browser"},"startTime":1780887396419,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":4923,"timestamp":2394427955677,"id":1225,"parentId":1224,"tags":{},"startTime":1780887396503,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":5015,"timestamp":2394427955591,"id":1224,"parentId":1213,"tags":{},"startTime":1780887396503,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":7516,"timestamp":2394427953778,"id":1213,"parentId":1029,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/add-base-path.js","layer":"app-pages-browser"},"startTime":1780887396501,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":5612,"timestamp":2394427955718,"id":1229,"parentId":1228,"tags":{},"startTime":1780887396503,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":5624,"timestamp":2394427955707,"id":1228,"parentId":1215,"tags":{},"startTime":1780887396503,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":7654,"timestamp":2394427953943,"id":1215,"parentId":1031,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/not-found.js","layer":"app-pages-browser"},"startTime":1780887396501,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":5903,"timestamp":2394427955704,"id":1227,"parentId":1226,"tags":{},"startTime":1780887396503,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":5921,"timestamp":2394427955687,"id":1226,"parentId":1214,"tags":{},"startTime":1780887396503,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":8336,"timestamp":2394427953909,"id":1214,"parentId":1031,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/navigation.js","layer":"app-pages-browser"},"startTime":1780887396501,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":6526,"timestamp":2394427955731,"id":1231,"parentId":1230,"tags":{},"startTime":1780887396503,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":6538,"timestamp":2394427955720,"id":1230,"parentId":1216,"tags":{},"startTime":1780887396503,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":8868,"timestamp":2394427953967,"id":1216,"parentId":1029,"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":1780887396501,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":7080,"timestamp":2394427955766,"id":1237,"parentId":1236,"tags":{},"startTime":1780887396503,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":7090,"timestamp":2394427955756,"id":1236,"parentId":1219,"tags":{},"startTime":1780887396503,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":9264,"timestamp":2394427954045,"id":1219,"parentId":1029,"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":1780887396501,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":9078,"timestamp":2394427955798,"id":1241,"parentId":1240,"tags":{},"startTime":1780887396503,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":9110,"timestamp":2394427955787,"id":1240,"parentId":1222,"tags":{},"startTime":1780887396503,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":10725,"timestamp":2394427954475,"id":1222,"parentId":1029,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/unresolved-thenable.js","layer":"app-pages-browser"},"startTime":1780887396502,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":11865,"timestamp":2394427955743,"id":1233,"parentId":1232,"tags":{},"startTime":1780887396503,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":11877,"timestamp":2394427955733,"id":1232,"parentId":1217,"tags":{},"startTime":1780887396503,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":14059,"timestamp":2394427953988,"id":1217,"parentId":1029,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/app-router-announcer.js","layer":"app-pages-browser"},"startTime":1780887396501,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":12307,"timestamp":2394427955785,"id":1239,"parentId":1238,"tags":{},"startTime":1780887396503,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":12326,"timestamp":2394427955767,"id":1238,"parentId":1220,"tags":{},"startTime":1780887396503,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":14251,"timestamp":2394427954064,"id":1220,"parentId":1028,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/add-base-path.js","layer":null},"startTime":1780887396501,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":7997,"timestamp":2394427960326,"id":1250,"parentId":1249,"tags":{},"startTime":1780887396507,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":8025,"timestamp":2394427960298,"id":1249,"parentId":1244,"tags":{},"startTime":1780887396507,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":8516,"timestamp":2394427959948,"id":1244,"parentId":1029,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/segment.js","layer":"app-pages-browser"},"startTime":1780887396507,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":8178,"timestamp":2394427960292,"id":1248,"parentId":1247,"tags":{},"startTime":1780887396507,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":8261,"timestamp":2394427960211,"id":1247,"parentId":1243,"tags":{},"startTime":1780887396507,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":9029,"timestamp":2394427959669,"id":1243,"parentId":1029,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/app-router-headers.js","layer":"app-pages-browser"},"startTime":1780887396507,"traceId":"9b70e6dfdb6b3605"}] +[{"name":"next-swc-transform","duration":12951,"timestamp":2394427955755,"id":1235,"parentId":1234,"tags":{},"startTime":1780887396503,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":12962,"timestamp":2394427955745,"id":1234,"parentId":1218,"tags":{},"startTime":1780887396503,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":15084,"timestamp":2394427954024,"id":1218,"parentId":1029,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/redirect-boundary.js","layer":"app-pages-browser"},"startTime":1780887396501,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":8732,"timestamp":2394427960384,"id":1254,"parentId":1253,"tags":{},"startTime":1780887396507,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":8760,"timestamp":2394427960356,"id":1253,"parentId":1246,"tags":{},"startTime":1780887396507,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":9194,"timestamp":2394427960138,"id":1246,"parentId":1033,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/match-segments.js","layer":"app-pages-browser"},"startTime":1780887396507,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":8986,"timestamp":2394427960353,"id":1252,"parentId":1251,"tags":{},"startTime":1780887396507,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":9009,"timestamp":2394427960330,"id":1251,"parentId":1245,"tags":{},"startTime":1780887396507,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":9399,"timestamp":2394427960066,"id":1245,"parentId":1034,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/static-generation-async-storage.external.js","layer":"shared"},"startTime":1780887396507,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-tsx","duration":194751,"timestamp":2394427780268,"id":1169,"parentId":980,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/admin/users/page.tsx","layer":"app-pages-browser"},"startTime":1780887396327,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-tsx","duration":194724,"timestamp":2394427780315,"id":1170,"parentId":981,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/sectors/page.tsx","layer":"app-pages-browser"},"startTime":1780887396327,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-tsx","duration":194697,"timestamp":2394427780356,"id":1171,"parentId":979,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/sectors/[name]/page.tsx","layer":"app-pages-browser"},"startTime":1780887396327,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-tsx","duration":194665,"timestamp":2394427780398,"id":1172,"parentId":983,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/sentiment/page.tsx","layer":"app-pages-browser"},"startTime":1780887396327,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-tsx","duration":103762,"timestamp":2394427871311,"id":1199,"parentId":984,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/admin/invites/page.tsx","layer":"app-pages-browser"},"startTime":1780887396418,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":7751,"timestamp":2394427973212,"id":1269,"parentId":1268,"tags":{},"startTime":1780887396520,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":7808,"timestamp":2394427973160,"id":1268,"parentId":1260,"tags":{},"startTime":1780887396520,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":11017,"timestamp":2394427970289,"id":1260,"parentId":1031,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/utils/warn-once.js","layer":"app-pages-browser"},"startTime":1780887396517,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":8070,"timestamp":2394427973250,"id":1271,"parentId":1270,"tags":{},"startTime":1780887396520,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":8104,"timestamp":2394427973217,"id":1270,"parentId":1261,"tags":{},"startTime":1780887396520,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":11396,"timestamp":2394427970331,"id":1261,"parentId":1029,"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":1780887396517,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":8680,"timestamp":2394427973147,"id":1267,"parentId":1266,"tags":{},"startTime":1780887396520,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":8766,"timestamp":2394427973079,"id":1266,"parentId":1255,"tags":{},"startTime":1780887396520,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":12854,"timestamp":2394427970166,"id":1255,"parentId":1028,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/is-bot.js","layer":null},"startTime":1780887396517,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":9952,"timestamp":2394427973278,"id":1275,"parentId":1274,"tags":{},"startTime":1780887396520,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":9968,"timestamp":2394427973268,"id":1274,"parentId":1263,"tags":{},"startTime":1780887396520,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":13994,"timestamp":2394427970382,"id":1263,"parentId":1029,"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":1780887396517,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":30700,"timestamp":2394427955415,"id":1223,"parentId":1221,"tags":{},"startTime":1780887396502,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":13192,"timestamp":2394427973266,"id":1273,"parentId":1272,"tags":{},"startTime":1780887396520,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":13208,"timestamp":2394427973254,"id":1272,"parentId":1262,"tags":{},"startTime":1780887396520,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":16619,"timestamp":2394427970356,"id":1262,"parentId":1029,"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":1780887396517,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":13686,"timestamp":2394427973301,"id":1279,"parentId":1278,"tags":{},"startTime":1780887396520,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":13696,"timestamp":2394427973292,"id":1278,"parentId":1265,"tags":{},"startTime":1780887396520,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":16782,"timestamp":2394427970423,"id":1265,"parentId":1033,"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":1780887396517,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":13923,"timestamp":2394427973291,"id":1277,"parentId":1276,"tags":{},"startTime":1780887396520,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":13934,"timestamp":2394427973280,"id":1276,"parentId":1264,"tags":{},"startTime":1780887396520,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":17606,"timestamp":2394427970403,"id":1264,"parentId":1033,"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":1780887396517,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":5901,"timestamp":2394427986213,"id":1281,"parentId":1280,"tags":{},"startTime":1780887396533,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":5990,"timestamp":2394427986130,"id":1280,"parentId":1221,"tags":{},"startTime":1780887396533,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-mjs","duration":40087,"timestamp":2394427954080,"id":1221,"parentId":973,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next-themes/dist/index.mjs","layer":"app-pages-browser"},"startTime":1780887396501,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":28786,"timestamp":2394427970254,"id":1257,"parentId":1256,"tags":{},"startTime":1780887396517,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":29218,"timestamp":2394427970239,"id":1256,"parentId":1019,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/react/jsx-runtime.js","layer":null},"startTime":1780887396517,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":29200,"timestamp":2394427970280,"id":1259,"parentId":1258,"tags":{},"startTime":1780887396517,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":29583,"timestamp":2394427970270,"id":1258,"parentId":1016,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/react-dom/client.js","layer":null},"startTime":1780887396517,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":3476,"timestamp":2394428003538,"id":1296,"parentId":1295,"tags":{},"startTime":1780887396551,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":3497,"timestamp":2394428003525,"id":1295,"parentId":1283,"tags":{},"startTime":1780887396551,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":4820,"timestamp":2394428002572,"id":1283,"parentId":1033,"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":1780887396550,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":3852,"timestamp":2394428003550,"id":1298,"parentId":1297,"tags":{},"startTime":1780887396551,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":3862,"timestamp":2394428003541,"id":1297,"parentId":1284,"tags":{},"startTime":1780887396551,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":5045,"timestamp":2394428002603,"id":1284,"parentId":1033,"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":1780887396550,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":4138,"timestamp":2394428003519,"id":1294,"parentId":1293,"tags":{},"startTime":1780887396551,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":4185,"timestamp":2394428003473,"id":1293,"parentId":1282,"tags":{},"startTime":1780887396551,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":5495,"timestamp":2394428002489,"id":1282,"parentId":1029,"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":1780887396550,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-tsx","duration":137849,"timestamp":2394427871556,"id":1200,"parentId":985,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/watchlists/page.tsx","layer":"app-pages-browser"},"startTime":1780887396419,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-tsx","duration":137792,"timestamp":2394427871628,"id":1201,"parentId":982,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/(auth)/stock/[code]/page.tsx","layer":"app-pages-browser"},"startTime":1780887396419,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":5866,"timestamp":2394428003572,"id":1302,"parentId":1301,"tags":{},"startTime":1780887396551,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":5876,"timestamp":2394428003563,"id":1301,"parentId":1286,"tags":{},"startTime":1780887396551,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":7461,"timestamp":2394428002652,"id":1286,"parentId":1042,"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":1780887396550,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":6471,"timestamp":2394428003656,"id":1306,"parentId":1305,"tags":{},"startTime":1780887396551,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":6544,"timestamp":2394428003585,"id":1305,"parentId":1288,"tags":{},"startTime":1780887396551,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":7660,"timestamp":2394428002763,"id":1288,"parentId":1028,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/detect-domain-locale.js","layer":null},"startTime":1780887396550,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":6871,"timestamp":2394428003561,"id":1300,"parentId":1299,"tags":{},"startTime":1780887396551,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":6881,"timestamp":2394428003552,"id":1299,"parentId":1285,"tags":{},"startTime":1780887396551,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":8934,"timestamp":2394428002627,"id":1285,"parentId":1041,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/redirect.js","layer":"app-pages-browser"},"startTime":1780887396550,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":7895,"timestamp":2394428003682,"id":1310,"parentId":1309,"tags":{},"startTime":1780887396551,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":7906,"timestamp":2394428003672,"id":1309,"parentId":1290,"tags":{},"startTime":1780887396551,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":9603,"timestamp":2394428002852,"id":1290,"parentId":1028,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/remove-locale.js","layer":null},"startTime":1780887396550,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":8860,"timestamp":2394428003670,"id":1308,"parentId":1307,"tags":{},"startTime":1780887396551,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":8875,"timestamp":2394428003659,"id":1307,"parentId":1289,"tags":{},"startTime":1780887396551,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":10082,"timestamp":2394428002835,"id":1289,"parentId":1028,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/add-locale.js","layer":null},"startTime":1780887396550,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":10066,"timestamp":2394428003703,"id":1314,"parentId":1313,"tags":{},"startTime":1780887396551,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":10079,"timestamp":2394428003694,"id":1313,"parentId":1292,"tags":{},"startTime":1780887396551,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":11192,"timestamp":2394428002883,"id":1292,"parentId":1028,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/remove-trailing-slash.js","layer":null},"startTime":1780887396550,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":11269,"timestamp":2394428003692,"id":1312,"parentId":1311,"tags":{},"startTime":1780887396551,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":11281,"timestamp":2394428003683,"id":1311,"parentId":1291,"tags":{},"startTime":1780887396551,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":12445,"timestamp":2394428002869,"id":1291,"parentId":1028,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/parse-relative-url.js","layer":null},"startTime":1780887396550,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":11746,"timestamp":2394428003583,"id":1304,"parentId":1303,"tags":{},"startTime":1780887396551,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":11756,"timestamp":2394428003574,"id":1303,"parentId":1287,"tags":{},"startTime":1780887396551,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":13944,"timestamp":2394428002688,"id":1287,"parentId":1028,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/route-loader.js","layer":null},"startTime":1780887396550,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":10541,"timestamp":2394428008642,"id":1331,"parentId":1330,"tags":{},"startTime":1780887396556,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":10554,"timestamp":2394428008632,"id":1330,"parentId":1316,"tags":{},"startTime":1780887396556,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":11199,"timestamp":2394428008311,"id":1316,"parentId":1028,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/route-matcher.js","layer":null},"startTime":1780887396555,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":10897,"timestamp":2394428008630,"id":1329,"parentId":1328,"tags":{},"startTime":1780887396556,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":10926,"timestamp":2394428008602,"id":1328,"parentId":1315,"tags":{},"startTime":1780887396556,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":11784,"timestamp":2394428008197,"id":1315,"parentId":1028,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/resolve-rewrites.js","layer":null},"startTime":1780887396555,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":11319,"timestamp":2394428008670,"id":1337,"parentId":1336,"tags":{},"startTime":1780887396556,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":11328,"timestamp":2394428008663,"id":1336,"parentId":1319,"tags":{},"startTime":1780887396556,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":11735,"timestamp":2394428008394,"id":1319,"parentId":1028,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/parse-path.js","layer":null},"startTime":1780887396555,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":11457,"timestamp":2394428008680,"id":1339,"parentId":1338,"tags":{},"startTime":1780887396556,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":11509,"timestamp":2394428008672,"id":1338,"parentId":1320,"tags":{},"startTime":1780887396556,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":12076,"timestamp":2394428008416,"id":1320,"parentId":1036,"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":1780887396555,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":11815,"timestamp":2394428008688,"id":1341,"parentId":1340,"tags":{},"startTime":1780887396556,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":11825,"timestamp":2394428008681,"id":1340,"parentId":1321,"tags":{},"startTime":1780887396556,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":12226,"timestamp":2394428008450,"id":1321,"parentId":1037,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/lazy-dynamic/bailout-to-csr.js","layer":null},"startTime":1780887396556,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":12032,"timestamp":2394428008653,"id":1333,"parentId":1332,"tags":{},"startTime":1780887396556,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":12042,"timestamp":2394428008644,"id":1332,"parentId":1317,"tags":{},"startTime":1780887396556,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":13116,"timestamp":2394428008344,"id":1317,"parentId":1028,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/route-regex.js","layer":null},"startTime":1780887396555,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":12773,"timestamp":2394428008697,"id":1343,"parentId":1342,"tags":{},"startTime":1780887396556,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":12781,"timestamp":2394428008689,"id":1342,"parentId":1324,"tags":{},"startTime":1780887396556,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":13503,"timestamp":2394428008500,"id":1324,"parentId":1028,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/resolve-href.js","layer":null},"startTime":1780887396556,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":13348,"timestamp":2394428008662,"id":1335,"parentId":1334,"tags":{},"startTime":1780887396556,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":13356,"timestamp":2394428008654,"id":1334,"parentId":1318,"tags":{},"startTime":1780887396556,"traceId":"9b70e6dfdb6b3605"}] +[{"name":"build-module-js","duration":14292,"timestamp":2394428008376,"id":1318,"parentId":1028,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/format-url.js","layer":null},"startTime":1780887396555,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":13998,"timestamp":2394428008705,"id":1345,"parentId":1344,"tags":{},"startTime":1780887396556,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":14006,"timestamp":2394428008698,"id":1344,"parentId":1325,"tags":{},"startTime":1780887396556,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":14691,"timestamp":2394428008519,"id":1325,"parentId":1028,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/bloom-filter.js","layer":null},"startTime":1780887396556,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":14499,"timestamp":2394428008720,"id":1349,"parentId":1348,"tags":{},"startTime":1780887396556,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":14506,"timestamp":2394428008713,"id":1348,"parentId":1327,"tags":{},"startTime":1780887396556,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":16647,"timestamp":2394428008549,"id":1327,"parentId":1077,"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":1780887396556,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":16496,"timestamp":2394428008712,"id":1347,"parentId":1346,"tags":{},"startTime":1780887396556,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":16503,"timestamp":2394428008705,"id":1346,"parentId":1326,"tags":{},"startTime":1780887396556,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":17004,"timestamp":2394428008535,"id":1326,"parentId":1077,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/interpolate-as.js","layer":null},"startTime":1780887396556,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":23604,"timestamp":2394428008484,"id":1323,"parentId":1322,"tags":{},"startTime":1780887396556,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":23859,"timestamp":2394428008466,"id":1322,"parentId":1028,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/is-api-route.js","layer":null},"startTime":1780887396556,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":13436,"timestamp":2394428033617,"id":1357,"parentId":1356,"tags":{},"startTime":1780887396581,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":13455,"timestamp":2394428033607,"id":1356,"parentId":1351,"tags":{},"startTime":1780887396581,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":14497,"timestamp":2394428033129,"id":1351,"parentId":1028,"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":1780887396580,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":15869,"timestamp":2394428033604,"id":1355,"parentId":1354,"tags":{},"startTime":1780887396581,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":15903,"timestamp":2394428033574,"id":1354,"parentId":1350,"tags":{},"startTime":1780887396581,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":16951,"timestamp":2394428033047,"id":1350,"parentId":1028,"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":1780887396580,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":16379,"timestamp":2394428033628,"id":1359,"parentId":1358,"tags":{},"startTime":1780887396581,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":16390,"timestamp":2394428033619,"id":1358,"parentId":1352,"tags":{},"startTime":1780887396581,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":17007,"timestamp":2394428033154,"id":1352,"parentId":1028,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/is-local-url.js","layer":null},"startTime":1780887396580,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":16532,"timestamp":2394428033637,"id":1361,"parentId":1360,"tags":{},"startTime":1780887396581,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":16540,"timestamp":2394428033629,"id":1360,"parentId":1353,"tags":{},"startTime":1780887396581,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":17077,"timestamp":2394428033186,"id":1353,"parentId":1028,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/omit.js","layer":null},"startTime":1780887396580,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":9975,"timestamp":2394428045469,"id":1417,"parentId":1416,"tags":{},"startTime":1780887396593,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":9991,"timestamp":2394428045458,"id":1416,"parentId":1363,"tags":{},"startTime":1780887396593,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":14680,"timestamp":2394428041083,"id":1363,"parentId":1028,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/page-path/denormalize-page-path.js","layer":null},"startTime":1780887396588,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":10318,"timestamp":2394428045455,"id":1415,"parentId":1414,"tags":{},"startTime":1780887396593,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":10354,"timestamp":2394428045419,"id":1414,"parentId":1362,"tags":{},"startTime":1780887396592,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":14982,"timestamp":2394428040993,"id":1362,"parentId":1028,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/compare-states.js","layer":null},"startTime":1780887396588,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":10482,"timestamp":2394428045500,"id":1423,"parentId":1422,"tags":{},"startTime":1780887396593,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":10491,"timestamp":2394428045492,"id":1422,"parentId":1366,"tags":{},"startTime":1780887396593,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":14964,"timestamp":2394428041152,"id":1366,"parentId":1081,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/path-has-prefix.js","layer":null},"startTime":1780887396588,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":10642,"timestamp":2394428045480,"id":1419,"parentId":1418,"tags":{},"startTime":1780887396593,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":10652,"timestamp":2394428045471,"id":1418,"parentId":1364,"tags":{},"startTime":1780887396593,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":15140,"timestamp":2394428041111,"id":1364,"parentId":1028,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/i18n/normalize-locale-path.js","layer":null},"startTime":1780887396588,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":10769,"timestamp":2394428045491,"id":1421,"parentId":1420,"tags":{},"startTime":1780887396593,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":10779,"timestamp":2394428045481,"id":1420,"parentId":1365,"tags":{},"startTime":1780887396593,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":16218,"timestamp":2394428041132,"id":1365,"parentId":1077,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/constants.js","layer":null},"startTime":1780887396588,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":11851,"timestamp":2394428045510,"id":1425,"parentId":1424,"tags":{},"startTime":1780887396593,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":11860,"timestamp":2394428045502,"id":1424,"parentId":1368,"tags":{},"startTime":1780887396593,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":14014,"timestamp":2394428043588,"id":1368,"parentId":1016,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/portal/index.js","layer":null},"startTime":1780887396591,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":12101,"timestamp":2394428045520,"id":1427,"parentId":1426,"tags":{},"startTime":1780887396593,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":12110,"timestamp":2394428045512,"id":1426,"parentId":1369,"tags":{},"startTime":1780887396593,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":14224,"timestamp":2394428043619,"id":1369,"parentId":1082,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/request-idle-callback.js","layer":null},"startTime":1780887396591,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":12314,"timestamp":2394428045538,"id":1431,"parentId":1430,"tags":{},"startTime":1780887396593,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":12322,"timestamp":2394428045530,"id":1430,"parentId":1371,"tags":{},"startTime":1780887396593,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":14272,"timestamp":2394428043653,"id":1371,"parentId":1089,"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":1780887396591,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":12382,"timestamp":2394428045549,"id":1433,"parentId":1432,"tags":{},"startTime":1780887396593,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":12392,"timestamp":2394428045539,"id":1432,"parentId":1372,"tags":{},"startTime":1780887396593,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":14370,"timestamp":2394428043667,"id":1372,"parentId":1163,"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":1780887396591,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":12515,"timestamp":2394428045529,"id":1429,"parentId":1428,"tags":{},"startTime":1780887396593,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":12523,"timestamp":2394428045521,"id":1428,"parentId":1370,"tags":{},"startTime":1780887396593,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":14525,"timestamp":2394428043638,"id":1370,"parentId":1085,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/image-config.js","layer":null},"startTime":1780887396591,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":12602,"timestamp":2394428045566,"id":1437,"parentId":1436,"tags":{},"startTime":1780887396593,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":12610,"timestamp":2394428045559,"id":1436,"parentId":1374,"tags":{},"startTime":1780887396593,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":14569,"timestamp":2394428043701,"id":1374,"parentId":1022,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/is-plain-object.js","layer":null},"startTime":1780887396591,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":12700,"timestamp":2394428045575,"id":1439,"parentId":1438,"tags":{},"startTime":1780887396593,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":12708,"timestamp":2394428045568,"id":1438,"parentId":1387,"tags":{},"startTime":1780887396593,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":14246,"timestamp":2394428044121,"id":1387,"parentId":1089,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/index.js","layer":null},"startTime":1780887396591,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":12770,"timestamp":2394428045604,"id":1445,"parentId":1444,"tags":{},"startTime":1780887396593,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":12779,"timestamp":2394428045596,"id":1444,"parentId":1390,"tags":{},"startTime":1780887396593,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":14112,"timestamp":2394428044354,"id":1390,"parentId":1213,"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":1780887396591,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":12886,"timestamp":2394428045585,"id":1441,"parentId":1440,"tags":{},"startTime":1780887396593,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":12895,"timestamp":2394428045577,"id":1440,"parentId":1388,"tags":{},"startTime":1780887396593,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":14642,"timestamp":2394428044202,"id":1388,"parentId":1213,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/normalize-trailing-slash.js","layer":"app-pages-browser"},"startTime":1780887396591,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":13256,"timestamp":2394428045594,"id":1443,"parentId":1442,"tags":{},"startTime":1780887396593,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":13264,"timestamp":2394428045587,"id":1442,"parentId":1389,"tags":{},"startTime":1780887396593,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":14771,"timestamp":2394428044326,"id":1389,"parentId":1220,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/normalize-trailing-slash.js","layer":null},"startTime":1780887396591,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":13491,"timestamp":2394428045613,"id":1447,"parentId":1446,"tags":{},"startTime":1780887396593,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":13499,"timestamp":2394428045606,"id":1446,"parentId":1391,"tags":{},"startTime":1780887396593,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":14807,"timestamp":2394428044401,"id":1391,"parentId":1220,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/add-path-prefix.js","layer":null},"startTime":1780887396591,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":13581,"timestamp":2394428045633,"id":1451,"parentId":1450,"tags":{},"startTime":1780887396593,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":13590,"timestamp":2394428045624,"id":1450,"parentId":1393,"tags":{},"startTime":1780887396593,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":15006,"timestamp":2394428044461,"id":1393,"parentId":1214,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/navigation.react-server.js","layer":"app-pages-browser"},"startTime":1780887396592,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":13828,"timestamp":2394428045650,"id":1453,"parentId":1452,"tags":{},"startTime":1780887396593,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":13844,"timestamp":2394428045634,"id":1452,"parentId":1394,"tags":{},"startTime":1780887396593,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":15179,"timestamp":2394428044481,"id":1394,"parentId":1214,"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":1780887396592,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":14110,"timestamp":2394428045557,"id":1435,"parentId":1434,"tags":{},"startTime":1780887396593,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":14118,"timestamp":2394428045550,"id":1434,"parentId":1373,"tags":{},"startTime":1780887396593,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":16856,"timestamp":2394428043687,"id":1373,"parentId":1119,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/head.js","layer":null},"startTime":1780887396591,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":14927,"timestamp":2394428045623,"id":1449,"parentId":1448,"tags":{},"startTime":1780887396593,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":14936,"timestamp":2394428045614,"id":1448,"parentId":1392,"tags":{},"startTime":1780887396593,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":16483,"timestamp":2394428044419,"id":1392,"parentId":1161,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/pages/websocket.js","layer":null},"startTime":1780887396591,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":15240,"timestamp":2394428045669,"id":1455,"parentId":1454,"tags":{},"startTime":1780887396593,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":15250,"timestamp":2394428045659,"id":1454,"parentId":1395,"tags":{},"startTime":1780887396593,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":16492,"timestamp":2394428044589,"id":1395,"parentId":1214,"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":1780887396592,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":15410,"timestamp":2394428045677,"id":1457,"parentId":1456,"tags":{},"startTime":1780887396593,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":15419,"timestamp":2394428045670,"id":1456,"parentId":1396,"tags":{},"startTime":1780887396593,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":16553,"timestamp":2394428044664,"id":1396,"parentId":1245,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/static-generation-async-storage-instance.js","layer":"shared"},"startTime":1780887396592,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":15542,"timestamp":2394428045686,"id":1459,"parentId":1458,"tags":{},"startTime":1780887396593,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":15550,"timestamp":2394428045679,"id":1458,"parentId":1401,"tags":{},"startTime":1780887396593,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":16748,"timestamp":2394428045019,"id":1401,"parentId":1262,"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":1780887396592,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":16069,"timestamp":2394428045710,"id":1465,"parentId":1464,"tags":{},"startTime":1780887396593,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":16077,"timestamp":2394428045703,"id":1464,"parentId":1405,"tags":{},"startTime":1780887396593,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":17117,"timestamp":2394428045124,"id":1405,"parentId":1262,"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":1780887396592,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":16502,"timestamp":2394428045755,"id":1467,"parentId":1466,"tags":{},"startTime":1780887396593,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":16546,"timestamp":2394428045712,"id":1466,"parentId":1408,"tags":{},"startTime":1780887396593,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":16823,"timestamp":2394428045702,"id":1463,"parentId":1462,"tags":{},"startTime":1780887396593,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":16832,"timestamp":2394428045695,"id":1462,"parentId":1404,"tags":{},"startTime":1780887396593,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":18453,"timestamp":2394428045104,"id":1404,"parentId":1262,"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":1780887396592,"traceId":"9b70e6dfdb6b3605"}] +[{"name":"next-swc-transform","duration":18410,"timestamp":2394428045867,"id":1471,"parentId":1470,"tags":{},"startTime":1780887396593,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":18496,"timestamp":2394428045784,"id":1470,"parentId":1410,"tags":{},"startTime":1780887396593,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":19341,"timestamp":2394428045235,"id":1410,"parentId":1264,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/hash.js","layer":"app-pages-browser"},"startTime":1780887396592,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":19046,"timestamp":2394428045694,"id":1461,"parentId":1460,"tags":{},"startTime":1780887396593,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":19069,"timestamp":2394428045687,"id":1460,"parentId":1403,"tags":{},"startTime":1780887396593,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":20182,"timestamp":2394428045085,"id":1403,"parentId":1262,"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":1780887396592,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":19498,"timestamp":2394428045783,"id":1469,"parentId":1468,"tags":{},"startTime":1780887396593,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":19527,"timestamp":2394428045756,"id":1468,"parentId":1409,"tags":{},"startTime":1780887396593,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":14026,"timestamp":2394428053464,"id":1501,"parentId":1500,"tags":{},"startTime":1780887396601,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":14067,"timestamp":2394428053424,"id":1500,"parentId":1472,"tags":{},"startTime":1780887396600,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":16136,"timestamp":2394428051629,"id":1472,"parentId":1264,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/flight-data-helpers.js","layer":"app-pages-browser"},"startTime":1780887396599,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":14260,"timestamp":2394428053516,"id":1505,"parentId":1504,"tags":{},"startTime":1780887396601,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":14295,"timestamp":2394428053483,"id":1504,"parentId":1483,"tags":{},"startTime":1780887396601,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-tsx","duration":28576,"timestamp":2394428045159,"id":1408,"parentId":1135,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/user-menu.tsx","layer":"app-pages-browser"},"startTime":1780887396592,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-tsx","duration":28554,"timestamp":2394428045197,"id":1409,"parentId":1135,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/nav.tsx","layer":"app-pages-browser"},"startTime":1780887396592,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":20387,"timestamp":2394428053480,"id":1503,"parentId":1502,"tags":{},"startTime":1780887396601,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":20401,"timestamp":2394428053469,"id":1502,"parentId":1476,"tags":{},"startTime":1780887396601,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":23343,"timestamp":2394428051754,"id":1476,"parentId":1286,"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":1780887396599,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":21578,"timestamp":2394428053546,"id":1507,"parentId":1506,"tags":{},"startTime":1780887396601,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":21608,"timestamp":2394428053518,"id":1506,"parentId":1484,"tags":{},"startTime":1780887396601,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":22697,"timestamp":2394428053556,"id":1509,"parentId":1508,"tags":{},"startTime":1780887396601,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":22712,"timestamp":2394428053548,"id":1508,"parentId":1485,"tags":{},"startTime":1780887396601,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":24549,"timestamp":2394428052131,"id":1485,"parentId":1285,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/request-async-storage.external.js","layer":"shared"},"startTime":1780887396599,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":23130,"timestamp":2394428053566,"id":1511,"parentId":1510,"tags":{},"startTime":1780887396601,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":23139,"timestamp":2394428053558,"id":1510,"parentId":1486,"tags":{},"startTime":1780887396601,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":24806,"timestamp":2394428052152,"id":1486,"parentId":1287,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/trusted-types.js","layer":null},"startTime":1780887396599,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":23400,"timestamp":2394428053575,"id":1513,"parentId":1512,"tags":{},"startTime":1780887396601,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":23410,"timestamp":2394428053567,"id":1512,"parentId":1487,"tags":{},"startTime":1780887396601,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":24968,"timestamp":2394428052166,"id":1487,"parentId":1285,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/action-async-storage.external.js","layer":"shared"},"startTime":1780887396599,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":23558,"timestamp":2394428053583,"id":1515,"parentId":1514,"tags":{},"startTime":1780887396601,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":23566,"timestamp":2394428053576,"id":1514,"parentId":1488,"tags":{},"startTime":1780887396601,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":25164,"timestamp":2394428052182,"id":1488,"parentId":1285,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/redirect-status-code.js","layer":"app-pages-browser"},"startTime":1780887396599,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":23761,"timestamp":2394428053592,"id":1517,"parentId":1516,"tags":{},"startTime":1780887396601,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":23769,"timestamp":2394428053585,"id":1516,"parentId":1489,"tags":{},"startTime":1780887396601,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":25451,"timestamp":2394428052199,"id":1489,"parentId":1286,"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":1780887396599,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":24056,"timestamp":2394428053601,"id":1519,"parentId":1518,"tags":{},"startTime":1780887396601,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":24065,"timestamp":2394428053593,"id":1518,"parentId":1490,"tags":{},"startTime":1780887396601,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":25914,"timestamp":2394428052214,"id":1490,"parentId":1286,"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":1780887396599,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":24531,"timestamp":2394428053610,"id":1521,"parentId":1520,"tags":{},"startTime":1780887396601,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":24540,"timestamp":2394428053602,"id":1520,"parentId":1491,"tags":{},"startTime":1780887396601,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":26242,"timestamp":2394428052231,"id":1491,"parentId":1286,"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":1780887396599,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":24891,"timestamp":2394428053618,"id":1523,"parentId":1522,"tags":{},"startTime":1780887396601,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":24900,"timestamp":2394428053611,"id":1522,"parentId":1492,"tags":{},"startTime":1780887396601,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":26405,"timestamp":2394428052338,"id":1492,"parentId":1286,"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":1780887396599,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":25119,"timestamp":2394428053636,"id":1527,"parentId":1526,"tags":{},"startTime":1780887396601,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":25128,"timestamp":2394428053628,"id":1526,"parentId":1494,"tags":{},"startTime":1780887396601,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":27060,"timestamp":2394428052441,"id":1494,"parentId":1286,"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":1780887396600,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":26439,"timestamp":2394428053627,"id":1525,"parentId":1524,"tags":{},"startTime":1780887396601,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":26450,"timestamp":2394428053620,"id":1524,"parentId":1493,"tags":{},"startTime":1780887396601,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":28983,"timestamp":2394428052377,"id":1493,"parentId":1286,"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":1780887396599,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":27729,"timestamp":2394428053645,"id":1529,"parentId":1528,"tags":{},"startTime":1780887396601,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":27740,"timestamp":2394428053637,"id":1528,"parentId":1495,"tags":{},"startTime":1780887396601,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":29165,"timestamp":2394428052464,"id":1495,"parentId":1315,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/path-match.js","layer":null},"startTime":1780887396600,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":27982,"timestamp":2394428053657,"id":1531,"parentId":1530,"tags":{},"startTime":1780887396601,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":27992,"timestamp":2394428053647,"id":1530,"parentId":1496,"tags":{},"startTime":1780887396601,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":30069,"timestamp":2394428052480,"id":1496,"parentId":1315,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/prepare-destination.js","layer":null},"startTime":1780887396600,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":48589,"timestamp":2394428044087,"id":1382,"parentId":1381,"tags":{},"startTime":1780887396591,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":48868,"timestamp":2394428044076,"id":1381,"parentId":996,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/react/index.js","layer":null},"startTime":1780887396591,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":48840,"timestamp":2394428044116,"id":1386,"parentId":1385,"tags":{},"startTime":1780887396591,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":50042,"timestamp":2394428044108,"id":1385,"parentId":1138,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/helpers/interception-routes.js","layer":null},"startTime":1780887396591,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":48874,"timestamp":2394428045280,"id":1413,"parentId":1402,"tags":{},"startTime":1780887396592,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":40,"timestamp":2394428094167,"id":1532,"parentId":1402,"tags":{},"startTime":1780887396641,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":49763,"timestamp":2394428045042,"id":1402,"parentId":1284,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/helpers/interception-routes.js","layer":"app-pages-browser"},"startTime":1780887396592,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":50713,"timestamp":2394428044103,"id":1384,"parentId":1383,"tags":{},"startTime":1780887396591,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":50850,"timestamp":2394428044095,"id":1383,"parentId":1006,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react/index.js","layer":"app-pages-browser"},"startTime":1780887396591,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":50911,"timestamp":2394428044050,"id":1378,"parentId":1377,"tags":{},"startTime":1780887396591,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":51158,"timestamp":2394428044031,"id":1377,"parentId":1006,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react-dom/client.js","layer":"app-pages-browser"},"startTime":1780887396591,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":51136,"timestamp":2394428044068,"id":1380,"parentId":1379,"tags":{},"startTime":1780887396591,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":51255,"timestamp":2394428044058,"id":1379,"parentId":1006,"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":1780887396591,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":51309,"timestamp":2394428044013,"id":1376,"parentId":1375,"tags":{},"startTime":1780887396591,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":51715,"timestamp":2394428043718,"id":1375,"parentId":1006,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react/jsx-runtime.js","layer":"app-pages-browser"},"startTime":1780887396591,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":50175,"timestamp":2394428045269,"id":1411,"parentId":1397,"tags":{},"startTime":1780887396592,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":41,"timestamp":2394428095452,"id":1533,"parentId":1397,"tags":{},"startTime":1780887396643,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":52187,"timestamp":2394428044886,"id":1397,"parentId":1203,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/app-render/dynamic-rendering.js","layer":"app-pages-browser"},"startTime":1780887396592,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":51811,"timestamp":2394428045275,"id":1412,"parentId":1398,"tags":{},"startTime":1780887396592,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":34,"timestamp":2394428097094,"id":1534,"parentId":1398,"tags":{},"startTime":1780887396644,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":52585,"timestamp":2394428044946,"id":1398,"parentId":1246,"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":1780887396592,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":52387,"timestamp":2394428045152,"id":1407,"parentId":1406,"tags":{},"startTime":1780887396592,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":52701,"timestamp":2394428045144,"id":1406,"parentId":1258,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/react-dom/index.js","layer":null},"startTime":1780887396592,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":52865,"timestamp":2394428045008,"id":1400,"parentId":1399,"tags":{},"startTime":1780887396592,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":53085,"timestamp":2394428044999,"id":1399,"parentId":1033,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react-dom/index.js","layer":"app-pages-browser"},"startTime":1780887396592,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":52189,"timestamp":2394428051957,"id":1478,"parentId":1477,"tags":{},"startTime":1780887396599,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":53022,"timestamp":2394428051778,"id":1477,"parentId":1016,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_interop_require_wildcard.js","layer":null},"startTime":1780887396599,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":51558,"timestamp":2394428053246,"id":1498,"parentId":1481,"tags":{},"startTime":1780887396600,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":31,"timestamp":2394428104811,"id":1535,"parentId":1481,"tags":{},"startTime":1780887396652,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":53296,"timestamp":2394428051973,"id":1481,"parentId":1006,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_interop_require_wildcard.js","layer":"app-pages-browser"},"startTime":1780887396599,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":53534,"timestamp":2394428051744,"id":1475,"parentId":1474,"tags":{},"startTime":1780887396599,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":53868,"timestamp":2394428051733,"id":1474,"parentId":1256,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/react/cjs/react-jsx-runtime.production.min.js","layer":null},"startTime":1780887396599,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":52376,"timestamp":2394428053232,"id":1497,"parentId":1473,"tags":{},"startTime":1780887396600,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":30,"timestamp":2394428105614,"id":1536,"parentId":1473,"tags":{},"startTime":1780887396653,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":54224,"timestamp":2394428051686,"id":1473,"parentId":1203,"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":1780887396599,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":53949,"timestamp":2394428051970,"id":1480,"parentId":1479,"tags":{},"startTime":1780887396599,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":54082,"timestamp":2394428051962,"id":1479,"parentId":996,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_interop_require_default.js","layer":null},"startTime":1780887396599,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":52798,"timestamp":2394428053250,"id":1499,"parentId":1482,"tags":{},"startTime":1780887396600,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":67,"timestamp":2394428106055,"id":1537,"parentId":1482,"tags":{},"startTime":1780887396653,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":54267,"timestamp":2394428052014,"id":1482,"parentId":1006,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_interop_require_default.js","layer":"app-pages-browser"},"startTime":1780887396599,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":307,"timestamp":2394428112349,"id":1544,"parentId":1543,"tags":{},"startTime":1780887396659,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-tsx","duration":63325,"timestamp":2394428052093,"id":1484,"parentId":1167,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/stock-card.tsx","layer":"app-pages-browser"},"startTime":1780887396599,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-tsx","duration":63380,"timestamp":2394428052054,"id":1483,"parentId":1165,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/theme-toggle.tsx","layer":"app-pages-browser"},"startTime":1780887396599,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":3721,"timestamp":2394428113522,"id":1558,"parentId":1557,"tags":{},"startTime":1780887396661,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":3733,"timestamp":2394428113511,"id":1557,"parentId":1542,"tags":{},"startTime":1780887396661,"traceId":"9b70e6dfdb6b3605"}] +[{"name":"build-module-js","duration":7787,"timestamp":2394428109751,"id":1542,"parentId":1317,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/escape-regexp.js","layer":null},"startTime":1780887396657,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":4015,"timestamp":2394428113531,"id":1560,"parentId":1559,"tags":{},"startTime":1780887396661,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":4024,"timestamp":2394428113523,"id":1559,"parentId":1545,"tags":{},"startTime":1780887396661,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":5313,"timestamp":2394428112366,"id":1545,"parentId":1373,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/utils/warn-once.js","layer":null},"startTime":1780887396659,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":5784,"timestamp":2394428113549,"id":1562,"parentId":1561,"tags":{},"startTime":1780887396661,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":5803,"timestamp":2394428113533,"id":1561,"parentId":1546,"tags":{},"startTime":1780887396661,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":7155,"timestamp":2394428112420,"id":1546,"parentId":1388,"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":1780887396659,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":6131,"timestamp":2394428113509,"id":1556,"parentId":1555,"tags":{},"startTime":1780887396661,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":6173,"timestamp":2394428113474,"id":1555,"parentId":1539,"tags":{},"startTime":1780887396661,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-ts","duration":11507,"timestamp":2394428109661,"id":1539,"parentId":1165,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/hooks/use-websocket.ts","layer":"app-pages-browser"},"startTime":1780887396657,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":7639,"timestamp":2394428113562,"id":1564,"parentId":1563,"tags":{},"startTime":1780887396661,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":7651,"timestamp":2394428113551,"id":1563,"parentId":1547,"tags":{},"startTime":1780887396661,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":9646,"timestamp":2394428112450,"id":1547,"parentId":1388,"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":1780887396660,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":9366,"timestamp":2394428113621,"id":1568,"parentId":1567,"tags":{},"startTime":1780887396661,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":9397,"timestamp":2394428113592,"id":1567,"parentId":1551,"tags":{},"startTime":1780887396661,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":10430,"timestamp":2394428113591,"id":1566,"parentId":1565,"tags":{},"startTime":1780887396661,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":10460,"timestamp":2394428113563,"id":1565,"parentId":1548,"tags":{},"startTime":1780887396661,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":12368,"timestamp":2394428113471,"id":1554,"parentId":1553,"tags":{},"startTime":1780887396661,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":12428,"timestamp":2394428113413,"id":1553,"parentId":1538,"tags":{},"startTime":1780887396660,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-ts","duration":17895,"timestamp":2394428109545,"id":1538,"parentId":1132,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/lib/api.ts","layer":"app-pages-browser"},"startTime":1780887396657,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":9961,"timestamp":2394428118983,"id":1587,"parentId":1586,"tags":{},"startTime":1780887396666,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":9975,"timestamp":2394428118973,"id":1586,"parentId":1571,"tags":{},"startTime":1780887396666,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":11416,"timestamp":2394428117977,"id":1571,"parentId":1351,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/add-path-suffix.js","layer":null},"startTime":1780887396665,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":10444,"timestamp":2394428118960,"id":1583,"parentId":1582,"tags":{},"startTime":1780887396666,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":10468,"timestamp":2394428118937,"id":1582,"parentId":1569,"tags":{},"startTime":1780887396666,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":12767,"timestamp":2394428117896,"id":1569,"parentId":1496,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/app-router-headers.js","layer":null},"startTime":1780887396665,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":11739,"timestamp":2394428118992,"id":1589,"parentId":1588,"tags":{},"startTime":1780887396666,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":12311,"timestamp":2394428118984,"id":1588,"parentId":1572,"tags":{},"startTime":1780887396666,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":13606,"timestamp":2394428117998,"id":1572,"parentId":1350,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/remove-path-prefix.js","layer":null},"startTime":1780887396665,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":12648,"timestamp":2394428118971,"id":1585,"parentId":1584,"tags":{},"startTime":1780887396666,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":12659,"timestamp":2394428118962,"id":1584,"parentId":1570,"tags":{},"startTime":1780887396666,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":13839,"timestamp":2394428117953,"id":1570,"parentId":1351,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/add-locale.js","layer":null},"startTime":1780887396665,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":12781,"timestamp":2394428119021,"id":1591,"parentId":1590,"tags":{},"startTime":1780887396666,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":12809,"timestamp":2394428118993,"id":1590,"parentId":1573,"tags":{},"startTime":1780887396666,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":13080,"timestamp":2394428119053,"id":1599,"parentId":1598,"tags":{},"startTime":1780887396666,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":13088,"timestamp":2394428119047,"id":1598,"parentId":1577,"tags":{},"startTime":1780887396666,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":14172,"timestamp":2394428118101,"id":1577,"parentId":1373,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/amp-mode.js","layer":null},"startTime":1780887396665,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":13249,"timestamp":2394428119030,"id":1593,"parentId":1592,"tags":{},"startTime":1780887396666,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":13257,"timestamp":2394428119022,"id":1592,"parentId":1574,"tags":{},"startTime":1780887396666,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":14318,"timestamp":2394428118056,"id":1574,"parentId":1365,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/modern-browserslist-target.js","layer":null},"startTime":1780887396665,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":13342,"timestamp":2394428119038,"id":1595,"parentId":1594,"tags":{},"startTime":1780887396666,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":13350,"timestamp":2394428119031,"id":1594,"parentId":1575,"tags":{},"startTime":1780887396666,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":14727,"timestamp":2394428118072,"id":1575,"parentId":1373,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/side-effect.js","layer":null},"startTime":1780887396665,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":13754,"timestamp":2394428119062,"id":1601,"parentId":1600,"tags":{},"startTime":1780887396666,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":13762,"timestamp":2394428119054,"id":1600,"parentId":1578,"tags":{},"startTime":1780887396666,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":15133,"timestamp":2394428118115,"id":1578,"parentId":1396,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/async-local-storage.js","layer":"shared"},"startTime":1780887396665,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":14179,"timestamp":2394428119080,"id":1605,"parentId":1604,"tags":{},"startTime":1780887396666,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":14188,"timestamp":2394428119072,"id":1604,"parentId":1580,"tags":{},"startTime":1780887396666,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":15449,"timestamp":2394428118147,"id":1580,"parentId":1405,"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":1780887396665,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":15080,"timestamp":2394428119046,"id":1597,"parentId":1596,"tags":{},"startTime":1780887396666,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":15088,"timestamp":2394428119039,"id":1596,"parentId":1576,"tags":{},"startTime":1780887396666,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":16181,"timestamp":2394428118086,"id":1576,"parentId":1373,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/amp-context.shared-runtime.js","layer":null},"startTime":1780887396665,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":15270,"timestamp":2394428119071,"id":1603,"parentId":1602,"tags":{},"startTime":1780887396666,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":15278,"timestamp":2394428119063,"id":1602,"parentId":1579,"tags":{},"startTime":1780887396666,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":16327,"timestamp":2394428118128,"id":1579,"parentId":1363,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/page-path/normalize-path-sep.js","layer":null},"startTime":1780887396665,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":16598,"timestamp":2394428119088,"id":1607,"parentId":1606,"tags":{},"startTime":1780887396666,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":16606,"timestamp":2394428119081,"id":1606,"parentId":1581,"tags":{},"startTime":1780887396666,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":18188,"timestamp":2394428118165,"id":1581,"parentId":1387,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/sorted-routes.js","layer":null},"startTime":1780887396665,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-ts","duration":28853,"timestamp":2394428112474,"id":1548,"parentId":1168,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/lib/markdown.ts","layer":"app-pages-browser"},"startTime":1780887396660,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-tsx","duration":28767,"timestamp":2394428112575,"id":1551,"parentId":1170,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/error-boundary.tsx","layer":"app-pages-browser"},"startTime":1780887396660,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":12776,"timestamp":2394428128584,"id":1621,"parentId":1620,"tags":{},"startTime":1780887396676,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":12813,"timestamp":2394428128548,"id":1620,"parentId":1608,"tags":{},"startTime":1780887396676,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":14952,"timestamp":2394428127576,"id":1608,"parentId":1487,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/action-async-storage-instance.js","layer":"shared"},"startTime":1780887396675,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":13940,"timestamp":2394428128600,"id":1623,"parentId":1622,"tags":{},"startTime":1780887396676,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":13953,"timestamp":2394428128588,"id":1622,"parentId":1609,"tags":{},"startTime":1780887396676,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":15134,"timestamp":2394428127634,"id":1609,"parentId":1485,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/request-async-storage-instance.js","layer":"shared"},"startTime":1780887396675,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":14158,"timestamp":2394428128617,"id":1625,"parentId":1624,"tags":{},"startTime":1780887396676,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":14175,"timestamp":2394428128601,"id":1624,"parentId":1610,"tags":{},"startTime":1780887396676,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":15443,"timestamp":2394428127657,"id":1610,"parentId":1476,"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":1780887396675,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":14468,"timestamp":2394428128638,"id":1629,"parentId":1628,"tags":{},"startTime":1780887396676,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":14478,"timestamp":2394428128629,"id":1628,"parentId":1612,"tags":{},"startTime":1780887396676,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":15624,"timestamp":2394428127700,"id":1612,"parentId":1476,"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":1780887396675,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":14683,"timestamp":2394428128648,"id":1631,"parentId":1630,"tags":{},"startTime":1780887396676,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":14692,"timestamp":2394428128640,"id":1630,"parentId":1613,"tags":{},"startTime":1780887396676,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":15838,"timestamp":2394428127719,"id":1613,"parentId":1476,"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":1780887396675,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":14937,"timestamp":2394428128628,"id":1627,"parentId":1626,"tags":{},"startTime":1780887396676,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":14946,"timestamp":2394428128619,"id":1626,"parentId":1611,"tags":{},"startTime":1780887396676,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":16315,"timestamp":2394428127680,"id":1611,"parentId":1476,"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":1780887396675,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":15344,"timestamp":2394428128658,"id":1633,"parentId":1632,"tags":{},"startTime":1780887396676,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":15354,"timestamp":2394428128650,"id":1632,"parentId":1614,"tags":{},"startTime":1780887396676,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":16607,"timestamp":2394428127737,"id":1614,"parentId":1476,"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":1780887396675,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":15675,"timestamp":2394428128676,"id":1637,"parentId":1636,"tags":{},"startTime":1780887396676,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":15683,"timestamp":2394428128669,"id":1636,"parentId":1616,"tags":{},"startTime":1780887396676,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":16949,"timestamp":2394428127771,"id":1616,"parentId":1476,"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":1780887396675,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":16046,"timestamp":2394428128685,"id":1639,"parentId":1638,"tags":{},"startTime":1780887396676,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":16054,"timestamp":2394428128677,"id":1638,"parentId":1617,"tags":{},"startTime":1780887396676,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":17112,"timestamp":2394428127859,"id":1617,"parentId":1489,"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":1780887396675,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":16341,"timestamp":2394428128667,"id":1635,"parentId":1634,"tags":{},"startTime":1780887396676,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":16350,"timestamp":2394428128660,"id":1634,"parentId":1615,"tags":{},"startTime":1780887396676,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":18677,"timestamp":2394428127754,"id":1615,"parentId":1476,"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":1780887396675,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":38330,"timestamp":2394428109732,"id":1541,"parentId":1540,"tags":{},"startTime":1780887396657,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":39178,"timestamp":2394428109719,"id":1540,"parentId":1317,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/constants.js","layer":null},"startTime":1780887396657,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":36373,"timestamp":2394428112559,"id":1550,"parentId":1549,"tags":{},"startTime":1780887396660,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":38650,"timestamp":2394428112550,"id":1549,"parentId":1078,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/web-vitals/web-vitals.js","layer":null},"startTime":1780887396660,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":12388,"timestamp":2394428141136,"id":1647,"parentId":1646,"tags":{},"startTime":1780887396688,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":12402,"timestamp":2394428141125,"id":1646,"parentId":1641,"tags":{},"startTime":1780887396688,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":13810,"timestamp":2394428140096,"id":1641,"parentId":1385,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/app-paths.js","layer":null},"startTime":1780887396687,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":12800,"timestamp":2394428141146,"id":1649,"parentId":1648,"tags":{},"startTime":1780887396688,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":12810,"timestamp":2394428141137,"id":1648,"parentId":1642,"tags":{},"startTime":1780887396688,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":14081,"timestamp":2394428140118,"id":1642,"parentId":1402,"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":1780887396687,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":13053,"timestamp":2394428141155,"id":1651,"parentId":1650,"tags":{},"startTime":1780887396688,"traceId":"9b70e6dfdb6b3605"}] +[{"name":"next-swc-loader","duration":13061,"timestamp":2394428141147,"id":1650,"parentId":1643,"tags":{},"startTime":1780887396688,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":14199,"timestamp":2394428140139,"id":1643,"parentId":1496,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/parse-url.js","layer":null},"startTime":1780887396687,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":13224,"timestamp":2394428141123,"id":1645,"parentId":1644,"tags":{},"startTime":1780887396688,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":13255,"timestamp":2394428141092,"id":1644,"parentId":1640,"tags":{},"startTime":1780887396688,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":14788,"timestamp":2394428140020,"id":1640,"parentId":1492,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/promise-queue.js","layer":"app-pages-browser"},"startTime":1780887396687,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-ts","duration":41493,"timestamp":2394428118015,"id":1573,"parentId":1170,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/lib/utils.ts","layer":"app-pages-browser"},"startTime":1780887396665,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":31825,"timestamp":2394428127932,"id":1619,"parentId":1618,"tags":{},"startTime":1780887396675,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":33347,"timestamp":2394428127915,"id":1618,"parentId":1381,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/react/cjs/react.production.min.js","layer":null},"startTime":1780887396675,"traceId":"9b70e6dfdb6b3605"},{"name":"add-entry","duration":952748,"timestamp":2394427542210,"id":953,"parentId":948,"tags":{"request":"next-client-pages-loader?absolutePagePath=next%2Fdist%2Fpages%2F_app&page=%2F_app!"},"startTime":1780887396089,"traceId":"9b70e6dfdb6b3605"},{"name":"add-entry","duration":952948,"timestamp":2394427542232,"id":955,"parentId":948,"tags":{"request":"next-client-pages-loader?absolutePagePath=next%2Fdist%2Fpages%2F_error&page=%2F_error!"},"startTime":1780887396089,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":336927,"timestamp":2394428158351,"id":1672,"parentId":1671,"tags":{},"startTime":1780887396705,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":336975,"timestamp":2394428158305,"id":1671,"parentId":1663,"tags":{},"startTime":1780887396705,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":338381,"timestamp":2394428157605,"id":1663,"parentId":1397,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/hooks-server-context.js","layer":"app-pages-browser"},"startTime":1780887396705,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":337651,"timestamp":2394428158369,"id":1674,"parentId":1673,"tags":{},"startTime":1780887396705,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":337665,"timestamp":2394428158357,"id":1673,"parentId":1664,"tags":{},"startTime":1780887396705,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":338735,"timestamp":2394428157645,"id":1664,"parentId":1397,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/static-generation-bailout.js","layer":"app-pages-browser"},"startTime":1780887396705,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":339304,"timestamp":2394428158405,"id":1676,"parentId":1675,"tags":{},"startTime":1780887396705,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":339342,"timestamp":2394428158371,"id":1675,"parentId":1665,"tags":{},"startTime":1780887396705,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":340121,"timestamp":2394428158436,"id":1678,"parentId":1677,"tags":{},"startTime":1780887396706,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":340153,"timestamp":2394428158407,"id":1677,"parentId":1666,"tags":{},"startTime":1780887396705,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":340892,"timestamp":2394428158447,"id":1680,"parentId":1679,"tags":{},"startTime":1780887396706,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":340905,"timestamp":2394428158438,"id":1679,"parentId":1667,"tags":{},"startTime":1780887396706,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":342200,"timestamp":2394428157764,"id":1667,"parentId":1392,"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":1780887396705,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":349998,"timestamp":2394428151981,"id":1655,"parentId":1654,"tags":{},"startTime":1780887396699,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":352695,"timestamp":2394428151969,"id":1654,"parentId":1383,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react/cjs/react.production.min.js","layer":"app-pages-browser"},"startTime":1780887396699,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":352665,"timestamp":2394428152018,"id":1657,"parentId":1656,"tags":{},"startTime":1780887396699,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":352951,"timestamp":2394428151997,"id":1656,"parentId":1375,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react/cjs/react-jsx-runtime.production.min.js","layer":"app-pages-browser"},"startTime":1780887396699,"traceId":"9b70e6dfdb6b3605"},{"name":"add-entry","duration":964052,"timestamp":2394427542148,"id":952,"parentId":948,"tags":{"request":"next-client-pages-loader?absolutePagePath=next%2Fdist%2Fclient%2Fcomponents%2Fnot-found-error&page=%2F_not-found%2Fpage!"},"startTime":1780887396089,"traceId":"9b70e6dfdb6b3605"},{"name":"add-entry","duration":963972,"timestamp":2394427542244,"id":957,"parentId":948,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fdashboard%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1780887396089,"traceId":"9b70e6dfdb6b3605"},{"name":"add-entry","duration":963848,"timestamp":2394427542370,"id":959,"parentId":948,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Frecommendations%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1780887396089,"traceId":"9b70e6dfdb6b3605"},{"name":"add-entry","duration":963845,"timestamp":2394427542375,"id":961,"parentId":948,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fchat%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1780887396089,"traceId":"9b70e6dfdb6b3605"},{"name":"add-entry","duration":963843,"timestamp":2394427542383,"id":966,"parentId":948,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fsentiment%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1780887396089,"traceId":"9b70e6dfdb6b3605"},{"name":"add-entry","duration":963843,"timestamp":2394427542386,"id":968,"parentId":948,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fwatchlists%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1780887396089,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":353361,"timestamp":2394428153298,"id":1658,"parentId":1652,"tags":{},"startTime":1780887396700,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":29,"timestamp":2394428506667,"id":1692,"parentId":1652,"tags":{},"startTime":1780887397054,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":355200,"timestamp":2394428151831,"id":1652,"parentId":1133,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/api/link.js","layer":"app-pages-browser"},"startTime":1780887396699,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":353762,"timestamp":2394428153312,"id":1659,"parentId":1653,"tags":{},"startTime":1780887396700,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":27,"timestamp":2394428507080,"id":1693,"parentId":1653,"tags":{},"startTime":1780887397054,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":355255,"timestamp":2394428151923,"id":1653,"parentId":1134,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/api/navigation.js","layer":"app-pages-browser"},"startTime":1780887396699,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":5802,"timestamp":2394428501515,"id":1688,"parentId":1687,"tags":{},"startTime":1780887397049,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":5836,"timestamp":2394428501482,"id":1687,"parentId":1686,"tags":{},"startTime":1780887397049,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":6148,"timestamp":2394428501376,"id":1686,"parentId":1641,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/segment.js","layer":null},"startTime":1780887397048,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":350151,"timestamp":2394428157811,"id":1669,"parentId":1668,"tags":{},"startTime":1780887396705,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":350308,"timestamp":2394428157793,"id":1668,"parentId":1496,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/api-utils/get-cookie-parser.js","layer":null},"startTime":1780887396705,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":349859,"timestamp":2394428158246,"id":1670,"parentId":1662,"tags":{},"startTime":1780887396705,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":27,"timestamp":2394428508110,"id":1694,"parentId":1662,"tags":{},"startTime":1780887397055,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":350886,"timestamp":2394428157451,"id":1662,"parentId":1397,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/url.js","layer":"app-pages-browser"},"startTime":1780887396705,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":350955,"timestamp":2394428157413,"id":1661,"parentId":1660,"tags":{},"startTime":1780887396704,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":351139,"timestamp":2394428157320,"id":1660,"parentId":1379,"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":1780887396704,"traceId":"9b70e6dfdb6b3605"},{"name":"add-entry","duration":967076,"timestamp":2394427542387,"id":969,"parentId":948,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(public)%2Flogin%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1780887396089,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-tsx","duration":351821,"timestamp":2394428157669,"id":1665,"parentId":1201,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/kline-chart.tsx","layer":"app-pages-browser"},"startTime":1780887396705,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-tsx","duration":351856,"timestamp":2394428157719,"id":1666,"parentId":1201,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/capital-flow.tsx","layer":"app-pages-browser"},"startTime":1780887396705,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":3990,"timestamp":2394428505712,"id":1691,"parentId":1690,"tags":{},"startTime":1780887397053,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":4108,"timestamp":2394428505595,"id":1690,"parentId":1689,"tags":{},"startTime":1780887397053,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":4677,"timestamp":2394428505497,"id":1689,"parentId":1580,"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":1780887397053,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":61342,"timestamp":2394428495099,"id":1683,"parentId":1682,"tags":{},"startTime":1780887397042,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":106304,"timestamp":2394428495034,"id":1682,"parentId":1406,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/react-dom/cjs/react-dom.production.min.js","layer":null},"startTime":1780887397042,"traceId":"9b70e6dfdb6b3605"},{"name":"postcss-process","duration":316306,"timestamp":2394428401476,"id":1681,"parentId":1552,"tags":{},"startTime":1780887396949,"traceId":"9b70e6dfdb6b3605"},{"name":"postcss-loader","duration":605087,"timestamp":2394428112756,"id":1552,"parentId":1543,"tags":{},"startTime":1780887396660,"traceId":"9b70e6dfdb6b3605"},{"name":"css-loader","duration":29123,"timestamp":2394428717954,"id":1695,"parentId":1543,"tags":{"astUsed":"true"},"startTime":1780887397265,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":262278,"timestamp":2394428495152,"id":1685,"parentId":1684,"tags":{},"startTime":1780887397042,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":362104,"timestamp":2394428495132,"id":1684,"parentId":1399,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react-dom/cjs/react-dom.production.min.js","layer":"app-pages-browser"},"startTime":1780887397042,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":104690,"timestamp":2394428755136,"id":1699,"parentId":1698,"tags":{},"startTime":1780887397302,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":104739,"timestamp":2394428755091,"id":1698,"parentId":1696,"tags":{},"startTime":1780887397302,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":107647,"timestamp":2394428752407,"id":1696,"parentId":1641,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/page-path/ensure-leading-slash.js","layer":null},"startTime":1780887397299,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":104971,"timestamp":2394428755163,"id":1701,"parentId":1700,"tags":{},"startTime":1780887397302,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":104991,"timestamp":2394428755143,"id":1700,"parentId":1697,"tags":{},"startTime":1780887397302,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":107731,"timestamp":2394428752505,"id":1697,"parentId":1642,"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":1780887397300,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":1708,"timestamp":2394428860933,"id":1705,"parentId":1704,"tags":{},"startTime":1780887397408,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":1741,"timestamp":2394428860903,"id":1704,"parentId":1702,"tags":{},"startTime":1780887397408,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":2180,"timestamp":2394428860733,"id":1702,"parentId":1667,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/normalized-asset-prefix.js","layer":null},"startTime":1780887397408,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":2183,"timestamp":2394428860987,"id":1707,"parentId":1706,"tags":{},"startTime":1780887397408,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":2235,"timestamp":2394428860936,"id":1706,"parentId":1703,"tags":{},"startTime":1780887397408,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-tsx","duration":3747,"timestamp":2394428860819,"id":1703,"parentId":1408,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/change-password-dialog.tsx","layer":"app-pages-browser"},"startTime":1780887397408,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":3505,"timestamp":2394428863042,"id":1715,"parentId":1714,"tags":{},"startTime":1780887397410,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":3532,"timestamp":2394428863016,"id":1714,"parentId":1713,"tags":{},"startTime":1780887397410,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":3899,"timestamp":2394428862975,"id":1713,"parentId":1689,"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":1780887397410,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":7349,"timestamp":2394428862192,"id":1710,"parentId":1709,"tags":{},"startTime":1780887397409,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":7380,"timestamp":2394428862164,"id":1709,"parentId":1708,"tags":{},"startTime":1780887397409,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":9031,"timestamp":2394428862063,"id":1708,"parentId":1652,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/link.js","layer":"app-pages-browser"},"startTime":1780887397409,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":11423,"timestamp":2394428862962,"id":1712,"parentId":1711,"tags":{},"startTime":1780887397410,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":13098,"timestamp":2394428862936,"id":1711,"parentId":1660,"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.production.min.js","layer":"app-pages-browser"},"startTime":1780887397410,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":1195,"timestamp":2394428877422,"id":1729,"parentId":1728,"tags":{},"startTime":1780887397424,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":1204,"timestamp":2394428877415,"id":1728,"parentId":1719,"tags":{},"startTime":1780887397424,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":1549,"timestamp":2394428877305,"id":1719,"parentId":1708,"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":1780887397424,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":2407,"timestamp":2394428877405,"id":1725,"parentId":1724,"tags":{},"startTime":1780887397424,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":2419,"timestamp":2394428877394,"id":1724,"parentId":1717,"tags":{},"startTime":1780887397424,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":2816,"timestamp":2394428877257,"id":1717,"parentId":1708,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/add-locale.js","layer":"app-pages-browser"},"startTime":1780887397424,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":2653,"timestamp":2394428877431,"id":1731,"parentId":1730,"tags":{},"startTime":1780887397424,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":2662,"timestamp":2394428877423,"id":1730,"parentId":1720,"tags":{},"startTime":1780887397424,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":2891,"timestamp":2394428877324,"id":1720,"parentId":1708,"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":1780887397424,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":3208,"timestamp":2394428877414,"id":1727,"parentId":1726,"tags":{},"startTime":1780887397424,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":3217,"timestamp":2394428877405,"id":1726,"parentId":1718,"tags":{},"startTime":1780887397424,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":4201,"timestamp":2394428877282,"id":1718,"parentId":1708,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/utils.js","layer":"app-pages-browser"},"startTime":1780887397424,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":4126,"timestamp":2394428877392,"id":1723,"parentId":1722,"tags":{},"startTime":1780887397424,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":4157,"timestamp":2394428877363,"id":1722,"parentId":1716,"tags":{},"startTime":1780887397424,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":4680,"timestamp":2394428877178,"id":1716,"parentId":1708,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/resolve-href.js","layer":"app-pages-browser"},"startTime":1780887397424,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":5784,"timestamp":2394428877439,"id":1733,"parentId":1732,"tags":{},"startTime":1780887397425,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":5792,"timestamp":2394428877431,"id":1732,"parentId":1721,"tags":{},"startTime":1780887397424,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":6204,"timestamp":2394428877342,"id":1721,"parentId":1708,"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":1780887397424,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":3986,"timestamp":2394428879751,"id":1741,"parentId":1740,"tags":{},"startTime":1780887397427,"traceId":"9b70e6dfdb6b3605"}] +[{"name":"next-swc-loader","duration":3998,"timestamp":2394428879739,"id":1740,"parentId":1737,"tags":{},"startTime":1780887397427,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":4887,"timestamp":2394428879048,"id":1737,"parentId":1708,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/get-domain-locale.js","layer":"app-pages-browser"},"startTime":1780887397426,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":4206,"timestamp":2394428879737,"id":1739,"parentId":1738,"tags":{},"startTime":1780887397427,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":4234,"timestamp":2394428879709,"id":1738,"parentId":1736,"tags":{},"startTime":1780887397427,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":5269,"timestamp":2394428879005,"id":1736,"parentId":1708,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/use-intersection.js","layer":"app-pages-browser"},"startTime":1780887397426,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":10327,"timestamp":2394428878990,"id":1735,"parentId":1734,"tags":{},"startTime":1780887397426,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":12936,"timestamp":2394428878966,"id":1734,"parentId":1495,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/path-to-regexp/index.js","layer":null},"startTime":1780887397426,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":3447,"timestamp":2394428888636,"id":1749,"parentId":1748,"tags":{},"startTime":1780887397436,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":3460,"timestamp":2394428888624,"id":1748,"parentId":1743,"tags":{},"startTime":1780887397436,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":3942,"timestamp":2394428888417,"id":1743,"parentId":1716,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/omit.js","layer":"app-pages-browser"},"startTime":1780887397435,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":3982,"timestamp":2394428888657,"id":1753,"parentId":1752,"tags":{},"startTime":1780887397436,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":3997,"timestamp":2394428888648,"id":1752,"parentId":1745,"tags":{},"startTime":1780887397436,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":4345,"timestamp":2394428888547,"id":1745,"parentId":1716,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/index.js","layer":"app-pages-browser"},"startTime":1780887397436,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":4280,"timestamp":2394428888622,"id":1747,"parentId":1746,"tags":{},"startTime":1780887397436,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":4313,"timestamp":2394428888590,"id":1746,"parentId":1742,"tags":{},"startTime":1780887397436,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":4857,"timestamp":2394428888325,"id":1742,"parentId":1716,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/querystring.js","layer":"app-pages-browser"},"startTime":1780887397435,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":4544,"timestamp":2394428888647,"id":1751,"parentId":1750,"tags":{},"startTime":1780887397436,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":4555,"timestamp":2394428888637,"id":1750,"parentId":1744,"tags":{},"startTime":1780887397436,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":4921,"timestamp":2394428888509,"id":1744,"parentId":1716,"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":1780887397436,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":3183,"timestamp":2394428892049,"id":1756,"parentId":1755,"tags":{},"startTime":1780887397439,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":3210,"timestamp":2394428892026,"id":1755,"parentId":1754,"tags":{},"startTime":1780887397439,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":3614,"timestamp":2394428891972,"id":1754,"parentId":1736,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/request-idle-callback.js","layer":"app-pages-browser"},"startTime":1780887397439,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":1106,"timestamp":2394428896456,"id":1766,"parentId":1765,"tags":{},"startTime":1780887397444,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":1126,"timestamp":2394428896446,"id":1765,"parentId":1760,"tags":{},"startTime":1780887397444,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":1687,"timestamp":2394428896341,"id":1760,"parentId":1745,"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":1780887397443,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-css","duration":788409,"timestamp":2394428109774,"id":1543,"parentId":1367,"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":1780887396657,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":2544,"timestamp":2394428896469,"id":1768,"parentId":1767,"tags":{},"startTime":1780887397444,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":2557,"timestamp":2394428896457,"id":1767,"parentId":1761,"tags":{},"startTime":1780887397444,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":2902,"timestamp":2394428896366,"id":1761,"parentId":1744,"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":1780887397443,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":2843,"timestamp":2394428896444,"id":1764,"parentId":1763,"tags":{},"startTime":1780887397444,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":2869,"timestamp":2394428896418,"id":1763,"parentId":1759,"tags":{},"startTime":1780887397443,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":3435,"timestamp":2394428896302,"id":1759,"parentId":1745,"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":1780887397443,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":3307,"timestamp":2394428896478,"id":1770,"parentId":1769,"tags":{},"startTime":1780887397444,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":3316,"timestamp":2394428896470,"id":1769,"parentId":1762,"tags":{},"startTime":1780887397444,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":3900,"timestamp":2394428896388,"id":1762,"parentId":1744,"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":1780887397443,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":5476,"timestamp":2394428895751,"id":1758,"parentId":1757,"tags":{},"startTime":1780887397443,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":33,"timestamp":2394428901234,"id":1775,"parentId":1757,"tags":{},"startTime":1780887397448,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":6199,"timestamp":2394428895673,"id":1757,"parentId":1665,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/index.js","layer":"app-pages-browser"},"startTime":1780887397443,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":151,"timestamp":2394428902635,"id":1778,"parentId":1776,"tags":{},"startTime":1780887397450,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":41,"timestamp":2394428902794,"id":1781,"parentId":1776,"tags":{},"startTime":1780887397450,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":958,"timestamp":2394428902472,"id":1776,"parentId":1762,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/constants.js","layer":"app-pages-browser"},"startTime":1780887397450,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":6682,"timestamp":2394428897216,"id":1774,"parentId":1773,"tags":{},"startTime":1780887397444,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":32,"timestamp":2394428903904,"id":1782,"parentId":1773,"tags":{},"startTime":1780887397451,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":7003,"timestamp":2394428897088,"id":1773,"parentId":1640,"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":1780887397444,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":7200,"timestamp":2394428896895,"id":1772,"parentId":1771,"tags":{},"startTime":1780887397444,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":30,"timestamp":2394428904100,"id":1783,"parentId":1771,"tags":{},"startTime":1780887397451,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":7388,"timestamp":2394428896843,"id":1771,"parentId":1640,"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":1780887397444,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-transform","duration":1764,"timestamp":2394428902751,"id":1780,"parentId":1779,"tags":{},"startTime":1780887397450,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":1833,"timestamp":2394428902683,"id":1779,"parentId":1777,"tags":{},"startTime":1780887397450,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":2050,"timestamp":2394428902605,"id":1777,"parentId":1762,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/escape-regexp.js","layer":"app-pages-browser"},"startTime":1780887397450,"traceId":"9b70e6dfdb6b3605"},{"name":"add-entry","duration":1362516,"timestamp":2394427542391,"id":971,"parentId":948,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(public)%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1780887396089,"traceId":"9b70e6dfdb6b3605"},{"name":"add-entry","duration":1362540,"timestamp":2394427542373,"id":960,"parentId":948,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fadmin%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1780887396089,"traceId":"9b70e6dfdb6b3605"},{"name":"add-entry","duration":1362536,"timestamp":2394427542380,"id":964,"parentId":948,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fsectors%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1780887396089,"traceId":"9b70e6dfdb6b3605"},{"name":"add-entry","duration":1362542,"timestamp":2394427542377,"id":963,"parentId":948,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fadmin%2Fusers%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1780887396089,"traceId":"9b70e6dfdb6b3605"},{"name":"add-entry","duration":1362545,"timestamp":2394427542376,"id":962,"parentId":948,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fsectors%2F%5Bname%5D%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1780887396089,"traceId":"9b70e6dfdb6b3605"},{"name":"add-entry","duration":1362539,"timestamp":2394427542385,"id":967,"parentId":948,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fadmin%2Finvites%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1780887396089,"traceId":"9b70e6dfdb6b3605"},{"name":"add-entry","duration":1362576,"timestamp":2394427542352,"id":958,"parentId":948,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fauth-guard.tsx%22%2C%22ids%22%3A%5B%22AuthGuard%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fmobile-shell.tsx%22%2C%22ids%22%3A%5B%22MobileShell%22%5D%7D&server=false!"},"startTime":1780887396089,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":4763,"timestamp":2394428904873,"id":1785,"parentId":1784,"tags":{},"startTime":1780887397452,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":5271,"timestamp":2394428904850,"id":1784,"parentId":1668,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/cookie/index.js","layer":null},"startTime":1780887397452,"traceId":"9b70e6dfdb6b3605"},{"name":"add-entry","duration":1367955,"timestamp":2394427542225,"id":954,"parentId":948,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/router.js"},"startTime":1780887396089,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":5376,"timestamp":2394428904894,"id":1787,"parentId":1786,"tags":{},"startTime":1780887397452,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":5623,"timestamp":2394428904882,"id":1786,"parentId":1543,"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":1780887397452,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-css","duration":875490,"timestamp":2394428041167,"id":1367,"parentId":973,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/globals.css","layer":"app-pages-browser"},"startTime":1780887396588,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":8037,"timestamp":2394428909448,"id":1796,"parentId":1789,"tags":{},"startTime":1780887397457,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":45,"timestamp":2394428917505,"id":1804,"parentId":1789,"tags":{},"startTime":1780887397465,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":8644,"timestamp":2394428909196,"id":1789,"parentId":1757,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/core.js","layer":"app-pages-browser"},"startTime":1780887397456,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":9397,"timestamp":2394428909463,"id":1799,"parentId":1792,"tags":{},"startTime":1780887397457,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":30,"timestamp":2394428918867,"id":1805,"parentId":1792,"tags":{},"startTime":1780887397466,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":10155,"timestamp":2394428909318,"id":1792,"parentId":1757,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/components.js","layer":"app-pages-browser"},"startTime":1780887397456,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":10021,"timestamp":2394428909465,"id":1800,"parentId":1793,"tags":{},"startTime":1780887397457,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":29,"timestamp":2394428919490,"id":1806,"parentId":1793,"tags":{},"startTime":1780887397467,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":10253,"timestamp":2394428909356,"id":1793,"parentId":1757,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/features.js","layer":"app-pages-browser"},"startTime":1780887397456,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":10204,"timestamp":2394428909459,"id":1798,"parentId":1791,"tags":{},"startTime":1780887397457,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":28,"timestamp":2394428919666,"id":1807,"parentId":1791,"tags":{},"startTime":1780887397467,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":10586,"timestamp":2394428909279,"id":1791,"parentId":1757,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/charts.js","layer":"app-pages-browser"},"startTime":1780887397456,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":10460,"timestamp":2394428909438,"id":1795,"parentId":1788,"tags":{},"startTime":1780887397457,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":25,"timestamp":2394428919903,"id":1808,"parentId":1788,"tags":{},"startTime":1780887397467,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":11142,"timestamp":2394428909125,"id":1788,"parentId":1757,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/extension.js","layer":"app-pages-browser"},"startTime":1780887397456,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":10835,"timestamp":2394428909469,"id":1801,"parentId":1794,"tags":{},"startTime":1780887397457,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":24,"timestamp":2394428920308,"id":1809,"parentId":1794,"tags":{},"startTime":1780887397467,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":11061,"timestamp":2394428909394,"id":1794,"parentId":1684,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/scheduler/index.js","layer":"app-pages-browser"},"startTime":1780887397456,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":11005,"timestamp":2394428909454,"id":1797,"parentId":1790,"tags":{},"startTime":1780887397457,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":24,"timestamp":2394428920462,"id":1810,"parentId":1790,"tags":{},"startTime":1780887397468,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":11308,"timestamp":2394428909239,"id":1790,"parentId":1757,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/renderers.js","layer":"app-pages-browser"},"startTime":1780887397456,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module","duration":68,"timestamp":2394428922772,"id":1811,"parentId":1367,"tags":{},"startTime":1780887397470,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":13788,"timestamp":2394428910165,"id":1803,"parentId":1802,"tags":{},"startTime":1780887397457,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":13949,"timestamp":2394428910153,"id":1802,"parentId":1682,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/scheduler/index.js","layer":null},"startTime":1780887397457,"traceId":"9b70e6dfdb6b3605"},{"name":"add-entry","duration":1382792,"timestamp":2394427542236,"id":956,"parentId":948,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext-themes%2Fdist%2Findex.mjs%22%2C%22ids%22%3A%5B%22ThemeProvider%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2Fglobals.css%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fhooks%2Fuse-auth.tsx%22%2C%22ids%22%3A%5B%22AuthProvider%22%5D%7D&server=false!"},"startTime":1780887396089,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":9925,"timestamp":2394428926569,"id":1813,"parentId":1812,"tags":{},"startTime":1780887397474,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":32,"timestamp":2394428936504,"id":1836,"parentId":1812,"tags":{},"startTime":1780887397484,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":10697,"timestamp":2394428926441,"id":1812,"parentId":1789,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/api.js","layer":"app-pages-browser"},"startTime":1780887397474,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":12267,"timestamp":2394428930437,"id":1818,"parentId":1815,"tags":{},"startTime":1780887397478,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":207,"timestamp":2394428942744,"id":1943,"parentId":1815,"tags":{},"startTime":1780887397490,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":19972,"timestamp":2394428930342,"id":1815,"parentId":1789,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/core/echarts.js","layer":"app-pages-browser"},"startTime":1780887397477,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":23810,"timestamp":2394428930428,"id":1817,"parentId":1814,"tags":{},"startTime":1780887397477,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":37,"timestamp":2394428954263,"id":1944,"parentId":1814,"tags":{},"startTime":1780887397501,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":24328,"timestamp":2394428930264,"id":1814,"parentId":1789,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/label/installLabelLayout.js","layer":"app-pages-browser"},"startTime":1780887397477,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":24157,"timestamp":2394428930445,"id":1819,"parentId":1816,"tags":{},"startTime":1780887397478,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":24,"timestamp":2394428954606,"id":1945,"parentId":1816,"tags":{},"startTime":1780887397502,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":24400,"timestamp":2394428930385,"id":1816,"parentId":1788,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/core/impl.js","layer":"app-pages-browser"},"startTime":1780887397477,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":24669,"timestamp":2394428931334,"id":1828,"parentId":1820,"tags":{},"startTime":1780887397478,"traceId":"9b70e6dfdb6b3605"}] +[{"name":"next-swc-loader","duration":31,"timestamp":2394428956009,"id":1946,"parentId":1820,"tags":{},"startTime":1780887397503,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":26160,"timestamp":2394428930871,"id":1820,"parentId":1794,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/scheduler/cjs/scheduler.production.min.js","layer":"app-pages-browser"},"startTime":1780887397478,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":25684,"timestamp":2394428931356,"id":1832,"parentId":1824,"tags":{},"startTime":1780887397478,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":29,"timestamp":2394428957046,"id":1947,"parentId":1824,"tags":{},"startTime":1780887397504,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":26774,"timestamp":2394428931160,"id":1824,"parentId":1788,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/view/Chart.js","layer":"app-pages-browser"},"startTime":1780887397478,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":26594,"timestamp":2394428931349,"id":1830,"parentId":1822,"tags":{},"startTime":1780887397478,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":37,"timestamp":2394428957947,"id":1948,"parentId":1822,"tags":{},"startTime":1780887397505,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":28507,"timestamp":2394428931070,"id":1822,"parentId":1788,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/Series.js","layer":"app-pages-browser"},"startTime":1780887397478,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":28245,"timestamp":2394428931352,"id":1831,"parentId":1823,"tags":{},"startTime":1780887397478,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":39,"timestamp":2394428959605,"id":1949,"parentId":1823,"tags":{},"startTime":1780887397507,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":28811,"timestamp":2394428931120,"id":1823,"parentId":1788,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/view/Component.js","layer":"app-pages-browser"},"startTime":1780887397478,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":28597,"timestamp":2394428931343,"id":1829,"parentId":1821,"tags":{},"startTime":1780887397478,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":34,"timestamp":2394428959946,"id":1950,"parentId":1821,"tags":{},"startTime":1780887397507,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":29552,"timestamp":2394428930993,"id":1821,"parentId":1788,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/Component.js","layer":"app-pages-browser"},"startTime":1780887397478,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":29293,"timestamp":2394428931363,"id":1835,"parentId":1827,"tags":{},"startTime":1780887397478,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":29,"timestamp":2394428960662,"id":1951,"parentId":1827,"tags":{},"startTime":1780887397508,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":29520,"timestamp":2394428931290,"id":1827,"parentId":1790,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/renderer/installCanvasRenderer.js","layer":"app-pages-browser"},"startTime":1780887397478,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":29455,"timestamp":2394428931361,"id":1834,"parentId":1826,"tags":{},"startTime":1780887397478,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":26,"timestamp":2394428960820,"id":1952,"parentId":1826,"tags":{},"startTime":1780887397508,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":29666,"timestamp":2394428931250,"id":1826,"parentId":1790,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/renderer/installSVGRenderer.js","layer":"app-pages-browser"},"startTime":1780887397478,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":29590,"timestamp":2394428931359,"id":1833,"parentId":1825,"tags":{},"startTime":1780887397478,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":39,"timestamp":2394428960953,"id":1953,"parentId":1825,"tags":{},"startTime":1780887397508,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":31291,"timestamp":2394428931199,"id":1825,"parentId":1793,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/animation/universalTransition.js","layer":"app-pages-browser"},"startTime":1780887397478,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":27116,"timestamp":2394428937788,"id":1838,"parentId":1837,"tags":{},"startTime":1780887397485,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":28013,"timestamp":2394428937765,"id":1837,"parentId":1802,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/scheduler/cjs/scheduler.production.min.js","layer":null},"startTime":1780887397485,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":25006,"timestamp":2394428940782,"id":1891,"parentId":1839,"tags":{},"startTime":1780887397488,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":47,"timestamp":2394428965795,"id":1954,"parentId":1839,"tags":{},"startTime":1780887397513,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":28376,"timestamp":2394428937800,"id":1839,"parentId":1792,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/geo/install.js","layer":"app-pages-browser"},"startTime":1780887397485,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":25361,"timestamp":2394428940822,"id":1895,"parentId":1843,"tags":{},"startTime":1780887397488,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":29,"timestamp":2394428966187,"id":1955,"parentId":1843,"tags":{},"startTime":1780887397513,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":28393,"timestamp":2394428938048,"id":1843,"parentId":1792,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/polar/install.js","layer":"app-pages-browser"},"startTime":1780887397485,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":25632,"timestamp":2394428940815,"id":1894,"parentId":1842,"tags":{},"startTime":1780887397488,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":27,"timestamp":2394428966451,"id":1956,"parentId":1842,"tags":{},"startTime":1780887397514,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":28669,"timestamp":2394428937937,"id":1842,"parentId":1792,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/parallel/install.js","layer":"app-pages-browser"},"startTime":1780887397485,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":25785,"timestamp":2394428940826,"id":1896,"parentId":1844,"tags":{},"startTime":1780887397488,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":24,"timestamp":2394428966614,"id":1957,"parentId":1844,"tags":{},"startTime":1780887397514,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":28628,"timestamp":2394428938097,"id":1844,"parentId":1792,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/radar/install.js","layer":"app-pages-browser"},"startTime":1780887397485,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":25899,"timestamp":2394428940829,"id":1897,"parentId":1845,"tags":{},"startTime":1780887397488,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":24,"timestamp":2394428966732,"id":1958,"parentId":1845,"tags":{},"startTime":1780887397514,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":28818,"timestamp":2394428938139,"id":1845,"parentId":1792,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/singleAxis/install.js","layer":"app-pages-browser"},"startTime":1780887397485,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":26130,"timestamp":2394428940833,"id":1898,"parentId":1846,"tags":{},"startTime":1780887397488,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":29,"timestamp":2394428966968,"id":1959,"parentId":1846,"tags":{},"startTime":1780887397514,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":28980,"timestamp":2394428938179,"id":1846,"parentId":1792,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/toolbox/install.js","layer":"app-pages-browser"},"startTime":1780887397485,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":26327,"timestamp":2394428940837,"id":1899,"parentId":1847,"tags":{},"startTime":1780887397488,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":27,"timestamp":2394428967168,"id":1960,"parentId":1847,"tags":{},"startTime":1780887397514,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":29073,"timestamp":2394428938220,"id":1847,"parentId":1792,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/tooltip/install.js","layer":"app-pages-browser"},"startTime":1780887397485,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":26245,"timestamp":2394428941051,"id":1901,"parentId":1849,"tags":{},"startTime":1780887397488,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":26,"timestamp":2394428967300,"id":1961,"parentId":1849,"tags":{},"startTime":1780887397514,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":29142,"timestamp":2394428938302,"id":1849,"parentId":1792,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/graphic/install.js","layer":"app-pages-browser"},"startTime":1780887397485,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":28630,"timestamp":2394428941080,"id":1902,"parentId":1850,"tags":{},"startTime":1780887397488,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":32,"timestamp":2394428969719,"id":1962,"parentId":1850,"tags":{},"startTime":1780887397517,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":31621,"timestamp":2394428938339,"id":1850,"parentId":1792,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/brush/install.js","layer":"app-pages-browser"},"startTime":1780887397485,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":29172,"timestamp":2394428940795,"id":1892,"parentId":1840,"tags":{},"startTime":1780887397488,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":30,"timestamp":2394428969972,"id":1963,"parentId":1840,"tags":{},"startTime":1780887397517,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":32461,"timestamp":2394428937856,"id":1840,"parentId":1792,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/grid/installSimple.js","layer":"app-pages-browser"},"startTime":1780887397485,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":29500,"timestamp":2394428940841,"id":1900,"parentId":1848,"tags":{},"startTime":1780887397488,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":41,"timestamp":2394428970352,"id":1964,"parentId":1848,"tags":{},"startTime":1780887397517,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":32419,"timestamp":2394428938263,"id":1848,"parentId":1792,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/calendar/install.js","layer":"app-pages-browser"},"startTime":1780887397485,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":29893,"timestamp":2394428940804,"id":1893,"parentId":1841,"tags":{},"startTime":1780887397488,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":30,"timestamp":2394428970702,"id":1965,"parentId":1841,"tags":{},"startTime":1780887397518,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":32994,"timestamp":2394428937898,"id":1841,"parentId":1792,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/grid/install.js","layer":"app-pages-browser"},"startTime":1780887397485,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":29783,"timestamp":2394428941117,"id":1906,"parentId":1854,"tags":{},"startTime":1780887397488,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":42,"timestamp":2394428970905,"id":1966,"parentId":1854,"tags":{},"startTime":1780887397518,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":32359,"timestamp":2394428938697,"id":1854,"parentId":1792,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/installMarkLine.js","layer":"app-pages-browser"},"startTime":1780887397486,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":29963,"timestamp":2394428941098,"id":1903,"parentId":1851,"tags":{},"startTime":1780887397488,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":36,"timestamp":2394428971065,"id":1967,"parentId":1851,"tags":{},"startTime":1780887397518,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":32807,"timestamp":2394428938376,"id":1851,"parentId":1792,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/timeline/install.js","layer":"app-pages-browser"},"startTime":1780887397485,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":30078,"timestamp":2394428941112,"id":1905,"parentId":1853,"tags":{},"startTime":1780887397488,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":25,"timestamp":2394428971193,"id":1968,"parentId":1853,"tags":{},"startTime":1780887397518,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":32639,"timestamp":2394428938650,"id":1853,"parentId":1792,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/installMarkPoint.js","layer":"app-pages-browser"},"startTime":1780887397486,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":30167,"timestamp":2394428941126,"id":1908,"parentId":1856,"tags":{},"startTime":1780887397488,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":27,"timestamp":2394428971297,"id":1969,"parentId":1856,"tags":{},"startTime":1780887397518,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":32985,"timestamp":2394428938907,"id":1856,"parentId":1792,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/title/install.js","layer":"app-pages-browser"},"startTime":1780887397486,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":30800,"timestamp":2394428941105,"id":1904,"parentId":1852,"tags":{},"startTime":1780887397488,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":32,"timestamp":2394428971912,"id":1970,"parentId":1852,"tags":{},"startTime":1780887397519,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":33765,"timestamp":2394428938415,"id":1852,"parentId":1792,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/install.js","layer":"app-pages-browser"},"startTime":1780887397485,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":31052,"timestamp":2394428941135,"id":1910,"parentId":1858,"tags":{},"startTime":1780887397488,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":27,"timestamp":2394428972192,"id":1971,"parentId":1858,"tags":{},"startTime":1780887397519,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":33315,"timestamp":2394428938991,"id":1858,"parentId":1792,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/legend/installLegendScroll.js","layer":"app-pages-browser"},"startTime":1780887397486,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":31135,"timestamp":2394428941176,"id":1911,"parentId":1859,"tags":{},"startTime":1780887397488,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":26,"timestamp":2394428972314,"id":1972,"parentId":1859,"tags":{},"startTime":1780887397519,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":33388,"timestamp":2394428939029,"id":1859,"parentId":1792,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/legend/installLegendPlain.js","layer":"app-pages-browser"},"startTime":1780887397486,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":31292,"timestamp":2394428941130,"id":1909,"parentId":1857,"tags":{},"startTime":1780887397488,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":24,"timestamp":2394428972424,"id":1973,"parentId":1857,"tags":{},"startTime":1780887397519,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":33572,"timestamp":2394428938951,"id":1857,"parentId":1792,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/legend/install.js","layer":"app-pages-browser"},"startTime":1780887397486,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":31405,"timestamp":2394428941121,"id":1907,"parentId":1855,"tags":{},"startTime":1780887397488,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":33,"timestamp":2394428972529,"id":1974,"parentId":1855,"tags":{},"startTime":1780887397520,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":33858,"timestamp":2394428938782,"id":1855,"parentId":1792,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/installMarkArea.js","layer":"app-pages-browser"},"startTime":1780887397486,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":31409,"timestamp":2394428941235,"id":1917,"parentId":1865,"tags":{},"startTime":1780887397488,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":25,"timestamp":2394428972648,"id":1975,"parentId":1865,"tags":{},"startTime":1780887397520,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":33553,"timestamp":2394428939302,"id":1865,"parentId":1792,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataset/install.js","layer":"app-pages-browser"},"startTime":1780887397486,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":31675,"timestamp":2394428941184,"id":1912,"parentId":1860,"tags":{},"startTime":1780887397488,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":24,"timestamp":2394428972862,"id":1976,"parentId":1860,"tags":{},"startTime":1780887397520,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":33878,"timestamp":2394428939069,"id":1860,"parentId":1792,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/install.js","layer":"app-pages-browser"},"startTime":1780887397486,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":31763,"timestamp":2394428941188,"id":1913,"parentId":1861,"tags":{},"startTime":1780887397488,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":24,"timestamp":2394428972954,"id":1977,"parentId":1861,"tags":{},"startTime":1780887397520,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":33950,"timestamp":2394428939107,"id":1861,"parentId":1792,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/installDataZoomInside.js","layer":"app-pages-browser"},"startTime":1780887397486,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":31845,"timestamp":2394428941216,"id":1915,"parentId":1863,"tags":{},"startTime":1780887397488,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":25,"timestamp":2394428973065,"id":1978,"parentId":1863,"tags":{},"startTime":1780887397520,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":33957,"timestamp":2394428939185,"id":1863,"parentId":1792,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/aria/install.js","layer":"app-pages-browser"},"startTime":1780887397486,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":31926,"timestamp":2394428941220,"id":1916,"parentId":1864,"tags":{},"startTime":1780887397488,"traceId":"9b70e6dfdb6b3605"}] +[{"name":"next-swc-loader","duration":23,"timestamp":2394428973149,"id":1979,"parentId":1864,"tags":{},"startTime":1780887397520,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":34014,"timestamp":2394428939222,"id":1864,"parentId":1792,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/transform/install.js","layer":"app-pages-browser"},"startTime":1780887397486,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":31986,"timestamp":2394428941255,"id":1921,"parentId":1869,"tags":{},"startTime":1780887397488,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":24,"timestamp":2394428973254,"id":1980,"parentId":1869,"tags":{},"startTime":1780887397520,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":33976,"timestamp":2394428939456,"id":1869,"parentId":1791,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/line/install.js","layer":"app-pages-browser"},"startTime":1780887397487,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":32224,"timestamp":2394428941212,"id":1914,"parentId":1862,"tags":{},"startTime":1780887397488,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":24,"timestamp":2394428973439,"id":1981,"parentId":1862,"tags":{},"startTime":1780887397521,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":34372,"timestamp":2394428939147,"id":1862,"parentId":1792,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/installDataZoomSlider.js","layer":"app-pages-browser"},"startTime":1780887397486,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":32277,"timestamp":2394428941247,"id":1919,"parentId":1867,"tags":{},"startTime":1780887397488,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":25,"timestamp":2394428973527,"id":1982,"parentId":1867,"tags":{},"startTime":1780887397521,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":34229,"timestamp":2394428939378,"id":1867,"parentId":1792,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/installVisualMapContinuous.js","layer":"app-pages-browser"},"startTime":1780887397486,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":32359,"timestamp":2394428941251,"id":1920,"parentId":1868,"tags":{},"startTime":1780887397488,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":24,"timestamp":2394428973612,"id":1983,"parentId":1868,"tags":{},"startTime":1780887397521,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":34276,"timestamp":2394428939418,"id":1868,"parentId":1792,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/installVisualMapPiecewise.js","layer":"app-pages-browser"},"startTime":1780887397486,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":32425,"timestamp":2394428941272,"id":1926,"parentId":1874,"tags":{},"startTime":1780887397488,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":24,"timestamp":2394428973700,"id":1984,"parentId":1874,"tags":{},"startTime":1780887397521,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":34058,"timestamp":2394428939743,"id":1874,"parentId":1791,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/tree/install.js","layer":"app-pages-browser"},"startTime":1780887397487,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":32562,"timestamp":2394428941242,"id":1918,"parentId":1866,"tags":{},"startTime":1780887397488,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":23,"timestamp":2394428973807,"id":1985,"parentId":1866,"tags":{},"startTime":1780887397521,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":34544,"timestamp":2394428939341,"id":1866,"parentId":1792,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/install.js","layer":"app-pages-browser"},"startTime":1780887397486,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":32627,"timestamp":2394428941261,"id":1923,"parentId":1871,"tags":{},"startTime":1780887397488,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":22,"timestamp":2394428973892,"id":1986,"parentId":1871,"tags":{},"startTime":1780887397521,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":34457,"timestamp":2394428939547,"id":1871,"parentId":1791,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/radar/install.js","layer":"app-pages-browser"},"startTime":1780887397487,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":32749,"timestamp":2394428941258,"id":1922,"parentId":1870,"tags":{},"startTime":1780887397488,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":22,"timestamp":2394428974010,"id":1987,"parentId":1870,"tags":{},"startTime":1780887397521,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":34614,"timestamp":2394428939495,"id":1870,"parentId":1791,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/pie/install.js","layer":"app-pages-browser"},"startTime":1780887397487,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":32837,"timestamp":2394428941275,"id":1927,"parentId":1875,"tags":{},"startTime":1780887397488,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":29,"timestamp":2394428974116,"id":1988,"parentId":1875,"tags":{},"startTime":1780887397521,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":34430,"timestamp":2394428939804,"id":1875,"parentId":1791,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/treemap/install.js","layer":"app-pages-browser"},"startTime":1780887397487,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":32953,"timestamp":2394428941285,"id":1930,"parentId":1878,"tags":{},"startTime":1780887397488,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":25,"timestamp":2394428974242,"id":1989,"parentId":1878,"tags":{},"startTime":1780887397521,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":34411,"timestamp":2394428939925,"id":1878,"parentId":1791,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/parallel/install.js","layer":"app-pages-browser"},"startTime":1780887397487,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":33070,"timestamp":2394428941269,"id":1925,"parentId":1873,"tags":{},"startTime":1780887397488,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":22,"timestamp":2394428974342,"id":1990,"parentId":1873,"tags":{},"startTime":1780887397521,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":34781,"timestamp":2394428939657,"id":1873,"parentId":1791,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/map/install.js","layer":"app-pages-browser"},"startTime":1780887397487,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":33158,"timestamp":2394428941282,"id":1929,"parentId":1877,"tags":{},"startTime":1780887397488,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":22,"timestamp":2394428974443,"id":1991,"parentId":1877,"tags":{},"startTime":1780887397522,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":34634,"timestamp":2394428939887,"id":1877,"parentId":1791,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/funnel/install.js","layer":"app-pages-browser"},"startTime":1780887397487,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":33237,"timestamp":2394428941288,"id":1931,"parentId":1879,"tags":{},"startTime":1780887397488,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":23,"timestamp":2394428974528,"id":1992,"parentId":1879,"tags":{},"startTime":1780887397522,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":34663,"timestamp":2394428939965,"id":1879,"parentId":1791,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sankey/install.js","layer":"app-pages-browser"},"startTime":1780887397487,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":33352,"timestamp":2394428941279,"id":1928,"parentId":1876,"tags":{},"startTime":1780887397488,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":22,"timestamp":2394428974634,"id":1993,"parentId":1876,"tags":{},"startTime":1780887397522,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":34852,"timestamp":2394428939849,"id":1876,"parentId":1791,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/gauge/install.js","layer":"app-pages-browser"},"startTime":1780887397487,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":33414,"timestamp":2394428941291,"id":1932,"parentId":1880,"tags":{},"startTime":1780887397488,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":23,"timestamp":2394428974707,"id":1994,"parentId":1880,"tags":{},"startTime":1780887397522,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":34823,"timestamp":2394428940006,"id":1880,"parentId":1791,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/bar/install.js","layer":"app-pages-browser"},"startTime":1780887397487,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":33569,"timestamp":2394428941265,"id":1924,"parentId":1872,"tags":{},"startTime":1780887397488,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":23,"timestamp":2394428974836,"id":1995,"parentId":1872,"tags":{},"startTime":1780887397522,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":35409,"timestamp":2394428939585,"id":1872,"parentId":1791,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/scatter/install.js","layer":"app-pages-browser"},"startTime":1780887397487,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":33684,"timestamp":2394428941313,"id":1935,"parentId":1883,"tags":{},"startTime":1780887397488,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":25,"timestamp":2394428975001,"id":1996,"parentId":1883,"tags":{},"startTime":1780887397522,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":34997,"timestamp":2394428940120,"id":1883,"parentId":1791,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/boxplot/install.js","layer":"app-pages-browser"},"startTime":1780887397487,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":33826,"timestamp":2394428941293,"id":1933,"parentId":1881,"tags":{},"startTime":1780887397488,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":36,"timestamp":2394428975122,"id":1997,"parentId":1881,"tags":{},"startTime":1780887397522,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":35194,"timestamp":2394428940045,"id":1881,"parentId":1791,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/bar/installPictorialBar.js","layer":"app-pages-browser"},"startTime":1780887397487,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":33912,"timestamp":2394428941330,"id":1939,"parentId":1887,"tags":{},"startTime":1780887397488,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":25,"timestamp":2394428975244,"id":1998,"parentId":1887,"tags":{},"startTime":1780887397522,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":35070,"timestamp":2394428940269,"id":1887,"parentId":1791,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/heatmap/install.js","layer":"app-pages-browser"},"startTime":1780887397487,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":34017,"timestamp":2394428941326,"id":1938,"parentId":1886,"tags":{},"startTime":1780887397488,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":29,"timestamp":2394428975346,"id":1999,"parentId":1886,"tags":{},"startTime":1780887397522,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":35199,"timestamp":2394428940233,"id":1886,"parentId":1791,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/lines/install.js","layer":"app-pages-browser"},"startTime":1780887397487,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":34375,"timestamp":2394428941322,"id":1937,"parentId":1885,"tags":{},"startTime":1780887397488,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":24,"timestamp":2394428975700,"id":2000,"parentId":1885,"tags":{},"startTime":1780887397523,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":35608,"timestamp":2394428940194,"id":1885,"parentId":1791,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/candlestick/install.js","layer":"app-pages-browser"},"startTime":1780887397487,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":34505,"timestamp":2394428941318,"id":1936,"parentId":1884,"tags":{},"startTime":1780887397488,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":25,"timestamp":2394428975827,"id":2001,"parentId":1884,"tags":{},"startTime":1780887397523,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":35757,"timestamp":2394428940157,"id":1884,"parentId":1791,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/effectScatter/install.js","layer":"app-pages-browser"},"startTime":1780887397487,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":34614,"timestamp":2394428941341,"id":1942,"parentId":1890,"tags":{},"startTime":1780887397488,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":24,"timestamp":2394428975959,"id":2002,"parentId":1890,"tags":{},"startTime":1780887397523,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":35661,"timestamp":2394428940381,"id":1890,"parentId":1791,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/custom/install.js","layer":"app-pages-browser"},"startTime":1780887397487,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":35508,"timestamp":2394428941297,"id":1934,"parentId":1882,"tags":{},"startTime":1780887397488,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":25,"timestamp":2394428976808,"id":2003,"parentId":1882,"tags":{},"startTime":1780887397524,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":36929,"timestamp":2394428940082,"id":1882,"parentId":1791,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/install.js","layer":"app-pages-browser"},"startTime":1780887397487,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":35841,"timestamp":2394428941336,"id":1941,"parentId":1889,"tags":{},"startTime":1780887397488,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":34,"timestamp":2394428977181,"id":2004,"parentId":1889,"tags":{},"startTime":1780887397524,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":37045,"timestamp":2394428940344,"id":1889,"parentId":1791,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sunburst/install.js","layer":"app-pages-browser"},"startTime":1780887397487,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":36230,"timestamp":2394428941333,"id":1940,"parentId":1888,"tags":{},"startTime":1780887397488,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":24,"timestamp":2394428977567,"id":2005,"parentId":1888,"tags":{},"startTime":1780887397525,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":37364,"timestamp":2394428940307,"id":1888,"parentId":1791,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/themeRiver/install.js","layer":"app-pages-browser"},"startTime":1780887397487,"traceId":"9b70e6dfdb6b3605"},{"name":"add-entry","duration":1439569,"timestamp":2394427542077,"id":951,"parentId":948,"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":1780887396089,"traceId":"9b70e6dfdb6b3605"},{"name":"add-entry","duration":1439597,"timestamp":2394427542054,"id":950,"parentId":948,"tags":{"request":"./node_modules/next/dist/client/app-next.js"},"startTime":1780887396089,"traceId":"9b70e6dfdb6b3605"},{"name":"add-entry","duration":1439859,"timestamp":2394427541793,"id":949,"parentId":948,"tags":{"request":"./node_modules/next/dist/client/next.js"},"startTime":1780887396089,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":15319,"timestamp":2394429035259,"id":2019,"parentId":2007,"tags":{},"startTime":1780887397582,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":50,"timestamp":2394429050632,"id":2190,"parentId":2007,"tags":{},"startTime":1780887397598,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":17965,"timestamp":2394429034807,"id":2007,"parentId":1815,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/Global.js","layer":"app-pages-browser"},"startTime":1780887397582,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":17544,"timestamp":2394429035264,"id":2020,"parentId":2008,"tags":{},"startTime":1780887397582,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":32,"timestamp":2394429052825,"id":2191,"parentId":2008,"tags":{},"startTime":1780887397600,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":18192,"timestamp":2394429034856,"id":2008,"parentId":1815,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/core/ExtensionAPI.js","layer":"app-pages-browser"},"startTime":1780887397582,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":17784,"timestamp":2394429035275,"id":2022,"parentId":2010,"tags":{},"startTime":1780887397582,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":37,"timestamp":2394429053065,"id":2192,"parentId":2010,"tags":{},"startTime":1780887397600,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":18891,"timestamp":2394429034935,"id":2010,"parentId":1815,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/OptionManager.js","layer":"app-pages-browser"},"startTime":1780887397582,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":18587,"timestamp":2394429035247,"id":2018,"parentId":2006,"tags":{},"startTime":1780887397582,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":28,"timestamp":2394429053839,"id":2193,"parentId":2006,"tags":{},"startTime":1780887397601,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":19590,"timestamp":2394429034693,"id":2006,"parentId":1812,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/Model.js","layer":"app-pages-browser"},"startTime":1780887397582,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":19011,"timestamp":2394429035281,"id":2024,"parentId":2012,"tags":{},"startTime":1780887397582,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":27,"timestamp":2394429054296,"id":2194,"parentId":2012,"tags":{},"startTime":1780887397601,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":19663,"timestamp":2394429035007,"id":2012,"parentId":1812,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/throttle.js","layer":"app-pages-browser"},"startTime":1780887397582,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":19391,"timestamp":2394429035289,"id":2027,"parentId":2015,"tags":{},"startTime":1780887397582,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":29,"timestamp":2394429054686,"id":2195,"parentId":2015,"tags":{},"startTime":1780887397602,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":19722,"timestamp":2394429035129,"id":2015,"parentId":1812,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/api/number.js","layer":"app-pages-browser"},"startTime":1780887397582,"traceId":"9b70e6dfdb6b3605"}] +[{"name":"read-resource","duration":19569,"timestamp":2394429035287,"id":2026,"parentId":2014,"tags":{},"startTime":1780887397582,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":27,"timestamp":2394429054859,"id":2196,"parentId":2014,"tags":{},"startTime":1780887397602,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":20054,"timestamp":2394429035093,"id":2014,"parentId":1812,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/api/helper.js","layer":"app-pages-browser"},"startTime":1780887397582,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":19851,"timestamp":2394429035301,"id":2028,"parentId":2016,"tags":{},"startTime":1780887397582,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":24,"timestamp":2394429055156,"id":2197,"parentId":2016,"tags":{},"startTime":1780887397602,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":20070,"timestamp":2394429035165,"id":2016,"parentId":1812,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/api/time.js","layer":"app-pages-browser"},"startTime":1780887397582,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":19955,"timestamp":2394429035284,"id":2025,"parentId":2013,"tags":{},"startTime":1780887397582,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":36,"timestamp":2394429055242,"id":2198,"parentId":2013,"tags":{},"startTime":1780887397602,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":21352,"timestamp":2394429035053,"id":2013,"parentId":1815,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/graphic.js","layer":"app-pages-browser"},"startTime":1780887397582,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":21135,"timestamp":2394429035278,"id":2023,"parentId":2011,"tags":{},"startTime":1780887397582,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":49,"timestamp":2394429056416,"id":2199,"parentId":2011,"tags":{},"startTime":1780887397603,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":23418,"timestamp":2394429034971,"id":2011,"parentId":1812,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/SeriesData.js","layer":"app-pages-browser"},"startTime":1780887397582,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":23127,"timestamp":2394429035269,"id":2021,"parentId":2009,"tags":{},"startTime":1780887397582,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":28,"timestamp":2394429058400,"id":2200,"parentId":2009,"tags":{},"startTime":1780887397605,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":23693,"timestamp":2394429034896,"id":2009,"parentId":1815,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/core/CoordinateSystem.js","layer":"app-pages-browser"},"startTime":1780887397582,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":23266,"timestamp":2394429035328,"id":2029,"parentId":2017,"tags":{},"startTime":1780887397582,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":25,"timestamp":2394429058597,"id":2201,"parentId":2017,"tags":{},"startTime":1780887397606,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":23513,"timestamp":2394429035199,"id":2017,"parentId":1812,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/api/graphic.js","layer":"app-pages-browser"},"startTime":1780887397582,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":18165,"timestamp":2394429042857,"id":2067,"parentId":2030,"tags":{},"startTime":1780887397590,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":27,"timestamp":2394429061027,"id":2202,"parentId":2030,"tags":{},"startTime":1780887397608,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":19926,"timestamp":2394429041219,"id":2030,"parentId":1812,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/api/format.js","layer":"app-pages-browser"},"startTime":1780887397588,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":18258,"timestamp":2394429042893,"id":2071,"parentId":2034,"tags":{},"startTime":1780887397590,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":39,"timestamp":2394429061156,"id":2203,"parentId":2034,"tags":{},"startTime":1780887397608,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":21829,"timestamp":2394429041451,"id":2034,"parentId":1815,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/states.js","layer":"app-pages-browser"},"startTime":1780887397589,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":20406,"timestamp":2394429042896,"id":2072,"parentId":2035,"tags":{},"startTime":1780887397590,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":42,"timestamp":2394429063313,"id":2204,"parentId":2035,"tags":{},"startTime":1780887397610,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":22054,"timestamp":2394429041499,"id":2035,"parentId":1815,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/innerStore.js","layer":"app-pages-browser"},"startTime":1780887397589,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":20682,"timestamp":2394429042880,"id":2069,"parentId":2032,"tags":{},"startTime":1780887397590,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":30,"timestamp":2394429063567,"id":2205,"parentId":2032,"tags":{},"startTime":1780887397611,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":24049,"timestamp":2394429041370,"id":2032,"parentId":1812,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/Axis.js","layer":"app-pages-browser"},"startTime":1780887397588,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":22562,"timestamp":2394429042873,"id":2068,"parentId":2031,"tags":{},"startTime":1780887397590,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":38,"timestamp":2394429065444,"id":2206,"parentId":2031,"tags":{},"startTime":1780887397613,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":24321,"timestamp":2394429041321,"id":2031,"parentId":1812,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/export/api/util.js","layer":"app-pages-browser"},"startTime":1780887397588,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":22736,"timestamp":2394429042914,"id":2077,"parentId":2040,"tags":{},"startTime":1780887397590,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":26,"timestamp":2394429065655,"id":2207,"parentId":2040,"tags":{},"startTime":1780887397613,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":24250,"timestamp":2394429041724,"id":2040,"parentId":1815,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/log.js","layer":"app-pages-browser"},"startTime":1780887397589,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":23093,"timestamp":2394429042888,"id":2070,"parentId":2033,"tags":{},"startTime":1780887397590,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":27,"timestamp":2394429065984,"id":2208,"parentId":2033,"tags":{},"startTime":1780887397613,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":24890,"timestamp":2394429041412,"id":2033,"parentId":1812,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/parseGeoJson.js","layer":"app-pages-browser"},"startTime":1780887397588,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":23404,"timestamp":2394429042903,"id":2074,"parentId":2037,"tags":{},"startTime":1780887397590,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":36,"timestamp":2394429066310,"id":2209,"parentId":2037,"tags":{},"startTime":1780887397613,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":25700,"timestamp":2394429041606,"id":2037,"parentId":1815,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/core/Scheduler.js","layer":"app-pages-browser"},"startTime":1780887397589,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":24402,"timestamp":2394429042911,"id":2076,"parentId":2039,"tags":{},"startTime":1780887397590,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":49,"timestamp":2394429067317,"id":2210,"parentId":2039,"tags":{},"startTime":1780887397614,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":25982,"timestamp":2394429041685,"id":2039,"parentId":1815,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/ECEventProcessor.js","layer":"app-pages-browser"},"startTime":1780887397589,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":24764,"timestamp":2394429042907,"id":2075,"parentId":2038,"tags":{},"startTime":1780887397590,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":30,"timestamp":2394429067675,"id":2211,"parentId":2038,"tags":{},"startTime":1780887397615,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":26676,"timestamp":2394429041646,"id":2038,"parentId":1815,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/clazz.js","layer":"app-pages-browser"},"startTime":1780887397589,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":27614,"timestamp":2394429042921,"id":2079,"parentId":2042,"tags":{},"startTime":1780887397590,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":32,"timestamp":2394429070543,"id":2212,"parentId":2042,"tags":{},"startTime":1780887397618,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":29234,"timestamp":2394429041799,"id":2042,"parentId":1815,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/processor/dataStack.js","layer":"app-pages-browser"},"startTime":1780887397589,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":28113,"timestamp":2394429042927,"id":2081,"parentId":2044,"tags":{},"startTime":1780887397590,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":27,"timestamp":2394429071045,"id":2213,"parentId":2044,"tags":{},"startTime":1780887397618,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":29289,"timestamp":2394429041870,"id":2044,"parentId":1815,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/event.js","layer":"app-pages-browser"},"startTime":1780887397589,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":28247,"timestamp":2394429042917,"id":2078,"parentId":2041,"tags":{},"startTime":1780887397590,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":30,"timestamp":2394429071169,"id":2214,"parentId":2041,"tags":{},"startTime":1780887397618,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":30021,"timestamp":2394429041761,"id":2041,"parentId":1815,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/preprocessor/backwardCompat.js","layer":"app-pages-browser"},"startTime":1780887397589,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":28889,"timestamp":2394429042900,"id":2073,"parentId":2036,"tags":{},"startTime":1780887397590,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":39,"timestamp":2394429071793,"id":2215,"parentId":2036,"tags":{},"startTime":1780887397619,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":32143,"timestamp":2394429041563,"id":2036,"parentId":1815,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/model.js","layer":"app-pages-browser"},"startTime":1780887397589,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":30788,"timestamp":2394429042930,"id":2082,"parentId":2045,"tags":{},"startTime":1780887397590,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":30,"timestamp":2394429073724,"id":2216,"parentId":2045,"tags":{},"startTime":1780887397621,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":31984,"timestamp":2394429041906,"id":2045,"parentId":1815,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/core/lifecycle.js","layer":"app-pages-browser"},"startTime":1780887397589,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":30971,"timestamp":2394429042924,"id":2080,"parentId":2043,"tags":{},"startTime":1780887397590,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":28,"timestamp":2394429073900,"id":2217,"parentId":2043,"tags":{},"startTime":1780887397621,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":32343,"timestamp":2394429041835,"id":2043,"parentId":1815,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/core/locale.js","layer":"app-pages-browser"},"startTime":1780887397589,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":31252,"timestamp":2394429042939,"id":2085,"parentId":2048,"tags":{},"startTime":1780887397590,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":26,"timestamp":2394429074195,"id":2218,"parentId":2048,"tags":{},"startTime":1780887397621,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":32530,"timestamp":2394429042013,"id":2048,"parentId":1812,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/matrix.js","layer":"app-pages-browser"},"startTime":1780887397589,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":31604,"timestamp":2394429042945,"id":2087,"parentId":2050,"tags":{},"startTime":1780887397590,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":45,"timestamp":2394429074554,"id":2219,"parentId":2050,"tags":{},"startTime":1780887397622,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":32980,"timestamp":2394429042082,"id":2050,"parentId":1812,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/env.js","layer":"app-pages-browser"},"startTime":1780887397589,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":32154,"timestamp":2394429042936,"id":2084,"parentId":2047,"tags":{},"startTime":1780887397590,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":47,"timestamp":2394429075101,"id":2220,"parentId":2047,"tags":{},"startTime":1780887397622,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":35263,"timestamp":2394429041977,"id":2047,"parentId":1788,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/util.js","layer":"app-pages-browser"},"startTime":1780887397589,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":34319,"timestamp":2394429042942,"id":2086,"parentId":2049,"tags":{},"startTime":1780887397590,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":33,"timestamp":2394429077268,"id":2221,"parentId":2049,"tags":{},"startTime":1780887397624,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":36327,"timestamp":2394429042049,"id":2049,"parentId":1812,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/vector.js","layer":"app-pages-browser"},"startTime":1780887397589,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":35437,"timestamp":2394429042948,"id":2088,"parentId":2051,"tags":{},"startTime":1780887397590,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":27,"timestamp":2394429078390,"id":2222,"parentId":2051,"tags":{},"startTime":1780887397625,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":36670,"timestamp":2394429042120,"id":2051,"parentId":1812,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/platform.js","layer":"app-pages-browser"},"startTime":1780887397589,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":35848,"timestamp":2394429042950,"id":2089,"parentId":2052,"tags":{},"startTime":1780887397590,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":35,"timestamp":2394429078803,"id":2223,"parentId":2052,"tags":{},"startTime":1780887397626,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":39435,"timestamp":2394429042214,"id":2052,"parentId":1815,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/timsort.js","layer":"app-pages-browser"},"startTime":1780887397589,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":38758,"timestamp":2394429042962,"id":2094,"parentId":2057,"tags":{},"startTime":1780887397590,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":47,"timestamp":2394429081733,"id":2224,"parentId":2057,"tags":{},"startTime":1780887397629,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":39810,"timestamp":2394429042459,"id":2057,"parentId":1815,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/visual/symbol.js","layer":"app-pages-browser"},"startTime":1780887397590,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":39323,"timestamp":2394429042957,"id":2092,"parentId":2055,"tags":{},"startTime":1780887397590,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":42,"timestamp":2394429082287,"id":2225,"parentId":2055,"tags":{},"startTime":1780887397629,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":41862,"timestamp":2394429042386,"id":2055,"parentId":1812,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/canvas/graphic.js","layer":"app-pages-browser"},"startTime":1780887397589,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":41307,"timestamp":2394429042955,"id":2091,"parentId":2054,"tags":{},"startTime":1780887397590,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":41,"timestamp":2394429084268,"id":2226,"parentId":2054,"tags":{},"startTime":1780887397631,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":43383,"timestamp":2394429042344,"id":2054,"parentId":1812,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/tool/color.js","layer":"app-pages-browser"},"startTime":1780887397589,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":42787,"timestamp":2394429042953,"id":2090,"parentId":2053,"tags":{},"startTime":1780887397590,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":33,"timestamp":2394429085746,"id":2227,"parentId":2053,"tags":{},"startTime":1780887397633,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":43914,"timestamp":2394429042299,"id":2053,"parentId":1815,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/Eventful.js","layer":"app-pages-browser"},"startTime":1780887397589,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":43262,"timestamp":2394429042959,"id":2093,"parentId":2056,"tags":{},"startTime":1780887397590,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":31,"timestamp":2394429086225,"id":2228,"parentId":2056,"tags":{},"startTime":1780887397633,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":44303,"timestamp":2394429042423,"id":2056,"parentId":1815,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/visual/style.js","layer":"app-pages-browser"},"startTime":1780887397589,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":43770,"timestamp":2394429042963,"id":2095,"parentId":2058,"tags":{},"startTime":1780887397590,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":28,"timestamp":2394429086737,"id":2229,"parentId":2058,"tags":{},"startTime":1780887397634,"traceId":"9b70e6dfdb6b3605"}] +[{"name":"build-module-js","duration":44497,"timestamp":2394429042495,"id":2058,"parentId":1815,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/visual/helper.js","layer":"app-pages-browser"},"startTime":1780887397590,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":44043,"timestamp":2394429042965,"id":2096,"parentId":2059,"tags":{},"startTime":1780887397590,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":25,"timestamp":2394429087012,"id":2230,"parentId":2059,"tags":{},"startTime":1780887397634,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":44622,"timestamp":2394429042535,"id":2059,"parentId":1815,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/visual/decal.js","layer":"app-pages-browser"},"startTime":1780887397590,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":44194,"timestamp":2394429042971,"id":2099,"parentId":2062,"tags":{},"startTime":1780887397590,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":27,"timestamp":2394429087170,"id":2231,"parentId":2062,"tags":{},"startTime":1780887397634,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":44773,"timestamp":2394429042644,"id":2062,"parentId":1815,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/loading/default.js","layer":"app-pages-browser"},"startTime":1780887397590,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":44450,"timestamp":2394429042973,"id":2100,"parentId":2063,"tags":{},"startTime":1780887397590,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":27,"timestamp":2394429087426,"id":2232,"parentId":2063,"tags":{},"startTime":1780887397634,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":45476,"timestamp":2394429042680,"id":2063,"parentId":1824,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/component.js","layer":"app-pages-browser"},"startTime":1780887397590,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":45197,"timestamp":2394429042969,"id":2098,"parentId":2061,"tags":{},"startTime":1780887397590,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":31,"timestamp":2394429088172,"id":2233,"parentId":2061,"tags":{},"startTime":1780887397635,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":45825,"timestamp":2394429042607,"id":2061,"parentId":1815,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/theme/dark.js","layer":"app-pages-browser"},"startTime":1780887397590,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":45465,"timestamp":2394429042975,"id":2101,"parentId":2064,"tags":{},"startTime":1780887397590,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":43,"timestamp":2394429088445,"id":2234,"parentId":2064,"tags":{},"startTime":1780887397636,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":50120,"timestamp":2394429042716,"id":2064,"parentId":1824,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/core/task.js","layer":"app-pages-browser"},"startTime":1780887397590,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":50805,"timestamp":2394429042967,"id":2097,"parentId":2060,"tags":{},"startTime":1780887397590,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":85,"timestamp":2394429093804,"id":2235,"parentId":2060,"tags":{},"startTime":1780887397641,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":52794,"timestamp":2394429042571,"id":2060,"parentId":1815,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/theme/light.js","layer":"app-pages-browser"},"startTime":1780887397590,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":52554,"timestamp":2394429042933,"id":2083,"parentId":2046,"tags":{},"startTime":1780887397590,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":43,"timestamp":2394429095496,"id":2236,"parentId":2046,"tags":{},"startTime":1780887397643,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":56836,"timestamp":2394429041942,"id":2046,"parentId":1788,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/zrender.js","layer":"app-pages-browser"},"startTime":1780887397589,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":55929,"timestamp":2394429042979,"id":2103,"parentId":2066,"tags":{},"startTime":1780887397590,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":36,"timestamp":2394429098915,"id":2237,"parentId":2066,"tags":{},"startTime":1780887397646,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":56873,"timestamp":2394429042784,"id":2066,"parentId":1825,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/animation/morphTransitionHelper.js","layer":"app-pages-browser"},"startTime":1780887397590,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":56689,"timestamp":2394429042977,"id":2102,"parentId":2065,"tags":{},"startTime":1780887397590,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":59,"timestamp":2394429099672,"id":2238,"parentId":2065,"tags":{},"startTime":1780887397647,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":58769,"timestamp":2394429042750,"id":2065,"parentId":1822,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/layout.js","layer":"app-pages-browser"},"startTime":1780887397590,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":53976,"timestamp":2394429047647,"id":2126,"parentId":2104,"tags":{},"startTime":1780887397595,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":35,"timestamp":2394429101630,"id":2239,"parentId":2104,"tags":{},"startTime":1780887397649,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":55803,"timestamp":2394429046714,"id":2104,"parentId":1825,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/DataDiffer.js","layer":"app-pages-browser"},"startTime":1780887397594,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":54867,"timestamp":2394429047658,"id":2127,"parentId":2105,"tags":{},"startTime":1780887397595,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":39,"timestamp":2394429102531,"id":2240,"parentId":2105,"tags":{},"startTime":1780887397650,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":59660,"timestamp":2394429046776,"id":2105,"parentId":1814,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/label/LabelManager.js","layer":"app-pages-browser"},"startTime":1780887397594,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":58784,"timestamp":2394429047663,"id":2128,"parentId":2106,"tags":{},"startTime":1780887397595,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":39,"timestamp":2394429106452,"id":2241,"parentId":2106,"tags":{},"startTime":1780887397654,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":60917,"timestamp":2394429046818,"id":2106,"parentId":1825,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/animation/basicTransition.js","layer":"app-pages-browser"},"startTime":1780887397594,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":78760,"timestamp":2394429047685,"id":2132,"parentId":2110,"tags":{},"startTime":1780887397595,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":37,"timestamp":2394429126461,"id":2242,"parentId":2110,"tags":{},"startTime":1780887397674,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":80069,"timestamp":2394429046977,"id":2110,"parentId":1839,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/geo/GeoView.js","layer":"app-pages-browser"},"startTime":1780887397594,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":79374,"timestamp":2394429047682,"id":2131,"parentId":2109,"tags":{},"startTime":1780887397595,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":33,"timestamp":2394429127061,"id":2243,"parentId":2109,"tags":{},"startTime":1780887397674,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":80848,"timestamp":2394429046940,"id":2109,"parentId":1839,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/geoCreator.js","layer":"app-pages-browser"},"startTime":1780887397594,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":80123,"timestamp":2394429047673,"id":2129,"parentId":2107,"tags":{},"startTime":1780887397595,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":33,"timestamp":2394429127801,"id":2244,"parentId":2107,"tags":{},"startTime":1780887397675,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":81280,"timestamp":2394429046857,"id":2107,"parentId":1822,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/tooltip/seriesFormatTooltip.js","layer":"app-pages-browser"},"startTime":1780887397594,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":80467,"timestamp":2394429047680,"id":2130,"parentId":2108,"tags":{},"startTime":1780887397595,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":29,"timestamp":2394429128151,"id":2245,"parentId":2108,"tags":{},"startTime":1780887397675,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":81765,"timestamp":2394429046897,"id":2108,"parentId":1839,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/GeoModel.js","layer":"app-pages-browser"},"startTime":1780887397594,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":80985,"timestamp":2394429047693,"id":2135,"parentId":2113,"tags":{},"startTime":1780887397595,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":53,"timestamp":2394429128686,"id":2246,"parentId":2113,"tags":{},"startTime":1780887397676,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":81984,"timestamp":2394429047103,"id":2113,"parentId":1815,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/legacy/dataSelectAction.js","layer":"app-pages-browser"},"startTime":1780887397594,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":81408,"timestamp":2394429047688,"id":2133,"parentId":2111,"tags":{},"startTime":1780887397595,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":37,"timestamp":2394429129100,"id":2247,"parentId":2111,"tags":{},"startTime":1780887397676,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":84409,"timestamp":2394429047016,"id":2111,"parentId":1815,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/helper/transform.js","layer":"app-pages-browser"},"startTime":1780887397594,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":83746,"timestamp":2394429047690,"id":2134,"parentId":2112,"tags":{},"startTime":1780887397595,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":208,"timestamp":2394429131441,"id":2248,"parentId":2112,"tags":{},"startTime":1780887397679,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":86343,"timestamp":2394429047053,"id":2112,"parentId":1822,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/helper/sourceManager.js","layer":"app-pages-browser"},"startTime":1780887397594,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":85729,"timestamp":2394429047699,"id":2137,"parentId":2115,"tags":{},"startTime":1780887397595,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":41,"timestamp":2394429133436,"id":2249,"parentId":2115,"tags":{},"startTime":1780887397681,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":86551,"timestamp":2394429047179,"id":2115,"parentId":1839,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/geoSourceManager.js","layer":"app-pages-browser"},"startTime":1780887397594,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":86036,"timestamp":2394429047704,"id":2139,"parentId":2117,"tags":{},"startTime":1780887397595,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":34,"timestamp":2394429133745,"id":2250,"parentId":2117,"tags":{},"startTime":1780887397681,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":86914,"timestamp":2394429047254,"id":2117,"parentId":1843,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/PolarAxisPointer.js","layer":"app-pages-browser"},"startTime":1780887397594,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":86464,"timestamp":2394429047712,"id":2141,"parentId":2119,"tags":{},"startTime":1780887397595,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":31,"timestamp":2394429134180,"id":2251,"parentId":2119,"tags":{},"startTime":1780887397681,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":87331,"timestamp":2394429047340,"id":2119,"parentId":1844,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/radar/RadarView.js","layer":"app-pages-browser"},"startTime":1780887397594,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":86976,"timestamp":2394429047701,"id":2138,"parentId":2116,"tags":{},"startTime":1780887397595,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":28,"timestamp":2394429134682,"id":2252,"parentId":2116,"tags":{},"startTime":1780887397682,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":87710,"timestamp":2394429047217,"id":2116,"parentId":1843,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/axisModelCreator.js","layer":"app-pages-browser"},"startTime":1780887397594,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":87238,"timestamp":2394429047696,"id":2136,"parentId":2114,"tags":{},"startTime":1780887397595,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":41,"timestamp":2394429134938,"id":2253,"parentId":2114,"tags":{},"startTime":1780887397682,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":91662,"timestamp":2394429047142,"id":2114,"parentId":1827,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/canvas/Painter.js","layer":"app-pages-browser"},"startTime":1780887397594,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":91104,"timestamp":2394429047714,"id":2142,"parentId":2120,"tags":{},"startTime":1780887397595,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":59,"timestamp":2394429138824,"id":2254,"parentId":2120,"tags":{},"startTime":1780887397686,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":91673,"timestamp":2394429047377,"id":2120,"parentId":1824,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/createRenderPlanner.js","layer":"app-pages-browser"},"startTime":1780887397594,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":91352,"timestamp":2394429047716,"id":2143,"parentId":2121,"tags":{},"startTime":1780887397595,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":30,"timestamp":2394429139073,"id":2255,"parentId":2121,"tags":{},"startTime":1780887397686,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":91903,"timestamp":2394429047452,"id":2121,"parentId":1822,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/mixin/palette.js","layer":"app-pages-browser"},"startTime":1780887397595,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":91651,"timestamp":2394429047710,"id":2140,"parentId":2118,"tags":{},"startTime":1780887397595,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":28,"timestamp":2394429139366,"id":2256,"parentId":2118,"tags":{},"startTime":1780887397686,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":92373,"timestamp":2394429047301,"id":2118,"parentId":1842,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/parallel/ParallelView.js","layer":"app-pages-browser"},"startTime":1780887397594,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":91962,"timestamp":2394429047718,"id":2144,"parentId":2122,"tags":{},"startTime":1780887397595,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":32,"timestamp":2394429139685,"id":2257,"parentId":2122,"tags":{},"startTime":1780887397687,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":92626,"timestamp":2394429047490,"id":2122,"parentId":1822,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/mixin/dataFormat.js","layer":"app-pages-browser"},"startTime":1780887397595,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":92401,"timestamp":2394429047721,"id":2146,"parentId":2124,"tags":{},"startTime":1780887397595,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":30,"timestamp":2394429140126,"id":2258,"parentId":2124,"tags":{},"startTime":1780887397687,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":92887,"timestamp":2394429047564,"id":2124,"parentId":1845,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/SingleAxisPointer.js","layer":"app-pages-browser"},"startTime":1780887397595,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":92849,"timestamp":2394429047723,"id":2147,"parentId":2125,"tags":{},"startTime":1780887397595,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":28,"timestamp":2394429140577,"id":2259,"parentId":2125,"tags":{},"startTime":1780887397688,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":93091,"timestamp":2394429047601,"id":2125,"parentId":1846,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/installDataZoomSelect.js","layer":"app-pages-browser"},"startTime":1780887397595,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":94289,"timestamp":2394429047720,"id":2145,"parentId":2123,"tags":{},"startTime":1780887397595,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":107,"timestamp":2394429142041,"id":2260,"parentId":2123,"tags":{},"startTime":1780887397689,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":94855,"timestamp":2394429047527,"id":2123,"parentId":1839,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/action/roamHelper.js","layer":"app-pages-browser"},"startTime":1780887397595,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":92266,"timestamp":2394429050127,"id":2169,"parentId":2148,"tags":{},"startTime":1780887397597,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":31,"timestamp":2394429142399,"id":2261,"parentId":2148,"tags":{},"startTime":1780887397689,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":93550,"timestamp":2394429049121,"id":2148,"parentId":1846,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/toolbox/ToolboxModel.js","layer":"app-pages-browser"},"startTime":1780887397596,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":92528,"timestamp":2394429050150,"id":2170,"parentId":2149,"tags":{},"startTime":1780887397597,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":53,"timestamp":2394429142682,"id":2262,"parentId":2149,"tags":{},"startTime":1780887397690,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":101582,"timestamp":2394429049218,"id":2149,"parentId":1846,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/toolbox/ToolboxView.js","layer":"app-pages-browser"},"startTime":1780887397596,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":100670,"timestamp":2394429050157,"id":2171,"parentId":2150,"tags":{},"startTime":1780887397597,"traceId":"9b70e6dfdb6b3605"}] +[{"name":"next-swc-loader","duration":45,"timestamp":2394429150840,"id":2263,"parentId":2150,"tags":{},"startTime":1780887397698,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":101865,"timestamp":2394429049261,"id":2150,"parentId":1846,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/toolbox/featureManager.js","layer":"app-pages-browser"},"startTime":1780887397596,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":100969,"timestamp":2394429050163,"id":2172,"parentId":2151,"tags":{},"startTime":1780887397597,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":31,"timestamp":2394429151137,"id":2264,"parentId":2151,"tags":{},"startTime":1780887397698,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":102201,"timestamp":2394429049302,"id":2151,"parentId":1847,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/tooltip/TooltipModel.js","layer":"app-pages-browser"},"startTime":1780887397596,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":101337,"timestamp":2394429050173,"id":2174,"parentId":2153,"tags":{},"startTime":1780887397597,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":33,"timestamp":2394429151517,"id":2265,"parentId":2153,"tags":{},"startTime":1780887397699,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":102991,"timestamp":2394429049377,"id":2153,"parentId":1849,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/graphic/GraphicModel.js","layer":"app-pages-browser"},"startTime":1780887397596,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":102145,"timestamp":2394429050238,"id":2175,"parentId":2154,"tags":{},"startTime":1780887397597,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":41,"timestamp":2394429152389,"id":2266,"parentId":2154,"tags":{},"startTime":1780887397699,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":106478,"timestamp":2394429049447,"id":2154,"parentId":1849,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/graphic/GraphicView.js","layer":"app-pages-browser"},"startTime":1780887397597,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":105789,"timestamp":2394429050170,"id":2173,"parentId":2152,"tags":{},"startTime":1780887397597,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":66,"timestamp":2394429155974,"id":2267,"parentId":2152,"tags":{},"startTime":1780887397703,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":108785,"timestamp":2394429049339,"id":2152,"parentId":1847,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/tooltip/TooltipView.js","layer":"app-pages-browser"},"startTime":1780887397596,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":107867,"timestamp":2394429050271,"id":2177,"parentId":2156,"tags":{},"startTime":1780887397597,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":34,"timestamp":2394429158144,"id":2268,"parentId":2156,"tags":{},"startTime":1780887397705,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":108898,"timestamp":2394429049545,"id":2156,"parentId":1850,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/brush/BrushView.js","layer":"app-pages-browser"},"startTime":1780887397597,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":108183,"timestamp":2394429050266,"id":2176,"parentId":2155,"tags":{},"startTime":1780887397597,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":28,"timestamp":2394429158453,"id":2269,"parentId":2155,"tags":{},"startTime":1780887397706,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":109160,"timestamp":2394429049502,"id":2155,"parentId":1850,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/brush/preprocessor.js","layer":"app-pages-browser"},"startTime":1780887397597,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":138643,"timestamp":2394429050287,"id":2179,"parentId":2158,"tags":{},"startTime":1780887397597,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":107,"timestamp":2394429188951,"id":2270,"parentId":2158,"tags":{},"startTime":1780887397736,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":141048,"timestamp":2394429049637,"id":2158,"parentId":1850,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/brush/visualEncoding.js","layer":"app-pages-browser"},"startTime":1780887397597,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":140429,"timestamp":2394429050290,"id":2180,"parentId":2159,"tags":{},"startTime":1780887397597,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":44,"timestamp":2394429190730,"id":2271,"parentId":2159,"tags":{},"startTime":1780887397738,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":141732,"timestamp":2394429049681,"id":2159,"parentId":1824,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/Group.js","layer":"app-pages-browser"},"startTime":1780887397597,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":141135,"timestamp":2394429050293,"id":2181,"parentId":2160,"tags":{},"startTime":1780887397597,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":40,"timestamp":2394429191433,"id":2272,"parentId":2160,"tags":{},"startTime":1780887397738,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":143122,"timestamp":2394429049725,"id":2160,"parentId":1825,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/Path.js","layer":"app-pages-browser"},"startTime":1780887397597,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":142574,"timestamp":2394429050295,"id":2182,"parentId":2161,"tags":{},"startTime":1780887397597,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":41,"timestamp":2394429192878,"id":2273,"parentId":2161,"tags":{},"startTime":1780887397740,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":146050,"timestamp":2394429049768,"id":2161,"parentId":1825,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/Displayable.js","layer":"app-pages-browser"},"startTime":1780887397597,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":145574,"timestamp":2394429050298,"id":2183,"parentId":2162,"tags":{},"startTime":1780887397597,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":159,"timestamp":2394429195893,"id":2274,"parentId":2162,"tags":{},"startTime":1780887397743,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":147645,"timestamp":2394429049806,"id":2162,"parentId":1826,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/Painter.js","layer":"app-pages-browser"},"startTime":1780887397597,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":147184,"timestamp":2394429050302,"id":2185,"parentId":2164,"tags":{},"startTime":1780887397597,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":65,"timestamp":2394429197498,"id":2275,"parentId":2164,"tags":{},"startTime":1780887397745,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":148538,"timestamp":2394429049916,"id":2164,"parentId":1843,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axis/AngleAxisView.js","layer":"app-pages-browser"},"startTime":1780887397597,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":148171,"timestamp":2394429050300,"id":2184,"parentId":2163,"tags":{},"startTime":1780887397597,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":34,"timestamp":2394429198492,"id":2276,"parentId":2163,"tags":{},"startTime":1780887397746,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":148923,"timestamp":2394429049854,"id":2163,"parentId":1843,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axis/AxisView.js","layer":"app-pages-browser"},"startTime":1780887397597,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":148504,"timestamp":2394429050283,"id":2178,"parentId":2157,"tags":{},"startTime":1780887397597,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":32,"timestamp":2394429198793,"id":2277,"parentId":2157,"tags":{},"startTime":1780887397746,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":149480,"timestamp":2394429049592,"id":2157,"parentId":1850,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/brush/BrushModel.js","layer":"app-pages-browser"},"startTime":1780887397597,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":148772,"timestamp":2394429050307,"id":2187,"parentId":2166,"tags":{},"startTime":1780887397597,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":33,"timestamp":2394429199083,"id":2278,"parentId":2166,"tags":{},"startTime":1780887397746,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":149482,"timestamp":2394429049999,"id":2166,"parentId":1842,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axis/ParallelAxisView.js","layer":"app-pages-browser"},"startTime":1780887397597,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":149186,"timestamp":2394429050304,"id":2186,"parentId":2165,"tags":{},"startTime":1780887397597,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":31,"timestamp":2394429199494,"id":2279,"parentId":2165,"tags":{},"startTime":1780887397747,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":150945,"timestamp":2394429049960,"id":2165,"parentId":1843,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axis/RadiusAxisView.js","layer":"app-pages-browser"},"startTime":1780887397597,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":150644,"timestamp":2394429050311,"id":2189,"parentId":2168,"tags":{},"startTime":1780887397597,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":110,"timestamp":2394429200978,"id":2280,"parentId":2168,"tags":{},"startTime":1780887397748,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":152296,"timestamp":2394429050075,"id":2168,"parentId":1845,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axis/SingleAxisView.js","layer":"app-pages-browser"},"startTime":1780887397597,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":152073,"timestamp":2394429050309,"id":2188,"parentId":2167,"tags":{},"startTime":1780887397597,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":31,"timestamp":2394429202387,"id":2281,"parentId":2167,"tags":{},"startTime":1780887397749,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":152482,"timestamp":2394429050038,"id":2167,"parentId":1842,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axis/parallelAxisAction.js","layer":"app-pages-browser"},"startTime":1780887397597,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":17253,"timestamp":2394429290345,"id":2314,"parentId":2286,"tags":{},"startTime":1780887397837,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":36,"timestamp":2394429307611,"id":2476,"parentId":2286,"tags":{},"startTime":1780887397855,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":19420,"timestamp":2394429288686,"id":2286,"parentId":1842,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/parallel/parallelPreprocessor.js","layer":"app-pages-browser"},"startTime":1780887397836,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":17815,"timestamp":2394429290305,"id":2310,"parentId":2282,"tags":{},"startTime":1780887397837,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":74,"timestamp":2394429308125,"id":2477,"parentId":2282,"tags":{},"startTime":1780887397855,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":20078,"timestamp":2394429288416,"id":2282,"parentId":1843,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/polar/PolarModel.js","layer":"app-pages-browser"},"startTime":1780887397835,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":18133,"timestamp":2394429290367,"id":2316,"parentId":2288,"tags":{},"startTime":1780887397837,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":29,"timestamp":2394429308504,"id":2478,"parentId":2288,"tags":{},"startTime":1780887397856,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":19972,"timestamp":2394429288804,"id":2288,"parentId":1842,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/parallel/parallelCreator.js","layer":"app-pages-browser"},"startTime":1780887397836,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":18447,"timestamp":2394429290362,"id":2315,"parentId":2287,"tags":{},"startTime":1780887397837,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":39,"timestamp":2394429308819,"id":2479,"parentId":2287,"tags":{},"startTime":1780887397856,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":20550,"timestamp":2394429288728,"id":2287,"parentId":1842,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/parallel/ParallelModel.js","layer":"app-pages-browser"},"startTime":1780887397836,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":18939,"timestamp":2394429290370,"id":2317,"parentId":2289,"tags":{},"startTime":1780887397837,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":32,"timestamp":2394429309314,"id":2480,"parentId":2289,"tags":{},"startTime":1780887397856,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":21123,"timestamp":2394429288845,"id":2289,"parentId":1842,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/parallel/AxisModel.js","layer":"app-pages-browser"},"startTime":1780887397836,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":19612,"timestamp":2394429290374,"id":2318,"parentId":2290,"tags":{},"startTime":1780887397837,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":73,"timestamp":2394429309995,"id":2481,"parentId":2290,"tags":{},"startTime":1780887397857,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":21877,"timestamp":2394429288896,"id":2290,"parentId":1844,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/radar/Radar.js","layer":"app-pages-browser"},"startTime":1780887397836,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":20763,"timestamp":2394429290331,"id":2312,"parentId":2284,"tags":{},"startTime":1780887397837,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":101,"timestamp":2394429311124,"id":2482,"parentId":2284,"tags":{},"startTime":1780887397858,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":24342,"timestamp":2394429288597,"id":2284,"parentId":1843,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/polar/polarCreator.js","layer":"app-pages-browser"},"startTime":1780887397836,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":22767,"timestamp":2394429290338,"id":2313,"parentId":2285,"tags":{},"startTime":1780887397837,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":218,"timestamp":2394429313141,"id":2483,"parentId":2285,"tags":{},"startTime":1780887397860,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":25690,"timestamp":2394429288646,"id":2285,"parentId":1843,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/layout/barPolar.js","layer":"app-pages-browser"},"startTime":1780887397836,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":23972,"timestamp":2394429290378,"id":2319,"parentId":2291,"tags":{},"startTime":1780887397837,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":34,"timestamp":2394429314356,"id":2484,"parentId":2291,"tags":{},"startTime":1780887397861,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":25791,"timestamp":2394429288933,"id":2291,"parentId":1844,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/radar/RadarModel.js","layer":"app-pages-browser"},"startTime":1780887397836,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":24334,"timestamp":2394429290398,"id":2320,"parentId":2292,"tags":{},"startTime":1780887397837,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":29,"timestamp":2394429314738,"id":2485,"parentId":2292,"tags":{},"startTime":1780887397862,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":25935,"timestamp":2394429288970,"id":2292,"parentId":1845,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/single/AxisModel.js","layer":"app-pages-browser"},"startTime":1780887397836,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":24499,"timestamp":2394429290412,"id":2321,"parentId":2293,"tags":{},"startTime":1780887397837,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":26,"timestamp":2394429314916,"id":2486,"parentId":2293,"tags":{},"startTime":1780887397862,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":26077,"timestamp":2394429289008,"id":2293,"parentId":1845,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/single/singleCreator.js","layer":"app-pages-browser"},"startTime":1780887397836,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":24694,"timestamp":2394429290418,"id":2323,"parentId":2295,"tags":{},"startTime":1780887397837,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":30,"timestamp":2394429315130,"id":2487,"parentId":2295,"tags":{},"startTime":1780887397862,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":26834,"timestamp":2394429289083,"id":2295,"parentId":1856,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/format.js","layer":"app-pages-browser"},"startTime":1780887397836,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":26100,"timestamp":2394429290435,"id":2328,"parentId":2300,"tags":{},"startTime":1780887397838,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":143,"timestamp":2394429316549,"id":2488,"parentId":2300,"tags":{},"startTime":1780887397864,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":31121,"timestamp":2394429289272,"id":2300,"parentId":1854,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/MarkLineView.js","layer":"app-pages-browser"},"startTime":1780887397836,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":29985,"timestamp":2394429290424,"id":2325,"parentId":2297,"tags":{},"startTime":1780887397837,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":56,"timestamp":2394429320417,"id":2489,"parentId":2297,"tags":{},"startTime":1780887397867,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":33817,"timestamp":2394429289160,"id":2297,"parentId":1848,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/calendar/CalendarView.js","layer":"app-pages-browser"},"startTime":1780887397836,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":32594,"timestamp":2394429290415,"id":2322,"parentId":2294,"tags":{},"startTime":1780887397837,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":102,"timestamp":2394429323026,"id":2490,"parentId":2294,"tags":{},"startTime":1780887397870,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":35519,"timestamp":2394429289047,"id":2294,"parentId":1856,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/label/labelStyle.js","layer":"app-pages-browser"},"startTime":1780887397836,"traceId":"9b70e6dfdb6b3605"}] +[{"name":"read-resource","duration":34148,"timestamp":2394429290437,"id":2329,"parentId":2301,"tags":{},"startTime":1780887397838,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":44,"timestamp":2394429324593,"id":2491,"parentId":2301,"tags":{},"startTime":1780887397872,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":35570,"timestamp":2394429289310,"id":2301,"parentId":1851,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/timeline/SliderTimelineModel.js","layer":"app-pages-browser"},"startTime":1780887397836,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":34467,"timestamp":2394429290421,"id":2324,"parentId":2296,"tags":{},"startTime":1780887397837,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":33,"timestamp":2394429324892,"id":2492,"parentId":2296,"tags":{},"startTime":1780887397872,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":36629,"timestamp":2394429289122,"id":2296,"parentId":1840,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axis/CartesianAxisView.js","layer":"app-pages-browser"},"startTime":1780887397836,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":35434,"timestamp":2394429290441,"id":2330,"parentId":2302,"tags":{},"startTime":1780887397838,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":176,"timestamp":2394429325911,"id":2493,"parentId":2302,"tags":{},"startTime":1780887397873,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":38830,"timestamp":2394429289349,"id":2302,"parentId":1851,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/timeline/SliderTimelineView.js","layer":"app-pages-browser"},"startTime":1780887397836,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":37765,"timestamp":2394429290429,"id":2326,"parentId":2298,"tags":{},"startTime":1780887397837,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":33,"timestamp":2394429328200,"id":2494,"parentId":2298,"tags":{},"startTime":1780887397875,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":39302,"timestamp":2394429289197,"id":2298,"parentId":1854,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/checkMarkerInSeries.js","layer":"app-pages-browser"},"startTime":1780887397836,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":38090,"timestamp":2394429290432,"id":2327,"parentId":2299,"tags":{},"startTime":1780887397837,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":35,"timestamp":2394429328531,"id":2495,"parentId":2299,"tags":{},"startTime":1780887397876,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":39733,"timestamp":2394429289236,"id":2299,"parentId":1854,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/MarkLineModel.js","layer":"app-pages-browser"},"startTime":1780887397836,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":38535,"timestamp":2394429290447,"id":2332,"parentId":2304,"tags":{},"startTime":1780887397838,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":31,"timestamp":2394429328988,"id":2496,"parentId":2304,"tags":{},"startTime":1780887397876,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":40506,"timestamp":2394429289423,"id":2304,"parentId":1851,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/timeline/preprocessor.js","layer":"app-pages-browser"},"startTime":1780887397836,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":39671,"timestamp":2394429290324,"id":2311,"parentId":2283,"tags":{},"startTime":1780887397837,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":53,"timestamp":2394429330009,"id":2497,"parentId":2283,"tags":{},"startTime":1780887397877,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":41958,"timestamp":2394429288545,"id":2283,"parentId":1843,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/polar/AxisModel.js","layer":"app-pages-browser"},"startTime":1780887397836,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":44578,"timestamp":2394429290445,"id":2331,"parentId":2303,"tags":{},"startTime":1780887397838,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":37,"timestamp":2394429335036,"id":2498,"parentId":2303,"tags":{},"startTime":1780887397882,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":46020,"timestamp":2394429289386,"id":2303,"parentId":1851,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/timeline/timelineAction.js","layer":"app-pages-browser"},"startTime":1780887397836,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":44966,"timestamp":2394429290449,"id":2333,"parentId":2305,"tags":{},"startTime":1780887397838,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":28,"timestamp":2394429335421,"id":2499,"parentId":2305,"tags":{},"startTime":1780887397882,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":46291,"timestamp":2394429289590,"id":2305,"parentId":1853,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/MarkPointModel.js","layer":"app-pages-browser"},"startTime":1780887397837,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":45448,"timestamp":2394429290454,"id":2335,"parentId":2307,"tags":{},"startTime":1780887397838,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":43,"timestamp":2394429335912,"id":2500,"parentId":2307,"tags":{},"startTime":1780887397883,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":47008,"timestamp":2394429289720,"id":2307,"parentId":1852,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/CartesianAxisPointer.js","layer":"app-pages-browser"},"startTime":1780887397837,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":46337,"timestamp":2394429290457,"id":2336,"parentId":2308,"tags":{},"startTime":1780887397838,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":62,"timestamp":2394429336801,"id":2501,"parentId":2308,"tags":{},"startTime":1780887397884,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":47423,"timestamp":2394429289763,"id":2308,"parentId":1852,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/AxisPointerModel.js","layer":"app-pages-browser"},"startTime":1780887397837,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":46826,"timestamp":2394429290459,"id":2337,"parentId":2309,"tags":{},"startTime":1780887397838,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":36,"timestamp":2394429337297,"id":2502,"parentId":2309,"tags":{},"startTime":1780887397884,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":47838,"timestamp":2394429289807,"id":2309,"parentId":1852,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/AxisPointerView.js","layer":"app-pages-browser"},"startTime":1780887397837,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":47205,"timestamp":2394429290451,"id":2334,"parentId":2306,"tags":{},"startTime":1780887397838,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":40,"timestamp":2394429337663,"id":2503,"parentId":2306,"tags":{},"startTime":1780887397885,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":48548,"timestamp":2394429289669,"id":2306,"parentId":1853,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/MarkPointView.js","layer":"app-pages-browser"},"startTime":1780887397837,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":38765,"timestamp":2394429303553,"id":2390,"parentId":2343,"tags":{},"startTime":1780887397851,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":33,"timestamp":2394429342325,"id":2504,"parentId":2343,"tags":{},"startTime":1780887397889,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":42179,"timestamp":2394429300520,"id":2343,"parentId":1850,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/toolbox/feature/Brush.js","layer":"app-pages-browser"},"startTime":1780887397848,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":39200,"timestamp":2394429303506,"id":2385,"parentId":2338,"tags":{},"startTime":1780887397851,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":36,"timestamp":2394429342711,"id":2505,"parentId":2338,"tags":{},"startTime":1780887397890,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":42819,"timestamp":2394429300264,"id":2338,"parentId":1846,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/toolbox/feature/SaveAsImage.js","layer":"app-pages-browser"},"startTime":1780887397847,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":39549,"timestamp":2394429303539,"id":2388,"parentId":2341,"tags":{},"startTime":1780887397851,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":27,"timestamp":2394429343093,"id":2506,"parentId":2341,"tags":{},"startTime":1780887397890,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":42806,"timestamp":2394429300440,"id":2341,"parentId":1846,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/toolbox/feature/Restore.js","layer":"app-pages-browser"},"startTime":1780887397848,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":39729,"timestamp":2394429303523,"id":2386,"parentId":2339,"tags":{},"startTime":1780887397851,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":30,"timestamp":2394429343255,"id":2507,"parentId":2339,"tags":{},"startTime":1780887397890,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":43320,"timestamp":2394429300353,"id":2339,"parentId":1846,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/toolbox/feature/MagicType.js","layer":"app-pages-browser"},"startTime":1780887397847,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":40100,"timestamp":2394429303579,"id":2391,"parentId":2344,"tags":{},"startTime":1780887397851,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":26,"timestamp":2394429343683,"id":2508,"parentId":2344,"tags":{},"startTime":1780887397891,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":43297,"timestamp":2394429300557,"id":2344,"parentId":1865,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/types.js","layer":"app-pages-browser"},"startTime":1780887397848,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":40337,"timestamp":2394429303532,"id":2387,"parentId":2340,"tags":{},"startTime":1780887397851,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":33,"timestamp":2394429343872,"id":2509,"parentId":2340,"tags":{},"startTime":1780887397891,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":44447,"timestamp":2394429300400,"id":2340,"parentId":1846,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/toolbox/feature/DataView.js","layer":"app-pages-browser"},"startTime":1780887397847,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":41253,"timestamp":2394429303602,"id":2396,"parentId":2349,"tags":{},"startTime":1780887397851,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":28,"timestamp":2394429344862,"id":2510,"parentId":2349,"tags":{},"startTime":1780887397892,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":44231,"timestamp":2394429300741,"id":2349,"parentId":1858,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/legend/scrollableLegendAction.js","layer":"app-pages-browser"},"startTime":1780887397848,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":41383,"timestamp":2394429303595,"id":2394,"parentId":2347,"tags":{},"startTime":1780887397851,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":28,"timestamp":2394429344982,"id":2511,"parentId":2347,"tags":{},"startTime":1780887397892,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":44532,"timestamp":2394429300668,"id":2347,"parentId":1858,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/legend/ScrollableLegendModel.js","layer":"app-pages-browser"},"startTime":1780887397848,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":41598,"timestamp":2394429303607,"id":2397,"parentId":2350,"tags":{},"startTime":1780887397851,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":26,"timestamp":2394429345209,"id":2512,"parentId":2350,"tags":{},"startTime":1780887397892,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":44531,"timestamp":2394429300777,"id":2350,"parentId":1859,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/legend/legendFilter.js","layer":"app-pages-browser"},"startTime":1780887397848,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":41766,"timestamp":2394429303548,"id":2389,"parentId":2342,"tags":{},"startTime":1780887397851,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":33,"timestamp":2394429345317,"id":2513,"parentId":2342,"tags":{},"startTime":1780887397892,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":45646,"timestamp":2394429300479,"id":2342,"parentId":1846,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/toolbox/feature/DataZoom.js","layer":"app-pages-browser"},"startTime":1780887397848,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":42544,"timestamp":2394429303591,"id":2393,"parentId":2346,"tags":{},"startTime":1780887397851,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":34,"timestamp":2394429346139,"id":2514,"parentId":2346,"tags":{},"startTime":1780887397893,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":46105,"timestamp":2394429300631,"id":2346,"parentId":1852,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/modelHelper.js","layer":"app-pages-browser"},"startTime":1780887397848,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":43121,"timestamp":2394429303622,"id":2401,"parentId":2354,"tags":{},"startTime":1780887397851,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":27,"timestamp":2394429346746,"id":2515,"parentId":2354,"tags":{},"startTime":1780887397894,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":45967,"timestamp":2394429300921,"id":2354,"parentId":1855,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/MarkAreaModel.js","layer":"app-pages-browser"},"startTime":1780887397848,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":43293,"timestamp":2394429303599,"id":2395,"parentId":2348,"tags":{},"startTime":1780887397851,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":37,"timestamp":2394429346895,"id":2516,"parentId":2348,"tags":{},"startTime":1780887397894,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":47370,"timestamp":2394429300704,"id":2348,"parentId":1858,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/legend/ScrollableLegendView.js","layer":"app-pages-browser"},"startTime":1780887397848,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":44473,"timestamp":2394429303614,"id":2399,"parentId":2352,"tags":{},"startTime":1780887397851,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":35,"timestamp":2394429348092,"id":2517,"parentId":2352,"tags":{},"startTime":1780887397895,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":48882,"timestamp":2394429300850,"id":2352,"parentId":1859,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/legend/LegendModel.js","layer":"app-pages-browser"},"startTime":1780887397848,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":46146,"timestamp":2394429303611,"id":2398,"parentId":2351,"tags":{},"startTime":1780887397851,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":65,"timestamp":2394429349767,"id":2518,"parentId":2351,"tags":{},"startTime":1780887397897,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":50212,"timestamp":2394429300814,"id":2351,"parentId":1859,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/legend/LegendView.js","layer":"app-pages-browser"},"startTime":1780887397848,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":47437,"timestamp":2394429303625,"id":2402,"parentId":2355,"tags":{},"startTime":1780887397851,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":39,"timestamp":2394429351067,"id":2519,"parentId":2355,"tags":{},"startTime":1780887397898,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":53231,"timestamp":2394429300956,"id":2355,"parentId":1855,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/MarkAreaView.js","layer":"app-pages-browser"},"startTime":1780887397848,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":50569,"timestamp":2394429303628,"id":2403,"parentId":2356,"tags":{},"startTime":1780887397851,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":31,"timestamp":2394429354204,"id":2520,"parentId":2356,"tags":{},"startTime":1780887397901,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":53400,"timestamp":2394429301004,"id":2356,"parentId":1840,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/cartesian/GridModel.js","layer":"app-pages-browser"},"startTime":1780887397848,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":50778,"timestamp":2394429303632,"id":2404,"parentId":2357,"tags":{},"startTime":1780887397851,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":27,"timestamp":2394429354415,"id":2521,"parentId":2357,"tags":{},"startTime":1780887397901,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":53537,"timestamp":2394429301040,"id":2357,"parentId":1840,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/cartesian/AxisModel.js","layer":"app-pages-browser"},"startTime":1780887397848,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":50947,"timestamp":2394429303636,"id":2405,"parentId":2358,"tags":{},"startTime":1780887397851,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":34,"timestamp":2394429354586,"id":2522,"parentId":2358,"tags":{},"startTime":1780887397902,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":55201,"timestamp":2394429301080,"id":2358,"parentId":1840,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/cartesian/Grid.js","layer":"app-pages-browser"},"startTime":1780887397848,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":52644,"timestamp":2394429303648,"id":2409,"parentId":2362,"tags":{},"startTime":1780887397851,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":34,"timestamp":2394429356298,"id":2523,"parentId":2362,"tags":{},"startTime":1780887397903,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":54401,"timestamp":2394429302231,"id":2362,"parentId":1869,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/layout/points.js","layer":"app-pages-browser"},"startTime":1780887397849,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":52994,"timestamp":2394429303645,"id":2408,"parentId":2361,"tags":{},"startTime":1780887397851,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":32,"timestamp":2394429356644,"id":2524,"parentId":2361,"tags":{},"startTime":1780887397904,"traceId":"9b70e6dfdb6b3605"}] +[{"name":"build-module-js","duration":55333,"timestamp":2394429301843,"id":2361,"parentId":1863,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/visual/aria.js","layer":"app-pages-browser"},"startTime":1780887397849,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":53529,"timestamp":2394429303652,"id":2410,"parentId":2363,"tags":{},"startTime":1780887397851,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":27,"timestamp":2394429357188,"id":2525,"parentId":2363,"tags":{},"startTime":1780887397904,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":55140,"timestamp":2394429302294,"id":2363,"parentId":1869,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/processor/dataSample.js","layer":"app-pages-browser"},"startTime":1780887397849,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":53783,"timestamp":2394429303658,"id":2412,"parentId":2365,"tags":{},"startTime":1780887397851,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":30,"timestamp":2394429357445,"id":2526,"parentId":2365,"tags":{},"startTime":1780887397905,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":55522,"timestamp":2394429302397,"id":2365,"parentId":1861,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/InsideZoomView.js","layer":"app-pages-browser"},"startTime":1780887397849,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":54269,"timestamp":2394429303655,"id":2411,"parentId":2364,"tags":{},"startTime":1780887397851,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":26,"timestamp":2394429357927,"id":2527,"parentId":2364,"tags":{},"startTime":1780887397905,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":55811,"timestamp":2394429302354,"id":2364,"parentId":1861,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/InsideZoomModel.js","layer":"app-pages-browser"},"startTime":1780887397849,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":54516,"timestamp":2394429303662,"id":2413,"parentId":2366,"tags":{},"startTime":1780887397851,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":26,"timestamp":2394429358186,"id":2528,"parentId":2366,"tags":{},"startTime":1780887397905,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":55866,"timestamp":2394429302440,"id":2366,"parentId":1861,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/installCommon.js","layer":"app-pages-browser"},"startTime":1780887397850,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":54706,"timestamp":2394429303639,"id":2406,"parentId":2359,"tags":{},"startTime":1780887397851,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":27,"timestamp":2394429358349,"id":2529,"parentId":2359,"tags":{},"startTime":1780887397905,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":58066,"timestamp":2394429301367,"id":2359,"parentId":1848,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/calendar/CalendarModel.js","layer":"app-pages-browser"},"startTime":1780887397848,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":55846,"timestamp":2394429303618,"id":2400,"parentId":2353,"tags":{},"startTime":1780887397851,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":51,"timestamp":2394429359476,"id":2530,"parentId":2353,"tags":{},"startTime":1780887397907,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":59011,"timestamp":2394429300885,"id":2353,"parentId":1859,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/legend/legendAction.js","layer":"app-pages-browser"},"startTime":1780887397848,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":56235,"timestamp":2394429303675,"id":2417,"parentId":2370,"tags":{},"startTime":1780887397851,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":40,"timestamp":2394429359918,"id":2531,"parentId":2370,"tags":{},"startTime":1780887397907,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":57979,"timestamp":2394429302615,"id":2370,"parentId":1864,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/transform/sortTransform.js","layer":"app-pages-browser"},"startTime":1780887397850,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":56942,"timestamp":2394429303672,"id":2416,"parentId":2369,"tags":{},"startTime":1780887397851,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":54,"timestamp":2394429360620,"id":2532,"parentId":2369,"tags":{},"startTime":1780887397908,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":58488,"timestamp":2394429302574,"id":2369,"parentId":1864,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/transform/filterTransform.js","layer":"app-pages-browser"},"startTime":1780887397850,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":57395,"timestamp":2394429303679,"id":2418,"parentId":2371,"tags":{},"startTime":1780887397851,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":34,"timestamp":2394429361081,"id":2533,"parentId":2371,"tags":{},"startTime":1780887397908,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":58761,"timestamp":2394429302653,"id":2371,"parentId":1869,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/line/LineSeries.js","layer":"app-pages-browser"},"startTime":1780887397850,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":57756,"timestamp":2394429303665,"id":2414,"parentId":2367,"tags":{},"startTime":1780887397851,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":49,"timestamp":2394429361426,"id":2534,"parentId":2367,"tags":{},"startTime":1780887397908,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":59802,"timestamp":2394429302479,"id":2367,"parentId":1861,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/roams.js","layer":"app-pages-browser"},"startTime":1780887397850,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":58612,"timestamp":2394429303683,"id":2419,"parentId":2372,"tags":{},"startTime":1780887397851,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":55,"timestamp":2394429362301,"id":2535,"parentId":2372,"tags":{},"startTime":1780887397909,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":62373,"timestamp":2394429302691,"id":2372,"parentId":1869,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/line/LineView.js","layer":"app-pages-browser"},"startTime":1780887397850,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":61393,"timestamp":2394429303686,"id":2420,"parentId":2373,"tags":{},"startTime":1780887397851,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":34,"timestamp":2394429365086,"id":2536,"parentId":2373,"tags":{},"startTime":1780887397912,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":62662,"timestamp":2394429302750,"id":2373,"parentId":1862,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/SliderZoomModel.js","layer":"app-pages-browser"},"startTime":1780887397850,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":61728,"timestamp":2394429303695,"id":2423,"parentId":2376,"tags":{},"startTime":1780887397851,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":89,"timestamp":2394429365430,"id":2537,"parentId":2376,"tags":{},"startTime":1780887397912,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":65164,"timestamp":2394429302974,"id":2376,"parentId":1867,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/ContinuousView.js","layer":"app-pages-browser"},"startTime":1780887397850,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":64509,"timestamp":2394429303642,"id":2407,"parentId":2360,"tags":{},"startTime":1780887397851,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":41,"timestamp":2394429368159,"id":2538,"parentId":2360,"tags":{},"startTime":1780887397915,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":67620,"timestamp":2394429301509,"id":2360,"parentId":1848,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/calendar/Calendar.js","layer":"app-pages-browser"},"startTime":1780887397849,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":65430,"timestamp":2394429303716,"id":2426,"parentId":2379,"tags":{},"startTime":1780887397851,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":34,"timestamp":2394429369151,"id":2539,"parentId":2379,"tags":{},"startTime":1780887397916,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":66557,"timestamp":2394429303117,"id":2379,"parentId":1868,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/PiecewiseView.js","layer":"app-pages-browser"},"startTime":1780887397850,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":65961,"timestamp":2394429303719,"id":2427,"parentId":2380,"tags":{},"startTime":1780887397851,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":57,"timestamp":2394429369684,"id":2540,"parentId":2380,"tags":{},"startTime":1780887397917,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":67961,"timestamp":2394429303157,"id":2380,"parentId":1874,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/tree/TreeView.js","layer":"app-pages-browser"},"startTime":1780887397850,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":67439,"timestamp":2394429303690,"id":2421,"parentId":2374,"tags":{},"startTime":1780887397851,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":108,"timestamp":2394429371151,"id":2541,"parentId":2374,"tags":{},"startTime":1780887397918,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":70546,"timestamp":2394429302829,"id":2374,"parentId":1862,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/SliderZoomView.js","layer":"app-pages-browser"},"startTime":1780887397850,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":69692,"timestamp":2394429303692,"id":2422,"parentId":2375,"tags":{},"startTime":1780887397851,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":35,"timestamp":2394429373390,"id":2542,"parentId":2375,"tags":{},"startTime":1780887397920,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":70997,"timestamp":2394429302916,"id":2375,"parentId":1867,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/ContinuousModel.js","layer":"app-pages-browser"},"startTime":1780887397850,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":70196,"timestamp":2394429303722,"id":2428,"parentId":2381,"tags":{},"startTime":1780887397851,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":33,"timestamp":2394429373923,"id":2543,"parentId":2381,"tags":{},"startTime":1780887397921,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":71048,"timestamp":2394429303199,"id":2381,"parentId":1874,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/tree/TreeSeries.js","layer":"app-pages-browser"},"startTime":1780887397850,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":70528,"timestamp":2394429303725,"id":2429,"parentId":2382,"tags":{},"startTime":1780887397851,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":27,"timestamp":2394429374256,"id":2544,"parentId":2382,"tags":{},"startTime":1780887397921,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":71272,"timestamp":2394429303286,"id":2382,"parentId":1874,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/tree/treeLayout.js","layer":"app-pages-browser"},"startTime":1780887397850,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":70825,"timestamp":2394429303738,"id":2431,"parentId":2384,"tags":{},"startTime":1780887397851,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":25,"timestamp":2394429374566,"id":2545,"parentId":2384,"tags":{},"startTime":1780887397922,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":71261,"timestamp":2394429303449,"id":2384,"parentId":1874,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/tree/treeAction.js","layer":"app-pages-browser"},"startTime":1780887397851,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":70987,"timestamp":2394429303727,"id":2430,"parentId":2383,"tags":{},"startTime":1780887397851,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":24,"timestamp":2394429374717,"id":2546,"parentId":2383,"tags":{},"startTime":1780887397922,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":71448,"timestamp":2394429303404,"id":2383,"parentId":1874,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/tree/treeVisual.js","layer":"app-pages-browser"},"startTime":1780887397850,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":71162,"timestamp":2394429303698,"id":2424,"parentId":2377,"tags":{},"startTime":1780887397851,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":31,"timestamp":2394429374865,"id":2547,"parentId":2377,"tags":{},"startTime":1780887397922,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":72011,"timestamp":2394429303017,"id":2377,"parentId":1867,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/installCommon.js","layer":"app-pages-browser"},"startTime":1780887397850,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":71635,"timestamp":2394429303714,"id":2425,"parentId":2378,"tags":{},"startTime":1780887397851,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":154,"timestamp":2394429375356,"id":2548,"parentId":2378,"tags":{},"startTime":1780887397922,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":73822,"timestamp":2394429303061,"id":2378,"parentId":1868,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/PiecewiseModel.js","layer":"app-pages-browser"},"startTime":1780887397850,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":73310,"timestamp":2394429303587,"id":2392,"parentId":2345,"tags":{},"startTime":1780887397851,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":39,"timestamp":2394429376903,"id":2549,"parentId":2345,"tags":{},"startTime":1780887397924,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":78126,"timestamp":2394429300594,"id":2345,"parentId":1852,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/axisTrigger.js","layer":"app-pages-browser"},"startTime":1780887397848,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":75155,"timestamp":2394429303669,"id":2415,"parentId":2368,"tags":{},"startTime":1780887397851,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":31,"timestamp":2394429378832,"id":2550,"parentId":2368,"tags":{},"startTime":1780887397926,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":76505,"timestamp":2394429302518,"id":2368,"parentId":1863,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/aria/preprocessor.js","layer":"app-pages-browser"},"startTime":1780887397850,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":84494,"timestamp":2394429305509,"id":2450,"parentId":2433,"tags":{},"startTime":1780887397853,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":33,"timestamp":2394429390011,"id":2551,"parentId":2433,"tags":{},"startTime":1780887397937,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":85353,"timestamp":2394429304903,"id":2433,"parentId":1870,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/processor/negativeDataFilter.js","layer":"app-pages-browser"},"startTime":1780887397852,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":84752,"timestamp":2394429305513,"id":2452,"parentId":2435,"tags":{},"startTime":1780887397853,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":30,"timestamp":2394429390268,"id":2552,"parentId":2435,"tags":{},"startTime":1780887397937,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":85498,"timestamp":2394429304977,"id":2435,"parentId":1871,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/radar/radarLayout.js","layer":"app-pages-browser"},"startTime":1780887397852,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":84965,"timestamp":2394429305515,"id":2453,"parentId":2436,"tags":{},"startTime":1780887397853,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":27,"timestamp":2394429390485,"id":2553,"parentId":2436,"tags":{},"startTime":1780887397938,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":85634,"timestamp":2394429305012,"id":2436,"parentId":1871,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/radar/backwardCompat.js","layer":"app-pages-browser"},"startTime":1780887397852,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":85131,"timestamp":2394429305519,"id":2455,"parentId":2438,"tags":{},"startTime":1780887397853,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":27,"timestamp":2394429390653,"id":2554,"parentId":2438,"tags":{},"startTime":1780887397938,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":85888,"timestamp":2394429305083,"id":2438,"parentId":1871,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/radar/RadarSeries.js","layer":"app-pages-browser"},"startTime":1780887397852,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":85451,"timestamp":2394429305525,"id":2458,"parentId":2441,"tags":{},"startTime":1780887397853,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":39,"timestamp":2394429390979,"id":2555,"parentId":2441,"tags":{},"startTime":1780887397938,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":86098,"timestamp":2394429305196,"id":2441,"parentId":1870,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/pie/PieSeries.js","layer":"app-pages-browser"},"startTime":1780887397852,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":85778,"timestamp":2394429305521,"id":2456,"parentId":2439,"tags":{},"startTime":1780887397853,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":39,"timestamp":2394429391302,"id":2556,"parentId":2439,"tags":{},"startTime":1780887397938,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":86946,"timestamp":2394429305122,"id":2439,"parentId":1870,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/pie/pieLayout.js","layer":"app-pages-browser"},"startTime":1780887397852,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":86565,"timestamp":2394429305511,"id":2451,"parentId":2434,"tags":{},"startTime":1780887397853,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":56,"timestamp":2394429392080,"id":2557,"parentId":2434,"tags":{},"startTime":1780887397939,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":89242,"timestamp":2394429304941,"id":2434,"parentId":1880,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/layout/barGrid.js","layer":"app-pages-browser"},"startTime":1780887397852,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":88748,"timestamp":2394429305517,"id":2454,"parentId":2437,"tags":{},"startTime":1780887397853,"traceId":"9b70e6dfdb6b3605"}] +[{"name":"next-swc-loader","duration":65,"timestamp":2394429394280,"id":2558,"parentId":2437,"tags":{},"startTime":1780887397941,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":89885,"timestamp":2394429305048,"id":2437,"parentId":1871,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/radar/RadarView.js","layer":"app-pages-browser"},"startTime":1780887397852,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":89418,"timestamp":2394429305523,"id":2457,"parentId":2440,"tags":{},"startTime":1780887397853,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":42,"timestamp":2394429394945,"id":2559,"parentId":2440,"tags":{},"startTime":1780887397942,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":90372,"timestamp":2394429305160,"id":2440,"parentId":1870,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/pie/PieView.js","layer":"app-pages-browser"},"startTime":1780887397852,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":90009,"timestamp":2394429305527,"id":2459,"parentId":2442,"tags":{},"startTime":1780887397853,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":29,"timestamp":2394429395541,"id":2560,"parentId":2442,"tags":{},"startTime":1780887397943,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":90454,"timestamp":2394429305231,"id":2442,"parentId":1875,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/treemap/treemapAction.js","layer":"app-pages-browser"},"startTime":1780887397852,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":90161,"timestamp":2394429305529,"id":2460,"parentId":2443,"tags":{},"startTime":1780887397853,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":44,"timestamp":2394429395692,"id":2561,"parentId":2443,"tags":{},"startTime":1780887397943,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":92342,"timestamp":2394429305268,"id":2443,"parentId":1875,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/treemap/TreemapSeries.js","layer":"app-pages-browser"},"startTime":1780887397852,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":92087,"timestamp":2394429305530,"id":2461,"parentId":2444,"tags":{},"startTime":1780887397853,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":97,"timestamp":2394429397622,"id":2562,"parentId":2444,"tags":{},"startTime":1780887397945,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":95620,"timestamp":2394429305304,"id":2444,"parentId":1875,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/treemap/TreemapView.js","layer":"app-pages-browser"},"startTime":1780887397852,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":95406,"timestamp":2394429305534,"id":2463,"parentId":2446,"tags":{},"startTime":1780887397853,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":78,"timestamp":2394429400949,"id":2563,"parentId":2446,"tags":{},"startTime":1780887397948,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":97057,"timestamp":2394429305377,"id":2446,"parentId":1875,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/treemap/treemapLayout.js","layer":"app-pages-browser"},"startTime":1780887397852,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":96949,"timestamp":2394429305532,"id":2462,"parentId":2445,"tags":{},"startTime":1780887397853,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":36,"timestamp":2394429402487,"id":2564,"parentId":2445,"tags":{},"startTime":1780887397950,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":98223,"timestamp":2394429305339,"id":2445,"parentId":1875,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/treemap/treemapVisual.js","layer":"app-pages-browser"},"startTime":1780887397852,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":98071,"timestamp":2394429305535,"id":2464,"parentId":2447,"tags":{},"startTime":1780887397853,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":82,"timestamp":2394429403682,"id":2565,"parentId":2447,"tags":{},"startTime":1780887397951,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":98867,"timestamp":2394429305424,"id":2447,"parentId":1878,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/parallel/ParallelView.js","layer":"app-pages-browser"},"startTime":1780887397852,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":99023,"timestamp":2394429305537,"id":2465,"parentId":2448,"tags":{},"startTime":1780887397853,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":31,"timestamp":2394429404566,"id":2566,"parentId":2448,"tags":{},"startTime":1780887397952,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":99334,"timestamp":2394429305460,"id":2448,"parentId":1878,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/parallel/ParallelSeries.js","layer":"app-pages-browser"},"startTime":1780887397853,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":98808,"timestamp":2394429306098,"id":2471,"parentId":2466,"tags":{},"startTime":1780887397853,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":27,"timestamp":2394429404910,"id":2567,"parentId":2466,"tags":{},"startTime":1780887397952,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":99160,"timestamp":2394429305886,"id":2466,"parentId":1878,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/parallel/parallelVisual.js","layer":"app-pages-browser"},"startTime":1780887397853,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":98944,"timestamp":2394429306106,"id":2473,"parentId":2468,"tags":{},"startTime":1780887397853,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":37,"timestamp":2394429405054,"id":2568,"parentId":2468,"tags":{},"startTime":1780887397952,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":99615,"timestamp":2394429305978,"id":2468,"parentId":1873,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/map/MapSeries.js","layer":"app-pages-browser"},"startTime":1780887397853,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":99507,"timestamp":2394429306104,"id":2472,"parentId":2467,"tags":{},"startTime":1780887397853,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":49,"timestamp":2394429405618,"id":2569,"parentId":2467,"tags":{},"startTime":1780887397953,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":100245,"timestamp":2394429305938,"id":2467,"parentId":1873,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/map/MapView.js","layer":"app-pages-browser"},"startTime":1780887397853,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":100087,"timestamp":2394429306108,"id":2474,"parentId":2469,"tags":{},"startTime":1780887397853,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":38,"timestamp":2394429406201,"id":2570,"parentId":2469,"tags":{},"startTime":1780887397953,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":100549,"timestamp":2394429306021,"id":2469,"parentId":1873,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/map/mapDataStatistic.js","layer":"app-pages-browser"},"startTime":1780887397853,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":100470,"timestamp":2394429306110,"id":2475,"parentId":2470,"tags":{},"startTime":1780887397853,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":29,"timestamp":2394429406586,"id":2571,"parentId":2470,"tags":{},"startTime":1780887397954,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":100707,"timestamp":2394429306057,"id":2470,"parentId":1873,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/map/mapSymbolLayout.js","layer":"app-pages-browser"},"startTime":1780887397853,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":101266,"timestamp":2394429305503,"id":2449,"parentId":2432,"tags":{},"startTime":1780887397853,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":25,"timestamp":2394429406777,"id":2572,"parentId":2432,"tags":{},"startTime":1780887397954,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":102044,"timestamp":2394429304849,"id":2432,"parentId":1871,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/processor/dataFilter.js","layer":"app-pages-browser"},"startTime":1780887397852,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":6992,"timestamp":2394429483872,"id":2655,"parentId":2576,"tags":{},"startTime":1780887398031,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":57,"timestamp":2394429490879,"id":2767,"parentId":2576,"tags":{},"startTime":1780887398038,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":12098,"timestamp":2394429479548,"id":2576,"parentId":1879,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sankey/SankeySeries.js","layer":"app-pages-browser"},"startTime":1780887398027,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":7817,"timestamp":2394429483841,"id":2652,"parentId":2573,"tags":{},"startTime":1780887398031,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":32,"timestamp":2394429491663,"id":2768,"parentId":2573,"tags":{},"startTime":1780887398039,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":12865,"timestamp":2394429479205,"id":2573,"parentId":1877,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/funnel/FunnelView.js","layer":"app-pages-browser"},"startTime":1780887398026,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":8196,"timestamp":2394429483879,"id":2656,"parentId":2577,"tags":{},"startTime":1780887398031,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":33,"timestamp":2394429492078,"id":2769,"parentId":2577,"tags":{},"startTime":1780887398039,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":13428,"timestamp":2394429479594,"id":2577,"parentId":1879,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sankey/sankeyLayout.js","layer":"app-pages-browser"},"startTime":1780887398027,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":9168,"timestamp":2394429483859,"id":2653,"parentId":2574,"tags":{},"startTime":1780887398031,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":32,"timestamp":2394429493034,"id":2770,"parentId":2574,"tags":{},"startTime":1780887398040,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":14418,"timestamp":2394429479341,"id":2574,"parentId":1877,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/funnel/funnelLayout.js","layer":"app-pages-browser"},"startTime":1780887398026,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":9882,"timestamp":2394429483883,"id":2657,"parentId":2578,"tags":{},"startTime":1780887398031,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":27,"timestamp":2394429493769,"id":2771,"parentId":2578,"tags":{},"startTime":1780887398041,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":14317,"timestamp":2394429479641,"id":2578,"parentId":1879,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sankey/sankeyVisual.js","layer":"app-pages-browser"},"startTime":1780887398027,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":10066,"timestamp":2394429483897,"id":2661,"parentId":2582,"tags":{},"startTime":1780887398031,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":31,"timestamp":2394429493966,"id":2772,"parentId":2582,"tags":{},"startTime":1780887398041,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":14406,"timestamp":2394429479787,"id":2582,"parentId":1872,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/scatter/ScatterSeries.js","layer":"app-pages-browser"},"startTime":1780887398027,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":10312,"timestamp":2394429483886,"id":2658,"parentId":2579,"tags":{},"startTime":1780887398031,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":37,"timestamp":2394429494201,"id":2773,"parentId":2579,"tags":{},"startTime":1780887398041,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":16704,"timestamp":2394429479678,"id":2579,"parentId":1876,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/gauge/GaugeView.js","layer":"app-pages-browser"},"startTime":1780887398027,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":12525,"timestamp":2394429483866,"id":2654,"parentId":2575,"tags":{},"startTime":1780887398031,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":36,"timestamp":2394429496397,"id":2774,"parentId":2575,"tags":{},"startTime":1780887398043,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":17925,"timestamp":2394429479480,"id":2575,"parentId":1879,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sankey/SankeyView.js","layer":"app-pages-browser"},"startTime":1780887398027,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":13530,"timestamp":2394429483899,"id":2662,"parentId":2583,"tags":{},"startTime":1780887398031,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":41,"timestamp":2394429497439,"id":2775,"parentId":2583,"tags":{},"startTime":1780887398045,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":18128,"timestamp":2394429479821,"id":2583,"parentId":1872,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/scatter/ScatterView.js","layer":"app-pages-browser"},"startTime":1780887398027,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":14059,"timestamp":2394429483903,"id":2663,"parentId":2584,"tags":{},"startTime":1780887398031,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":32,"timestamp":2394429497967,"id":2776,"parentId":2584,"tags":{},"startTime":1780887398045,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":18349,"timestamp":2394429479857,"id":2584,"parentId":1880,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/bar/BarSeries.js","layer":"app-pages-browser"},"startTime":1780887398027,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":14319,"timestamp":2394429483893,"id":2660,"parentId":2581,"tags":{},"startTime":1780887398031,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":37,"timestamp":2394429498216,"id":2777,"parentId":2581,"tags":{},"startTime":1780887398045,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":18943,"timestamp":2394429479752,"id":2581,"parentId":1876,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/gauge/GaugeSeries.js","layer":"app-pages-browser"},"startTime":1780887398027,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":14809,"timestamp":2394429483909,"id":2665,"parentId":2586,"tags":{},"startTime":1780887398031,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":38,"timestamp":2394429498726,"id":2778,"parentId":2586,"tags":{},"startTime":1780887398046,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":19965,"timestamp":2394429479949,"id":2586,"parentId":1883,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/boxplot/BoxplotView.js","layer":"app-pages-browser"},"startTime":1780887398027,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":16020,"timestamp":2394429483906,"id":2664,"parentId":2585,"tags":{},"startTime":1780887398031,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":49,"timestamp":2394429499941,"id":2779,"parentId":2585,"tags":{},"startTime":1780887398047,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":25538,"timestamp":2394429479904,"id":2585,"parentId":1880,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/bar/BarView.js","layer":"app-pages-browser"},"startTime":1780887398027,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":23501,"timestamp":2394429483915,"id":2667,"parentId":2588,"tags":{},"startTime":1780887398031,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":32,"timestamp":2394429507427,"id":2780,"parentId":2588,"tags":{},"startTime":1780887398054,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":27886,"timestamp":2394429480099,"id":2588,"parentId":1883,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/boxplot/boxplotLayout.js","layer":"app-pages-browser"},"startTime":1780887398027,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":24586,"timestamp":2394429483912,"id":2666,"parentId":2587,"tags":{},"startTime":1780887398031,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":54,"timestamp":2394429508601,"id":2781,"parentId":2587,"tags":{},"startTime":1780887398056,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":29048,"timestamp":2394429479985,"id":2587,"parentId":1883,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/boxplot/BoxplotSeries.js","layer":"app-pages-browser"},"startTime":1780887398027,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":25131,"timestamp":2394429483918,"id":2668,"parentId":2589,"tags":{},"startTime":1780887398031,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":32,"timestamp":2394429509055,"id":2782,"parentId":2589,"tags":{},"startTime":1780887398056,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":29014,"timestamp":2394429480236,"id":2589,"parentId":1883,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/boxplot/boxplotTransform.js","layer":"app-pages-browser"},"startTime":1780887398027,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":25365,"timestamp":2394429483890,"id":2659,"parentId":2580,"tags":{},"startTime":1780887398031,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":35,"timestamp":2394429509259,"id":2783,"parentId":2580,"tags":{},"startTime":1780887398056,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":29828,"timestamp":2394429479717,"id":2580,"parentId":1877,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/funnel/FunnelSeries.js","layer":"app-pages-browser"},"startTime":1780887398027,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":25628,"timestamp":2394429483923,"id":2670,"parentId":2591,"tags":{},"startTime":1780887398031,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":31,"timestamp":2394429509555,"id":2784,"parentId":2591,"tags":{},"startTime":1780887398057,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":29362,"timestamp":2394429480355,"id":2591,"parentId":1881,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/bar/PictorialBarSeries.js","layer":"app-pages-browser"},"startTime":1780887398027,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":25796,"timestamp":2394429483926,"id":2671,"parentId":2592,"tags":{},"startTime":1780887398031,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":31,"timestamp":2394429509725,"id":2785,"parentId":2592,"tags":{},"startTime":1780887398057,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":30088,"timestamp":2394429480398,"id":2592,"parentId":1887,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/heatmap/HeatmapView.js","layer":"app-pages-browser"},"startTime":1780887398027,"traceId":"9b70e6dfdb6b3605"}] +[{"name":"read-resource","duration":26558,"timestamp":2394429483934,"id":2674,"parentId":2595,"tags":{},"startTime":1780887398031,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":38,"timestamp":2394429510496,"id":2786,"parentId":2595,"tags":{},"startTime":1780887398058,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":30623,"timestamp":2394429480520,"id":2595,"parentId":1886,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/lines/LinesSeries.js","layer":"app-pages-browser"},"startTime":1780887398028,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":27211,"timestamp":2394429483936,"id":2675,"parentId":2596,"tags":{},"startTime":1780887398031,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":27,"timestamp":2394429511151,"id":2787,"parentId":2596,"tags":{},"startTime":1780887398058,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":30869,"timestamp":2394429480556,"id":2596,"parentId":1886,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/lines/linesLayout.js","layer":"app-pages-browser"},"startTime":1780887398028,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":27510,"timestamp":2394429483920,"id":2669,"parentId":2590,"tags":{},"startTime":1780887398031,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":49,"timestamp":2394429511436,"id":2788,"parentId":2590,"tags":{},"startTime":1780887398059,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":33160,"timestamp":2394429480308,"id":2590,"parentId":1881,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/bar/PictorialBarView.js","layer":"app-pages-browser"},"startTime":1780887398027,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":29546,"timestamp":2394429483942,"id":2677,"parentId":2598,"tags":{},"startTime":1780887398031,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":123,"timestamp":2394429513496,"id":2789,"parentId":2598,"tags":{},"startTime":1780887398061,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":34924,"timestamp":2394429480635,"id":2598,"parentId":1885,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/candlestick/CandlestickView.js","layer":"app-pages-browser"},"startTime":1780887398028,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":31651,"timestamp":2394429483929,"id":2672,"parentId":2593,"tags":{},"startTime":1780887398031,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":38,"timestamp":2394429515587,"id":2790,"parentId":2593,"tags":{},"startTime":1780887398063,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":35456,"timestamp":2394429480435,"id":2593,"parentId":1887,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/heatmap/HeatmapSeries.js","layer":"app-pages-browser"},"startTime":1780887398028,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":31964,"timestamp":2394429483939,"id":2676,"parentId":2597,"tags":{},"startTime":1780887398031,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":32,"timestamp":2394429515908,"id":2791,"parentId":2597,"tags":{},"startTime":1780887398063,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":35497,"timestamp":2394429480593,"id":2597,"parentId":1886,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/lines/linesVisual.js","layer":"app-pages-browser"},"startTime":1780887398028,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":32163,"timestamp":2394429483932,"id":2673,"parentId":2594,"tags":{},"startTime":1780887398031,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":28,"timestamp":2394429516098,"id":2792,"parentId":2594,"tags":{},"startTime":1780887398063,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":36035,"timestamp":2394429480472,"id":2594,"parentId":1886,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/lines/LinesView.js","layer":"app-pages-browser"},"startTime":1780887398028,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":32568,"timestamp":2394429483944,"id":2678,"parentId":2599,"tags":{},"startTime":1780887398031,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":27,"timestamp":2394429516516,"id":2793,"parentId":2599,"tags":{},"startTime":1780887398064,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":36012,"timestamp":2394429480670,"id":2599,"parentId":1885,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/candlestick/CandlestickSeries.js","layer":"app-pages-browser"},"startTime":1780887398028,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":32740,"timestamp":2394429483947,"id":2679,"parentId":2600,"tags":{},"startTime":1780887398031,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":25,"timestamp":2394429516695,"id":2794,"parentId":2600,"tags":{},"startTime":1780887398064,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":36129,"timestamp":2394429480705,"id":2600,"parentId":1885,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/candlestick/preprocessor.js","layer":"app-pages-browser"},"startTime":1780887398028,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":32878,"timestamp":2394429483960,"id":2683,"parentId":2604,"tags":{},"startTime":1780887398031,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":27,"timestamp":2394429516842,"id":2795,"parentId":2604,"tags":{},"startTime":1780887398064,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":36471,"timestamp":2394429480842,"id":2604,"parentId":1882,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/View.js","layer":"app-pages-browser"},"startTime":1780887398028,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":33356,"timestamp":2394429483962,"id":2684,"parentId":2605,"tags":{},"startTime":1780887398031,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":30,"timestamp":2394429517322,"id":2796,"parentId":2605,"tags":{},"startTime":1780887398064,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":36603,"timestamp":2394429480878,"id":2605,"parentId":1884,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/effectScatter/EffectScatterSeries.js","layer":"app-pages-browser"},"startTime":1780887398028,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":33529,"timestamp":2394429483956,"id":2682,"parentId":2603,"tags":{},"startTime":1780887398031,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":26,"timestamp":2394429517488,"id":2797,"parentId":2603,"tags":{},"startTime":1780887398065,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":36870,"timestamp":2394429480807,"id":2603,"parentId":1884,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/effectScatter/EffectScatterView.js","layer":"app-pages-browser"},"startTime":1780887398028,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":33728,"timestamp":2394429483953,"id":2681,"parentId":2602,"tags":{},"startTime":1780887398031,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":28,"timestamp":2394429517684,"id":2798,"parentId":2602,"tags":{},"startTime":1780887398065,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":38474,"timestamp":2394429480773,"id":2602,"parentId":1885,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/candlestick/candlestickLayout.js","layer":"app-pages-browser"},"startTime":1780887398028,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":35291,"timestamp":2394429483967,"id":2686,"parentId":2607,"tags":{},"startTime":1780887398031,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":34,"timestamp":2394429519264,"id":2799,"parentId":2607,"tags":{},"startTime":1780887398066,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":38652,"timestamp":2394429480952,"id":2607,"parentId":1890,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/custom/CustomSeries.js","layer":"app-pages-browser"},"startTime":1780887398028,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":35662,"timestamp":2394429483950,"id":2680,"parentId":2601,"tags":{},"startTime":1780887398031,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":33,"timestamp":2394429519617,"id":2800,"parentId":2601,"tags":{},"startTime":1780887398067,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":39109,"timestamp":2394429480739,"id":2601,"parentId":1885,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/candlestick/candlestickVisual.js","layer":"app-pages-browser"},"startTime":1780887398028,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":35880,"timestamp":2394429483972,"id":2688,"parentId":2609,"tags":{},"startTime":1780887398031,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":28,"timestamp":2394429519856,"id":2801,"parentId":2609,"tags":{},"startTime":1780887398067,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":39027,"timestamp":2394429481017,"id":2609,"parentId":1882,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/categoryVisual.js","layer":"app-pages-browser"},"startTime":1780887398028,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":36074,"timestamp":2394429483975,"id":2689,"parentId":2610,"tags":{},"startTime":1780887398031,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":30,"timestamp":2394429520053,"id":2802,"parentId":2610,"tags":{},"startTime":1780887398067,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":39187,"timestamp":2394429481051,"id":2610,"parentId":1882,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/edgeVisual.js","layer":"app-pages-browser"},"startTime":1780887398028,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":36272,"timestamp":2394429483970,"id":2687,"parentId":2608,"tags":{},"startTime":1780887398031,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":26,"timestamp":2394429520245,"id":2803,"parentId":2608,"tags":{},"startTime":1780887398067,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":39379,"timestamp":2394429480985,"id":2608,"parentId":1882,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/categoryFilter.js","layer":"app-pages-browser"},"startTime":1780887398028,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":36391,"timestamp":2394429483977,"id":2690,"parentId":2611,"tags":{},"startTime":1780887398031,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":32,"timestamp":2394429520371,"id":2804,"parentId":2611,"tags":{},"startTime":1780887398067,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":39466,"timestamp":2394429481084,"id":2611,"parentId":1882,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/simpleLayout.js","layer":"app-pages-browser"},"startTime":1780887398028,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":36574,"timestamp":2394429483980,"id":2691,"parentId":2612,"tags":{},"startTime":1780887398031,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":279,"timestamp":2394429520558,"id":2805,"parentId":2612,"tags":{},"startTime":1780887398068,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":39940,"timestamp":2394429481129,"id":2612,"parentId":1882,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/circularLayout.js","layer":"app-pages-browser"},"startTime":1780887398028,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":37111,"timestamp":2394429483965,"id":2685,"parentId":2606,"tags":{},"startTime":1780887398031,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":53,"timestamp":2394429521081,"id":2806,"parentId":2606,"tags":{},"startTime":1780887398068,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":41995,"timestamp":2394429480918,"id":2606,"parentId":1890,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/custom/CustomView.js","layer":"app-pages-browser"},"startTime":1780887398028,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":38935,"timestamp":2394429483985,"id":2693,"parentId":2614,"tags":{},"startTime":1780887398031,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":29,"timestamp":2394429522924,"id":2807,"parentId":2614,"tags":{},"startTime":1780887398070,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":41938,"timestamp":2394429481216,"id":2614,"parentId":1882,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/createView.js","layer":"app-pages-browser"},"startTime":1780887398028,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":39175,"timestamp":2394429483983,"id":2692,"parentId":2613,"tags":{},"startTime":1780887398031,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":27,"timestamp":2394429523161,"id":2808,"parentId":2613,"tags":{},"startTime":1780887398070,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":42352,"timestamp":2394429481174,"id":2613,"parentId":1882,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/forceLayout.js","layer":"app-pages-browser"},"startTime":1780887398028,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":39544,"timestamp":2394429483996,"id":2697,"parentId":2618,"tags":{},"startTime":1780887398031,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":35,"timestamp":2394429523543,"id":2809,"parentId":2618,"tags":{},"startTime":1780887398071,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":42512,"timestamp":2394429481354,"id":2618,"parentId":1889,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sunburst/SunburstSeries.js","layer":"app-pages-browser"},"startTime":1780887398028,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":39882,"timestamp":2394429483988,"id":2694,"parentId":2615,"tags":{},"startTime":1780887398031,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":29,"timestamp":2394429523874,"id":2810,"parentId":2615,"tags":{},"startTime":1780887398071,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":43188,"timestamp":2394429481251,"id":2615,"parentId":1882,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/GraphView.js","layer":"app-pages-browser"},"startTime":1780887398028,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":40452,"timestamp":2394429483991,"id":2695,"parentId":2616,"tags":{},"startTime":1780887398031,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":32,"timestamp":2394429524447,"id":2811,"parentId":2616,"tags":{},"startTime":1780887398072,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":43609,"timestamp":2394429481284,"id":2616,"parentId":1882,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/GraphSeries.js","layer":"app-pages-browser"},"startTime":1780887398028,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":40896,"timestamp":2394429484001,"id":2699,"parentId":2620,"tags":{},"startTime":1780887398031,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":26,"timestamp":2394429524901,"id":2812,"parentId":2620,"tags":{},"startTime":1780887398072,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":43620,"timestamp":2394429481433,"id":2620,"parentId":1889,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sunburst/sunburstVisual.js","layer":"app-pages-browser"},"startTime":1780887398028,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":41053,"timestamp":2394429484003,"id":2700,"parentId":2621,"tags":{},"startTime":1780887398031,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":25,"timestamp":2394429525059,"id":2813,"parentId":2621,"tags":{},"startTime":1780887398072,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":43792,"timestamp":2394429481466,"id":2621,"parentId":1889,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sunburst/sunburstAction.js","layer":"app-pages-browser"},"startTime":1780887398029,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":41263,"timestamp":2394429483998,"id":2698,"parentId":2619,"tags":{},"startTime":1780887398031,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":29,"timestamp":2394429525264,"id":2814,"parentId":2619,"tags":{},"startTime":1780887398072,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":44240,"timestamp":2394429481399,"id":2619,"parentId":1889,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sunburst/sunburstLayout.js","layer":"app-pages-browser"},"startTime":1780887398028,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":41649,"timestamp":2394429483993,"id":2696,"parentId":2617,"tags":{},"startTime":1780887398031,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":27,"timestamp":2394429525645,"id":2815,"parentId":2617,"tags":{},"startTime":1780887398073,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":44702,"timestamp":2394429481317,"id":2617,"parentId":1889,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sunburst/SunburstView.js","layer":"app-pages-browser"},"startTime":1780887398028,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":42012,"timestamp":2394429484011,"id":2703,"parentId":2624,"tags":{},"startTime":1780887398031,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":32,"timestamp":2394429526026,"id":2816,"parentId":2624,"tags":{},"startTime":1780887398073,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":44720,"timestamp":2394429481588,"id":2624,"parentId":1888,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/themeRiver/themeRiverLayout.js","layer":"app-pages-browser"},"startTime":1780887398029,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":42306,"timestamp":2394429484006,"id":2701,"parentId":2622,"tags":{},"startTime":1780887398031,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":27,"timestamp":2394429526315,"id":2817,"parentId":2622,"tags":{},"startTime":1780887398073,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":45147,"timestamp":2394429481500,"id":2622,"parentId":1888,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/themeRiver/ThemeRiverView.js","layer":"app-pages-browser"},"startTime":1780887398029,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":42637,"timestamp":2394429484014,"id":2704,"parentId":2625,"tags":{},"startTime":1780887398031,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":24,"timestamp":2394429526653,"id":2818,"parentId":2625,"tags":{},"startTime":1780887398074,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":45199,"timestamp":2394429481623,"id":2625,"parentId":2007,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/globalDefault.js","layer":"app-pages-browser"},"startTime":1780887398029,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":42818,"timestamp":2394429484008,"id":2702,"parentId":2623,"tags":{},"startTime":1780887398031,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":28,"timestamp":2394429526829,"id":2819,"parentId":2623,"tags":{},"startTime":1780887398074,"traceId":"9b70e6dfdb6b3605"}] +[{"name":"build-module-js","duration":45722,"timestamp":2394429481534,"id":2623,"parentId":1888,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/themeRiver/ThemeRiverSeries.js","layer":"app-pages-browser"},"startTime":1780887398029,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":43240,"timestamp":2394429484019,"id":2706,"parentId":2627,"tags":{},"startTime":1780887398031,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":31,"timestamp":2394429527262,"id":2820,"parentId":2627,"tags":{},"startTime":1780887398074,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":46217,"timestamp":2394429481689,"id":2627,"parentId":2007,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/helper/sourceHelper.js","layer":"app-pages-browser"},"startTime":1780887398029,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":43899,"timestamp":2394429484017,"id":2705,"parentId":2626,"tags":{},"startTime":1780887398031,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":25,"timestamp":2394429527920,"id":2821,"parentId":2626,"tags":{},"startTime":1780887398075,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":46421,"timestamp":2394429481656,"id":2626,"parentId":2007,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/internalComponentCreator.js","layer":"app-pages-browser"},"startTime":1780887398029,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":44058,"timestamp":2394429484024,"id":2708,"parentId":2629,"tags":{},"startTime":1780887398031,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":24,"timestamp":2394429528085,"id":2822,"parentId":2629,"tags":{},"startTime":1780887398075,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":46451,"timestamp":2394429481765,"id":2629,"parentId":2006,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/mixin/lineStyle.js","layer":"app-pages-browser"},"startTime":1780887398029,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":44195,"timestamp":2394429484027,"id":2709,"parentId":2630,"tags":{},"startTime":1780887398031,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":23,"timestamp":2394429528227,"id":2823,"parentId":2630,"tags":{},"startTime":1780887398075,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":46534,"timestamp":2394429481798,"id":2630,"parentId":2006,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/mixin/itemStyle.js","layer":"app-pages-browser"},"startTime":1780887398029,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":44302,"timestamp":2394429484033,"id":2710,"parentId":2631,"tags":{},"startTime":1780887398031,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":47,"timestamp":2394429528354,"id":2824,"parentId":2631,"tags":{},"startTime":1780887398075,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":47563,"timestamp":2394429481830,"id":2631,"parentId":2015,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/number.js","layer":"app-pages-browser"},"startTime":1780887398029,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":45370,"timestamp":2394429484036,"id":2711,"parentId":2632,"tags":{},"startTime":1780887398031,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":25,"timestamp":2394429529409,"id":2825,"parentId":2632,"tags":{},"startTime":1780887398076,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":47870,"timestamp":2394429481861,"id":2632,"parentId":2006,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/mixin/textStyle.js","layer":"app-pages-browser"},"startTime":1780887398029,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":45650,"timestamp":2394429484084,"id":2715,"parentId":2636,"tags":{},"startTime":1780887398031,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":24,"timestamp":2394429529738,"id":2826,"parentId":2636,"tags":{},"startTime":1780887398077,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":46829,"timestamp":2394429483027,"id":2636,"parentId":2006,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/mixin/areaStyle.js","layer":"app-pages-browser"},"startTime":1780887398030,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":45781,"timestamp":2394429484079,"id":2713,"parentId":2634,"tags":{},"startTime":1780887398031,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":26,"timestamp":2394429529863,"id":2827,"parentId":2634,"tags":{},"startTime":1780887398077,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":48071,"timestamp":2394429482913,"id":2634,"parentId":2014,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/createSeriesData.js","layer":"app-pages-browser"},"startTime":1780887398030,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":46918,"timestamp":2394429484075,"id":2712,"parentId":2633,"tags":{},"startTime":1780887398031,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":35,"timestamp":2394429530998,"id":2828,"parentId":2633,"tags":{},"startTime":1780887398078,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":48908,"timestamp":2394429482821,"id":2633,"parentId":2014,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/axisHelper.js","layer":"app-pages-browser"},"startTime":1780887398030,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":47728,"timestamp":2394429484022,"id":2707,"parentId":2628,"tags":{},"startTime":1780887398031,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":32,"timestamp":2394429531754,"id":2829,"parentId":2628,"tags":{},"startTime":1780887398079,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":51551,"timestamp":2394429481728,"id":2628,"parentId":1815,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/node_modules/tslib/tslib.es6.js","layer":"app-pages-browser"},"startTime":1780887398029,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":49227,"timestamp":2394429484081,"id":2714,"parentId":2635,"tags":{},"startTime":1780887398031,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":27,"timestamp":2394429533313,"id":2830,"parentId":2635,"tags":{},"startTime":1780887398080,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":50433,"timestamp":2394429482978,"id":2635,"parentId":2014,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/axisModelCommonMixin.js","layer":"app-pages-browser"},"startTime":1780887398030,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":49332,"timestamp":2394429484086,"id":2716,"parentId":2637,"tags":{},"startTime":1780887398031,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":27,"timestamp":2394429533422,"id":2831,"parentId":2637,"tags":{},"startTime":1780887398080,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":50662,"timestamp":2394429483063,"id":2637,"parentId":2014,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/helper/dataStackHelper.js","layer":"app-pages-browser"},"startTime":1780887398030,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":49637,"timestamp":2394429484094,"id":2720,"parentId":2641,"tags":{},"startTime":1780887398031,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":32,"timestamp":2394429533735,"id":2832,"parentId":2641,"tags":{},"startTime":1780887398081,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":51128,"timestamp":2394429483210,"id":2641,"parentId":2014,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/helper/createDimensions.js","layer":"app-pages-browser"},"startTime":1780887398030,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":50254,"timestamp":2394429484090,"id":2718,"parentId":2639,"tags":{},"startTime":1780887398031,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":29,"timestamp":2394429534347,"id":2833,"parentId":2639,"tags":{},"startTime":1780887398081,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":52125,"timestamp":2394429483133,"id":2639,"parentId":2016,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/time.js","layer":"app-pages-browser"},"startTime":1780887398030,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":51177,"timestamp":2394429484088,"id":2717,"parentId":2638,"tags":{},"startTime":1780887398031,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":55,"timestamp":2394429535269,"id":2834,"parentId":2638,"tags":{},"startTime":1780887398082,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":52870,"timestamp":2394429483099,"id":2638,"parentId":2014,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/symbol.js","layer":"app-pages-browser"},"startTime":1780887398030,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":51895,"timestamp":2394429484092,"id":2719,"parentId":2640,"tags":{},"startTime":1780887398031,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":34,"timestamp":2394429536005,"id":2835,"parentId":2640,"tags":{},"startTime":1780887398083,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":53632,"timestamp":2394429483172,"id":2640,"parentId":2011,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/helper/dataProvider.js","layer":"app-pages-browser"},"startTime":1780887398030,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":52706,"timestamp":2394429484106,"id":2726,"parentId":2647,"tags":{},"startTime":1780887398031,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":25,"timestamp":2394429536815,"id":2836,"parentId":2647,"tags":{},"startTime":1780887398084,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":53520,"timestamp":2394429483411,"id":2647,"parentId":2013,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/RadialGradient.js","layer":"app-pages-browser"},"startTime":1780887398030,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":52832,"timestamp":2394429484104,"id":2725,"parentId":2646,"tags":{},"startTime":1780887398031,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":24,"timestamp":2394429536938,"id":2837,"parentId":2646,"tags":{},"startTime":1780887398084,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":53733,"timestamp":2394429483377,"id":2646,"parentId":2013,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/CompoundPath.js","layer":"app-pages-browser"},"startTime":1780887398030,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":53017,"timestamp":2394429484097,"id":2722,"parentId":2643,"tags":{},"startTime":1780887398031,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":27,"timestamp":2394429537117,"id":2838,"parentId":2643,"tags":{},"startTime":1780887398084,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":54449,"timestamp":2394429483278,"id":2643,"parentId":2013,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/Transformable.js","layer":"app-pages-browser"},"startTime":1780887398030,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":53625,"timestamp":2394429484107,"id":2727,"parentId":2648,"tags":{},"startTime":1780887398031,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":24,"timestamp":2394429537735,"id":2839,"parentId":2648,"tags":{},"startTime":1780887398085,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":54407,"timestamp":2394429483444,"id":2648,"parentId":2013,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/LinearGradient.js","layer":"app-pages-browser"},"startTime":1780887398031,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":53746,"timestamp":2394429484109,"id":2728,"parentId":2649,"tags":{},"startTime":1780887398031,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":25,"timestamp":2394429537859,"id":2840,"parentId":2649,"tags":{},"startTime":1780887398085,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":54836,"timestamp":2394429483480,"id":2649,"parentId":2013,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/OrientedBoundingRect.js","layer":"app-pages-browser"},"startTime":1780887398031,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":54224,"timestamp":2394429484096,"id":2721,"parentId":2642,"tags":{},"startTime":1780887398031,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":29,"timestamp":2394429538323,"id":2841,"parentId":2642,"tags":{},"startTime":1780887398085,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":56373,"timestamp":2394429483245,"id":2642,"parentId":2013,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/tool/path.js","layer":"app-pages-browser"},"startTime":1780887398030,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":55562,"timestamp":2394429484100,"id":2723,"parentId":2644,"tags":{},"startTime":1780887398031,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":42,"timestamp":2394429539674,"id":2842,"parentId":2644,"tags":{},"startTime":1780887398087,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":56836,"timestamp":2394429483311,"id":2644,"parentId":2013,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/Image.js","layer":"app-pages-browser"},"startTime":1780887398030,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":56046,"timestamp":2394429484111,"id":2729,"parentId":2650,"tags":{},"startTime":1780887398031,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":28,"timestamp":2394429540163,"id":2843,"parentId":2650,"tags":{},"startTime":1780887398087,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":56996,"timestamp":2394429483514,"id":2650,"parentId":2013,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/Point.js","layer":"app-pages-browser"},"startTime":1780887398031,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":56522,"timestamp":2394429484102,"id":2724,"parentId":2645,"tags":{},"startTime":1780887398031,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":39,"timestamp":2394429540629,"id":2844,"parentId":2645,"tags":{},"startTime":1780887398088,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":59663,"timestamp":2394429483344,"id":2645,"parentId":2013,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/Text.js","layer":"app-pages-browser"},"startTime":1780887398030,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":68724,"timestamp":2394429484113,"id":2730,"parentId":2651,"tags":{},"startTime":1780887398031,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":35,"timestamp":2394429552850,"id":2845,"parentId":2651,"tags":{},"startTime":1780887398100,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":69920,"timestamp":2394429483546,"id":2651,"parentId":2013,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/IncrementalDisplayable.js","layer":"app-pages-browser"},"startTime":1780887398031,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":67548,"timestamp":2394429486004,"id":2744,"parentId":2731,"tags":{},"startTime":1780887398033,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":29,"timestamp":2394429553557,"id":2846,"parentId":2731,"tags":{},"startTime":1780887398101,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":68945,"timestamp":2394429485175,"id":2731,"parentId":2013,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/BoundingRect.js","layer":"app-pages-browser"},"startTime":1780887398032,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":68116,"timestamp":2394429486012,"id":2745,"parentId":2732,"tags":{},"startTime":1780887398033,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":27,"timestamp":2394429554132,"id":2847,"parentId":2732,"tags":{},"startTime":1780887398101,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":69013,"timestamp":2394429485238,"id":2732,"parentId":2011,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/SeriesDimensionDefine.js","layer":"app-pages-browser"},"startTime":1780887398032,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":68268,"timestamp":2394429486016,"id":2746,"parentId":2733,"tags":{},"startTime":1780887398033,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":29,"timestamp":2394429554287,"id":2848,"parentId":2733,"tags":{},"startTime":1780887398101,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":69605,"timestamp":2394429485279,"id":2733,"parentId":2011,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/Source.js","layer":"app-pages-browser"},"startTime":1780887398032,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":68870,"timestamp":2394429486020,"id":2747,"parentId":2734,"tags":{},"startTime":1780887398033,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":46,"timestamp":2394429554894,"id":2849,"parentId":2734,"tags":{},"startTime":1780887398102,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":71903,"timestamp":2394429485314,"id":2734,"parentId":2011,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/DataStore.js","layer":"app-pages-browser"},"startTime":1780887398032,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":71210,"timestamp":2394429486026,"id":2748,"parentId":2735,"tags":{},"startTime":1780887398033,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":89,"timestamp":2394429557243,"id":2850,"parentId":2735,"tags":{},"startTime":1780887398104,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":76955,"timestamp":2394429485349,"id":2735,"parentId":2032,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/axisTickLabelBuilder.js","layer":"app-pages-browser"},"startTime":1780887398032,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":76323,"timestamp":2394429486033,"id":2751,"parentId":2738,"tags":{},"startTime":1780887398033,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":53,"timestamp":2394429562370,"id":2851,"parentId":2738,"tags":{},"startTime":1780887398109,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":78053,"timestamp":2394429485457,"id":2738,"parentId":2033,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/Region.js","layer":"app-pages-browser"},"startTime":1780887398033,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":77497,"timestamp":2394429486029,"id":2749,"parentId":2736,"tags":{},"startTime":1780887398033,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":37,"timestamp":2394429563533,"id":2852,"parentId":2736,"tags":{},"startTime":1780887398111,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":79041,"timestamp":2394429485385,"id":2736,"parentId":2011,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/helper/dimensionHelper.js","layer":"app-pages-browser"},"startTime":1780887398032,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":78413,"timestamp":2394429486031,"id":2750,"parentId":2737,"tags":{},"startTime":1780887398033,"traceId":"9b70e6dfdb6b3605"}] +[{"name":"next-swc-loader","duration":42,"timestamp":2394429564452,"id":2853,"parentId":2737,"tags":{},"startTime":1780887398112,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":79606,"timestamp":2394429485422,"id":2737,"parentId":2011,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/helper/SeriesDataSchema.js","layer":"app-pages-browser"},"startTime":1780887398032,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":79016,"timestamp":2394429486035,"id":2752,"parentId":2739,"tags":{},"startTime":1780887398033,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":29,"timestamp":2394429565057,"id":2854,"parentId":2739,"tags":{},"startTime":1780887398112,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":80001,"timestamp":2394429485495,"id":2739,"parentId":2046,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/Storage.js","layer":"app-pages-browser"},"startTime":1780887398033,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":79469,"timestamp":2394429486037,"id":2753,"parentId":2740,"tags":{},"startTime":1780887398033,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":25,"timestamp":2394429565511,"id":2855,"parentId":2740,"tags":{},"startTime":1780887398113,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":80134,"timestamp":2394429485534,"id":2740,"parentId":2046,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/config.js","layer":"app-pages-browser"},"startTime":1780887398033,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":79824,"timestamp":2394429486039,"id":2754,"parentId":2741,"tags":{},"startTime":1780887398033,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":32,"timestamp":2394429565871,"id":2856,"parentId":2741,"tags":{},"startTime":1780887398113,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":81111,"timestamp":2394429485655,"id":2741,"parentId":2046,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/Handler.js","layer":"app-pages-browser"},"startTime":1780887398033,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":80763,"timestamp":2394429486042,"id":2755,"parentId":2742,"tags":{},"startTime":1780887398033,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":27,"timestamp":2394429566810,"id":2857,"parentId":2742,"tags":{},"startTime":1780887398114,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":81858,"timestamp":2394429485835,"id":2742,"parentId":2055,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/canvas/helper.js","layer":"app-pages-browser"},"startTime":1780887398033,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":81681,"timestamp":2394429486044,"id":2756,"parentId":2743,"tags":{},"startTime":1780887398033,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":37,"timestamp":2394429567728,"id":2858,"parentId":2743,"tags":{},"startTime":1780887398115,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":83390,"timestamp":2394429485937,"id":2743,"parentId":2055,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/PathProxy.js","layer":"app-pages-browser"},"startTime":1780887398033,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":96577,"timestamp":2394429486732,"id":2763,"parentId":2758,"tags":{},"startTime":1780887398034,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":38,"timestamp":2394429583330,"id":2859,"parentId":2758,"tags":{},"startTime":1780887398130,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":97366,"timestamp":2394429486514,"id":2758,"parentId":2055,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/canvas/dashStyle.js","layer":"app-pages-browser"},"startTime":1780887398034,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":97385,"timestamp":2394429486724,"id":2762,"parentId":2757,"tags":{},"startTime":1780887398034,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":30,"timestamp":2394429584117,"id":2860,"parentId":2757,"tags":{},"startTime":1780887398131,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":98153,"timestamp":2394429486439,"id":2757,"parentId":2055,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/TSpan.js","layer":"app-pages-browser"},"startTime":1780887398034,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":97875,"timestamp":2394429486738,"id":2765,"parentId":2760,"tags":{},"startTime":1780887398034,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":34,"timestamp":2394429584620,"id":2861,"parentId":2760,"tags":{},"startTime":1780887398132,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":98337,"timestamp":2394429486601,"id":2760,"parentId":2054,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/LRU.js","layer":"app-pages-browser"},"startTime":1780887398034,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":98211,"timestamp":2394429486735,"id":2764,"parentId":2759,"tags":{},"startTime":1780887398034,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":25,"timestamp":2394429584950,"id":2862,"parentId":2759,"tags":{},"startTime":1780887398132,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":98479,"timestamp":2394429486557,"id":2759,"parentId":2055,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/constants.js","layer":"app-pages-browser"},"startTime":1780887398034,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":98302,"timestamp":2394429486740,"id":2766,"parentId":2761,"tags":{},"startTime":1780887398034,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":31,"timestamp":2394429585045,"id":2863,"parentId":2761,"tags":{},"startTime":1780887398132,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":99141,"timestamp":2394429486672,"id":2761,"parentId":2059,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/decal.js","layer":"app-pages-browser"},"startTime":1780887398034,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":6979,"timestamp":2394429637052,"id":2941,"parentId":2867,"tags":{},"startTime":1780887398184,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":39,"timestamp":2394429644045,"id":3064,"parentId":2867,"tags":{},"startTime":1780887398191,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":11859,"timestamp":2394429633233,"id":2867,"parentId":2109,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/Geo.js","layer":"app-pages-browser"},"startTime":1780887398180,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":8091,"timestamp":2394429637017,"id":2938,"parentId":2864,"tags":{},"startTime":1780887398184,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":66,"timestamp":2394429645118,"id":3065,"parentId":2864,"tags":{},"startTime":1780887398192,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":13430,"timestamp":2394429633023,"id":2864,"parentId":2105,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/label/labelGuideHelper.js","layer":"app-pages-browser"},"startTime":1780887398180,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":9409,"timestamp":2394429637060,"id":2942,"parentId":2868,"tags":{},"startTime":1780887398184,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":39,"timestamp":2394429646473,"id":3066,"parentId":2868,"tags":{},"startTime":1780887398194,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":14734,"timestamp":2394429633274,"id":2868,"parentId":2066,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/tool/morphPath.js","layer":"app-pages-browser"},"startTime":1780887398180,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":10953,"timestamp":2394429637065,"id":2943,"parentId":2869,"tags":{},"startTime":1780887398184,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":29,"timestamp":2394429648048,"id":3067,"parentId":2869,"tags":{},"startTime":1780887398195,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":14943,"timestamp":2394429633316,"id":2869,"parentId":2013,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/shape/Circle.js","layer":"app-pages-browser"},"startTime":1780887398180,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":11230,"timestamp":2394429637036,"id":2939,"parentId":2865,"tags":{},"startTime":1780887398184,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":1044,"timestamp":2394429648270,"id":3068,"parentId":2865,"tags":{},"startTime":1780887398195,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":17091,"timestamp":2394429633140,"id":2865,"parentId":2105,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/label/labelLayoutHelper.js","layer":"app-pages-browser"},"startTime":1780887398180,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":13203,"timestamp":2394429637068,"id":2944,"parentId":2870,"tags":{},"startTime":1780887398184,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":38,"timestamp":2394429650351,"id":3069,"parentId":2870,"tags":{},"startTime":1780887398197,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":17293,"timestamp":2394429633356,"id":2870,"parentId":2013,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/shape/Sector.js","layer":"app-pages-browser"},"startTime":1780887398180,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":13590,"timestamp":2394429637072,"id":2945,"parentId":2871,"tags":{},"startTime":1780887398184,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":28,"timestamp":2394429650667,"id":3070,"parentId":2871,"tags":{},"startTime":1780887398198,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":17440,"timestamp":2394429633405,"id":2871,"parentId":2013,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/shape/Ring.js","layer":"app-pages-browser"},"startTime":1780887398180,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":13772,"timestamp":2394429637080,"id":2947,"parentId":2873,"tags":{},"startTime":1780887398184,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":25,"timestamp":2394429650856,"id":3071,"parentId":2873,"tags":{},"startTime":1780887398198,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":17527,"timestamp":2394429633485,"id":2873,"parentId":2013,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/shape/Polyline.js","layer":"app-pages-browser"},"startTime":1780887398181,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":13922,"timestamp":2394429637094,"id":2950,"parentId":2876,"tags":{},"startTime":1780887398184,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":26,"timestamp":2394429651020,"id":3072,"parentId":2876,"tags":{},"startTime":1780887398198,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":17784,"timestamp":2394429633592,"id":2876,"parentId":2013,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/shape/BezierCurve.js","layer":"app-pages-browser"},"startTime":1780887398181,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":14299,"timestamp":2394429637084,"id":2948,"parentId":2874,"tags":{},"startTime":1780887398184,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":37,"timestamp":2394429651387,"id":3073,"parentId":2874,"tags":{},"startTime":1780887398198,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":18060,"timestamp":2394429633522,"id":2874,"parentId":2013,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/shape/Rect.js","layer":"app-pages-browser"},"startTime":1780887398181,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":14497,"timestamp":2394429637090,"id":2949,"parentId":2875,"tags":{},"startTime":1780887398184,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":24,"timestamp":2394429651590,"id":3074,"parentId":2875,"tags":{},"startTime":1780887398199,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":18216,"timestamp":2394429633558,"id":2875,"parentId":2013,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/shape/Line.js","layer":"app-pages-browser"},"startTime":1780887398181,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":14701,"timestamp":2394429637076,"id":2946,"parentId":2872,"tags":{},"startTime":1780887398184,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":24,"timestamp":2394429651780,"id":3075,"parentId":2872,"tags":{},"startTime":1780887398199,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":18441,"timestamp":2394429633447,"id":2872,"parentId":2013,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/shape/Polygon.js","layer":"app-pages-browser"},"startTime":1780887398181,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":14795,"timestamp":2394429637098,"id":2951,"parentId":2877,"tags":{},"startTime":1780887398184,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":23,"timestamp":2394429651897,"id":3076,"parentId":2877,"tags":{},"startTime":1780887398199,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":18407,"timestamp":2394429633628,"id":2877,"parentId":2013,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/shape/Arc.js","layer":"app-pages-browser"},"startTime":1780887398181,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":14936,"timestamp":2394429637102,"id":2952,"parentId":2878,"tags":{},"startTime":1780887398184,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":23,"timestamp":2394429652044,"id":3077,"parentId":2878,"tags":{},"startTime":1780887398199,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":18518,"timestamp":2394429633664,"id":2878,"parentId":2013,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/shape/Ellipse.js","layer":"app-pages-browser"},"startTime":1780887398181,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":15191,"timestamp":2394429637046,"id":2940,"parentId":2866,"tags":{},"startTime":1780887398184,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":26,"timestamp":2394429652240,"id":3078,"parentId":2866,"tags":{},"startTime":1780887398199,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":19194,"timestamp":2394429633190,"id":2866,"parentId":2056,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/mixin/makeStyleMapper.js","layer":"app-pages-browser"},"startTime":1780887398180,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":15277,"timestamp":2394429637117,"id":2956,"parentId":2882,"tags":{},"startTime":1780887398184,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":34,"timestamp":2394429652398,"id":3079,"parentId":2882,"tags":{},"startTime":1780887398199,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":18760,"timestamp":2394429633817,"id":2882,"parentId":2043,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/i18n/langZH.js","layer":"app-pages-browser"},"startTime":1780887398181,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":15456,"timestamp":2394429637125,"id":2958,"parentId":2884,"tags":{},"startTime":1780887398184,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":27,"timestamp":2394429652584,"id":3080,"parentId":2884,"tags":{},"startTime":1780887398200,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":18866,"timestamp":2394429633891,"id":2884,"parentId":2116,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/axisDefault.js","layer":"app-pages-browser"},"startTime":1780887398181,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":15632,"timestamp":2394429637130,"id":2959,"parentId":2885,"tags":{},"startTime":1780887398184,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":34,"timestamp":2394429652765,"id":3081,"parentId":2885,"tags":{},"startTime":1780887398200,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":19421,"timestamp":2394429633927,"id":2885,"parentId":2111,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/helper/dataValueHelper.js","layer":"app-pages-browser"},"startTime":1780887398181,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":16252,"timestamp":2394429637112,"id":2955,"parentId":2881,"tags":{},"startTime":1780887398184,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":26,"timestamp":2394429653369,"id":3082,"parentId":2881,"tags":{},"startTime":1780887398200,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":19720,"timestamp":2394429633781,"id":2881,"parentId":2043,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/i18n/langEN.js","layer":"app-pages-browser"},"startTime":1780887398181,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":16367,"timestamp":2394429637138,"id":2961,"parentId":2887,"tags":{},"startTime":1780887398184,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":32,"timestamp":2394429653508,"id":3083,"parentId":2887,"tags":{},"startTime":1780887398201,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":19922,"timestamp":2394429634001,"id":2887,"parentId":2115,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/GeoSVGResource.js","layer":"app-pages-browser"},"startTime":1780887398181,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":16807,"timestamp":2394429637121,"id":2957,"parentId":2883,"tags":{},"startTime":1780887398184,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":32,"timestamp":2394429653933,"id":3084,"parentId":2883,"tags":{},"startTime":1780887398201,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":20930,"timestamp":2394429633852,"id":2883,"parentId":2041,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/preprocessor/helper/compatStyle.js","layer":"app-pages-browser"},"startTime":1780887398181,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":17681,"timestamp":2394429637109,"id":2954,"parentId":2880,"tags":{},"startTime":1780887398184,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":30,"timestamp":2394429654797,"id":3085,"parentId":2880,"tags":{},"startTime":1780887398202,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":21308,"timestamp":2394429633742,"id":2880,"parentId":2055,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/helper/image.js","layer":"app-pages-browser"},"startTime":1780887398181,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":17915,"timestamp":2394429637142,"id":2962,"parentId":2888,"tags":{},"startTime":1780887398184,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":30,"timestamp":2394429655061,"id":3086,"parentId":2888,"tags":{},"startTime":1780887398202,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":21345,"timestamp":2394429634038,"id":2888,"parentId":2115,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/GeoJSONResource.js","layer":"app-pages-browser"},"startTime":1780887398181,"traceId":"9b70e6dfdb6b3605"}] +[{"name":"read-resource","duration":18243,"timestamp":2394429637145,"id":2963,"parentId":2889,"tags":{},"startTime":1780887398184,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":34,"timestamp":2394429655392,"id":3087,"parentId":2889,"tags":{},"startTime":1780887398202,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":22554,"timestamp":2394429634075,"id":2889,"parentId":2117,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/BaseAxisPointer.js","layer":"app-pages-browser"},"startTime":1780887398181,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":19552,"timestamp":2394429637105,"id":2953,"parentId":2879,"tags":{},"startTime":1780887398184,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":41,"timestamp":2394429656668,"id":3088,"parentId":2879,"tags":{},"startTime":1780887398204,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":23277,"timestamp":2394429633701,"id":2879,"parentId":2013,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/helper/subPixelOptimize.js","layer":"app-pages-browser"},"startTime":1780887398181,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":19824,"timestamp":2394429637165,"id":2968,"parentId":2894,"tags":{},"startTime":1780887398184,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":46,"timestamp":2394429656995,"id":3089,"parentId":2894,"tags":{},"startTime":1780887398204,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":24166,"timestamp":2394429634353,"id":2894,"parentId":2110,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/helper/MapDraw.js","layer":"app-pages-browser"},"startTime":1780887398181,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":21375,"timestamp":2394429637154,"id":2965,"parentId":2891,"tags":{},"startTime":1780887398184,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":42,"timestamp":2394429658534,"id":3090,"parentId":2891,"tags":{},"startTime":1780887398206,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":25957,"timestamp":2394429634164,"id":2891,"parentId":2117,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axis/AxisBuilder.js","layer":"app-pages-browser"},"startTime":1780887398181,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":22981,"timestamp":2394429637150,"id":2964,"parentId":2890,"tags":{},"startTime":1780887398184,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":32,"timestamp":2394429660136,"id":3091,"parentId":2890,"tags":{},"startTime":1780887398207,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":26450,"timestamp":2394429634126,"id":2890,"parentId":2117,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/viewHelper.js","layer":"app-pages-browser"},"startTime":1780887398181,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":23423,"timestamp":2394429637161,"id":2967,"parentId":2893,"tags":{},"startTime":1780887398184,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":31,"timestamp":2394429660587,"id":3092,"parentId":2893,"tags":{},"startTime":1780887398208,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":27320,"timestamp":2394429634237,"id":2893,"parentId":2046,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/dom/HandlerProxy.js","layer":"app-pages-browser"},"startTime":1780887398181,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":24406,"timestamp":2394429637157,"id":2966,"parentId":2892,"tags":{},"startTime":1780887398184,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":29,"timestamp":2394429661568,"id":3093,"parentId":2892,"tags":{},"startTime":1780887398209,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":29404,"timestamp":2394429634202,"id":2892,"parentId":2046,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/animation/Animation.js","layer":"app-pages-browser"},"startTime":1780887398181,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":26448,"timestamp":2394429637169,"id":2969,"parentId":2895,"tags":{},"startTime":1780887398184,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":34,"timestamp":2394429663624,"id":3094,"parentId":2895,"tags":{},"startTime":1780887398211,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":29823,"timestamp":2394429634388,"id":2895,"parentId":2116,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/OrdinalMeta.js","layer":"app-pages-browser"},"startTime":1780887398181,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":27035,"timestamp":2394429637182,"id":2972,"parentId":2898,"tags":{},"startTime":1780887398184,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":30,"timestamp":2394429664222,"id":3095,"parentId":2898,"tags":{},"startTime":1780887398211,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":29852,"timestamp":2394429634500,"id":2898,"parentId":2114,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/animation/requestAnimationFrame.js","layer":"app-pages-browser"},"startTime":1780887398182,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":27223,"timestamp":2394429637134,"id":2960,"parentId":2886,"tags":{},"startTime":1780887398184,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":70,"timestamp":2394429664361,"id":3096,"parentId":2886,"tags":{},"startTime":1780887398211,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":31191,"timestamp":2394429633965,"id":2886,"parentId":2107,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/tooltip/tooltipMarkup.js","layer":"app-pages-browser"},"startTime":1780887398181,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":27992,"timestamp":2394429637179,"id":2971,"parentId":2897,"tags":{},"startTime":1780887398184,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":31,"timestamp":2394429665174,"id":3097,"parentId":2897,"tags":{},"startTime":1780887398212,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":31333,"timestamp":2394429634466,"id":2897,"parentId":2114,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/canvas/Layer.js","layer":"app-pages-browser"},"startTime":1780887398182,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":28614,"timestamp":2394429637189,"id":2974,"parentId":2900,"tags":{},"startTime":1780887398184,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":27,"timestamp":2394429665807,"id":3098,"parentId":2900,"tags":{},"startTime":1780887398213,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":31341,"timestamp":2394429634569,"id":2900,"parentId":2125,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/SelectZoomModel.js","layer":"app-pages-browser"},"startTime":1780887398182,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":28722,"timestamp":2394429637193,"id":2975,"parentId":2901,"tags":{},"startTime":1780887398184,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":24,"timestamp":2394429665917,"id":3099,"parentId":2901,"tags":{},"startTime":1780887398213,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":31408,"timestamp":2394429634603,"id":2901,"parentId":2125,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/SelectZoomView.js","layer":"app-pages-browser"},"startTime":1780887398182,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":28841,"timestamp":2394429637174,"id":2970,"parentId":2896,"tags":{},"startTime":1780887398184,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":23,"timestamp":2394429666018,"id":3100,"parentId":2896,"tags":{},"startTime":1780887398213,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":31652,"timestamp":2394429634430,"id":2896,"parentId":2116,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/axisCommonTypes.js","layer":"app-pages-browser"},"startTime":1780887398181,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":28900,"timestamp":2394429637186,"id":2973,"parentId":2899,"tags":{},"startTime":1780887398184,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":24,"timestamp":2394429666088,"id":3101,"parentId":2899,"tags":{},"startTime":1780887398213,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":31697,"timestamp":2394429634534,"id":2899,"parentId":2124,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/single/singleAxisHelper.js","layer":"app-pages-browser"},"startTime":1780887398182,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":29028,"timestamp":2394429637208,"id":2979,"parentId":2905,"tags":{},"startTime":1780887398184,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":43,"timestamp":2394429666239,"id":3102,"parentId":2905,"tags":{},"startTime":1780887398213,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":33515,"timestamp":2394429634744,"id":2905,"parentId":2159,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/Element.js","layer":"app-pages-browser"},"startTime":1780887398182,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":31069,"timestamp":2394429637197,"id":2976,"parentId":2902,"tags":{},"startTime":1780887398184,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":28,"timestamp":2394429668270,"id":3103,"parentId":2902,"tags":{},"startTime":1780887398215,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":33799,"timestamp":2394429634639,"id":2902,"parentId":2149,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/helper/listComponent.js","layer":"app-pages-browser"},"startTime":1780887398182,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":31232,"timestamp":2394429637211,"id":2980,"parentId":2906,"tags":{},"startTime":1780887398184,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":28,"timestamp":2394429668446,"id":3104,"parentId":2906,"tags":{},"startTime":1780887398216,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":34989,"timestamp":2394429634778,"id":2906,"parentId":2160,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/contain/path.js","layer":"app-pages-browser"},"startTime":1780887398182,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":32573,"timestamp":2394429637200,"id":2977,"parentId":2903,"tags":{},"startTime":1780887398184,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":27,"timestamp":2394429669778,"id":3105,"parentId":2903,"tags":{},"startTime":1780887398217,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":35198,"timestamp":2394429634677,"id":2903,"parentId":2105,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/contain/util.js","layer":"app-pages-browser"},"startTime":1780887398182,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":32676,"timestamp":2394429637204,"id":2978,"parentId":2904,"tags":{},"startTime":1780887398184,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":62,"timestamp":2394429669883,"id":3106,"parentId":2904,"tags":{},"startTime":1780887398217,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":35617,"timestamp":2394429634710,"id":2904,"parentId":2149,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/contain/text.js","layer":"app-pages-browser"},"startTime":1780887398182,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":33116,"timestamp":2394429637218,"id":2982,"parentId":2908,"tags":{},"startTime":1780887398184,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":31,"timestamp":2394429670337,"id":3107,"parentId":2908,"tags":{},"startTime":1780887398217,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":36004,"timestamp":2394429634844,"id":2908,"parentId":2154,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/styleCompat.js","layer":"app-pages-browser"},"startTime":1780887398182,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":37829,"timestamp":2394429637214,"id":2981,"parentId":2907,"tags":{},"startTime":1780887398184,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":35,"timestamp":2394429675049,"id":3108,"parentId":2907,"tags":{},"startTime":1780887398222,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":43142,"timestamp":2394429634812,"id":2907,"parentId":2162,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/graphic.js","layer":"app-pages-browser"},"startTime":1780887398182,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":40766,"timestamp":2394429637221,"id":2983,"parentId":2909,"tags":{},"startTime":1780887398184,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":41,"timestamp":2394429677993,"id":3109,"parentId":2909,"tags":{},"startTime":1780887398225,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":44320,"timestamp":2394429634878,"id":2909,"parentId":2154,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/animation/customGraphicTransition.js","layer":"app-pages-browser"},"startTime":1780887398182,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":41975,"timestamp":2394429637229,"id":2985,"parentId":2911,"tags":{},"startTime":1780887398184,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":36,"timestamp":2394429679208,"id":3110,"parentId":2911,"tags":{},"startTime":1780887398226,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":44769,"timestamp":2394429634948,"id":2911,"parentId":2158,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/visual/visualSolution.js","layer":"app-pages-browser"},"startTime":1780887398182,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":42487,"timestamp":2394429637235,"id":2986,"parentId":2912,"tags":{},"startTime":1780887398184,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":36,"timestamp":2394429679727,"id":3111,"parentId":2912,"tags":{},"startTime":1780887398227,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":45637,"timestamp":2394429634987,"id":2912,"parentId":2152,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/tooltip/TooltipHTMLContent.js","layer":"app-pages-browser"},"startTime":1780887398182,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":43404,"timestamp":2394429637225,"id":2984,"parentId":2910,"tags":{},"startTime":1780887398184,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":29,"timestamp":2394429680633,"id":3112,"parentId":2910,"tags":{},"startTime":1780887398228,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":46766,"timestamp":2394429634912,"id":2910,"parentId":2154,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/animation/customGraphicKeyframeAnimation.js","layer":"app-pages-browser"},"startTime":1780887398182,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":44432,"timestamp":2394429637255,"id":2991,"parentId":2917,"tags":{},"startTime":1780887398184,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":41,"timestamp":2394429681691,"id":3113,"parentId":2917,"tags":{},"startTime":1780887398229,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":51941,"timestamp":2394429635164,"id":2917,"parentId":2156,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/helper/BrushController.js","layer":"app-pages-browser"},"startTime":1780887398182,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":49877,"timestamp":2394429637240,"id":2987,"parentId":2913,"tags":{},"startTime":1780887398184,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":37,"timestamp":2394429687123,"id":3114,"parentId":2913,"tags":{},"startTime":1780887398234,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":53182,"timestamp":2394429635023,"id":2913,"parentId":2152,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/tooltip/TooltipRichContent.js","layer":"app-pages-browser"},"startTime":1780887398182,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":50969,"timestamp":2394429637244,"id":2988,"parentId":2914,"tags":{},"startTime":1780887398184,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":30,"timestamp":2394429688218,"id":3115,"parentId":2914,"tags":{},"startTime":1780887398235,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":53384,"timestamp":2394429635061,"id":2914,"parentId":2152,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/findPointFromSeries.js","layer":"app-pages-browser"},"startTime":1780887398182,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":51203,"timestamp":2394429637250,"id":2990,"parentId":2916,"tags":{},"startTime":1780887398184,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":27,"timestamp":2394429688457,"id":3116,"parentId":2916,"tags":{},"startTime":1780887398236,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":53540,"timestamp":2394429635130,"id":2916,"parentId":2152,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/tooltip/helper.js","layer":"app-pages-browser"},"startTime":1780887398182,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":51429,"timestamp":2394429637247,"id":2989,"parentId":2915,"tags":{},"startTime":1780887398184,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":28,"timestamp":2394429688680,"id":3117,"parentId":2915,"tags":{},"startTime":1780887398236,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":53829,"timestamp":2394429635096,"id":2915,"parentId":2152,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axisPointer/globalListener.js","layer":"app-pages-browser"},"startTime":1780887398182,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":51671,"timestamp":2394429637262,"id":2993,"parentId":2919,"tags":{},"startTime":1780887398184,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":37,"timestamp":2394429688937,"id":3118,"parentId":2919,"tags":{},"startTime":1780887398236,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":54779,"timestamp":2394429635233,"id":2919,"parentId":2158,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/helper/BrushTargetManager.js","layer":"app-pages-browser"},"startTime":1780887398182,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":52763,"timestamp":2394429637276,"id":2997,"parentId":2923,"tags":{},"startTime":1780887398184,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":41,"timestamp":2394429690056,"id":3119,"parentId":2923,"tags":{},"startTime":1780887398237,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":55095,"timestamp":2394429635385,"id":2923,"parentId":2168,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/axis/axisSplitHelper.js","layer":"app-pages-browser"},"startTime":1780887398182,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":53246,"timestamp":2394429637259,"id":2992,"parentId":2918,"tags":{},"startTime":1780887398184,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":35,"timestamp":2394429690512,"id":3120,"parentId":2918,"tags":{},"startTime":1780887398238,"traceId":"9b70e6dfdb6b3605"}] +[{"name":"build-module-js","duration":55689,"timestamp":2394429635198,"id":2918,"parentId":2158,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/brush/selector.js","layer":"app-pages-browser"},"startTime":1780887398182,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":53630,"timestamp":2394429637273,"id":2996,"parentId":2922,"tags":{},"startTime":1780887398184,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":29,"timestamp":2394429690908,"id":3121,"parentId":2922,"tags":{},"startTime":1780887398238,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":55756,"timestamp":2394429635350,"id":2922,"parentId":2166,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/helper/brushHelper.js","layer":"app-pages-browser"},"startTime":1780887398182,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":53848,"timestamp":2394429637266,"id":2994,"parentId":2920,"tags":{},"startTime":1780887398184,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":27,"timestamp":2394429691123,"id":3122,"parentId":2920,"tags":{},"startTime":1780887398238,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":56289,"timestamp":2394429635272,"id":2920,"parentId":2162,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/core.js","layer":"app-pages-browser"},"startTime":1780887398182,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":54291,"timestamp":2394429637280,"id":2998,"parentId":2924,"tags":{},"startTime":1780887398184,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":32,"timestamp":2394429691591,"id":3123,"parentId":2924,"tags":{},"startTime":1780887398239,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":56807,"timestamp":2394429635419,"id":2924,"parentId":2162,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/helper.js","layer":"app-pages-browser"},"startTime":1780887398182,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":54949,"timestamp":2394429637283,"id":2999,"parentId":2925,"tags":{},"startTime":1780887398184,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":31,"timestamp":2394429692236,"id":3124,"parentId":2925,"tags":{},"startTime":1780887398239,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":57096,"timestamp":2394429635455,"id":2925,"parentId":2290,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/axisAlignTicks.js","layer":"app-pages-browser"},"startTime":1780887398183,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":55268,"timestamp":2394429637289,"id":3001,"parentId":2927,"tags":{},"startTime":1780887398184,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":25,"timestamp":2394429692563,"id":3125,"parentId":2927,"tags":{},"startTime":1780887398240,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":57148,"timestamp":2394429635526,"id":2927,"parentId":2290,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/radar/IndicatorAxis.js","layer":"app-pages-browser"},"startTime":1780887398183,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":55384,"timestamp":2394429637293,"id":3002,"parentId":2928,"tags":{},"startTime":1780887398184,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":27,"timestamp":2394429692681,"id":3126,"parentId":2928,"tags":{},"startTime":1780887398240,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":57528,"timestamp":2394429635559,"id":2928,"parentId":2284,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/polar/Polar.js","layer":"app-pages-browser"},"startTime":1780887398183,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":55806,"timestamp":2394429637286,"id":3000,"parentId":2926,"tags":{},"startTime":1780887398184,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":33,"timestamp":2394429693095,"id":3127,"parentId":2926,"tags":{},"startTime":1780887398240,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":60060,"timestamp":2394429635491,"id":2926,"parentId":2288,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/parallel/Parallel.js","layer":"app-pages-browser"},"startTime":1780887398183,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":58309,"timestamp":2394429637269,"id":2995,"parentId":2921,"tags":{},"startTime":1780887398184,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":48,"timestamp":2394429695589,"id":3128,"parentId":2921,"tags":{},"startTime":1780887398243,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":61157,"timestamp":2394429635305,"id":2921,"parentId":2162,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/patch.js","layer":"app-pages-browser"},"startTime":1780887398182,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":59177,"timestamp":2394429637296,"id":3003,"parentId":2929,"tags":{},"startTime":1780887398184,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":35,"timestamp":2394429696482,"id":3129,"parentId":2929,"tags":{},"startTime":1780887398244,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":61365,"timestamp":2394429635593,"id":2929,"parentId":2293,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/single/Single.js","layer":"app-pages-browser"},"startTime":1780887398183,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":59662,"timestamp":2394429637303,"id":3005,"parentId":2931,"tags":{},"startTime":1780887398184,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":31,"timestamp":2394429696970,"id":3130,"parentId":2931,"tags":{},"startTime":1780887398244,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":61810,"timestamp":2394429635659,"id":2931,"parentId":2290,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/scale/Interval.js","layer":"app-pages-browser"},"startTime":1780887398183,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":60185,"timestamp":2394429637306,"id":3006,"parentId":2932,"tags":{},"startTime":1780887398184,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":25,"timestamp":2394429697496,"id":3131,"parentId":2932,"tags":{},"startTime":1780887398245,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":62086,"timestamp":2394429635694,"id":2932,"parentId":2295,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/legacy/getTextRect.js","layer":"app-pages-browser"},"startTime":1780887398183,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":60484,"timestamp":2394429637310,"id":3007,"parentId":2933,"tags":{},"startTime":1780887398184,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":50,"timestamp":2394429697800,"id":3132,"parentId":2933,"tags":{},"startTime":1780887398245,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":62199,"timestamp":2394429635727,"id":2933,"parentId":2300,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/CoordinateSystem.js","layer":"app-pages-browser"},"startTime":1780887398183,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":60637,"timestamp":2394429637313,"id":3008,"parentId":2934,"tags":{},"startTime":1780887398184,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":64,"timestamp":2394429697956,"id":3133,"parentId":2934,"tags":{},"startTime":1780887398245,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":63253,"timestamp":2394429635766,"id":2934,"parentId":2302,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/scale/Time.js","layer":"app-pages-browser"},"startTime":1780887398183,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":61707,"timestamp":2394429637318,"id":3009,"parentId":2935,"tags":{},"startTime":1780887398184,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":28,"timestamp":2394429699031,"id":3134,"parentId":2935,"tags":{},"startTime":1780887398246,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":63515,"timestamp":2394429635799,"id":2935,"parentId":2296,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/scale/helper.js","layer":"app-pages-browser"},"startTime":1780887398183,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":61995,"timestamp":2394429637323,"id":3011,"parentId":2937,"tags":{},"startTime":1780887398184,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":30,"timestamp":2394429699321,"id":3135,"parentId":2937,"tags":{},"startTime":1780887398246,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":63870,"timestamp":2394429635867,"id":2937,"parentId":2300,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/markerHelper.js","layer":"app-pages-browser"},"startTime":1780887398183,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":62609,"timestamp":2394429637321,"id":3010,"parentId":2936,"tags":{},"startTime":1780887398184,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":30,"timestamp":2394429699934,"id":3136,"parentId":2936,"tags":{},"startTime":1780887398247,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":64456,"timestamp":2394429635834,"id":2936,"parentId":2302,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/scale/Ordinal.js","layer":"app-pages-browser"},"startTime":1780887398183,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":69746,"timestamp":2394429639760,"id":3036,"parentId":3017,"tags":{},"startTime":1780887398187,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":37,"timestamp":2394429709518,"id":3137,"parentId":3017,"tags":{},"startTime":1780887398257,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":70504,"timestamp":2394429639245,"id":3017,"parentId":2302,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/timeline/TimelineView.js","layer":"app-pages-browser"},"startTime":1780887398186,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":72457,"timestamp":2394429637300,"id":3004,"parentId":2930,"tags":{},"startTime":1780887398184,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":26,"timestamp":2394429709761,"id":3138,"parentId":2930,"tags":{},"startTime":1780887398257,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":74489,"timestamp":2394429635626,"id":2930,"parentId":2295,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/dom.js","layer":"app-pages-browser"},"startTime":1780887398183,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":70370,"timestamp":2394429639751,"id":3034,"parentId":3015,"tags":{},"startTime":1780887398187,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":37,"timestamp":2394429710124,"id":3139,"parentId":3015,"tags":{},"startTime":1780887398257,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":71338,"timestamp":2394429639171,"id":3015,"parentId":2301,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/timeline/TimelineModel.js","layer":"app-pages-browser"},"startTime":1780887398186,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":70796,"timestamp":2394429639735,"id":3031,"parentId":3012,"tags":{},"startTime":1780887398187,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":40,"timestamp":2394429710544,"id":3140,"parentId":3012,"tags":{},"startTime":1780887398258,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":71890,"timestamp":2394429639043,"id":3012,"parentId":2300,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/LineDraw.js","layer":"app-pages-browser"},"startTime":1780887398186,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":71178,"timestamp":2394429639763,"id":3037,"parentId":3018,"tags":{},"startTime":1780887398187,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":26,"timestamp":2394429710945,"id":3141,"parentId":3018,"tags":{},"startTime":1780887398258,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":71787,"timestamp":2394429639280,"id":3018,"parentId":2302,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/timeline/TimelineAxis.js","layer":"app-pages-browser"},"startTime":1780887398186,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":71313,"timestamp":2394429639759,"id":3035,"parentId":3016,"tags":{},"startTime":1780887398187,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":28,"timestamp":2394429711075,"id":3142,"parentId":3016,"tags":{},"startTime":1780887398258,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":72150,"timestamp":2394429639210,"id":3016,"parentId":2296,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/cartesian/cartesianAxisHelper.js","layer":"app-pages-browser"},"startTime":1780887398186,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":71594,"timestamp":2394429639774,"id":3042,"parentId":3023,"tags":{},"startTime":1780887398187,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":31,"timestamp":2394429711374,"id":3143,"parentId":3023,"tags":{},"startTime":1780887398258,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":72396,"timestamp":2394429639458,"id":3023,"parentId":2340,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/event.js","layer":"app-pages-browser"},"startTime":1780887398187,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":72093,"timestamp":2394429639771,"id":3041,"parentId":3022,"tags":{},"startTime":1780887398187,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":39,"timestamp":2394429711870,"id":3144,"parentId":3022,"tags":{},"startTime":1780887398259,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":72714,"timestamp":2394429639424,"id":3022,"parentId":2341,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/history.js","layer":"app-pages-browser"},"startTime":1780887398186,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":72369,"timestamp":2394429639776,"id":3043,"parentId":3024,"tags":{},"startTime":1780887398187,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":26,"timestamp":2394429712150,"id":3145,"parentId":3024,"tags":{},"startTime":1780887398259,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":72775,"timestamp":2394429639491,"id":3024,"parentId":2362,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/vendor.js","layer":"app-pages-browser"},"startTime":1780887398187,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":72494,"timestamp":2394429639777,"id":3044,"parentId":3025,"tags":{},"startTime":1780887398187,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":34,"timestamp":2394429712275,"id":3146,"parentId":3025,"tags":{},"startTime":1780887398259,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":73820,"timestamp":2394429639525,"id":3025,"parentId":2369,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/conditionalExpression.js","layer":"app-pages-browser"},"startTime":1780887398187,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":73598,"timestamp":2394429639769,"id":3040,"parentId":3021,"tags":{},"startTime":1780887398187,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":39,"timestamp":2394429713377,"id":3147,"parentId":3021,"tags":{},"startTime":1780887398260,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":74310,"timestamp":2394429639386,"id":3021,"parentId":2342,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/helper/sliderMove.js","layer":"app-pages-browser"},"startTime":1780887398186,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":73937,"timestamp":2394429639767,"id":3039,"parentId":3020,"tags":{},"startTime":1780887398187,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":34,"timestamp":2394429713707,"id":3148,"parentId":3020,"tags":{},"startTime":1780887398261,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":74779,"timestamp":2394429639351,"id":3020,"parentId":2306,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/SymbolDraw.js","layer":"app-pages-browser"},"startTime":1780887398186,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":74358,"timestamp":2394429639781,"id":3046,"parentId":3027,"tags":{},"startTime":1780887398187,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":32,"timestamp":2394429714142,"id":3149,"parentId":3027,"tags":{},"startTime":1780887398261,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":74711,"timestamp":2394429639594,"id":3027,"parentId":2358,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/cartesian/Axis2D.js","layer":"app-pages-browser"},"startTime":1780887398187,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":74544,"timestamp":2394429639765,"id":3038,"parentId":3019,"tags":{},"startTime":1780887398187,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":60,"timestamp":2394429714312,"id":3150,"parentId":3019,"tags":{},"startTime":1780887398261,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":76266,"timestamp":2394429639313,"id":3019,"parentId":2295,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/helper/parseText.js","layer":"app-pages-browser"},"startTime":1780887398186,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":75801,"timestamp":2394429639784,"id":3048,"parentId":3029,"tags":{},"startTime":1780887398187,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":28,"timestamp":2394429715590,"id":3151,"parentId":3029,"tags":{},"startTime":1780887398263,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":76153,"timestamp":2394429639660,"id":3029,"parentId":2366,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/dataZoomProcessor.js","layer":"app-pages-browser"},"startTime":1780887398187,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":76039,"timestamp":2394429639779,"id":3045,"parentId":3026,"tags":{},"startTime":1780887398187,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":34,"timestamp":2394429715821,"id":3152,"parentId":3026,"tags":{},"startTime":1780887398263,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":76704,"timestamp":2394429639559,"id":3026,"parentId":2358,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/cartesian/Cartesian2D.js","layer":"app-pages-browser"},"startTime":1780887398187,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":76490,"timestamp":2394429639782,"id":3047,"parentId":3028,"tags":{},"startTime":1780887398187,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":28,"timestamp":2394429716277,"id":3153,"parentId":3028,"tags":{},"startTime":1780887398263,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":76764,"timestamp":2394429639627,"id":3028,"parentId":2365,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/DataZoomView.js","layer":"app-pages-browser"},"startTime":1780887398187,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":76653,"timestamp":2394429639743,"id":3032,"parentId":3013,"tags":{},"startTime":1780887398187,"traceId":"9b70e6dfdb6b3605"}] +[{"name":"next-swc-loader","duration":31,"timestamp":2394429716400,"id":3154,"parentId":3013,"tags":{},"startTime":1780887398263,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":77502,"timestamp":2394429639099,"id":3013,"parentId":2300,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/MarkerView.js","layer":"app-pages-browser"},"startTime":1780887398186,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":76821,"timestamp":2394429639786,"id":3049,"parentId":3030,"tags":{},"startTime":1780887398187,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":34,"timestamp":2394429716610,"id":3155,"parentId":3030,"tags":{},"startTime":1780887398264,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":77627,"timestamp":2394429639694,"id":3030,"parentId":2364,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/DataZoomModel.js","layer":"app-pages-browser"},"startTime":1780887398187,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":77693,"timestamp":2394429639746,"id":3033,"parentId":3014,"tags":{},"startTime":1780887398187,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":28,"timestamp":2394429717443,"id":3156,"parentId":3014,"tags":{},"startTime":1780887398265,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":78651,"timestamp":2394429639135,"id":3014,"parentId":2300,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/marker/MarkerModel.js","layer":"app-pages-browser"},"startTime":1780887398186,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":77579,"timestamp":2394429640258,"id":3055,"parentId":3051,"tags":{},"startTime":1780887398187,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":29,"timestamp":2394429717841,"id":3157,"parentId":3051,"tags":{},"startTime":1780887398265,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":78154,"timestamp":2394429640135,"id":3051,"parentId":2367,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/helper/RoamController.js","layer":"app-pages-browser"},"startTime":1780887398187,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":78055,"timestamp":2394429640245,"id":3054,"parentId":3050,"tags":{},"startTime":1780887398187,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":26,"timestamp":2394429718303,"id":3158,"parentId":3050,"tags":{},"startTime":1780887398265,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":78306,"timestamp":2394429640097,"id":3050,"parentId":2366,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/dataZoomAction.js","layer":"app-pages-browser"},"startTime":1780887398187,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":78147,"timestamp":2394429640260,"id":3056,"parentId":3052,"tags":{},"startTime":1780887398187,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":31,"timestamp":2394429718410,"id":3159,"parentId":3052,"tags":{},"startTime":1780887398265,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":78538,"timestamp":2394429640174,"id":3052,"parentId":2367,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/helper.js","layer":"app-pages-browser"},"startTime":1780887398187,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":78454,"timestamp":2394429640262,"id":3057,"parentId":3053,"tags":{},"startTime":1780887398187,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":33,"timestamp":2394429718719,"id":3160,"parentId":3053,"tags":{},"startTime":1780887398266,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":79176,"timestamp":2394429640209,"id":3053,"parentId":2372,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/line/poly.js","layer":"app-pages-browser"},"startTime":1780887398187,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":89071,"timestamp":2394429641811,"id":3062,"parentId":3059,"tags":{},"startTime":1780887398189,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":37,"timestamp":2394429730897,"id":3161,"parentId":3059,"tags":{},"startTime":1780887398278,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":89859,"timestamp":2394429641617,"id":3059,"parentId":2372,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/line/lineAnimationDiff.js","layer":"app-pages-browser"},"startTime":1780887398189,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":89668,"timestamp":2394429641816,"id":3063,"parentId":3060,"tags":{},"startTime":1780887398189,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":29,"timestamp":2394429731489,"id":3162,"parentId":3060,"tags":{},"startTime":1780887398279,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":90087,"timestamp":2394429641710,"id":3060,"parentId":2372,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/createClipPathFromCoordSys.js","layer":"app-pages-browser"},"startTime":1780887398189,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":90026,"timestamp":2394429641784,"id":3061,"parentId":3058,"tags":{},"startTime":1780887398189,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":26,"timestamp":2394429731814,"id":3163,"parentId":3058,"tags":{},"startTime":1780887398279,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":90571,"timestamp":2394429641482,"id":3058,"parentId":2372,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/line/helper.js","layer":"app-pages-browser"},"startTime":1780887398189,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":14113,"timestamp":2394429762837,"id":3247,"parentId":3167,"tags":{},"startTime":1780887398310,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":149,"timestamp":2394429776990,"id":3348,"parentId":3167,"tags":{},"startTime":1780887398324,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":20203,"timestamp":2394429757534,"id":3167,"parentId":2376,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/helper.js","layer":"app-pages-browser"},"startTime":1780887398305,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":14974,"timestamp":2394429762780,"id":3244,"parentId":3164,"tags":{},"startTime":1780887398310,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":46,"timestamp":2394429777761,"id":3349,"parentId":3164,"tags":{},"startTime":1780887398325,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":21903,"timestamp":2394429757234,"id":3164,"parentId":2372,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/Symbol.js","layer":"app-pages-browser"},"startTime":1780887398304,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":16342,"timestamp":2394429762813,"id":3246,"parentId":3166,"tags":{},"startTime":1780887398310,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":48,"timestamp":2394429779164,"id":3350,"parentId":3166,"tags":{},"startTime":1780887398326,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":22205,"timestamp":2394429757469,"id":3166,"parentId":2376,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/VisualMapView.js","layer":"app-pages-browser"},"startTime":1780887398305,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":16847,"timestamp":2394429762846,"id":3248,"parentId":3168,"tags":{},"startTime":1780887398310,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":50,"timestamp":2394429779700,"id":3351,"parentId":3168,"tags":{},"startTime":1780887398327,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":22851,"timestamp":2394429757649,"id":3168,"parentId":2380,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/tree/layoutHelper.js","layer":"app-pages-browser"},"startTime":1780887398305,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":17707,"timestamp":2394429762804,"id":3245,"parentId":3165,"tags":{},"startTime":1780887398310,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":33,"timestamp":2394429780516,"id":3352,"parentId":3165,"tags":{},"startTime":1780887398328,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":24110,"timestamp":2394429757394,"id":3165,"parentId":2372,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/labelHelper.js","layer":"app-pages-browser"},"startTime":1780887398304,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":18652,"timestamp":2394429762879,"id":3251,"parentId":3171,"tags":{},"startTime":1780887398310,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":49,"timestamp":2394429781544,"id":3353,"parentId":3171,"tags":{},"startTime":1780887398329,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":24686,"timestamp":2394429757808,"id":3171,"parentId":2380,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/bbox.js","layer":"app-pages-browser"},"startTime":1780887398305,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":19654,"timestamp":2394429762852,"id":3249,"parentId":3169,"tags":{},"startTime":1780887398310,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":40,"timestamp":2394429782512,"id":3354,"parentId":3169,"tags":{},"startTime":1780887398330,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":25019,"timestamp":2394429757707,"id":3169,"parentId":2380,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/helper/roamHelper.js","layer":"app-pages-browser"},"startTime":1780887398305,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":19875,"timestamp":2394429762857,"id":3250,"parentId":3170,"tags":{},"startTime":1780887398310,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":37,"timestamp":2394429782736,"id":3355,"parentId":3170,"tags":{},"startTime":1780887398330,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":25121,"timestamp":2394429757758,"id":3170,"parentId":2380,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/helper/cursorHelper.js","layer":"app-pages-browser"},"startTime":1780887398305,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":19976,"timestamp":2394429762909,"id":3252,"parentId":3172,"tags":{},"startTime":1780887398310,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":36,"timestamp":2394429782889,"id":3356,"parentId":3172,"tags":{},"startTime":1780887398330,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":26631,"timestamp":2394429757868,"id":3172,"parentId":2381,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/Tree.js","layer":"app-pages-browser"},"startTime":1780887398305,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":21593,"timestamp":2394429762914,"id":3253,"parentId":3173,"tags":{},"startTime":1780887398310,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":38,"timestamp":2394429784516,"id":3357,"parentId":3173,"tags":{},"startTime":1780887398332,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":26779,"timestamp":2394429757925,"id":3173,"parentId":2378,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/visual/visualDefault.js","layer":"app-pages-browser"},"startTime":1780887398305,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":21836,"timestamp":2394429762925,"id":3255,"parentId":3175,"tags":{},"startTime":1780887398310,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":34,"timestamp":2394429784765,"id":3358,"parentId":3175,"tags":{},"startTime":1780887398332,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":26858,"timestamp":2394429758079,"id":3175,"parentId":2438,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/visual/LegendVisualProvider.js","layer":"app-pages-browser"},"startTime":1780887398305,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":22009,"timestamp":2394429762934,"id":3257,"parentId":3177,"tags":{},"startTime":1780887398310,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":52,"timestamp":2394429784947,"id":3359,"parentId":3177,"tags":{},"startTime":1780887398332,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":29291,"timestamp":2394429758250,"id":3177,"parentId":2375,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/VisualMapModel.js","layer":"app-pages-browser"},"startTime":1780887398305,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":24629,"timestamp":2394429762920,"id":3254,"parentId":3174,"tags":{},"startTime":1780887398310,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":45,"timestamp":2394429787554,"id":3360,"parentId":3174,"tags":{},"startTime":1780887398335,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":31583,"timestamp":2394429757998,"id":3174,"parentId":2378,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/visual/VisualMapping.js","layer":"app-pages-browser"},"startTime":1780887398305,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":26647,"timestamp":2394429762943,"id":3259,"parentId":3179,"tags":{},"startTime":1780887398310,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":34,"timestamp":2394429789594,"id":3361,"parentId":3179,"tags":{},"startTime":1780887398337,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":31464,"timestamp":2394429758350,"id":3179,"parentId":2382,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/tree/traversalHelper.js","layer":"app-pages-browser"},"startTime":1780887398305,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":26890,"timestamp":2394429762930,"id":3256,"parentId":3176,"tags":{},"startTime":1780887398310,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":35,"timestamp":2394429789824,"id":3362,"parentId":3176,"tags":{},"startTime":1780887398337,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":34571,"timestamp":2394429758185,"id":3176,"parentId":2381,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/treeHelper.js","layer":"app-pages-browser"},"startTime":1780887398305,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":29814,"timestamp":2394429762955,"id":3261,"parentId":3181,"tags":{},"startTime":1780887398310,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":72,"timestamp":2394429792777,"id":3363,"parentId":3181,"tags":{},"startTime":1780887398340,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":34884,"timestamp":2394429758544,"id":3181,"parentId":2377,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/preprocessor.js","layer":"app-pages-browser"},"startTime":1780887398306,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":30487,"timestamp":2394429762948,"id":3260,"parentId":3180,"tags":{},"startTime":1780887398310,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":37,"timestamp":2394429793439,"id":3364,"parentId":3180,"tags":{},"startTime":1780887398341,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":36740,"timestamp":2394429758401,"id":3180,"parentId":2377,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/visualEncoding.js","layer":"app-pages-browser"},"startTime":1780887398305,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":33659,"timestamp":2394429762959,"id":3262,"parentId":3182,"tags":{},"startTime":1780887398310,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":65,"timestamp":2394429796635,"id":3365,"parentId":3182,"tags":{},"startTime":1780887398344,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":39404,"timestamp":2394429758632,"id":3182,"parentId":2438,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/createSeriesDataSimply.js","layer":"app-pages-browser"},"startTime":1780887398306,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":35577,"timestamp":2394429762968,"id":3264,"parentId":3184,"tags":{},"startTime":1780887398310,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":50,"timestamp":2394429798558,"id":3366,"parentId":3184,"tags":{},"startTime":1780887398346,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":40842,"timestamp":2394429758745,"id":3184,"parentId":2440,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/sectorHelper.js","layer":"app-pages-browser"},"startTime":1780887398306,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":36689,"timestamp":2394429762972,"id":3265,"parentId":3185,"tags":{},"startTime":1780887398310,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":154,"timestamp":2394429799691,"id":3367,"parentId":3185,"tags":{},"startTime":1780887398347,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":42115,"timestamp":2394429758800,"id":3185,"parentId":2443,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/enableAriaDecalForTree.js","layer":"app-pages-browser"},"startTime":1780887398306,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":37994,"timestamp":2394429762977,"id":3266,"parentId":3186,"tags":{},"startTime":1780887398310,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":257,"timestamp":2394429800993,"id":3368,"parentId":3186,"tags":{},"startTime":1780887398348,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":43194,"timestamp":2394429758857,"id":3186,"parentId":2444,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/treemap/Breadcrumb.js","layer":"app-pages-browser"},"startTime":1780887398306,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":39089,"timestamp":2394429762980,"id":3267,"parentId":3187,"tags":{},"startTime":1780887398310,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":69,"timestamp":2394429802075,"id":3369,"parentId":3187,"tags":{},"startTime":1780887398349,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":43474,"timestamp":2394429758907,"id":3187,"parentId":2444,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/animation.js","layer":"app-pages-browser"},"startTime":1780887398306,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":39402,"timestamp":2394429762985,"id":3268,"parentId":3188,"tags":{},"startTime":1780887398310,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":86,"timestamp":2394429802391,"id":3370,"parentId":3188,"tags":{},"startTime":1780887398349,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":44386,"timestamp":2394429758954,"id":3188,"parentId":2576,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/createGraphFromNodeEdge.js","layer":"app-pages-browser"},"startTime":1780887398306,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":40356,"timestamp":2394429762992,"id":3269,"parentId":3189,"tags":{},"startTime":1780887398310,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":44,"timestamp":2394429803379,"id":3371,"parentId":3189,"tags":{},"startTime":1780887398350,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":45124,"timestamp":2394429759009,"id":3189,"parentId":2585,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/label/sectorLabel.js","layer":"app-pages-browser"},"startTime":1780887398306,"traceId":"9b70e6dfdb6b3605"}] +[{"name":"read-resource","duration":41149,"timestamp":2394429762996,"id":3270,"parentId":3190,"tags":{},"startTime":1780887398310,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":41,"timestamp":2394429804151,"id":3372,"parentId":3190,"tags":{},"startTime":1780887398351,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":45563,"timestamp":2394429759061,"id":3190,"parentId":2579,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/gauge/PointerPath.js","layer":"app-pages-browser"},"startTime":1780887398306,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":41219,"timestamp":2394429763412,"id":3272,"parentId":3192,"tags":{},"startTime":1780887398310,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":39,"timestamp":2394429804650,"id":3373,"parentId":3192,"tags":{},"startTime":1780887398352,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":45996,"timestamp":2394429759158,"id":3192,"parentId":2584,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/bar/BaseBarSeries.js","layer":"app-pages-browser"},"startTime":1780887398306,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":41798,"timestamp":2394429763363,"id":3271,"parentId":3191,"tags":{},"startTime":1780887398310,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":37,"timestamp":2394429805165,"id":3374,"parentId":3191,"tags":{},"startTime":1780887398352,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":48001,"timestamp":2394429759112,"id":3191,"parentId":2583,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/LargeSymbolDraw.js","layer":"app-pages-browser"},"startTime":1780887398306,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":43696,"timestamp":2394429763427,"id":3273,"parentId":3193,"tags":{},"startTime":1780887398310,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":39,"timestamp":2394429807129,"id":3375,"parentId":3193,"tags":{},"startTime":1780887398354,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":48198,"timestamp":2394429759251,"id":3193,"parentId":2589,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/boxplot/prepareBoxplotData.js","layer":"app-pages-browser"},"startTime":1780887398306,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":44017,"timestamp":2394429763440,"id":3274,"parentId":3194,"tags":{},"startTime":1780887398311,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":46,"timestamp":2394429807461,"id":3376,"parentId":3194,"tags":{},"startTime":1780887398355,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":48593,"timestamp":2394429759299,"id":3194,"parentId":2587,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/whiskerBoxCommon.js","layer":"app-pages-browser"},"startTime":1780887398306,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":44406,"timestamp":2394429763493,"id":3278,"parentId":3198,"tags":{},"startTime":1780887398311,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":32,"timestamp":2394429807903,"id":3377,"parentId":3198,"tags":{},"startTime":1780887398355,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":48888,"timestamp":2394429759492,"id":3198,"parentId":2594,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/Polyline.js","layer":"app-pages-browser"},"startTime":1780887398307,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":44918,"timestamp":2394429763469,"id":3276,"parentId":3196,"tags":{},"startTime":1780887398311,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":41,"timestamp":2394429808392,"id":3378,"parentId":3196,"tags":{},"startTime":1780887398355,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":50060,"timestamp":2394429759400,"id":3196,"parentId":2594,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/EffectLine.js","layer":"app-pages-browser"},"startTime":1780887398306,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":46015,"timestamp":2394429763451,"id":3275,"parentId":3195,"tags":{},"startTime":1780887398311,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":45,"timestamp":2394429809470,"id":3379,"parentId":3195,"tags":{},"startTime":1780887398357,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":51909,"timestamp":2394429759351,"id":3195,"parentId":2159,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/node_modules/tslib/tslib.es6.js","layer":"app-pages-browser"},"startTime":1780887398306,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":47791,"timestamp":2394429763481,"id":3277,"parentId":3197,"tags":{},"startTime":1780887398311,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":44,"timestamp":2394429811276,"id":3380,"parentId":3197,"tags":{},"startTime":1780887398358,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":53872,"timestamp":2394429759445,"id":3197,"parentId":2594,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/Line.js","layer":"app-pages-browser"},"startTime":1780887398307,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":49811,"timestamp":2394429763516,"id":3280,"parentId":3200,"tags":{},"startTime":1780887398311,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":65,"timestamp":2394429813332,"id":3381,"parentId":3200,"tags":{},"startTime":1780887398360,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":55055,"timestamp":2394429759589,"id":3200,"parentId":2603,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/EffectSymbol.js","layer":"app-pages-browser"},"startTime":1780887398307,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":51689,"timestamp":2394429762964,"id":3263,"parentId":3183,"tags":{},"startTime":1780887398310,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":64,"timestamp":2394429814658,"id":3382,"parentId":3183,"tags":{},"startTime":1780887398362,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":57917,"timestamp":2394429758690,"id":3183,"parentId":2440,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/pie/labelLayout.js","layer":"app-pages-browser"},"startTime":1780887398306,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":53087,"timestamp":2394429763528,"id":3281,"parentId":3201,"tags":{},"startTime":1780887398311,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":54,"timestamp":2394429816621,"id":3383,"parentId":3201,"tags":{},"startTime":1780887398364,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":57590,"timestamp":2394429759637,"id":3201,"parentId":2592,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/heatmap/HeatmapLayer.js","layer":"app-pages-browser"},"startTime":1780887398307,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":53673,"timestamp":2394429763562,"id":3284,"parentId":3204,"tags":{},"startTime":1780887398311,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":60,"timestamp":2394429817239,"id":3384,"parentId":3204,"tags":{},"startTime":1780887398364,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":57704,"timestamp":2394429759855,"id":3204,"parentId":2611,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/simpleLayoutHelper.js","layer":"app-pages-browser"},"startTime":1780887398307,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":53992,"timestamp":2394429763572,"id":3285,"parentId":3205,"tags":{},"startTime":1780887398311,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":51,"timestamp":2394429817568,"id":3385,"parentId":3205,"tags":{},"startTime":1780887398365,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":58377,"timestamp":2394429759908,"id":3205,"parentId":2612,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/circularLayoutHelper.js","layer":"app-pages-browser"},"startTime":1780887398307,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":54742,"timestamp":2394429763551,"id":3283,"parentId":3203,"tags":{},"startTime":1780887398311,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":30,"timestamp":2394429818297,"id":3386,"parentId":3203,"tags":{},"startTime":1780887398365,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":58946,"timestamp":2394429759734,"id":3203,"parentId":2579,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/util/shape/sausage.js","layer":"app-pages-browser"},"startTime":1780887398307,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":55147,"timestamp":2394429763538,"id":3282,"parentId":3202,"tags":{},"startTime":1780887398311,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":46,"timestamp":2394429818689,"id":3387,"parentId":3202,"tags":{},"startTime":1780887398366,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":61931,"timestamp":2394429759685,"id":3202,"parentId":2594,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/LargeLineDraw.js","layer":"app-pages-browser"},"startTime":1780887398307,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":58068,"timestamp":2394429763594,"id":3287,"parentId":3207,"tags":{},"startTime":1780887398311,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":49,"timestamp":2394429821677,"id":3388,"parentId":3207,"tags":{},"startTime":1780887398369,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":62192,"timestamp":2394429760003,"id":3207,"parentId":2606,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/prepareCustom.js","layer":"app-pages-browser"},"startTime":1780887398307,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":58621,"timestamp":2394429763584,"id":3286,"parentId":3206,"tags":{},"startTime":1780887398311,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":32,"timestamp":2394429822209,"id":3389,"parentId":3206,"tags":{},"startTime":1780887398369,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":62499,"timestamp":2394429759953,"id":3206,"parentId":2606,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/cartesian/prepareCustom.js","layer":"app-pages-browser"},"startTime":1780887398307,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":58953,"timestamp":2394429763504,"id":3279,"parentId":3199,"tags":{},"startTime":1780887398311,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":56,"timestamp":2394429822461,"id":3390,"parentId":3199,"tags":{},"startTime":1780887398370,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":63430,"timestamp":2394429759539,"id":3199,"parentId":2594,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/EffectPolyline.js","layer":"app-pages-browser"},"startTime":1780887398307,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":59318,"timestamp":2394429763656,"id":3291,"parentId":3211,"tags":{},"startTime":1780887398311,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":129,"timestamp":2394429822978,"id":3391,"parentId":3211,"tags":{},"startTime":1780887398370,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":63370,"timestamp":2394429760255,"id":3211,"parentId":2613,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/forceHelper.js","layer":"app-pages-browser"},"startTime":1780887398307,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":59964,"timestamp":2394429763668,"id":3292,"parentId":3212,"tags":{},"startTime":1780887398311,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":47,"timestamp":2394429823647,"id":3392,"parentId":3212,"tags":{},"startTime":1780887398371,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":63983,"timestamp":2394429760301,"id":3212,"parentId":2613,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/multipleGraphEdgeHelper.js","layer":"app-pages-browser"},"startTime":1780887398307,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":60680,"timestamp":2394429763610,"id":3288,"parentId":3208,"tags":{},"startTime":1780887398311,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":42,"timestamp":2394429824294,"id":3393,"parentId":3208,"tags":{},"startTime":1780887398371,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":64394,"timestamp":2394429760112,"id":3208,"parentId":2606,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/single/prepareCustom.js","layer":"app-pages-browser"},"startTime":1780887398307,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":60891,"timestamp":2394429763620,"id":3289,"parentId":3209,"tags":{},"startTime":1780887398311,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":29,"timestamp":2394429824514,"id":3394,"parentId":3209,"tags":{},"startTime":1780887398372,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":64498,"timestamp":2394429760163,"id":3209,"parentId":2606,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/calendar/prepareCustom.js","layer":"app-pages-browser"},"startTime":1780887398307,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":61035,"timestamp":2394429763630,"id":3290,"parentId":3210,"tags":{},"startTime":1780887398311,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":29,"timestamp":2394429824667,"id":3395,"parentId":3210,"tags":{},"startTime":1780887398372,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":64963,"timestamp":2394429760209,"id":3210,"parentId":2606,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/polar/prepareCustom.js","layer":"app-pages-browser"},"startTime":1780887398307,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":61498,"timestamp":2394429763703,"id":3295,"parentId":3215,"tags":{},"startTime":1780887398311,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":76,"timestamp":2394429825212,"id":3396,"parentId":3215,"tags":{},"startTime":1780887398372,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":65065,"timestamp":2394429760540,"id":3215,"parentId":2633,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/scale/Scale.js","layer":"app-pages-browser"},"startTime":1780887398308,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":61936,"timestamp":2394429763681,"id":3293,"parentId":3213,"tags":{},"startTime":1780887398311,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":61,"timestamp":2394429825622,"id":3397,"parentId":3213,"tags":{},"startTime":1780887398373,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":66028,"timestamp":2394429760444,"id":3213,"parentId":2615,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/adjustEdge.js","layer":"app-pages-browser"},"startTime":1780887398308,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":62767,"timestamp":2394429763714,"id":3296,"parentId":3216,"tags":{},"startTime":1780887398311,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":46,"timestamp":2394429826487,"id":3398,"parentId":3216,"tags":{},"startTime":1780887398374,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":71985,"timestamp":2394429760586,"id":3216,"parentId":2633,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/scale/Log.js","layer":"app-pages-browser"},"startTime":1780887398308,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":68912,"timestamp":2394429763736,"id":3298,"parentId":3218,"tags":{},"startTime":1780887398311,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":47,"timestamp":2394429832662,"id":3399,"parentId":3218,"tags":{},"startTime":1780887398380,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":74403,"timestamp":2394429760683,"id":3218,"parentId":2634,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/model/referHelper.js","layer":"app-pages-browser"},"startTime":1780887398308,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":71355,"timestamp":2394429763747,"id":3299,"parentId":3219,"tags":{},"startTime":1780887398311,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":39,"timestamp":2394429835110,"id":3400,"parentId":3219,"tags":{},"startTime":1780887398382,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":75145,"timestamp":2394429760729,"id":3219,"parentId":2617,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/sunburst/SunburstPiece.js","layer":"app-pages-browser"},"startTime":1780887398308,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":72128,"timestamp":2394429763757,"id":3300,"parentId":3220,"tags":{},"startTime":1780887398311,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":30,"timestamp":2394429835892,"id":3401,"parentId":3220,"tags":{},"startTime":1780887398383,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":75407,"timestamp":2394429760777,"id":3220,"parentId":2741,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/GestureMgr.js","layer":"app-pages-browser"},"startTime":1780887398308,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":72425,"timestamp":2394429763767,"id":3301,"parentId":3221,"tags":{},"startTime":1780887398311,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":26,"timestamp":2394429836198,"id":3402,"parentId":3221,"tags":{},"startTime":1780887398383,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":75476,"timestamp":2394429760824,"id":3221,"parentId":2647,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/Gradient.js","layer":"app-pages-browser"},"startTime":1780887398308,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":72581,"timestamp":2394429763726,"id":3297,"parentId":3217,"tags":{},"startTime":1780887398311,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":31,"timestamp":2394429836311,"id":3403,"parentId":3217,"tags":{},"startTime":1780887398383,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":77057,"timestamp":2394429760632,"id":3217,"parentId":2633,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/scaleRawExtentInfo.js","layer":"app-pages-browser"},"startTime":1780887398308,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":73913,"timestamp":2394429763810,"id":3302,"parentId":3222,"tags":{},"startTime":1780887398311,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":35,"timestamp":2394429837732,"id":3404,"parentId":3222,"tags":{},"startTime":1780887398385,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":77106,"timestamp":2394429760870,"id":3222,"parentId":2738,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/contain/polygon.js","layer":"app-pages-browser"},"startTime":1780887398308,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":74136,"timestamp":2394429763850,"id":3305,"parentId":3225,"tags":{},"startTime":1780887398311,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":29,"timestamp":2394429837993,"id":3405,"parentId":3225,"tags":{},"startTime":1780887398385,"traceId":"9b70e6dfdb6b3605"}] +[{"name":"build-module-js","duration":77664,"timestamp":2394429761012,"id":3225,"parentId":2761,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/WeakMap.js","layer":"app-pages-browser"},"startTime":1780887398308,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":74933,"timestamp":2394429763824,"id":3303,"parentId":3223,"tags":{},"startTime":1780887398311,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":54,"timestamp":2394429838774,"id":3406,"parentId":3223,"tags":{},"startTime":1780887398386,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":78348,"timestamp":2394429760913,"id":3223,"parentId":2642,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/tool/transformPath.js","layer":"app-pages-browser"},"startTime":1780887398308,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":75419,"timestamp":2394429763861,"id":3306,"parentId":3226,"tags":{},"startTime":1780887398311,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":33,"timestamp":2394429839287,"id":3407,"parentId":3226,"tags":{},"startTime":1780887398386,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":78531,"timestamp":2394429761056,"id":3226,"parentId":2741,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/mixin/Draggable.js","layer":"app-pages-browser"},"startTime":1780887398308,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":75759,"timestamp":2394429763838,"id":3304,"parentId":3224,"tags":{},"startTime":1780887398311,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":33,"timestamp":2394429839605,"id":3408,"parentId":3224,"tags":{},"startTime":1780887398387,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":79546,"timestamp":2394429760966,"id":3224,"parentId":2743,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/curve.js","layer":"app-pages-browser"},"startTime":1780887398308,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":76651,"timestamp":2394429763872,"id":3307,"parentId":3227,"tags":{},"startTime":1780887398311,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":32,"timestamp":2394429840529,"id":3409,"parentId":3227,"tags":{},"startTime":1780887398388,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":80053,"timestamp":2394429761102,"id":3227,"parentId":2868,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/tool/convertPath.js","layer":"app-pages-browser"},"startTime":1780887398308,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":77269,"timestamp":2394429763897,"id":3308,"parentId":3228,"tags":{},"startTime":1780887398311,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":30,"timestamp":2394429841173,"id":3410,"parentId":3228,"tags":{},"startTime":1780887398388,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":80202,"timestamp":2394429761147,"id":3228,"parentId":2873,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/helper/poly.js","layer":"app-pages-browser"},"startTime":1780887398308,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":77449,"timestamp":2394429763907,"id":3309,"parentId":3229,"tags":{},"startTime":1780887398311,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":26,"timestamp":2394429841361,"id":3411,"parentId":3229,"tags":{},"startTime":1780887398388,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":80442,"timestamp":2394429761201,"id":3229,"parentId":2874,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/helper/roundRect.js","layer":"app-pages-browser"},"startTime":1780887398308,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":77692,"timestamp":2394429763960,"id":3313,"parentId":3233,"tags":{},"startTime":1780887398311,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":26,"timestamp":2394429841658,"id":3412,"parentId":3233,"tags":{},"startTime":1780887398389,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":80371,"timestamp":2394429761400,"id":3233,"parentId":2887,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/tool/parseXML.js","layer":"app-pages-browser"},"startTime":1780887398308,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":77857,"timestamp":2394429763919,"id":3310,"parentId":3230,"tags":{},"startTime":1780887398311,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":35,"timestamp":2394429841779,"id":3413,"parentId":3230,"tags":{},"startTime":1780887398389,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":81175,"timestamp":2394429761247,"id":3230,"parentId":2870,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/helper/roundSector.js","layer":"app-pages-browser"},"startTime":1780887398308,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":78479,"timestamp":2394429763949,"id":3311,"parentId":3231,"tags":{},"startTime":1780887398311,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":31,"timestamp":2394429842432,"id":3414,"parentId":3231,"tags":{},"startTime":1780887398389,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":81880,"timestamp":2394429761295,"id":3231,"parentId":2868,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/tool/dividePath.js","layer":"app-pages-browser"},"startTime":1780887398308,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":79212,"timestamp":2394429763968,"id":3315,"parentId":3235,"tags":{},"startTime":1780887398311,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":23,"timestamp":2394429843184,"id":3415,"parentId":3235,"tags":{},"startTime":1780887398390,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":81808,"timestamp":2394429761490,"id":3235,"parentId":2906,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/contain/line.js","layer":"app-pages-browser"},"startTime":1780887398309,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":79338,"timestamp":2394429763964,"id":3314,"parentId":3234,"tags":{},"startTime":1780887398311,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":38,"timestamp":2394429843305,"id":3416,"parentId":3234,"tags":{},"startTime":1780887398390,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":83312,"timestamp":2394429761446,"id":3234,"parentId":2905,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/animation/Animator.js","layer":"app-pages-browser"},"startTime":1780887398309,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":80794,"timestamp":2394429763971,"id":3316,"parentId":3236,"tags":{},"startTime":1780887398311,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":24,"timestamp":2394429844770,"id":3417,"parentId":3236,"tags":{},"startTime":1780887398392,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":83357,"timestamp":2394429761534,"id":3236,"parentId":2906,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/contain/cubic.js","layer":"app-pages-browser"},"startTime":1780887398309,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":80939,"timestamp":2394429763956,"id":3312,"parentId":3232,"tags":{},"startTime":1780887398311,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":38,"timestamp":2394429844899,"id":3418,"parentId":3232,"tags":{},"startTime":1780887398392,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":85067,"timestamp":2394429761338,"id":3232,"parentId":2887,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/tool/parseSVG.js","layer":"app-pages-browser"},"startTime":1780887398308,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":82428,"timestamp":2394429763983,"id":3319,"parentId":3239,"tags":{},"startTime":1780887398311,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":25,"timestamp":2394429846416,"id":3419,"parentId":3239,"tags":{},"startTime":1780887398393,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":84859,"timestamp":2394429761663,"id":3239,"parentId":2906,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/contain/windingLine.js","layer":"app-pages-browser"},"startTime":1780887398309,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":82552,"timestamp":2394429763975,"id":3317,"parentId":3237,"tags":{},"startTime":1780887398311,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":24,"timestamp":2394429846531,"id":3420,"parentId":3237,"tags":{},"startTime":1780887398394,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":85057,"timestamp":2394429761578,"id":3237,"parentId":2906,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/contain/quadratic.js","layer":"app-pages-browser"},"startTime":1780887398309,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":82660,"timestamp":2394429763979,"id":3318,"parentId":3238,"tags":{},"startTime":1780887398311,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":43,"timestamp":2394429846642,"id":3421,"parentId":3238,"tags":{},"startTime":1780887398394,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":85166,"timestamp":2394429761619,"id":3238,"parentId":2906,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/contain/arc.js","layer":"app-pages-browser"},"startTime":1780887398309,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":82799,"timestamp":2394429763990,"id":3320,"parentId":3240,"tags":{},"startTime":1780887398311,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":25,"timestamp":2394429846792,"id":3422,"parentId":3240,"tags":{},"startTime":1780887398394,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":85391,"timestamp":2394429761705,"id":3240,"parentId":2907,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/SVGPathRebuilder.js","layer":"app-pages-browser"},"startTime":1780887398309,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":83107,"timestamp":2394429763993,"id":3321,"parentId":3241,"tags":{},"startTime":1780887398311,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":85,"timestamp":2394429847103,"id":3423,"parentId":3241,"tags":{},"startTime":1780887398394,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":85845,"timestamp":2394429761746,"id":3241,"parentId":2907,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/mapStyleToAttrs.js","layer":"app-pages-browser"},"startTime":1780887398309,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":83598,"timestamp":2394429764001,"id":3323,"parentId":3243,"tags":{},"startTime":1780887398311,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":29,"timestamp":2394429847604,"id":3424,"parentId":3243,"tags":{},"startTime":1780887398395,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":86098,"timestamp":2394429761839,"id":3243,"parentId":2907,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/cssEmphasis.js","layer":"app-pages-browser"},"startTime":1780887398309,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":84278,"timestamp":2394429763691,"id":3294,"parentId":3214,"tags":{},"startTime":1780887398311,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":27,"timestamp":2394429847974,"id":3425,"parentId":3214,"tags":{},"startTime":1780887398395,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":88528,"timestamp":2394429760489,"id":3214,"parentId":2615,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/graph/graphHelper.js","layer":"app-pages-browser"},"startTime":1780887398308,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":85050,"timestamp":2394429763997,"id":3322,"parentId":3242,"tags":{},"startTime":1780887398311,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":47,"timestamp":2394429849056,"id":3426,"parentId":3242,"tags":{},"startTime":1780887398396,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":88278,"timestamp":2394429761792,"id":3242,"parentId":2907,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/cssAnimation.js","layer":"app-pages-browser"},"startTime":1780887398309,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":99286,"timestamp":2394429762939,"id":3258,"parentId":3178,"tags":{},"startTime":1780887398310,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":41,"timestamp":2394429862247,"id":3427,"parentId":3178,"tags":{},"startTime":1780887398409,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":105109,"timestamp":2394429758301,"id":3178,"parentId":2377,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/visualMap/visualMapAction.js","layer":"app-pages-browser"},"startTime":1780887398305,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":93241,"timestamp":2394429770190,"id":3336,"parentId":3327,"tags":{},"startTime":1780887398317,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":54,"timestamp":2394429863441,"id":3428,"parentId":3327,"tags":{},"startTime":1780887398411,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":94092,"timestamp":2394429769839,"id":3327,"parentId":2921,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/domapi.js","layer":"app-pages-browser"},"startTime":1780887398317,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":93744,"timestamp":2394429770197,"id":3337,"parentId":3328,"tags":{},"startTime":1780887398317,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":31,"timestamp":2394429863946,"id":3429,"parentId":3328,"tags":{},"startTime":1780887398411,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":94320,"timestamp":2394429769889,"id":3328,"parentId":2928,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/polar/RadiusAxis.js","layer":"app-pages-browser"},"startTime":1780887398317,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":94015,"timestamp":2394429770200,"id":3338,"parentId":3329,"tags":{},"startTime":1780887398317,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":27,"timestamp":2394429864220,"id":3430,"parentId":3329,"tags":{},"startTime":1780887398411,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":94421,"timestamp":2394429769940,"id":3329,"parentId":2926,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/parallel/ParallelAxis.js","layer":"app-pages-browser"},"startTime":1780887398317,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":94180,"timestamp":2394429770185,"id":3335,"parentId":3326,"tags":{},"startTime":1780887398317,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":30,"timestamp":2394429864371,"id":3431,"parentId":3326,"tags":{},"startTime":1780887398411,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":94789,"timestamp":2394429769730,"id":3326,"parentId":2888,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/fix/diaoyuIsland.js","layer":"app-pages-browser"},"startTime":1780887398317,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":94498,"timestamp":2394429770204,"id":3339,"parentId":3330,"tags":{},"startTime":1780887398317,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":26,"timestamp":2394429864707,"id":3432,"parentId":3330,"tags":{},"startTime":1780887398412,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":94847,"timestamp":2394429769996,"id":3330,"parentId":2929,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/single/SingleAxis.js","layer":"app-pages-browser"},"startTime":1780887398317,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":94669,"timestamp":2394429770179,"id":3334,"parentId":3325,"tags":{},"startTime":1780887398317,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":29,"timestamp":2394429864853,"id":3433,"parentId":3325,"tags":{},"startTime":1780887398412,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":95601,"timestamp":2394429769632,"id":3325,"parentId":2888,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/fix/nanhai.js","layer":"app-pages-browser"},"startTime":1780887398317,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":95149,"timestamp":2394429770206,"id":3340,"parentId":3331,"tags":{},"startTime":1780887398317,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":29,"timestamp":2394429865359,"id":3434,"parentId":3331,"tags":{},"startTime":1780887398412,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":95495,"timestamp":2394429770052,"id":3331,"parentId":2917,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/helper/interactionMutex.js","layer":"app-pages-browser"},"startTime":1780887398317,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":95349,"timestamp":2394429770208,"id":3341,"parentId":3332,"tags":{},"startTime":1780887398317,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":31,"timestamp":2394429865562,"id":3435,"parentId":3332,"tags":{},"startTime":1780887398413,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":95790,"timestamp":2394429770103,"id":3332,"parentId":2928,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/polar/AngleAxis.js","layer":"app-pages-browser"},"startTime":1780887398317,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":109458,"timestamp":2394429770161,"id":3333,"parentId":3324,"tags":{},"startTime":1780887398317,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":59,"timestamp":2394429879637,"id":3436,"parentId":3324,"tags":{},"startTime":1780887398427,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":110717,"timestamp":2394429769518,"id":3324,"parentId":2888,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/geo/fix/textCoord.js","layer":"app-pages-browser"},"startTime":1780887398317,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":109424,"timestamp":2394429770945,"id":3345,"parentId":3342,"tags":{},"startTime":1780887398318,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":30,"timestamp":2394429880378,"id":3437,"parentId":3342,"tags":{},"startTime":1780887398427,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":110241,"timestamp":2394429770572,"id":3342,"parentId":2930,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/core/fourPointsTransform.js","layer":"app-pages-browser"},"startTime":1780887398318,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":109945,"timestamp":2394429770957,"id":3347,"parentId":3344,"tags":{},"startTime":1780887398318,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":35,"timestamp":2394429880907,"id":3438,"parentId":3344,"tags":{},"startTime":1780887398428,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":111034,"timestamp":2394429770678,"id":3344,"parentId":3029,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/component/dataZoom/AxisProxy.js","layer":"app-pages-browser"},"startTime":1780887398318,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":119952,"timestamp":2394429770952,"id":3346,"parentId":3343,"tags":{},"startTime":1780887398318,"traceId":"9b70e6dfdb6b3605"}] +[{"name":"next-swc-loader","duration":32,"timestamp":2394429890918,"id":3439,"parentId":3343,"tags":{},"startTime":1780887398438,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":120606,"timestamp":2394429770629,"id":3343,"parentId":3026,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/coord/cartesian/Cartesian.js","layer":"app-pages-browser"},"startTime":1780887398318,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":1812,"timestamp":2394429892173,"id":3442,"parentId":3440,"tags":{},"startTime":1780887398439,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":41,"timestamp":2394429894002,"id":3456,"parentId":3440,"tags":{},"startTime":1780887398441,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":3581,"timestamp":2394429891864,"id":3440,"parentId":3188,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/Graph.js","layer":"app-pages-browser"},"startTime":1780887398439,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":3408,"timestamp":2394429892185,"id":3443,"parentId":3441,"tags":{},"startTime":1780887398439,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":36,"timestamp":2394429895607,"id":3457,"parentId":3441,"tags":{},"startTime":1780887398443,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":4184,"timestamp":2394429891957,"id":3441,"parentId":3172,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/data/helper/linkSeriesData.js","layer":"app-pages-browser"},"startTime":1780887398439,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":3196,"timestamp":2394429892993,"id":3447,"parentId":3445,"tags":{},"startTime":1780887398440,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":30,"timestamp":2394429896194,"id":3458,"parentId":3445,"tags":{},"startTime":1780887398443,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":3536,"timestamp":2394429892943,"id":3445,"parentId":3228,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/graphic/helper/smoothBezier.js","layer":"app-pages-browser"},"startTime":1780887398440,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":3499,"timestamp":2394429892987,"id":3446,"parentId":3444,"tags":{},"startTime":1780887398440,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":27,"timestamp":2394429896488,"id":3459,"parentId":3444,"tags":{},"startTime":1780887398444,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":3831,"timestamp":2394429892899,"id":3444,"parentId":3197,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/echarts/lib/chart/helper/LinePath.js","layer":"app-pages-browser"},"startTime":1780887398440,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":5867,"timestamp":2394429893370,"id":3455,"parentId":3451,"tags":{},"startTime":1780887398440,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":36,"timestamp":2394429899247,"id":3460,"parentId":3451,"tags":{},"startTime":1780887398446,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":6121,"timestamp":2394429893316,"id":3451,"parentId":3243,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/svg/cssClassId.js","layer":"app-pages-browser"},"startTime":1780887398440,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":6094,"timestamp":2394429893357,"id":3453,"parentId":3449,"tags":{},"startTime":1780887398440,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":27,"timestamp":2394429899456,"id":3461,"parentId":3449,"tags":{},"startTime":1780887398447,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":6483,"timestamp":2394429893247,"id":3449,"parentId":3234,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/animation/cubicEasing.js","layer":"app-pages-browser"},"startTime":1780887398440,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":6836,"timestamp":2394429893362,"id":3454,"parentId":3450,"tags":{},"startTime":1780887398440,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":28,"timestamp":2394429900203,"id":3462,"parentId":3450,"tags":{},"startTime":1780887398447,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":7361,"timestamp":2394429893282,"id":3450,"parentId":3234,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/animation/easing.js","layer":"app-pages-browser"},"startTime":1780887398440,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":7301,"timestamp":2394429893352,"id":3452,"parentId":3448,"tags":{},"startTime":1780887398440,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":26,"timestamp":2394429900656,"id":3463,"parentId":3448,"tags":{},"startTime":1780887398448,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":7668,"timestamp":2394429893205,"id":3448,"parentId":3234,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/zrender/lib/animation/Clip.js","layer":"app-pages-browser"},"startTime":1780887398440,"traceId":"9b70e6dfdb6b3605"},{"name":"read-resource","duration":967,"timestamp":2394429910784,"id":3465,"parentId":3464,"tags":{},"startTime":1780887398458,"traceId":"9b70e6dfdb6b3605"},{"name":"next-swc-loader","duration":91,"timestamp":2394429911787,"id":3466,"parentId":3464,"tags":{},"startTime":1780887398459,"traceId":"9b70e6dfdb6b3605"},{"name":"build-module-js","duration":4961,"timestamp":2394429910682,"id":3464,"parentId":2924,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/buffer/index.js","layer":"app-pages-browser"},"startTime":1780887398458,"traceId":"9b70e6dfdb6b3605"},{"name":"add-entry","duration":2373557,"timestamp":2394427542382,"id":965,"parentId":948,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2F(auth)%2Fstock%2F%5Bcode%5D%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1780887396089,"traceId":"9b70e6dfdb6b3605"},{"name":"make","duration":2374591,"timestamp":2394427541528,"id":948,"parentId":947,"tags":{},"startTime":1780887396089,"traceId":"9b70e6dfdb6b3605"},{"name":"chunk-graph","duration":9707,"timestamp":2394429967244,"id":3468,"parentId":3467,"tags":{},"startTime":1780887398514,"traceId":"9b70e6dfdb6b3605"},{"name":"optimize-modules","duration":12,"timestamp":2394429977013,"id":3470,"parentId":3467,"tags":{},"startTime":1780887398524,"traceId":"9b70e6dfdb6b3605"},{"name":"optimize-chunks","duration":7929,"timestamp":2394429978974,"id":3472,"parentId":3467,"tags":{},"startTime":1780887398526,"traceId":"9b70e6dfdb6b3605"},{"name":"optimize-tree","duration":16,"timestamp":2394429986959,"id":3473,"parentId":3467,"tags":{},"startTime":1780887398534,"traceId":"9b70e6dfdb6b3605"},{"name":"optimize-chunk-modules","duration":30305,"timestamp":2394429987036,"id":3474,"parentId":3467,"tags":{},"startTime":1780887398534,"traceId":"9b70e6dfdb6b3605"},{"name":"optimize","duration":40382,"timestamp":2394429976988,"id":3469,"parentId":3467,"tags":{},"startTime":1780887398524,"traceId":"9b70e6dfdb6b3605"},{"name":"module-hash","duration":17351,"timestamp":2394430027403,"id":3475,"parentId":3467,"tags":{},"startTime":1780887398574,"traceId":"9b70e6dfdb6b3605"},{"name":"code-generation","duration":608375,"timestamp":2394430044791,"id":3476,"parentId":3467,"tags":{},"startTime":1780887398592,"traceId":"9b70e6dfdb6b3605"},{"name":"hash","duration":7840,"timestamp":2394430658031,"id":3477,"parentId":3467,"tags":{},"startTime":1780887399205,"traceId":"9b70e6dfdb6b3605"},{"name":"code-generation-jobs","duration":312,"timestamp":2394430665869,"id":3478,"parentId":3467,"tags":{},"startTime":1780887399213,"traceId":"9b70e6dfdb6b3605"},{"name":"module-assets","duration":257,"timestamp":2394430666147,"id":3479,"parentId":3467,"tags":{},"startTime":1780887399213,"traceId":"9b70e6dfdb6b3605"},{"name":"create-chunk-assets","duration":6456,"timestamp":2394430666411,"id":3480,"parentId":3467,"tags":{},"startTime":1780887399213,"traceId":"9b70e6dfdb6b3605"},{"name":"NextJsBuildManifest-generateClientManifest","duration":853,"timestamp":2394430682231,"id":3482,"parentId":947,"tags":{},"startTime":1780887399229,"traceId":"9b70e6dfdb6b3605"},{"name":"NextJsBuildManifest-createassets","duration":1392,"timestamp":2394430681700,"id":3481,"parentId":947,"tags":{},"startTime":1780887399229,"traceId":"9b70e6dfdb6b3605"},{"name":"minify-js","duration":248117,"timestamp":2394430843384,"id":3485,"parentId":3483,"tags":{"name":"static/chunks/main-app-7d7e5d1021afd90c.js","cache":"MISS"},"startTime":1780887399390,"traceId":"9b70e6dfdb6b3605"},{"name":"minify-js","duration":247619,"timestamp":2394430843914,"id":3486,"parentId":3483,"tags":{"name":"static/chunks/app/_not-found/page-b80a7c484a1a45e7.js","cache":"MISS"},"startTime":1780887399391,"traceId":"9b70e6dfdb6b3605"},{"name":"minify-js","duration":247247,"timestamp":2394430844301,"id":3488,"parentId":3483,"tags":{"name":"static/chunks/pages/_error-7ba65e1336b92748.js","cache":"MISS"},"startTime":1780887399391,"traceId":"9b70e6dfdb6b3605"},{"name":"minify-js","duration":247420,"timestamp":2394430844135,"id":3487,"parentId":3483,"tags":{"name":"static/chunks/pages/_app-72b849fbd24ac258.js","cache":"MISS"},"startTime":1780887399391,"traceId":"9b70e6dfdb6b3605"},{"name":"minify-js","duration":247159,"timestamp":2394430844407,"id":3489,"parentId":3483,"tags":{"name":"static/chunks/app/layout-9da89db040cc7fe7.js","cache":"MISS"},"startTime":1780887399391,"traceId":"9b70e6dfdb6b3605"},{"name":"minify-js","duration":244267,"timestamp":2394430847346,"id":3491,"parentId":3483,"tags":{"name":"static/chunks/app/(auth)/layout-00c8b5ffc11909fc.js","cache":"MISS"},"startTime":1780887399394,"traceId":"9b70e6dfdb6b3605"},{"name":"minify-js","duration":241976,"timestamp":2394430849657,"id":3493,"parentId":3483,"tags":{"name":"static/chunks/app/(auth)/admin/page-d0e73ac1163fe810.js","cache":"MISS"},"startTime":1780887399397,"traceId":"9b70e6dfdb6b3605"},{"name":"minify-js","duration":245549,"timestamp":2394430846155,"id":3490,"parentId":3483,"tags":{"name":"static/chunks/app/(auth)/dashboard/page-7c42cdee67f7ba1f.js","cache":"MISS"},"startTime":1780887399393,"traceId":"9b70e6dfdb6b3605"},{"name":"minify-js","duration":243239,"timestamp":2394430848685,"id":3492,"parentId":3483,"tags":{"name":"static/chunks/app/(auth)/recommendations/page-04ad0514ad59d914.js","cache":"MISS"},"startTime":1780887399396,"traceId":"9b70e6dfdb6b3605"},{"name":"minify-js","duration":242159,"timestamp":2394430849805,"id":3494,"parentId":3483,"tags":{"name":"static/chunks/app/(auth)/chat/page-2ee86107f57d5938.js","cache":"MISS"},"startTime":1780887399397,"traceId":"9b70e6dfdb6b3605"},{"name":"minify-js","duration":241918,"timestamp":2394430850074,"id":3495,"parentId":3483,"tags":{"name":"static/chunks/app/(auth)/sectors/[name]/page-f200c8a32f30483d.js","cache":"MISS"},"startTime":1780887399397,"traceId":"9b70e6dfdb6b3605"},{"name":"minify-js","duration":241325,"timestamp":2394430850686,"id":3496,"parentId":3483,"tags":{"name":"static/chunks/app/(auth)/admin/users/page-133cb4455ae7ff45.js","cache":"MISS"},"startTime":1780887399398,"traceId":"9b70e6dfdb6b3605"},{"name":"minify-js","duration":238936,"timestamp":2394430853109,"id":3499,"parentId":3483,"tags":{"name":"static/chunks/app/(auth)/sentiment/page-23ada87205189134.js","cache":"MISS"},"startTime":1780887399400,"traceId":"9b70e6dfdb6b3605"},{"name":"minify-js","duration":241239,"timestamp":2394430850842,"id":3497,"parentId":3483,"tags":{"name":"static/chunks/app/(auth)/sectors/page-af480a7c6de07a7d.js","cache":"MISS"},"startTime":1780887399398,"traceId":"9b70e6dfdb6b3605"},{"name":"minify-js","duration":240311,"timestamp":2394430851821,"id":3498,"parentId":3483,"tags":{"name":"static/chunks/app/(auth)/stock/[code]/page-2af464be6f422116.js","cache":"MISS"},"startTime":1780887399399,"traceId":"9b70e6dfdb6b3605"},{"name":"minify-js","duration":237538,"timestamp":2394430854617,"id":3502,"parentId":3483,"tags":{"name":"static/chunks/app/(public)/login/page-0b6bac111efdebf4.js","cache":"MISS"},"startTime":1780887399402,"traceId":"9b70e6dfdb6b3605"},{"name":"minify-js","duration":238552,"timestamp":2394430853624,"id":3500,"parentId":3483,"tags":{"name":"static/chunks/app/(auth)/admin/invites/page-f0d0e84e699f2a8e.js","cache":"MISS"},"startTime":1780887399401,"traceId":"9b70e6dfdb6b3605"},{"name":"minify-js","duration":236659,"timestamp":2394430855524,"id":3503,"parentId":3483,"tags":{"name":"static/chunks/app/(public)/layout-d8307c143f9d6e89.js","cache":"MISS"},"startTime":1780887399403,"traceId":"9b70e6dfdb6b3605"},{"name":"minify-js","duration":236607,"timestamp":2394430855586,"id":3504,"parentId":3483,"tags":{"name":"static/chunks/app/(public)/page-6a015fcfb504f889.js","cache":"MISS"},"startTime":1780887399403,"traceId":"9b70e6dfdb6b3605"},{"name":"minify-js","duration":238017,"timestamp":2394430854209,"id":3501,"parentId":3483,"tags":{"name":"static/chunks/app/(auth)/watchlists/page-5728882e0ff74783.js","cache":"MISS"},"startTime":1780887399401,"traceId":"9b70e6dfdb6b3605"},{"name":"minify-js","duration":236582,"timestamp":2394430855655,"id":3505,"parentId":3483,"tags":{"name":"static/chunks/webpack-76aa9cbbdedb6a49.js","cache":"MISS"},"startTime":1780887399403,"traceId":"9b70e6dfdb6b3605"},{"name":"minify-js","duration":444733,"timestamp":2394430699233,"id":3484,"parentId":3483,"tags":{"name":"static/chunks/main-b28cc01a35d4249a.js","cache":"MISS"},"startTime":1780887399246,"traceId":"9b70e6dfdb6b3605"},{"name":"minify-js","duration":245113,"timestamp":2394430924527,"id":3509,"parentId":3483,"tags":{"name":"static/chunks/648-737196aebda2b095.js","cache":"MISS"},"startTime":1780887399472,"traceId":"9b70e6dfdb6b3605"},{"name":"minify-js","duration":371451,"timestamp":2394430923806,"id":3507,"parentId":3483,"tags":{"name":"static/chunks/framework-f66176bb897dc684.js","cache":"MISS"},"startTime":1780887399471,"traceId":"9b70e6dfdb6b3605"},{"name":"minify-js","duration":368623,"timestamp":2394430926790,"id":3511,"parentId":3483,"tags":{"name":"server/middleware-react-loadable-manifest.js","cache":"MISS"},"startTime":1780887399474,"traceId":"9b70e6dfdb6b3605"},{"name":"minify-js","duration":368537,"timestamp":2394430926939,"id":3512,"parentId":3483,"tags":{"name":"static/DIAczInZnAiIi82P18FrS/_ssgManifest.js","cache":"MISS"},"startTime":1780887399474,"traceId":"9b70e6dfdb6b3605"},{"name":"minify-js","duration":368493,"timestamp":2394430927010,"id":3513,"parentId":3483,"tags":{"name":"server/middleware-build-manifest.js","cache":"MISS"},"startTime":1780887399474,"traceId":"9b70e6dfdb6b3605"},{"name":"minify-js","duration":368515,"timestamp":2394430927029,"id":3514,"parentId":3483,"tags":{"name":"static/DIAczInZnAiIi82P18FrS/_buildManifest.js","cache":"MISS"},"startTime":1780887399474,"traceId":"9b70e6dfdb6b3605"},{"name":"minify-js","duration":368551,"timestamp":2394430927048,"id":3515,"parentId":3483,"tags":{"name":"server/next-font-manifest.js","cache":"MISS"},"startTime":1780887399474,"traceId":"9b70e6dfdb6b3605"},{"name":"minify-js","duration":445553,"timestamp":2394430924876,"id":3510,"parentId":3483,"tags":{"name":"static/chunks/117-a8e886455f28924b.js","cache":"MISS"},"startTime":1780887399472,"traceId":"9b70e6dfdb6b3605"},{"name":"minify-js","duration":479905,"timestamp":2394430924183,"id":3508,"parentId":3483,"tags":{"name":"static/chunks/fd9d1056-04f4ef6e08ec3462.js","cache":"MISS"},"startTime":1780887399471,"traceId":"9b70e6dfdb6b3605"},{"name":"minify-js","duration":1468755,"timestamp":2394430855756,"id":3506,"parentId":3483,"tags":{"name":"static/chunks/614.a7cee7268dab0743.js","cache":"MISS"},"startTime":1780887399403,"traceId":"9b70e6dfdb6b3605"},{"name":"terser-webpack-plugin-optimize","duration":1640625,"timestamp":2394430683909,"id":3483,"parentId":947,"tags":{"compilationName":"client","swcMinify":true},"startTime":1780887399231,"traceId":"9b70e6dfdb6b3605"},{"name":"minify-css","duration":532848,"timestamp":2394432325085,"id":3517,"parentId":3516,"tags":{"file":"static/css/8ba591434daed0e3.css","cache":"MISS"},"startTime":1780887400872,"traceId":"9b70e6dfdb6b3605"},{"name":"css-minimizer-plugin","duration":533092,"timestamp":2394432324851,"id":3516,"parentId":947,"tags":{},"startTime":1780887400872,"traceId":"9b70e6dfdb6b3605"},{"name":"seal","duration":2930313,"timestamp":2394429941505,"id":3467,"parentId":947,"tags":{},"startTime":1780887398489,"traceId":"9b70e6dfdb6b3605"},{"name":"webpack-compilation","duration":5332745,"timestamp":2394427539245,"id":947,"parentId":944,"tags":{"name":"client"},"startTime":1780887396086,"traceId":"9b70e6dfdb6b3605"},{"name":"emit","duration":25412,"timestamp":2394432872166,"id":3518,"parentId":944,"tags":{},"startTime":1780887401419,"traceId":"9b70e6dfdb6b3605"},{"name":"webpack-close","duration":596679,"timestamp":2394432898942,"id":3519,"parentId":944,"tags":{"name":"client"},"startTime":1780887401446,"traceId":"9b70e6dfdb6b3605"},{"name":"webpack-generate-error-stats","duration":9137,"timestamp":2394433497537,"id":3520,"parentId":3519,"tags":{},"startTime":1780887402045,"traceId":"9b70e6dfdb6b3605"},{"name":"run-webpack-compiler","duration":6631333,"timestamp":2394426877409,"id":944,"parentId":943,"tags":{},"startTime":1780887395424,"traceId":"9b70e6dfdb6b3605"},{"name":"format-webpack-messages","duration":230,"timestamp":2394433508769,"id":3521,"parentId":943,"tags":{},"startTime":1780887402056,"traceId":"9b70e6dfdb6b3605"},{"name":"worker-main-client","duration":6631975,"timestamp":2394426877248,"id":943,"parentId":1,"tags":{},"startTime":1780887395424,"traceId":"9b70e6dfdb6b3605"},{"name":"verify-and-lint","duration":146084,"timestamp":2394433649583,"id":3525,"parentId":1,"tags":{},"startTime":1780887402197,"traceId":"9b70e6dfdb6b3605"},{"name":"verify-typescript-setup","duration":2459905,"timestamp":2394433647550,"id":3524,"parentId":1,"tags":{},"startTime":1780887402195,"traceId":"9b70e6dfdb6b3605"},{"name":"check-static-error-page","duration":2562,"timestamp":2394436124241,"id":3528,"parentId":3527,"tags":{},"startTime":1780887404671,"traceId":"9b70e6dfdb6b3605"},{"name":"check-page","duration":1637,"timestamp":2394436136317,"id":3529,"parentId":3527,"tags":{"page":"/_app"},"startTime":1780887404683,"traceId":"9b70e6dfdb6b3605"},{"name":"check-page","duration":948,"timestamp":2394436137017,"id":3531,"parentId":3527,"tags":{"page":"/_document"},"startTime":1780887404684,"traceId":"9b70e6dfdb6b3605"},{"name":"check-page","duration":1984,"timestamp":2394436136943,"id":3530,"parentId":3527,"tags":{"page":"/_error"},"startTime":1780887404684,"traceId":"9b70e6dfdb6b3605"},{"name":"is-page-static","duration":465953,"timestamp":2394436140039,"id":3549,"parentId":3533,"tags":{},"startTime":1780887404687,"traceId":"9b70e6dfdb6b3605"},{"name":"check-page","duration":468906,"timestamp":2394436137130,"id":3533,"parentId":3527,"tags":{"page":"/admin/invites"},"startTime":1780887404684,"traceId":"9b70e6dfdb6b3605"},{"name":"is-page-static","duration":467906,"timestamp":2394436140481,"id":3556,"parentId":3541,"tags":{},"startTime":1780887404688,"traceId":"9b70e6dfdb6b3605"},{"name":"check-page","duration":470998,"timestamp":2394436137408,"id":3541,"parentId":3527,"tags":{"page":"/sectors"},"startTime":1780887404684,"traceId":"9b70e6dfdb6b3605"},{"name":"is-page-static","duration":469785,"timestamp":2394436140161,"id":3551,"parentId":3537,"tags":{},"startTime":1780887404687,"traceId":"9b70e6dfdb6b3605"},{"name":"check-page","duration":472686,"timestamp":2394436137274,"id":3537,"parentId":3527,"tags":{"page":"/chat"},"startTime":1780887404684,"traceId":"9b70e6dfdb6b3605"},{"name":"is-page-static","duration":470821,"timestamp":2394436140526,"id":3557,"parentId":3544,"tags":{},"startTime":1780887404688,"traceId":"9b70e6dfdb6b3605"}] +[{"name":"check-page","duration":474070,"timestamp":2394436137453,"id":3544,"parentId":3527,"tags":{"page":"/watchlists"},"startTime":1780887404685,"traceId":"9b70e6dfdb6b3605"},{"name":"is-page-static","duration":474113,"timestamp":2394436140556,"id":3559,"parentId":3546,"tags":{},"startTime":1780887404688,"traceId":"9b70e6dfdb6b3605"},{"name":"check-page","duration":477208,"timestamp":2394436137482,"id":3546,"parentId":3527,"tags":{"page":"/"},"startTime":1780887404685,"traceId":"9b70e6dfdb6b3605"},{"name":"is-page-static","duration":481823,"timestamp":2394436139767,"id":3547,"parentId":3536,"tags":{},"startTime":1780887404687,"traceId":"9b70e6dfdb6b3605"},{"name":"check-page","duration":484377,"timestamp":2394436137256,"id":3536,"parentId":3527,"tags":{"page":"/api/chat/stream"},"startTime":1780887404684,"traceId":"9b70e6dfdb6b3605"},{"name":"is-page-static","duration":482711,"timestamp":2394436140547,"id":3558,"parentId":3545,"tags":{},"startTime":1780887404688,"traceId":"9b70e6dfdb6b3605"},{"name":"check-page","duration":485811,"timestamp":2394436137468,"id":3545,"parentId":3527,"tags":{"page":"/login"},"startTime":1780887404685,"traceId":"9b70e6dfdb6b3605"},{"name":"is-page-static","duration":500212,"timestamp":2394436140127,"id":3550,"parentId":3535,"tags":{},"startTime":1780887404687,"traceId":"9b70e6dfdb6b3605"},{"name":"check-page","duration":503124,"timestamp":2394436137236,"id":3535,"parentId":3527,"tags":{"page":"/admin/users"},"startTime":1780887404684,"traceId":"9b70e6dfdb6b3605"},{"name":"is-page-static","duration":500155,"timestamp":2394436140252,"id":3553,"parentId":3538,"tags":{},"startTime":1780887404687,"traceId":"9b70e6dfdb6b3605"},{"name":"check-page","duration":503063,"timestamp":2394436137350,"id":3538,"parentId":3527,"tags":{"page":"/dashboard"},"startTime":1780887404684,"traceId":"9b70e6dfdb6b3605"},{"name":"is-page-static","duration":499829,"timestamp":2394436140625,"id":3561,"parentId":3543,"tags":{},"startTime":1780887404688,"traceId":"9b70e6dfdb6b3605"},{"name":"check-page","duration":503055,"timestamp":2394436137439,"id":3543,"parentId":3527,"tags":{"page":"/stock/[code]"},"startTime":1780887404685,"traceId":"9b70e6dfdb6b3605"},{"name":"is-page-static","duration":500940,"timestamp":2394436140586,"id":3560,"parentId":3542,"tags":{},"startTime":1780887404688,"traceId":"9b70e6dfdb6b3605"},{"name":"check-page","duration":504118,"timestamp":2394436137424,"id":3542,"parentId":3527,"tags":{"page":"/sentiment"},"startTime":1780887404684,"traceId":"9b70e6dfdb6b3605"},{"name":"is-page-static","duration":515335,"timestamp":2394436139921,"id":3548,"parentId":3532,"tags":{},"startTime":1780887404687,"traceId":"9b70e6dfdb6b3605"},{"name":"check-page","duration":518259,"timestamp":2394436137036,"id":3532,"parentId":3527,"tags":{"page":"/_not-found"},"startTime":1780887404684,"traceId":"9b70e6dfdb6b3605"},{"name":"is-page-static","duration":519905,"timestamp":2394436140185,"id":3552,"parentId":3534,"tags":{},"startTime":1780887404687,"traceId":"9b70e6dfdb6b3605"},{"name":"check-page","duration":522914,"timestamp":2394436137204,"id":3534,"parentId":3527,"tags":{"page":"/admin"},"startTime":1780887404684,"traceId":"9b70e6dfdb6b3605"},{"name":"is-page-static","duration":520945,"timestamp":2394436140304,"id":3554,"parentId":3539,"tags":{},"startTime":1780887404687,"traceId":"9b70e6dfdb6b3605"},{"name":"check-page","duration":523914,"timestamp":2394436137373,"id":3539,"parentId":3527,"tags":{"page":"/recommendations"},"startTime":1780887404684,"traceId":"9b70e6dfdb6b3605"},{"name":"is-page-static","duration":528169,"timestamp":2394436140439,"id":3555,"parentId":3540,"tags":{},"startTime":1780887404688,"traceId":"9b70e6dfdb6b3605"},{"name":"check-page","duration":531248,"timestamp":2394436137393,"id":3540,"parentId":3527,"tags":{"page":"/sectors/[name]"},"startTime":1780887404684,"traceId":"9b70e6dfdb6b3605"},{"name":"static-check","duration":544775,"timestamp":2394436123881,"id":3527,"parentId":1,"tags":{},"startTime":1780887404671,"traceId":"9b70e6dfdb6b3605"},{"name":"load-dotenv","duration":14,"timestamp":2394436999866,"id":3566,"parentId":3565,"tags":{},"startTime":1780887405547,"traceId":"9b70e6dfdb6b3605"},{"name":"run-export-path-map","duration":292,"timestamp":2394437211774,"id":3567,"parentId":3565,"tags":{},"startTime":1780887405759,"traceId":"9b70e6dfdb6b3605"},{"name":"export-page","duration":162981,"timestamp":2394437213645,"id":3575,"parentId":3565,"tags":{"path":"/api/chat/stream"},"startTime":1780887405761,"traceId":"9b70e6dfdb6b3605"},{"name":"export-page","duration":169453,"timestamp":2394437213796,"id":3578,"parentId":3565,"tags":{"path":"/dashboard"},"startTime":1780887405761,"traceId":"9b70e6dfdb6b3605"},{"name":"export-page","duration":169798,"timestamp":2394437213496,"id":3573,"parentId":3565,"tags":{"path":"/watchlists"},"startTime":1780887405761,"traceId":"9b70e6dfdb6b3605"},{"name":"export-page","duration":169717,"timestamp":2394437213698,"id":3576,"parentId":3565,"tags":{"path":"/login"},"startTime":1780887405761,"traceId":"9b70e6dfdb6b3605"},{"name":"export-page","duration":169686,"timestamp":2394437213745,"id":3577,"parentId":3565,"tags":{"path":"/admin/users"},"startTime":1780887405761,"traceId":"9b70e6dfdb6b3605"},{"name":"export-page","duration":170157,"timestamp":2394437213288,"id":3572,"parentId":3565,"tags":{"path":"/chat"},"startTime":1780887405760,"traceId":"9b70e6dfdb6b3605"},{"name":"export-page","duration":172288,"timestamp":2394437213224,"id":3571,"parentId":3565,"tags":{"path":"/sectors"},"startTime":1780887405760,"traceId":"9b70e6dfdb6b3605"},{"name":"export-page","duration":171988,"timestamp":2394437213582,"id":3574,"parentId":3565,"tags":{"path":"/"},"startTime":1780887405761,"traceId":"9b70e6dfdb6b3605"},{"name":"export-page","duration":172458,"timestamp":2394437213190,"id":3570,"parentId":3565,"tags":{"path":"/admin/invites"},"startTime":1780887405760,"traceId":"9b70e6dfdb6b3605"},{"name":"export-page","duration":194868,"timestamp":2394437213127,"id":3569,"parentId":3565,"tags":{"path":"/500"},"startTime":1780887405760,"traceId":"9b70e6dfdb6b3605"},{"name":"export-page","duration":200208,"timestamp":2394437212939,"id":3568,"parentId":3565,"tags":{"path":"/404"},"startTime":1780887405760,"traceId":"9b70e6dfdb6b3605"},{"name":"export-page","duration":203480,"timestamp":2394437213894,"id":3582,"parentId":3565,"tags":{"path":"/recommendations"},"startTime":1780887405761,"traceId":"9b70e6dfdb6b3605"},{"name":"export-page","duration":203550,"timestamp":2394437213857,"id":3580,"parentId":3565,"tags":{"path":"/_not-found"},"startTime":1780887405761,"traceId":"9b70e6dfdb6b3605"},{"name":"export-page","duration":205170,"timestamp":2394437213876,"id":3581,"parentId":3565,"tags":{"path":"/admin"},"startTime":1780887405761,"traceId":"9b70e6dfdb6b3605"},{"name":"export-page","duration":205231,"timestamp":2394437213838,"id":3579,"parentId":3565,"tags":{"path":"/sentiment"},"startTime":1780887405761,"traceId":"9b70e6dfdb6b3605"},{"name":"next-export","duration":445727,"timestamp":2394436999364,"id":3565,"parentId":1,"tags":{},"startTime":1780887405546,"traceId":"9b70e6dfdb6b3605"},{"name":"move-exported-app-not-found-","duration":2584,"timestamp":2394437445713,"id":3583,"parentId":3564,"tags":{},"startTime":1780887405993,"traceId":"9b70e6dfdb6b3605"},{"name":"move-exported-page","duration":5500,"timestamp":2394437448372,"id":3584,"parentId":3564,"tags":{},"startTime":1780887405995,"traceId":"9b70e6dfdb6b3605"},{"name":"static-generation","duration":523304,"timestamp":2394436993534,"id":3564,"parentId":1,"tags":{},"startTime":1780887405541,"traceId":"9b70e6dfdb6b3605"},{"name":"node-file-trace-build","duration":7256323,"timestamp":2394436676805,"id":3563,"parentId":1,"tags":{"isTurbotrace":"false"},"startTime":1780887405224,"traceId":"9b70e6dfdb6b3605"},{"name":"apply-include-excludes","duration":1046,"timestamp":2394443933280,"id":3585,"parentId":1,"tags":{},"startTime":1780887412480,"traceId":"9b70e6dfdb6b3605"},{"name":"write-standalone-directory","duration":553832,"timestamp":2394443934524,"id":3586,"parentId":1,"tags":{},"startTime":1780887412482,"traceId":"9b70e6dfdb6b3605"},{"name":"print-tree-view","duration":4684,"timestamp":2394444489209,"id":3587,"parentId":1,"tags":{},"startTime":1780887413036,"traceId":"9b70e6dfdb6b3605"},{"name":"telemetry-flush","duration":32,"timestamp":2394444493901,"id":3588,"parentId":1,"tags":{},"startTime":1780887413041,"traceId":"9b70e6dfdb6b3605"},{"name":"next-build","duration":24860462,"timestamp":2394419633472,"id":1,"tags":{"buildMode":"default","isTurboBuild":"false","version":"14.2.35","isTurbopack":false,"has-custom-webpack-config":"false","use-build-worker":"true"},"startTime":1780887388181,"traceId":"9b70e6dfdb6b3605"}] diff --git a/frontend/src/app/(auth)/dashboard/page.tsx b/frontend/src/app/(auth)/dashboard/page.tsx index e4e5f762..361c93ed 100644 --- a/frontend/src/app/(auth)/dashboard/page.tsx +++ b/frontend/src/app/(auth)/dashboard/page.tsx @@ -170,6 +170,7 @@ export default function DashboardPage() { }, [clearScanTimeout]); const recommendations = data?.recommendations ?? []; + const latestScan = data?.latest_scan ?? null; const actionable = recommendations.filter((rec) => rec.action_plan === "可操作"); const watch = recommendations.filter((rec) => rec.action_plan === "重点关注"); const observe = recommendations.filter((rec) => !["可操作", "重点关注"].includes(rec.action_plan ?? "")); @@ -185,6 +186,7 @@ export default function DashboardPage() { ); const focusQueue = actionable.length ? actionable : watch.length ? watch : recommendations; + const scanTimeLabel = latestScan?.created_at ? formatScanTime(latestScan.created_at) : "暂无完成扫描"; if (loading) { return ( @@ -212,6 +214,9 @@ export default function DashboardPage() { 已收盘 )} + + 最近扫描 {scanTimeLabel} + @@ -246,6 +251,7 @@ export default function DashboardPage() { actionableCount={actionable.length} watchCount={watch.length} observeCount={observe.length} + latestScan={latestScan} /> @@ -255,6 +261,7 @@ export default function DashboardPage() { focusQueue={focusQueue.slice(0, 6)} actionableCount={actionable.length} watchCount={watch.length} + latestScan={latestScan} />
; @@ -297,6 +305,7 @@ function DecisionHero({ actionableCount: number; watchCount: number; observeCount: number; + latestScan: LatestResult["latest_scan"]; }) { const leadingSectors = sectors.slice(0, 3); @@ -349,14 +358,15 @@ function DecisionHero({
-
焦点标的
+
+
焦点标的
+
{latestScan?.created_at ? formatScanTime(latestScan.created_at) : "暂无扫描"}
+
{focusQueue.length ? ( focusQueue.map((rec) => ) ) : ( -
- 暂无焦点标的。 -
+ )}
@@ -371,11 +381,13 @@ function OpportunityBoard({ focusQueue, actionableCount, watchCount, + latestScan, }: { sectors: SectorData[]; focusQueue: RecommendationData[]; actionableCount: number; watchCount: number; + latestScan: LatestResult["latest_scan"]; }) { const leadingSectors = sectors.slice(0, 5); @@ -416,7 +428,9 @@ function OpportunityBoard({ {focusQueue.length ? focusQueue.map((rec) => ( )) : ( -
暂无重点标的
+
+ +
)} @@ -727,6 +741,32 @@ function LargeFocusStockCard({ rec }: { rec: RecommendationData }) { ); } +function EmptyScanResult({ latestScan, compact = false }: { latestScan: LatestResult["latest_scan"]; compact?: boolean }) { + const reasons = latestScan?.elimination_reasons ? Object.entries(latestScan.elimination_reasons).slice(0, 3) : []; + return ( +
+
+
本次扫描无入选标的
+ + {latestScan?.created_at ? formatScanTime(latestScan.created_at) : "未扫描"} + +
+
+ {latestScan?.summary || "最近一次扫描没有保留到作战池,不展示历史标的,避免误导。"} +
+ {reasons.length ? ( +
+ {reasons.map(([reason, count]) => ( + + {reason} {count} + + ))} +
+ ) : null} +
+ ); +} + function getExecutionMeta(rec: RecommendationData) { const hint = rec.decision_trace?.position_adjustment?.hint ?? rec.decision_trace?.context?.position_hint ?? "neutral"; const note = rec.decision_trace?.position_adjustment?.notes?.[0] ?? ""; @@ -757,6 +797,17 @@ function getExecutionMeta(rec: RecommendationData) { return { label: "", note: "", className: "", textClass: "" }; } +function formatScanTime(value: string) { + const normalized = value.includes("T") ? value : value.replace(" ", "T"); + const date = new Date(normalized); + if (Number.isNaN(date.getTime())) return value; + const today = new Date(); + const isToday = date.toDateString() === today.toDateString(); + const time = date.toLocaleTimeString("zh-CN", { hour: "2-digit", minute: "2-digit" }); + if (isToday) return `今日 ${time}`; + return date.toLocaleString("zh-CN", { month: "2-digit", day: "2-digit", hour: "2-digit", minute: "2-digit" }); +} + function TinyInfo({ label, value }: { label: string; value: string | number }) { return (
diff --git a/frontend/src/app/(auth)/recommendations/page.tsx b/frontend/src/app/(auth)/recommendations/page.tsx index 70dd5919..faddc5d2 100644 --- a/frontend/src/app/(auth)/recommendations/page.tsx +++ b/frontend/src/app/(auth)/recommendations/page.tsx @@ -26,6 +26,18 @@ function formatDate(dateStr: string): string { return `${d.getMonth() + 1}月${d.getDate()}日 ${weekDays[d.getDay()]}`; } +function formatScanTime(value?: string): string { + if (!value) return "暂无扫描"; + const normalized = value.includes("T") ? value : value.replace(" ", "T"); + const d = new Date(normalized); + if (Number.isNaN(d.getTime())) return value; + const today = new Date(); + const isToday = d.toDateString() === today.toDateString(); + const time = d.toLocaleTimeString("zh-CN", { hour: "2-digit", minute: "2-digit" }); + if (isToday) return `今日 ${time}`; + return d.toLocaleString("zh-CN", { month: "2-digit", day: "2-digit", hour: "2-digit", minute: "2-digit" }); +} + type RecommendationWithDate = RecommendationData & { groupDate: string }; type FocusTab = "actionable" | "watch" | "observe" | "tracking" | "closed"; @@ -149,6 +161,7 @@ export default function RecommendationsPage() { const todayCount = applyHistoryFilter(dayGroups[0]?.recommendations ?? []).length; const totalCount = dayGroups.reduce((sum, group) => sum + applyHistoryFilter(group.recommendations).length, 0); + const latestScanLabel = latest?.latest_scan?.created_at || dayGroups[0]?.scanned_at; const focusSummary = buildFocusSummary({ strategyProfile: latest?.strategy_profile ?? null, actionable, @@ -209,6 +222,8 @@ export default function RecommendationsPage() {
+ +
@@ -312,10 +327,10 @@ export default function RecommendationsPage() {
{dayGroups.map((group, index) => { const filtered = applyHistoryFilter(group.recommendations); - if (historyFilter !== "all" && filtered.length === 0) return null; const isExpanded = expandedDays.has(group.date); const isToday = index === 0; + const reasons = group.elimination_reasons ? Object.entries(group.elimination_reasons).slice(0, 3) : []; return (
@@ -331,17 +346,43 @@ export default function RecommendationsPage() { {group.date}
- {filtered.length} 只推荐 + 扫描 {formatScanTime(group.scanned_at)} · {filtered.length} 只入选 + {group.scan_input_count ? ` / 候选 ${group.scan_input_count}` : ""}
+ {group.scan_summary ? ( +
{group.scan_summary}
+ ) : null}
{isExpanded ? "收起" : "展开"} {isExpanded ? ( -
- {filtered.map((rec) => ( - - ))} +
+ {filtered.length ? ( +
+ {filtered.map((rec) => ( + + ))} +
+ ) : ( +
+
+ {historyFilter === "all" ? "本日扫描无入选标的" : "本日扫描存在,但当前筛选条件下无标的"} +
+
+ {group.scan_summary || "系统已完成扫描,但没有标的进入历史推荐池。"} +
+ {reasons.length ? ( +
+ {reasons.map(([reason, count]) => ( + + {reason} {count} + + ))} +
+ ) : null} +
+ )}
) : null}
diff --git a/frontend/src/lib/api.ts b/frontend/src/lib/api.ts index a7533a98..4cd6f845 100644 --- a/frontend/src/lib/api.ts +++ b/frontend/src/lib/api.ts @@ -365,6 +365,23 @@ export interface LatestResult { feedback_notes?: string[]; generated_by?: string; } | null; + latest_scan?: ScanMeta | null; + scan_mode?: string; +} + +export interface ScanMeta { + scan_session: string; + scan_mode: string; + status: string; + stage: string; + input_count: number; + output_count: number; + filtered_count: number; + summary: string; + created_at: string; + date: string; + action_counts?: Record; + elimination_reasons?: Record; } export interface DayGroup { @@ -373,6 +390,15 @@ export interface DayGroup { buy_count: number; avg_score: number; recommendations: RecommendationData[]; + scan_session?: string; + scan_mode?: string; + scan_status?: string; + scanned_at?: string; + scan_summary?: string; + scan_input_count?: number; + scan_output_count?: number; + scan_filtered_count?: number; + elimination_reasons?: Record; } // ---------- Performance Stats ----------