diff --git a/backend/app/api/auth.py b/backend/app/api/auth.py index 8def88e0..27aaab10 100644 --- a/backend/app/api/auth.py +++ b/backend/app/api/auth.py @@ -1,6 +1,6 @@ """认证 API -登录、密码修改、用户管理(管理员) +登录、密码修改、用户管理(管理员)、数据重置(管理员) """ import secrets @@ -8,7 +8,7 @@ import logging from fastapi import APIRouter, Depends, HTTPException, status from pydantic import BaseModel -from sqlalchemy import select, update +from sqlalchemy import select, update, text, func from app.core.auth import hash_password, verify_password, create_access_token from app.core.deps import get_current_user, get_current_admin @@ -36,6 +36,12 @@ class CreateUserRequest(BaseModel): role: str = "user" +class DataResetRequest(BaseModel): + mode: str # "all", "recommendations", "date_range", "low_score" + before_date: str | None = None # for date_range mode, e.g. "2026-04-10" + min_score: int | None = None # for low_score mode, default 60 + + # ---------- Public Endpoints ---------- @router.post("/login") @@ -209,3 +215,125 @@ async def reset_password(user_id: int, admin: dict = Depends(get_current_admin)) "password": raw_password, "message": "请妥善保管新密码,此密码仅显示一次", } + + +# ---------- Data Reset Endpoints (Admin Only) ---------- + +@router.get("/data-stats") +async def get_data_stats(admin: dict = Depends(get_current_admin)): + """获取数据统计(管理员)""" + async with get_db() as db: + rec_count = (await db.execute(text("SELECT COUNT(*) FROM recommendations"))).scalar() or 0 + track_count = (await db.execute(text("SELECT COUNT(*) FROM recommendation_tracking"))).scalar() or 0 + sector_count = (await db.execute(text("SELECT COUNT(*) FROM sector_heat"))).scalar() or 0 + temp_count = (await db.execute(text("SELECT COUNT(*) FROM market_temperature"))).scalar() or 0 + review_count = (await db.execute(text("SELECT COUNT(*) FROM daily_reviews"))).scalar() or 0 + low_score = (await db.execute(text("SELECT COUNT(*) FROM recommendations WHERE score < 60"))).scalar() or 0 + + # 最新日期 + latest_rec = (await db.execute(text("SELECT MAX(date(created_at)) FROM recommendations"))).scalar() or "" + earliest_rec = (await db.execute(text("SELECT MIN(date(created_at)) FROM recommendations"))).scalar() or "" + + return { + "recommendations": rec_count, + "tracking": track_count, + "sector_heat": sector_count, + "market_temperature": temp_count, + "daily_reviews": review_count, + "low_score_count": low_score, + "latest_date": str(latest_rec), + "earliest_date": str(earliest_rec), + } + + +@router.post("/data-reset") +async def data_reset(req: DataResetRequest, admin: dict = Depends(get_current_admin)): + """数据重置(管理员) + + mode: + - "all": 清除所有业务数据(推荐、跟踪、板块热度、市场温度、复盘) + - "recommendations": 清除推荐记录和跟踪数据,保留板块和市场温度 + - "date_range": 清除指定日期之前的数据 + - "low_score": 清除低分推荐(score < min_score)和过期跟踪数据 + """ + deleted = {} + + async with get_db() as db: + if req.mode == "all": + # 清除所有业务数据(保留用户) + result = await db.execute(text("DELETE FROM recommendation_tracking")) + deleted["tracking"] = result.rowcount or 0 + result = await db.execute(text("DELETE FROM recommendations")) + deleted["recommendations"] = result.rowcount or 0 + result = await db.execute(text("DELETE FROM sector_heat")) + deleted["sector_heat"] = result.rowcount or 0 + result = await db.execute(text("DELETE FROM market_temperature")) + deleted["market_temperature"] = result.rowcount or 0 + result = await db.execute(text("DELETE FROM daily_reviews")) + deleted["daily_reviews"] = result.rowcount or 0 + result = await db.execute(text("DELETE FROM stock_diagnoses")) + deleted["stock_diagnoses"] = result.rowcount or 0 + + elif req.mode == "recommendations": + result = await db.execute(text("DELETE FROM recommendation_tracking")) + deleted["tracking"] = result.rowcount or 0 + result = await db.execute(text("DELETE FROM recommendations")) + deleted["recommendations"] = result.rowcount or 0 + + elif req.mode == "date_range": + if not req.before_date: + raise HTTPException(status_code=400, detail="date_range 模式需要 before_date 参数") + # 删除 before_date 之前的推荐和跟踪 + result = await db.execute( + text("DELETE FROM recommendation_tracking WHERE track_date < :bd"), + {"bd": req.before_date} + ) + deleted["tracking"] = result.rowcount or 0 + result = await db.execute( + text("DELETE FROM recommendations WHERE date(created_at) < :bd"), + {"bd": req.before_date} + ) + deleted["recommendations"] = result.rowcount or 0 + result = await db.execute( + text("DELETE FROM sector_heat WHERE trade_date < :bd"), + {"bd": req.before_date} + ) + deleted["sector_heat"] = result.rowcount or 0 + result = await db.execute( + text("DELETE FROM market_temperature WHERE trade_date < :bd"), + {"bd": req.before_date} + ) + deleted["market_temperature"] = result.rowcount or 0 + + elif req.mode == "low_score": + threshold = req.min_score or 60 + # 删除低分推荐及其跟踪数据 + result = await db.execute( + text("DELETE FROM recommendation_tracking WHERE recommendation_id IN " + "(SELECT id FROM recommendations WHERE score < :ms)"), + {"ms": threshold} + ) + deleted["tracking"] = result.rowcount or 0 + result = await db.execute( + text("DELETE FROM recommendations WHERE score < :ms"), + {"ms": threshold} + ) + deleted["recommendations"] = result.rowcount or 0 + + else: + raise HTTPException(status_code=400, detail=f"不支持的模式: {req.mode}") + + await db.commit() + + # 清除内存缓存 + from app.engine.recommender import _latest_result + import app.engine.recommender as recommender_mod + recommender_mod._latest_result = None + + logger.info(f"管理员 {admin['username']} 执行数据重置: mode={req.mode}, deleted={deleted}") + + return { + "status": "ok", + "mode": req.mode, + "deleted": deleted, + } diff --git a/frontend/.next/app-build-manifest.json b/frontend/.next/app-build-manifest.json index e43b4628..ad9b1f4c 100644 --- a/frontend/.next/app-build-manifest.json +++ b/frontend/.next/app-build-manifest.json @@ -1,15 +1,25 @@ { "pages": { - "/page": [ + "/recommendations/page": [ "static/chunks/webpack.js", "static/chunks/main-app.js", - "static/chunks/app/page.js" + "static/chunks/app/recommendations/page.js" ], "/layout": [ "static/chunks/webpack.js", "static/chunks/main-app.js", "static/css/app/layout.css", "static/chunks/app/layout.js" + ], + "/page": [ + "static/chunks/webpack.js", + "static/chunks/main-app.js", + "static/chunks/app/page.js" + ], + "/users/page": [ + "static/chunks/webpack.js", + "static/chunks/main-app.js", + "static/chunks/app/users/page.js" ] } } \ No newline at end of file diff --git a/frontend/.next/cache/.tsbuildinfo b/frontend/.next/cache/.tsbuildinfo index 29ec6189..d875acb0 100644 --- a/frontend/.next/cache/.tsbuildinfo +++ b/frontend/.next/cache/.tsbuildinfo @@ -1 +1 @@ -{"fileNames":["../../node_modules/typescript/lib/lib.es5.d.ts","../../node_modules/typescript/lib/lib.es2015.d.ts","../../node_modules/typescript/lib/lib.es2016.d.ts","../../node_modules/typescript/lib/lib.es2017.d.ts","../../node_modules/typescript/lib/lib.es2018.d.ts","../../node_modules/typescript/lib/lib.es2019.d.ts","../../node_modules/typescript/lib/lib.es2020.d.ts","../../node_modules/typescript/lib/lib.es2021.d.ts","../../node_modules/typescript/lib/lib.es2022.d.ts","../../node_modules/typescript/lib/lib.es2023.d.ts","../../node_modules/typescript/lib/lib.es2024.d.ts","../../node_modules/typescript/lib/lib.esnext.d.ts","../../node_modules/typescript/lib/lib.dom.d.ts","../../node_modules/typescript/lib/lib.dom.iterable.d.ts","../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/typescript/lib/lib.es2016.intl.d.ts","../../node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../node_modules/typescript/lib/lib.es2017.date.d.ts","../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../node_modules/typescript/lib/lib.es2021.promise.d.ts","../../node_modules/typescript/lib/lib.es2021.string.d.ts","../../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../node_modules/typescript/lib/lib.es2021.intl.d.ts","../../node_modules/typescript/lib/lib.es2022.array.d.ts","../../node_modules/typescript/lib/lib.es2022.error.d.ts","../../node_modules/typescript/lib/lib.es2022.intl.d.ts","../../node_modules/typescript/lib/lib.es2022.object.d.ts","../../node_modules/typescript/lib/lib.es2022.string.d.ts","../../node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../node_modules/typescript/lib/lib.es2023.array.d.ts","../../node_modules/typescript/lib/lib.es2023.collection.d.ts","../../node_modules/typescript/lib/lib.es2023.intl.d.ts","../../node_modules/typescript/lib/lib.es2024.arraybuffer.d.ts","../../node_modules/typescript/lib/lib.es2024.collection.d.ts","../../node_modules/typescript/lib/lib.es2024.object.d.ts","../../node_modules/typescript/lib/lib.es2024.promise.d.ts","../../node_modules/typescript/lib/lib.es2024.regexp.d.ts","../../node_modules/typescript/lib/lib.es2024.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2024.string.d.ts","../../node_modules/typescript/lib/lib.esnext.array.d.ts","../../node_modules/typescript/lib/lib.esnext.collection.d.ts","../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../node_modules/typescript/lib/lib.esnext.disposable.d.ts","../../node_modules/typescript/lib/lib.esnext.promise.d.ts","../../node_modules/typescript/lib/lib.esnext.decorators.d.ts","../../node_modules/typescript/lib/lib.esnext.iterator.d.ts","../../node_modules/typescript/lib/lib.esnext.float16.d.ts","../../node_modules/typescript/lib/lib.esnext.error.d.ts","../../node_modules/typescript/lib/lib.esnext.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.decorators.d.ts","../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../node_modules/next/dist/styled-jsx/types/css.d.ts","../../node_modules/@types/react/global.d.ts","../../node_modules/csstype/index.d.ts","../../node_modules/@types/prop-types/index.d.ts","../../node_modules/@types/react/index.d.ts","../../node_modules/next/dist/styled-jsx/types/index.d.ts","../../node_modules/next/dist/styled-jsx/types/macro.d.ts","../../node_modules/next/dist/styled-jsx/types/style.d.ts","../../node_modules/next/dist/styled-jsx/types/global.d.ts","../../node_modules/next/dist/shared/lib/amp.d.ts","../../node_modules/next/amp.d.ts","../../node_modules/@types/node/compatibility/disposable.d.ts","../../node_modules/@types/node/compatibility/indexable.d.ts","../../node_modules/@types/node/compatibility/iterators.d.ts","../../node_modules/@types/node/compatibility/index.d.ts","../../node_modules/@types/node/globals.typedarray.d.ts","../../node_modules/@types/node/buffer.buffer.d.ts","../../node_modules/@types/node/globals.d.ts","../../node_modules/@types/node/web-globals/abortcontroller.d.ts","../../node_modules/@types/node/web-globals/domexception.d.ts","../../node_modules/@types/node/web-globals/events.d.ts","../../node_modules/undici-types/header.d.ts","../../node_modules/undici-types/readable.d.ts","../../node_modules/undici-types/file.d.ts","../../node_modules/undici-types/fetch.d.ts","../../node_modules/undici-types/formdata.d.ts","../../node_modules/undici-types/connector.d.ts","../../node_modules/undici-types/client.d.ts","../../node_modules/undici-types/errors.d.ts","../../node_modules/undici-types/dispatcher.d.ts","../../node_modules/undici-types/global-dispatcher.d.ts","../../node_modules/undici-types/global-origin.d.ts","../../node_modules/undici-types/pool-stats.d.ts","../../node_modules/undici-types/pool.d.ts","../../node_modules/undici-types/handlers.d.ts","../../node_modules/undici-types/balanced-pool.d.ts","../../node_modules/undici-types/agent.d.ts","../../node_modules/undici-types/mock-interceptor.d.ts","../../node_modules/undici-types/mock-agent.d.ts","../../node_modules/undici-types/mock-client.d.ts","../../node_modules/undici-types/mock-pool.d.ts","../../node_modules/undici-types/mock-errors.d.ts","../../node_modules/undici-types/proxy-agent.d.ts","../../node_modules/undici-types/env-http-proxy-agent.d.ts","../../node_modules/undici-types/retry-handler.d.ts","../../node_modules/undici-types/retry-agent.d.ts","../../node_modules/undici-types/api.d.ts","../../node_modules/undici-types/interceptors.d.ts","../../node_modules/undici-types/util.d.ts","../../node_modules/undici-types/cookies.d.ts","../../node_modules/undici-types/patch.d.ts","../../node_modules/undici-types/websocket.d.ts","../../node_modules/undici-types/eventsource.d.ts","../../node_modules/undici-types/filereader.d.ts","../../node_modules/undici-types/diagnostics-channel.d.ts","../../node_modules/undici-types/content-type.d.ts","../../node_modules/undici-types/cache.d.ts","../../node_modules/undici-types/index.d.ts","../../node_modules/@types/node/web-globals/fetch.d.ts","../../node_modules/@types/node/assert.d.ts","../../node_modules/@types/node/assert/strict.d.ts","../../node_modules/@types/node/async_hooks.d.ts","../../node_modules/@types/node/buffer.d.ts","../../node_modules/@types/node/child_process.d.ts","../../node_modules/@types/node/cluster.d.ts","../../node_modules/@types/node/console.d.ts","../../node_modules/@types/node/constants.d.ts","../../node_modules/@types/node/crypto.d.ts","../../node_modules/@types/node/dgram.d.ts","../../node_modules/@types/node/diagnostics_channel.d.ts","../../node_modules/@types/node/dns.d.ts","../../node_modules/@types/node/dns/promises.d.ts","../../node_modules/@types/node/domain.d.ts","../../node_modules/@types/node/events.d.ts","../../node_modules/@types/node/fs.d.ts","../../node_modules/@types/node/fs/promises.d.ts","../../node_modules/@types/node/http.d.ts","../../node_modules/@types/node/http2.d.ts","../../node_modules/@types/node/https.d.ts","../../node_modules/@types/node/inspector.generated.d.ts","../../node_modules/@types/node/module.d.ts","../../node_modules/@types/node/net.d.ts","../../node_modules/@types/node/os.d.ts","../../node_modules/@types/node/path.d.ts","../../node_modules/@types/node/perf_hooks.d.ts","../../node_modules/@types/node/process.d.ts","../../node_modules/@types/node/punycode.d.ts","../../node_modules/@types/node/querystring.d.ts","../../node_modules/@types/node/readline.d.ts","../../node_modules/@types/node/readline/promises.d.ts","../../node_modules/@types/node/repl.d.ts","../../node_modules/@types/node/sea.d.ts","../../node_modules/@types/node/stream.d.ts","../../node_modules/@types/node/stream/promises.d.ts","../../node_modules/@types/node/stream/consumers.d.ts","../../node_modules/@types/node/stream/web.d.ts","../../node_modules/@types/node/string_decoder.d.ts","../../node_modules/@types/node/test.d.ts","../../node_modules/@types/node/timers.d.ts","../../node_modules/@types/node/timers/promises.d.ts","../../node_modules/@types/node/tls.d.ts","../../node_modules/@types/node/trace_events.d.ts","../../node_modules/@types/node/tty.d.ts","../../node_modules/@types/node/url.d.ts","../../node_modules/@types/node/util.d.ts","../../node_modules/@types/node/v8.d.ts","../../node_modules/@types/node/vm.d.ts","../../node_modules/@types/node/wasi.d.ts","../../node_modules/@types/node/worker_threads.d.ts","../../node_modules/@types/node/zlib.d.ts","../../node_modules/@types/node/index.d.ts","../../node_modules/next/dist/server/get-page-files.d.ts","../../node_modules/@types/react/canary.d.ts","../../node_modules/@types/react/experimental.d.ts","../../node_modules/@types/react-dom/index.d.ts","../../node_modules/@types/react-dom/canary.d.ts","../../node_modules/@types/react-dom/experimental.d.ts","../../node_modules/next/dist/compiled/webpack/webpack.d.ts","../../node_modules/next/dist/server/config.d.ts","../../node_modules/next/dist/lib/load-custom-routes.d.ts","../../node_modules/next/dist/shared/lib/image-config.d.ts","../../node_modules/next/dist/build/webpack/plugins/subresource-integrity-plugin.d.ts","../../node_modules/next/dist/server/body-streams.d.ts","../../node_modules/next/dist/server/future/route-kind.d.ts","../../node_modules/next/dist/server/future/route-definitions/route-definition.d.ts","../../node_modules/next/dist/server/future/route-matches/route-match.d.ts","../../node_modules/next/dist/client/components/app-router-headers.d.ts","../../node_modules/next/dist/server/request-meta.d.ts","../../node_modules/next/dist/server/lib/revalidate.d.ts","../../node_modules/next/dist/server/config-shared.d.ts","../../node_modules/next/dist/server/base-http/index.d.ts","../../node_modules/next/dist/server/api-utils/index.d.ts","../../node_modules/next/dist/server/node-environment.d.ts","../../node_modules/next/dist/server/require-hook.d.ts","../../node_modules/next/dist/server/node-polyfill-crypto.d.ts","../../node_modules/next/dist/lib/page-types.d.ts","../../node_modules/next/dist/build/analysis/get-page-static-info.d.ts","../../node_modules/next/dist/build/webpack/loaders/get-module-build-info.d.ts","../../node_modules/next/dist/build/webpack/plugins/middleware-plugin.d.ts","../../node_modules/next/dist/server/render-result.d.ts","../../node_modules/next/dist/server/future/helpers/i18n-provider.d.ts","../../node_modules/next/dist/server/web/next-url.d.ts","../../node_modules/next/dist/compiled/@edge-runtime/cookies/index.d.ts","../../node_modules/next/dist/server/web/spec-extension/cookies.d.ts","../../node_modules/next/dist/server/web/spec-extension/request.d.ts","../../node_modules/next/dist/server/web/spec-extension/fetch-event.d.ts","../../node_modules/next/dist/server/web/spec-extension/response.d.ts","../../node_modules/next/dist/server/web/types.d.ts","../../node_modules/next/dist/lib/setup-exception-listeners.d.ts","../../node_modules/next/dist/lib/constants.d.ts","../../node_modules/next/dist/build/index.d.ts","../../node_modules/next/dist/build/webpack/plugins/pages-manifest-plugin.d.ts","../../node_modules/next/dist/shared/lib/router/utils/route-regex.d.ts","../../node_modules/next/dist/shared/lib/router/utils/route-matcher.d.ts","../../node_modules/next/dist/shared/lib/router/utils/parse-url.d.ts","../../node_modules/next/dist/server/base-http/node.d.ts","../../node_modules/next/dist/server/font-utils.d.ts","../../node_modules/next/dist/build/webpack/plugins/flight-manifest-plugin.d.ts","../../node_modules/next/dist/server/future/route-modules/route-module.d.ts","../../node_modules/next/dist/shared/lib/deep-readonly.d.ts","../../node_modules/next/dist/server/load-components.d.ts","../../node_modules/next/dist/shared/lib/router/utils/middleware-route-matcher.d.ts","../../node_modules/next/dist/build/webpack/plugins/next-font-manifest-plugin.d.ts","../../node_modules/next/dist/server/future/route-definitions/locale-route-definition.d.ts","../../node_modules/next/dist/server/future/route-definitions/pages-route-definition.d.ts","../../node_modules/next/dist/shared/lib/mitt.d.ts","../../node_modules/next/dist/client/with-router.d.ts","../../node_modules/next/dist/client/router.d.ts","../../node_modules/next/dist/client/route-loader.d.ts","../../node_modules/next/dist/client/page-loader.d.ts","../../node_modules/next/dist/shared/lib/bloom-filter.d.ts","../../node_modules/next/dist/shared/lib/router/router.d.ts","../../node_modules/next/dist/shared/lib/router-context.shared-runtime.d.ts","../../node_modules/next/dist/shared/lib/loadable-context.shared-runtime.d.ts","../../node_modules/next/dist/shared/lib/loadable.shared-runtime.d.ts","../../node_modules/next/dist/shared/lib/image-config-context.shared-runtime.d.ts","../../node_modules/next/dist/shared/lib/hooks-client-context.shared-runtime.d.ts","../../node_modules/next/dist/shared/lib/head-manager-context.shared-runtime.d.ts","../../node_modules/next/dist/server/future/route-definitions/app-page-route-definition.d.ts","../../node_modules/next/dist/shared/lib/modern-browserslist-target.d.ts","../../node_modules/next/dist/shared/lib/constants.d.ts","../../node_modules/next/dist/build/webpack/loaders/metadata/types.d.ts","../../node_modules/next/dist/build/page-extensions-type.d.ts","../../node_modules/next/dist/build/webpack/loaders/next-app-loader.d.ts","../../node_modules/next/dist/server/lib/app-dir-module.d.ts","../../node_modules/next/dist/server/response-cache/types.d.ts","../../node_modules/next/dist/server/response-cache/index.d.ts","../../node_modules/next/dist/server/lib/incremental-cache/index.d.ts","../../node_modules/next/dist/client/components/hooks-server-context.d.ts","../../node_modules/next/dist/server/app-render/dynamic-rendering.d.ts","../../node_modules/next/dist/client/components/static-generation-async-storage-instance.d.ts","../../node_modules/next/dist/client/components/static-generation-async-storage.external.d.ts","../../node_modules/next/dist/server/web/spec-extension/adapters/request-cookies.d.ts","../../node_modules/next/dist/server/async-storage/draft-mode-provider.d.ts","../../node_modules/next/dist/server/web/spec-extension/adapters/headers.d.ts","../../node_modules/next/dist/client/components/request-async-storage-instance.d.ts","../../node_modules/next/dist/client/components/request-async-storage.external.d.ts","../../node_modules/next/dist/server/app-render/create-error-handler.d.ts","../../node_modules/next/dist/server/app-render/app-render.d.ts","../../node_modules/next/dist/shared/lib/server-inserted-html.shared-runtime.d.ts","../../node_modules/next/dist/shared/lib/amp-context.shared-runtime.d.ts","../../node_modules/next/dist/server/future/route-modules/app-page/vendored/contexts/entrypoints.d.ts","../../node_modules/next/dist/server/future/route-modules/app-page/module.compiled.d.ts","../../node_modules/@types/react/jsx-runtime.d.ts","../../node_modules/next/dist/client/components/error-boundary.d.ts","../../node_modules/next/dist/client/components/router-reducer/create-initial-router-state.d.ts","../../node_modules/next/dist/client/components/app-router.d.ts","../../node_modules/next/dist/client/components/layout-router.d.ts","../../node_modules/next/dist/client/components/render-from-template-context.d.ts","../../node_modules/next/dist/client/components/action-async-storage-instance.d.ts","../../node_modules/next/dist/client/components/action-async-storage.external.d.ts","../../node_modules/next/dist/client/components/client-page.d.ts","../../node_modules/next/dist/client/components/search-params.d.ts","../../node_modules/next/dist/client/components/not-found-boundary.d.ts","../../node_modules/next/dist/server/app-render/rsc/preloads.d.ts","../../node_modules/next/dist/server/app-render/rsc/postpone.d.ts","../../node_modules/next/dist/server/app-render/rsc/taint.d.ts","../../node_modules/next/dist/server/app-render/entry-base.d.ts","../../node_modules/next/dist/build/templates/app-page.d.ts","../../node_modules/next/dist/server/future/route-modules/app-page/module.d.ts","../../node_modules/next/dist/server/lib/builtin-request-context.d.ts","../../node_modules/next/dist/server/app-render/types.d.ts","../../node_modules/next/dist/client/components/router-reducer/fetch-server-response.d.ts","../../node_modules/next/dist/client/components/router-reducer/router-reducer-types.d.ts","../../node_modules/next/dist/shared/lib/app-router-context.shared-runtime.d.ts","../../node_modules/next/dist/server/future/route-modules/pages/vendored/contexts/entrypoints.d.ts","../../node_modules/next/dist/server/future/route-modules/pages/module.compiled.d.ts","../../node_modules/next/dist/build/templates/pages.d.ts","../../node_modules/next/dist/server/future/route-modules/pages/module.d.ts","../../node_modules/next/dist/server/render.d.ts","../../node_modules/next/dist/server/future/route-definitions/pages-api-route-definition.d.ts","../../node_modules/next/dist/server/future/route-matches/pages-api-route-match.d.ts","../../node_modules/next/dist/server/future/route-matchers/route-matcher.d.ts","../../node_modules/next/dist/server/future/route-matcher-providers/route-matcher-provider.d.ts","../../node_modules/next/dist/server/future/route-matcher-managers/route-matcher-manager.d.ts","../../node_modules/next/dist/server/future/normalizers/normalizer.d.ts","../../node_modules/next/dist/server/future/normalizers/locale-route-normalizer.d.ts","../../node_modules/next/dist/server/future/normalizers/request/pathname-normalizer.d.ts","../../node_modules/next/dist/server/future/normalizers/request/suffix.d.ts","../../node_modules/next/dist/server/future/normalizers/request/rsc.d.ts","../../node_modules/next/dist/server/future/normalizers/request/prefix.d.ts","../../node_modules/next/dist/server/future/normalizers/request/postponed.d.ts","../../node_modules/next/dist/server/future/normalizers/request/action.d.ts","../../node_modules/next/dist/server/future/normalizers/request/prefetch-rsc.d.ts","../../node_modules/next/dist/server/future/normalizers/request/next-data.d.ts","../../node_modules/next/dist/server/base-server.d.ts","../../node_modules/next/dist/server/image-optimizer.d.ts","../../node_modules/next/dist/server/next-server.d.ts","../../node_modules/next/dist/lib/coalesced-function.d.ts","../../node_modules/next/dist/server/lib/router-utils/types.d.ts","../../node_modules/next/dist/trace/types.d.ts","../../node_modules/next/dist/trace/trace.d.ts","../../node_modules/next/dist/trace/shared.d.ts","../../node_modules/next/dist/trace/index.d.ts","../../node_modules/next/dist/build/load-jsconfig.d.ts","../../node_modules/next/dist/build/webpack-config.d.ts","../../node_modules/next/dist/build/webpack/plugins/define-env-plugin.d.ts","../../node_modules/next/dist/build/swc/index.d.ts","../../node_modules/next/dist/server/dev/parse-version-info.d.ts","../../node_modules/next/dist/server/dev/hot-reloader-types.d.ts","../../node_modules/next/dist/telemetry/storage.d.ts","../../node_modules/next/dist/server/lib/types.d.ts","../../node_modules/next/dist/server/lib/render-server.d.ts","../../node_modules/next/dist/server/lib/router-server.d.ts","../../node_modules/next/dist/shared/lib/router/utils/path-match.d.ts","../../node_modules/next/dist/server/lib/router-utils/filesystem.d.ts","../../node_modules/next/dist/server/lib/router-utils/setup-dev-bundler.d.ts","../../node_modules/next/dist/server/lib/dev-bundler-service.d.ts","../../node_modules/next/dist/server/dev/static-paths-worker.d.ts","../../node_modules/next/dist/server/dev/next-dev-server.d.ts","../../node_modules/next/dist/server/next.d.ts","../../node_modules/next/dist/lib/metadata/types/alternative-urls-types.d.ts","../../node_modules/next/dist/lib/metadata/types/extra-types.d.ts","../../node_modules/next/dist/lib/metadata/types/metadata-types.d.ts","../../node_modules/next/dist/lib/metadata/types/manifest-types.d.ts","../../node_modules/next/dist/lib/metadata/types/opengraph-types.d.ts","../../node_modules/next/dist/lib/metadata/types/twitter-types.d.ts","../../node_modules/next/dist/lib/metadata/types/metadata-interface.d.ts","../../node_modules/next/types/index.d.ts","../../node_modules/next/dist/shared/lib/html-context.shared-runtime.d.ts","../../node_modules/@next/env/dist/index.d.ts","../../node_modules/next/dist/shared/lib/utils.d.ts","../../node_modules/next/dist/pages/_app.d.ts","../../node_modules/next/app.d.ts","../../node_modules/next/dist/server/web/spec-extension/unstable-cache.d.ts","../../node_modules/next/dist/server/web/spec-extension/revalidate.d.ts","../../node_modules/next/dist/server/web/spec-extension/unstable-no-store.d.ts","../../node_modules/next/cache.d.ts","../../node_modules/next/dist/shared/lib/runtime-config.external.d.ts","../../node_modules/next/config.d.ts","../../node_modules/next/dist/pages/_document.d.ts","../../node_modules/next/document.d.ts","../../node_modules/next/dist/shared/lib/dynamic.d.ts","../../node_modules/next/dynamic.d.ts","../../node_modules/next/dist/pages/_error.d.ts","../../node_modules/next/error.d.ts","../../node_modules/next/dist/shared/lib/head.d.ts","../../node_modules/next/head.d.ts","../../node_modules/next/dist/client/components/draft-mode.d.ts","../../node_modules/next/dist/client/components/headers.d.ts","../../node_modules/next/headers.d.ts","../../node_modules/next/dist/shared/lib/get-img-props.d.ts","../../node_modules/next/dist/client/image-component.d.ts","../../node_modules/next/dist/shared/lib/image-external.d.ts","../../node_modules/next/image.d.ts","../../node_modules/next/dist/client/link.d.ts","../../node_modules/next/link.d.ts","../../node_modules/next/dist/client/components/redirect-status-code.d.ts","../../node_modules/next/dist/client/components/redirect.d.ts","../../node_modules/next/dist/client/components/not-found.d.ts","../../node_modules/next/dist/client/components/navigation.react-server.d.ts","../../node_modules/next/dist/client/components/navigation.d.ts","../../node_modules/next/navigation.d.ts","../../node_modules/next/router.d.ts","../../node_modules/next/dist/client/script.d.ts","../../node_modules/next/script.d.ts","../../node_modules/next/dist/server/web/spec-extension/user-agent.d.ts","../../node_modules/next/dist/compiled/@edge-runtime/primitives/url.d.ts","../../node_modules/next/dist/server/web/spec-extension/image-response.d.ts","../../node_modules/next/dist/compiled/@vercel/og/satori/index.d.ts","../../node_modules/next/dist/compiled/@vercel/og/emoji/index.d.ts","../../node_modules/next/dist/compiled/@vercel/og/types.d.ts","../../node_modules/next/server.d.ts","../../node_modules/next/types/global.d.ts","../../node_modules/next/types/compiled.d.ts","../../node_modules/next/index.d.ts","../../node_modules/next/image-types/global.d.ts","../../next-env.d.ts","../../tailwind.config.ts","../../src/app/api/chat/stream/route.ts","../../src/hooks/use-websocket.ts","../../src/lib/api.ts","../../src/lib/markdown.ts","../../src/lib/utils.ts","../../src/hooks/use-auth.tsx","../../src/components/auth-guard.tsx","../../src/components/change-password-dialog.tsx","../../node_modules/next-themes/dist/index.d.ts","../../src/components/theme-toggle.tsx","../../src/components/user-menu.tsx","../../src/components/nav.tsx","../../src/app/layout.tsx","../../src/components/market-temp.tsx","../../src/components/stock-card.tsx","../../src/components/sector-heatmap.tsx","../../src/app/page.tsx","../../src/app/chat/page.tsx","../../src/components/error-boundary.tsx","../../src/app/diagnose/page.tsx","../../src/app/login/page.tsx","../../src/app/recommendations/page.tsx","../../node_modules/echarts/types/dist/echarts.d.ts","../../node_modules/echarts/index.d.ts","../../src/app/sectors/page.tsx","../../src/components/kline-chart.tsx","../../src/components/capital-flow.tsx","../../src/app/stock/[code]/page.tsx","../../src/app/users/page.tsx","../../src/components/score-radar.tsx","../types/app/page.ts","../types/app/api/chat/stream/route.ts","../types/app/chat/page.ts","../types/app/diagnose/page.ts","../types/app/login/page.ts","../types/app/recommendations/page.ts","../types/app/sectors/page.ts","../types/app/stock/[code]/page.ts","../types/app/users/page.ts","../../node_modules/@types/json5/index.d.ts","../types/app/monitor/page.ts","../../src/app/monitor/page.tsx"],"fileIdsList":[[99,145,405,412],[99,145,360,429],[99,145,360,431],[99,145,360,432],[99,145,360,428],[99,145,360,433],[99,145,360,436],[99,145,360,439],[99,145,360,440],[99,145,408,409],[99,145],[99,142,145],[99,144,145],[145],[99,145,150,178],[99,145,146,151,156,164,175,186],[99,145,146,147,156,164],[94,95,96,99,145],[99,145,148,187],[99,145,149,150,157,165],[99,145,150,175,183],[99,145,151,153,156,164],[99,144,145,152],[99,145,153,154],[99,145,155,156],[99,144,145,156],[99,145,156,157,158,175,186],[99,145,156,157,158,171,175,178],[99,145,153,156,159,164,175,186],[99,145,156,157,159,160,164,175,183,186],[99,145,159,161,175,183,186],[97,98,99,100,101,102,103,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192],[99,145,156,162],[99,145,163,186,191],[99,145,153,156,164,175],[99,145,165],[99,145,166],[99,144,145,167],[99,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192],[99,145,169],[99,145,170],[99,145,156,171,172],[99,145,171,173,187,189],[99,145,156,175,176,178],[99,145,177,178],[99,145,175,176],[99,145,178],[99,145,179],[99,142,145,175,180],[99,145,156,181,182],[99,145,181,182],[99,145,150,164,175,183],[99,145,184],[99,145,164,185],[99,145,159,170,186],[99,145,150,187],[99,145,175,188],[99,145,163,189],[99,145,190],[99,140,145],[99,140,145,156,158,167,175,178,186,189,191],[99,145,175,192],[87,99,145,197,198,199],[87,99,145,197,198],[87,99,145],[87,91,99,145,196,361,404],[87,91,99,145,195,361,404],[84,85,86,99,145],[99,145,434],[92,99,145],[99,145,365],[99,145,367,368,369],[99,145,371],[99,145,202,212,218,220,361],[99,145,202,209,211,214,232],[99,145,212],[99,145,212,214,339],[99,145,267,285,300,407],[99,145,309],[99,145,202,212,219,253,263,336,337,407],[99,145,219,407],[99,145,212,263,264,265,407],[99,145,212,219,253,407],[99,145,407],[99,145,202,219,220,407],[99,145,293],[99,144,145,193,292],[87,99,145,286,287,288,306,307],[87,99,145,286],[99,145,276],[99,145,275,277,381],[87,99,145,286,287,304],[99,145,282,307,393],[99,145,391,392],[99,145,226,390],[99,145,279],[99,144,145,193,226,242,275,276,277,278],[87,99,145,304,306,307],[99,145,304,306],[99,145,304,305,307],[99,145,170,193],[99,145,274],[99,144,145,193,211,213,270,271,272,273],[87,99,145,203,384],[87,99,145,186,193],[87,99,145,219,251],[87,99,145,219],[99,145,249,254],[87,99,145,250,364],[87,91,99,145,159,193,195,196,361,402,403],[99,145,361],[99,145,201],[99,145,354,355,356,357,358,359],[99,145,356],[87,99,145,250,286,364],[87,99,145,286,362,364],[87,99,145,286,364],[99,145,159,193,213,364],[99,145,159,193,210,211,222,240,242,274,279,280,302,304],[99,145,271,274,279,287,289,290,291,293,294,295,296,297,298,299,407],[99,145,272],[87,99,145,170,193,211,212,240,242,243,245,270,302,303,307,361,407],[99,145,159,193,213,214,226,227,275],[99,145,159,193,212,214],[99,145,159,175,193,210,213,214],[99,145,159,170,186,193,210,211,212,213,214,219,222,223,233,234,236,239,240,242,243,244,245,269,270,303,304,312,314,317,319,322,324,325,326,327],[99,145,159,175,193],[99,145,202,203,204,210,211,361,364,407],[99,145,159,175,186,193,207,338,340,341,407],[99,145,170,186,193,207,210,213,230,234,236,237,238,243,270,317,328,330,336,350,351],[99,145,212,216,270],[99,145,210,212],[99,145,223,318],[99,145,320,321],[99,145,320],[99,145,318],[99,145,320,323],[99,145,206,207],[99,145,206,246],[99,145,206],[99,145,208,223,316],[99,145,315],[99,145,207,208],[99,145,208,313],[99,145,207],[99,145,302],[99,145,159,193,210,222,241,261,267,281,284,301,304],[99,145,255,256,257,258,259,260,282,283,307,362],[99,145,311],[99,145,159,193,210,222,241,247,308,310,312,361,364],[99,145,159,186,193,203,210,212,269],[99,145,266],[99,145,159,193,344,349],[99,145,233,242,269,364],[99,145,332,336,350,353],[99,145,159,216,336,344,345,353],[99,145,202,212,233,244,347],[99,145,159,193,212,219,244,331,332,342,343,346,348],[99,145,194,240,241,242,361,364],[99,145,159,170,186,193,208,210,211,213,216,221,222,230,233,234,236,237,238,239,243,245,269,270,314,328,329,364],[99,145,159,193,210,212,216,330,352],[99,145,159,193,211,213],[87,99,145,159,170,193,201,203,210,211,214,222,239,240,242,243,245,311,361,364],[99,145,159,170,186,193,205,208,209,213],[99,145,206,268],[99,145,159,193,206,211,222],[99,145,159,193,212,223],[99,145,159,193],[99,145,226],[99,145,225],[99,145,227],[99,145,212,224,226,230],[99,145,212,224,226],[99,145,159,193,205,212,213,219,227,228,229],[87,99,145,304,305,306],[99,145,262],[87,99,145,203],[87,99,145,236],[87,99,145,194,239,242,245,361,364],[99,145,203,384,385],[87,99,145,254],[87,99,145,170,186,193,201,248,250,252,253,364],[99,145,213,219,236],[99,145,235],[87,99,145,157,159,170,193,201,254,263,361,362,363],[83,87,88,89,90,99,145,195,196,361,404],[99,145,150],[99,145,333,334,335],[99,145,333],[99,145,373],[99,145,375],[99,145,377],[99,145,379],[99,145,382],[99,145,386],[91,93,99,145,361,366,370,372,374,376,378,380,383,387,389,395,396,398,405,406,407],[99,145,388],[99,145,394],[99,145,250],[99,145,397],[99,144,145,227,228,229,230,399,400,401,404],[99,145,193],[87,91,99,145,159,161,170,193,195,196,197,199,201,214,353,360,364,404],[99,112,116,145,186],[99,112,145,175,186],[99,107,145],[99,109,112,145,183,186],[99,145,164,183],[99,107,145,193],[99,109,112,145,164,186],[99,104,105,108,111,145,156,175,186],[99,112,119,145],[99,104,110,145],[99,112,133,134,145],[99,108,112,145,178,186,193],[99,133,145,193],[99,106,107,145,193],[99,112,145],[99,106,107,108,109,110,111,112,113,114,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,134,135,136,137,138,139,145],[99,112,127,145],[99,112,119,120,145],[99,110,112,120,121,145],[99,111,145],[99,104,107,112,145],[99,112,116,120,121,145],[99,116,145],[99,110,112,115,145,186],[99,104,109,112,119,145],[99,145,175],[99,107,112,133,145,191,193],[99,145,405],[87,99,145,414,415,420],[87,99,145,395,414,415,420,430],[99,145,408,417,418,420,422,423],[87,99,145,395,417],[87,99,145,413,414,415,417,421,425,426,427],[87,99,145,413,414,426],[87,99,145,413,414,416,430,435],[87,99,145,395,414,416,430,437,438],[87,99,145,414,417],[87,99,145,420,435],[87,99,145,414],[99,145,414,416],[99,145,389,395,417,421],[87,99,145,414,416],[87,99,145,420],[87,99,145,417,419,421]],"fileInfos":[{"version":"c430d44666289dae81f30fa7b2edebf186ecc91a2d4c71266ea6ae76388792e1","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","signature":false,"impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","signature":false,"impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","signature":false,"impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","signature":false,"impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","signature":false,"impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","signature":false,"impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","signature":false,"impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","signature":false,"impliedFormat":1},{"version":"27bdc30a0e32783366a5abeda841bc22757c1797de8681bbe81fbc735eeb1c10","signature":false,"impliedFormat":1},{"version":"8fd575e12870e9944c7e1d62e1f5a73fcf23dd8d3a321f2a2c74c20d022283fe","signature":false,"impliedFormat":1},{"version":"2ab096661c711e4a81cc464fa1e6feb929a54f5340b46b0a07ac6bbf857471f0","signature":false,"impliedFormat":1},{"version":"080941d9f9ff9307f7e27a83bcd888b7c8270716c39af943532438932ec1d0b9","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"2e80ee7a49e8ac312cc11b77f1475804bee36b3b2bc896bead8b6e1266befb43","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"fb0f136d372979348d59b3f5020b4cdb81b5504192b1cacff5d1fbba29378aa1","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"a680117f487a4d2f30ea46f1b4b7f58bef1480456e18ba53ee85c2746eeca012","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"8cdf8847677ac7d20486e54dd3fcf09eda95812ac8ace44b4418da1bbbab6eb8","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"df83c2a6c73228b625b0beb6669c7ee2a09c914637e2d35170723ad49c0f5cd4","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"436aaf437562f276ec2ddbee2f2cdedac7664c1e4c1d2c36839ddd582eeb3d0a","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"8e3c06ea092138bf9fa5e874a1fdbc9d54805d074bee1de31b99a11e2fec239d","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"87dc0f382502f5bbce5129bdc0aea21e19a3abbc19259e0b43ae038a9fc4e326","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"b1cb28af0c891c8c96b2d6b7be76bd394fddcfdb4709a20ba05a7c1605eea0f9","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"2fef54945a13095fdb9b84f705f2b5994597640c46afeb2ce78352fab4cb3279","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"ac77cb3e8c6d3565793eb90a8373ee8033146315a3dbead3bde8db5eaf5e5ec6","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"56e4ed5aab5f5920980066a9409bfaf53e6d21d3f8d020c17e4de584d29600ad","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"4ece9f17b3866cc077099c73f4983bddbcb1dc7ddb943227f1ec070f529dedd1","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"0a6282c8827e4b9a95f4bf4f5c205673ada31b982f50572d27103df8ceb8013c","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"1c9319a09485199c1f7b0498f2988d6d2249793ef67edda49d1e584746be9032","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"e3a2a0cee0f03ffdde24d89660eba2685bfbdeae955a6c67e8c4c9fd28928eeb","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"811c71eee4aa0ac5f7adf713323a5c41b0cf6c4e17367a34fbce379e12bbf0a4","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"51ad4c928303041605b4d7ae32e0c1ee387d43a24cd6f1ebf4a2699e1076d4fa","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"60037901da1a425516449b9a20073aa03386cce92f7a1fd902d7602be3a7c2e9","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"d4b1d2c51d058fc21ec2629fff7a76249dec2e36e12960ea056e3ef89174080f","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"22adec94ef7047a6c9d1af3cb96be87a335908bf9ef386ae9fd50eeb37f44c47","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"196cb558a13d4533a5163286f30b0509ce0210e4b316c56c38d4c0fd2fb38405","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"73f78680d4c08509933daf80947902f6ff41b6230f94dd002ae372620adb0f60","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"c5239f5c01bcfa9cd32f37c496cf19c61d69d37e48be9de612b541aac915805b","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"0990a7576222f248f0a3b888adcb7389f957928ce2afb1cd5128169086ff4d29","signature":false,"impliedFormat":1},{"version":"eb5b19b86227ace1d29ea4cf81387279d04bb34051e944bc53df69f58914b788","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"ac51dd7d31333793807a6abaa5ae168512b6131bd41d9c5b98477fc3b7800f9f","signature":false,"impliedFormat":1},{"version":"87d9d29dbc745f182683f63187bf3d53fd8673e5fca38ad5eaab69798ed29fbc","signature":false,"impliedFormat":1},{"version":"035312d4945d13efa134ae482f6dc56a1a9346f7ac3be7ccbad5741058ce87f3","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"cc69795d9954ee4ad57545b10c7bf1a7260d990231b1685c147ea71a6faa265c","signature":false,"impliedFormat":1},{"version":"8bc6c94ff4f2af1f4023b7bb2379b08d3d7dd80c698c9f0b07431ea16101f05f","signature":false,"impliedFormat":1},{"version":"1b61d259de5350f8b1e5db06290d31eaebebc6baafd5f79d314b5af9256d7153","signature":false,"impliedFormat":1},{"version":"57194e1f007f3f2cbef26fa299d4c6b21f4623a2eddc63dfeef79e38e187a36e","signature":false,"impliedFormat":1},{"version":"0f6666b58e9276ac3a38fdc80993d19208442d6027ab885580d93aec76b4ef00","signature":false,"impliedFormat":1},{"version":"05fd364b8ef02fb1e174fbac8b825bdb1e5a36a016997c8e421f5fab0a6da0a0","signature":false,"impliedFormat":1},{"version":"70521b6ab0dcba37539e5303104f29b721bfb2940b2776da4cc818c07e1fefc1","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"ab41ef1f2cdafb8df48be20cd969d875602483859dc194e9c97c8a576892c052","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"21d819c173c0cf7cc3ce57c3276e77fd9a8a01d35a06ad87158781515c9a438a","signature":false,"impliedFormat":1},{"version":"98cffbf06d6bab333473c70a893770dbe990783904002c4f1a960447b4b53dca","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"ba481bca06f37d3f2c137ce343c7d5937029b2468f8e26111f3c9d9963d6568d","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"6d9ef24f9a22a88e3e9b3b3d8c40ab1ddb0853f1bfbd5c843c37800138437b61","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"1db0b7dca579049ca4193d034d835f6bfe73096c73663e5ef9a0b5779939f3d0","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"9798340ffb0d067d69b1ae5b32faa17ab31b82466a3fc00d8f2f2df0c8554aaa","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"f26b11d8d8e4b8028f1c7d618b22274c892e4b0ef5b3678a8ccbad85419aef43","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","signature":false,"impliedFormat":1},{"version":"763fe0f42b3d79b440a9b6e51e9ba3f3f91352469c1e4b3b67bfa4ff6352f3f4","signature":false,"impliedFormat":1},{"version":"25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","signature":false,"impliedFormat":1},{"version":"c464d66b20788266e5353b48dc4aa6bc0dc4a707276df1e7152ab0c9ae21fad8","signature":false,"impliedFormat":1},{"version":"78d0d27c130d35c60b5e5566c9f1e5be77caf39804636bc1a40133919a949f21","signature":false,"impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","signature":false,"impliedFormat":1},{"version":"1d6e127068ea8e104a912e42fc0a110e2aa5a66a356a917a163e8cf9a65e4a75","signature":false,"impliedFormat":1},{"version":"5ded6427296cdf3b9542de4471d2aa8d3983671d4cac0f4bf9c637208d1ced43","signature":false,"impliedFormat":1},{"version":"7f182617db458e98fc18dfb272d40aa2fff3a353c44a89b2c0ccb3937709bfb5","signature":false,"impliedFormat":1},{"version":"cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","signature":false,"impliedFormat":1},{"version":"385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","signature":false,"impliedFormat":1},{"version":"9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","signature":false,"impliedFormat":1},{"version":"0b8a9268adaf4da35e7fa830c8981cfa22adbbe5b3f6f5ab91f6658899e657a7","signature":false,"impliedFormat":1},{"version":"11396ed8a44c02ab9798b7dca436009f866e8dae3c9c25e8c1fbc396880bf1bb","signature":false,"impliedFormat":1},{"version":"ba7bc87d01492633cb5a0e5da8a4a42a1c86270e7b3d2dea5d156828a84e4882","signature":false,"impliedFormat":1},{"version":"4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","signature":false,"impliedFormat":1},{"version":"c21dc52e277bcfc75fac0436ccb75c204f9e1b3fa5e12729670910639f27343e","signature":false,"impliedFormat":1},{"version":"13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","signature":false,"impliedFormat":1},{"version":"9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","signature":false,"impliedFormat":1},{"version":"4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","signature":false,"impliedFormat":1},{"version":"24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","signature":false,"impliedFormat":1},{"version":"ea0148f897b45a76544ae179784c95af1bd6721b8610af9ffa467a518a086a43","signature":false,"impliedFormat":1},{"version":"24c6a117721e606c9984335f71711877293a9651e44f59f3d21c1ea0856f9cc9","signature":false,"impliedFormat":1},{"version":"dd3273ead9fbde62a72949c97dbec2247ea08e0c6952e701a483d74ef92d6a17","signature":false,"impliedFormat":1},{"version":"405822be75ad3e4d162e07439bac80c6bcc6dbae1929e179cf467ec0b9ee4e2e","signature":false,"impliedFormat":1},{"version":"0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","signature":false,"impliedFormat":1},{"version":"e61be3f894b41b7baa1fbd6a66893f2579bfad01d208b4ff61daef21493ef0a8","signature":false,"impliedFormat":1},{"version":"bd0532fd6556073727d28da0edfd1736417a3f9f394877b6d5ef6ad88fba1d1a","signature":false,"impliedFormat":1},{"version":"89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","signature":false,"impliedFormat":1},{"version":"615ba88d0128ed16bf83ef8ccbb6aff05c3ee2db1cc0f89ab50a4939bfc1943f","signature":false,"impliedFormat":1},{"version":"a4d551dbf8746780194d550c88f26cf937caf8d56f102969a110cfaed4b06656","signature":false,"impliedFormat":1},{"version":"8bd86b8e8f6a6aa6c49b71e14c4ffe1211a0e97c80f08d2c8cc98838006e4b88","signature":false,"impliedFormat":1},{"version":"317e63deeb21ac07f3992f5b50cdca8338f10acd4fbb7257ebf56735bf52ab00","signature":false,"impliedFormat":1},{"version":"4732aec92b20fb28c5fe9ad99521fb59974289ed1e45aecb282616202184064f","signature":false,"impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","signature":false,"impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","signature":false,"impliedFormat":1},{"version":"bf67d53d168abc1298888693338cb82854bdb2e69ef83f8a0092093c2d562107","signature":false,"impliedFormat":1},{"version":"b52476feb4a0cbcb25e5931b930fc73cb6643fb1a5060bf8a3dda0eeae5b4b68","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"e2677634fe27e87348825bb041651e22d50a613e2fdf6a4a3ade971d71bac37e","signature":false,"impliedFormat":1},{"version":"7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","signature":false,"impliedFormat":1},{"version":"8c0bcd6c6b67b4b503c11e91a1fb91522ed585900eab2ab1f61bba7d7caa9d6f","signature":false,"impliedFormat":1},{"version":"8cd19276b6590b3ebbeeb030ac271871b9ed0afc3074ac88a94ed2449174b776","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"696eb8d28f5949b87d894b26dc97318ef944c794a9a4e4f62360cd1d1958014b","signature":false,"impliedFormat":1},{"version":"3f8fa3061bd7402970b399300880d55257953ee6d3cd408722cb9ac20126460c","signature":false,"impliedFormat":1},{"version":"35ec8b6760fd7138bbf5809b84551e31028fb2ba7b6dc91d95d098bf212ca8b4","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a","signature":false,"impliedFormat":1},{"version":"68bd56c92c2bd7d2339457eb84d63e7de3bd56a69b25f3576e1568d21a162398","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"3e93b123f7c2944969d291b35fed2af79a6e9e27fdd5faa99748a51c07c02d28","signature":false,"impliedFormat":1},{"version":"9d19808c8c291a9010a6c788e8532a2da70f811adb431c97520803e0ec649991","signature":false,"impliedFormat":1},{"version":"87aad3dd9752067dc875cfaa466fc44246451c0c560b820796bdd528e29bef40","signature":false,"impliedFormat":1},{"version":"4aacb0dd020eeaef65426153686cc639a78ec2885dc72ad220be1d25f1a439df","signature":false,"impliedFormat":1},{"version":"f0bd7e6d931657b59605c44112eaf8b980ba7f957a5051ed21cb93d978cf2f45","signature":false,"impliedFormat":1},{"version":"8db0ae9cb14d9955b14c214f34dae1b9ef2baee2fe4ce794a4cd3ac2531e3255","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"15fc6f7512c86810273af28f224251a5a879e4261b4d4c7e532abfbfc3983134","signature":false,"impliedFormat":1},{"version":"58adba1a8ab2d10b54dc1dced4e41f4e7c9772cbbac40939c0dc8ce2cdb1d442","signature":false,"impliedFormat":1},{"version":"641942a78f9063caa5d6b777c99304b7d1dc7328076038c6d94d8a0b81fc95c1","signature":false,"impliedFormat":1},{"version":"714435130b9015fae551788df2a88038471a5a11eb471f27c4ede86552842bc9","signature":false,"impliedFormat":1},{"version":"855cd5f7eb396f5f1ab1bc0f8580339bff77b68a770f84c6b254e319bbfd1ac7","signature":false,"impliedFormat":1},{"version":"5650cf3dace09e7c25d384e3e6b818b938f68f4e8de96f52d9c5a1b3db068e86","signature":false,"impliedFormat":1},{"version":"1354ca5c38bd3fd3836a68e0f7c9f91f172582ba30ab15bb8c075891b91502b7","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"7e20d899c28ca26a2a7afc98beaa69e63ff7fba0a8bc47b4e3bf3ede5e09e424","signature":false,"impliedFormat":1},{"version":"2d2fcaab481b31a5882065c7951255703ddbe1c0e507af56ea42d79ac3911201","signature":false,"impliedFormat":1},{"version":"a192fe8ec33f75edbc8d8f3ed79f768dfae11ff5735e7fe52bfa69956e46d78d","signature":false,"impliedFormat":1},{"version":"ca867399f7db82df981d6915bcbb2d81131d7d1ef683bc782b59f71dda59bc85","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"372413016d17d804e1d139418aca0c68e47a83fb6669490857f4b318de8cccb3","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"9e043a1bc8fbf2a255bccf9bf27e0f1caf916c3b0518ea34aa72357c0afd42ec","signature":false,"impliedFormat":1},{"version":"b4f70ec656a11d570e1a9edce07d118cd58d9760239e2ece99306ee9dfe61d02","signature":false,"impliedFormat":1},{"version":"3bc2f1e2c95c04048212c569ed38e338873f6a8593930cf5a7ef24ffb38fc3b6","signature":false,"impliedFormat":1},{"version":"6e70e9570e98aae2b825b533aa6292b6abd542e8d9f6e9475e88e1d7ba17c866","signature":false,"impliedFormat":1},{"version":"f9d9d753d430ed050dc1bf2667a1bab711ccbb1c1507183d794cc195a5b085cc","signature":false,"impliedFormat":1},{"version":"9eece5e586312581ccd106d4853e861aaaa1a39f8e3ea672b8c3847eedd12f6e","signature":false,"impliedFormat":1},{"version":"085f552d005479e2e6a7311cdbbe5d8c55c497b4d19274285df161ee9684cd9c","signature":false,"impliedFormat":1},{"version":"37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","signature":false,"impliedFormat":1},{"version":"45650f47bfb376c8a8ed39d4bcda5902ab899a3150029684ee4c10676d9fbaee","signature":false,"impliedFormat":1},{"version":"007faacc9268357caa21d24169f3f3f2497af3e9241308df2d89f6e6d9bb3f2e","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"74cf591a0f63db318651e0e04cb55f8791385f86e987a67fd4d2eaab8191f730","signature":false,"impliedFormat":1},{"version":"5eab9b3dc9b34f185417342436ec3f106898da5f4801992d8ff38ab3aff346b5","signature":false,"impliedFormat":1},{"version":"12ed4559eba17cd977aa0db658d25c4047067444b51acfdcbf38470630642b23","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"f3ffabc95802521e1e4bcba4c88d8615176dc6e09111d920c7a213bdda6e1d65","signature":false,"impliedFormat":1},{"version":"809821b8a065e3234a55b3a9d7846231ed18d66dd749f2494c66288d890daf7f","signature":false,"impliedFormat":1},{"version":"ae56f65caf3be91108707bd8dfbccc2a57a91feb5daabf7165a06a945545ed26","signature":false,"impliedFormat":1},{"version":"a136d5de521da20f31631a0a96bf712370779d1c05b7015d7019a9b2a0446ca9","signature":false,"impliedFormat":1},{"version":"c3b41e74b9a84b88b1dca61ec39eee25c0dbc8e7d519ba11bb070918cfacf656","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"4737a9dc24d0e68b734e6cfbcea0c15a2cfafeb493485e27905f7856988c6b29","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"36d8d3e7506b631c9582c251a2c0b8a28855af3f76719b12b534c6edf952748d","signature":false,"impliedFormat":1},{"version":"1ca69210cc42729e7ca97d3a9ad48f2e9cb0042bada4075b588ae5387debd318","signature":false,"impliedFormat":1},{"version":"f5ebe66baaf7c552cfa59d75f2bfba679f329204847db3cec385acda245e574e","signature":false,"impliedFormat":1},{"version":"ed59add13139f84da271cafd32e2171876b0a0af2f798d0c663e8eeb867732cf","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"b7c5e2ea4a9749097c347454805e933844ed207b6eefec6b7cfd418b5f5f7b28","signature":false,"impliedFormat":1},{"version":"b1810689b76fd473bd12cc9ee219f8e62f54a7d08019a235d07424afbf074d25","signature":false,"impliedFormat":1},{"version":"8caa5c86be1b793cd5f599e27ecb34252c41e011980f7d61ae4989a149ff6ccc","signature":false,"impliedFormat":1},{"version":"f9fd93190acb1ffe0bc0fb395df979452f8d625071e9ffc8636e4dfb86ab2508","signature":false,"impliedFormat":1},{"version":"5f41fd8732a89e940c58ce22206e3df85745feb8983e2b4c6257fb8cbb118493","signature":false,"impliedFormat":1},{"version":"17ed71200119e86ccef2d96b73b02ce8854b76ad6bd21b5021d4269bec527b5f","signature":false,"impliedFormat":1},{"version":"1cfa8647d7d71cb03847d616bd79320abfc01ddea082a49569fda71ac5ece66b","signature":false,"impliedFormat":1},{"version":"bb7a61dd55dc4b9422d13da3a6bb9cc5e89be888ef23bbcf6558aa9726b89a1c","signature":false,"impliedFormat":1},{"version":"db6d2d9daad8a6d83f281af12ce4355a20b9a3e71b82b9f57cddcca0a8964a96","signature":false,"impliedFormat":1},{"version":"cfe4ef4710c3786b6e23dae7c086c70b4f4835a2e4d77b75d39f9046106e83d3","signature":false,"impliedFormat":1},{"version":"cbea99888785d49bb630dcbb1613c73727f2b5a2cf02e1abcaab7bcf8d6bf3c5","signature":false,"impliedFormat":1},{"version":"3a8bddb66b659f6bd2ff641fc71df8a8165bafe0f4b799cc298be5cd3755bb20","signature":false,"impliedFormat":1},{"version":"a86f82d646a739041d6702101afa82dcb935c416dd93cbca7fd754fd0282ce1f","signature":false,"impliedFormat":1},{"version":"2dad084c67e649f0f354739ec7df7c7df0779a28a4f55c97c6b6883ae850d1ce","signature":false,"impliedFormat":1},{"version":"fa5bbc7ab4130dd8cdc55ea294ec39f76f2bc507a0f75f4f873e38631a836ca7","signature":false,"impliedFormat":1},{"version":"df45ca1176e6ac211eae7ddf51336dc075c5314bc5c253651bae639defd5eec5","signature":false,"impliedFormat":1},{"version":"cf86de1054b843e484a3c9300d62fbc8c97e77f168bbffb131d560ca0474d4a8","signature":false,"impliedFormat":1},{"version":"196c960b12253fde69b204aa4fbf69470b26daf7a430855d7f94107a16495ab0","signature":false,"impliedFormat":1},{"version":"ee15ea5dd7a9fc9f5013832e5843031817a880bf0f24f37a29fd8337981aae07","signature":false,"impliedFormat":1},{"version":"bf24f6d35f7318e246010ffe9924395893c4e96d34324cde77151a73f078b9ad","signature":false,"impliedFormat":1},{"version":"ea53732769832d0f127ae16620bd5345991d26bf0b74e85e41b61b27d74ea90f","signature":false,"impliedFormat":1},{"version":"10595c7ff5094dd5b6a959ccb1c00e6a06441b4e10a87bc09c15f23755d34439","signature":false,"impliedFormat":1},{"version":"9620c1ff645afb4a9ab4044c85c26676f0a93e8c0e4b593aea03a89ccb47b6d0","signature":false,"impliedFormat":1},{"version":"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","signature":false,"impliedFormat":1},{"version":"a9af0e608929aaf9ce96bd7a7b99c9360636c31d73670e4af09a09950df97841","signature":false,"impliedFormat":1},{"version":"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","signature":false,"impliedFormat":1},{"version":"c86fe861cf1b4c46a0fb7d74dffe596cf679a2e5e8b1456881313170f092e3fa","signature":false,"impliedFormat":1},{"version":"08ed0b3f0166787f84a6606f80aa3b1388c7518d78912571b203817406e471da","signature":false,"impliedFormat":1},{"version":"47e5af2a841356a961f815e7c55d72554db0c11b4cba4d0caab91f8717846a94","signature":false,"impliedFormat":1},{"version":"65f43099ded6073336e697512d9b80f2d4fec3182b7b2316abf712e84104db00","signature":false,"impliedFormat":1},{"version":"f5f541902bf7ae0512a177295de9b6bcd6809ea38307a2c0a18bfca72212f368","signature":false,"impliedFormat":1},{"version":"b0decf4b6da3ebc52ea0c96095bdfaa8503acc4ac8e9081c5f2b0824835dd3bd","signature":false,"impliedFormat":1},{"version":"ca1b882a105a1972f82cc58e3be491e7d750a1eb074ffd13b198269f57ed9e1b","signature":false,"impliedFormat":1},{"version":"fc3e1c87b39e5ba1142f27ec089d1966da168c04a859a4f6aab64dceae162c2b","signature":false,"impliedFormat":1},{"version":"3b414b99a73171e1c4b7b7714e26b87d6c5cb03d200352da5342ab4088a54c85","signature":false,"impliedFormat":1},{"version":"61888522cec948102eba94d831c873200aa97d00d8989fdfd2a3e0ee75ec65a2","signature":false,"impliedFormat":1},{"version":"4e10622f89fea7b05dd9b52fb65e1e2b5cbd96d4cca3d9e1a60bb7f8a9cb86a1","signature":false,"impliedFormat":1},{"version":"74b2a5e5197bd0f2e0077a1ea7c07455bbea67b87b0869d9786d55104006784f","signature":false,"impliedFormat":1},{"version":"59bf32919de37809e101acffc120596a9e45fdbab1a99de5087f31fdc36e2f11","signature":false,"impliedFormat":1},{"version":"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","signature":false,"impliedFormat":1},{"version":"faa03dffb64286e8304a2ca96dd1317a77db6bfc7b3fb385163648f67e535d77","signature":false,"impliedFormat":1},{"version":"c40c848daad198266370c1c72a7a8c3d18d2f50727c7859fcfefd3ff69a7f288","signature":false,"impliedFormat":1},{"version":"ac60bbee0d4235643cc52b57768b22de8c257c12bd8c2039860540cab1fa1d82","signature":false,"impliedFormat":1},{"version":"6428e6edd944ce6789afdf43f9376c1f2e4957eea34166177625aaff4c0da1a0","signature":false,"impliedFormat":1},{"version":"ada39cbb2748ab2873b7835c90c8d4620723aedf323550e8489f08220e477c7f","signature":false,"impliedFormat":1},{"version":"6e5f5cee603d67ee1ba6120815497909b73399842254fc1e77a0d5cdc51d8c9c","signature":false,"impliedFormat":1},{"version":"8dba67056cbb27628e9b9a1cba8e57036d359dceded0725c72a3abe4b6c79cd4","signature":false,"impliedFormat":1},{"version":"70f3814c457f54a7efe2d9ce9d2686de9250bb42eb7f4c539bd2280a42e52d33","signature":false,"impliedFormat":1},{"version":"154dd2e22e1e94d5bc4ff7726706bc0483760bae40506bdce780734f11f7ec47","signature":false,"impliedFormat":1},{"version":"ef61792acbfa8c27c9bd113f02731e66229f7d3a169e3c1993b508134f1a58e0","signature":false,"impliedFormat":1},{"version":"9c82171d836c47486074e4ca8e059735bf97b205e70b196535b5efd40cbe1bc5","signature":false,"impliedFormat":1},{"version":"0131e203d8560edb39678abe10db42564a068f98c4ebd1ed9ffe7279c78b3c81","signature":false,"impliedFormat":1},{"version":"f6404e7837b96da3ea4d38c4f1a3812c96c9dcdf264e93d5bdb199f983a3ef4b","signature":false,"impliedFormat":1},{"version":"c5426dbfc1cf90532f66965a7aa8c1136a78d4d0f96d8180ecbfc11d7722f1a5","signature":false,"impliedFormat":1},{"version":"65a15fc47900787c0bd18b603afb98d33ede930bed1798fc984d5ebb78b26cf9","signature":false,"impliedFormat":1},{"version":"9d202701f6e0744adb6314d03d2eb8fc994798fc83d91b691b75b07626a69801","signature":false,"impliedFormat":1},{"version":"de9d2df7663e64e3a91bf495f315a7577e23ba088f2949d5ce9ec96f44fba37d","signature":false,"impliedFormat":1},{"version":"c7af78a2ea7cb1cd009cfb5bdb48cd0b03dad3b54f6da7aab615c2e9e9d570c5","signature":false,"impliedFormat":1},{"version":"1ee45496b5f8bdee6f7abc233355898e5bf9bd51255db65f5ff7ede617ca0027","signature":false,"impliedFormat":1},{"version":"8b8f00491431fe82f060dfe8c7f2180a9fb239f3d851527db909b83230e75882","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"db01d18853469bcb5601b9fc9826931cc84cc1a1944b33cad76fd6f1e3d8c544","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"dba114fb6a32b355a9cfc26ca2276834d72fe0e94cd2c3494005547025015369","signature":false,"impliedFormat":1},{"version":"903e299a28282fa7b714586e28409ed73c3b63f5365519776bf78e8cf173db36","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"fa6c12a7c0f6b84d512f200690bfc74819e99efae69e4c95c4cd30f6884c526e","signature":false,"impliedFormat":1},{"version":"f1c32f9ce9c497da4dc215c3bc84b722ea02497d35f9134db3bb40a8d918b92b","signature":false,"impliedFormat":1},{"version":"b73c319af2cc3ef8f6421308a250f328836531ea3761823b4cabbd133047aefa","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"e433b0337b8106909e7953015e8fa3f2d30797cea27141d1c5b135365bb975a6","signature":false,"impliedFormat":1},{"version":"dd3900b24a6a8745efeb7ad27629c0f8a626470ac229c1d73f1fe29d67e44dca","signature":false,"impliedFormat":1},{"version":"ddff7fc6edbdc5163a09e22bf8df7bef75f75369ebd7ecea95ba55c4386e2441","signature":false,"impliedFormat":1},{"version":"106c6025f1d99fd468fd8bf6e5bda724e11e5905a4076c5d29790b6c3745e50c","signature":false,"impliedFormat":1},{"version":"ec29be0737d39268696edcec4f5e97ce26f449fa9b7afc2f0f99a86def34a418","signature":false,"impliedFormat":1},{"version":"aeab39e8e0b1a3b250434c3b2bb8f4d17bbec2a9dbce5f77e8a83569d3d2cbc2","signature":false,"impliedFormat":1},{"version":"ec6cba1c02c675e4dd173251b156792e8d3b0c816af6d6ad93f1a55d674591aa","signature":false,"impliedFormat":1},{"version":"b620391fe8060cf9bedc176a4d01366e6574d7a71e0ac0ab344a4e76576fcbb8","signature":false,"impliedFormat":1},{"version":"d729408dfde75b451530bcae944cf89ee8277e2a9df04d1f62f2abfd8b03c1e1","signature":false,"impliedFormat":1},{"version":"e15d3c84d5077bb4a3adee4c791022967b764dc41cb8fa3cfa44d4379b2c95f5","signature":false,"impliedFormat":1},{"version":"5f58e28cd22e8fc1ac1b3bc6b431869f1e7d0b39e2c21fbf79b9fa5195a85980","signature":false,"impliedFormat":1},{"version":"e1fc1a1045db5aa09366be2b330e4ce391550041fc3e925f60998ca0b647aa97","signature":false,"impliedFormat":1},{"version":"63533978dcda286422670f6e184ac516805a365fb37a086eeff4309e812f1402","signature":false,"impliedFormat":1},{"version":"43ba4f2fa8c698f5c304d21a3ef596741e8e85a810b7c1f9b692653791d8d97a","signature":false,"impliedFormat":1},{"version":"31fb49ef3aa3d76f0beb644984e01eab0ea222372ea9b49bb6533be5722d756c","signature":false,"impliedFormat":1},{"version":"33cd131e1461157e3e06b06916b5176e7a8ec3fce15a5cfe145e56de744e07d2","signature":false,"impliedFormat":1},{"version":"889ef863f90f4917221703781d9723278db4122d75596b01c429f7c363562b86","signature":false,"impliedFormat":1},{"version":"3556cfbab7b43da96d15a442ddbb970e1f2fc97876d055b6555d86d7ac57dae5","signature":false,"impliedFormat":1},{"version":"437751e0352c6e924ddf30e90849f1d9eb00ca78c94d58d6a37202ec84eb8393","signature":false,"impliedFormat":1},{"version":"48e8af7fdb2677a44522fd185d8c87deff4d36ee701ea003c6c780b1407a1397","signature":false,"impliedFormat":1},{"version":"d11308de5a36c7015bb73adb5ad1c1bdaac2baede4cc831a05cf85efa3cc7f2f","signature":false,"impliedFormat":1},{"version":"38e4684c22ed9319beda6765bab332c724103d3a966c2e5e1c5a49cf7007845f","signature":false,"impliedFormat":1},{"version":"f9812cfc220ecf7557183379531fa409acd249b9e5b9a145d0d52b76c20862de","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"e650298721abc4f6ae851e60ae93ee8199791ceec4b544c3379862f81f43178c","signature":false,"impliedFormat":1},{"version":"2e4f37ffe8862b14d8e24ae8763daaa8340c0df0b859d9a9733def0eee7562d9","signature":false,"impliedFormat":1},{"version":"13283350547389802aa35d9f2188effaeac805499169a06ef5cd77ce2a0bd63f","signature":false,"impliedFormat":1},{"version":"680793958f6a70a44c8d9ae7d46b7a385361c69ac29dcab3ed761edce1c14ab8","signature":false,"impliedFormat":1},{"version":"6ac6715916fa75a1f7ebdfeacac09513b4d904b667d827b7535e84ff59679aff","signature":false,"impliedFormat":1},{"version":"42c169fb8c2d42f4f668c624a9a11e719d5d07dacbebb63cbcf7ef365b0a75b3","signature":false,"impliedFormat":1},{"version":"913ddbba170240070bd5921b8f33ea780021bdf42fbdfcd4fcb2691b1884ddde","signature":false,"impliedFormat":1},{"version":"b4e6d416466999ff40d3fe5ceb95f7a8bfb7ac2262580287ac1a8391e5362431","signature":false,"impliedFormat":1},{"version":"5fe23bd829e6be57d41929ac374ee9551ccc3c44cee893167b7b5b77be708014","signature":false,"impliedFormat":1},{"version":"0a626484617019fcfbfc3c1bc1f9e84e2913f1adb73692aa9075817404fb41a1","signature":false,"impliedFormat":1},{"version":"438c7513b1df91dcef49b13cd7a1c4720f91a36e88c1df731661608b7c055f10","signature":false,"impliedFormat":1},{"version":"cf185cc4a9a6d397f416dd28cca95c227b29f0f27b160060a95c0e5e36cda865","signature":false,"impliedFormat":1},{"version":"0086f3e4ad898fd7ca56bb223098acfacf3fa065595182aaf0f6c4a6a95e6fbd","signature":false,"impliedFormat":1},{"version":"efaa078e392f9abda3ee8ade3f3762ab77f9c50b184e6883063a911742a4c96a","signature":false,"impliedFormat":1},{"version":"54a8bb487e1dc04591a280e7a673cdfb272c83f61e28d8a64cf1ac2e63c35c51","signature":false,"impliedFormat":1},{"version":"021a9498000497497fd693dd315325484c58a71b5929e2bbb91f419b04b24cea","signature":false,"impliedFormat":1},{"version":"9385cdc09850950bc9b59cca445a3ceb6fcca32b54e7b626e746912e489e535e","signature":false,"impliedFormat":1},{"version":"2894c56cad581928bb37607810af011764a2f511f575d28c9f4af0f2ef02d1ab","signature":false,"impliedFormat":1},{"version":"0a72186f94215d020cb386f7dca81d7495ab6c17066eb07d0f44a5bf33c1b21a","signature":false,"impliedFormat":1},{"version":"84124384abae2f6f66b7fbfc03862d0c2c0b71b826f7dbf42c8085d31f1d3f95","signature":false,"impliedFormat":1},{"version":"63a8e96f65a22604eae82737e409d1536e69a467bb738bec505f4f97cce9d878","signature":false,"impliedFormat":1},{"version":"3fd78152a7031315478f159c6a5872c712ece6f01212c78ea82aef21cb0726e2","signature":false,"impliedFormat":1},{"version":"b01bd582a6e41457bc56e6f0f9de4cb17f33f5f3843a7cf8210ac9c18472fb0f","signature":false,"impliedFormat":1},{"version":"58b49e5c1def740360b5ae22ae2405cfac295fee74abd88d74ac4ea42502dc03","signature":false,"impliedFormat":1},{"version":"512fc15cca3a35b8dbbf6e23fe9d07e6f87ad03c895acffd3087ce09f352aad0","signature":false,"impliedFormat":1},{"version":"9a0946d15a005832e432ea0cd4da71b57797efb25b755cc07f32274296d62355","signature":false,"impliedFormat":1},{"version":"a52ff6c0a149e9f370372fc3c715d7f2beee1f3bab7980e271a7ab7d313ec677","signature":false,"impliedFormat":1},{"version":"fd933f824347f9edd919618a76cdb6a0c0085c538115d9a287fa0c7f59957ab3","signature":false,"impliedFormat":1},{"version":"6ac6715916fa75a1f7ebdfeacac09513b4d904b667d827b7535e84ff59679aff","signature":false,"impliedFormat":1},{"version":"6a1aa3e55bdc50503956c5cd09ae4cd72e3072692d742816f65c66ca14f4dfdd","signature":false,"impliedFormat":1},{"version":"ab75cfd9c4f93ffd601f7ca1753d6a9d953bbedfbd7a5b3f0436ac8a1de60dfa","signature":false,"impliedFormat":1},{"version":"f95180f03d827525ca4f990f49e17ec67198c316dd000afbe564655141f725cd","signature":false,"impliedFormat":1},{"version":"b73cbf0a72c8800cf8f96a9acfe94f3ad32ca71342a8908b8ae484d61113f647","signature":false,"impliedFormat":1},{"version":"bae6dd176832f6423966647382c0d7ba9e63f8c167522f09a982f086cd4e8b23","signature":false,"impliedFormat":1},{"version":"1364f64d2fb03bbb514edc42224abd576c064f89be6a990136774ecdd881a1da","signature":false,"impliedFormat":1},{"version":"c9958eb32126a3843deedda8c22fb97024aa5d6dd588b90af2d7f2bfac540f23","signature":false,"impliedFormat":1},{"version":"950fb67a59be4c2dbe69a5786292e60a5cb0e8612e0e223537784c731af55db1","signature":false,"impliedFormat":1},{"version":"e927c2c13c4eaf0a7f17e6022eee8519eb29ef42c4c13a31e81a611ab8c95577","signature":false,"impliedFormat":1},{"version":"07ca44e8d8288e69afdec7a31fa408ce6ab90d4f3d620006701d5544646da6aa","signature":false,"impliedFormat":1},{"version":"70246ad95ad8a22bdfe806cb5d383a26c0c6e58e7207ab9c431f1cb175aca657","signature":false,"impliedFormat":1},{"version":"f00f3aa5d64ff46e600648b55a79dcd1333458f7a10da2ed594d9f0a44b76d0b","signature":false,"impliedFormat":1},{"version":"772d8d5eb158b6c92412c03228bd9902ccb1457d7a705b8129814a5d1a6308fc","signature":false,"impliedFormat":1},{"version":"4e4475fba4ed93a72f167b061cd94a2e171b82695c56de9899275e880e06ba41","signature":false,"impliedFormat":1},{"version":"97c5f5d580ab2e4decd0a3135204050f9b97cd7908c5a8fbc041eadede79b2fa","signature":false,"impliedFormat":1},{"version":"c99a3a5f2215d5b9d735aa04cec6e61ed079d8c0263248e298ffe4604d4d0624","signature":false,"impliedFormat":1},{"version":"49b2375c586882c3ac7f57eba86680ff9742a8d8cb2fe25fe54d1b9673690d41","signature":false,"impliedFormat":1},{"version":"802e797bcab5663b2c9f63f51bdf67eff7c41bc64c0fd65e6da3e7941359e2f7","signature":false,"impliedFormat":1},{"version":"847e160d709c74cc714fbe1f99c41d3425b74cd47b1be133df1623cd87014089","signature":false,"impliedFormat":1},{"version":"9fee04f1e1afa50524862289b9f0b0fdc3735b80e2a0d684cec3b9ff3d94cecc","signature":false,"impliedFormat":1},{"version":"5cdc27fbc5c166fc5c763a30ac21cbac9859dc5ba795d3230db6d4e52a1965bb","signature":false,"impliedFormat":1},{"version":"6459054aabb306821a043e02b89d54da508e3a6966601a41e71c166e4ea1474f","signature":false,"impliedFormat":1},{"version":"f416c9c3eee9d47ff49132c34f96b9180e50485d435d5748f0e8b72521d28d2e","signature":false,"impliedFormat":1},{"version":"05c97cddbaf99978f83d96de2d8af86aded9332592f08ce4a284d72d0952c391","signature":false,"impliedFormat":1},{"version":"14e5cdec6f8ae82dfd0694e64903a0a54abdfe37e1d966de3d4128362acbf35f","signature":false,"impliedFormat":1},{"version":"bbc183d2d69f4b59fd4dd8799ffdf4eb91173d1c4ad71cce91a3811c021bf80c","signature":false,"impliedFormat":1},{"version":"7b6ff760c8a240b40dab6e4419b989f06a5b782f4710d2967e67c695ef3e93c4","signature":false,"impliedFormat":1},{"version":"8dbc4134a4b3623fc476be5f36de35c40f2768e2e3d9ed437e0d5f1c4cd850f6","signature":false,"impliedFormat":1},{"version":"4e06330a84dec7287f7ebdd64978f41a9f70a668d3b5edc69d5d4a50b9b376bb","signature":false,"impliedFormat":1},{"version":"65bfa72967fbe9fc33353e1ac03f0480aa2e2ea346d61ff3ea997dfd850f641a","signature":false,"impliedFormat":1},{"version":"c06f0bb92d1a1a5a6c6e4b5389a5664d96d09c31673296cb7da5fe945d54d786","signature":false,"impliedFormat":1},{"version":"f974e4a06953682a2c15d5bd5114c0284d5abf8bc0fe4da25cb9159427b70072","signature":false,"impliedFormat":1},{"version":"872caaa31423f4345983d643e4649fb30f548e9883a334d6d1c5fff68ede22d4","signature":false,"impliedFormat":1},{"version":"94404c4a878fe291e7578a2a80264c6f18e9f1933fbb57e48f0eb368672e389c","signature":false,"impliedFormat":1},{"version":"5c1b7f03aa88be854bc15810bfd5bd5a1943c5a7620e1c53eddd2a013996343e","signature":false,"impliedFormat":1},{"version":"09dfc64fcd6a2785867f2368419859a6cc5a8d4e73cbe2538f205b1642eb0f51","signature":false,"impliedFormat":1},{"version":"bcf6f0a323653e72199105a9316d91463ad4744c546d1271310818b8cef7c608","signature":false,"impliedFormat":1},{"version":"01aa917531e116485beca44a14970834687b857757159769c16b228eb1e49c5f","signature":false,"impliedFormat":1},{"version":"351475f9c874c62f9b45b1f0dc7e2704e80dfd5f1af83a3a9f841f9dfe5b2912","signature":false,"impliedFormat":1},{"version":"ac457ad39e531b7649e7b40ee5847606eac64e236efd76c5d12db95bf4eacd17","signature":false,"impliedFormat":1},{"version":"187a6fdbdecb972510b7555f3caacb44b58415da8d5825d03a583c4b73fde4cf","signature":false,"impliedFormat":1},{"version":"d4c3250105a612202289b3a266bb7e323db144f6b9414f9dea85c531c098b811","signature":false,"impliedFormat":1},{"version":"95b444b8c311f2084f0fb51c616163f950fb2e35f4eaa07878f313a2d36c98a4","signature":false,"impliedFormat":1},{"version":"741067675daa6d4334a2dc80a4452ca3850e89d5852e330db7cb2b5f867173b1","signature":false,"impliedFormat":1},{"version":"f8acecec1114f11690956e007d920044799aefeb3cece9e7f4b1f8a1d542b2c9","signature":false,"impliedFormat":1},{"version":"178071ccd043967a58c5d1a032db0ddf9bd139e7920766b537d9783e88eb615e","signature":false,"impliedFormat":1},{"version":"3a17f09634c50cce884721f54fd9e7b98e03ac505889c560876291fcf8a09e90","signature":false,"impliedFormat":1},{"version":"32531dfbb0cdc4525296648f53b2b5c39b64282791e2a8c765712e49e6461046","signature":false,"impliedFormat":1},{"version":"0ce1b2237c1c3df49748d61568160d780d7b26693bd9feb3acb0744a152cd86d","signature":false,"impliedFormat":1},{"version":"e489985388e2c71d3542612685b4a7db326922b57ac880f299da7026a4e8a117","signature":false,"impliedFormat":1},{"version":"5cad4158616d7793296dd41e22e1257440910ea8d01c7b75045d4dfb20c5a41a","signature":false,"impliedFormat":1},{"version":"04d3aad777b6af5bd000bfc409907a159fe77e190b9d368da4ba649cdc28d39e","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"74efc1d6523bd57eb159c18d805db4ead810626bc5bc7002a2c7f483044b2e0f","signature":false,"impliedFormat":1},{"version":"19252079538942a69be1645e153f7dbbc1ef56b4f983c633bf31fe26aeac32cd","signature":false,"impliedFormat":1},{"version":"bc11f3ac00ac060462597add171220aed628c393f2782ac75dd29ff1e0db871c","signature":false,"impliedFormat":1},{"version":"616775f16134fa9d01fc677ad3f76e68c051a056c22ab552c64cc281a9686790","signature":false,"impliedFormat":1},{"version":"65c24a8baa2cca1de069a0ba9fba82a173690f52d7e2d0f1f7542d59d5eb4db0","signature":false,"impliedFormat":1},{"version":"f9fe6af238339a0e5f7563acee3178f51db37f32a2e7c09f85273098cee7ec49","signature":false,"impliedFormat":1},{"version":"3b0b1d352b8d2e47f1c4df4fb0678702aee071155b12ef0185fce9eb4fa4af1e","signature":false,"impliedFormat":1},{"version":"77e71242e71ebf8528c5802993697878f0533db8f2299b4d36aa015bae08a79c","signature":false,"impliedFormat":1},{"version":"a344403e7a7384e0e7093942533d309194ad0a53eca2a3100c0b0ab4d3932773","signature":false,"impliedFormat":1},{"version":"b7fff2d004c5879cae335db8f954eb1d61242d9f2d28515e67902032723caeab","signature":false,"impliedFormat":1},{"version":"5f3dc10ae646f375776b4e028d2bed039a93eebbba105694d8b910feebbe8b9c","signature":false,"impliedFormat":1},{"version":"bb18bf4a61a17b4a6199eb3938ecfa4a59eb7c40843ad4a82b975ab6f7e3d925","signature":false,"impliedFormat":1},{"version":"4545c1a1ceca170d5d83452dd7c4994644c35cf676a671412601689d9a62da35","signature":false,"impliedFormat":1},{"version":"e9b6fc05f536dfddcdc65dbcf04e09391b1c968ab967382e48924f5cb90d88e1","signature":false,"impliedFormat":1},{"version":"a2d648d333cf67b9aeac5d81a1a379d563a8ffa91ddd61c6179f68de724260ff","signature":false,"impliedFormat":1},{"version":"2b664c3cc544d0e35276e1fb2d4989f7d4b4027ffc64da34ec83a6ccf2e5c528","signature":false,"impliedFormat":1},{"version":"a3f41ed1b4f2fc3049394b945a68ae4fdefd49fa1739c32f149d32c0545d67f5","signature":false,"impliedFormat":1},{"version":"3cd8f0464e0939b47bfccbb9bb474a6d87d57210e304029cd8eb59c63a81935d","signature":false,"impliedFormat":1},{"version":"47699512e6d8bebf7be488182427189f999affe3addc1c87c882d36b7f2d0b0e","signature":false,"impliedFormat":1},{"version":"3026abd48e5e312f2328629ede6e0f770d21c3cd32cee705c450e589d015ee09","signature":false,"impliedFormat":1},{"version":"8b140b398a6afbd17cc97c38aea5274b2f7f39b1ae5b62952cfe65bf493e3e75","signature":false,"impliedFormat":1},{"version":"7663d2c19ce5ef8288c790edba3d45af54e58c84f1b37b1249f6d49d962f3d91","signature":false,"impliedFormat":1},{"version":"5cce3b975cdb72b57ae7de745b3c5de5790781ee88bcb41ba142f07c0fa02e97","signature":false,"impliedFormat":1},{"version":"00bd6ebe607246b45296aa2b805bd6a58c859acecda154bfa91f5334d7c175c6","signature":false,"impliedFormat":1},{"version":"ad036a85efcd9e5b4f7dd5c1a7362c8478f9a3b6c3554654ca24a29aa850a9c5","signature":false,"impliedFormat":1},{"version":"fedebeae32c5cdd1a85b4e0504a01996e4a8adf3dfa72876920d3dd6e42978e7","signature":false,"impliedFormat":1},{"version":"0d28b974a7605c4eda20c943b3fa9ae16cb452c1666fc9b8c341b879992c7612","signature":false,"impliedFormat":1},{"version":"cdf21eee8007e339b1b9945abf4a7b44930b1d695cc528459e68a3adc39a622e","signature":false,"impliedFormat":1},{"version":"db036c56f79186da50af66511d37d9fe77fa6793381927292d17f81f787bb195","signature":false,"impliedFormat":1},{"version":"87ac2fb61e629e777f4d161dff534c2023ee15afd9cb3b1589b9b1f014e75c58","signature":false,"impliedFormat":1},{"version":"13c8b4348db91e2f7d694adc17e7438e6776bc506d5c8f5de9ad9989707fa3fe","signature":false,"impliedFormat":1},{"version":"3c1051617aa50b38e9efaabce25e10a5dd9b1f42e372ef0e8a674076a68742ed","signature":false,"impliedFormat":1},{"version":"07a3e20cdcb0f1182f452c0410606711fbea922ca76929a41aacb01104bc0d27","signature":false,"impliedFormat":1},{"version":"1de80059b8078ea5749941c9f863aa970b4735bdbb003be4925c853a8b6b4450","signature":false,"impliedFormat":1},{"version":"1d079c37fa53e3c21ed3fa214a27507bda9991f2a41458705b19ed8c2b61173d","signature":false,"impliedFormat":1},{"version":"4cd4b6b1279e9d744a3825cbd7757bbefe7f0708f3f1069179ad535f19e8ed2c","signature":false,"impliedFormat":1},{"version":"5835a6e0d7cd2738e56b671af0e561e7c1b4fb77751383672f4b009f4e161d70","signature":false,"impliedFormat":1},{"version":"c0eeaaa67c85c3bb6c52b629ebbfd3b2292dc67e8c0ffda2fc6cd2f78dc471e6","signature":false,"impliedFormat":1},{"version":"4b7f74b772140395e7af67c4841be1ab867c11b3b82a51b1aeb692822b76c872","signature":false,"impliedFormat":1},{"version":"27be6622e2922a1b412eb057faa854831b95db9db5035c3f6d4b677b902ab3b7","signature":false,"impliedFormat":1},{"version":"b95a6f019095dd1d48fd04965b50dfd63e5743a6e75478343c46d2582a5132bf","signature":false,"impliedFormat":99},{"version":"c2008605e78208cfa9cd70bd29856b72dda7ad89df5dc895920f8e10bcb9cd0a","signature":false,"impliedFormat":99},{"version":"b97cb5616d2ab82a98ec9ada7b9e9cabb1f5da880ec50ea2b8dc5baa4cbf3c16","signature":false,"impliedFormat":99},{"version":"d23df9ff06ae8bf1dcb7cc933e97ae7da418ac77749fecee758bb43a8d69f840","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"040c71dde2c406f869ad2f41e8d4ce579cc60c8dbe5aa0dd8962ac943b846572","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"3586f5ea3cc27083a17bd5c9059ede9421d587286d5a47f4341a4c2d00e4fa91","signature":false,"impliedFormat":1},{"version":"a6df929821e62f4719551f7955b9f42c0cd53c1370aec2dd322e24196a7dfe33","signature":false,"impliedFormat":1},{"version":"b789bf89eb19c777ed1e956dbad0925ca795701552d22e68fd130a032008b9f9","signature":false,"impliedFormat":1},{"version":"9dd9d642cdb87d4d5b3173217e0c45429b3e47a6f5cf5fb0ead6c644ec5fed01","signature":false},{"version":"e482174f15675678363b9a4ed12113ca45d18eee41e8e678deb0e824be29d3e7","signature":false,"affectsGlobalScope":true},{"version":"ce99ae8ab80cdc65e63c946ec05e7b7c0f847b8153555139add78d25f76dc83a","signature":false},{"version":"d8ced93a8044dc86b5922971249910c45f93b588eb9d621aa8d7d854f9cdc819","signature":false},{"version":"8dbef3a76dc1979412d1f2a7d685a614d09bf803d2c8ff6983e2fbe394a59aee","signature":false},{"version":"3ee18c7abaf5a829f0430ce4f7a0769e9953cbe19cdac28b43272d7b829fa255","signature":false},{"version":"5b0db3eecb54b662a0df219dbfce655675980715bd48a0010ea3b019d22d2f3b","signature":false},{"version":"117179c3e83bcb6135ab23f4c7f23c2873c111e2fd4fea91df6c4cce620ec977","signature":false},{"version":"370f98a39917baa5b5c1484f9e87d6544f568d9e90c5ddfcda4c2bdf86f16e18","signature":false},{"version":"e5fab9363dd130c193e1877d1f152809254adf1303e41175d83f49a46260b180","signature":false},{"version":"6c05d0fcee91437571513c404e62396ee798ff37a2d8bef2104accdc79deb9c0","signature":false,"impliedFormat":1},{"version":"cb5eaa5ad51d596beda5a76732641b7dcf9e26acae7b20919a811d7b38d7c03a","signature":false},{"version":"868089c4835bcfc56985ec7b898e93b409f4c985a73d70589b7b0e2d7d6c5352","signature":false},{"version":"5df078050b57fe7666b0c924cfb91bff348b5f957c8dbd736fe362efba00a9de","signature":false},{"version":"a644de050a39f1628968a6bc4c9c975a5129d0e3874a3c033f7e9b0847d92c3e","signature":false},{"version":"543f32bf89f7aee10af7e597b17bdcf9c76b83b9f4e495243cbf1b2ad4cd84cb","signature":false},{"version":"e14aa6e21dff7cbaf54884d0973e89758e571f7546899fa02b6e87a10c660d20","signature":false},{"version":"721b736b78ca190e99a4e1b125b3d14b4e72a94c9c54ceaf77524e11a4094dc8","signature":false},{"version":"1d99fe0d2ab957f8ce36d7cadf33e4a8337dd918a3afa480dd6603f80fde1094","signature":false},{"version":"f7886bcfa6587f307aa8045d6f9861f319808bbc59f6c89f1ba40a19be648ec5","signature":false},{"version":"288e514b408582dbbe0ebedfe7620f92b65eefacd03c66aba34a0504cf400ccb","signature":false},{"version":"dd500fb85312298d9c50675e8005734324eb7eef4dc49703f5312c185152e7ca","signature":false},{"version":"d5876e27f72a8708c4c6705699a5ca0c42e3133bee3b670ef559c6b645851c1e","signature":false},{"version":"83d095737dda920dcb9eb84575ac1baecd0612a7fd2f6d4e4d3e129202c1a36d","signature":false},{"version":"6392353adcff7db02a3f5dcacb5637b791dbbcb76125aac3075da2519af9785a","signature":false,"impliedFormat":99},{"version":"1f3952b74b8c766a2e602a0ba2db19d3d872d00bab4e01746c6b7229c585086c","signature":false,"impliedFormat":99},{"version":"03608eab2e6c43d1844fcbeed6e140e089c78ba8764a9651fd4747aa91fc507f","signature":false},{"version":"9fa4f9fde67afe4bef8157c58de7690809173f98c72463526cd48964b165080e","signature":false},{"version":"30f1120a0f581ce98aab37f1899e5a7981202dc38e8a671ea04222748acb8249","signature":false},{"version":"e9d654ec9a79d49238e0a996c78508a4eaf889d6b16a744cf4e22126b0dc2e3a","signature":false},{"version":"7ecbfcab0d7422a8fba7e8b0afb98ab1f6076e129fb4647bcab89ba05ca80931","signature":false},{"version":"9c9a70bfe4ddc2e08724ac0e7c19d5d17fb10817bd8ccd880eea7be456f4dd9a","signature":false},{"version":"2ab5d412ffa57dbca06de472201ddaea1c41b8a515c74667b7059bf334cbb20f","signature":false},{"version":"034d31e472e4e70878fdac24f6314c3355b5b065c3eba828a75f824a83c20341","signature":false},{"version":"3c0c4a0730704889504deb1457bd552134b43f6e2367cfa0d1378b881e779c81","signature":false},{"version":"c67c285034e735a86d94459e59d97659641056e932d053f21a164bede16d14a3","signature":false},{"version":"76e93d96bc19a32eb66e4fd28c96e4d3ded687202893eabf550f835230add683","signature":false},{"version":"3913d85082a4eda81a195bacbd18a93aeb39103bf930ad397c69e1f7521ddf8d","signature":false},{"version":"623de97f632c3c7091a19759e01b1764a3a64aac3ae2ea890c410cc37fd4258e","signature":false},{"version":"ba9ca691d5427129c4c651d308fc027aa3bccdb6484ec90f016a4f2a77f9e7b9","signature":false},{"version":"2c04659a5a9897aee5307e3aad32283ee831ffc7918fcc2a4b7f50065ccfc25b","signature":false},{"version":"96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","signature":false,"impliedFormat":1}],"root":[[410,419],[421,433],[436,450]],"options":{"allowJs":true,"composite":false,"declarationMap":false,"emitDeclarationOnly":false,"esModuleInterop":true,"jsx":1,"module":99,"skipLibCheck":true,"strict":true,"tsBuildInfoFile":"./.tsbuildinfo"},"referencedMap":[[443,1],[444,2],[445,3],[446,4],[442,5],[447,6],[448,7],[449,8],[450,9],[410,10],[363,11],[451,11],[142,12],[143,12],[144,13],[99,14],[145,15],[146,16],[147,17],[94,11],[97,18],[95,11],[96,11],[148,19],[149,20],[150,21],[151,22],[152,23],[153,24],[154,24],[155,25],[156,26],[157,27],[158,28],[100,11],[98,11],[159,29],[160,30],[161,31],[193,32],[162,33],[163,34],[164,35],[165,36],[166,37],[167,38],[168,39],[169,40],[170,41],[171,42],[172,42],[173,43],[174,11],[175,44],[177,45],[176,46],[178,47],[179,48],[180,49],[181,50],[182,51],[183,52],[184,53],[185,54],[186,55],[187,56],[188,57],[189,58],[190,59],[101,11],[102,11],[103,11],[141,60],[191,61],[192,62],[86,11],[198,63],[199,64],[197,65],[195,66],[196,67],[84,11],[87,68],[286,65],[85,11],[435,69],[434,11],[420,65],[93,70],[366,71],[370,72],[372,73],[219,74],[233,75],[337,76],[265,11],[340,77],[301,78],[310,79],[338,80],[220,81],[264,11],[266,82],[339,83],[240,84],[221,85],[245,84],[234,84],[204,84],[292,86],[293,87],[209,11],[289,88],[294,89],[381,90],[287,89],[382,91],[271,11],[290,92],[394,93],[393,94],[296,89],[392,11],[390,11],[391,95],[291,65],[278,96],[279,97],[288,98],[305,99],[306,100],[295,101],[273,102],[274,103],[385,104],[388,105],[252,106],[251,107],[250,108],[397,65],[249,109],[225,11],[400,11],[403,11],[402,65],[404,110],[200,11],[331,11],[232,111],[202,112],[354,11],[355,11],[357,11],[360,113],[356,11],[358,114],[359,114],[218,11],[231,11],[365,115],[373,116],[377,117],[214,118],[281,119],[280,11],[272,102],[300,120],[298,121],[297,11],[299,11],[304,122],[276,123],[213,124],[238,125],[328,126],[205,127],[212,128],[201,76],[342,129],[352,130],[341,11],[351,131],[239,11],[223,132],[319,133],[318,11],[325,134],[327,135],[320,136],[324,137],[326,134],[323,136],[322,134],[321,136],[261,138],[246,138],[313,139],[247,139],[207,140],[206,11],[317,141],[316,142],[315,143],[314,144],[208,145],[285,146],[302,147],[284,148],[309,149],[311,150],[308,148],[241,145],[194,11],[329,151],[267,152],[303,11],[350,153],[270,154],[345,155],[211,11],[346,156],[348,157],[349,158],[332,11],[344,127],[243,159],[330,160],[353,161],[215,11],[217,11],[222,162],[312,163],[210,164],[216,11],[269,165],[268,166],[224,167],[277,168],[275,169],[226,170],[228,171],[401,11],[227,172],[229,173],[368,11],[367,11],[369,11],[399,11],[230,174],[283,65],[92,11],[307,175],[253,11],[263,176],[242,11],[375,65],[384,177],[260,65],[379,89],[259,178],[362,179],[258,177],[203,11],[386,180],[256,65],[257,65],[248,11],[262,11],[255,181],[254,182],[244,183],[237,101],[347,11],[236,184],[235,11],[371,11],[282,65],[364,185],[83,11],[91,186],[88,65],[89,11],[90,11],[343,187],[336,188],[335,11],[334,189],[333,11],[374,190],[376,191],[378,192],[380,193],[383,194],[409,195],[387,195],[408,196],[389,197],[395,198],[396,199],[398,200],[405,201],[407,11],[406,202],[361,203],[81,11],[82,11],[13,11],[14,11],[16,11],[15,11],[2,11],[17,11],[18,11],[19,11],[20,11],[21,11],[22,11],[23,11],[24,11],[3,11],[25,11],[26,11],[4,11],[27,11],[31,11],[28,11],[29,11],[30,11],[32,11],[33,11],[34,11],[5,11],[35,11],[36,11],[37,11],[38,11],[6,11],[42,11],[39,11],[40,11],[41,11],[43,11],[7,11],[44,11],[49,11],[50,11],[45,11],[46,11],[47,11],[48,11],[8,11],[54,11],[51,11],[52,11],[53,11],[55,11],[9,11],[56,11],[57,11],[58,11],[60,11],[59,11],[61,11],[62,11],[10,11],[63,11],[64,11],[65,11],[11,11],[66,11],[67,11],[68,11],[69,11],[70,11],[1,11],[71,11],[72,11],[12,11],[76,11],[74,11],[79,11],[78,11],[73,11],[77,11],[75,11],[80,11],[119,204],[129,205],[118,204],[139,206],[110,207],[109,208],[138,202],[132,209],[137,210],[112,211],[126,212],[111,213],[135,214],[107,215],[106,202],[136,216],[108,217],[113,218],[114,11],[117,218],[104,11],[140,219],[130,220],[121,221],[122,222],[124,223],[120,224],[123,225],[133,202],[115,226],[116,227],[125,228],[105,229],[128,220],[127,218],[131,11],[134,230],[412,231],[429,232],[431,233],[424,234],[432,235],[428,236],[433,237],[436,238],[439,239],[440,240],[418,235],[438,241],[419,242],[430,65],[437,241],[425,243],[423,244],[441,241],[427,243],[426,245],[421,246],[422,247],[417,242],[413,65],[414,11],[415,11],[416,11],[411,11]],"changeFileSet":[443,444,445,446,452,442,447,448,449,450,410,363,451,142,143,144,99,145,146,147,94,97,95,96,148,149,150,151,152,153,154,155,156,157,158,100,98,159,160,161,193,162,163,164,165,166,167,168,169,170,171,172,173,174,175,177,176,178,179,180,181,182,183,184,185,186,187,188,189,190,101,102,103,141,191,192,86,198,199,197,195,196,84,87,286,85,435,434,420,93,366,370,372,219,233,337,265,340,301,310,338,220,264,266,339,240,221,245,234,204,292,293,209,289,294,381,287,382,271,290,394,393,296,392,390,391,291,278,279,288,305,306,295,273,274,385,388,252,251,250,397,249,225,400,403,402,404,200,331,232,202,354,355,357,360,356,358,359,218,231,365,373,377,214,281,280,272,300,298,297,299,304,276,213,238,328,205,212,201,342,352,341,351,239,223,319,318,325,327,320,324,326,323,322,321,261,246,313,247,207,206,317,316,315,314,208,285,302,284,309,311,308,241,194,329,267,303,350,270,345,211,346,348,349,332,344,243,330,353,215,217,222,312,210,216,269,268,224,277,275,226,228,401,227,229,368,367,369,399,230,283,92,307,253,263,242,375,384,260,379,259,362,258,203,386,256,257,248,262,255,254,244,237,347,236,235,371,282,364,83,91,88,89,90,343,336,335,334,333,374,376,378,380,383,409,387,408,389,395,396,398,405,407,406,361,81,82,13,14,16,15,2,17,18,19,20,21,22,23,24,3,25,26,4,27,31,28,29,30,32,33,34,5,35,36,37,38,6,42,39,40,41,43,7,44,49,50,45,46,47,48,8,54,51,52,53,55,9,56,57,58,60,59,61,62,10,63,64,65,11,66,67,68,69,70,1,71,72,12,76,74,79,78,73,77,75,80,119,129,118,139,110,109,138,132,137,112,126,111,135,107,106,136,108,113,114,117,104,140,130,121,122,124,120,123,133,115,116,125,105,128,127,131,134,412,429,431,424,432,453,428,433,436,439,440,418,438,419,430,437,425,423,441,427,426,421,422,417,413,414,415,416,411],"version":"5.9.3"} \ No newline at end of file +{"fileNames":["../../node_modules/typescript/lib/lib.es5.d.ts","../../node_modules/typescript/lib/lib.es2015.d.ts","../../node_modules/typescript/lib/lib.es2016.d.ts","../../node_modules/typescript/lib/lib.es2017.d.ts","../../node_modules/typescript/lib/lib.es2018.d.ts","../../node_modules/typescript/lib/lib.es2019.d.ts","../../node_modules/typescript/lib/lib.es2020.d.ts","../../node_modules/typescript/lib/lib.es2021.d.ts","../../node_modules/typescript/lib/lib.es2022.d.ts","../../node_modules/typescript/lib/lib.es2023.d.ts","../../node_modules/typescript/lib/lib.es2024.d.ts","../../node_modules/typescript/lib/lib.esnext.d.ts","../../node_modules/typescript/lib/lib.dom.d.ts","../../node_modules/typescript/lib/lib.dom.iterable.d.ts","../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/typescript/lib/lib.es2016.intl.d.ts","../../node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../node_modules/typescript/lib/lib.es2017.date.d.ts","../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../node_modules/typescript/lib/lib.es2021.promise.d.ts","../../node_modules/typescript/lib/lib.es2021.string.d.ts","../../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../node_modules/typescript/lib/lib.es2021.intl.d.ts","../../node_modules/typescript/lib/lib.es2022.array.d.ts","../../node_modules/typescript/lib/lib.es2022.error.d.ts","../../node_modules/typescript/lib/lib.es2022.intl.d.ts","../../node_modules/typescript/lib/lib.es2022.object.d.ts","../../node_modules/typescript/lib/lib.es2022.string.d.ts","../../node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../node_modules/typescript/lib/lib.es2023.array.d.ts","../../node_modules/typescript/lib/lib.es2023.collection.d.ts","../../node_modules/typescript/lib/lib.es2023.intl.d.ts","../../node_modules/typescript/lib/lib.es2024.arraybuffer.d.ts","../../node_modules/typescript/lib/lib.es2024.collection.d.ts","../../node_modules/typescript/lib/lib.es2024.object.d.ts","../../node_modules/typescript/lib/lib.es2024.promise.d.ts","../../node_modules/typescript/lib/lib.es2024.regexp.d.ts","../../node_modules/typescript/lib/lib.es2024.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2024.string.d.ts","../../node_modules/typescript/lib/lib.esnext.array.d.ts","../../node_modules/typescript/lib/lib.esnext.collection.d.ts","../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../node_modules/typescript/lib/lib.esnext.disposable.d.ts","../../node_modules/typescript/lib/lib.esnext.promise.d.ts","../../node_modules/typescript/lib/lib.esnext.decorators.d.ts","../../node_modules/typescript/lib/lib.esnext.iterator.d.ts","../../node_modules/typescript/lib/lib.esnext.float16.d.ts","../../node_modules/typescript/lib/lib.esnext.error.d.ts","../../node_modules/typescript/lib/lib.esnext.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.decorators.d.ts","../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../node_modules/next/dist/styled-jsx/types/css.d.ts","../../node_modules/@types/react/global.d.ts","../../node_modules/csstype/index.d.ts","../../node_modules/@types/prop-types/index.d.ts","../../node_modules/@types/react/index.d.ts","../../node_modules/next/dist/styled-jsx/types/index.d.ts","../../node_modules/next/dist/styled-jsx/types/macro.d.ts","../../node_modules/next/dist/styled-jsx/types/style.d.ts","../../node_modules/next/dist/styled-jsx/types/global.d.ts","../../node_modules/next/dist/shared/lib/amp.d.ts","../../node_modules/next/amp.d.ts","../../node_modules/@types/node/compatibility/disposable.d.ts","../../node_modules/@types/node/compatibility/indexable.d.ts","../../node_modules/@types/node/compatibility/iterators.d.ts","../../node_modules/@types/node/compatibility/index.d.ts","../../node_modules/@types/node/globals.typedarray.d.ts","../../node_modules/@types/node/buffer.buffer.d.ts","../../node_modules/@types/node/globals.d.ts","../../node_modules/@types/node/web-globals/abortcontroller.d.ts","../../node_modules/@types/node/web-globals/domexception.d.ts","../../node_modules/@types/node/web-globals/events.d.ts","../../node_modules/undici-types/header.d.ts","../../node_modules/undici-types/readable.d.ts","../../node_modules/undici-types/file.d.ts","../../node_modules/undici-types/fetch.d.ts","../../node_modules/undici-types/formdata.d.ts","../../node_modules/undici-types/connector.d.ts","../../node_modules/undici-types/client.d.ts","../../node_modules/undici-types/errors.d.ts","../../node_modules/undici-types/dispatcher.d.ts","../../node_modules/undici-types/global-dispatcher.d.ts","../../node_modules/undici-types/global-origin.d.ts","../../node_modules/undici-types/pool-stats.d.ts","../../node_modules/undici-types/pool.d.ts","../../node_modules/undici-types/handlers.d.ts","../../node_modules/undici-types/balanced-pool.d.ts","../../node_modules/undici-types/agent.d.ts","../../node_modules/undici-types/mock-interceptor.d.ts","../../node_modules/undici-types/mock-agent.d.ts","../../node_modules/undici-types/mock-client.d.ts","../../node_modules/undici-types/mock-pool.d.ts","../../node_modules/undici-types/mock-errors.d.ts","../../node_modules/undici-types/proxy-agent.d.ts","../../node_modules/undici-types/env-http-proxy-agent.d.ts","../../node_modules/undici-types/retry-handler.d.ts","../../node_modules/undici-types/retry-agent.d.ts","../../node_modules/undici-types/api.d.ts","../../node_modules/undici-types/interceptors.d.ts","../../node_modules/undici-types/util.d.ts","../../node_modules/undici-types/cookies.d.ts","../../node_modules/undici-types/patch.d.ts","../../node_modules/undici-types/websocket.d.ts","../../node_modules/undici-types/eventsource.d.ts","../../node_modules/undici-types/filereader.d.ts","../../node_modules/undici-types/diagnostics-channel.d.ts","../../node_modules/undici-types/content-type.d.ts","../../node_modules/undici-types/cache.d.ts","../../node_modules/undici-types/index.d.ts","../../node_modules/@types/node/web-globals/fetch.d.ts","../../node_modules/@types/node/assert.d.ts","../../node_modules/@types/node/assert/strict.d.ts","../../node_modules/@types/node/async_hooks.d.ts","../../node_modules/@types/node/buffer.d.ts","../../node_modules/@types/node/child_process.d.ts","../../node_modules/@types/node/cluster.d.ts","../../node_modules/@types/node/console.d.ts","../../node_modules/@types/node/constants.d.ts","../../node_modules/@types/node/crypto.d.ts","../../node_modules/@types/node/dgram.d.ts","../../node_modules/@types/node/diagnostics_channel.d.ts","../../node_modules/@types/node/dns.d.ts","../../node_modules/@types/node/dns/promises.d.ts","../../node_modules/@types/node/domain.d.ts","../../node_modules/@types/node/events.d.ts","../../node_modules/@types/node/fs.d.ts","../../node_modules/@types/node/fs/promises.d.ts","../../node_modules/@types/node/http.d.ts","../../node_modules/@types/node/http2.d.ts","../../node_modules/@types/node/https.d.ts","../../node_modules/@types/node/inspector.generated.d.ts","../../node_modules/@types/node/module.d.ts","../../node_modules/@types/node/net.d.ts","../../node_modules/@types/node/os.d.ts","../../node_modules/@types/node/path.d.ts","../../node_modules/@types/node/perf_hooks.d.ts","../../node_modules/@types/node/process.d.ts","../../node_modules/@types/node/punycode.d.ts","../../node_modules/@types/node/querystring.d.ts","../../node_modules/@types/node/readline.d.ts","../../node_modules/@types/node/readline/promises.d.ts","../../node_modules/@types/node/repl.d.ts","../../node_modules/@types/node/sea.d.ts","../../node_modules/@types/node/stream.d.ts","../../node_modules/@types/node/stream/promises.d.ts","../../node_modules/@types/node/stream/consumers.d.ts","../../node_modules/@types/node/stream/web.d.ts","../../node_modules/@types/node/string_decoder.d.ts","../../node_modules/@types/node/test.d.ts","../../node_modules/@types/node/timers.d.ts","../../node_modules/@types/node/timers/promises.d.ts","../../node_modules/@types/node/tls.d.ts","../../node_modules/@types/node/trace_events.d.ts","../../node_modules/@types/node/tty.d.ts","../../node_modules/@types/node/url.d.ts","../../node_modules/@types/node/util.d.ts","../../node_modules/@types/node/v8.d.ts","../../node_modules/@types/node/vm.d.ts","../../node_modules/@types/node/wasi.d.ts","../../node_modules/@types/node/worker_threads.d.ts","../../node_modules/@types/node/zlib.d.ts","../../node_modules/@types/node/index.d.ts","../../node_modules/next/dist/server/get-page-files.d.ts","../../node_modules/@types/react/canary.d.ts","../../node_modules/@types/react/experimental.d.ts","../../node_modules/@types/react-dom/index.d.ts","../../node_modules/@types/react-dom/canary.d.ts","../../node_modules/@types/react-dom/experimental.d.ts","../../node_modules/next/dist/compiled/webpack/webpack.d.ts","../../node_modules/next/dist/server/config.d.ts","../../node_modules/next/dist/lib/load-custom-routes.d.ts","../../node_modules/next/dist/shared/lib/image-config.d.ts","../../node_modules/next/dist/build/webpack/plugins/subresource-integrity-plugin.d.ts","../../node_modules/next/dist/server/body-streams.d.ts","../../node_modules/next/dist/server/future/route-kind.d.ts","../../node_modules/next/dist/server/future/route-definitions/route-definition.d.ts","../../node_modules/next/dist/server/future/route-matches/route-match.d.ts","../../node_modules/next/dist/client/components/app-router-headers.d.ts","../../node_modules/next/dist/server/request-meta.d.ts","../../node_modules/next/dist/server/lib/revalidate.d.ts","../../node_modules/next/dist/server/config-shared.d.ts","../../node_modules/next/dist/server/base-http/index.d.ts","../../node_modules/next/dist/server/api-utils/index.d.ts","../../node_modules/next/dist/server/node-environment.d.ts","../../node_modules/next/dist/server/require-hook.d.ts","../../node_modules/next/dist/server/node-polyfill-crypto.d.ts","../../node_modules/next/dist/lib/page-types.d.ts","../../node_modules/next/dist/build/analysis/get-page-static-info.d.ts","../../node_modules/next/dist/build/webpack/loaders/get-module-build-info.d.ts","../../node_modules/next/dist/build/webpack/plugins/middleware-plugin.d.ts","../../node_modules/next/dist/server/render-result.d.ts","../../node_modules/next/dist/server/future/helpers/i18n-provider.d.ts","../../node_modules/next/dist/server/web/next-url.d.ts","../../node_modules/next/dist/compiled/@edge-runtime/cookies/index.d.ts","../../node_modules/next/dist/server/web/spec-extension/cookies.d.ts","../../node_modules/next/dist/server/web/spec-extension/request.d.ts","../../node_modules/next/dist/server/web/spec-extension/fetch-event.d.ts","../../node_modules/next/dist/server/web/spec-extension/response.d.ts","../../node_modules/next/dist/server/web/types.d.ts","../../node_modules/next/dist/lib/setup-exception-listeners.d.ts","../../node_modules/next/dist/lib/constants.d.ts","../../node_modules/next/dist/build/index.d.ts","../../node_modules/next/dist/build/webpack/plugins/pages-manifest-plugin.d.ts","../../node_modules/next/dist/shared/lib/router/utils/route-regex.d.ts","../../node_modules/next/dist/shared/lib/router/utils/route-matcher.d.ts","../../node_modules/next/dist/shared/lib/router/utils/parse-url.d.ts","../../node_modules/next/dist/server/base-http/node.d.ts","../../node_modules/next/dist/server/font-utils.d.ts","../../node_modules/next/dist/build/webpack/plugins/flight-manifest-plugin.d.ts","../../node_modules/next/dist/server/future/route-modules/route-module.d.ts","../../node_modules/next/dist/shared/lib/deep-readonly.d.ts","../../node_modules/next/dist/server/load-components.d.ts","../../node_modules/next/dist/shared/lib/router/utils/middleware-route-matcher.d.ts","../../node_modules/next/dist/build/webpack/plugins/next-font-manifest-plugin.d.ts","../../node_modules/next/dist/server/future/route-definitions/locale-route-definition.d.ts","../../node_modules/next/dist/server/future/route-definitions/pages-route-definition.d.ts","../../node_modules/next/dist/shared/lib/mitt.d.ts","../../node_modules/next/dist/client/with-router.d.ts","../../node_modules/next/dist/client/router.d.ts","../../node_modules/next/dist/client/route-loader.d.ts","../../node_modules/next/dist/client/page-loader.d.ts","../../node_modules/next/dist/shared/lib/bloom-filter.d.ts","../../node_modules/next/dist/shared/lib/router/router.d.ts","../../node_modules/next/dist/shared/lib/router-context.shared-runtime.d.ts","../../node_modules/next/dist/shared/lib/loadable-context.shared-runtime.d.ts","../../node_modules/next/dist/shared/lib/loadable.shared-runtime.d.ts","../../node_modules/next/dist/shared/lib/image-config-context.shared-runtime.d.ts","../../node_modules/next/dist/shared/lib/hooks-client-context.shared-runtime.d.ts","../../node_modules/next/dist/shared/lib/head-manager-context.shared-runtime.d.ts","../../node_modules/next/dist/server/future/route-definitions/app-page-route-definition.d.ts","../../node_modules/next/dist/shared/lib/modern-browserslist-target.d.ts","../../node_modules/next/dist/shared/lib/constants.d.ts","../../node_modules/next/dist/build/webpack/loaders/metadata/types.d.ts","../../node_modules/next/dist/build/page-extensions-type.d.ts","../../node_modules/next/dist/build/webpack/loaders/next-app-loader.d.ts","../../node_modules/next/dist/server/lib/app-dir-module.d.ts","../../node_modules/next/dist/server/response-cache/types.d.ts","../../node_modules/next/dist/server/response-cache/index.d.ts","../../node_modules/next/dist/server/lib/incremental-cache/index.d.ts","../../node_modules/next/dist/client/components/hooks-server-context.d.ts","../../node_modules/next/dist/server/app-render/dynamic-rendering.d.ts","../../node_modules/next/dist/client/components/static-generation-async-storage-instance.d.ts","../../node_modules/next/dist/client/components/static-generation-async-storage.external.d.ts","../../node_modules/next/dist/server/web/spec-extension/adapters/request-cookies.d.ts","../../node_modules/next/dist/server/async-storage/draft-mode-provider.d.ts","../../node_modules/next/dist/server/web/spec-extension/adapters/headers.d.ts","../../node_modules/next/dist/client/components/request-async-storage-instance.d.ts","../../node_modules/next/dist/client/components/request-async-storage.external.d.ts","../../node_modules/next/dist/server/app-render/create-error-handler.d.ts","../../node_modules/next/dist/server/app-render/app-render.d.ts","../../node_modules/next/dist/shared/lib/server-inserted-html.shared-runtime.d.ts","../../node_modules/next/dist/shared/lib/amp-context.shared-runtime.d.ts","../../node_modules/next/dist/server/future/route-modules/app-page/vendored/contexts/entrypoints.d.ts","../../node_modules/next/dist/server/future/route-modules/app-page/module.compiled.d.ts","../../node_modules/@types/react/jsx-runtime.d.ts","../../node_modules/next/dist/client/components/error-boundary.d.ts","../../node_modules/next/dist/client/components/router-reducer/create-initial-router-state.d.ts","../../node_modules/next/dist/client/components/app-router.d.ts","../../node_modules/next/dist/client/components/layout-router.d.ts","../../node_modules/next/dist/client/components/render-from-template-context.d.ts","../../node_modules/next/dist/client/components/action-async-storage-instance.d.ts","../../node_modules/next/dist/client/components/action-async-storage.external.d.ts","../../node_modules/next/dist/client/components/client-page.d.ts","../../node_modules/next/dist/client/components/search-params.d.ts","../../node_modules/next/dist/client/components/not-found-boundary.d.ts","../../node_modules/next/dist/server/app-render/rsc/preloads.d.ts","../../node_modules/next/dist/server/app-render/rsc/postpone.d.ts","../../node_modules/next/dist/server/app-render/rsc/taint.d.ts","../../node_modules/next/dist/server/app-render/entry-base.d.ts","../../node_modules/next/dist/build/templates/app-page.d.ts","../../node_modules/next/dist/server/future/route-modules/app-page/module.d.ts","../../node_modules/next/dist/server/lib/builtin-request-context.d.ts","../../node_modules/next/dist/server/app-render/types.d.ts","../../node_modules/next/dist/client/components/router-reducer/fetch-server-response.d.ts","../../node_modules/next/dist/client/components/router-reducer/router-reducer-types.d.ts","../../node_modules/next/dist/shared/lib/app-router-context.shared-runtime.d.ts","../../node_modules/next/dist/server/future/route-modules/pages/vendored/contexts/entrypoints.d.ts","../../node_modules/next/dist/server/future/route-modules/pages/module.compiled.d.ts","../../node_modules/next/dist/build/templates/pages.d.ts","../../node_modules/next/dist/server/future/route-modules/pages/module.d.ts","../../node_modules/next/dist/server/render.d.ts","../../node_modules/next/dist/server/future/route-definitions/pages-api-route-definition.d.ts","../../node_modules/next/dist/server/future/route-matches/pages-api-route-match.d.ts","../../node_modules/next/dist/server/future/route-matchers/route-matcher.d.ts","../../node_modules/next/dist/server/future/route-matcher-providers/route-matcher-provider.d.ts","../../node_modules/next/dist/server/future/route-matcher-managers/route-matcher-manager.d.ts","../../node_modules/next/dist/server/future/normalizers/normalizer.d.ts","../../node_modules/next/dist/server/future/normalizers/locale-route-normalizer.d.ts","../../node_modules/next/dist/server/future/normalizers/request/pathname-normalizer.d.ts","../../node_modules/next/dist/server/future/normalizers/request/suffix.d.ts","../../node_modules/next/dist/server/future/normalizers/request/rsc.d.ts","../../node_modules/next/dist/server/future/normalizers/request/prefix.d.ts","../../node_modules/next/dist/server/future/normalizers/request/postponed.d.ts","../../node_modules/next/dist/server/future/normalizers/request/action.d.ts","../../node_modules/next/dist/server/future/normalizers/request/prefetch-rsc.d.ts","../../node_modules/next/dist/server/future/normalizers/request/next-data.d.ts","../../node_modules/next/dist/server/base-server.d.ts","../../node_modules/next/dist/server/image-optimizer.d.ts","../../node_modules/next/dist/server/next-server.d.ts","../../node_modules/next/dist/lib/coalesced-function.d.ts","../../node_modules/next/dist/server/lib/router-utils/types.d.ts","../../node_modules/next/dist/trace/types.d.ts","../../node_modules/next/dist/trace/trace.d.ts","../../node_modules/next/dist/trace/shared.d.ts","../../node_modules/next/dist/trace/index.d.ts","../../node_modules/next/dist/build/load-jsconfig.d.ts","../../node_modules/next/dist/build/webpack-config.d.ts","../../node_modules/next/dist/build/webpack/plugins/define-env-plugin.d.ts","../../node_modules/next/dist/build/swc/index.d.ts","../../node_modules/next/dist/server/dev/parse-version-info.d.ts","../../node_modules/next/dist/server/dev/hot-reloader-types.d.ts","../../node_modules/next/dist/telemetry/storage.d.ts","../../node_modules/next/dist/server/lib/types.d.ts","../../node_modules/next/dist/server/lib/render-server.d.ts","../../node_modules/next/dist/server/lib/router-server.d.ts","../../node_modules/next/dist/shared/lib/router/utils/path-match.d.ts","../../node_modules/next/dist/server/lib/router-utils/filesystem.d.ts","../../node_modules/next/dist/server/lib/router-utils/setup-dev-bundler.d.ts","../../node_modules/next/dist/server/lib/dev-bundler-service.d.ts","../../node_modules/next/dist/server/dev/static-paths-worker.d.ts","../../node_modules/next/dist/server/dev/next-dev-server.d.ts","../../node_modules/next/dist/server/next.d.ts","../../node_modules/next/dist/lib/metadata/types/alternative-urls-types.d.ts","../../node_modules/next/dist/lib/metadata/types/extra-types.d.ts","../../node_modules/next/dist/lib/metadata/types/metadata-types.d.ts","../../node_modules/next/dist/lib/metadata/types/manifest-types.d.ts","../../node_modules/next/dist/lib/metadata/types/opengraph-types.d.ts","../../node_modules/next/dist/lib/metadata/types/twitter-types.d.ts","../../node_modules/next/dist/lib/metadata/types/metadata-interface.d.ts","../../node_modules/next/types/index.d.ts","../../node_modules/next/dist/shared/lib/html-context.shared-runtime.d.ts","../../node_modules/@next/env/dist/index.d.ts","../../node_modules/next/dist/shared/lib/utils.d.ts","../../node_modules/next/dist/pages/_app.d.ts","../../node_modules/next/app.d.ts","../../node_modules/next/dist/server/web/spec-extension/unstable-cache.d.ts","../../node_modules/next/dist/server/web/spec-extension/revalidate.d.ts","../../node_modules/next/dist/server/web/spec-extension/unstable-no-store.d.ts","../../node_modules/next/cache.d.ts","../../node_modules/next/dist/shared/lib/runtime-config.external.d.ts","../../node_modules/next/config.d.ts","../../node_modules/next/dist/pages/_document.d.ts","../../node_modules/next/document.d.ts","../../node_modules/next/dist/shared/lib/dynamic.d.ts","../../node_modules/next/dynamic.d.ts","../../node_modules/next/dist/pages/_error.d.ts","../../node_modules/next/error.d.ts","../../node_modules/next/dist/shared/lib/head.d.ts","../../node_modules/next/head.d.ts","../../node_modules/next/dist/client/components/draft-mode.d.ts","../../node_modules/next/dist/client/components/headers.d.ts","../../node_modules/next/headers.d.ts","../../node_modules/next/dist/shared/lib/get-img-props.d.ts","../../node_modules/next/dist/client/image-component.d.ts","../../node_modules/next/dist/shared/lib/image-external.d.ts","../../node_modules/next/image.d.ts","../../node_modules/next/dist/client/link.d.ts","../../node_modules/next/link.d.ts","../../node_modules/next/dist/client/components/redirect-status-code.d.ts","../../node_modules/next/dist/client/components/redirect.d.ts","../../node_modules/next/dist/client/components/not-found.d.ts","../../node_modules/next/dist/client/components/navigation.react-server.d.ts","../../node_modules/next/dist/client/components/navigation.d.ts","../../node_modules/next/navigation.d.ts","../../node_modules/next/router.d.ts","../../node_modules/next/dist/client/script.d.ts","../../node_modules/next/script.d.ts","../../node_modules/next/dist/server/web/spec-extension/user-agent.d.ts","../../node_modules/next/dist/compiled/@edge-runtime/primitives/url.d.ts","../../node_modules/next/dist/server/web/spec-extension/image-response.d.ts","../../node_modules/next/dist/compiled/@vercel/og/satori/index.d.ts","../../node_modules/next/dist/compiled/@vercel/og/emoji/index.d.ts","../../node_modules/next/dist/compiled/@vercel/og/types.d.ts","../../node_modules/next/server.d.ts","../../node_modules/next/types/global.d.ts","../../node_modules/next/types/compiled.d.ts","../../node_modules/next/index.d.ts","../../node_modules/next/image-types/global.d.ts","../../next-env.d.ts","../../tailwind.config.ts","../../src/app/api/chat/stream/route.ts","../../src/hooks/use-websocket.ts","../../src/lib/api.ts","../../src/lib/markdown.ts","../../src/lib/utils.ts","../../src/hooks/use-auth.tsx","../../src/components/auth-guard.tsx","../../src/components/change-password-dialog.tsx","../../node_modules/next-themes/dist/index.d.ts","../../src/components/theme-toggle.tsx","../../src/components/user-menu.tsx","../../src/components/nav.tsx","../../src/app/layout.tsx","../../src/components/market-temp.tsx","../../src/components/stock-card.tsx","../../src/components/sector-heatmap.tsx","../../src/app/page.tsx","../../src/app/chat/page.tsx","../../src/components/error-boundary.tsx","../../src/app/diagnose/page.tsx","../../src/app/login/page.tsx","../../src/app/recommendations/page.tsx","../../node_modules/echarts/types/dist/echarts.d.ts","../../node_modules/echarts/index.d.ts","../../src/app/sectors/page.tsx","../../src/components/kline-chart.tsx","../../src/components/capital-flow.tsx","../../src/app/stock/[code]/page.tsx","../../src/app/users/page.tsx","../../src/components/score-radar.tsx","../types/app/page.ts","../types/app/api/chat/stream/route.ts","../types/app/chat/page.ts","../types/app/diagnose/page.ts","../types/app/login/page.ts","../types/app/recommendations/page.ts","../types/app/sectors/page.ts","../types/app/stock/[code]/page.ts","../types/app/users/page.ts","../../node_modules/@types/json5/index.d.ts","../types/app/monitor/page.ts","../../src/app/monitor/page.tsx"],"fileIdsList":[[99,145,405,412],[99,145,360,429],[99,145,360,431],[99,145,360,432],[99,145,360,428],[99,145,360,433],[99,145,360,436],[99,145,360,439],[99,145,360,440],[99,145,408,409],[99,145],[99,142,145],[99,144,145],[145],[99,145,150,178],[99,145,146,151,156,164,175,186],[99,145,146,147,156,164],[94,95,96,99,145],[99,145,148,187],[99,145,149,150,157,165],[99,145,150,175,183],[99,145,151,153,156,164],[99,144,145,152],[99,145,153,154],[99,145,155,156],[99,144,145,156],[99,145,156,157,158,175,186],[99,145,156,157,158,171,175,178],[99,145,153,156,159,164,175,186],[99,145,156,157,159,160,164,175,183,186],[99,145,159,161,175,183,186],[97,98,99,100,101,102,103,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192],[99,145,156,162],[99,145,163,186,191],[99,145,153,156,164,175],[99,145,165],[99,145,166],[99,144,145,167],[99,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192],[99,145,169],[99,145,170],[99,145,156,171,172],[99,145,171,173,187,189],[99,145,156,175,176,178],[99,145,177,178],[99,145,175,176],[99,145,178],[99,145,179],[99,142,145,175,180],[99,145,156,181,182],[99,145,181,182],[99,145,150,164,175,183],[99,145,184],[99,145,164,185],[99,145,159,170,186],[99,145,150,187],[99,145,175,188],[99,145,163,189],[99,145,190],[99,140,145],[99,140,145,156,158,167,175,178,186,189,191],[99,145,175,192],[87,99,145,197,198,199],[87,99,145,197,198],[87,99,145],[87,91,99,145,196,361,404],[87,91,99,145,195,361,404],[84,85,86,99,145],[99,145,434],[92,99,145],[99,145,365],[99,145,367,368,369],[99,145,371],[99,145,202,212,218,220,361],[99,145,202,209,211,214,232],[99,145,212],[99,145,212,214,339],[99,145,267,285,300,407],[99,145,309],[99,145,202,212,219,253,263,336,337,407],[99,145,219,407],[99,145,212,263,264,265,407],[99,145,212,219,253,407],[99,145,407],[99,145,202,219,220,407],[99,145,293],[99,144,145,193,292],[87,99,145,286,287,288,306,307],[87,99,145,286],[99,145,276],[99,145,275,277,381],[87,99,145,286,287,304],[99,145,282,307,393],[99,145,391,392],[99,145,226,390],[99,145,279],[99,144,145,193,226,242,275,276,277,278],[87,99,145,304,306,307],[99,145,304,306],[99,145,304,305,307],[99,145,170,193],[99,145,274],[99,144,145,193,211,213,270,271,272,273],[87,99,145,203,384],[87,99,145,186,193],[87,99,145,219,251],[87,99,145,219],[99,145,249,254],[87,99,145,250,364],[87,91,99,145,159,193,195,196,361,402,403],[99,145,361],[99,145,201],[99,145,354,355,356,357,358,359],[99,145,356],[87,99,145,250,286,364],[87,99,145,286,362,364],[87,99,145,286,364],[99,145,159,193,213,364],[99,145,159,193,210,211,222,240,242,274,279,280,302,304],[99,145,271,274,279,287,289,290,291,293,294,295,296,297,298,299,407],[99,145,272],[87,99,145,170,193,211,212,240,242,243,245,270,302,303,307,361,407],[99,145,159,193,213,214,226,227,275],[99,145,159,193,212,214],[99,145,159,175,193,210,213,214],[99,145,159,170,186,193,210,211,212,213,214,219,222,223,233,234,236,239,240,242,243,244,245,269,270,303,304,312,314,317,319,322,324,325,326,327],[99,145,159,175,193],[99,145,202,203,204,210,211,361,364,407],[99,145,159,175,186,193,207,338,340,341,407],[99,145,170,186,193,207,210,213,230,234,236,237,238,243,270,317,328,330,336,350,351],[99,145,212,216,270],[99,145,210,212],[99,145,223,318],[99,145,320,321],[99,145,320],[99,145,318],[99,145,320,323],[99,145,206,207],[99,145,206,246],[99,145,206],[99,145,208,223,316],[99,145,315],[99,145,207,208],[99,145,208,313],[99,145,207],[99,145,302],[99,145,159,193,210,222,241,261,267,281,284,301,304],[99,145,255,256,257,258,259,260,282,283,307,362],[99,145,311],[99,145,159,193,210,222,241,247,308,310,312,361,364],[99,145,159,186,193,203,210,212,269],[99,145,266],[99,145,159,193,344,349],[99,145,233,242,269,364],[99,145,332,336,350,353],[99,145,159,216,336,344,345,353],[99,145,202,212,233,244,347],[99,145,159,193,212,219,244,331,332,342,343,346,348],[99,145,194,240,241,242,361,364],[99,145,159,170,186,193,208,210,211,213,216,221,222,230,233,234,236,237,238,239,243,245,269,270,314,328,329,364],[99,145,159,193,210,212,216,330,352],[99,145,159,193,211,213],[87,99,145,159,170,193,201,203,210,211,214,222,239,240,242,243,245,311,361,364],[99,145,159,170,186,193,205,208,209,213],[99,145,206,268],[99,145,159,193,206,211,222],[99,145,159,193,212,223],[99,145,159,193],[99,145,226],[99,145,225],[99,145,227],[99,145,212,224,226,230],[99,145,212,224,226],[99,145,159,193,205,212,213,219,227,228,229],[87,99,145,304,305,306],[99,145,262],[87,99,145,203],[87,99,145,236],[87,99,145,194,239,242,245,361,364],[99,145,203,384,385],[87,99,145,254],[87,99,145,170,186,193,201,248,250,252,253,364],[99,145,213,219,236],[99,145,235],[87,99,145,157,159,170,193,201,254,263,361,362,363],[83,87,88,89,90,99,145,195,196,361,404],[99,145,150],[99,145,333,334,335],[99,145,333],[99,145,373],[99,145,375],[99,145,377],[99,145,379],[99,145,382],[99,145,386],[91,93,99,145,361,366,370,372,374,376,378,380,383,387,389,395,396,398,405,406,407],[99,145,388],[99,145,394],[99,145,250],[99,145,397],[99,144,145,227,228,229,230,399,400,401,404],[99,145,193],[87,91,99,145,159,161,170,193,195,196,197,199,201,214,353,360,364,404],[99,112,116,145,186],[99,112,145,175,186],[99,107,145],[99,109,112,145,183,186],[99,145,164,183],[99,107,145,193],[99,109,112,145,164,186],[99,104,105,108,111,145,156,175,186],[99,112,119,145],[99,104,110,145],[99,112,133,134,145],[99,108,112,145,178,186,193],[99,133,145,193],[99,106,107,145,193],[99,112,145],[99,106,107,108,109,110,111,112,113,114,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,134,135,136,137,138,139,145],[99,112,127,145],[99,112,119,120,145],[99,110,112,120,121,145],[99,111,145],[99,104,107,112,145],[99,112,116,120,121,145],[99,116,145],[99,110,112,115,145,186],[99,104,109,112,119,145],[99,145,175],[99,107,112,133,145,191,193],[99,145,405],[87,99,145,414,415,420],[87,99,145,395,414,415,420,430],[99,145,408,417,418,420,422,423],[87,99,145,395,417],[87,99,145,413,414,415,417,421,425,426,427],[87,99,145,413,414,426],[87,99,145,413,414,416,430,435],[87,99,145,395,414,416,430,437,438],[87,99,145,414,417],[87,99,145,420,435],[87,99,145,414],[99,145,414,416],[99,145,389,395,417,421],[87,99,145,414,416],[87,99,145,420],[87,99,145,417,419,421]],"fileInfos":[{"version":"c430d44666289dae81f30fa7b2edebf186ecc91a2d4c71266ea6ae76388792e1","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","signature":false,"impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","signature":false,"impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","signature":false,"impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","signature":false,"impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","signature":false,"impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","signature":false,"impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","signature":false,"impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","signature":false,"impliedFormat":1},{"version":"27bdc30a0e32783366a5abeda841bc22757c1797de8681bbe81fbc735eeb1c10","signature":false,"impliedFormat":1},{"version":"8fd575e12870e9944c7e1d62e1f5a73fcf23dd8d3a321f2a2c74c20d022283fe","signature":false,"impliedFormat":1},{"version":"2ab096661c711e4a81cc464fa1e6feb929a54f5340b46b0a07ac6bbf857471f0","signature":false,"impliedFormat":1},{"version":"080941d9f9ff9307f7e27a83bcd888b7c8270716c39af943532438932ec1d0b9","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"2e80ee7a49e8ac312cc11b77f1475804bee36b3b2bc896bead8b6e1266befb43","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"fb0f136d372979348d59b3f5020b4cdb81b5504192b1cacff5d1fbba29378aa1","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"a680117f487a4d2f30ea46f1b4b7f58bef1480456e18ba53ee85c2746eeca012","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"8cdf8847677ac7d20486e54dd3fcf09eda95812ac8ace44b4418da1bbbab6eb8","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"df83c2a6c73228b625b0beb6669c7ee2a09c914637e2d35170723ad49c0f5cd4","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"436aaf437562f276ec2ddbee2f2cdedac7664c1e4c1d2c36839ddd582eeb3d0a","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"8e3c06ea092138bf9fa5e874a1fdbc9d54805d074bee1de31b99a11e2fec239d","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"87dc0f382502f5bbce5129bdc0aea21e19a3abbc19259e0b43ae038a9fc4e326","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"b1cb28af0c891c8c96b2d6b7be76bd394fddcfdb4709a20ba05a7c1605eea0f9","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"2fef54945a13095fdb9b84f705f2b5994597640c46afeb2ce78352fab4cb3279","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"ac77cb3e8c6d3565793eb90a8373ee8033146315a3dbead3bde8db5eaf5e5ec6","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"56e4ed5aab5f5920980066a9409bfaf53e6d21d3f8d020c17e4de584d29600ad","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"4ece9f17b3866cc077099c73f4983bddbcb1dc7ddb943227f1ec070f529dedd1","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"0a6282c8827e4b9a95f4bf4f5c205673ada31b982f50572d27103df8ceb8013c","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"1c9319a09485199c1f7b0498f2988d6d2249793ef67edda49d1e584746be9032","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"e3a2a0cee0f03ffdde24d89660eba2685bfbdeae955a6c67e8c4c9fd28928eeb","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"811c71eee4aa0ac5f7adf713323a5c41b0cf6c4e17367a34fbce379e12bbf0a4","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"51ad4c928303041605b4d7ae32e0c1ee387d43a24cd6f1ebf4a2699e1076d4fa","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"60037901da1a425516449b9a20073aa03386cce92f7a1fd902d7602be3a7c2e9","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"d4b1d2c51d058fc21ec2629fff7a76249dec2e36e12960ea056e3ef89174080f","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"22adec94ef7047a6c9d1af3cb96be87a335908bf9ef386ae9fd50eeb37f44c47","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"196cb558a13d4533a5163286f30b0509ce0210e4b316c56c38d4c0fd2fb38405","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"73f78680d4c08509933daf80947902f6ff41b6230f94dd002ae372620adb0f60","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"c5239f5c01bcfa9cd32f37c496cf19c61d69d37e48be9de612b541aac915805b","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"0990a7576222f248f0a3b888adcb7389f957928ce2afb1cd5128169086ff4d29","signature":false,"impliedFormat":1},{"version":"eb5b19b86227ace1d29ea4cf81387279d04bb34051e944bc53df69f58914b788","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"ac51dd7d31333793807a6abaa5ae168512b6131bd41d9c5b98477fc3b7800f9f","signature":false,"impliedFormat":1},{"version":"87d9d29dbc745f182683f63187bf3d53fd8673e5fca38ad5eaab69798ed29fbc","signature":false,"impliedFormat":1},{"version":"035312d4945d13efa134ae482f6dc56a1a9346f7ac3be7ccbad5741058ce87f3","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"cc69795d9954ee4ad57545b10c7bf1a7260d990231b1685c147ea71a6faa265c","signature":false,"impliedFormat":1},{"version":"8bc6c94ff4f2af1f4023b7bb2379b08d3d7dd80c698c9f0b07431ea16101f05f","signature":false,"impliedFormat":1},{"version":"1b61d259de5350f8b1e5db06290d31eaebebc6baafd5f79d314b5af9256d7153","signature":false,"impliedFormat":1},{"version":"57194e1f007f3f2cbef26fa299d4c6b21f4623a2eddc63dfeef79e38e187a36e","signature":false,"impliedFormat":1},{"version":"0f6666b58e9276ac3a38fdc80993d19208442d6027ab885580d93aec76b4ef00","signature":false,"impliedFormat":1},{"version":"05fd364b8ef02fb1e174fbac8b825bdb1e5a36a016997c8e421f5fab0a6da0a0","signature":false,"impliedFormat":1},{"version":"70521b6ab0dcba37539e5303104f29b721bfb2940b2776da4cc818c07e1fefc1","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"ab41ef1f2cdafb8df48be20cd969d875602483859dc194e9c97c8a576892c052","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"21d819c173c0cf7cc3ce57c3276e77fd9a8a01d35a06ad87158781515c9a438a","signature":false,"impliedFormat":1},{"version":"98cffbf06d6bab333473c70a893770dbe990783904002c4f1a960447b4b53dca","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"ba481bca06f37d3f2c137ce343c7d5937029b2468f8e26111f3c9d9963d6568d","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"6d9ef24f9a22a88e3e9b3b3d8c40ab1ddb0853f1bfbd5c843c37800138437b61","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"1db0b7dca579049ca4193d034d835f6bfe73096c73663e5ef9a0b5779939f3d0","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"9798340ffb0d067d69b1ae5b32faa17ab31b82466a3fc00d8f2f2df0c8554aaa","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"f26b11d8d8e4b8028f1c7d618b22274c892e4b0ef5b3678a8ccbad85419aef43","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","signature":false,"impliedFormat":1},{"version":"763fe0f42b3d79b440a9b6e51e9ba3f3f91352469c1e4b3b67bfa4ff6352f3f4","signature":false,"impliedFormat":1},{"version":"25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","signature":false,"impliedFormat":1},{"version":"c464d66b20788266e5353b48dc4aa6bc0dc4a707276df1e7152ab0c9ae21fad8","signature":false,"impliedFormat":1},{"version":"78d0d27c130d35c60b5e5566c9f1e5be77caf39804636bc1a40133919a949f21","signature":false,"impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","signature":false,"impliedFormat":1},{"version":"1d6e127068ea8e104a912e42fc0a110e2aa5a66a356a917a163e8cf9a65e4a75","signature":false,"impliedFormat":1},{"version":"5ded6427296cdf3b9542de4471d2aa8d3983671d4cac0f4bf9c637208d1ced43","signature":false,"impliedFormat":1},{"version":"7f182617db458e98fc18dfb272d40aa2fff3a353c44a89b2c0ccb3937709bfb5","signature":false,"impliedFormat":1},{"version":"cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","signature":false,"impliedFormat":1},{"version":"385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","signature":false,"impliedFormat":1},{"version":"9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","signature":false,"impliedFormat":1},{"version":"0b8a9268adaf4da35e7fa830c8981cfa22adbbe5b3f6f5ab91f6658899e657a7","signature":false,"impliedFormat":1},{"version":"11396ed8a44c02ab9798b7dca436009f866e8dae3c9c25e8c1fbc396880bf1bb","signature":false,"impliedFormat":1},{"version":"ba7bc87d01492633cb5a0e5da8a4a42a1c86270e7b3d2dea5d156828a84e4882","signature":false,"impliedFormat":1},{"version":"4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","signature":false,"impliedFormat":1},{"version":"c21dc52e277bcfc75fac0436ccb75c204f9e1b3fa5e12729670910639f27343e","signature":false,"impliedFormat":1},{"version":"13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","signature":false,"impliedFormat":1},{"version":"9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","signature":false,"impliedFormat":1},{"version":"4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","signature":false,"impliedFormat":1},{"version":"24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","signature":false,"impliedFormat":1},{"version":"ea0148f897b45a76544ae179784c95af1bd6721b8610af9ffa467a518a086a43","signature":false,"impliedFormat":1},{"version":"24c6a117721e606c9984335f71711877293a9651e44f59f3d21c1ea0856f9cc9","signature":false,"impliedFormat":1},{"version":"dd3273ead9fbde62a72949c97dbec2247ea08e0c6952e701a483d74ef92d6a17","signature":false,"impliedFormat":1},{"version":"405822be75ad3e4d162e07439bac80c6bcc6dbae1929e179cf467ec0b9ee4e2e","signature":false,"impliedFormat":1},{"version":"0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","signature":false,"impliedFormat":1},{"version":"e61be3f894b41b7baa1fbd6a66893f2579bfad01d208b4ff61daef21493ef0a8","signature":false,"impliedFormat":1},{"version":"bd0532fd6556073727d28da0edfd1736417a3f9f394877b6d5ef6ad88fba1d1a","signature":false,"impliedFormat":1},{"version":"89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","signature":false,"impliedFormat":1},{"version":"615ba88d0128ed16bf83ef8ccbb6aff05c3ee2db1cc0f89ab50a4939bfc1943f","signature":false,"impliedFormat":1},{"version":"a4d551dbf8746780194d550c88f26cf937caf8d56f102969a110cfaed4b06656","signature":false,"impliedFormat":1},{"version":"8bd86b8e8f6a6aa6c49b71e14c4ffe1211a0e97c80f08d2c8cc98838006e4b88","signature":false,"impliedFormat":1},{"version":"317e63deeb21ac07f3992f5b50cdca8338f10acd4fbb7257ebf56735bf52ab00","signature":false,"impliedFormat":1},{"version":"4732aec92b20fb28c5fe9ad99521fb59974289ed1e45aecb282616202184064f","signature":false,"impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","signature":false,"impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","signature":false,"impliedFormat":1},{"version":"bf67d53d168abc1298888693338cb82854bdb2e69ef83f8a0092093c2d562107","signature":false,"impliedFormat":1},{"version":"b52476feb4a0cbcb25e5931b930fc73cb6643fb1a5060bf8a3dda0eeae5b4b68","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"e2677634fe27e87348825bb041651e22d50a613e2fdf6a4a3ade971d71bac37e","signature":false,"impliedFormat":1},{"version":"7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","signature":false,"impliedFormat":1},{"version":"8c0bcd6c6b67b4b503c11e91a1fb91522ed585900eab2ab1f61bba7d7caa9d6f","signature":false,"impliedFormat":1},{"version":"8cd19276b6590b3ebbeeb030ac271871b9ed0afc3074ac88a94ed2449174b776","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"696eb8d28f5949b87d894b26dc97318ef944c794a9a4e4f62360cd1d1958014b","signature":false,"impliedFormat":1},{"version":"3f8fa3061bd7402970b399300880d55257953ee6d3cd408722cb9ac20126460c","signature":false,"impliedFormat":1},{"version":"35ec8b6760fd7138bbf5809b84551e31028fb2ba7b6dc91d95d098bf212ca8b4","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a","signature":false,"impliedFormat":1},{"version":"68bd56c92c2bd7d2339457eb84d63e7de3bd56a69b25f3576e1568d21a162398","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"3e93b123f7c2944969d291b35fed2af79a6e9e27fdd5faa99748a51c07c02d28","signature":false,"impliedFormat":1},{"version":"9d19808c8c291a9010a6c788e8532a2da70f811adb431c97520803e0ec649991","signature":false,"impliedFormat":1},{"version":"87aad3dd9752067dc875cfaa466fc44246451c0c560b820796bdd528e29bef40","signature":false,"impliedFormat":1},{"version":"4aacb0dd020eeaef65426153686cc639a78ec2885dc72ad220be1d25f1a439df","signature":false,"impliedFormat":1},{"version":"f0bd7e6d931657b59605c44112eaf8b980ba7f957a5051ed21cb93d978cf2f45","signature":false,"impliedFormat":1},{"version":"8db0ae9cb14d9955b14c214f34dae1b9ef2baee2fe4ce794a4cd3ac2531e3255","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"15fc6f7512c86810273af28f224251a5a879e4261b4d4c7e532abfbfc3983134","signature":false,"impliedFormat":1},{"version":"58adba1a8ab2d10b54dc1dced4e41f4e7c9772cbbac40939c0dc8ce2cdb1d442","signature":false,"impliedFormat":1},{"version":"641942a78f9063caa5d6b777c99304b7d1dc7328076038c6d94d8a0b81fc95c1","signature":false,"impliedFormat":1},{"version":"714435130b9015fae551788df2a88038471a5a11eb471f27c4ede86552842bc9","signature":false,"impliedFormat":1},{"version":"855cd5f7eb396f5f1ab1bc0f8580339bff77b68a770f84c6b254e319bbfd1ac7","signature":false,"impliedFormat":1},{"version":"5650cf3dace09e7c25d384e3e6b818b938f68f4e8de96f52d9c5a1b3db068e86","signature":false,"impliedFormat":1},{"version":"1354ca5c38bd3fd3836a68e0f7c9f91f172582ba30ab15bb8c075891b91502b7","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"7e20d899c28ca26a2a7afc98beaa69e63ff7fba0a8bc47b4e3bf3ede5e09e424","signature":false,"impliedFormat":1},{"version":"2d2fcaab481b31a5882065c7951255703ddbe1c0e507af56ea42d79ac3911201","signature":false,"impliedFormat":1},{"version":"a192fe8ec33f75edbc8d8f3ed79f768dfae11ff5735e7fe52bfa69956e46d78d","signature":false,"impliedFormat":1},{"version":"ca867399f7db82df981d6915bcbb2d81131d7d1ef683bc782b59f71dda59bc85","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"372413016d17d804e1d139418aca0c68e47a83fb6669490857f4b318de8cccb3","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"9e043a1bc8fbf2a255bccf9bf27e0f1caf916c3b0518ea34aa72357c0afd42ec","signature":false,"impliedFormat":1},{"version":"b4f70ec656a11d570e1a9edce07d118cd58d9760239e2ece99306ee9dfe61d02","signature":false,"impliedFormat":1},{"version":"3bc2f1e2c95c04048212c569ed38e338873f6a8593930cf5a7ef24ffb38fc3b6","signature":false,"impliedFormat":1},{"version":"6e70e9570e98aae2b825b533aa6292b6abd542e8d9f6e9475e88e1d7ba17c866","signature":false,"impliedFormat":1},{"version":"f9d9d753d430ed050dc1bf2667a1bab711ccbb1c1507183d794cc195a5b085cc","signature":false,"impliedFormat":1},{"version":"9eece5e586312581ccd106d4853e861aaaa1a39f8e3ea672b8c3847eedd12f6e","signature":false,"impliedFormat":1},{"version":"085f552d005479e2e6a7311cdbbe5d8c55c497b4d19274285df161ee9684cd9c","signature":false,"impliedFormat":1},{"version":"37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","signature":false,"impliedFormat":1},{"version":"45650f47bfb376c8a8ed39d4bcda5902ab899a3150029684ee4c10676d9fbaee","signature":false,"impliedFormat":1},{"version":"007faacc9268357caa21d24169f3f3f2497af3e9241308df2d89f6e6d9bb3f2e","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"74cf591a0f63db318651e0e04cb55f8791385f86e987a67fd4d2eaab8191f730","signature":false,"impliedFormat":1},{"version":"5eab9b3dc9b34f185417342436ec3f106898da5f4801992d8ff38ab3aff346b5","signature":false,"impliedFormat":1},{"version":"12ed4559eba17cd977aa0db658d25c4047067444b51acfdcbf38470630642b23","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"f3ffabc95802521e1e4bcba4c88d8615176dc6e09111d920c7a213bdda6e1d65","signature":false,"impliedFormat":1},{"version":"809821b8a065e3234a55b3a9d7846231ed18d66dd749f2494c66288d890daf7f","signature":false,"impliedFormat":1},{"version":"ae56f65caf3be91108707bd8dfbccc2a57a91feb5daabf7165a06a945545ed26","signature":false,"impliedFormat":1},{"version":"a136d5de521da20f31631a0a96bf712370779d1c05b7015d7019a9b2a0446ca9","signature":false,"impliedFormat":1},{"version":"c3b41e74b9a84b88b1dca61ec39eee25c0dbc8e7d519ba11bb070918cfacf656","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"4737a9dc24d0e68b734e6cfbcea0c15a2cfafeb493485e27905f7856988c6b29","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"36d8d3e7506b631c9582c251a2c0b8a28855af3f76719b12b534c6edf952748d","signature":false,"impliedFormat":1},{"version":"1ca69210cc42729e7ca97d3a9ad48f2e9cb0042bada4075b588ae5387debd318","signature":false,"impliedFormat":1},{"version":"f5ebe66baaf7c552cfa59d75f2bfba679f329204847db3cec385acda245e574e","signature":false,"impliedFormat":1},{"version":"ed59add13139f84da271cafd32e2171876b0a0af2f798d0c663e8eeb867732cf","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"b7c5e2ea4a9749097c347454805e933844ed207b6eefec6b7cfd418b5f5f7b28","signature":false,"impliedFormat":1},{"version":"b1810689b76fd473bd12cc9ee219f8e62f54a7d08019a235d07424afbf074d25","signature":false,"impliedFormat":1},{"version":"8caa5c86be1b793cd5f599e27ecb34252c41e011980f7d61ae4989a149ff6ccc","signature":false,"impliedFormat":1},{"version":"f9fd93190acb1ffe0bc0fb395df979452f8d625071e9ffc8636e4dfb86ab2508","signature":false,"impliedFormat":1},{"version":"5f41fd8732a89e940c58ce22206e3df85745feb8983e2b4c6257fb8cbb118493","signature":false,"impliedFormat":1},{"version":"17ed71200119e86ccef2d96b73b02ce8854b76ad6bd21b5021d4269bec527b5f","signature":false,"impliedFormat":1},{"version":"1cfa8647d7d71cb03847d616bd79320abfc01ddea082a49569fda71ac5ece66b","signature":false,"impliedFormat":1},{"version":"bb7a61dd55dc4b9422d13da3a6bb9cc5e89be888ef23bbcf6558aa9726b89a1c","signature":false,"impliedFormat":1},{"version":"db6d2d9daad8a6d83f281af12ce4355a20b9a3e71b82b9f57cddcca0a8964a96","signature":false,"impliedFormat":1},{"version":"cfe4ef4710c3786b6e23dae7c086c70b4f4835a2e4d77b75d39f9046106e83d3","signature":false,"impliedFormat":1},{"version":"cbea99888785d49bb630dcbb1613c73727f2b5a2cf02e1abcaab7bcf8d6bf3c5","signature":false,"impliedFormat":1},{"version":"3a8bddb66b659f6bd2ff641fc71df8a8165bafe0f4b799cc298be5cd3755bb20","signature":false,"impliedFormat":1},{"version":"a86f82d646a739041d6702101afa82dcb935c416dd93cbca7fd754fd0282ce1f","signature":false,"impliedFormat":1},{"version":"2dad084c67e649f0f354739ec7df7c7df0779a28a4f55c97c6b6883ae850d1ce","signature":false,"impliedFormat":1},{"version":"fa5bbc7ab4130dd8cdc55ea294ec39f76f2bc507a0f75f4f873e38631a836ca7","signature":false,"impliedFormat":1},{"version":"df45ca1176e6ac211eae7ddf51336dc075c5314bc5c253651bae639defd5eec5","signature":false,"impliedFormat":1},{"version":"cf86de1054b843e484a3c9300d62fbc8c97e77f168bbffb131d560ca0474d4a8","signature":false,"impliedFormat":1},{"version":"196c960b12253fde69b204aa4fbf69470b26daf7a430855d7f94107a16495ab0","signature":false,"impliedFormat":1},{"version":"ee15ea5dd7a9fc9f5013832e5843031817a880bf0f24f37a29fd8337981aae07","signature":false,"impliedFormat":1},{"version":"bf24f6d35f7318e246010ffe9924395893c4e96d34324cde77151a73f078b9ad","signature":false,"impliedFormat":1},{"version":"ea53732769832d0f127ae16620bd5345991d26bf0b74e85e41b61b27d74ea90f","signature":false,"impliedFormat":1},{"version":"10595c7ff5094dd5b6a959ccb1c00e6a06441b4e10a87bc09c15f23755d34439","signature":false,"impliedFormat":1},{"version":"9620c1ff645afb4a9ab4044c85c26676f0a93e8c0e4b593aea03a89ccb47b6d0","signature":false,"impliedFormat":1},{"version":"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","signature":false,"impliedFormat":1},{"version":"a9af0e608929aaf9ce96bd7a7b99c9360636c31d73670e4af09a09950df97841","signature":false,"impliedFormat":1},{"version":"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","signature":false,"impliedFormat":1},{"version":"c86fe861cf1b4c46a0fb7d74dffe596cf679a2e5e8b1456881313170f092e3fa","signature":false,"impliedFormat":1},{"version":"08ed0b3f0166787f84a6606f80aa3b1388c7518d78912571b203817406e471da","signature":false,"impliedFormat":1},{"version":"47e5af2a841356a961f815e7c55d72554db0c11b4cba4d0caab91f8717846a94","signature":false,"impliedFormat":1},{"version":"65f43099ded6073336e697512d9b80f2d4fec3182b7b2316abf712e84104db00","signature":false,"impliedFormat":1},{"version":"f5f541902bf7ae0512a177295de9b6bcd6809ea38307a2c0a18bfca72212f368","signature":false,"impliedFormat":1},{"version":"b0decf4b6da3ebc52ea0c96095bdfaa8503acc4ac8e9081c5f2b0824835dd3bd","signature":false,"impliedFormat":1},{"version":"ca1b882a105a1972f82cc58e3be491e7d750a1eb074ffd13b198269f57ed9e1b","signature":false,"impliedFormat":1},{"version":"fc3e1c87b39e5ba1142f27ec089d1966da168c04a859a4f6aab64dceae162c2b","signature":false,"impliedFormat":1},{"version":"3b414b99a73171e1c4b7b7714e26b87d6c5cb03d200352da5342ab4088a54c85","signature":false,"impliedFormat":1},{"version":"61888522cec948102eba94d831c873200aa97d00d8989fdfd2a3e0ee75ec65a2","signature":false,"impliedFormat":1},{"version":"4e10622f89fea7b05dd9b52fb65e1e2b5cbd96d4cca3d9e1a60bb7f8a9cb86a1","signature":false,"impliedFormat":1},{"version":"74b2a5e5197bd0f2e0077a1ea7c07455bbea67b87b0869d9786d55104006784f","signature":false,"impliedFormat":1},{"version":"59bf32919de37809e101acffc120596a9e45fdbab1a99de5087f31fdc36e2f11","signature":false,"impliedFormat":1},{"version":"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","signature":false,"impliedFormat":1},{"version":"faa03dffb64286e8304a2ca96dd1317a77db6bfc7b3fb385163648f67e535d77","signature":false,"impliedFormat":1},{"version":"c40c848daad198266370c1c72a7a8c3d18d2f50727c7859fcfefd3ff69a7f288","signature":false,"impliedFormat":1},{"version":"ac60bbee0d4235643cc52b57768b22de8c257c12bd8c2039860540cab1fa1d82","signature":false,"impliedFormat":1},{"version":"6428e6edd944ce6789afdf43f9376c1f2e4957eea34166177625aaff4c0da1a0","signature":false,"impliedFormat":1},{"version":"ada39cbb2748ab2873b7835c90c8d4620723aedf323550e8489f08220e477c7f","signature":false,"impliedFormat":1},{"version":"6e5f5cee603d67ee1ba6120815497909b73399842254fc1e77a0d5cdc51d8c9c","signature":false,"impliedFormat":1},{"version":"8dba67056cbb27628e9b9a1cba8e57036d359dceded0725c72a3abe4b6c79cd4","signature":false,"impliedFormat":1},{"version":"70f3814c457f54a7efe2d9ce9d2686de9250bb42eb7f4c539bd2280a42e52d33","signature":false,"impliedFormat":1},{"version":"154dd2e22e1e94d5bc4ff7726706bc0483760bae40506bdce780734f11f7ec47","signature":false,"impliedFormat":1},{"version":"ef61792acbfa8c27c9bd113f02731e66229f7d3a169e3c1993b508134f1a58e0","signature":false,"impliedFormat":1},{"version":"9c82171d836c47486074e4ca8e059735bf97b205e70b196535b5efd40cbe1bc5","signature":false,"impliedFormat":1},{"version":"0131e203d8560edb39678abe10db42564a068f98c4ebd1ed9ffe7279c78b3c81","signature":false,"impliedFormat":1},{"version":"f6404e7837b96da3ea4d38c4f1a3812c96c9dcdf264e93d5bdb199f983a3ef4b","signature":false,"impliedFormat":1},{"version":"c5426dbfc1cf90532f66965a7aa8c1136a78d4d0f96d8180ecbfc11d7722f1a5","signature":false,"impliedFormat":1},{"version":"65a15fc47900787c0bd18b603afb98d33ede930bed1798fc984d5ebb78b26cf9","signature":false,"impliedFormat":1},{"version":"9d202701f6e0744adb6314d03d2eb8fc994798fc83d91b691b75b07626a69801","signature":false,"impliedFormat":1},{"version":"de9d2df7663e64e3a91bf495f315a7577e23ba088f2949d5ce9ec96f44fba37d","signature":false,"impliedFormat":1},{"version":"c7af78a2ea7cb1cd009cfb5bdb48cd0b03dad3b54f6da7aab615c2e9e9d570c5","signature":false,"impliedFormat":1},{"version":"1ee45496b5f8bdee6f7abc233355898e5bf9bd51255db65f5ff7ede617ca0027","signature":false,"impliedFormat":1},{"version":"8b8f00491431fe82f060dfe8c7f2180a9fb239f3d851527db909b83230e75882","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"db01d18853469bcb5601b9fc9826931cc84cc1a1944b33cad76fd6f1e3d8c544","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"dba114fb6a32b355a9cfc26ca2276834d72fe0e94cd2c3494005547025015369","signature":false,"impliedFormat":1},{"version":"903e299a28282fa7b714586e28409ed73c3b63f5365519776bf78e8cf173db36","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"fa6c12a7c0f6b84d512f200690bfc74819e99efae69e4c95c4cd30f6884c526e","signature":false,"impliedFormat":1},{"version":"f1c32f9ce9c497da4dc215c3bc84b722ea02497d35f9134db3bb40a8d918b92b","signature":false,"impliedFormat":1},{"version":"b73c319af2cc3ef8f6421308a250f328836531ea3761823b4cabbd133047aefa","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"e433b0337b8106909e7953015e8fa3f2d30797cea27141d1c5b135365bb975a6","signature":false,"impliedFormat":1},{"version":"dd3900b24a6a8745efeb7ad27629c0f8a626470ac229c1d73f1fe29d67e44dca","signature":false,"impliedFormat":1},{"version":"ddff7fc6edbdc5163a09e22bf8df7bef75f75369ebd7ecea95ba55c4386e2441","signature":false,"impliedFormat":1},{"version":"106c6025f1d99fd468fd8bf6e5bda724e11e5905a4076c5d29790b6c3745e50c","signature":false,"impliedFormat":1},{"version":"ec29be0737d39268696edcec4f5e97ce26f449fa9b7afc2f0f99a86def34a418","signature":false,"impliedFormat":1},{"version":"aeab39e8e0b1a3b250434c3b2bb8f4d17bbec2a9dbce5f77e8a83569d3d2cbc2","signature":false,"impliedFormat":1},{"version":"ec6cba1c02c675e4dd173251b156792e8d3b0c816af6d6ad93f1a55d674591aa","signature":false,"impliedFormat":1},{"version":"b620391fe8060cf9bedc176a4d01366e6574d7a71e0ac0ab344a4e76576fcbb8","signature":false,"impliedFormat":1},{"version":"d729408dfde75b451530bcae944cf89ee8277e2a9df04d1f62f2abfd8b03c1e1","signature":false,"impliedFormat":1},{"version":"e15d3c84d5077bb4a3adee4c791022967b764dc41cb8fa3cfa44d4379b2c95f5","signature":false,"impliedFormat":1},{"version":"5f58e28cd22e8fc1ac1b3bc6b431869f1e7d0b39e2c21fbf79b9fa5195a85980","signature":false,"impliedFormat":1},{"version":"e1fc1a1045db5aa09366be2b330e4ce391550041fc3e925f60998ca0b647aa97","signature":false,"impliedFormat":1},{"version":"63533978dcda286422670f6e184ac516805a365fb37a086eeff4309e812f1402","signature":false,"impliedFormat":1},{"version":"43ba4f2fa8c698f5c304d21a3ef596741e8e85a810b7c1f9b692653791d8d97a","signature":false,"impliedFormat":1},{"version":"31fb49ef3aa3d76f0beb644984e01eab0ea222372ea9b49bb6533be5722d756c","signature":false,"impliedFormat":1},{"version":"33cd131e1461157e3e06b06916b5176e7a8ec3fce15a5cfe145e56de744e07d2","signature":false,"impliedFormat":1},{"version":"889ef863f90f4917221703781d9723278db4122d75596b01c429f7c363562b86","signature":false,"impliedFormat":1},{"version":"3556cfbab7b43da96d15a442ddbb970e1f2fc97876d055b6555d86d7ac57dae5","signature":false,"impliedFormat":1},{"version":"437751e0352c6e924ddf30e90849f1d9eb00ca78c94d58d6a37202ec84eb8393","signature":false,"impliedFormat":1},{"version":"48e8af7fdb2677a44522fd185d8c87deff4d36ee701ea003c6c780b1407a1397","signature":false,"impliedFormat":1},{"version":"d11308de5a36c7015bb73adb5ad1c1bdaac2baede4cc831a05cf85efa3cc7f2f","signature":false,"impliedFormat":1},{"version":"38e4684c22ed9319beda6765bab332c724103d3a966c2e5e1c5a49cf7007845f","signature":false,"impliedFormat":1},{"version":"f9812cfc220ecf7557183379531fa409acd249b9e5b9a145d0d52b76c20862de","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"e650298721abc4f6ae851e60ae93ee8199791ceec4b544c3379862f81f43178c","signature":false,"impliedFormat":1},{"version":"2e4f37ffe8862b14d8e24ae8763daaa8340c0df0b859d9a9733def0eee7562d9","signature":false,"impliedFormat":1},{"version":"13283350547389802aa35d9f2188effaeac805499169a06ef5cd77ce2a0bd63f","signature":false,"impliedFormat":1},{"version":"680793958f6a70a44c8d9ae7d46b7a385361c69ac29dcab3ed761edce1c14ab8","signature":false,"impliedFormat":1},{"version":"6ac6715916fa75a1f7ebdfeacac09513b4d904b667d827b7535e84ff59679aff","signature":false,"impliedFormat":1},{"version":"42c169fb8c2d42f4f668c624a9a11e719d5d07dacbebb63cbcf7ef365b0a75b3","signature":false,"impliedFormat":1},{"version":"913ddbba170240070bd5921b8f33ea780021bdf42fbdfcd4fcb2691b1884ddde","signature":false,"impliedFormat":1},{"version":"b4e6d416466999ff40d3fe5ceb95f7a8bfb7ac2262580287ac1a8391e5362431","signature":false,"impliedFormat":1},{"version":"5fe23bd829e6be57d41929ac374ee9551ccc3c44cee893167b7b5b77be708014","signature":false,"impliedFormat":1},{"version":"0a626484617019fcfbfc3c1bc1f9e84e2913f1adb73692aa9075817404fb41a1","signature":false,"impliedFormat":1},{"version":"438c7513b1df91dcef49b13cd7a1c4720f91a36e88c1df731661608b7c055f10","signature":false,"impliedFormat":1},{"version":"cf185cc4a9a6d397f416dd28cca95c227b29f0f27b160060a95c0e5e36cda865","signature":false,"impliedFormat":1},{"version":"0086f3e4ad898fd7ca56bb223098acfacf3fa065595182aaf0f6c4a6a95e6fbd","signature":false,"impliedFormat":1},{"version":"efaa078e392f9abda3ee8ade3f3762ab77f9c50b184e6883063a911742a4c96a","signature":false,"impliedFormat":1},{"version":"54a8bb487e1dc04591a280e7a673cdfb272c83f61e28d8a64cf1ac2e63c35c51","signature":false,"impliedFormat":1},{"version":"021a9498000497497fd693dd315325484c58a71b5929e2bbb91f419b04b24cea","signature":false,"impliedFormat":1},{"version":"9385cdc09850950bc9b59cca445a3ceb6fcca32b54e7b626e746912e489e535e","signature":false,"impliedFormat":1},{"version":"2894c56cad581928bb37607810af011764a2f511f575d28c9f4af0f2ef02d1ab","signature":false,"impliedFormat":1},{"version":"0a72186f94215d020cb386f7dca81d7495ab6c17066eb07d0f44a5bf33c1b21a","signature":false,"impliedFormat":1},{"version":"84124384abae2f6f66b7fbfc03862d0c2c0b71b826f7dbf42c8085d31f1d3f95","signature":false,"impliedFormat":1},{"version":"63a8e96f65a22604eae82737e409d1536e69a467bb738bec505f4f97cce9d878","signature":false,"impliedFormat":1},{"version":"3fd78152a7031315478f159c6a5872c712ece6f01212c78ea82aef21cb0726e2","signature":false,"impliedFormat":1},{"version":"b01bd582a6e41457bc56e6f0f9de4cb17f33f5f3843a7cf8210ac9c18472fb0f","signature":false,"impliedFormat":1},{"version":"58b49e5c1def740360b5ae22ae2405cfac295fee74abd88d74ac4ea42502dc03","signature":false,"impliedFormat":1},{"version":"512fc15cca3a35b8dbbf6e23fe9d07e6f87ad03c895acffd3087ce09f352aad0","signature":false,"impliedFormat":1},{"version":"9a0946d15a005832e432ea0cd4da71b57797efb25b755cc07f32274296d62355","signature":false,"impliedFormat":1},{"version":"a52ff6c0a149e9f370372fc3c715d7f2beee1f3bab7980e271a7ab7d313ec677","signature":false,"impliedFormat":1},{"version":"fd933f824347f9edd919618a76cdb6a0c0085c538115d9a287fa0c7f59957ab3","signature":false,"impliedFormat":1},{"version":"6ac6715916fa75a1f7ebdfeacac09513b4d904b667d827b7535e84ff59679aff","signature":false,"impliedFormat":1},{"version":"6a1aa3e55bdc50503956c5cd09ae4cd72e3072692d742816f65c66ca14f4dfdd","signature":false,"impliedFormat":1},{"version":"ab75cfd9c4f93ffd601f7ca1753d6a9d953bbedfbd7a5b3f0436ac8a1de60dfa","signature":false,"impliedFormat":1},{"version":"f95180f03d827525ca4f990f49e17ec67198c316dd000afbe564655141f725cd","signature":false,"impliedFormat":1},{"version":"b73cbf0a72c8800cf8f96a9acfe94f3ad32ca71342a8908b8ae484d61113f647","signature":false,"impliedFormat":1},{"version":"bae6dd176832f6423966647382c0d7ba9e63f8c167522f09a982f086cd4e8b23","signature":false,"impliedFormat":1},{"version":"1364f64d2fb03bbb514edc42224abd576c064f89be6a990136774ecdd881a1da","signature":false,"impliedFormat":1},{"version":"c9958eb32126a3843deedda8c22fb97024aa5d6dd588b90af2d7f2bfac540f23","signature":false,"impliedFormat":1},{"version":"950fb67a59be4c2dbe69a5786292e60a5cb0e8612e0e223537784c731af55db1","signature":false,"impliedFormat":1},{"version":"e927c2c13c4eaf0a7f17e6022eee8519eb29ef42c4c13a31e81a611ab8c95577","signature":false,"impliedFormat":1},{"version":"07ca44e8d8288e69afdec7a31fa408ce6ab90d4f3d620006701d5544646da6aa","signature":false,"impliedFormat":1},{"version":"70246ad95ad8a22bdfe806cb5d383a26c0c6e58e7207ab9c431f1cb175aca657","signature":false,"impliedFormat":1},{"version":"f00f3aa5d64ff46e600648b55a79dcd1333458f7a10da2ed594d9f0a44b76d0b","signature":false,"impliedFormat":1},{"version":"772d8d5eb158b6c92412c03228bd9902ccb1457d7a705b8129814a5d1a6308fc","signature":false,"impliedFormat":1},{"version":"4e4475fba4ed93a72f167b061cd94a2e171b82695c56de9899275e880e06ba41","signature":false,"impliedFormat":1},{"version":"97c5f5d580ab2e4decd0a3135204050f9b97cd7908c5a8fbc041eadede79b2fa","signature":false,"impliedFormat":1},{"version":"c99a3a5f2215d5b9d735aa04cec6e61ed079d8c0263248e298ffe4604d4d0624","signature":false,"impliedFormat":1},{"version":"49b2375c586882c3ac7f57eba86680ff9742a8d8cb2fe25fe54d1b9673690d41","signature":false,"impliedFormat":1},{"version":"802e797bcab5663b2c9f63f51bdf67eff7c41bc64c0fd65e6da3e7941359e2f7","signature":false,"impliedFormat":1},{"version":"847e160d709c74cc714fbe1f99c41d3425b74cd47b1be133df1623cd87014089","signature":false,"impliedFormat":1},{"version":"9fee04f1e1afa50524862289b9f0b0fdc3735b80e2a0d684cec3b9ff3d94cecc","signature":false,"impliedFormat":1},{"version":"5cdc27fbc5c166fc5c763a30ac21cbac9859dc5ba795d3230db6d4e52a1965bb","signature":false,"impliedFormat":1},{"version":"6459054aabb306821a043e02b89d54da508e3a6966601a41e71c166e4ea1474f","signature":false,"impliedFormat":1},{"version":"f416c9c3eee9d47ff49132c34f96b9180e50485d435d5748f0e8b72521d28d2e","signature":false,"impliedFormat":1},{"version":"05c97cddbaf99978f83d96de2d8af86aded9332592f08ce4a284d72d0952c391","signature":false,"impliedFormat":1},{"version":"14e5cdec6f8ae82dfd0694e64903a0a54abdfe37e1d966de3d4128362acbf35f","signature":false,"impliedFormat":1},{"version":"bbc183d2d69f4b59fd4dd8799ffdf4eb91173d1c4ad71cce91a3811c021bf80c","signature":false,"impliedFormat":1},{"version":"7b6ff760c8a240b40dab6e4419b989f06a5b782f4710d2967e67c695ef3e93c4","signature":false,"impliedFormat":1},{"version":"8dbc4134a4b3623fc476be5f36de35c40f2768e2e3d9ed437e0d5f1c4cd850f6","signature":false,"impliedFormat":1},{"version":"4e06330a84dec7287f7ebdd64978f41a9f70a668d3b5edc69d5d4a50b9b376bb","signature":false,"impliedFormat":1},{"version":"65bfa72967fbe9fc33353e1ac03f0480aa2e2ea346d61ff3ea997dfd850f641a","signature":false,"impliedFormat":1},{"version":"c06f0bb92d1a1a5a6c6e4b5389a5664d96d09c31673296cb7da5fe945d54d786","signature":false,"impliedFormat":1},{"version":"f974e4a06953682a2c15d5bd5114c0284d5abf8bc0fe4da25cb9159427b70072","signature":false,"impliedFormat":1},{"version":"872caaa31423f4345983d643e4649fb30f548e9883a334d6d1c5fff68ede22d4","signature":false,"impliedFormat":1},{"version":"94404c4a878fe291e7578a2a80264c6f18e9f1933fbb57e48f0eb368672e389c","signature":false,"impliedFormat":1},{"version":"5c1b7f03aa88be854bc15810bfd5bd5a1943c5a7620e1c53eddd2a013996343e","signature":false,"impliedFormat":1},{"version":"09dfc64fcd6a2785867f2368419859a6cc5a8d4e73cbe2538f205b1642eb0f51","signature":false,"impliedFormat":1},{"version":"bcf6f0a323653e72199105a9316d91463ad4744c546d1271310818b8cef7c608","signature":false,"impliedFormat":1},{"version":"01aa917531e116485beca44a14970834687b857757159769c16b228eb1e49c5f","signature":false,"impliedFormat":1},{"version":"351475f9c874c62f9b45b1f0dc7e2704e80dfd5f1af83a3a9f841f9dfe5b2912","signature":false,"impliedFormat":1},{"version":"ac457ad39e531b7649e7b40ee5847606eac64e236efd76c5d12db95bf4eacd17","signature":false,"impliedFormat":1},{"version":"187a6fdbdecb972510b7555f3caacb44b58415da8d5825d03a583c4b73fde4cf","signature":false,"impliedFormat":1},{"version":"d4c3250105a612202289b3a266bb7e323db144f6b9414f9dea85c531c098b811","signature":false,"impliedFormat":1},{"version":"95b444b8c311f2084f0fb51c616163f950fb2e35f4eaa07878f313a2d36c98a4","signature":false,"impliedFormat":1},{"version":"741067675daa6d4334a2dc80a4452ca3850e89d5852e330db7cb2b5f867173b1","signature":false,"impliedFormat":1},{"version":"f8acecec1114f11690956e007d920044799aefeb3cece9e7f4b1f8a1d542b2c9","signature":false,"impliedFormat":1},{"version":"178071ccd043967a58c5d1a032db0ddf9bd139e7920766b537d9783e88eb615e","signature":false,"impliedFormat":1},{"version":"3a17f09634c50cce884721f54fd9e7b98e03ac505889c560876291fcf8a09e90","signature":false,"impliedFormat":1},{"version":"32531dfbb0cdc4525296648f53b2b5c39b64282791e2a8c765712e49e6461046","signature":false,"impliedFormat":1},{"version":"0ce1b2237c1c3df49748d61568160d780d7b26693bd9feb3acb0744a152cd86d","signature":false,"impliedFormat":1},{"version":"e489985388e2c71d3542612685b4a7db326922b57ac880f299da7026a4e8a117","signature":false,"impliedFormat":1},{"version":"5cad4158616d7793296dd41e22e1257440910ea8d01c7b75045d4dfb20c5a41a","signature":false,"impliedFormat":1},{"version":"04d3aad777b6af5bd000bfc409907a159fe77e190b9d368da4ba649cdc28d39e","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"74efc1d6523bd57eb159c18d805db4ead810626bc5bc7002a2c7f483044b2e0f","signature":false,"impliedFormat":1},{"version":"19252079538942a69be1645e153f7dbbc1ef56b4f983c633bf31fe26aeac32cd","signature":false,"impliedFormat":1},{"version":"bc11f3ac00ac060462597add171220aed628c393f2782ac75dd29ff1e0db871c","signature":false,"impliedFormat":1},{"version":"616775f16134fa9d01fc677ad3f76e68c051a056c22ab552c64cc281a9686790","signature":false,"impliedFormat":1},{"version":"65c24a8baa2cca1de069a0ba9fba82a173690f52d7e2d0f1f7542d59d5eb4db0","signature":false,"impliedFormat":1},{"version":"f9fe6af238339a0e5f7563acee3178f51db37f32a2e7c09f85273098cee7ec49","signature":false,"impliedFormat":1},{"version":"3b0b1d352b8d2e47f1c4df4fb0678702aee071155b12ef0185fce9eb4fa4af1e","signature":false,"impliedFormat":1},{"version":"77e71242e71ebf8528c5802993697878f0533db8f2299b4d36aa015bae08a79c","signature":false,"impliedFormat":1},{"version":"a344403e7a7384e0e7093942533d309194ad0a53eca2a3100c0b0ab4d3932773","signature":false,"impliedFormat":1},{"version":"b7fff2d004c5879cae335db8f954eb1d61242d9f2d28515e67902032723caeab","signature":false,"impliedFormat":1},{"version":"5f3dc10ae646f375776b4e028d2bed039a93eebbba105694d8b910feebbe8b9c","signature":false,"impliedFormat":1},{"version":"bb18bf4a61a17b4a6199eb3938ecfa4a59eb7c40843ad4a82b975ab6f7e3d925","signature":false,"impliedFormat":1},{"version":"4545c1a1ceca170d5d83452dd7c4994644c35cf676a671412601689d9a62da35","signature":false,"impliedFormat":1},{"version":"e9b6fc05f536dfddcdc65dbcf04e09391b1c968ab967382e48924f5cb90d88e1","signature":false,"impliedFormat":1},{"version":"a2d648d333cf67b9aeac5d81a1a379d563a8ffa91ddd61c6179f68de724260ff","signature":false,"impliedFormat":1},{"version":"2b664c3cc544d0e35276e1fb2d4989f7d4b4027ffc64da34ec83a6ccf2e5c528","signature":false,"impliedFormat":1},{"version":"a3f41ed1b4f2fc3049394b945a68ae4fdefd49fa1739c32f149d32c0545d67f5","signature":false,"impliedFormat":1},{"version":"3cd8f0464e0939b47bfccbb9bb474a6d87d57210e304029cd8eb59c63a81935d","signature":false,"impliedFormat":1},{"version":"47699512e6d8bebf7be488182427189f999affe3addc1c87c882d36b7f2d0b0e","signature":false,"impliedFormat":1},{"version":"3026abd48e5e312f2328629ede6e0f770d21c3cd32cee705c450e589d015ee09","signature":false,"impliedFormat":1},{"version":"8b140b398a6afbd17cc97c38aea5274b2f7f39b1ae5b62952cfe65bf493e3e75","signature":false,"impliedFormat":1},{"version":"7663d2c19ce5ef8288c790edba3d45af54e58c84f1b37b1249f6d49d962f3d91","signature":false,"impliedFormat":1},{"version":"5cce3b975cdb72b57ae7de745b3c5de5790781ee88bcb41ba142f07c0fa02e97","signature":false,"impliedFormat":1},{"version":"00bd6ebe607246b45296aa2b805bd6a58c859acecda154bfa91f5334d7c175c6","signature":false,"impliedFormat":1},{"version":"ad036a85efcd9e5b4f7dd5c1a7362c8478f9a3b6c3554654ca24a29aa850a9c5","signature":false,"impliedFormat":1},{"version":"fedebeae32c5cdd1a85b4e0504a01996e4a8adf3dfa72876920d3dd6e42978e7","signature":false,"impliedFormat":1},{"version":"0d28b974a7605c4eda20c943b3fa9ae16cb452c1666fc9b8c341b879992c7612","signature":false,"impliedFormat":1},{"version":"cdf21eee8007e339b1b9945abf4a7b44930b1d695cc528459e68a3adc39a622e","signature":false,"impliedFormat":1},{"version":"db036c56f79186da50af66511d37d9fe77fa6793381927292d17f81f787bb195","signature":false,"impliedFormat":1},{"version":"87ac2fb61e629e777f4d161dff534c2023ee15afd9cb3b1589b9b1f014e75c58","signature":false,"impliedFormat":1},{"version":"13c8b4348db91e2f7d694adc17e7438e6776bc506d5c8f5de9ad9989707fa3fe","signature":false,"impliedFormat":1},{"version":"3c1051617aa50b38e9efaabce25e10a5dd9b1f42e372ef0e8a674076a68742ed","signature":false,"impliedFormat":1},{"version":"07a3e20cdcb0f1182f452c0410606711fbea922ca76929a41aacb01104bc0d27","signature":false,"impliedFormat":1},{"version":"1de80059b8078ea5749941c9f863aa970b4735bdbb003be4925c853a8b6b4450","signature":false,"impliedFormat":1},{"version":"1d079c37fa53e3c21ed3fa214a27507bda9991f2a41458705b19ed8c2b61173d","signature":false,"impliedFormat":1},{"version":"4cd4b6b1279e9d744a3825cbd7757bbefe7f0708f3f1069179ad535f19e8ed2c","signature":false,"impliedFormat":1},{"version":"5835a6e0d7cd2738e56b671af0e561e7c1b4fb77751383672f4b009f4e161d70","signature":false,"impliedFormat":1},{"version":"c0eeaaa67c85c3bb6c52b629ebbfd3b2292dc67e8c0ffda2fc6cd2f78dc471e6","signature":false,"impliedFormat":1},{"version":"4b7f74b772140395e7af67c4841be1ab867c11b3b82a51b1aeb692822b76c872","signature":false,"impliedFormat":1},{"version":"27be6622e2922a1b412eb057faa854831b95db9db5035c3f6d4b677b902ab3b7","signature":false,"impliedFormat":1},{"version":"b95a6f019095dd1d48fd04965b50dfd63e5743a6e75478343c46d2582a5132bf","signature":false,"impliedFormat":99},{"version":"c2008605e78208cfa9cd70bd29856b72dda7ad89df5dc895920f8e10bcb9cd0a","signature":false,"impliedFormat":99},{"version":"b97cb5616d2ab82a98ec9ada7b9e9cabb1f5da880ec50ea2b8dc5baa4cbf3c16","signature":false,"impliedFormat":99},{"version":"d23df9ff06ae8bf1dcb7cc933e97ae7da418ac77749fecee758bb43a8d69f840","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"040c71dde2c406f869ad2f41e8d4ce579cc60c8dbe5aa0dd8962ac943b846572","signature":false,"affectsGlobalScope":true,"impliedFormat":1},{"version":"3586f5ea3cc27083a17bd5c9059ede9421d587286d5a47f4341a4c2d00e4fa91","signature":false,"impliedFormat":1},{"version":"a6df929821e62f4719551f7955b9f42c0cd53c1370aec2dd322e24196a7dfe33","signature":false,"impliedFormat":1},{"version":"b789bf89eb19c777ed1e956dbad0925ca795701552d22e68fd130a032008b9f9","signature":false,"impliedFormat":1},{"version":"9dd9d642cdb87d4d5b3173217e0c45429b3e47a6f5cf5fb0ead6c644ec5fed01","signature":false},{"version":"e482174f15675678363b9a4ed12113ca45d18eee41e8e678deb0e824be29d3e7","signature":false,"affectsGlobalScope":true},{"version":"ce99ae8ab80cdc65e63c946ec05e7b7c0f847b8153555139add78d25f76dc83a","signature":false},{"version":"d8ced93a8044dc86b5922971249910c45f93b588eb9d621aa8d7d854f9cdc819","signature":false},{"version":"b7880578effbc212752a9aab4e926fea67172ea119c36df9e7f83033e24b843c","signature":false},{"version":"3ee18c7abaf5a829f0430ce4f7a0769e9953cbe19cdac28b43272d7b829fa255","signature":false},{"version":"5b0db3eecb54b662a0df219dbfce655675980715bd48a0010ea3b019d22d2f3b","signature":false},{"version":"117179c3e83bcb6135ab23f4c7f23c2873c111e2fd4fea91df6c4cce620ec977","signature":false},{"version":"370f98a39917baa5b5c1484f9e87d6544f568d9e90c5ddfcda4c2bdf86f16e18","signature":false},{"version":"e5fab9363dd130c193e1877d1f152809254adf1303e41175d83f49a46260b180","signature":false},{"version":"6c05d0fcee91437571513c404e62396ee798ff37a2d8bef2104accdc79deb9c0","signature":false,"impliedFormat":1},{"version":"cb5eaa5ad51d596beda5a76732641b7dcf9e26acae7b20919a811d7b38d7c03a","signature":false},{"version":"868089c4835bcfc56985ec7b898e93b409f4c985a73d70589b7b0e2d7d6c5352","signature":false},{"version":"5df078050b57fe7666b0c924cfb91bff348b5f957c8dbd736fe362efba00a9de","signature":false},{"version":"a644de050a39f1628968a6bc4c9c975a5129d0e3874a3c033f7e9b0847d92c3e","signature":false},{"version":"543f32bf89f7aee10af7e597b17bdcf9c76b83b9f4e495243cbf1b2ad4cd84cb","signature":false},{"version":"e14aa6e21dff7cbaf54884d0973e89758e571f7546899fa02b6e87a10c660d20","signature":false},{"version":"721b736b78ca190e99a4e1b125b3d14b4e72a94c9c54ceaf77524e11a4094dc8","signature":false},{"version":"1d99fe0d2ab957f8ce36d7cadf33e4a8337dd918a3afa480dd6603f80fde1094","signature":false},{"version":"f7886bcfa6587f307aa8045d6f9861f319808bbc59f6c89f1ba40a19be648ec5","signature":false},{"version":"288e514b408582dbbe0ebedfe7620f92b65eefacd03c66aba34a0504cf400ccb","signature":false},{"version":"dd500fb85312298d9c50675e8005734324eb7eef4dc49703f5312c185152e7ca","signature":false},{"version":"d5876e27f72a8708c4c6705699a5ca0c42e3133bee3b670ef559c6b645851c1e","signature":false},{"version":"83d095737dda920dcb9eb84575ac1baecd0612a7fd2f6d4e4d3e129202c1a36d","signature":false},{"version":"6392353adcff7db02a3f5dcacb5637b791dbbcb76125aac3075da2519af9785a","signature":false,"impliedFormat":99},{"version":"1f3952b74b8c766a2e602a0ba2db19d3d872d00bab4e01746c6b7229c585086c","signature":false,"impliedFormat":99},{"version":"03608eab2e6c43d1844fcbeed6e140e089c78ba8764a9651fd4747aa91fc507f","signature":false},{"version":"9fa4f9fde67afe4bef8157c58de7690809173f98c72463526cd48964b165080e","signature":false},{"version":"30f1120a0f581ce98aab37f1899e5a7981202dc38e8a671ea04222748acb8249","signature":false},{"version":"e9d654ec9a79d49238e0a996c78508a4eaf889d6b16a744cf4e22126b0dc2e3a","signature":false},{"version":"c32187bd3e25d81a128e734500639af8cf48457c908dc7f9ffe5ba82251a4d88","signature":false},{"version":"9c9a70bfe4ddc2e08724ac0e7c19d5d17fb10817bd8ccd880eea7be456f4dd9a","signature":false},{"version":"2ab5d412ffa57dbca06de472201ddaea1c41b8a515c74667b7059bf334cbb20f","signature":false},{"version":"034d31e472e4e70878fdac24f6314c3355b5b065c3eba828a75f824a83c20341","signature":false},{"version":"3c0c4a0730704889504deb1457bd552134b43f6e2367cfa0d1378b881e779c81","signature":false},{"version":"c67c285034e735a86d94459e59d97659641056e932d053f21a164bede16d14a3","signature":false},{"version":"76e93d96bc19a32eb66e4fd28c96e4d3ded687202893eabf550f835230add683","signature":false},{"version":"3913d85082a4eda81a195bacbd18a93aeb39103bf930ad397c69e1f7521ddf8d","signature":false},{"version":"623de97f632c3c7091a19759e01b1764a3a64aac3ae2ea890c410cc37fd4258e","signature":false},{"version":"ba9ca691d5427129c4c651d308fc027aa3bccdb6484ec90f016a4f2a77f9e7b9","signature":false},{"version":"2c04659a5a9897aee5307e3aad32283ee831ffc7918fcc2a4b7f50065ccfc25b","signature":false},{"version":"96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","signature":false,"impliedFormat":1}],"root":[[410,419],[421,433],[436,450]],"options":{"allowJs":true,"composite":false,"declarationMap":false,"emitDeclarationOnly":false,"esModuleInterop":true,"jsx":1,"module":99,"skipLibCheck":true,"strict":true,"tsBuildInfoFile":"./.tsbuildinfo"},"referencedMap":[[443,1],[444,2],[445,3],[446,4],[442,5],[447,6],[448,7],[449,8],[450,9],[410,10],[363,11],[451,11],[142,12],[143,12],[144,13],[99,14],[145,15],[146,16],[147,17],[94,11],[97,18],[95,11],[96,11],[148,19],[149,20],[150,21],[151,22],[152,23],[153,24],[154,24],[155,25],[156,26],[157,27],[158,28],[100,11],[98,11],[159,29],[160,30],[161,31],[193,32],[162,33],[163,34],[164,35],[165,36],[166,37],[167,38],[168,39],[169,40],[170,41],[171,42],[172,42],[173,43],[174,11],[175,44],[177,45],[176,46],[178,47],[179,48],[180,49],[181,50],[182,51],[183,52],[184,53],[185,54],[186,55],[187,56],[188,57],[189,58],[190,59],[101,11],[102,11],[103,11],[141,60],[191,61],[192,62],[86,11],[198,63],[199,64],[197,65],[195,66],[196,67],[84,11],[87,68],[286,65],[85,11],[435,69],[434,11],[420,65],[93,70],[366,71],[370,72],[372,73],[219,74],[233,75],[337,76],[265,11],[340,77],[301,78],[310,79],[338,80],[220,81],[264,11],[266,82],[339,83],[240,84],[221,85],[245,84],[234,84],[204,84],[292,86],[293,87],[209,11],[289,88],[294,89],[381,90],[287,89],[382,91],[271,11],[290,92],[394,93],[393,94],[296,89],[392,11],[390,11],[391,95],[291,65],[278,96],[279,97],[288,98],[305,99],[306,100],[295,101],[273,102],[274,103],[385,104],[388,105],[252,106],[251,107],[250,108],[397,65],[249,109],[225,11],[400,11],[403,11],[402,65],[404,110],[200,11],[331,11],[232,111],[202,112],[354,11],[355,11],[357,11],[360,113],[356,11],[358,114],[359,114],[218,11],[231,11],[365,115],[373,116],[377,117],[214,118],[281,119],[280,11],[272,102],[300,120],[298,121],[297,11],[299,11],[304,122],[276,123],[213,124],[238,125],[328,126],[205,127],[212,128],[201,76],[342,129],[352,130],[341,11],[351,131],[239,11],[223,132],[319,133],[318,11],[325,134],[327,135],[320,136],[324,137],[326,134],[323,136],[322,134],[321,136],[261,138],[246,138],[313,139],[247,139],[207,140],[206,11],[317,141],[316,142],[315,143],[314,144],[208,145],[285,146],[302,147],[284,148],[309,149],[311,150],[308,148],[241,145],[194,11],[329,151],[267,152],[303,11],[350,153],[270,154],[345,155],[211,11],[346,156],[348,157],[349,158],[332,11],[344,127],[243,159],[330,160],[353,161],[215,11],[217,11],[222,162],[312,163],[210,164],[216,11],[269,165],[268,166],[224,167],[277,168],[275,169],[226,170],[228,171],[401,11],[227,172],[229,173],[368,11],[367,11],[369,11],[399,11],[230,174],[283,65],[92,11],[307,175],[253,11],[263,176],[242,11],[375,65],[384,177],[260,65],[379,89],[259,178],[362,179],[258,177],[203,11],[386,180],[256,65],[257,65],[248,11],[262,11],[255,181],[254,182],[244,183],[237,101],[347,11],[236,184],[235,11],[371,11],[282,65],[364,185],[83,11],[91,186],[88,65],[89,11],[90,11],[343,187],[336,188],[335,11],[334,189],[333,11],[374,190],[376,191],[378,192],[380,193],[383,194],[409,195],[387,195],[408,196],[389,197],[395,198],[396,199],[398,200],[405,201],[407,11],[406,202],[361,203],[81,11],[82,11],[13,11],[14,11],[16,11],[15,11],[2,11],[17,11],[18,11],[19,11],[20,11],[21,11],[22,11],[23,11],[24,11],[3,11],[25,11],[26,11],[4,11],[27,11],[31,11],[28,11],[29,11],[30,11],[32,11],[33,11],[34,11],[5,11],[35,11],[36,11],[37,11],[38,11],[6,11],[42,11],[39,11],[40,11],[41,11],[43,11],[7,11],[44,11],[49,11],[50,11],[45,11],[46,11],[47,11],[48,11],[8,11],[54,11],[51,11],[52,11],[53,11],[55,11],[9,11],[56,11],[57,11],[58,11],[60,11],[59,11],[61,11],[62,11],[10,11],[63,11],[64,11],[65,11],[11,11],[66,11],[67,11],[68,11],[69,11],[70,11],[1,11],[71,11],[72,11],[12,11],[76,11],[74,11],[79,11],[78,11],[73,11],[77,11],[75,11],[80,11],[119,204],[129,205],[118,204],[139,206],[110,207],[109,208],[138,202],[132,209],[137,210],[112,211],[126,212],[111,213],[135,214],[107,215],[106,202],[136,216],[108,217],[113,218],[114,11],[117,218],[104,11],[140,219],[130,220],[121,221],[122,222],[124,223],[120,224],[123,225],[133,202],[115,226],[116,227],[125,228],[105,229],[128,220],[127,218],[131,11],[134,230],[412,231],[429,232],[431,233],[424,234],[432,235],[428,236],[433,237],[436,238],[439,239],[440,240],[418,235],[438,241],[419,242],[430,65],[437,241],[425,243],[423,244],[441,241],[427,243],[426,245],[421,246],[422,247],[417,242],[413,65],[414,11],[415,11],[416,11],[411,11]],"changeFileSet":[443,444,445,446,452,442,447,448,449,450,410,363,451,142,143,144,99,145,146,147,94,97,95,96,148,149,150,151,152,153,154,155,156,157,158,100,98,159,160,161,193,162,163,164,165,166,167,168,169,170,171,172,173,174,175,177,176,178,179,180,181,182,183,184,185,186,187,188,189,190,101,102,103,141,191,192,86,198,199,197,195,196,84,87,286,85,435,434,420,93,366,370,372,219,233,337,265,340,301,310,338,220,264,266,339,240,221,245,234,204,292,293,209,289,294,381,287,382,271,290,394,393,296,392,390,391,291,278,279,288,305,306,295,273,274,385,388,252,251,250,397,249,225,400,403,402,404,200,331,232,202,354,355,357,360,356,358,359,218,231,365,373,377,214,281,280,272,300,298,297,299,304,276,213,238,328,205,212,201,342,352,341,351,239,223,319,318,325,327,320,324,326,323,322,321,261,246,313,247,207,206,317,316,315,314,208,285,302,284,309,311,308,241,194,329,267,303,350,270,345,211,346,348,349,332,344,243,330,353,215,217,222,312,210,216,269,268,224,277,275,226,228,401,227,229,368,367,369,399,230,283,92,307,253,263,242,375,384,260,379,259,362,258,203,386,256,257,248,262,255,254,244,237,347,236,235,371,282,364,83,91,88,89,90,343,336,335,334,333,374,376,378,380,383,409,387,408,389,395,396,398,405,407,406,361,81,82,13,14,16,15,2,17,18,19,20,21,22,23,24,3,25,26,4,27,31,28,29,30,32,33,34,5,35,36,37,38,6,42,39,40,41,43,7,44,49,50,45,46,47,48,8,54,51,52,53,55,9,56,57,58,60,59,61,62,10,63,64,65,11,66,67,68,69,70,1,71,72,12,76,74,79,78,73,77,75,80,119,129,118,139,110,109,138,132,137,112,126,111,135,107,106,136,108,113,114,117,104,140,130,121,122,124,120,123,133,115,116,125,105,128,127,131,134,412,429,431,424,432,453,428,433,436,439,440,418,438,419,430,437,425,423,441,427,426,421,422,417,413,414,415,416,411],"version":"5.9.3"} \ No newline at end of file diff --git a/frontend/.next/server/app-paths-manifest.json b/frontend/.next/server/app-paths-manifest.json index e234c2ed..30d60561 100644 --- a/frontend/.next/server/app-paths-manifest.json +++ b/frontend/.next/server/app-paths-manifest.json @@ -1,3 +1,5 @@ { + "/users/page": "app/users/page.js", + "/recommendations/page": "app/recommendations/page.js", "/page": "app/page.js" } \ No newline at end of file diff --git a/frontend/.next/server/server-reference-manifest.json b/frontend/.next/server/server-reference-manifest.json index 51f5ad16..a1ff8dae 100644 --- a/frontend/.next/server/server-reference-manifest.json +++ b/frontend/.next/server/server-reference-manifest.json @@ -1,5 +1,5 @@ { "node": {}, "edge": {}, - "encryptionKey": "4dlovStTHcLljKBPVgo4Nvr4F//yhFdsjyUsGgBQwBY=" + "encryptionKey": "vMdxWQqJbs8lx1fn0MelZryKaOD9juru8raACaKF7MY=" } \ No newline at end of file diff --git a/frontend/.next/server/webpack-runtime.js b/frontend/.next/server/webpack-runtime.js index d00949b0..c4dfa453 100644 --- a/frontend/.next/server/webpack-runtime.js +++ b/frontend/.next/server/webpack-runtime.js @@ -125,7 +125,7 @@ /******/ /******/ /* webpack/runtime/getFullHash */ /******/ (() => { -/******/ __webpack_require__.h = () => ("cd14067d5a0d1652") +/******/ __webpack_require__.h = () => ("51f130523eab8ec6") /******/ })(); /******/ /******/ /* webpack/runtime/hasOwnProperty shorthand */ diff --git a/frontend/.next/trace b/frontend/.next/trace index 08c3f948..cabc6821 100644 --- a/frontend/.next/trace +++ b/frontend/.next/trace @@ -1,17 +1,19 @@ -[{"name":"hot-reloader","duration":24,"timestamp":6724130222934,"id":3,"tags":{"version":"14.2.35","isTurbopack":false},"startTime":1776331077257,"traceId":"88e4a158817de868"},{"name":"start","duration":0,"timestamp":6724130223379,"id":4,"parentId":3,"tags":{},"startTime":1776331077258,"traceId":"88e4a158817de868"},{"name":"get-version-info","duration":2061811,"timestamp":6724130223495,"id":5,"parentId":4,"tags":{},"startTime":1776331077258,"traceId":"88e4a158817de868"},{"name":"clean","duration":107267,"timestamp":6724132285381,"id":6,"parentId":4,"tags":{},"startTime":1776331079320,"traceId":"88e4a158817de868"},{"name":"create-pages-mapping","duration":97,"timestamp":6724132393708,"id":8,"parentId":7,"tags":{},"startTime":1776331079428,"traceId":"88e4a158817de868"},{"name":"create-entrypoints","duration":243769,"timestamp":6724132393817,"id":9,"parentId":7,"tags":{},"startTime":1776331079428,"traceId":"88e4a158817de868"},{"name":"generate-webpack-config","duration":64962,"timestamp":6724132637612,"id":10,"parentId":7,"tags":{},"startTime":1776331079672,"traceId":"88e4a158817de868"},{"name":"get-webpack-config","duration":308921,"timestamp":6724132393664,"id":7,"parentId":4,"tags":{},"startTime":1776331079428,"traceId":"88e4a158817de868"},{"name":"make","duration":662,"timestamp":6724132741553,"id":12,"parentId":11,"tags":{},"startTime":1776331079776,"traceId":"88e4a158817de868"},{"name":"chunk-graph","duration":594,"timestamp":6724132743532,"id":14,"parentId":13,"tags":{},"startTime":1776331079778,"traceId":"88e4a158817de868"},{"name":"optimize-modules","duration":11,"timestamp":6724132744183,"id":16,"parentId":13,"tags":{},"startTime":1776331079779,"traceId":"88e4a158817de868"},{"name":"optimize-chunks","duration":63,"timestamp":6724132744291,"id":17,"parentId":13,"tags":{},"startTime":1776331079779,"traceId":"88e4a158817de868"},{"name":"optimize-tree","duration":10,"timestamp":6724132744384,"id":18,"parentId":13,"tags":{},"startTime":1776331079779,"traceId":"88e4a158817de868"},{"name":"optimize-chunk-modules","duration":11,"timestamp":6724132744472,"id":19,"parentId":13,"tags":{},"startTime":1776331079779,"traceId":"88e4a158817de868"},{"name":"optimize","duration":364,"timestamp":6724132744164,"id":15,"parentId":13,"tags":{},"startTime":1776331079779,"traceId":"88e4a158817de868"},{"name":"module-hash","duration":40,"timestamp":6724132744802,"id":20,"parentId":13,"tags":{},"startTime":1776331079779,"traceId":"88e4a158817de868"},{"name":"code-generation","duration":91,"timestamp":6724132744853,"id":21,"parentId":13,"tags":{},"startTime":1776331079779,"traceId":"88e4a158817de868"},{"name":"hash","duration":212,"timestamp":6724132745050,"id":22,"parentId":13,"tags":{},"startTime":1776331079779,"traceId":"88e4a158817de868"},{"name":"code-generation-jobs","duration":32,"timestamp":6724132745261,"id":23,"parentId":13,"tags":{},"startTime":1776331079780,"traceId":"88e4a158817de868"},{"name":"module-assets","duration":35,"timestamp":6724132745281,"id":24,"parentId":13,"tags":{},"startTime":1776331079780,"traceId":"88e4a158817de868"},{"name":"create-chunk-assets","duration":119,"timestamp":6724132745319,"id":25,"parentId":13,"tags":{},"startTime":1776331079780,"traceId":"88e4a158817de868"},{"name":"NextJsBuildManifest-generateClientManifest","duration":972,"timestamp":6724132778548,"id":27,"parentId":11,"tags":{},"startTime":1776331079813,"traceId":"88e4a158817de868"},{"name":"NextJsBuildManifest-createassets","duration":1241,"timestamp":6724132778294,"id":26,"parentId":11,"tags":{},"startTime":1776331079813,"traceId":"88e4a158817de868"},{"name":"seal","duration":36723,"timestamp":6724132743441,"id":13,"parentId":11,"tags":{},"startTime":1776331079778,"traceId":"88e4a158817de868"},{"name":"webpack-compilation","duration":40573,"timestamp":6724132739728,"id":11,"parentId":3,"tags":{"name":"client"},"startTime":1776331079774,"traceId":"88e4a158817de868"},{"name":"emit","duration":8907,"timestamp":6724132780509,"id":28,"parentId":3,"tags":{},"startTime":1776331079815,"traceId":"88e4a158817de868"},{"name":"make","duration":716,"timestamp":6724132793413,"id":30,"parentId":29,"tags":{},"startTime":1776331079828,"traceId":"88e4a158817de868"},{"name":"chunk-graph","duration":12,"timestamp":6724132794315,"id":32,"parentId":31,"tags":{},"startTime":1776331079829,"traceId":"88e4a158817de868"},{"name":"optimize-modules","duration":2,"timestamp":6724132794337,"id":34,"parentId":31,"tags":{},"startTime":1776331079829,"traceId":"88e4a158817de868"},{"name":"optimize-chunks","duration":42,"timestamp":6724132794366,"id":35,"parentId":31,"tags":{},"startTime":1776331079829,"traceId":"88e4a158817de868"},{"name":"optimize-tree","duration":3,"timestamp":6724132794426,"id":36,"parentId":31,"tags":{},"startTime":1776331079829,"traceId":"88e4a158817de868"},{"name":"optimize-chunk-modules","duration":3,"timestamp":6724132794452,"id":37,"parentId":31,"tags":{},"startTime":1776331079829,"traceId":"88e4a158817de868"},{"name":"optimize","duration":144,"timestamp":6724132794334,"id":33,"parentId":31,"tags":{},"startTime":1776331079829,"traceId":"88e4a158817de868"},{"name":"module-hash","duration":4,"timestamp":6724132794535,"id":38,"parentId":31,"tags":{},"startTime":1776331079829,"traceId":"88e4a158817de868"},{"name":"code-generation","duration":3,"timestamp":6724132794544,"id":39,"parentId":31,"tags":{},"startTime":1776331079829,"traceId":"88e4a158817de868"},{"name":"hash","duration":26,"timestamp":6724132794563,"id":40,"parentId":31,"tags":{},"startTime":1776331079829,"traceId":"88e4a158817de868"},{"name":"code-generation-jobs","duration":21,"timestamp":6724132794588,"id":41,"parentId":31,"tags":{},"startTime":1776331079829,"traceId":"88e4a158817de868"},{"name":"module-assets","duration":6,"timestamp":6724132794606,"id":42,"parentId":31,"tags":{},"startTime":1776331079829,"traceId":"88e4a158817de868"},{"name":"create-chunk-assets","duration":7,"timestamp":6724132794614,"id":43,"parentId":31,"tags":{},"startTime":1776331079829,"traceId":"88e4a158817de868"},{"name":"seal","duration":703,"timestamp":6724132794298,"id":31,"parentId":29,"tags":{},"startTime":1776331079829,"traceId":"88e4a158817de868"},{"name":"webpack-compilation","duration":2329,"timestamp":6724132792733,"id":29,"parentId":3,"tags":{"name":"server"},"startTime":1776331079827,"traceId":"88e4a158817de868"},{"name":"emit","duration":870,"timestamp":6724132795090,"id":44,"parentId":3,"tags":{},"startTime":1776331079829,"traceId":"88e4a158817de868"},{"name":"make","duration":77,"timestamp":6724132798088,"id":46,"parentId":45,"tags":{},"startTime":1776331079832,"traceId":"88e4a158817de868"},{"name":"chunk-graph","duration":11,"timestamp":6724132798410,"id":48,"parentId":47,"tags":{},"startTime":1776331079833,"traceId":"88e4a158817de868"},{"name":"optimize-modules","duration":2,"timestamp":6724132798430,"id":50,"parentId":47,"tags":{},"startTime":1776331079833,"traceId":"88e4a158817de868"},{"name":"optimize-chunks","duration":4,"timestamp":6724132798457,"id":51,"parentId":47,"tags":{},"startTime":1776331079833,"traceId":"88e4a158817de868"},{"name":"optimize-tree","duration":2,"timestamp":6724132798468,"id":52,"parentId":47,"tags":{},"startTime":1776331079833,"traceId":"88e4a158817de868"},{"name":"optimize-chunk-modules","duration":2,"timestamp":6724132798476,"id":53,"parentId":47,"tags":{},"startTime":1776331079833,"traceId":"88e4a158817de868"},{"name":"optimize","duration":58,"timestamp":6724132798427,"id":49,"parentId":47,"tags":{},"startTime":1776331079833,"traceId":"88e4a158817de868"},{"name":"module-hash","duration":3,"timestamp":6724132798528,"id":54,"parentId":47,"tags":{},"startTime":1776331079833,"traceId":"88e4a158817de868"},{"name":"code-generation","duration":3,"timestamp":6724132798535,"id":55,"parentId":47,"tags":{},"startTime":1776331079833,"traceId":"88e4a158817de868"},{"name":"hash","duration":139,"timestamp":6724132798558,"id":56,"parentId":47,"tags":{},"startTime":1776331079833,"traceId":"88e4a158817de868"},{"name":"code-generation-jobs","duration":20,"timestamp":6724132798697,"id":57,"parentId":47,"tags":{},"startTime":1776331079833,"traceId":"88e4a158817de868"},{"name":"module-assets","duration":7,"timestamp":6724132798713,"id":58,"parentId":47,"tags":{},"startTime":1776331079833,"traceId":"88e4a158817de868"},{"name":"create-chunk-assets","duration":9,"timestamp":6724132798722,"id":59,"parentId":47,"tags":{},"startTime":1776331079833,"traceId":"88e4a158817de868"},{"name":"seal","duration":733,"timestamp":6724132798396,"id":47,"parentId":45,"tags":{},"startTime":1776331079833,"traceId":"88e4a158817de868"},{"name":"webpack-compilation","duration":1796,"timestamp":6724132797358,"id":45,"parentId":3,"tags":{"name":"edge-server"},"startTime":1776331079832,"traceId":"88e4a158817de868"},{"name":"emit","duration":636,"timestamp":6724132799190,"id":60,"parentId":3,"tags":{},"startTime":1776331079834,"traceId":"88e4a158817de868"}] -[{"name":"make","duration":199,"timestamp":6724133019617,"id":65,"parentId":64,"tags":{},"startTime":1776331080054,"traceId":"88e4a158817de868"},{"name":"chunk-graph","duration":12,"timestamp":6724133019914,"id":67,"parentId":66,"tags":{},"startTime":1776331080054,"traceId":"88e4a158817de868"},{"name":"optimize-modules","duration":2,"timestamp":6724133019935,"id":69,"parentId":66,"tags":{},"startTime":1776331080054,"traceId":"88e4a158817de868"},{"name":"optimize-chunks","duration":4,"timestamp":6724133019944,"id":70,"parentId":66,"tags":{},"startTime":1776331080054,"traceId":"88e4a158817de868"},{"name":"optimize-tree","duration":2,"timestamp":6724133019954,"id":71,"parentId":66,"tags":{},"startTime":1776331080054,"traceId":"88e4a158817de868"},{"name":"optimize-chunk-modules","duration":2,"timestamp":6724133019965,"id":72,"parentId":66,"tags":{},"startTime":1776331080054,"traceId":"88e4a158817de868"},{"name":"optimize","duration":47,"timestamp":6724133019932,"id":68,"parentId":66,"tags":{},"startTime":1776331080054,"traceId":"88e4a158817de868"},{"name":"module-hash","duration":4,"timestamp":6724133020027,"id":73,"parentId":66,"tags":{},"startTime":1776331080054,"traceId":"88e4a158817de868"},{"name":"code-generation","duration":5,"timestamp":6724133020035,"id":74,"parentId":66,"tags":{},"startTime":1776331080054,"traceId":"88e4a158817de868"},{"name":"hash","duration":27,"timestamp":6724133020055,"id":75,"parentId":66,"tags":{},"startTime":1776331080054,"traceId":"88e4a158817de868"},{"name":"code-generation-jobs","duration":9,"timestamp":6724133020082,"id":76,"parentId":66,"tags":{},"startTime":1776331080054,"traceId":"88e4a158817de868"},{"name":"module-assets","duration":5,"timestamp":6724133020088,"id":77,"parentId":66,"tags":{},"startTime":1776331080054,"traceId":"88e4a158817de868"},{"name":"create-chunk-assets","duration":7,"timestamp":6724133020095,"id":78,"parentId":66,"tags":{},"startTime":1776331080054,"traceId":"88e4a158817de868"},{"name":"NextJsBuildManifest-generateClientManifest","duration":257,"timestamp":6724133020368,"id":80,"parentId":64,"tags":{},"startTime":1776331080055,"traceId":"88e4a158817de868"},{"name":"NextJsBuildManifest-createassets","duration":328,"timestamp":6724133020305,"id":79,"parentId":64,"tags":{},"startTime":1776331080055,"traceId":"88e4a158817de868"},{"name":"seal","duration":868,"timestamp":6724133019899,"id":66,"parentId":64,"tags":{},"startTime":1776331080054,"traceId":"88e4a158817de868"},{"name":"webpack-compilation","duration":1619,"timestamp":6724133019212,"id":64,"parentId":61,"tags":{"name":"client"},"startTime":1776331080054,"traceId":"88e4a158817de868"},{"name":"setup-dev-bundler","duration":2923669,"timestamp":6724130120928,"id":2,"parentId":1,"tags":{},"startTime":1776331077155,"traceId":"88e4a158817de868"},{"name":"emit","duration":24296,"timestamp":6724133020850,"id":81,"parentId":61,"tags":{},"startTime":1776331080055,"traceId":"88e4a158817de868"},{"name":"webpack-invalidated-client","duration":32110,"timestamp":6724133013607,"id":61,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776331080048,"traceId":"88e4a158817de868"},{"name":"make","duration":167,"timestamp":6724133046818,"id":83,"parentId":82,"tags":{},"startTime":1776331080081,"traceId":"88e4a158817de868"},{"name":"chunk-graph","duration":16,"timestamp":6724133047061,"id":85,"parentId":84,"tags":{},"startTime":1776331080081,"traceId":"88e4a158817de868"},{"name":"optimize-modules","duration":4,"timestamp":6724133047086,"id":87,"parentId":84,"tags":{},"startTime":1776331080081,"traceId":"88e4a158817de868"},{"name":"optimize-chunks","duration":79,"timestamp":6724133047128,"id":88,"parentId":84,"tags":{},"startTime":1776331080082,"traceId":"88e4a158817de868"},{"name":"optimize-tree","duration":3,"timestamp":6724133047213,"id":89,"parentId":84,"tags":{},"startTime":1776331080082,"traceId":"88e4a158817de868"},{"name":"optimize-chunk-modules","duration":2,"timestamp":6724133047224,"id":90,"parentId":84,"tags":{},"startTime":1776331080082,"traceId":"88e4a158817de868"},{"name":"optimize","duration":154,"timestamp":6724133047083,"id":86,"parentId":84,"tags":{},"startTime":1776331080081,"traceId":"88e4a158817de868"},{"name":"module-hash","duration":4,"timestamp":6724133047358,"id":91,"parentId":84,"tags":{},"startTime":1776331080082,"traceId":"88e4a158817de868"},{"name":"code-generation","duration":3,"timestamp":6724133047366,"id":92,"parentId":84,"tags":{},"startTime":1776331080082,"traceId":"88e4a158817de868"},{"name":"hash","duration":29,"timestamp":6724133047383,"id":93,"parentId":84,"tags":{},"startTime":1776331080082,"traceId":"88e4a158817de868"},{"name":"code-generation-jobs","duration":8,"timestamp":6724133047413,"id":94,"parentId":84,"tags":{},"startTime":1776331080082,"traceId":"88e4a158817de868"},{"name":"module-assets","duration":3,"timestamp":6724133047418,"id":95,"parentId":84,"tags":{},"startTime":1776331080082,"traceId":"88e4a158817de868"},{"name":"create-chunk-assets","duration":7,"timestamp":6724133047424,"id":96,"parentId":84,"tags":{},"startTime":1776331080082,"traceId":"88e4a158817de868"},{"name":"seal","duration":537,"timestamp":6724133047046,"id":84,"parentId":82,"tags":{},"startTime":1776331080081,"traceId":"88e4a158817de868"},{"name":"webpack-compilation","duration":1143,"timestamp":6724133046457,"id":82,"parentId":62,"tags":{"name":"server"},"startTime":1776331080081,"traceId":"88e4a158817de868"},{"name":"run-instrumentation-hook","duration":21,"timestamp":6724133064372,"id":98,"parentId":1,"tags":{},"startTime":1776331080099,"traceId":"88e4a158817de868"},{"name":"emit","duration":19914,"timestamp":6724133047609,"id":97,"parentId":62,"tags":{},"startTime":1776331080082,"traceId":"88e4a158817de868"},{"name":"webpack-invalidated-server","duration":54065,"timestamp":6724133013761,"id":62,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776331080048,"traceId":"88e4a158817de868"},{"name":"make","duration":75,"timestamp":6724133069053,"id":100,"parentId":99,"tags":{},"startTime":1776331080103,"traceId":"88e4a158817de868"},{"name":"chunk-graph","duration":14,"timestamp":6724133069269,"id":102,"parentId":101,"tags":{},"startTime":1776331080104,"traceId":"88e4a158817de868"},{"name":"optimize-modules","duration":43,"timestamp":6724133069291,"id":104,"parentId":101,"tags":{},"startTime":1776331080104,"traceId":"88e4a158817de868"},{"name":"optimize-chunks","duration":5,"timestamp":6724133069342,"id":105,"parentId":101,"tags":{},"startTime":1776331080104,"traceId":"88e4a158817de868"},{"name":"optimize-tree","duration":2,"timestamp":6724133069354,"id":106,"parentId":101,"tags":{},"startTime":1776331080104,"traceId":"88e4a158817de868"},{"name":"optimize-chunk-modules","duration":2,"timestamp":6724133069366,"id":107,"parentId":101,"tags":{},"startTime":1776331080104,"traceId":"88e4a158817de868"},{"name":"optimize","duration":90,"timestamp":6724133069287,"id":103,"parentId":101,"tags":{},"startTime":1776331080104,"traceId":"88e4a158817de868"},{"name":"module-hash","duration":3,"timestamp":6724133069423,"id":108,"parentId":101,"tags":{},"startTime":1776331080104,"traceId":"88e4a158817de868"},{"name":"code-generation","duration":4,"timestamp":6724133069431,"id":109,"parentId":101,"tags":{},"startTime":1776331080104,"traceId":"88e4a158817de868"},{"name":"hash","duration":23,"timestamp":6724133069449,"id":110,"parentId":101,"tags":{},"startTime":1776331080104,"traceId":"88e4a158817de868"},{"name":"code-generation-jobs","duration":7,"timestamp":6724133069473,"id":111,"parentId":101,"tags":{},"startTime":1776331080104,"traceId":"88e4a158817de868"},{"name":"module-assets","duration":4,"timestamp":6724133069478,"id":112,"parentId":101,"tags":{},"startTime":1776331080104,"traceId":"88e4a158817de868"},{"name":"create-chunk-assets","duration":6,"timestamp":6724133069484,"id":113,"parentId":101,"tags":{},"startTime":1776331080104,"traceId":"88e4a158817de868"},{"name":"seal","duration":412,"timestamp":6724133069254,"id":101,"parentId":99,"tags":{},"startTime":1776331080104,"traceId":"88e4a158817de868"},{"name":"webpack-compilation","duration":992,"timestamp":6724133068685,"id":99,"parentId":63,"tags":{"name":"edge-server"},"startTime":1776331080103,"traceId":"88e4a158817de868"},{"name":"start-dev-server","duration":3198872,"timestamp":6724129873722,"id":1,"tags":{"cpus":"10","platform":"darwin","memory.freeMem":"75857920","memory.totalMem":"17179869184","memory.heapSizeLimit":"8640266240","isTurbopack":false,"memory.rss":"200327168","memory.heapTotal":"104644608","memory.heapUsed":"72496656"},"startTime":1776331076908,"traceId":"88e4a158817de868"},{"name":"emit","duration":4956,"timestamp":6724133069686,"id":114,"parentId":63,"tags":{},"startTime":1776331080104,"traceId":"88e4a158817de868"},{"name":"webpack-invalidated-edge-server","duration":61286,"timestamp":6724133013787,"id":63,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776331080048,"traceId":"88e4a158817de868"}] -[{"name":"build-module","duration":26637,"timestamp":6724134710471,"id":121,"parentId":120,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-app-loader.js?name=app%2Fpage&page=%2Fpage&appPaths=%2Fpage&pagePath=private-next-app-dir%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!","layer":"rsc"},"startTime":1776331081745,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":8738,"timestamp":6724134752705,"id":133,"parentId":132,"tags":{},"startTime":1776331081787,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":9472,"timestamp":6724134751986,"id":132,"parentId":122,"tags":{},"startTime":1776331081786,"traceId":"88e4a158817de868"},{"name":"build-module-tsx","duration":15871,"timestamp":6724134747114,"id":122,"parentId":121,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/page.tsx","layer":"rsc"},"startTime":1776331081781,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":9862,"timestamp":6724134753229,"id":139,"parentId":138,"tags":{},"startTime":1776331081788,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":9933,"timestamp":6724134753161,"id":138,"parentId":128,"tags":{},"startTime":1776331081788,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":15254,"timestamp":6724134751741,"id":128,"parentId":121,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/error-boundary.js","layer":"rsc"},"startTime":1776331081786,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":16891,"timestamp":6724134753158,"id":137,"parentId":136,"tags":{},"startTime":1776331081788,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":16973,"timestamp":6724134753082,"id":136,"parentId":127,"tags":{},"startTime":1776331081787,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":22781,"timestamp":6724134751652,"id":127,"parentId":121,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/not-found-error.js","layer":"rsc"},"startTime":1776331081786,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":21449,"timestamp":6724134753073,"id":135,"parentId":134,"tags":{},"startTime":1776331081787,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":21782,"timestamp":6724134752740,"id":134,"parentId":123,"tags":{},"startTime":1776331081787,"traceId":"88e4a158817de868"},{"name":"build-module-tsx","duration":28724,"timestamp":6724134749672,"id":123,"parentId":121,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/layout.tsx","layer":"rsc"},"startTime":1776331081784,"traceId":"88e4a158817de868"},{"name":"read-resource","duration":31127,"timestamp":6724134751943,"id":129,"parentId":124,"tags":{},"startTime":1776331081786,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":700,"timestamp":6724134783109,"id":140,"parentId":124,"tags":{},"startTime":1776331081817,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":38762,"timestamp":6724134749834,"id":124,"parentId":121,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/app-render/entry-base.js","layer":"rsc"},"startTime":1776331081784,"traceId":"88e4a158817de868"},{"name":"read-resource","duration":36638,"timestamp":6724134751980,"id":131,"parentId":126,"tags":{},"startTime":1776331081786,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":59,"timestamp":6724134788630,"id":141,"parentId":126,"tags":{},"startTime":1776331081823,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":38730,"timestamp":6724134751465,"id":126,"parentId":121,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/route-modules/app-page/module.compiled.js","layer":"ssr"},"startTime":1776331081786,"traceId":"88e4a158817de868"},{"name":"read-resource","duration":38234,"timestamp":6724134751973,"id":130,"parentId":125,"tags":{},"startTime":1776331081786,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":190,"timestamp":6724134790219,"id":142,"parentId":125,"tags":{},"startTime":1776331081825,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":40213,"timestamp":6724134750730,"id":125,"parentId":121,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/route-kind.js","layer":"rsc"},"startTime":1776331081785,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":431,"timestamp":6724134801326,"id":143,"parentId":126,"tags":{"name":"next/dist/compiled/next-server/app-page.runtime.dev.js","layer":null},"startTime":1776331081836,"traceId":"88e4a158817de868"},{"name":"build-module-external","duration":18,"timestamp":6724134806492,"id":147,"parentId":124,"tags":{"name":"../../client/components/static-generation-async-storage.external","layer":null},"startTime":1776331081841,"traceId":"88e4a158817de868"},{"name":"build-module-external","duration":5,"timestamp":6724134806522,"id":148,"parentId":124,"tags":{"name":"../../client/components/request-async-storage.external","layer":null},"startTime":1776331081841,"traceId":"88e4a158817de868"},{"name":"build-module-external","duration":4,"timestamp":6724134806530,"id":149,"parentId":124,"tags":{"name":"../../client/components/action-async-storage.external","layer":null},"startTime":1776331081841,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":6274,"timestamp":6724134806873,"id":159,"parentId":158,"tags":{},"startTime":1776331081841,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":6312,"timestamp":6724134806844,"id":158,"parentId":146,"tags":{},"startTime":1776331081841,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":7335,"timestamp":6724134806439,"id":146,"parentId":124,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/render-from-template-context.js","layer":"rsc"},"startTime":1776331081841,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":7124,"timestamp":6724134806841,"id":157,"parentId":156,"tags":{},"startTime":1776331081841,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":7162,"timestamp":6724134806808,"id":156,"parentId":145,"tags":{},"startTime":1776331081841,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":8019,"timestamp":6724134806301,"id":145,"parentId":124,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/layout-router.js","layer":"rsc"},"startTime":1776331081841,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":7430,"timestamp":6724134806905,"id":161,"parentId":160,"tags":{},"startTime":1776331081841,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":7461,"timestamp":6724134806875,"id":160,"parentId":150,"tags":{},"startTime":1776331081841,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":8011,"timestamp":6724134806537,"id":150,"parentId":124,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/client-page.js","layer":"rsc"},"startTime":1776331081841,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":7754,"timestamp":6724134806804,"id":155,"parentId":154,"tags":{},"startTime":1776331081841,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":7871,"timestamp":6724134806688,"id":154,"parentId":144,"tags":{},"startTime":1776331081841,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":9070,"timestamp":6724134806068,"id":144,"parentId":124,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/app-router.js","layer":"rsc"},"startTime":1776331081840,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":9419,"timestamp":6724134807173,"id":165,"parentId":164,"tags":{},"startTime":1776331081842,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":9471,"timestamp":6724134807124,"id":164,"parentId":152,"tags":{},"startTime":1776331081842,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":11567,"timestamp":6724134806611,"id":152,"parentId":124,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/hooks-server-context.js","layer":"rsc"},"startTime":1776331081841,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":11001,"timestamp":6724134807199,"id":167,"parentId":166,"tags":{},"startTime":1776331081842,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":11026,"timestamp":6724134807176,"id":166,"parentId":153,"tags":{},"startTime":1776331081842,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":11765,"timestamp":6724134806639,"id":153,"parentId":124,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/not-found-boundary.js","layer":"rsc"},"startTime":1776331081841,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":11298,"timestamp":6724134807121,"id":163,"parentId":162,"tags":{},"startTime":1776331081842,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":11435,"timestamp":6724134806986,"id":162,"parentId":151,"tags":{},"startTime":1776331081841,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":12845,"timestamp":6724134806577,"id":151,"parentId":124,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/search-params.js","layer":"rsc"},"startTime":1776331081841,"traceId":"88e4a158817de868"},{"name":"read-resource","duration":11618,"timestamp":6724134813048,"id":169,"parentId":168,"tags":{},"startTime":1776331081847,"traceId":"88e4a158817de868"},{"name":"build-module-css","duration":12580,"timestamp":6724134812520,"id":168,"parentId":123,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/globals.css","layer":"rsc"},"startTime":1776331081847,"traceId":"88e4a158817de868"},{"name":"read-resource","duration":7315,"timestamp":6724134820491,"id":175,"parentId":171,"tags":{},"startTime":1776331081855,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":41,"timestamp":6724134827816,"id":178,"parentId":171,"tags":{},"startTime":1776331081862,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":8603,"timestamp":6724134820175,"id":171,"parentId":124,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/app-render/rsc/preloads.js","layer":"rsc"},"startTime":1776331081855,"traceId":"88e4a158817de868"},{"name":"read-resource","duration":8291,"timestamp":6724134820496,"id":176,"parentId":172,"tags":{},"startTime":1776331081855,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":37,"timestamp":6724134828795,"id":179,"parentId":172,"tags":{},"startTime":1776331081863,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":8759,"timestamp":6724134820281,"id":172,"parentId":124,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/app-render/rsc/postpone.js","layer":"rsc"},"startTime":1776331081855,"traceId":"88e4a158817de868"},{"name":"read-resource","duration":8620,"timestamp":6724134820475,"id":174,"parentId":170,"tags":{},"startTime":1776331081855,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":50,"timestamp":6724134829100,"id":180,"parentId":170,"tags":{},"startTime":1776331081863,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":20304,"timestamp":6724134820058,"id":170,"parentId":124,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/lib/patch-fetch.js","layer":"rsc"},"startTime":1776331081854,"traceId":"88e4a158817de868"},{"name":"read-resource","duration":19896,"timestamp":6724134820502,"id":177,"parentId":173,"tags":{},"startTime":1776331081855,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":45,"timestamp":6724134840410,"id":181,"parentId":173,"tags":{},"startTime":1776331081875,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":20989,"timestamp":6724134820336,"id":173,"parentId":124,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/app-render/rsc/taint.js","layer":"rsc"},"startTime":1776331081855,"traceId":"88e4a158817de868"},{"name":"read-resource","duration":3357,"timestamp":6724134841898,"id":183,"parentId":182,"tags":{},"startTime":1776331081876,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":65,"timestamp":6724134845268,"id":184,"parentId":182,"tags":{},"startTime":1776331081880,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":5258,"timestamp":6724134841763,"id":182,"parentId":151,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/app-render/dynamic-rendering.js","layer":"rsc"},"startTime":1776331081876,"traceId":"88e4a158817de868"},{"name":"read-resource","duration":3935,"timestamp":6724134847479,"id":188,"parentId":185,"tags":{},"startTime":1776331081882,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":32,"timestamp":6724134851426,"id":201,"parentId":185,"tags":{},"startTime":1776331081886,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":4431,"timestamp":6724134847254,"id":185,"parentId":128,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-loader/module-proxy.js","layer":"rsc"},"startTime":1776331081882,"traceId":"88e4a158817de868"},{"name":"read-resource","duration":4242,"timestamp":6724134847501,"id":190,"parentId":187,"tags":{},"startTime":1776331081882,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":30,"timestamp":6724134851748,"id":202,"parentId":187,"tags":{},"startTime":1776331081886,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":4654,"timestamp":6724134847413,"id":187,"parentId":170,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/lib/clone-response.js","layer":"rsc"},"startTime":1776331081882,"traceId":"88e4a158817de868"},{"name":"read-resource","duration":4579,"timestamp":6724134847493,"id":189,"parentId":186,"tags":{},"startTime":1776331081882,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":32,"timestamp":6724134852078,"id":203,"parentId":186,"tags":{},"startTime":1776331081886,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":5588,"timestamp":6724134847356,"id":186,"parentId":170,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/lib/dedupe-fetch.js","layer":"rsc"},"startTime":1776331081882,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":1981,"timestamp":6724134854244,"id":208,"parentId":207,"tags":{},"startTime":1776331081889,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":2010,"timestamp":6724134854217,"id":207,"parentId":205,"tags":{},"startTime":1776331081889,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":2766,"timestamp":6724134854047,"id":205,"parentId":182,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/static-generation-bailout.js","layer":"rsc"},"startTime":1776331081888,"traceId":"88e4a158817de868"},{"name":"read-resource","duration":7314,"timestamp":6724134850140,"id":197,"parentId":192,"tags":{},"startTime":1776331081885,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":36,"timestamp":6724134857460,"id":215,"parentId":192,"tags":{},"startTime":1776331081892,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":8906,"timestamp":6724134849934,"id":192,"parentId":170,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/lib/trace/constants.js","layer":"rsc"},"startTime":1776331081884,"traceId":"88e4a158817de868"},{"name":"read-resource","duration":8722,"timestamp":6724134850128,"id":196,"parentId":191,"tags":{},"startTime":1776331081885,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":33,"timestamp":6724134858856,"id":216,"parentId":191,"tags":{},"startTime":1776331081893,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":9301,"timestamp":6724134849847,"id":191,"parentId":151,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/web/spec-extension/adapters/reflect.js","layer":"rsc"},"startTime":1776331081884,"traceId":"88e4a158817de868"},{"name":"read-resource","duration":9146,"timestamp":6724134850160,"id":200,"parentId":195,"tags":{},"startTime":1776331081885,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":71,"timestamp":6724134859313,"id":217,"parentId":195,"tags":{},"startTime":1776331081894,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":10287,"timestamp":6724134850076,"id":195,"parentId":170,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/output/log.js","layer":"rsc"},"startTime":1776331081884,"traceId":"88e4a158817de868"},{"name":"read-resource","duration":10224,"timestamp":6724134850148,"id":198,"parentId":193,"tags":{},"startTime":1776331081885,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":36,"timestamp":6724134860377,"id":218,"parentId":193,"tags":{},"startTime":1776331081895,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":12728,"timestamp":6724134849986,"id":193,"parentId":170,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/lib/trace/tracer.js","layer":"rsc"},"startTime":1776331081884,"traceId":"88e4a158817de868"},{"name":"read-resource","duration":12572,"timestamp":6724134850152,"id":199,"parentId":194,"tags":{},"startTime":1776331081885,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":39,"timestamp":6724134862730,"id":219,"parentId":194,"tags":{},"startTime":1776331081897,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":13609,"timestamp":6724134850034,"id":194,"parentId":170,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/constants.js","layer":"rsc"},"startTime":1776331081884,"traceId":"88e4a158817de868"},{"name":"read-resource","duration":10577,"timestamp":6724134854093,"id":206,"parentId":204,"tags":{},"startTime":1776331081888,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":28,"timestamp":6724134864676,"id":220,"parentId":204,"tags":{},"startTime":1776331081899,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":11599,"timestamp":6724134853964,"id":204,"parentId":182,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/url.js","layer":"rsc"},"startTime":1776331081888,"traceId":"88e4a158817de868"},{"name":"read-resource","duration":11417,"timestamp":6724134855992,"id":211,"parentId":209,"tags":{},"startTime":1776331081890,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":41,"timestamp":6724134867424,"id":225,"parentId":209,"tags":{},"startTime":1776331081902,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":11783,"timestamp":6724134855873,"id":209,"parentId":124,"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":1776331081890,"traceId":"88e4a158817de868"},{"name":"read-resource","duration":11667,"timestamp":6724134856000,"id":212,"parentId":210,"tags":{},"startTime":1776331081890,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":33,"timestamp":6724134867672,"id":226,"parentId":210,"tags":{},"startTime":1776331081902,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":11854,"timestamp":6724134855938,"id":210,"parentId":127,"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":1776331081890,"traceId":"88e4a158817de868"},{"name":"read-resource","duration":10913,"timestamp":6724134856925,"id":214,"parentId":213,"tags":{},"startTime":1776331081891,"traceId":"88e4a158817de868"}] -[{"name":"next-swc-loader","duration":53,"timestamp":6724134868012,"id":227,"parentId":213,"tags":{},"startTime":1776331081902,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":11307,"timestamp":6724134856856,"id":213,"parentId":127,"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":1776331081891,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":2256,"timestamp":6724134869404,"id":236,"parentId":235,"tags":{},"startTime":1776331081904,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":2392,"timestamp":6724134869368,"id":235,"parentId":230,"tags":{},"startTime":1776331081904,"traceId":"88e4a158817de868"},{"name":"build-module-tsx","duration":3144,"timestamp":6724134869148,"id":230,"parentId":123,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/auth-guard.tsx","layer":"rsc"},"startTime":1776331081904,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":2938,"timestamp":6724134869366,"id":234,"parentId":233,"tags":{},"startTime":1776331081904,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":2974,"timestamp":6724134869332,"id":233,"parentId":229,"tags":{},"startTime":1776331081904,"traceId":"88e4a158817de868"},{"name":"build-module-tsx","duration":3385,"timestamp":6724134869087,"id":229,"parentId":123,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/user-menu.tsx","layer":"rsc"},"startTime":1776331081903,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":3154,"timestamp":6724134869326,"id":232,"parentId":231,"tags":{},"startTime":1776331081904,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":3219,"timestamp":6724134869262,"id":231,"parentId":228,"tags":{},"startTime":1776331081904,"traceId":"88e4a158817de868"},{"name":"build-module-tsx","duration":3725,"timestamp":6724134868969,"id":228,"parentId":123,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/nav.tsx","layer":"rsc"},"startTime":1776331081903,"traceId":"88e4a158817de868"},{"name":"read-resource","duration":7554,"timestamp":6724134866067,"id":224,"parentId":222,"tags":{},"startTime":1776331081900,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":29,"timestamp":6724134873627,"id":242,"parentId":222,"tags":{},"startTime":1776331081908,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":7762,"timestamp":6724134866000,"id":222,"parentId":123,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/route-modules/app-page/vendored/rsc/react-jsx-dev-runtime.js","layer":"rsc"},"startTime":1776331081900,"traceId":"88e4a158817de868"},{"name":"read-resource","duration":7973,"timestamp":6724134866061,"id":223,"parentId":221,"tags":{},"startTime":1776331081900,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":1808,"timestamp":6724134873011,"id":241,"parentId":240,"tags":{},"startTime":1776331081907,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":1864,"timestamp":6724134872958,"id":240,"parentId":237,"tags":{},"startTime":1776331081907,"traceId":"88e4a158817de868"},{"name":"build-module-tsx","duration":2294,"timestamp":6724134872745,"id":237,"parentId":123,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/hooks/use-auth.tsx","layer":"rsc"},"startTime":1776331081907,"traceId":"88e4a158817de868"},{"name":"read-resource","duration":2737,"timestamp":6724134872946,"id":239,"parentId":238,"tags":{},"startTime":1776331081907,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":35,"timestamp":6724134875691,"id":245,"parentId":238,"tags":{},"startTime":1776331081910,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":4376,"timestamp":6724134872835,"id":238,"parentId":195,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/picocolors.js","layer":"rsc"},"startTime":1776331081907,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":3059,"timestamp":6724134874189,"id":244,"parentId":243,"tags":{},"startTime":1776331081909,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":3202,"timestamp":6724134874047,"id":243,"parentId":221,"tags":{},"startTime":1776331081908,"traceId":"88e4a158817de868"},{"name":"build-module-mjs","duration":12201,"timestamp":6724134865646,"id":221,"parentId":123,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next-themes/dist/index.mjs","layer":"rsc"},"startTime":1776331081900,"traceId":"88e4a158817de868"},{"name":"read-resource","duration":1058,"timestamp":6724134880425,"id":247,"parentId":246,"tags":{},"startTime":1776331081915,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":78,"timestamp":6724134881490,"id":252,"parentId":246,"tags":{},"startTime":1776331081916,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":1418,"timestamp":6724134880314,"id":246,"parentId":171,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/route-modules/app-page/vendored/rsc/react-dom.js","layer":"rsc"},"startTime":1776331081915,"traceId":"88e4a158817de868"},{"name":"read-resource","duration":701,"timestamp":6724134881336,"id":250,"parentId":248,"tags":{},"startTime":1776331081916,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":45,"timestamp":6724134882042,"id":253,"parentId":248,"tags":{},"startTime":1776331081916,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":10079,"timestamp":6724134881200,"id":248,"parentId":193,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@opentelemetry/api/index.js","layer":"rsc"},"startTime":1776331081916,"traceId":"88e4a158817de868"},{"name":"read-resource","duration":11146,"timestamp":6724134881346,"id":251,"parentId":249,"tags":{},"startTime":1776331081916,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":127,"timestamp":6724134892517,"id":254,"parentId":249,"tags":{},"startTime":1776331081927,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":11695,"timestamp":6724134881282,"id":249,"parentId":127,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_interop_require_default.js","layer":"rsc"},"startTime":1776331081916,"traceId":"88e4a158817de868"},{"name":"add-entry","duration":208236,"timestamp":6724134684953,"id":120,"parentId":119,"tags":{"request":"next-app-loader?name=app%2Fpage&page=%2Fpage&appPaths=%2Fpage&pagePath=private-next-app-dir%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776331081719,"traceId":"88e4a158817de868"},{"name":"build-module","duration":1484,"timestamp":6724134906125,"id":259,"parentId":118,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=true!","layer":"ssr"},"startTime":1776331081941,"traceId":"88e4a158817de868"},{"name":"build-module","duration":1474,"timestamp":6724134907621,"id":260,"parentId":118,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext-themes%2Fdist%2Findex.mjs%22%2C%22ids%22%3A%5B%22ThemeProvider%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2Fglobals.css%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fauth-guard.tsx%22%2C%22ids%22%3A%5B%22AuthGuard%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fnav.tsx%22%2C%22ids%22%3A%5B%22SidebarNav%22%2C%22MobileBottomNav%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fuser-menu.tsx%22%2C%22ids%22%3A%5B%22UserMenu%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fhooks%2Fuse-auth.tsx%22%2C%22ids%22%3A%5B%22AuthProvider%22%5D%7D&server=true!","layer":"ssr"},"startTime":1776331081942,"traceId":"88e4a158817de868"},{"name":"build-module","duration":1398,"timestamp":6724134909103,"id":261,"parentId":118,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fapp-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fclient-page.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Ferror-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Flayout-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fnot-found-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Frender-from-template-context.js%22%2C%22ids%22%3A%5B%5D%7D&server=true!","layer":"ssr"},"startTime":1776331081943,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":3551,"timestamp":6724134915095,"id":264,"parentId":263,"tags":{},"startTime":1776331081949,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":3676,"timestamp":6724134914977,"id":263,"parentId":262,"tags":{},"startTime":1776331081949,"traceId":"88e4a158817de868"},{"name":"build-module-tsx","duration":7886,"timestamp":6724134914165,"id":262,"parentId":259,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/page.tsx","layer":"ssr"},"startTime":1776331081949,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":7458,"timestamp":6724134918176,"id":274,"parentId":273,"tags":{},"startTime":1776331081953,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":7529,"timestamp":6724134918124,"id":273,"parentId":265,"tags":{},"startTime":1776331081953,"traceId":"88e4a158817de868"},{"name":"build-module-tsx","duration":8951,"timestamp":6724134917459,"id":265,"parentId":260,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/auth-guard.tsx","layer":"ssr"},"startTime":1776331081952,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":8176,"timestamp":6724134918266,"id":280,"parentId":279,"tags":{},"startTime":1776331081953,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":8203,"timestamp":6724134918241,"id":279,"parentId":268,"tags":{},"startTime":1776331081953,"traceId":"88e4a158817de868"},{"name":"build-module-tsx","duration":9195,"timestamp":6724134917756,"id":268,"parentId":260,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/hooks/use-auth.tsx","layer":"ssr"},"startTime":1776331081952,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":8734,"timestamp":6724134918240,"id":278,"parentId":277,"tags":{},"startTime":1776331081953,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":8762,"timestamp":6724134918213,"id":277,"parentId":267,"tags":{},"startTime":1776331081953,"traceId":"88e4a158817de868"},{"name":"build-module-tsx","duration":9751,"timestamp":6724134917691,"id":267,"parentId":260,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/user-menu.tsx","layer":"ssr"},"startTime":1776331081952,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":9285,"timestamp":6724134918211,"id":276,"parentId":275,"tags":{},"startTime":1776331081953,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":9319,"timestamp":6724134918179,"id":275,"parentId":266,"tags":{},"startTime":1776331081953,"traceId":"88e4a158817de868"},{"name":"build-module-tsx","duration":10988,"timestamp":6724134917587,"id":266,"parentId":260,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/nav.tsx","layer":"ssr"},"startTime":1776331081952,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":10290,"timestamp":6724134918305,"id":286,"parentId":285,"tags":{},"startTime":1776331081953,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":10298,"timestamp":6724134918298,"id":285,"parentId":271,"tags":{},"startTime":1776331081953,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":10904,"timestamp":6724134918056,"id":271,"parentId":261,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/client-page.js","layer":"ssr"},"startTime":1776331081952,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":10744,"timestamp":6724134918288,"id":282,"parentId":281,"tags":{},"startTime":1776331081953,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":10764,"timestamp":6724134918269,"id":281,"parentId":269,"tags":{},"startTime":1776331081953,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":11963,"timestamp":6724134917802,"id":269,"parentId":261,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/error-boundary.js","layer":"ssr"},"startTime":1776331081952,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":11490,"timestamp":6724134918313,"id":288,"parentId":287,"tags":{},"startTime":1776331081953,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":11498,"timestamp":6724134918306,"id":287,"parentId":272,"tags":{},"startTime":1776331081953,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":13354,"timestamp":6724134918077,"id":272,"parentId":261,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/layout-router.js","layer":"ssr"},"startTime":1776331081952,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":13170,"timestamp":6724134918297,"id":284,"parentId":283,"tags":{},"startTime":1776331081953,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":13178,"timestamp":6724134918289,"id":283,"parentId":270,"tags":{},"startTime":1776331081953,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":15885,"timestamp":6724134918034,"id":270,"parentId":261,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/app-router.js","layer":"ssr"},"startTime":1776331081952,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":11472,"timestamp":6724134922753,"id":294,"parentId":293,"tags":{},"startTime":1776331081957,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":11484,"timestamp":6724134922743,"id":293,"parentId":290,"tags":{},"startTime":1776331081957,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":11838,"timestamp":6724134922616,"id":290,"parentId":261,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/render-from-template-context.js","layer":"ssr"},"startTime":1776331081957,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":11731,"timestamp":6724134922740,"id":292,"parentId":291,"tags":{},"startTime":1776331081957,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":11760,"timestamp":6724134922713,"id":291,"parentId":289,"tags":{},"startTime":1776331081957,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":12359,"timestamp":6724134922555,"id":289,"parentId":261,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/not-found-boundary.js","layer":"ssr"},"startTime":1776331081957,"traceId":"88e4a158817de868"},{"name":"read-resource","duration":31,"timestamp":6724134943127,"id":296,"parentId":295,"tags":{},"startTime":1776331081978,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":2869,"timestamp":6724134943210,"id":298,"parentId":297,"tags":{},"startTime":1776331081978,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":2918,"timestamp":6724134943164,"id":297,"parentId":295,"tags":{},"startTime":1776331081978,"traceId":"88e4a158817de868"},{"name":"build-module-mjs","duration":4624,"timestamp":6724134942838,"id":295,"parentId":260,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next-themes/dist/index.mjs","layer":"ssr"},"startTime":1776331081977,"traceId":"88e4a158817de868"},{"name":"read-resource","duration":71,"timestamp":6724134948068,"id":301,"parentId":299,"tags":{},"startTime":1776331081982,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":78,"timestamp":6724134948145,"id":304,"parentId":299,"tags":{},"startTime":1776331081983,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":529,"timestamp":6724134947939,"id":299,"parentId":269,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_interop_require_default.js","layer":"ssr"},"startTime":1776331081982,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":7099,"timestamp":6724134948112,"id":303,"parentId":302,"tags":{},"startTime":1776331081982,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":7126,"timestamp":6724134948089,"id":302,"parentId":300,"tags":{},"startTime":1776331081982,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":7643,"timestamp":6724134948012,"id":300,"parentId":271,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/search-params.js","layer":"ssr"},"startTime":1776331081982,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":4932,"timestamp":6724134956472,"id":318,"parentId":317,"tags":{},"startTime":1776331081991,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":4957,"timestamp":6724134956454,"id":317,"parentId":305,"tags":{},"startTime":1776331081991,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":5691,"timestamp":6724134956186,"id":305,"parentId":270,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/add-base-path.js","layer":"ssr"},"startTime":1776331081991,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":5402,"timestamp":6724134956492,"id":322,"parentId":321,"tags":{},"startTime":1776331081991,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":5411,"timestamp":6724134956484,"id":321,"parentId":307,"tags":{},"startTime":1776331081991,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":5828,"timestamp":6724134956254,"id":307,"parentId":270,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/has-base-path.js","layer":"ssr"},"startTime":1776331081991,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":5608,"timestamp":6724134956483,"id":320,"parentId":319,"tags":{},"startTime":1776331081991,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":5618,"timestamp":6724134956474,"id":319,"parentId":306,"tags":{},"startTime":1776331081991,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":6063,"timestamp":6724134956231,"id":306,"parentId":270,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/remove-base-path.js","layer":"ssr"},"startTime":1776331081991,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":5808,"timestamp":6724134956501,"id":324,"parentId":323,"tags":{},"startTime":1776331081991,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":5816,"timestamp":6724134956493,"id":323,"parentId":308,"tags":{},"startTime":1776331081991,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":6641,"timestamp":6724134956273,"id":308,"parentId":269,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/navigation.js","layer":"ssr"},"startTime":1776331081991,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":7377,"timestamp":6724134956509,"id":326,"parentId":325,"tags":{},"startTime":1776331081991,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":7387,"timestamp":6724134956502,"id":325,"parentId":309,"tags":{},"startTime":1776331081991,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":7871,"timestamp":6724134956291,"id":309,"parentId":269,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/is-next-router-error.js","layer":"ssr"},"startTime":1776331081991,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":7655,"timestamp":6724134956516,"id":328,"parentId":327,"tags":{},"startTime":1776331081991,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":7662,"timestamp":6724134956509,"id":327,"parentId":310,"tags":{},"startTime":1776331081991,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":7999,"timestamp":6724134956311,"id":310,"parentId":272,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/unresolved-thenable.js","layer":"ssr"},"startTime":1776331081991,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":7796,"timestamp":6724134956523,"id":330,"parentId":329,"tags":{},"startTime":1776331081991,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":7803,"timestamp":6724134956517,"id":329,"parentId":311,"tags":{},"startTime":1776331081991,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":8281,"timestamp":6724134956328,"id":311,"parentId":272,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/match-segments.js","layer":"ssr"},"startTime":1776331081991,"traceId":"88e4a158817de868"}] -[{"name":"next-swc-transform","duration":8174,"timestamp":6724134956531,"id":332,"parentId":331,"tags":{},"startTime":1776331081991,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":8181,"timestamp":6724134956524,"id":331,"parentId":312,"tags":{},"startTime":1776331081991,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":8751,"timestamp":6724134956344,"id":312,"parentId":272,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/redirect-boundary.js","layer":"ssr"},"startTime":1776331081991,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":8552,"timestamp":6724134956552,"id":338,"parentId":337,"tags":{},"startTime":1776331081991,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":8559,"timestamp":6724134956546,"id":337,"parentId":315,"tags":{},"startTime":1776331081991,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":8942,"timestamp":6724134956391,"id":315,"parentId":270,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/app-router-headers.js","layer":"ssr"},"startTime":1776331081991,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":8943,"timestamp":6724134956560,"id":340,"parentId":339,"tags":{},"startTime":1776331081991,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":8951,"timestamp":6724134956554,"id":339,"parentId":316,"tags":{},"startTime":1776331081991,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":9327,"timestamp":6724134956407,"id":316,"parentId":289,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/not-found.js","layer":"ssr"},"startTime":1776331081991,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":9234,"timestamp":6724134956545,"id":336,"parentId":335,"tags":{},"startTime":1776331081991,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":9241,"timestamp":6724134956539,"id":335,"parentId":314,"tags":{},"startTime":1776331081991,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":9725,"timestamp":6724134956376,"id":314,"parentId":270,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/app-router-announcer.js","layer":"ssr"},"startTime":1776331081991,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":9628,"timestamp":6724134956538,"id":334,"parentId":333,"tags":{},"startTime":1776331081991,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":9635,"timestamp":6724134956532,"id":333,"parentId":313,"tags":{},"startTime":1776331081991,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":10480,"timestamp":6724134956360,"id":313,"parentId":270,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/use-reducer-with-devtools.js","layer":"ssr"},"startTime":1776331081991,"traceId":"88e4a158817de868"},{"name":"read-resource","duration":493,"timestamp":6724134969253,"id":351,"parentId":341,"tags":{},"startTime":1776331082004,"traceId":"88e4a158817de868"},{"name":"read-resource","duration":535,"timestamp":6724134969257,"id":352,"parentId":342,"tags":{},"startTime":1776331082004,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":208,"timestamp":6724134969757,"id":369,"parentId":341,"tags":{},"startTime":1776331082004,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":175,"timestamp":6724134969795,"id":370,"parentId":342,"tags":{},"startTime":1776331082004,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":1883,"timestamp":6724134968761,"id":341,"parentId":300,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/app-render/dynamic-rendering.js","layer":"ssr"},"startTime":1776331082003,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":1928,"timestamp":6724134968878,"id":342,"parentId":300,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/web/spec-extension/adapters/reflect.js","layer":"ssr"},"startTime":1776331082003,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":4488,"timestamp":6724134969544,"id":356,"parentId":355,"tags":{},"startTime":1776331082004,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":4509,"timestamp":6724134969528,"id":355,"parentId":344,"tags":{},"startTime":1776331082004,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":5432,"timestamp":6724134968960,"id":344,"parentId":272,"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":1776331082003,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":4842,"timestamp":6724134969563,"id":360,"parentId":359,"tags":{},"startTime":1776331082004,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":4851,"timestamp":6724134969555,"id":359,"parentId":346,"tags":{},"startTime":1776331082004,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":5589,"timestamp":6724134968999,"id":346,"parentId":270,"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":1776331082003,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":5050,"timestamp":6724134969554,"id":358,"parentId":357,"tags":{},"startTime":1776331082004,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":5060,"timestamp":6724134969546,"id":357,"parentId":345,"tags":{},"startTime":1776331082004,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":5974,"timestamp":6724134968981,"id":345,"parentId":270,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/router-reducer-types.js","layer":"ssr"},"startTime":1776331082003,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":5460,"timestamp":6724134969526,"id":354,"parentId":353,"tags":{},"startTime":1776331082004,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":5492,"timestamp":6724134969495,"id":353,"parentId":343,"tags":{},"startTime":1776331082004,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":6754,"timestamp":6724134968930,"id":343,"parentId":272,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/fetch-server-response.js","layer":"ssr"},"startTime":1776331082003,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":7848,"timestamp":6724134969593,"id":366,"parentId":365,"tags":{},"startTime":1776331082004,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":7858,"timestamp":6724134969585,"id":365,"parentId":349,"tags":{},"startTime":1776331082004,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":8603,"timestamp":6724134969141,"id":349,"parentId":272,"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":1776331082004,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":10277,"timestamp":6724134969601,"id":368,"parentId":367,"tags":{},"startTime":1776331082004,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":10287,"timestamp":6724134969594,"id":367,"parentId":350,"tags":{},"startTime":1776331082004,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":10978,"timestamp":6724134969162,"id":350,"parentId":270,"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":1776331082004,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":10581,"timestamp":6724134969576,"id":362,"parentId":361,"tags":{},"startTime":1776331082004,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":10594,"timestamp":6724134969564,"id":361,"parentId":347,"tags":{},"startTime":1776331082004,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":11573,"timestamp":6724134969102,"id":347,"parentId":270,"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":1776331082003,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":11114,"timestamp":6724134969585,"id":364,"parentId":363,"tags":{},"startTime":1776331082004,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":11123,"timestamp":6724134969577,"id":363,"parentId":348,"tags":{},"startTime":1776331082004,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":11751,"timestamp":6724134969123,"id":348,"parentId":272,"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":1776331082004,"traceId":"88e4a158817de868"},{"name":"read-resource","duration":173,"timestamp":6724134986203,"id":395,"parentId":386,"tags":{},"startTime":1776331082021,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":29,"timestamp":6724134986390,"id":411,"parentId":386,"tags":{},"startTime":1776331082021,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":835,"timestamp":6724134985911,"id":386,"parentId":341,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/url.js","layer":"ssr"},"startTime":1776331082020,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":2080,"timestamp":6724134984688,"id":381,"parentId":380,"tags":{},"startTime":1776331082019,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":2089,"timestamp":6724134984680,"id":380,"parentId":373,"tags":{},"startTime":1776331082019,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":2535,"timestamp":6724134984403,"id":373,"parentId":272,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/handle-smooth-scroll.js","layer":"ssr"},"startTime":1776331082019,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":2239,"timestamp":6724134984708,"id":383,"parentId":382,"tags":{},"startTime":1776331082019,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":2260,"timestamp":6724134984689,"id":382,"parentId":374,"tags":{},"startTime":1776331082019,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":3207,"timestamp":6724134984423,"id":374,"parentId":270,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/is-bot.js","layer":"ssr"},"startTime":1776331082019,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":3018,"timestamp":6724134984666,"id":377,"parentId":376,"tags":{},"startTime":1776331082019,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":3048,"timestamp":6724134984638,"id":376,"parentId":371,"tags":{},"startTime":1776331082019,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":3553,"timestamp":6724134984304,"id":371,"parentId":270,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/segment.js","layer":"ssr"},"startTime":1776331082019,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":4761,"timestamp":6724134984678,"id":379,"parentId":378,"tags":{},"startTime":1776331082019,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":4774,"timestamp":6724134984668,"id":378,"parentId":372,"tags":{},"startTime":1776331082019,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":5236,"timestamp":6724134984376,"id":372,"parentId":289,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/utils/warn-once.js","layer":"ssr"},"startTime":1776331082019,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":3492,"timestamp":6724134986232,"id":398,"parentId":397,"tags":{},"startTime":1776331082021,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":3513,"timestamp":6724134986213,"id":397,"parentId":387,"tags":{},"startTime":1776331082021,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":3990,"timestamp":6724134985983,"id":387,"parentId":341,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/hooks-server-context.js","layer":"ssr"},"startTime":1776331082020,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":3738,"timestamp":6724134986252,"id":400,"parentId":399,"tags":{},"startTime":1776331082021,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":3757,"timestamp":6724134986234,"id":399,"parentId":388,"tags":{},"startTime":1776331082021,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":4164,"timestamp":6724134986044,"id":388,"parentId":341,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/static-generation-bailout.js","layer":"ssr"},"startTime":1776331082020,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":3957,"timestamp":6724134986261,"id":402,"parentId":401,"tags":{},"startTime":1776331082021,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":3965,"timestamp":6724134986253,"id":401,"parentId":390,"tags":{},"startTime":1776331082021,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":4515,"timestamp":6724134986116,"id":390,"parentId":305,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/normalize-trailing-slash.js","layer":"ssr"},"startTime":1776331082020,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":4372,"timestamp":6724134986269,"id":404,"parentId":403,"tags":{},"startTime":1776331082021,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":4380,"timestamp":6724134986262,"id":403,"parentId":391,"tags":{},"startTime":1776331082021,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":4761,"timestamp":6724134986135,"id":391,"parentId":308,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/navigation.react-server.js","layer":"ssr"},"startTime":1776331082021,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":4627,"timestamp":6724134986277,"id":406,"parentId":405,"tags":{},"startTime":1776331082021,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":4635,"timestamp":6724134986270,"id":405,"parentId":392,"tags":{},"startTime":1776331082021,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":4923,"timestamp":6724134986152,"id":392,"parentId":308,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/bailout-to-client-rendering.js","layer":"ssr"},"startTime":1776331082021,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":4840,"timestamp":6724134986299,"id":410,"parentId":409,"tags":{},"startTime":1776331082021,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":4848,"timestamp":6724134986292,"id":409,"parentId":394,"tags":{},"startTime":1776331082021,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":5122,"timestamp":6724134986183,"id":394,"parentId":307,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/path-has-prefix.js","layer":"ssr"},"startTime":1776331082021,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":5676,"timestamp":6724134986291,"id":408,"parentId":407,"tags":{},"startTime":1776331082021,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":5690,"timestamp":6724134986278,"id":407,"parentId":393,"tags":{},"startTime":1776331082021,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":5965,"timestamp":6724134986168,"id":393,"parentId":305,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/add-path-prefix.js","layer":"ssr"},"startTime":1776331082021,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":7670,"timestamp":6724134984717,"id":385,"parentId":384,"tags":{},"startTime":1776331082019,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":7679,"timestamp":6724134984709,"id":384,"parentId":375,"tags":{},"startTime":1776331082019,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":10024,"timestamp":6724134984443,"id":375,"parentId":270,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/app/hot-reloader-client.js","layer":"ssr"},"startTime":1776331082019,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":3011,"timestamp":6724134995843,"id":424,"parentId":423,"tags":{},"startTime":1776331082030,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":3024,"timestamp":6724134995835,"id":423,"parentId":415,"tags":{},"startTime":1776331082030,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":3830,"timestamp":6724134995393,"id":415,"parentId":343,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/app-call-server.js","layer":"ssr"},"startTime":1776331082030,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":3385,"timestamp":6724134995852,"id":426,"parentId":425,"tags":{},"startTime":1776331082030,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":3394,"timestamp":6724134995844,"id":425,"parentId":416,"tags":{},"startTime":1776331082030,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":4133,"timestamp":6724134995412,"id":416,"parentId":343,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/flight-data-helpers.js","layer":"ssr"},"startTime":1776331082030,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":4930,"timestamp":6724134995860,"id":428,"parentId":427,"tags":{},"startTime":1776331082030,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":4940,"timestamp":6724134995853,"id":427,"parentId":417,"tags":{},"startTime":1776331082030,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":5670,"timestamp":6724134995431,"id":417,"parentId":343,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/hash.js","layer":"ssr"},"startTime":1776331082030,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":5295,"timestamp":6724134995834,"id":422,"parentId":421,"tags":{},"startTime":1776331082030,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":5306,"timestamp":6724134995823,"id":421,"parentId":414,"tags":{},"startTime":1776331082030,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":6146,"timestamp":6724134995371,"id":414,"parentId":313,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/action-queue.js","layer":"ssr"},"startTime":1776331082030,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":5709,"timestamp":6724134995821,"id":420,"parentId":419,"tags":{},"startTime":1776331082030,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":5734,"timestamp":6724134995797,"id":419,"parentId":412,"tags":{},"startTime":1776331082030,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":6660,"timestamp":6724134995258,"id":412,"parentId":309,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/redirect.js","layer":"ssr"},"startTime":1776331082030,"traceId":"88e4a158817de868"},{"name":"read-resource","duration":16831,"timestamp":6724134986206,"id":396,"parentId":389,"tags":{},"startTime":1776331082021,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":28,"timestamp":6724135003044,"id":431,"parentId":389,"tags":{},"startTime":1776331082037,"traceId":"88e4a158817de868"}] -[{"name":"build-module-js","duration":17161,"timestamp":6724134986070,"id":389,"parentId":269,"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":1776331082020,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":6093,"timestamp":6724135004920,"id":441,"parentId":440,"tags":{},"startTime":1776331082039,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":6125,"timestamp":6724135004913,"id":440,"parentId":434,"tags":{},"startTime":1776331082039,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":7000,"timestamp":6724135004779,"id":434,"parentId":347,"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":1776331082039,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":7167,"timestamp":6724135004901,"id":437,"parentId":436,"tags":{},"startTime":1776331082039,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":7190,"timestamp":6724135004880,"id":436,"parentId":432,"tags":{},"startTime":1776331082039,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":9001,"timestamp":6724135004714,"id":432,"parentId":347,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/compute-changed-path.js","layer":"ssr"},"startTime":1776331082039,"traceId":"88e4a158817de868"},{"name":"read-resource","duration":18396,"timestamp":6724134995507,"id":418,"parentId":413,"tags":{},"startTime":1776331082030,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":45,"timestamp":6724135013913,"id":448,"parentId":413,"tags":{},"startTime":1776331082048,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":19024,"timestamp":6724134995322,"id":413,"parentId":311,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/app-render/get-segment-param.js","layer":"ssr"},"startTime":1776331082030,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":9701,"timestamp":6724135004928,"id":443,"parentId":442,"tags":{},"startTime":1776331082039,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":9712,"timestamp":6724135004921,"id":442,"parentId":435,"tags":{},"startTime":1776331082039,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":11026,"timestamp":6724135004797,"id":435,"parentId":347,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/prefetch-cache-utils.js","layer":"ssr"},"startTime":1776331082039,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":10944,"timestamp":6724135004912,"id":439,"parentId":438,"tags":{},"startTime":1776331082039,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":10956,"timestamp":6724135004902,"id":438,"parentId":433,"tags":{},"startTime":1776331082039,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":11825,"timestamp":6724135004756,"id":433,"parentId":347,"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":1776331082039,"traceId":"88e4a158817de868"},{"name":"read-resource","duration":817,"timestamp":6724135017806,"id":455,"parentId":449,"tags":{},"startTime":1776331082052,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":892,"timestamp":6724135018631,"id":465,"parentId":449,"tags":{},"startTime":1776331082053,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":2778,"timestamp":6724135017199,"id":449,"parentId":389,"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":1776331082052,"traceId":"88e4a158817de868"},{"name":"read-resource","duration":22122,"timestamp":6724135000038,"id":430,"parentId":429,"tags":{},"startTime":1776331082034,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":39,"timestamp":6724135022168,"id":466,"parentId":429,"tags":{},"startTime":1776331082057,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":22485,"timestamp":6724134999850,"id":429,"parentId":262,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/route-modules/app-page/vendored/ssr/react-jsx-dev-runtime.js","layer":"ssr"},"startTime":1776331082034,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":4032,"timestamp":6724135018335,"id":458,"parentId":457,"tags":{},"startTime":1776331082053,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":4064,"timestamp":6724135018304,"id":457,"parentId":451,"tags":{},"startTime":1776331082053,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":5242,"timestamp":6724135017467,"id":451,"parentId":390,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/remove-trailing-slash.js","layer":"ssr"},"startTime":1776331082052,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":4408,"timestamp":6724135018351,"id":460,"parentId":459,"tags":{},"startTime":1776331082053,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":4422,"timestamp":6724135018338,"id":459,"parentId":452,"tags":{},"startTime":1776331082053,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":5447,"timestamp":6724135017552,"id":452,"parentId":390,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/parse-path.js","layer":"ssr"},"startTime":1776331082052,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":4656,"timestamp":6724135018363,"id":462,"parentId":461,"tags":{},"startTime":1776331082053,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":4669,"timestamp":6724135018352,"id":461,"parentId":453,"tags":{},"startTime":1776331082053,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":5900,"timestamp":6724135017725,"id":453,"parentId":375,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/shared.js","layer":"ssr"},"startTime":1776331082052,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":5270,"timestamp":6724135018376,"id":464,"parentId":463,"tags":{},"startTime":1776331082053,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":5282,"timestamp":6724135018365,"id":463,"parentId":454,"tags":{},"startTime":1776331082053,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":6471,"timestamp":6724135017764,"id":454,"parentId":375,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/app/ReactDevOverlay.js","layer":"ssr"},"startTime":1776331082052,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":7942,"timestamp":6724135026770,"id":475,"parentId":474,"tags":{},"startTime":1776331082061,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":8043,"timestamp":6724135026678,"id":474,"parentId":469,"tags":{},"startTime":1776331082061,"traceId":"88e4a158817de868"},{"name":"build-module-tsx","duration":12074,"timestamp":6724135025415,"id":469,"parentId":262,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/sector-heatmap.tsx","layer":"ssr"},"startTime":1776331082060,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":11177,"timestamp":6724135026676,"id":473,"parentId":472,"tags":{},"startTime":1776331082061,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":11252,"timestamp":6724135026623,"id":472,"parentId":468,"tags":{},"startTime":1776331082061,"traceId":"88e4a158817de868"},{"name":"build-module-tsx","duration":17352,"timestamp":6724135024986,"id":468,"parentId":262,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/stock-card.tsx","layer":"ssr"},"startTime":1776331082059,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":15812,"timestamp":6724135026618,"id":471,"parentId":470,"tags":{},"startTime":1776331082061,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":16037,"timestamp":6724135026395,"id":470,"parentId":467,"tags":{},"startTime":1776331082061,"traceId":"88e4a158817de868"},{"name":"build-module-tsx","duration":19023,"timestamp":6724135024892,"id":467,"parentId":262,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/market-temp.tsx","layer":"ssr"},"startTime":1776331082059,"traceId":"88e4a158817de868"},{"name":"read-resource","duration":36482,"timestamp":6724135009271,"id":446,"parentId":444,"tags":{},"startTime":1776331082044,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":57,"timestamp":6724135045767,"id":486,"parentId":444,"tags":{},"startTime":1776331082080,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":36897,"timestamp":6724135009042,"id":444,"parentId":271,"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":1776331082043,"traceId":"88e4a158817de868"},{"name":"read-resource","duration":36669,"timestamp":6724135009297,"id":447,"parentId":445,"tags":{},"startTime":1776331082044,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":33,"timestamp":6724135045971,"id":487,"parentId":445,"tags":{},"startTime":1776331082080,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":36930,"timestamp":6724135009151,"id":445,"parentId":272,"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":1776331082044,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":17583,"timestamp":6724135034557,"id":483,"parentId":482,"tags":{},"startTime":1776331082069,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":17729,"timestamp":6724135034416,"id":482,"parentId":476,"tags":{},"startTime":1776331082069,"traceId":"88e4a158817de868"},{"name":"build-module-ts","duration":19096,"timestamp":6724135033592,"id":476,"parentId":262,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/hooks/use-websocket.ts","layer":"ssr"},"startTime":1776331082068,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":18125,"timestamp":6724135034581,"id":485,"parentId":484,"tags":{},"startTime":1776331082069,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":18144,"timestamp":6724135034562,"id":484,"parentId":477,"tags":{},"startTime":1776331082069,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":19139,"timestamp":6724135033810,"id":477,"parentId":392,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/lazy-dynamic/bailout-to-csr.js","layer":"ssr"},"startTime":1776331082068,"traceId":"88e4a158817de868"},{"name":"read-resource","duration":35362,"timestamp":6724135017811,"id":456,"parentId":450,"tags":{},"startTime":1776331082052,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":35,"timestamp":6724135053180,"id":500,"parentId":450,"tags":{},"startTime":1776331082088,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":36298,"timestamp":6724135017395,"id":450,"parentId":349,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/helpers/interception-routes.js","layer":"ssr"},"startTime":1776331082052,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":3001,"timestamp":6724135051943,"id":497,"parentId":496,"tags":{},"startTime":1776331082086,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":3016,"timestamp":6724135051932,"id":496,"parentId":490,"tags":{},"startTime":1776331082086,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":4109,"timestamp":6724135051169,"id":490,"parentId":412,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/redirect-status-code.js","layer":"ssr"},"startTime":1776331082086,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":3764,"timestamp":6724135051930,"id":495,"parentId":494,"tags":{},"startTime":1776331082086,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":3803,"timestamp":6724135051895,"id":494,"parentId":489,"tags":{},"startTime":1776331082086,"traceId":"88e4a158817de868"},{"name":"build-module-tsx","duration":5232,"timestamp":6724135051110,"id":489,"parentId":267,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/change-password-dialog.tsx","layer":"ssr"},"startTime":1776331082085,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":4434,"timestamp":6724135051953,"id":499,"parentId":498,"tags":{},"startTime":1776331082086,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":4444,"timestamp":6724135051944,"id":498,"parentId":491,"tags":{},"startTime":1776331082086,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":6268,"timestamp":6724135051195,"id":491,"parentId":414,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/router-reducer.js","layer":"ssr"},"startTime":1776331082086,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":6193,"timestamp":6724135051891,"id":493,"parentId":492,"tags":{},"startTime":1776331082086,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":6251,"timestamp":6724135051841,"id":492,"parentId":488,"tags":{},"startTime":1776331082086,"traceId":"88e4a158817de868"},{"name":"build-module-tsx","duration":7768,"timestamp":6724135050990,"id":488,"parentId":262,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/theme-toggle.tsx","layer":"ssr"},"startTime":1776331082085,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":7289,"timestamp":6724135054706,"id":514,"parentId":513,"tags":{},"startTime":1776331082089,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":7304,"timestamp":6724135054695,"id":513,"parentId":503,"tags":{},"startTime":1776331082089,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":8241,"timestamp":6724135054181,"id":503,"parentId":375,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/parseStack.js","layer":"ssr"},"startTime":1776331082089,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":7689,"timestamp":6724135054744,"id":518,"parentId":517,"tags":{},"startTime":1776331082089,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":7698,"timestamp":6724135054736,"id":517,"parentId":505,"tags":{},"startTime":1776331082089,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":8316,"timestamp":6724135054235,"id":505,"parentId":375,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/runtime-error-handler.js","layer":"ssr"},"startTime":1776331082089,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":7828,"timestamp":6724135054735,"id":516,"parentId":515,"tags":{},"startTime":1776331082089,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":7849,"timestamp":6724135054715,"id":515,"parentId":504,"tags":{},"startTime":1776331082089,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":8617,"timestamp":6724135054213,"id":504,"parentId":375,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/use-error-handler.js","layer":"ssr"},"startTime":1776331082089,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":8154,"timestamp":6724135054692,"id":512,"parentId":511,"tags":{},"startTime":1776331082089,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":8182,"timestamp":6724135054665,"id":511,"parentId":502,"tags":{},"startTime":1776331082089,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":10146,"timestamp":6724135054154,"id":502,"parentId":375,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/format-webpack-messages.js","layer":"ssr"},"startTime":1776331082089,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":9585,"timestamp":6724135054753,"id":520,"parentId":519,"tags":{},"startTime":1776331082089,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":9595,"timestamp":6724135054745,"id":519,"parentId":506,"tags":{},"startTime":1776331082089,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":10581,"timestamp":6724135054253,"id":506,"parentId":375,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/use-websocket.js","layer":"ssr"},"startTime":1776331082089,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":11316,"timestamp":6724135054762,"id":522,"parentId":521,"tags":{},"startTime":1776331082089,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":11326,"timestamp":6724135054754,"id":521,"parentId":507,"tags":{},"startTime":1776331082089,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":12255,"timestamp":6724135054289,"id":507,"parentId":375,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/parse-component-stack.js","layer":"ssr"},"startTime":1776331082089,"traceId":"88e4a158817de868"},{"name":"read-resource","duration":33487,"timestamp":6724135034081,"id":480,"parentId":478,"tags":{},"startTime":1776331082068,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":31,"timestamp":6724135067577,"id":527,"parentId":478,"tags":{},"startTime":1776331082102,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":33873,"timestamp":6724135033886,"id":478,"parentId":375,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/dev/hot-reloader-types.js","layer":"ssr"},"startTime":1776331082068,"traceId":"88e4a158817de868"},{"name":"read-resource","duration":33653,"timestamp":6724135034113,"id":481,"parentId":479,"tags":{},"startTime":1776331082068,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":28,"timestamp":6724135067771,"id":528,"parentId":479,"tags":{},"startTime":1776331082102,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":33976,"timestamp":6724135033997,"id":479,"parentId":375,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/dev/extract-modules-from-turbopack-message.js","layer":"ssr"},"startTime":1776331082068,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":13256,"timestamp":6724135054778,"id":526,"parentId":525,"tags":{},"startTime":1776331082089,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":13265,"timestamp":6724135054771,"id":525,"parentId":509,"tags":{},"startTime":1776331082089,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":13886,"timestamp":6724135054389,"id":509,"parentId":435,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/prefetch-reducer.js","layer":"ssr"},"startTime":1776331082089,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":13614,"timestamp":6724135054770,"id":524,"parentId":523,"tags":{},"startTime":1776331082089,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":13623,"timestamp":6724135054763,"id":523,"parentId":508,"tags":{},"startTime":1776331082089,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":14333,"timestamp":6724135054351,"id":508,"parentId":434,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/apply-flight-data.js","layer":"ssr"},"startTime":1776331082089,"traceId":"88e4a158817de868"},{"name":"read-resource","duration":21105,"timestamp":6724135054506,"id":510,"parentId":501,"tags":{},"startTime":1776331082089,"traceId":"88e4a158817de868"}] -[{"name":"next-swc-loader","duration":33,"timestamp":6724135075715,"id":556,"parentId":501,"tags":{},"startTime":1776331082110,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":21824,"timestamp":6724135054077,"id":501,"parentId":343,"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":1776331082088,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":2513,"timestamp":6724135074622,"id":543,"parentId":542,"tags":{},"startTime":1776331082109,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":2544,"timestamp":6724135074594,"id":542,"parentId":532,"tags":{},"startTime":1776331082109,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":3079,"timestamp":6724135074384,"id":532,"parentId":454,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/ShadowPortal.js","layer":"ssr"},"startTime":1776331082109,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":2835,"timestamp":6724135074643,"id":547,"parentId":546,"tags":{},"startTime":1776331082109,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":2843,"timestamp":6724135074635,"id":546,"parentId":534,"tags":{},"startTime":1776331082109,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":3289,"timestamp":6724135074440,"id":534,"parentId":454,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/container/root-layout-missing-tags-error.js","layer":"ssr"},"startTime":1776331082109,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":3090,"timestamp":6724135074652,"id":549,"parentId":548,"tags":{},"startTime":1776331082109,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":3098,"timestamp":6724135074644,"id":548,"parentId":535,"tags":{},"startTime":1776331082109,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":3619,"timestamp":6724135074461,"id":535,"parentId":454,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/container/BuildError.js","layer":"ssr"},"startTime":1776331082109,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":3444,"timestamp":6724135074678,"id":555,"parentId":554,"tags":{},"startTime":1776331082109,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":3454,"timestamp":6724135074670,"id":554,"parentId":538,"tags":{},"startTime":1776331082109,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":3918,"timestamp":6724135074516,"id":538,"parentId":454,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/styles/CssReset.js","layer":"ssr"},"startTime":1776331082109,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":3781,"timestamp":6724135074670,"id":553,"parentId":552,"tags":{},"startTime":1776331082109,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":3791,"timestamp":6724135074661,"id":552,"parentId":537,"tags":{},"startTime":1776331082109,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":4196,"timestamp":6724135074499,"id":537,"parentId":454,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/styles/ComponentStyles.js","layer":"ssr"},"startTime":1776331082109,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":5235,"timestamp":6724135074660,"id":551,"parentId":550,"tags":{},"startTime":1776331082109,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":5244,"timestamp":6724135074653,"id":550,"parentId":536,"tags":{},"startTime":1776331082109,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":5626,"timestamp":6724135074480,"id":536,"parentId":454,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/styles/Base.js","layer":"ssr"},"startTime":1776331082109,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":12338,"timestamp":6724135074634,"id":545,"parentId":544,"tags":{},"startTime":1776331082109,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":12356,"timestamp":6724135074624,"id":544,"parentId":533,"tags":{},"startTime":1776331082109,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":13773,"timestamp":6724135074418,"id":533,"parentId":454,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/container/Errors.js","layer":"ssr"},"startTime":1776331082109,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":7090,"timestamp":6724135081337,"id":569,"parentId":568,"tags":{},"startTime":1776331082116,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":7131,"timestamp":6724135081298,"id":568,"parentId":559,"tags":{},"startTime":1776331082116,"traceId":"88e4a158817de868"},{"name":"build-module-ts","duration":7972,"timestamp":6724135080854,"id":559,"parentId":262,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/lib/markdown.ts","layer":"ssr"},"startTime":1776331082115,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":7463,"timestamp":6724135081376,"id":573,"parentId":572,"tags":{},"startTime":1776331082116,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":7473,"timestamp":6724135081367,"id":572,"parentId":561,"tags":{},"startTime":1776331082116,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":8089,"timestamp":6724135080963,"id":561,"parentId":450,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/app-paths.js","layer":"ssr"},"startTime":1776331082115,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":7682,"timestamp":6724135081385,"id":575,"parentId":574,"tags":{},"startTime":1776331082116,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":7691,"timestamp":6724135081377,"id":574,"parentId":562,"tags":{},"startTime":1776331082116,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":8432,"timestamp":6724135080984,"id":562,"parentId":491,"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":1776331082115,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":8026,"timestamp":6724135081400,"id":579,"parentId":578,"tags":{},"startTime":1776331082116,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":8034,"timestamp":6724135081394,"id":578,"parentId":564,"tags":{},"startTime":1776331082116,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":8673,"timestamp":6724135081020,"id":564,"parentId":491,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/restore-reducer.js","layer":"ssr"},"startTime":1776331082115,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":8361,"timestamp":6724135081365,"id":571,"parentId":570,"tags":{},"startTime":1776331082116,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":8388,"timestamp":6724135081339,"id":570,"parentId":560,"tags":{},"startTime":1776331082116,"traceId":"88e4a158817de868"},{"name":"build-module-ts","duration":11137,"timestamp":6724135080922,"id":560,"parentId":262,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/lib/api.ts","layer":"ssr"},"startTime":1776331082115,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":10685,"timestamp":6724135081408,"id":581,"parentId":580,"tags":{},"startTime":1776331082116,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":10693,"timestamp":6724135081401,"id":580,"parentId":565,"tags":{},"startTime":1776331082116,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":11665,"timestamp":6724135081038,"id":565,"parentId":491,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/refresh-reducer.js","layer":"ssr"},"startTime":1776331082115,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":11578,"timestamp":6724135081415,"id":583,"parentId":582,"tags":{},"startTime":1776331082116,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":11586,"timestamp":6724135081409,"id":582,"parentId":566,"tags":{},"startTime":1776331082116,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":12427,"timestamp":6724135081054,"id":566,"parentId":491,"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":1776331082115,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":12115,"timestamp":6724135081393,"id":577,"parentId":576,"tags":{},"startTime":1776331082116,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":12123,"timestamp":6724135081386,"id":576,"parentId":563,"tags":{},"startTime":1776331082116,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":13559,"timestamp":6724135081002,"id":563,"parentId":491,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/navigate-reducer.js","layer":"ssr"},"startTime":1776331082115,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":13157,"timestamp":6724135081423,"id":585,"parentId":584,"tags":{},"startTime":1776331082116,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":13164,"timestamp":6724135081416,"id":584,"parentId":567,"tags":{},"startTime":1776331082116,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":14078,"timestamp":6724135081070,"id":567,"parentId":491,"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":1776331082115,"traceId":"88e4a158817de868"},{"name":"read-resource","duration":25336,"timestamp":6724135074557,"id":540,"parentId":530,"tags":{},"startTime":1776331082109,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":33,"timestamp":6724135099901,"id":586,"parentId":530,"tags":{},"startTime":1776331082134,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":25803,"timestamp":6724135074226,"id":530,"parentId":270,"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":1776331082109,"traceId":"88e4a158817de868"},{"name":"read-resource","duration":25492,"timestamp":6724135074543,"id":539,"parentId":529,"tags":{},"startTime":1776331082109,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":26,"timestamp":6724135100039,"id":587,"parentId":529,"tags":{},"startTime":1776331082134,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":26003,"timestamp":6724135074113,"id":529,"parentId":272,"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":1776331082108,"traceId":"88e4a158817de868"},{"name":"read-resource","duration":25560,"timestamp":6724135074562,"id":541,"parentId":531,"tags":{},"startTime":1776331082109,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":24,"timestamp":6724135100125,"id":588,"parentId":531,"tags":{},"startTime":1776331082135,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":25892,"timestamp":6724135074301,"id":531,"parentId":308,"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":1776331082109,"traceId":"88e4a158817de868"},{"name":"read-resource","duration":26366,"timestamp":6724135076987,"id":558,"parentId":557,"tags":{},"startTime":1776331082111,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":33,"timestamp":6724135103366,"id":608,"parentId":557,"tags":{},"startTime":1776331082138,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":26912,"timestamp":6724135076920,"id":557,"parentId":272,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_interop_require_wildcard.js","layer":"ssr"},"startTime":1776331082111,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":3121,"timestamp":6724135101484,"id":601,"parentId":600,"tags":{},"startTime":1776331082136,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":3134,"timestamp":6724135101474,"id":600,"parentId":592,"tags":{},"startTime":1776331082136,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":3794,"timestamp":6724135101098,"id":592,"parentId":504,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/is-hydration-error.js","layer":"ssr"},"startTime":1776331082135,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":3403,"timestamp":6724135101500,"id":605,"parentId":604,"tags":{},"startTime":1776331082136,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":3411,"timestamp":6724135101493,"id":604,"parentId":594,"tags":{},"startTime":1776331082136,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":3996,"timestamp":6724135101134,"id":594,"parentId":504,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/hydration-error-info.js","layer":"ssr"},"startTime":1776331082136,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":3684,"timestamp":6724135101472,"id":599,"parentId":598,"tags":{},"startTime":1776331082136,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":3710,"timestamp":6724135101446,"id":598,"parentId":591,"tags":{},"startTime":1776331082136,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":4352,"timestamp":6724135101071,"id":591,"parentId":508,"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":1776331082135,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":3943,"timestamp":6724135101492,"id":603,"parentId":602,"tags":{},"startTime":1776331082136,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":3951,"timestamp":6724135101485,"id":602,"parentId":593,"tags":{},"startTime":1776331082136,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":4701,"timestamp":6724135101116,"id":593,"parentId":509,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/promise-queue.js","layer":"ssr"},"startTime":1776331082135,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":7982,"timestamp":6724135101508,"id":607,"parentId":606,"tags":{},"startTime":1776331082136,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":7990,"timestamp":6724135101501,"id":606,"parentId":595,"tags":{},"startTime":1776331082136,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":8687,"timestamp":6724135101151,"id":595,"parentId":506,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/get-socket-url.js","layer":"ssr"},"startTime":1776331082136,"traceId":"88e4a158817de868"},{"name":"read-resource","duration":13466,"timestamp":6724135101193,"id":597,"parentId":590,"tags":{},"startTime":1776331082136,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":26,"timestamp":6724135114673,"id":639,"parentId":590,"tags":{},"startTime":1776331082149,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":13851,"timestamp":6724135101027,"id":590,"parentId":266,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/api/link.js","layer":"ssr"},"startTime":1776331082135,"traceId":"88e4a158817de868"},{"name":"read-resource","duration":13700,"timestamp":6724135101183,"id":596,"parentId":589,"tags":{},"startTime":1776331082136,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":24,"timestamp":6724135114888,"id":640,"parentId":589,"tags":{},"startTime":1776331082149,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":14017,"timestamp":6724135100958,"id":589,"parentId":265,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/api/navigation.js","layer":"ssr"},"startTime":1776331082135,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":3109,"timestamp":6724135111886,"id":611,"parentId":610,"tags":{},"startTime":1776331082146,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":3132,"timestamp":6724135111862,"id":610,"parentId":609,"tags":{},"startTime":1776331082146,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":3455,"timestamp":6724135111750,"id":609,"parentId":535,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/noop-template.js","layer":"ssr"},"startTime":1776331082146,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":3616,"timestamp":6724135113489,"id":626,"parentId":625,"tags":{},"startTime":1776331082148,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":3626,"timestamp":6724135113482,"id":625,"parentId":614,"tags":{},"startTime":1776331082148,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":4208,"timestamp":6724135113166,"id":614,"parentId":562,"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":1776331082148,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":3914,"timestamp":6724135113470,"id":622,"parentId":621,"tags":{},"startTime":1776331082148,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":3945,"timestamp":6724135113440,"id":621,"parentId":612,"tags":{},"startTime":1776331082148,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":4451,"timestamp":6724135113083,"id":612,"parentId":533,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/error-source.js","layer":"ssr"},"startTime":1776331082147,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":4066,"timestamp":6724135113481,"id":624,"parentId":623,"tags":{},"startTime":1776331082148,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":4076,"timestamp":6724135113471,"id":623,"parentId":613,"tags":{},"startTime":1776331082148,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":4739,"timestamp":6724135113141,"id":613,"parentId":562,"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":1776331082148,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":4395,"timestamp":6724135113497,"id":628,"parentId":627,"tags":{},"startTime":1776331082148,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":4403,"timestamp":6724135113490,"id":627,"parentId":615,"tags":{},"startTime":1776331082148,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":4978,"timestamp":6724135113186,"id":615,"parentId":562,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/handle-mutable.js","layer":"ssr"},"startTime":1776331082148,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":4668,"timestamp":6724135113505,"id":630,"parentId":629,"tags":{},"startTime":1776331082148,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":4675,"timestamp":6724135113498,"id":629,"parentId":616,"tags":{},"startTime":1776331082148,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":5096,"timestamp":6724135113211,"id":616,"parentId":562,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/handle-segment-mismatch.js","layer":"ssr"},"startTime":1776331082148,"traceId":"88e4a158817de868"}] -[{"name":"next-swc-transform","duration":4904,"timestamp":6724135113528,"id":636,"parentId":635,"tags":{},"startTime":1776331082148,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":4911,"timestamp":6724135113521,"id":635,"parentId":619,"tags":{},"startTime":1776331082148,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":5248,"timestamp":6724135113322,"id":619,"parentId":563,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/should-hard-navigate.js","layer":"ssr"},"startTime":1776331082148,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":6005,"timestamp":6724135113520,"id":634,"parentId":633,"tags":{},"startTime":1776331082148,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":6014,"timestamp":6724135113513,"id":633,"parentId":618,"tags":{},"startTime":1776331082148,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":6481,"timestamp":6724135113253,"id":618,"parentId":563,"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":1776331082148,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":6209,"timestamp":6724135113535,"id":638,"parentId":637,"tags":{},"startTime":1776331082148,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":6217,"timestamp":6724135113528,"id":637,"parentId":620,"tags":{},"startTime":1776331082148,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":6531,"timestamp":6724135113400,"id":620,"parentId":533,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/getErrorByType.js","layer":"ssr"},"startTime":1776331082148,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":4773,"timestamp":6724135116315,"id":649,"parentId":648,"tags":{},"startTime":1776331082151,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":4785,"timestamp":6724135116304,"id":648,"parentId":642,"tags":{},"startTime":1776331082151,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":5136,"timestamp":6724135116117,"id":642,"parentId":537,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Overlay/styles.js","layer":"ssr"},"startTime":1776331082150,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":4913,"timestamp":6724135116348,"id":651,"parentId":650,"tags":{},"startTime":1776331082151,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":4946,"timestamp":6724135116316,"id":650,"parentId":643,"tags":{},"startTime":1776331082151,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":5235,"timestamp":6724135116160,"id":643,"parentId":537,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/LeftRightDialogHeader/styles.js","layer":"ssr"},"startTime":1776331082151,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":5101,"timestamp":6724135116302,"id":647,"parentId":646,"tags":{},"startTime":1776331082151,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":5124,"timestamp":6724135116280,"id":646,"parentId":641,"tags":{},"startTime":1776331082151,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":5825,"timestamp":6724135116029,"id":641,"parentId":537,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/CodeFrame/styles.js","layer":"ssr"},"startTime":1776331082150,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":5775,"timestamp":6724135116357,"id":653,"parentId":652,"tags":{},"startTime":1776331082151,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":5786,"timestamp":6724135116349,"id":652,"parentId":644,"tags":{},"startTime":1776331082151,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":6240,"timestamp":6724135116184,"id":644,"parentId":537,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Terminal/styles.js","layer":"ssr"},"startTime":1776331082151,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":8982,"timestamp":6724135113513,"id":632,"parentId":631,"tags":{},"startTime":1776331082148,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":8990,"timestamp":6724135113506,"id":631,"parentId":617,"tags":{},"startTime":1776331082148,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":10888,"timestamp":6724135113228,"id":617,"parentId":564,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/ppr-navigations.js","layer":"ssr"},"startTime":1776331082148,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":8269,"timestamp":6724135116366,"id":655,"parentId":654,"tags":{},"startTime":1776331082151,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":8290,"timestamp":6724135116358,"id":654,"parentId":645,"tags":{},"startTime":1776331082151,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":9006,"timestamp":6724135116203,"id":645,"parentId":563,"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":1776331082151,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":7732,"timestamp":6724135120681,"id":663,"parentId":662,"tags":{},"startTime":1776331082155,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":7752,"timestamp":6724135120663,"id":662,"parentId":656,"tags":{},"startTime":1776331082155,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":8267,"timestamp":6724135120256,"id":656,"parentId":561,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/page-path/ensure-leading-slash.js","layer":"ssr"},"startTime":1776331082155,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":7841,"timestamp":6724135120710,"id":669,"parentId":668,"tags":{},"startTime":1776331082155,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":7851,"timestamp":6724135120701,"id":668,"parentId":660,"tags":{},"startTime":1776331082155,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":8345,"timestamp":6724135120374,"id":660,"parentId":591,"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":1776331082155,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":8038,"timestamp":6724135120692,"id":665,"parentId":664,"tags":{},"startTime":1776331082155,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":8047,"timestamp":6724135120683,"id":664,"parentId":657,"tags":{},"startTime":1776331082155,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":8577,"timestamp":6724135120296,"id":657,"parentId":533,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/icons/CloseIcon.js","layer":"ssr"},"startTime":1776331082155,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":8203,"timestamp":6724135120700,"id":667,"parentId":666,"tags":{},"startTime":1776331082155,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":8212,"timestamp":6724135120692,"id":666,"parentId":658,"tags":{},"startTime":1776331082155,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":9144,"timestamp":6724135120317,"id":658,"parentId":533,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/container/RuntimeError/component-stack-pseudo-html.js","layer":"ssr"},"startTime":1776331082155,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":3142,"timestamp":6724135127428,"id":672,"parentId":671,"tags":{},"startTime":1776331082162,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":3166,"timestamp":6724135127405,"id":671,"parentId":670,"tags":{},"startTime":1776331082162,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":3705,"timestamp":6724135127001,"id":670,"parentId":595,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/normalized-asset-prefix.js","layer":"ssr"},"startTime":1776331082161,"traceId":"88e4a158817de868"},{"name":"read-resource","duration":13625,"timestamp":6724135120401,"id":661,"parentId":659,"tags":{},"startTime":1776331082155,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":29,"timestamp":6724135134034,"id":673,"parentId":659,"tags":{},"startTime":1776331082168,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":14003,"timestamp":6724135120335,"id":659,"parentId":592,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/is-error.js","layer":"ssr"},"startTime":1776331082155,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":1507,"timestamp":6724135134551,"id":679,"parentId":678,"tags":{},"startTime":1776331082169,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":1519,"timestamp":6724135134541,"id":678,"parentId":675,"tags":{},"startTime":1776331082169,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":2066,"timestamp":6724135134483,"id":675,"parentId":375,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/strip-ansi/index.js","layer":"ssr"},"startTime":1776331082169,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":2570,"timestamp":6724135135513,"id":682,"parentId":681,"tags":{},"startTime":1776331082170,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":2587,"timestamp":6724135135497,"id":681,"parentId":680,"tags":{},"startTime":1776331082170,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":3379,"timestamp":6724135135447,"id":680,"parentId":620,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/stack-frame.js","layer":"ssr"},"startTime":1776331082170,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":2039,"timestamp":6724135136796,"id":688,"parentId":687,"tags":{},"startTime":1776331082171,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":2071,"timestamp":6724135136765,"id":687,"parentId":683,"tags":{},"startTime":1776331082171,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":2362,"timestamp":6724135136608,"id":683,"parentId":534,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Overlay/index.js","layer":"ssr"},"startTime":1776331082171,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":2167,"timestamp":6724135136809,"id":690,"parentId":689,"tags":{},"startTime":1776331082171,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":2179,"timestamp":6724135136798,"id":689,"parentId":684,"tags":{},"startTime":1776331082171,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":2410,"timestamp":6724135136678,"id":684,"parentId":535,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Terminal/index.js","layer":"ssr"},"startTime":1776331082171,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":4988,"timestamp":6724135134539,"id":677,"parentId":676,"tags":{},"startTime":1776331082169,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":5007,"timestamp":6724135134521,"id":676,"parentId":674,"tags":{},"startTime":1776331082169,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":6751,"timestamp":6724135134419,"id":674,"parentId":590,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/link.js","layer":"ssr"},"startTime":1776331082169,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":8856,"timestamp":6724135136828,"id":694,"parentId":693,"tags":{},"startTime":1776331082171,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":8867,"timestamp":6724135136820,"id":693,"parentId":686,"tags":{},"startTime":1776331082171,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":9183,"timestamp":6724135136730,"id":686,"parentId":658,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/icons/CollapseIcon.js","layer":"ssr"},"startTime":1776331082171,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":9109,"timestamp":6724135136820,"id":692,"parentId":691,"tags":{},"startTime":1776331082171,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":9119,"timestamp":6724135136810,"id":691,"parentId":685,"tags":{},"startTime":1776331082171,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":9678,"timestamp":6724135136706,"id":685,"parentId":537,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/container/RuntimeError/index.js","layer":"ssr"},"startTime":1776331082171,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":8355,"timestamp":6724135138037,"id":697,"parentId":696,"tags":{},"startTime":1776331082172,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":8373,"timestamp":6724135138020,"id":696,"parentId":695,"tags":{},"startTime":1776331082172,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":8591,"timestamp":6724135137937,"id":695,"parentId":533,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/LeftRightDialogHeader/index.js","layer":"ssr"},"startTime":1776331082172,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":3261,"timestamp":6724135143453,"id":708,"parentId":707,"tags":{},"startTime":1776331082178,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":3271,"timestamp":6724135143445,"id":707,"parentId":700,"tags":{},"startTime":1776331082178,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":3691,"timestamp":6724135143181,"id":700,"parentId":534,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/VersionStalenessInfo/index.js","layer":"ssr"},"startTime":1776331082178,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":3437,"timestamp":6724135143443,"id":706,"parentId":705,"tags":{},"startTime":1776331082178,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":3448,"timestamp":6724135143433,"id":705,"parentId":699,"tags":{},"startTime":1776331082178,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":3874,"timestamp":6724135143151,"id":699,"parentId":534,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Dialog/index.js","layer":"ssr"},"startTime":1776331082178,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":3750,"timestamp":6724135143430,"id":704,"parentId":703,"tags":{},"startTime":1776331082178,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":3792,"timestamp":6724135143389,"id":703,"parentId":698,"tags":{},"startTime":1776331082178,"traceId":"88e4a158817de868"},{"name":"build-module-ts","duration":4348,"timestamp":6724135143055,"id":698,"parentId":469,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/lib/utils.ts","layer":"ssr"},"startTime":1776331082177,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":3916,"timestamp":6724135143494,"id":712,"parentId":711,"tags":{},"startTime":1776331082178,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":3924,"timestamp":6724135143486,"id":711,"parentId":702,"tags":{},"startTime":1776331082178,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":4289,"timestamp":6724135143260,"id":702,"parentId":537,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Toast/index.js","layer":"ssr"},"startTime":1776331082178,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":4074,"timestamp":6724135143485,"id":710,"parentId":709,"tags":{},"startTime":1776331082178,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":4105,"timestamp":6724135143454,"id":709,"parentId":701,"tags":{},"startTime":1776331082178,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":4618,"timestamp":6724135143203,"id":701,"parentId":534,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/hot-linked-text/index.js","layer":"ssr"},"startTime":1776331082178,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":3263,"timestamp":6724135148806,"id":716,"parentId":715,"tags":{},"startTime":1776331082183,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":3295,"timestamp":6724135148785,"id":715,"parentId":713,"tags":{},"startTime":1776331082183,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":3903,"timestamp":6724135148401,"id":713,"parentId":659,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/is-plain-object.js","layer":"ssr"},"startTime":1776331082183,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":3493,"timestamp":6724135148820,"id":718,"parentId":717,"tags":{},"startTime":1776331082183,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":3506,"timestamp":6724135148808,"id":717,"parentId":714,"tags":{},"startTime":1776331082183,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":3984,"timestamp":6724135148448,"id":714,"parentId":506,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/dev/noop-turbopack-hmr.js","layer":"ssr"},"startTime":1776331082183,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":2256,"timestamp":6724135157277,"id":735,"parentId":734,"tags":{},"startTime":1776331082192,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":2274,"timestamp":6724135157268,"id":734,"parentId":722,"tags":{},"startTime":1776331082192,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":3569,"timestamp":6724135157058,"id":722,"parentId":674,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/use-intersection.js","layer":"ssr"},"startTime":1776331082191,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":3676,"timestamp":6724135157243,"id":729,"parentId":728,"tags":{},"startTime":1776331082192,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":3705,"timestamp":6724135157215,"id":728,"parentId":719,"tags":{},"startTime":1776331082192,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":4615,"timestamp":6724135156764,"id":719,"parentId":674,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/resolve-href.js","layer":"ssr"},"startTime":1776331082191,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":4134,"timestamp":6724135157256,"id":731,"parentId":730,"tags":{},"startTime":1776331082192,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":4155,"timestamp":6724135157245,"id":730,"parentId":720,"tags":{},"startTime":1776331082192,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":4619,"timestamp":6724135157006,"id":720,"parentId":674,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/add-locale.js","layer":"ssr"},"startTime":1776331082191,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":4368,"timestamp":6724135157267,"id":733,"parentId":732,"tags":{},"startTime":1776331082192,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":4380,"timestamp":6724135157257,"id":732,"parentId":721,"tags":{},"startTime":1776331082192,"traceId":"88e4a158817de868"}] -[{"name":"build-module-js","duration":4886,"timestamp":6724135157034,"id":721,"parentId":674,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/get-domain-locale.js","layer":"ssr"},"startTime":1776331082191,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":4635,"timestamp":6724135157294,"id":739,"parentId":738,"tags":{},"startTime":1776331082192,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":4643,"timestamp":6724135157286,"id":738,"parentId":724,"tags":{},"startTime":1776331082192,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":4939,"timestamp":6724135157098,"id":724,"parentId":674,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/is-local-url.js","layer":"ssr"},"startTime":1776331082191,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":6141,"timestamp":6724135157310,"id":743,"parentId":742,"tags":{},"startTime":1776331082192,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":6151,"timestamp":6724135157303,"id":742,"parentId":726,"tags":{},"startTime":1776331082192,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":6641,"timestamp":6724135157135,"id":726,"parentId":683,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Overlay/Overlay.js","layer":"ssr"},"startTime":1776331082192,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":6563,"timestamp":6724135157302,"id":741,"parentId":740,"tags":{},"startTime":1776331082192,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":6571,"timestamp":6724135157295,"id":740,"parentId":725,"tags":{},"startTime":1776331082192,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":7137,"timestamp":6724135157116,"id":725,"parentId":674,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/format-url.js","layer":"ssr"},"startTime":1776331082191,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":7151,"timestamp":6724135157285,"id":737,"parentId":736,"tags":{},"startTime":1776331082192,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":7160,"timestamp":6724135157278,"id":736,"parentId":723,"tags":{},"startTime":1776331082192,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":7832,"timestamp":6724135157079,"id":723,"parentId":674,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/utils.js","layer":"ssr"},"startTime":1776331082191,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":6217,"timestamp":6724135158708,"id":760,"parentId":759,"tags":{},"startTime":1776331082193,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":6238,"timestamp":6724135158687,"id":759,"parentId":746,"tags":{},"startTime":1776331082193,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":7316,"timestamp":6724135158218,"id":746,"parentId":701,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/magic-identifier.js","layer":"ssr"},"startTime":1776331082193,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":8459,"timestamp":6724135157318,"id":745,"parentId":744,"tags":{},"startTime":1776331082192,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":8468,"timestamp":6724135157311,"id":744,"parentId":727,"tags":{},"startTime":1776331082192,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":9118,"timestamp":6724135157155,"id":727,"parentId":684,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Terminal/Terminal.js","layer":"ssr"},"startTime":1776331082192,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":7556,"timestamp":6724135158731,"id":764,"parentId":763,"tags":{},"startTime":1776331082193,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":7566,"timestamp":6724135158722,"id":763,"parentId":748,"tags":{},"startTime":1776331082193,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":8278,"timestamp":6724135158275,"id":748,"parentId":685,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/container/RuntimeError/GroupedStackFrames.js","layer":"ssr"},"startTime":1776331082193,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":7840,"timestamp":6724135158721,"id":762,"parentId":761,"tags":{},"startTime":1776331082193,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":7852,"timestamp":6724135158710,"id":761,"parentId":747,"tags":{},"startTime":1776331082193,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":8460,"timestamp":6724135158251,"id":747,"parentId":685,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/group-stack-frames-by-framework.js","layer":"ssr"},"startTime":1776331082193,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":7969,"timestamp":6724135158749,"id":768,"parentId":767,"tags":{},"startTime":1776331082193,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":7978,"timestamp":6724135158741,"id":767,"parentId":750,"tags":{},"startTime":1776331082193,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":8538,"timestamp":6724135158317,"id":750,"parentId":700,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/VersionStalenessInfo/styles.js","layer":"ssr"},"startTime":1776331082193,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":12066,"timestamp":6724135158767,"id":772,"parentId":771,"tags":{},"startTime":1776331082193,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":12075,"timestamp":6724135158760,"id":771,"parentId":752,"tags":{},"startTime":1776331082193,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":12543,"timestamp":6724135158498,"id":752,"parentId":699,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Dialog/DialogBody.js","layer":"ssr"},"startTime":1776331082193,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":12293,"timestamp":6724135158759,"id":770,"parentId":769,"tags":{},"startTime":1776331082193,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":12302,"timestamp":6724135158751,"id":769,"parentId":751,"tags":{},"startTime":1776331082193,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":13026,"timestamp":6724135158345,"id":751,"parentId":700,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/VersionStalenessInfo/VersionStalenessInfo.js","layer":"ssr"},"startTime":1776331082193,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":12650,"timestamp":6724135158741,"id":766,"parentId":765,"tags":{},"startTime":1776331082193,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":12659,"timestamp":6724135158732,"id":765,"parentId":749,"tags":{},"startTime":1776331082193,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":13456,"timestamp":6724135158294,"id":749,"parentId":695,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/LeftRightDialogHeader/LeftRightDialogHeader.js","layer":"ssr"},"startTime":1776331082193,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":12987,"timestamp":6724135158775,"id":774,"parentId":773,"tags":{},"startTime":1776331082193,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":12996,"timestamp":6724135158768,"id":773,"parentId":753,"tags":{},"startTime":1776331082193,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":13457,"timestamp":6724135158546,"id":753,"parentId":699,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Dialog/Dialog.js","layer":"ssr"},"startTime":1776331082193,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":13227,"timestamp":6724135158784,"id":776,"parentId":775,"tags":{},"startTime":1776331082193,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":13235,"timestamp":6724135158776,"id":775,"parentId":754,"tags":{},"startTime":1776331082193,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":13582,"timestamp":6724135158571,"id":754,"parentId":699,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Dialog/DialogContent.js","layer":"ssr"},"startTime":1776331082193,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":13359,"timestamp":6724135158801,"id":780,"parentId":779,"tags":{},"startTime":1776331082193,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":13367,"timestamp":6724135158793,"id":779,"parentId":756,"tags":{},"startTime":1776331082193,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":13672,"timestamp":6724135158616,"id":756,"parentId":699,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Dialog/styles.js","layer":"ssr"},"startTime":1776331082193,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":14519,"timestamp":6724135158809,"id":782,"parentId":781,"tags":{},"startTime":1776331082193,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":14528,"timestamp":6724135158802,"id":781,"parentId":757,"tags":{},"startTime":1776331082193,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":14854,"timestamp":6724135158635,"id":757,"parentId":702,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Toast/styles.js","layer":"ssr"},"startTime":1776331082193,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":14704,"timestamp":6724135158792,"id":778,"parentId":777,"tags":{},"startTime":1776331082193,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":14712,"timestamp":6724135158784,"id":777,"parentId":755,"tags":{},"startTime":1776331082193,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":19759,"timestamp":6724135158596,"id":755,"parentId":699,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Dialog/DialogHeader.js","layer":"ssr"},"startTime":1776331082193,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":19553,"timestamp":6724135158817,"id":784,"parentId":783,"tags":{},"startTime":1776331082193,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":19561,"timestamp":6724135158810,"id":783,"parentId":758,"tags":{},"startTime":1776331082193,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":19915,"timestamp":6724135158653,"id":758,"parentId":702,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Toast/Toast.js","layer":"ssr"},"startTime":1776331082193,"traceId":"88e4a158817de868"},{"name":"read-resource","duration":30355,"timestamp":6724135159492,"id":786,"parentId":785,"tags":{},"startTime":1776331082194,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":34,"timestamp":6724135189857,"id":789,"parentId":785,"tags":{},"startTime":1776331082224,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":31062,"timestamp":6724135159415,"id":785,"parentId":503,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/stacktrace-parser/stack-trace-parser.cjs.js","layer":"ssr"},"startTime":1776331082194,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":2002,"timestamp":6724135191432,"id":804,"parentId":803,"tags":{},"startTime":1776331082226,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":2028,"timestamp":6724135191413,"id":803,"parentId":792,"tags":{},"startTime":1776331082226,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":3404,"timestamp":6724135191167,"id":792,"parentId":722,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/request-idle-callback.js","layer":"ssr"},"startTime":1776331082226,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":6894,"timestamp":6724135191399,"id":800,"parentId":799,"tags":{},"startTime":1776331082226,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":6949,"timestamp":6724135191351,"id":799,"parentId":790,"tags":{},"startTime":1776331082226,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":7995,"timestamp":6724135191076,"id":790,"parentId":719,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/querystring.js","layer":"ssr"},"startTime":1776331082225,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":7655,"timestamp":6724135191441,"id":806,"parentId":805,"tags":{},"startTime":1776331082226,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":7665,"timestamp":6724135191433,"id":805,"parentId":793,"tags":{},"startTime":1776331082226,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":8340,"timestamp":6724135191189,"id":793,"parentId":719,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/interpolate-as.js","layer":"ssr"},"startTime":1776331082226,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":8161,"timestamp":6724135191412,"id":802,"parentId":801,"tags":{},"startTime":1776331082226,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":8173,"timestamp":6724135191401,"id":801,"parentId":791,"tags":{},"startTime":1776331082226,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":8571,"timestamp":6724135191140,"id":791,"parentId":719,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/omit.js","layer":"ssr"},"startTime":1776331082226,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":8265,"timestamp":6724135191458,"id":810,"parentId":809,"tags":{},"startTime":1776331082226,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":8274,"timestamp":6724135191450,"id":809,"parentId":795,"tags":{},"startTime":1776331082226,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":9064,"timestamp":6724135191227,"id":795,"parentId":726,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Overlay/body-locker.js","layer":"ssr"},"startTime":1776331082226,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":8922,"timestamp":6724135191450,"id":808,"parentId":807,"tags":{},"startTime":1776331082226,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":8932,"timestamp":6724135191442,"id":807,"parentId":794,"tags":{},"startTime":1776331082226,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":9959,"timestamp":6724135191208,"id":794,"parentId":748,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/icons/FrameworkIcon.js","layer":"ssr"},"startTime":1776331082226,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":11147,"timestamp":6724135191474,"id":814,"parentId":813,"tags":{},"startTime":1776331082226,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":11158,"timestamp":6724135191467,"id":813,"parentId":797,"tags":{},"startTime":1776331082226,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":11954,"timestamp":6724135191262,"id":797,"parentId":727,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Terminal/EditorLink.js","layer":"ssr"},"startTime":1776331082226,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":11757,"timestamp":6724135191482,"id":816,"parentId":815,"tags":{},"startTime":1776331082226,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":11766,"timestamp":6724135191475,"id":815,"parentId":798,"tags":{},"startTime":1776331082226,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":12287,"timestamp":6724135191278,"id":798,"parentId":748,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/container/RuntimeError/CallStackFrame.js","layer":"ssr"},"startTime":1776331082226,"traceId":"88e4a158817de868"},{"name":"read-resource","duration":15647,"timestamp":6724135187928,"id":788,"parentId":787,"tags":{},"startTime":1776331082222,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":35,"timestamp":6724135203582,"id":821,"parentId":787,"tags":{},"startTime":1776331082238,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":16171,"timestamp":6724135187822,"id":787,"parentId":535,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_tagged_template_literal_loose.js","layer":"ssr"},"startTime":1776331082222,"traceId":"88e4a158817de868"},{"name":"read-resource","duration":15714,"timestamp":6724135191866,"id":819,"parentId":817,"tags":{},"startTime":1776331082226,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":33,"timestamp":6724135207592,"id":830,"parentId":817,"tags":{},"startTime":1776331082242,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":16055,"timestamp":6724135191776,"id":817,"parentId":593,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_class_private_field_loose_base.js","layer":"ssr"},"startTime":1776331082226,"traceId":"88e4a158817de868"},{"name":"read-resource","duration":15965,"timestamp":6724135191875,"id":820,"parentId":818,"tags":{},"startTime":1776331082226,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":28,"timestamp":6724135207845,"id":831,"parentId":818,"tags":{},"startTime":1776331082242,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":16153,"timestamp":6724135191822,"id":818,"parentId":593,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_class_private_field_loose_key.js","layer":"ssr"},"startTime":1776331082226,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":3157,"timestamp":6724135206903,"id":827,"parentId":826,"tags":{},"startTime":1776331082241,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":3187,"timestamp":6724135206882,"id":826,"parentId":825,"tags":{},"startTime":1776331082241,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":4050,"timestamp":6724135206813,"id":825,"parentId":685,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/CodeFrame/index.js","layer":"ssr"},"startTime":1776331082241,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":7814,"timestamp":6724135205885,"id":824,"parentId":823,"tags":{},"startTime":1776331082240,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":7850,"timestamp":6724135205852,"id":823,"parentId":822,"tags":{},"startTime":1776331082240,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":8755,"timestamp":6724135205302,"id":822,"parentId":753,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/hooks/use-on-click-outside.js","layer":"ssr"},"startTime":1776331082240,"traceId":"88e4a158817de868"},{"name":"read-resource","duration":7962,"timestamp":6724135207340,"id":829,"parentId":828,"tags":{},"startTime":1776331082242,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":33,"timestamp":6724135215309,"id":841,"parentId":828,"tags":{},"startTime":1776331082250,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":8248,"timestamp":6724135207207,"id":828,"parentId":674,"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":1776331082242,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":25641,"timestamp":6724135191466,"id":812,"parentId":811,"tags":{},"startTime":1776331082226,"traceId":"88e4a158817de868"}] -[{"name":"next-swc-loader","duration":25895,"timestamp":6724135191459,"id":811,"parentId":796,"tags":{},"startTime":1776331082226,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":33753,"timestamp":6724135191244,"id":796,"parentId":726,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Overlay/maintain--tab-focus.js","layer":"ssr"},"startTime":1776331082226,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":13544,"timestamp":6724135211986,"id":835,"parentId":834,"tags":{},"startTime":1776331082246,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":13591,"timestamp":6724135211944,"id":834,"parentId":832,"tags":{},"startTime":1776331082246,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":14124,"timestamp":6724135211741,"id":832,"parentId":793,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/route-matcher.js","layer":"ssr"},"startTime":1776331082246,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":13911,"timestamp":6724135212001,"id":837,"parentId":836,"tags":{},"startTime":1776331082246,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":13923,"timestamp":6724135211989,"id":836,"parentId":833,"tags":{},"startTime":1776331082246,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":16450,"timestamp":6724135211876,"id":833,"parentId":793,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/route-regex.js","layer":"ssr"},"startTime":1776331082246,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":13204,"timestamp":6724135216668,"id":844,"parentId":843,"tags":{},"startTime":1776331082251,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":13235,"timestamp":6724135216640,"id":843,"parentId":842,"tags":{},"startTime":1776331082251,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":13624,"timestamp":6724135216413,"id":842,"parentId":719,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/index.js","layer":"ssr"},"startTime":1776331082251,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":15583,"timestamp":6724135214467,"id":840,"parentId":839,"tags":{},"startTime":1776331082249,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":15609,"timestamp":6724135214441,"id":839,"parentId":838,"tags":{},"startTime":1776331082249,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":15945,"timestamp":6724135214326,"id":838,"parentId":797,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/use-open-in-editor.js","layer":"ssr"},"startTime":1776331082249,"traceId":"88e4a158817de868"},{"name":"read-resource","duration":78,"timestamp":6724135232239,"id":847,"parentId":845,"tags":{},"startTime":1776331082267,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":39,"timestamp":6724135232323,"id":850,"parentId":845,"tags":{},"startTime":1776331082267,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":842,"timestamp":6724135231986,"id":845,"parentId":833,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/constants.js","layer":"ssr"},"startTime":1776331082266,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":2983,"timestamp":6724135232278,"id":849,"parentId":848,"tags":{},"startTime":1776331082267,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":3022,"timestamp":6724135232242,"id":848,"parentId":846,"tags":{},"startTime":1776331082267,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":4002,"timestamp":6724135232116,"id":846,"parentId":825,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/CodeFrame/CodeFrame.js","layer":"ssr"},"startTime":1776331082266,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":4124,"timestamp":6724135234727,"id":853,"parentId":852,"tags":{},"startTime":1776331082269,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":4159,"timestamp":6724135234695,"id":852,"parentId":851,"tags":{},"startTime":1776331082269,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":4435,"timestamp":6724135234601,"id":851,"parentId":833,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/escape-regexp.js","layer":"ssr"},"startTime":1776331082269,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":2554,"timestamp":6724135236492,"id":857,"parentId":856,"tags":{},"startTime":1776331082271,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":2575,"timestamp":6724135236471,"id":856,"parentId":854,"tags":{},"startTime":1776331082271,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":2858,"timestamp":6724135236307,"id":854,"parentId":842,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/is-dynamic.js","layer":"ssr"},"startTime":1776331082271,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":2679,"timestamp":6724135236503,"id":859,"parentId":858,"tags":{},"startTime":1776331082271,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":2689,"timestamp":6724135236493,"id":858,"parentId":855,"tags":{},"startTime":1776331082271,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":3477,"timestamp":6724135236353,"id":855,"parentId":842,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/sorted-routes.js","layer":"ssr"},"startTime":1776331082271,"traceId":"88e4a158817de868"},{"name":"read-resource","duration":773,"timestamp":6724135241324,"id":861,"parentId":860,"tags":{},"startTime":1776331082276,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":38,"timestamp":6724135242104,"id":862,"parentId":860,"tags":{},"startTime":1776331082276,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":2458,"timestamp":6724135241228,"id":860,"parentId":727,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/anser/index.js","layer":"ssr"},"startTime":1776331082276,"traceId":"88e4a158817de868"},{"name":"read-resource","duration":706,"timestamp":6724135245767,"id":866,"parentId":864,"tags":{},"startTime":1776331082280,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":75,"timestamp":6724135246486,"id":867,"parentId":864,"tags":{},"startTime":1776331082281,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":6678,"timestamp":6724135245683,"id":864,"parentId":796,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/platform/platform.js","layer":"ssr"},"startTime":1776331082280,"traceId":"88e4a158817de868"},{"name":"read-resource","duration":6636,"timestamp":6724135245757,"id":865,"parentId":863,"tags":{},"startTime":1776331082280,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":40,"timestamp":6724135252402,"id":868,"parentId":863,"tags":{},"startTime":1776331082287,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":7297,"timestamp":6724135245608,"id":863,"parentId":796,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/css.escape/css.escape.js","layer":"ssr"},"startTime":1776331082280,"traceId":"88e4a158817de868"},{"name":"make","duration":570602,"timestamp":6724134683038,"id":119,"parentId":118,"tags":{},"startTime":1776331081717,"traceId":"88e4a158817de868"},{"name":"chunk-graph","duration":3012,"timestamp":6724135259924,"id":870,"parentId":869,"tags":{},"startTime":1776331082294,"traceId":"88e4a158817de868"},{"name":"optimize-modules","duration":11,"timestamp":6724135262998,"id":872,"parentId":869,"tags":{},"startTime":1776331082297,"traceId":"88e4a158817de868"},{"name":"optimize-chunks","duration":2617,"timestamp":6724135263023,"id":873,"parentId":869,"tags":{},"startTime":1776331082297,"traceId":"88e4a158817de868"},{"name":"optimize-tree","duration":5,"timestamp":6724135265658,"id":874,"parentId":869,"tags":{},"startTime":1776331082300,"traceId":"88e4a158817de868"},{"name":"optimize-chunk-modules","duration":3,"timestamp":6724135265676,"id":875,"parentId":869,"tags":{},"startTime":1776331082300,"traceId":"88e4a158817de868"},{"name":"optimize","duration":3589,"timestamp":6724135262956,"id":871,"parentId":869,"tags":{},"startTime":1776331082297,"traceId":"88e4a158817de868"},{"name":"module-hash","duration":4004,"timestamp":6724135269973,"id":876,"parentId":869,"tags":{},"startTime":1776331082304,"traceId":"88e4a158817de868"},{"name":"code-generation","duration":13525,"timestamp":6724135273985,"id":877,"parentId":869,"tags":{},"startTime":1776331082308,"traceId":"88e4a158817de868"},{"name":"hash","duration":3633,"timestamp":6724135289824,"id":878,"parentId":869,"tags":{},"startTime":1776331082324,"traceId":"88e4a158817de868"},{"name":"code-generation-jobs","duration":218,"timestamp":6724135293457,"id":879,"parentId":869,"tags":{},"startTime":1776331082328,"traceId":"88e4a158817de868"},{"name":"module-assets","duration":141,"timestamp":6724135293616,"id":880,"parentId":869,"tags":{},"startTime":1776331082328,"traceId":"88e4a158817de868"},{"name":"create-chunk-assets","duration":44198,"timestamp":6724135293760,"id":881,"parentId":869,"tags":{},"startTime":1776331082328,"traceId":"88e4a158817de868"},{"name":"seal","duration":83128,"timestamp":6724135259139,"id":869,"parentId":118,"tags":{},"startTime":1776331082294,"traceId":"88e4a158817de868"},{"name":"webpack-compilation","duration":661314,"timestamp":6724134682037,"id":118,"parentId":116,"tags":{"name":"server"},"startTime":1776331081716,"traceId":"88e4a158817de868"},{"name":"emit","duration":7720,"timestamp":6724135343380,"id":882,"parentId":116,"tags":{},"startTime":1776331082378,"traceId":"88e4a158817de868"},{"name":"webpack-invalidated-server","duration":672543,"timestamp":6724134678950,"id":116,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776331081713,"traceId":"88e4a158817de868"},{"name":"build-module","duration":1022,"timestamp":6724135360912,"id":890,"parentId":887,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!","layer":"app-pages-browser"},"startTime":1776331082395,"traceId":"88e4a158817de868"},{"name":"build-module","duration":1357,"timestamp":6724135361978,"id":891,"parentId":888,"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%2Fcomponents%2Fauth-guard.tsx%22%2C%22ids%22%3A%5B%22AuthGuard%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fnav.tsx%22%2C%22ids%22%3A%5B%22SidebarNav%22%2C%22MobileBottomNav%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fuser-menu.tsx%22%2C%22ids%22%3A%5B%22UserMenu%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fhooks%2Fuse-auth.tsx%22%2C%22ids%22%3A%5B%22AuthProvider%22%5D%7D&server=false!","layer":"app-pages-browser"},"startTime":1776331082396,"traceId":"88e4a158817de868"},{"name":"build-module","duration":1667,"timestamp":6724135363350,"id":892,"parentId":889,"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":1776331082398,"traceId":"88e4a158817de868"},{"name":"read-resource","duration":3,"timestamp":6724135372276,"id":894,"parentId":893,"tags":{},"startTime":1776331082407,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":4414,"timestamp":6724135372360,"id":896,"parentId":895,"tags":{},"startTime":1776331082407,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":4494,"timestamp":6724135372288,"id":895,"parentId":893,"tags":{},"startTime":1776331082407,"traceId":"88e4a158817de868"},{"name":"build-module-mjs","duration":6323,"timestamp":6724135371885,"id":893,"parentId":891,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next-themes/dist/index.mjs","layer":"app-pages-browser"},"startTime":1776331082406,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":3026,"timestamp":6724135375688,"id":910,"parentId":909,"tags":{},"startTime":1776331082410,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":3095,"timestamp":6724135375621,"id":909,"parentId":897,"tags":{},"startTime":1776331082410,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":6587,"timestamp":6724135372821,"id":897,"parentId":886,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/app-next-dev.js","layer":"app-pages-browser"},"startTime":1776331082407,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":3674,"timestamp":6724135375760,"id":914,"parentId":913,"tags":{},"startTime":1776331082410,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":3704,"timestamp":6724135375731,"id":913,"parentId":899,"tags":{},"startTime":1776331082410,"traceId":"88e4a158817de868"},{"name":"build-module-tsx","duration":4905,"timestamp":6724135375050,"id":899,"parentId":891,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/auth-guard.tsx","layer":"app-pages-browser"},"startTime":1776331082409,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":4161,"timestamp":6724135375817,"id":918,"parentId":917,"tags":{},"startTime":1776331082410,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":4188,"timestamp":6724135375790,"id":917,"parentId":901,"tags":{},"startTime":1776331082410,"traceId":"88e4a158817de868"},{"name":"build-module-tsx","duration":5269,"timestamp":6724135375144,"id":901,"parentId":891,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/user-menu.tsx","layer":"app-pages-browser"},"startTime":1776331082410,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":4663,"timestamp":6724135375789,"id":916,"parentId":915,"tags":{},"startTime":1776331082410,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":4691,"timestamp":6724135375762,"id":915,"parentId":900,"tags":{},"startTime":1776331082410,"traceId":"88e4a158817de868"},{"name":"build-module-tsx","duration":6743,"timestamp":6724135375100,"id":900,"parentId":891,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/nav.tsx","layer":"app-pages-browser"},"startTime":1776331082409,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":5901,"timestamp":6724135375954,"id":922,"parentId":921,"tags":{},"startTime":1776331082410,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":5910,"timestamp":6724135375946,"id":921,"parentId":903,"tags":{},"startTime":1776331082410,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":6774,"timestamp":6724135375437,"id":903,"parentId":892,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/client-page.js","layer":"app-pages-browser"},"startTime":1776331082410,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":9194,"timestamp":6724135375729,"id":912,"parentId":911,"tags":{},"startTime":1776331082410,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":9234,"timestamp":6724135375691,"id":911,"parentId":898,"tags":{},"startTime":1776331082410,"traceId":"88e4a158817de868"},{"name":"build-module-tsx","duration":13442,"timestamp":6724135374685,"id":898,"parentId":890,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/page.tsx","layer":"app-pages-browser"},"startTime":1776331082409,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":12216,"timestamp":6724135375962,"id":924,"parentId":923,"tags":{},"startTime":1776331082410,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":12225,"timestamp":6724135375955,"id":923,"parentId":904,"tags":{},"startTime":1776331082410,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":13697,"timestamp":6724135375479,"id":904,"parentId":892,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/error-boundary.js","layer":"app-pages-browser"},"startTime":1776331082410,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":13224,"timestamp":6724135375979,"id":928,"parentId":927,"tags":{},"startTime":1776331082410,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":13233,"timestamp":6724135375971,"id":927,"parentId":906,"tags":{},"startTime":1776331082410,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":14177,"timestamp":6724135375532,"id":906,"parentId":892,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/not-found-boundary.js","layer":"app-pages-browser"},"startTime":1776331082410,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":13738,"timestamp":6724135375987,"id":930,"parentId":929,"tags":{},"startTime":1776331082410,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":13746,"timestamp":6724135375980,"id":929,"parentId":907,"tags":{},"startTime":1776331082410,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":14555,"timestamp":6724135375556,"id":907,"parentId":892,"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":1776331082410,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":14531,"timestamp":6724135375944,"id":920,"parentId":919,"tags":{},"startTime":1776331082410,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":14658,"timestamp":6724135375818,"id":919,"parentId":902,"tags":{},"startTime":1776331082410,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":17044,"timestamp":6724135375335,"id":902,"parentId":892,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/app-router.js","layer":"app-pages-browser"},"startTime":1776331082410,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":16398,"timestamp":6724135376013,"id":932,"parentId":931,"tags":{},"startTime":1776331082410,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":16425,"timestamp":6724135375988,"id":931,"parentId":908,"tags":{},"startTime":1776331082410,"traceId":"88e4a158817de868"},{"name":"build-module-tsx","duration":17354,"timestamp":6724135375577,"id":908,"parentId":891,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/hooks/use-auth.tsx","layer":"app-pages-browser"},"startTime":1776331082410,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":16997,"timestamp":6724135375971,"id":926,"parentId":925,"tags":{},"startTime":1776331082410,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":17006,"timestamp":6724135375964,"id":925,"parentId":905,"tags":{},"startTime":1776331082410,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":18606,"timestamp":6724135375502,"id":905,"parentId":892,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/layout-router.js","layer":"app-pages-browser"},"startTime":1776331082410,"traceId":"88e4a158817de868"},{"name":"read-resource","duration":182,"timestamp":6724135403238,"id":936,"parentId":934,"tags":{},"startTime":1776331082438,"traceId":"88e4a158817de868"},{"name":"read-resource","duration":215,"timestamp":6724135403241,"id":937,"parentId":935,"tags":{},"startTime":1776331082438,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":60,"timestamp":6724135403429,"id":940,"parentId":934,"tags":{},"startTime":1776331082438,"traceId":"88e4a158817de868"}] -[{"name":"next-swc-loader","duration":138,"timestamp":6724135403458,"id":941,"parentId":935,"tags":{},"startTime":1776331082438,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":754,"timestamp":6724135403097,"id":934,"parentId":899,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/api/navigation.js","layer":"app-pages-browser"},"startTime":1776331082437,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":762,"timestamp":6724135403177,"id":935,"parentId":900,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/api/link.js","layer":"app-pages-browser"},"startTime":1776331082438,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":3539,"timestamp":6724135403383,"id":939,"parentId":938,"tags":{},"startTime":1776331082438,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":3574,"timestamp":6724135403350,"id":938,"parentId":933,"tags":{},"startTime":1776331082438,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":4400,"timestamp":6724135403006,"id":933,"parentId":903,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/search-params.js","layer":"app-pages-browser"},"startTime":1776331082437,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":1897,"timestamp":6724135405712,"id":978,"parentId":977,"tags":{},"startTime":1776331082440,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":1906,"timestamp":6724135405704,"id":977,"parentId":944,"tags":{},"startTime":1776331082440,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":2858,"timestamp":6724135405069,"id":944,"parentId":902,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/has-base-path.js","layer":"app-pages-browser"},"startTime":1776331082439,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":2233,"timestamp":6724135405703,"id":976,"parentId":975,"tags":{},"startTime":1776331082440,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":2243,"timestamp":6724135405694,"id":975,"parentId":943,"tags":{},"startTime":1776331082440,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":3191,"timestamp":6724135405044,"id":943,"parentId":902,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/remove-base-path.js","layer":"app-pages-browser"},"startTime":1776331082439,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":2552,"timestamp":6724135405692,"id":974,"parentId":973,"tags":{},"startTime":1776331082440,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":2576,"timestamp":6724135405668,"id":973,"parentId":942,"tags":{},"startTime":1776331082440,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":3985,"timestamp":6724135404993,"id":942,"parentId":902,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/add-base-path.js","layer":"app-pages-browser"},"startTime":1776331082439,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":5694,"timestamp":6724135405726,"id":982,"parentId":981,"tags":{},"startTime":1776331082440,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":5703,"timestamp":6724135405720,"id":981,"parentId":946,"tags":{},"startTime":1776331082440,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":6646,"timestamp":6724135405110,"id":946,"parentId":904,"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":1776331082439,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":6054,"timestamp":6724135405719,"id":980,"parentId":979,"tags":{},"startTime":1776331082440,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":6061,"timestamp":6724135405712,"id":979,"parentId":945,"tags":{},"startTime":1776331082440,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":7225,"timestamp":6724135405091,"id":945,"parentId":904,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/navigation.js","layer":"app-pages-browser"},"startTime":1776331082439,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":6584,"timestamp":6724135405741,"id":986,"parentId":985,"tags":{},"startTime":1776331082440,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":6591,"timestamp":6724135405734,"id":985,"parentId":948,"tags":{},"startTime":1776331082440,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":7435,"timestamp":6724135405147,"id":948,"parentId":906,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/not-found.js","layer":"app-pages-browser"},"startTime":1776331082440,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":6856,"timestamp":6724135405734,"id":984,"parentId":983,"tags":{},"startTime":1776331082440,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":6863,"timestamp":6724135405727,"id":983,"parentId":947,"tags":{},"startTime":1776331082440,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":7682,"timestamp":6724135405129,"id":947,"parentId":904,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/static-generation-async-storage.external.js","layer":"shared"},"startTime":1776331082440,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":7064,"timestamp":6724135405755,"id":990,"parentId":989,"tags":{},"startTime":1776331082440,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":7071,"timestamp":6724135405749,"id":989,"parentId":950,"tags":{},"startTime":1776331082440,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":7880,"timestamp":6724135405189,"id":950,"parentId":902,"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":1776331082440,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":7322,"timestamp":6724135405762,"id":992,"parentId":991,"tags":{},"startTime":1776331082440,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":7329,"timestamp":6724135405756,"id":991,"parentId":951,"tags":{},"startTime":1776331082440,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":8353,"timestamp":6724135405207,"id":951,"parentId":902,"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":1776331082440,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":7819,"timestamp":6724135405748,"id":988,"parentId":987,"tags":{},"startTime":1776331082440,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":7826,"timestamp":6724135405741,"id":987,"parentId":949,"tags":{},"startTime":1776331082440,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":8623,"timestamp":6724135405166,"id":949,"parentId":906,"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":1776331082440,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":8032,"timestamp":6724135405770,"id":994,"parentId":993,"tags":{},"startTime":1776331082440,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":8040,"timestamp":6724135405763,"id":993,"parentId":952,"tags":{},"startTime":1776331082440,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":8970,"timestamp":6724135405224,"id":952,"parentId":902,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/app-router-announcer.js","layer":"app-pages-browser"},"startTime":1776331082440,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":8418,"timestamp":6724135405783,"id":998,"parentId":997,"tags":{},"startTime":1776331082440,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":8425,"timestamp":6724135405777,"id":997,"parentId":954,"tags":{},"startTime":1776331082440,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":9143,"timestamp":6724135405258,"id":954,"parentId":902,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/unresolved-thenable.js","layer":"app-pages-browser"},"startTime":1776331082440,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":8619,"timestamp":6724135405790,"id":1000,"parentId":999,"tags":{},"startTime":1776331082440,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":8625,"timestamp":6724135405784,"id":999,"parentId":955,"tags":{},"startTime":1776331082440,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":9387,"timestamp":6724135405276,"id":955,"parentId":902,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/app-router-headers.js","layer":"app-pages-browser"},"startTime":1776331082440,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":8896,"timestamp":6724135405776,"id":996,"parentId":995,"tags":{},"startTime":1776331082440,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":8902,"timestamp":6724135405770,"id":995,"parentId":953,"tags":{},"startTime":1776331082440,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":9795,"timestamp":6724135405241,"id":953,"parentId":902,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/redirect-boundary.js","layer":"app-pages-browser"},"startTime":1776331082440,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":9249,"timestamp":6724135405797,"id":1002,"parentId":1001,"tags":{},"startTime":1776331082440,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":9255,"timestamp":6724135405790,"id":1001,"parentId":956,"tags":{},"startTime":1776331082440,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":10141,"timestamp":6724135405293,"id":956,"parentId":902,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/segment.js","layer":"app-pages-browser"},"startTime":1776331082440,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":9659,"timestamp":6724135405803,"id":1004,"parentId":1003,"tags":{},"startTime":1776331082440,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":9666,"timestamp":6724135405797,"id":1003,"parentId":957,"tags":{},"startTime":1776331082440,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":12052,"timestamp":6724135405309,"id":957,"parentId":905,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/match-segments.js","layer":"app-pages-browser"},"startTime":1776331082440,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":11569,"timestamp":6724135405810,"id":1006,"parentId":1005,"tags":{},"startTime":1776331082440,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":11575,"timestamp":6724135405804,"id":1005,"parentId":958,"tags":{},"startTime":1776331082440,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":12274,"timestamp":6724135405325,"id":958,"parentId":906,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/utils/warn-once.js","layer":"app-pages-browser"},"startTime":1776331082440,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":11790,"timestamp":6724135405817,"id":1008,"parentId":1007,"tags":{},"startTime":1776331082440,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":11797,"timestamp":6724135405811,"id":1007,"parentId":959,"tags":{},"startTime":1776331082440,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":12603,"timestamp":6724135405342,"id":959,"parentId":902,"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":1776331082440,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":12129,"timestamp":6724135405825,"id":1010,"parentId":1009,"tags":{},"startTime":1776331082440,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":12136,"timestamp":6724135405818,"id":1009,"parentId":960,"tags":{},"startTime":1776331082440,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":12796,"timestamp":6724135405359,"id":960,"parentId":902,"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":1776331082440,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":12309,"timestamp":6724135405852,"id":1018,"parentId":1017,"tags":{},"startTime":1776331082440,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":12316,"timestamp":6724135405846,"id":1017,"parentId":964,"tags":{},"startTime":1776331082440,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":12979,"timestamp":6724135405427,"id":964,"parentId":902,"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":1776331082440,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":12569,"timestamp":6724135405845,"id":1016,"parentId":1015,"tags":{},"startTime":1776331082440,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":12576,"timestamp":6724135405839,"id":1015,"parentId":963,"tags":{},"startTime":1776331082440,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":13234,"timestamp":6724135405410,"id":963,"parentId":905,"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":1776331082440,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":12826,"timestamp":6724135405831,"id":1012,"parentId":1011,"tags":{},"startTime":1776331082440,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":12832,"timestamp":6724135405825,"id":1011,"parentId":961,"tags":{},"startTime":1776331082440,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":13664,"timestamp":6724135405376,"id":961,"parentId":902,"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":1776331082440,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":13183,"timestamp":6724135405873,"id":1024,"parentId":1023,"tags":{},"startTime":1776331082440,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":13190,"timestamp":6724135405867,"id":1023,"parentId":967,"tags":{},"startTime":1776331082440,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":13783,"timestamp":6724135405477,"id":967,"parentId":905,"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":1776331082440,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":13436,"timestamp":6724135405838,"id":1014,"parentId":1013,"tags":{},"startTime":1776331082440,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":13443,"timestamp":6724135405832,"id":1013,"parentId":962,"tags":{},"startTime":1776331082440,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":14402,"timestamp":6724135405391,"id":962,"parentId":905,"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":1776331082440,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":13944,"timestamp":6724135405859,"id":1020,"parentId":1019,"tags":{},"startTime":1776331082440,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":13951,"timestamp":6724135405853,"id":1019,"parentId":965,"tags":{},"startTime":1776331082440,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":14627,"timestamp":6724135405444,"id":965,"parentId":902,"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":1776331082440,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":19138,"timestamp":6724135405880,"id":1026,"parentId":1025,"tags":{},"startTime":1776331082440,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":19147,"timestamp":6724135405873,"id":1025,"parentId":968,"tags":{},"startTime":1776331082440,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":19911,"timestamp":6724135405493,"id":968,"parentId":905,"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":1776331082440,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":19969,"timestamp":6724135405887,"id":1028,"parentId":1027,"tags":{},"startTime":1776331082440,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":19981,"timestamp":6724135405880,"id":1027,"parentId":969,"tags":{},"startTime":1776331082440,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":21205,"timestamp":6724135405510,"id":969,"parentId":905,"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":1776331082440,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":21186,"timestamp":6724135405917,"id":1030,"parentId":1029,"tags":{},"startTime":1776331082440,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":21228,"timestamp":6724135405887,"id":1029,"parentId":970,"tags":{},"startTime":1776331082440,"traceId":"88e4a158817de868"},{"name":"build-module-tsx","duration":23209,"timestamp":6724135405527,"id":970,"parentId":901,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/change-password-dialog.tsx","layer":"app-pages-browser"},"startTime":1776331082440,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":18975,"timestamp":6724135409802,"id":1038,"parentId":1037,"tags":{},"startTime":1776331082444,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":19023,"timestamp":6724135409755,"id":1037,"parentId":1031,"tags":{},"startTime":1776331082444,"traceId":"88e4a158817de868"},{"name":"build-module-tsx","duration":19836,"timestamp":6724135409404,"id":1031,"parentId":901,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/theme-toggle.tsx","layer":"app-pages-browser"},"startTime":1776331082444,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":19366,"timestamp":6724135409890,"id":1044,"parentId":1043,"tags":{},"startTime":1776331082444,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":19393,"timestamp":6724135409864,"id":1043,"parentId":1034,"tags":{},"startTime":1776331082444,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":20095,"timestamp":6724135409609,"id":1034,"parentId":897,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/app-webpack.js","layer":"app-pages-browser"},"startTime":1776331082444,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":19938,"timestamp":6724135409834,"id":1040,"parentId":1039,"tags":{},"startTime":1776331082444,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":19969,"timestamp":6724135409804,"id":1039,"parentId":1032,"tags":{},"startTime":1776331082444,"traceId":"88e4a158817de868"},{"name":"build-module-tsx","duration":21413,"timestamp":6724135409510,"id":1032,"parentId":898,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/market-temp.tsx","layer":"app-pages-browser"},"startTime":1776331082444,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":25102,"timestamp":6724135405866,"id":1022,"parentId":1021,"tags":{},"startTime":1776331082440,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":25109,"timestamp":6724135405860,"id":1021,"parentId":966,"tags":{},"startTime":1776331082440,"traceId":"88e4a158817de868"}] -[{"name":"build-module-js","duration":26993,"timestamp":6724135405459,"id":966,"parentId":902,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/app/hot-reloader-client.js","layer":"app-pages-browser"},"startTime":1776331082440,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":22572,"timestamp":6724135409902,"id":1046,"parentId":1045,"tags":{},"startTime":1776331082444,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":22583,"timestamp":6724135409892,"id":1045,"parentId":1035,"tags":{},"startTime":1776331082444,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":23180,"timestamp":6724135409635,"id":1035,"parentId":897,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/app-bootstrap.js","layer":"app-pages-browser"},"startTime":1776331082444,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":22930,"timestamp":6724135409910,"id":1048,"parentId":1047,"tags":{},"startTime":1776331082444,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":22938,"timestamp":6724135409903,"id":1047,"parentId":1036,"tags":{},"startTime":1776331082444,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":25292,"timestamp":6724135409657,"id":1036,"parentId":897,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/app-index.js","layer":"app-pages-browser"},"startTime":1776331082444,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":25193,"timestamp":6724135409863,"id":1042,"parentId":1041,"tags":{},"startTime":1776331082444,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":25222,"timestamp":6724135409835,"id":1041,"parentId":1033,"tags":{},"startTime":1776331082444,"traceId":"88e4a158817de868"},{"name":"build-module-tsx","duration":27035,"timestamp":6724135409561,"id":1033,"parentId":898,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/stock-card.tsx","layer":"app-pages-browser"},"startTime":1776331082444,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":14141,"timestamp":6724135422474,"id":1060,"parentId":1059,"tags":{},"startTime":1776331082457,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":14151,"timestamp":6724135422465,"id":1059,"parentId":1052,"tags":{},"startTime":1776331082457,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":14732,"timestamp":6724135422223,"id":1052,"parentId":902,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/dev-root-not-found-boundary.js","layer":"app-pages-browser"},"startTime":1776331082457,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":14736,"timestamp":6724135422436,"id":1056,"parentId":1055,"tags":{},"startTime":1776331082457,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":14776,"timestamp":6724135422398,"id":1055,"parentId":1050,"tags":{},"startTime":1776331082457,"traceId":"88e4a158817de868"},{"name":"build-module-tsx","duration":15749,"timestamp":6724135422118,"id":1050,"parentId":898,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/sector-heatmap.tsx","layer":"app-pages-browser"},"startTime":1776331082456,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":15438,"timestamp":6724135422464,"id":1058,"parentId":1057,"tags":{},"startTime":1776331082457,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":15466,"timestamp":6724135422437,"id":1057,"parentId":1051,"tags":{},"startTime":1776331082457,"traceId":"88e4a158817de868"},{"name":"build-module-ts","duration":16445,"timestamp":6724135422172,"id":1051,"parentId":898,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/lib/api.ts","layer":"app-pages-browser"},"startTime":1776331082457,"traceId":"88e4a158817de868"},{"name":"read-resource","duration":253,"timestamp":6724135440654,"id":1063,"parentId":1062,"tags":{},"startTime":1776331082475,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":3855,"timestamp":6724135440914,"id":1066,"parentId":1062,"tags":{},"startTime":1776331082475,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":4745,"timestamp":6724135440582,"id":1062,"parentId":933,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/app-render/dynamic-rendering.js","layer":"app-pages-browser"},"startTime":1776331082475,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":23379,"timestamp":6724135422396,"id":1054,"parentId":1053,"tags":{},"startTime":1776331082457,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":23408,"timestamp":6724135422368,"id":1053,"parentId":1049,"tags":{},"startTime":1776331082457,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":25053,"timestamp":6724135422028,"id":1049,"parentId":935,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/link.js","layer":"app-pages-browser"},"startTime":1776331082456,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":6452,"timestamp":6724135440864,"id":1065,"parentId":1064,"tags":{},"startTime":1776331082475,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":6482,"timestamp":6724135440835,"id":1064,"parentId":1061,"tags":{},"startTime":1776331082475,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":9388,"timestamp":6724135440495,"id":1061,"parentId":942,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/normalize-trailing-slash.js","layer":"app-pages-browser"},"startTime":1776331082475,"traceId":"88e4a158817de868"},{"name":"read-resource","duration":436,"timestamp":6724135451375,"id":1075,"parentId":1069,"tags":{},"startTime":1776331082486,"traceId":"88e4a158817de868"},{"name":"read-resource","duration":464,"timestamp":6724135451381,"id":1076,"parentId":1072,"tags":{},"startTime":1776331082486,"traceId":"88e4a158817de868"},{"name":"read-resource","duration":488,"timestamp":6724135451383,"id":1077,"parentId":1073,"tags":{},"startTime":1776331082486,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":1366,"timestamp":6724135451817,"id":1088,"parentId":1069,"tags":{},"startTime":1776331082486,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":1335,"timestamp":6724135451848,"id":1089,"parentId":1072,"tags":{},"startTime":1776331082486,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":1310,"timestamp":6724135451874,"id":1090,"parentId":1073,"tags":{},"startTime":1776331082486,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":2260,"timestamp":6724135451103,"id":1069,"parentId":933,"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":1776331082485,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":2281,"timestamp":6724135451251,"id":1072,"parentId":904,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_interop_require_default.js","layer":"app-pages-browser"},"startTime":1776331082486,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":2434,"timestamp":6724135451293,"id":1073,"parentId":906,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_interop_require_wildcard.js","layer":"app-pages-browser"},"startTime":1776331082486,"traceId":"88e4a158817de868"},{"name":"read-resource","duration":48849,"timestamp":6724135405609,"id":972,"parentId":971,"tags":{},"startTime":1776331082440,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":27,"timestamp":6724135454463,"id":1091,"parentId":971,"tags":{},"startTime":1776331082489,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":49077,"timestamp":6724135405568,"id":971,"parentId":885,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js","layer":"app-pages-browser"},"startTime":1776331082440,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":3243,"timestamp":6724135451639,"id":1079,"parentId":1078,"tags":{},"startTime":1776331082486,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":3279,"timestamp":6724135451604,"id":1078,"parentId":1067,"tags":{},"startTime":1776331082486,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":4171,"timestamp":6724135450940,"id":1067,"parentId":944,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/path-has-prefix.js","layer":"app-pages-browser"},"startTime":1776331082485,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":3467,"timestamp":6724135451654,"id":1081,"parentId":1080,"tags":{},"startTime":1776331082486,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":3479,"timestamp":6724135451643,"id":1080,"parentId":1068,"tags":{},"startTime":1776331082486,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":4249,"timestamp":6724135451069,"id":1068,"parentId":942,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/add-path-prefix.js","layer":"app-pages-browser"},"startTime":1776331082485,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":3611,"timestamp":6724135451721,"id":1085,"parentId":1084,"tags":{},"startTime":1776331082486,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":3639,"timestamp":6724135451693,"id":1084,"parentId":1071,"tags":{},"startTime":1776331082486,"traceId":"88e4a158817de868"},{"name":"build-module-ts","duration":4475,"timestamp":6724135451206,"id":1071,"parentId":898,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/lib/markdown.ts","layer":"app-pages-browser"},"startTime":1776331082486,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":4018,"timestamp":6724135451691,"id":1083,"parentId":1082,"tags":{},"startTime":1776331082486,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":4053,"timestamp":6724135451656,"id":1082,"parentId":1070,"tags":{},"startTime":1776331082486,"traceId":"88e4a158817de868"},{"name":"build-module-ts","duration":5005,"timestamp":6724135451158,"id":1070,"parentId":898,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/hooks/use-websocket.ts","layer":"app-pages-browser"},"startTime":1776331082486,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":4440,"timestamp":6724135451731,"id":1087,"parentId":1086,"tags":{},"startTime":1776331082486,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":4450,"timestamp":6724135451722,"id":1086,"parentId":1074,"tags":{},"startTime":1776331082486,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":5068,"timestamp":6724135451333,"id":1074,"parentId":962,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/app-call-server.js","layer":"app-pages-browser"},"startTime":1776331082486,"traceId":"88e4a158817de868"},{"name":"read-resource","duration":632,"timestamp":6724135457868,"id":1115,"parentId":1097,"tags":{},"startTime":1776331082492,"traceId":"88e4a158817de868"},{"name":"read-resource","duration":660,"timestamp":6724135457886,"id":1116,"parentId":1104,"tags":{},"startTime":1776331082492,"traceId":"88e4a158817de868"},{"name":"read-resource","duration":685,"timestamp":6724135457889,"id":1117,"parentId":1106,"tags":{},"startTime":1776331082492,"traceId":"88e4a158817de868"},{"name":"read-resource","duration":711,"timestamp":6724135457891,"id":1118,"parentId":1108,"tags":{},"startTime":1776331082492,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":470,"timestamp":6724135458512,"id":1157,"parentId":1097,"tags":{},"startTime":1776331082493,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":434,"timestamp":6724135458550,"id":1158,"parentId":1104,"tags":{},"startTime":1776331082493,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":408,"timestamp":6724135458576,"id":1159,"parentId":1106,"tags":{},"startTime":1776331082493,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":381,"timestamp":6724135458604,"id":1160,"parentId":1108,"tags":{},"startTime":1776331082493,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":2018,"timestamp":6724135457131,"id":1097,"parentId":957,"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":1776331082492,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":1914,"timestamp":6724135457343,"id":1104,"parentId":1036,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/dev/hot-reloader-types.js","layer":"app-pages-browser"},"startTime":1776331082492,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":1995,"timestamp":6724135457408,"id":1106,"parentId":966,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/dev/extract-modules-from-turbopack-message.js","layer":"app-pages-browser"},"startTime":1776331082492,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":2185,"timestamp":6724135457488,"id":1108,"parentId":969,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/helpers/interception-routes.js","layer":"app-pages-browser"},"startTime":1776331082492,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":2279,"timestamp":6724135458072,"id":1124,"parentId":1123,"tags":{},"startTime":1776331082492,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":2288,"timestamp":6724135458064,"id":1123,"parentId":1094,"tags":{},"startTime":1776331082492,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":3619,"timestamp":6724135457056,"id":1094,"parentId":945,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/navigation.react-server.js","layer":"app-pages-browser"},"startTime":1776331082491,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":2645,"timestamp":6724135458045,"id":1120,"parentId":1119,"tags":{},"startTime":1776331082492,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":2686,"timestamp":6724135458005,"id":1119,"parentId":1092,"tags":{},"startTime":1776331082492,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":4161,"timestamp":6724135456862,"id":1092,"parentId":962,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/flight-data-helpers.js","layer":"app-pages-browser"},"startTime":1776331082491,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":2951,"timestamp":6724135458081,"id":1126,"parentId":1125,"tags":{},"startTime":1776331082492,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":2960,"timestamp":6724135458073,"id":1125,"parentId":1095,"tags":{},"startTime":1776331082492,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":4147,"timestamp":6724135457084,"id":1095,"parentId":945,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/server-inserted-html.shared-runtime.js","layer":"app-pages-browser"},"startTime":1776331082491,"traceId":"88e4a158817de868"},{"name":"read-resource","duration":424,"timestamp":6724135462847,"id":1179,"parentId":1168,"tags":{},"startTime":1776331082497,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":706,"timestamp":6724135463276,"id":1214,"parentId":1168,"tags":{},"startTime":1776331082498,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":2123,"timestamp":6724135462054,"id":1168,"parentId":1062,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/url.js","layer":"app-pages-browser"},"startTime":1776331082496,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":6135,"timestamp":6724135458063,"id":1122,"parentId":1121,"tags":{},"startTime":1776331082492,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":6151,"timestamp":6724135458048,"id":1121,"parentId":1093,"tags":{},"startTime":1776331082492,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":7948,"timestamp":6724135456985,"id":1093,"parentId":946,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/redirect.js","layer":"app-pages-browser"},"startTime":1776331082491,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":6857,"timestamp":6724135458089,"id":1128,"parentId":1127,"tags":{},"startTime":1776331082492,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":6865,"timestamp":6724135458082,"id":1127,"parentId":1096,"tags":{},"startTime":1776331082492,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":8102,"timestamp":6724135457107,"id":1096,"parentId":945,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/bailout-to-client-rendering.js","layer":"app-pages-browser"},"startTime":1776331082491,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":7121,"timestamp":6724135458097,"id":1130,"parentId":1129,"tags":{},"startTime":1776331082492,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":7128,"timestamp":6724135458090,"id":1129,"parentId":1098,"tags":{},"startTime":1776331082492,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":8327,"timestamp":6724135457180,"id":1098,"parentId":962,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/hash.js","layer":"app-pages-browser"},"startTime":1776331082492,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":7381,"timestamp":6724135458139,"id":1136,"parentId":1135,"tags":{},"startTime":1776331082493,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":7393,"timestamp":6724135458128,"id":1135,"parentId":1101,"tags":{},"startTime":1776331082493,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":10125,"timestamp":6724135457275,"id":1101,"parentId":961,"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":1776331082492,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":9299,"timestamp":6724135458127,"id":1134,"parentId":1133,"tags":{},"startTime":1776331082493,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":9319,"timestamp":6724135458107,"id":1133,"parentId":1100,"tags":{},"startTime":1776331082492,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":10692,"timestamp":6724135457227,"id":1100,"parentId":961,"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":1776331082492,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":9828,"timestamp":6724135458106,"id":1132,"parentId":1131,"tags":{},"startTime":1776331082492,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":9836,"timestamp":6724135458098,"id":1131,"parentId":1099,"tags":{},"startTime":1776331082492,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":11128,"timestamp":6724135457207,"id":1099,"parentId":951,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/action-queue.js","layer":"app-pages-browser"},"startTime":1776331082492,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":10202,"timestamp":6724135458148,"id":1138,"parentId":1137,"tags":{},"startTime":1776331082493,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":10210,"timestamp":6724135458140,"id":1137,"parentId":1102,"tags":{},"startTime":1776331082493,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":11612,"timestamp":6724135457297,"id":1102,"parentId":961,"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":1776331082492,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":10764,"timestamp":6724135458156,"id":1140,"parentId":1139,"tags":{},"startTime":1776331082493,"traceId":"88e4a158817de868"}] -[{"name":"next-swc-loader","duration":10865,"timestamp":6724135458149,"id":1139,"parentId":1103,"tags":{},"startTime":1776331082493,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":12042,"timestamp":6724135457316,"id":1103,"parentId":961,"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":1776331082492,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":11204,"timestamp":6724135458166,"id":1142,"parentId":1141,"tags":{},"startTime":1776331082493,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":11213,"timestamp":6724135458157,"id":1141,"parentId":1105,"tags":{},"startTime":1776331082493,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":12377,"timestamp":6724135457387,"id":1105,"parentId":1036,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/shared.js","layer":"app-pages-browser"},"startTime":1776331082492,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":11605,"timestamp":6724135458174,"id":1144,"parentId":1143,"tags":{},"startTime":1776331082493,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":11612,"timestamp":6724135458167,"id":1143,"parentId":1107,"tags":{},"startTime":1776331082493,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":12690,"timestamp":6724135457468,"id":1107,"parentId":1036,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/app/ReactDevOverlay.js","layer":"app-pages-browser"},"startTime":1776331082492,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":11985,"timestamp":6724135458182,"id":1146,"parentId":1145,"tags":{},"startTime":1776331082493,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":11993,"timestamp":6724135458175,"id":1145,"parentId":1109,"tags":{},"startTime":1776331082493,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":12902,"timestamp":6724135457532,"id":1109,"parentId":1036,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/hydration-error-info.js","layer":"app-pages-browser"},"startTime":1776331082492,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":12252,"timestamp":6724135458190,"id":1148,"parentId":1147,"tags":{},"startTime":1776331082493,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":12270,"timestamp":6724135458183,"id":1147,"parentId":1110,"tags":{},"startTime":1776331082493,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":13143,"timestamp":6724135457564,"id":1110,"parentId":1036,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/get-socket-url.js","layer":"app-pages-browser"},"startTime":1776331082492,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":12509,"timestamp":6724135458206,"id":1152,"parentId":1151,"tags":{},"startTime":1776331082493,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":12517,"timestamp":6724135458199,"id":1151,"parentId":1112,"tags":{},"startTime":1776331082493,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":13438,"timestamp":6724135457670,"id":1112,"parentId":966,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/parseStack.js","layer":"app-pages-browser"},"startTime":1776331082492,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":13349,"timestamp":6724135458222,"id":1156,"parentId":1155,"tags":{},"startTime":1776331082493,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":13357,"timestamp":6724135458215,"id":1155,"parentId":1114,"tags":{},"startTime":1776331082493,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":13981,"timestamp":6724135457818,"id":1114,"parentId":966,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/runtime-error-handler.js","layer":"app-pages-browser"},"startTime":1776331082492,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":13637,"timestamp":6724135458214,"id":1154,"parentId":1153,"tags":{},"startTime":1776331082493,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":13645,"timestamp":6724135458207,"id":1153,"parentId":1113,"tags":{},"startTime":1776331082493,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":14457,"timestamp":6724135457772,"id":1113,"parentId":966,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/use-error-handler.js","layer":"app-pages-browser"},"startTime":1776331082492,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":14045,"timestamp":6724135458198,"id":1150,"parentId":1149,"tags":{},"startTime":1776331082493,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":14054,"timestamp":6724135458191,"id":1149,"parentId":1111,"tags":{},"startTime":1776331082493,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":15315,"timestamp":6724135457583,"id":1111,"parentId":966,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/format-webpack-messages.js","layer":"app-pages-browser"},"startTime":1776331082492,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":9961,"timestamp":6724135462949,"id":1185,"parentId":1184,"tags":{},"startTime":1776331082497,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":9973,"timestamp":6724135462938,"id":1184,"parentId":1163,"tags":{},"startTime":1776331082497,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":11454,"timestamp":6724135461695,"id":1163,"parentId":966,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/strip-ansi/index.js","layer":"app-pages-browser"},"startTime":1776331082496,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":10238,"timestamp":6724135462923,"id":1181,"parentId":1180,"tags":{},"startTime":1776331082497,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":10264,"timestamp":6724135462899,"id":1180,"parentId":1161,"tags":{},"startTime":1776331082497,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":11994,"timestamp":6724135461573,"id":1161,"parentId":966,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/use-websocket.js","layer":"app-pages-browser"},"startTime":1776331082496,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":14886,"timestamp":6724135462968,"id":1189,"parentId":1188,"tags":{},"startTime":1776331082497,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":14899,"timestamp":6724135462960,"id":1188,"parentId":1165,"tags":{},"startTime":1776331082497,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":16746,"timestamp":6724135461741,"id":1165,"parentId":1049,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/add-locale.js","layer":"app-pages-browser"},"startTime":1776331082496,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":15548,"timestamp":6724135462959,"id":1187,"parentId":1186,"tags":{},"startTime":1776331082497,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":15557,"timestamp":6724135462950,"id":1186,"parentId":1164,"tags":{},"startTime":1776331082497,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":17343,"timestamp":6724135461718,"id":1164,"parentId":1049,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/resolve-href.js","layer":"app-pages-browser"},"startTime":1776331082496,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":16139,"timestamp":6724135462937,"id":1183,"parentId":1182,"tags":{},"startTime":1776331082497,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":16151,"timestamp":6724135462926,"id":1182,"parentId":1162,"tags":{},"startTime":1776331082497,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":17806,"timestamp":6724135461658,"id":1162,"parentId":966,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/parse-component-stack.js","layer":"app-pages-browser"},"startTime":1776331082496,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":16486,"timestamp":6724135462988,"id":1193,"parentId":1192,"tags":{},"startTime":1776331082497,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":16495,"timestamp":6724135462981,"id":1192,"parentId":1167,"tags":{},"startTime":1776331082497,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":19953,"timestamp":6724135461788,"id":1167,"parentId":1049,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/get-domain-locale.js","layer":"app-pages-browser"},"startTime":1776331082496,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":18759,"timestamp":6724135463008,"id":1197,"parentId":1196,"tags":{},"startTime":1776331082497,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":18769,"timestamp":6724135462998,"id":1196,"parentId":1170,"tags":{},"startTime":1776331082497,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":19992,"timestamp":6724135462149,"id":1170,"parentId":1049,"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":1776331082497,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":19182,"timestamp":6724135462979,"id":1191,"parentId":1190,"tags":{},"startTime":1776331082497,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":19193,"timestamp":6724135462969,"id":1190,"parentId":1166,"tags":{},"startTime":1776331082497,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":20882,"timestamp":6724135461764,"id":1166,"parentId":1049,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/use-intersection.js","layer":"app-pages-browser"},"startTime":1776331082496,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":19641,"timestamp":6724135463016,"id":1199,"parentId":1198,"tags":{},"startTime":1776331082497,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":19649,"timestamp":6724135463009,"id":1198,"parentId":1171,"tags":{},"startTime":1776331082497,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":20921,"timestamp":6724135462176,"id":1171,"parentId":1062,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/hooks-server-context.js","layer":"app-pages-browser"},"startTime":1776331082497,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":20083,"timestamp":6724135463033,"id":1203,"parentId":1202,"tags":{},"startTime":1776331082497,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":20091,"timestamp":6724135463025,"id":1202,"parentId":1173,"tags":{},"startTime":1776331082497,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":21193,"timestamp":6724135462222,"id":1173,"parentId":1049,"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":1776331082497,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":20404,"timestamp":6724135463024,"id":1201,"parentId":1200,"tags":{},"startTime":1776331082497,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":20412,"timestamp":6724135463017,"id":1200,"parentId":1172,"tags":{},"startTime":1776331082497,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":21495,"timestamp":6724135462202,"id":1172,"parentId":1062,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/static-generation-bailout.js","layer":"app-pages-browser"},"startTime":1776331082497,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":20715,"timestamp":6724135462997,"id":1195,"parentId":1194,"tags":{},"startTime":1776331082497,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":20723,"timestamp":6724135462989,"id":1194,"parentId":1169,"tags":{},"startTime":1776331082497,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":22201,"timestamp":6724135462111,"id":1169,"parentId":1049,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/utils.js","layer":"app-pages-browser"},"startTime":1776331082496,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":21270,"timestamp":6724135463057,"id":1209,"parentId":1208,"tags":{},"startTime":1776331082497,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":21278,"timestamp":6724135463050,"id":1208,"parentId":1176,"tags":{},"startTime":1776331082497,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":22249,"timestamp":6724135462281,"id":1176,"parentId":1061,"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":1776331082497,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":21490,"timestamp":6724135463049,"id":1207,"parentId":1206,"tags":{},"startTime":1776331082497,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":21498,"timestamp":6724135463042,"id":1206,"parentId":1175,"tags":{},"startTime":1776331082497,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":22458,"timestamp":6724135462262,"id":1175,"parentId":1061,"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":1776331082497,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":21691,"timestamp":6724135463041,"id":1205,"parentId":1204,"tags":{},"startTime":1776331082497,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":21699,"timestamp":6724135463034,"id":1204,"parentId":1174,"tags":{},"startTime":1776331082497,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":22866,"timestamp":6724135462243,"id":1174,"parentId":1049,"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":1776331082497,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":22043,"timestamp":6724135463089,"id":1211,"parentId":1210,"tags":{},"startTime":1776331082497,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":22075,"timestamp":6724135463058,"id":1210,"parentId":1177,"tags":{},"startTime":1776331082497,"traceId":"88e4a158817de868"},{"name":"build-module-ts","duration":23222,"timestamp":6724135462311,"id":1177,"parentId":1032,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/lib/utils.ts","layer":"app-pages-browser"},"startTime":1776331082497,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":22430,"timestamp":6724135463112,"id":1213,"parentId":1212,"tags":{},"startTime":1776331082497,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":22453,"timestamp":6724135463090,"id":1212,"parentId":1178,"tags":{},"startTime":1776331082497,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":23416,"timestamp":6724135462366,"id":1178,"parentId":947,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/static-generation-async-storage-instance.js","layer":"shared"},"startTime":1776331082497,"traceId":"88e4a158817de868"},{"name":"read-resource","duration":393,"timestamp":6724135492643,"id":1238,"parentId":1236,"tags":{},"startTime":1776331082527,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":28,"timestamp":6724135493041,"id":1278,"parentId":1236,"tags":{},"startTime":1776331082527,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":949,"timestamp":6724135492561,"id":1236,"parentId":1112,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/stacktrace-parser/stack-trace-parser.cjs.js","layer":"app-pages-browser"},"startTime":1776331082527,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":4443,"timestamp":6724135492737,"id":1243,"parentId":1242,"tags":{},"startTime":1776331082527,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":4454,"timestamp":6724135492728,"id":1242,"parentId":1218,"tags":{},"startTime":1776331082527,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":5287,"timestamp":6724135492197,"id":1218,"parentId":1036,"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":1776331082527,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":4742,"timestamp":6724135492753,"id":1247,"parentId":1246,"tags":{},"startTime":1776331082527,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":4750,"timestamp":6724135492746,"id":1246,"parentId":1220,"tags":{},"startTime":1776331082527,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":5518,"timestamp":6724135492245,"id":1220,"parentId":1108,"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":1776331082527,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":5025,"timestamp":6724135492745,"id":1245,"parentId":1244,"tags":{},"startTime":1776331082527,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":5033,"timestamp":6724135492738,"id":1244,"parentId":1219,"tags":{},"startTime":1776331082527,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":5759,"timestamp":6724135492223,"id":1219,"parentId":1036,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/on-recoverable-error.js","layer":"app-pages-browser"},"startTime":1776331082527,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":5273,"timestamp":6724135492726,"id":1241,"parentId":1240,"tags":{},"startTime":1776331082527,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":5303,"timestamp":6724135492698,"id":1240,"parentId":1217,"tags":{},"startTime":1776331082527,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":6222,"timestamp":6724135492128,"id":1217,"parentId":1036,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/app-link-gc.js","layer":"app-pages-browser"},"startTime":1776331082527,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":5590,"timestamp":6724135492767,"id":1251,"parentId":1250,"tags":{},"startTime":1776331082527,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":5597,"timestamp":6724135492761,"id":1250,"parentId":1222,"tags":{},"startTime":1776331082527,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":6573,"timestamp":6724135492289,"id":1222,"parentId":1093,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/action-async-storage.external.js","layer":"shared"},"startTime":1776331082527,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":6114,"timestamp":6724135492775,"id":1253,"parentId":1252,"tags":{},"startTime":1776331082527,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":6121,"timestamp":6724135492768,"id":1252,"parentId":1223,"tags":{},"startTime":1776331082527,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":6905,"timestamp":6724135492308,"id":1223,"parentId":1093,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/redirect-status-code.js","layer":"app-pages-browser"},"startTime":1776331082527,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":6463,"timestamp":6724135492760,"id":1249,"parentId":1248,"tags":{},"startTime":1776331082527,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":6470,"timestamp":6724135492754,"id":1248,"parentId":1221,"tags":{},"startTime":1776331082527,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":7193,"timestamp":6724135492266,"id":1221,"parentId":1093,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/request-async-storage.external.js","layer":"shared"},"startTime":1776331082527,"traceId":"88e4a158817de868"}] -[{"name":"next-swc-transform","duration":6816,"timestamp":6724135492782,"id":1255,"parentId":1254,"tags":{},"startTime":1776331082527,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":6825,"timestamp":6724135492775,"id":1254,"parentId":1224,"tags":{},"startTime":1776331082527,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":7658,"timestamp":6724135492328,"id":1224,"parentId":1096,"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":1776331082527,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":7195,"timestamp":6724135492802,"id":1261,"parentId":1260,"tags":{},"startTime":1776331082527,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":7202,"timestamp":6724135492796,"id":1260,"parentId":1227,"tags":{},"startTime":1776331082527,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":7833,"timestamp":6724135492383,"id":1227,"parentId":1110,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/normalized-asset-prefix.js","layer":"app-pages-browser"},"startTime":1776331082527,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":7437,"timestamp":6724135492788,"id":1257,"parentId":1256,"tags":{},"startTime":1776331082527,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":7444,"timestamp":6724135492782,"id":1256,"parentId":1225,"tags":{},"startTime":1776331082527,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":8171,"timestamp":6724135492347,"id":1225,"parentId":1099,"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":1776331082527,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":7733,"timestamp":6724135492795,"id":1259,"parentId":1258,"tags":{},"startTime":1776331082527,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":7740,"timestamp":6724135492789,"id":1258,"parentId":1226,"tags":{},"startTime":1776331082527,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":8461,"timestamp":6724135492366,"id":1226,"parentId":1103,"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":1776331082527,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":8026,"timestamp":6724135492809,"id":1263,"parentId":1262,"tags":{},"startTime":1776331082527,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":8033,"timestamp":6724135492803,"id":1262,"parentId":1228,"tags":{},"startTime":1776331082527,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":8684,"timestamp":6724135492401,"id":1228,"parentId":1102,"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":1776331082527,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":8278,"timestamp":6724135492816,"id":1265,"parentId":1264,"tags":{},"startTime":1776331082527,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":8285,"timestamp":6724135492809,"id":1264,"parentId":1229,"tags":{},"startTime":1776331082527,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":8910,"timestamp":6724135492419,"id":1229,"parentId":1107,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/ShadowPortal.js","layer":"app-pages-browser"},"startTime":1776331082527,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":8518,"timestamp":6724135492823,"id":1267,"parentId":1266,"tags":{},"startTime":1776331082527,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":8525,"timestamp":6724135492816,"id":1266,"parentId":1230,"tags":{},"startTime":1776331082527,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":9202,"timestamp":6724135492439,"id":1230,"parentId":1107,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/container/BuildError.js","layer":"app-pages-browser"},"startTime":1776331082527,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":8811,"timestamp":6724135492837,"id":1271,"parentId":1270,"tags":{},"startTime":1776331082527,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":8817,"timestamp":6724135492831,"id":1270,"parentId":1232,"tags":{},"startTime":1776331082527,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":9389,"timestamp":6724135492482,"id":1232,"parentId":1107,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/styles/Base.js","layer":"app-pages-browser"},"startTime":1776331082527,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":9027,"timestamp":6724135492851,"id":1275,"parentId":1274,"tags":{},"startTime":1776331082527,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":9034,"timestamp":6724135492845,"id":1274,"parentId":1234,"tags":{},"startTime":1776331082527,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":9623,"timestamp":6724135492525,"id":1234,"parentId":1107,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/styles/CssReset.js","layer":"app-pages-browser"},"startTime":1776331082527,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":9593,"timestamp":6724135492844,"id":1273,"parentId":1272,"tags":{},"startTime":1776331082527,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":9600,"timestamp":6724135492838,"id":1272,"parentId":1233,"tags":{},"startTime":1776331082527,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":10211,"timestamp":6724135492504,"id":1233,"parentId":1107,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/styles/ComponentStyles.js","layer":"app-pages-browser"},"startTime":1776331082527,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":15820,"timestamp":6724135492858,"id":1277,"parentId":1276,"tags":{},"startTime":1776331082527,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":15828,"timestamp":6724135492852,"id":1276,"parentId":1235,"tags":{},"startTime":1776331082527,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":16552,"timestamp":6724135492543,"id":1235,"parentId":1107,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/container/root-layout-missing-tags-error.js","layer":"app-pages-browser"},"startTime":1776331082527,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":12092,"timestamp":6724135497021,"id":1288,"parentId":1287,"tags":{},"startTime":1776331082531,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":12122,"timestamp":6724135496992,"id":1287,"parentId":1279,"tags":{},"startTime":1776331082531,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":14565,"timestamp":6724135494835,"id":1279,"parentId":1166,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/request-idle-callback.js","layer":"app-pages-browser"},"startTime":1776331082529,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":12365,"timestamp":6724135497048,"id":1292,"parentId":1291,"tags":{},"startTime":1776331082531,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":12375,"timestamp":6724135497038,"id":1291,"parentId":1281,"tags":{},"startTime":1776331082531,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":14786,"timestamp":6724135494948,"id":1281,"parentId":1164,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/querystring.js","layer":"app-pages-browser"},"startTime":1776331082529,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":16932,"timestamp":6724135492830,"id":1269,"parentId":1268,"tags":{},"startTime":1776331082527,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":16939,"timestamp":6724135492824,"id":1268,"parentId":1231,"tags":{},"startTime":1776331082527,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":19164,"timestamp":6724135492461,"id":1231,"parentId":1107,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/container/Errors.js","layer":"app-pages-browser"},"startTime":1776331082527,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":14615,"timestamp":6724135497037,"id":1290,"parentId":1289,"tags":{},"startTime":1776331082531,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":14628,"timestamp":6724135497025,"id":1289,"parentId":1280,"tags":{},"startTime":1776331082531,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":17076,"timestamp":6724135494916,"id":1280,"parentId":1113,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/is-hydration-error.js","layer":"app-pages-browser"},"startTime":1776331082529,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":14951,"timestamp":6724135497057,"id":1294,"parentId":1293,"tags":{},"startTime":1776331082531,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":14959,"timestamp":6724135497049,"id":1293,"parentId":1282,"tags":{},"startTime":1776331082531,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":17311,"timestamp":6724135494973,"id":1282,"parentId":1164,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/omit.js","layer":"app-pages-browser"},"startTime":1776331082529,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":15219,"timestamp":6724135497073,"id":1298,"parentId":1297,"tags":{},"startTime":1776331082531,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":15227,"timestamp":6724135497066,"id":1297,"parentId":1284,"tags":{},"startTime":1776331082531,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":17455,"timestamp":6724135495021,"id":1284,"parentId":1164,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/index.js","layer":"app-pages-browser"},"startTime":1776331082529,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":15421,"timestamp":6724135497065,"id":1296,"parentId":1295,"tags":{},"startTime":1776331082531,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":15429,"timestamp":6724135497058,"id":1295,"parentId":1283,"tags":{},"startTime":1776331082531,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":17846,"timestamp":6724135494999,"id":1283,"parentId":1164,"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":1776331082529,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":15776,"timestamp":6724135497082,"id":1300,"parentId":1299,"tags":{},"startTime":1776331082531,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":15784,"timestamp":6724135497075,"id":1299,"parentId":1285,"tags":{},"startTime":1776331082531,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":18044,"timestamp":6724135495042,"id":1285,"parentId":1161,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/dev/noop-turbopack-hmr.js","layer":"app-pages-browser"},"startTime":1776331082529,"traceId":"88e4a158817de868"},{"name":"read-resource","duration":25393,"timestamp":6724135488243,"id":1216,"parentId":1215,"tags":{},"startTime":1776331082523,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":34,"timestamp":6724135513645,"id":1301,"parentId":1215,"tags":{},"startTime":1776331082548,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":25698,"timestamp":6724135488134,"id":1215,"parentId":1034,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/deployment-id.js","layer":"app-pages-browser"},"startTime":1776331082523,"traceId":"88e4a158817de868"},{"name":"read-resource","duration":24884,"timestamp":6724135492645,"id":1239,"parentId":1237,"tags":{},"startTime":1776331082527,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":30,"timestamp":6724135517538,"id":1302,"parentId":1237,"tags":{},"startTime":1776331082552,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":25281,"timestamp":6724135492599,"id":1237,"parentId":1036,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/polyfills/polyfill-module.js","layer":"app-pages-browser"},"startTime":1776331082527,"traceId":"88e4a158817de868"},{"name":"read-resource","duration":528,"timestamp":6724135531093,"id":1330,"parentId":1329,"tags":{},"startTime":1776331082565,"traceId":"88e4a158817de868"},{"name":"read-resource","duration":781,"timestamp":6724135543245,"id":1352,"parentId":1333,"tags":{},"startTime":1776331082578,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":36,"timestamp":6724135544038,"id":1397,"parentId":1333,"tags":{},"startTime":1776331082578,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":13225,"timestamp":6724135531193,"id":1333,"parentId":1230,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_tagged_template_literal_loose.js","layer":"app-pages-browser"},"startTime":1776331082566,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":22188,"timestamp":6724135522264,"id":1313,"parentId":1312,"tags":{},"startTime":1776331082557,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":22220,"timestamp":6724135522233,"id":1312,"parentId":1304,"tags":{},"startTime":1776331082557,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":22889,"timestamp":6724135521987,"id":1304,"parentId":1178,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/async-local-storage.js","layer":"shared"},"startTime":1776331082556,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":22587,"timestamp":6724135522300,"id":1319,"parentId":1318,"tags":{},"startTime":1776331082557,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":22596,"timestamp":6724135522292,"id":1318,"parentId":1307,"tags":{},"startTime":1776331082557,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":23056,"timestamp":6724135522071,"id":1307,"parentId":1220,"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":1776331082556,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":22849,"timestamp":6724135522291,"id":1317,"parentId":1316,"tags":{},"startTime":1776331082557,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":22862,"timestamp":6724135522280,"id":1316,"parentId":1306,"tags":{},"startTime":1776331082557,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":23493,"timestamp":6724135522046,"id":1306,"parentId":1226,"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":1776331082556,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":23274,"timestamp":6724135522279,"id":1315,"parentId":1314,"tags":{},"startTime":1776331082557,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":23286,"timestamp":6724135522267,"id":1314,"parentId":1305,"tags":{},"startTime":1776331082557,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":24002,"timestamp":6724135522018,"id":1305,"parentId":1228,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/promise-queue.js","layer":"app-pages-browser"},"startTime":1776331082556,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":27926,"timestamp":6724135522316,"id":1323,"parentId":1322,"tags":{},"startTime":1776331082557,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":27937,"timestamp":6724135522309,"id":1322,"parentId":1309,"tags":{},"startTime":1776331082557,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":28668,"timestamp":6724135522118,"id":1309,"parentId":1225,"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":1776331082556,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":28482,"timestamp":6724135522324,"id":1325,"parentId":1324,"tags":{},"startTime":1776331082557,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":28491,"timestamp":6724135522317,"id":1324,"parentId":1310,"tags":{},"startTime":1776331082557,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":29004,"timestamp":6724135522137,"id":1310,"parentId":1225,"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":1776331082557,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":28853,"timestamp":6724135522309,"id":1321,"parentId":1320,"tags":{},"startTime":1776331082557,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":28861,"timestamp":6724135522301,"id":1320,"parentId":1308,"tags":{},"startTime":1776331082557,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":29931,"timestamp":6724135522092,"id":1308,"parentId":1225,"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":1776331082556,"traceId":"88e4a158817de868"},{"name":"read-resource","duration":301,"timestamp":6724135554828,"id":1407,"parentId":1398,"tags":{},"startTime":1776331082589,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":2354,"timestamp":6724135555137,"id":1416,"parentId":1398,"tags":{},"startTime":1776331082590,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":3446,"timestamp":6724135554291,"id":1398,"parentId":1280,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/is-error.js","layer":"app-pages-browser"},"startTime":1776331082589,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":14171,"timestamp":6724135543594,"id":1356,"parentId":1355,"tags":{},"startTime":1776331082578,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":14184,"timestamp":6724135543582,"id":1355,"parentId":1327,"tags":{},"startTime":1776331082578,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":29989,"timestamp":6724135528192,"id":1327,"parentId":1225,"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":1776331082563,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":14618,"timestamp":6724135543577,"id":1354,"parentId":1353,"tags":{},"startTime":1776331082578,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":14660,"timestamp":6724135543536,"id":1353,"parentId":1326,"tags":{},"startTime":1776331082578,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":30490,"timestamp":6724135528075,"id":1326,"parentId":1225,"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":1776331082562,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":14946,"timestamp":6724135543628,"id":1360,"parentId":1359,"tags":{},"startTime":1776331082578,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":14968,"timestamp":6724135543606,"id":1359,"parentId":1331,"tags":{},"startTime":1776331082578,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":27722,"timestamp":6724135531106,"id":1331,"parentId":1230,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Dialog/index.js","layer":"app-pages-browser"},"startTime":1776331082565,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":15176,"timestamp":6724135543660,"id":1366,"parentId":1365,"tags":{},"startTime":1776331082578,"traceId":"88e4a158817de868"}] -[{"name":"next-swc-loader","duration":15264,"timestamp":6724135543651,"id":1365,"parentId":1335,"tags":{},"startTime":1776331082578,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":27858,"timestamp":6724135531263,"id":1335,"parentId":1233,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/CodeFrame/styles.js","layer":"app-pages-browser"},"startTime":1776331082566,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":15533,"timestamp":6724135543604,"id":1358,"parentId":1357,"tags":{},"startTime":1776331082578,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":15543,"timestamp":6724135543596,"id":1357,"parentId":1328,"tags":{},"startTime":1776331082578,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":31466,"timestamp":6724135528236,"id":1328,"parentId":1225,"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":1776331082563,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":16070,"timestamp":6724135543639,"id":1362,"parentId":1361,"tags":{},"startTime":1776331082578,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":16080,"timestamp":6724135543630,"id":1361,"parentId":1332,"tags":{},"startTime":1776331082578,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":28719,"timestamp":6724135531164,"id":1332,"parentId":1230,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Overlay/index.js","layer":"app-pages-browser"},"startTime":1776331082566,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":16242,"timestamp":6724135543650,"id":1364,"parentId":1363,"tags":{},"startTime":1776331082578,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":16252,"timestamp":6724135543640,"id":1363,"parentId":1334,"tags":{},"startTime":1776331082578,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":28860,"timestamp":6724135531239,"id":1334,"parentId":1230,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/noop-template.js","layer":"app-pages-browser"},"startTime":1776331082566,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":16417,"timestamp":6724135543689,"id":1372,"parentId":1371,"tags":{},"startTime":1776331082578,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":16428,"timestamp":6724135543679,"id":1371,"parentId":1338,"tags":{},"startTime":1776331082578,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":28957,"timestamp":6724135531330,"id":1338,"parentId":1230,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/VersionStalenessInfo/index.js","layer":"app-pages-browser"},"startTime":1776331082566,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":16626,"timestamp":6724135543669,"id":1368,"parentId":1367,"tags":{},"startTime":1776331082578,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":16634,"timestamp":6724135543661,"id":1367,"parentId":1336,"tags":{},"startTime":1776331082578,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":29217,"timestamp":6724135531285,"id":1336,"parentId":1233,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/LeftRightDialogHeader/styles.js","layer":"app-pages-browser"},"startTime":1776331082566,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":16830,"timestamp":6724135543678,"id":1370,"parentId":1369,"tags":{},"startTime":1776331082578,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":16838,"timestamp":6724135543670,"id":1369,"parentId":1337,"tags":{},"startTime":1776331082578,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":29358,"timestamp":6724135531309,"id":1337,"parentId":1230,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Terminal/index.js","layer":"app-pages-browser"},"startTime":1776331082566,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":16975,"timestamp":6724135543699,"id":1374,"parentId":1373,"tags":{},"startTime":1776331082578,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":16983,"timestamp":6724135543691,"id":1373,"parentId":1339,"tags":{},"startTime":1776331082578,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":29497,"timestamp":6724135531351,"id":1339,"parentId":1231,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/error-source.js","layer":"app-pages-browser"},"startTime":1776331082566,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":17128,"timestamp":6724135543725,"id":1380,"parentId":1379,"tags":{},"startTime":1776331082578,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":17136,"timestamp":6724135543718,"id":1379,"parentId":1342,"tags":{},"startTime":1776331082578,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":29657,"timestamp":6724135531410,"id":1342,"parentId":1233,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Overlay/styles.js","layer":"app-pages-browser"},"startTime":1776331082566,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":17361,"timestamp":6724135543716,"id":1378,"parentId":1377,"tags":{},"startTime":1776331082578,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":17369,"timestamp":6724135543709,"id":1377,"parentId":1341,"tags":{},"startTime":1776331082578,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":29890,"timestamp":6724135531391,"id":1341,"parentId":1231,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/icons/CloseIcon.js","layer":"app-pages-browser"},"startTime":1776331082566,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":17582,"timestamp":6724135543707,"id":1376,"parentId":1375,"tags":{},"startTime":1776331082578,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":17591,"timestamp":6724135543700,"id":1375,"parentId":1340,"tags":{},"startTime":1776331082578,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":30284,"timestamp":6724135531371,"id":1340,"parentId":1231,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/getErrorByType.js","layer":"app-pages-browser"},"startTime":1776331082566,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":17934,"timestamp":6724135543734,"id":1382,"parentId":1381,"tags":{},"startTime":1776331082578,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":17943,"timestamp":6724135543726,"id":1381,"parentId":1343,"tags":{},"startTime":1776331082578,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":30483,"timestamp":6724135531429,"id":1343,"parentId":1233,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Terminal/styles.js","layer":"app-pages-browser"},"startTime":1776331082566,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":18170,"timestamp":6724135543752,"id":1386,"parentId":1385,"tags":{},"startTime":1776331082578,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":18178,"timestamp":6724135543744,"id":1385,"parentId":1345,"tags":{},"startTime":1776331082578,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":30660,"timestamp":6724135531467,"id":1345,"parentId":1233,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Toast/index.js","layer":"app-pages-browser"},"startTime":1776331082566,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":18371,"timestamp":6724135543769,"id":1390,"parentId":1389,"tags":{},"startTime":1776331082578,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":18380,"timestamp":6724135543761,"id":1389,"parentId":1347,"tags":{},"startTime":1776331082578,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":30974,"timestamp":6724135531505,"id":1347,"parentId":1235,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/hot-linked-text/index.js","layer":"app-pages-browser"},"startTime":1776331082566,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":18709,"timestamp":6724135543777,"id":1392,"parentId":1391,"tags":{},"startTime":1776331082578,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":18717,"timestamp":6724135543770,"id":1391,"parentId":1348,"tags":{},"startTime":1776331082578,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":31158,"timestamp":6724135531523,"id":1348,"parentId":1231,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/LeftRightDialogHeader/index.js","layer":"app-pages-browser"},"startTime":1776331082566,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":18944,"timestamp":6724135543760,"id":1388,"parentId":1387,"tags":{},"startTime":1776331082578,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":18952,"timestamp":6724135543753,"id":1387,"parentId":1346,"tags":{},"startTime":1776331082578,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":31640,"timestamp":6724135531486,"id":1346,"parentId":1233,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/container/RuntimeError/index.js","layer":"app-pages-browser"},"startTime":1776331082566,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":19519,"timestamp":6724135543743,"id":1384,"parentId":1383,"tags":{},"startTime":1776331082578,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":19527,"timestamp":6724135543735,"id":1383,"parentId":1344,"tags":{},"startTime":1776331082578,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":32284,"timestamp":6724135531448,"id":1344,"parentId":1231,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/container/RuntimeError/component-stack-pseudo-html.js","layer":"app-pages-browser"},"startTime":1776331082566,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":19947,"timestamp":6724135543795,"id":1396,"parentId":1395,"tags":{},"startTime":1776331082578,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":19955,"timestamp":6724135543788,"id":1395,"parentId":1350,"tags":{},"startTime":1776331082578,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":32345,"timestamp":6724135531561,"id":1350,"parentId":1221,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/request-async-storage-instance.js","layer":"shared"},"startTime":1776331082566,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":20126,"timestamp":6724135543786,"id":1394,"parentId":1393,"tags":{},"startTime":1776331082578,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":20135,"timestamp":6724135543778,"id":1393,"parentId":1349,"tags":{},"startTime":1776331082578,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":32532,"timestamp":6724135531542,"id":1349,"parentId":1222,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/action-async-storage-instance.js","layer":"shared"},"startTime":1776331082566,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":9253,"timestamp":6724135555026,"id":1411,"parentId":1410,"tags":{},"startTime":1776331082589,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":9265,"timestamp":6724135555015,"id":1410,"parentId":1400,"tags":{},"startTime":1776331082589,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":10035,"timestamp":6724135554435,"id":1400,"parentId":1284,"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":1776331082589,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":9444,"timestamp":6724135555035,"id":1413,"parentId":1412,"tags":{},"startTime":1776331082589,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":9453,"timestamp":6724135555027,"id":1412,"parentId":1401,"tags":{},"startTime":1776331082589,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":10246,"timestamp":6724135554459,"id":1401,"parentId":1283,"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":1776331082589,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":9707,"timestamp":6724135555012,"id":1409,"parentId":1408,"tags":{},"startTime":1776331082589,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":9738,"timestamp":6724135554982,"id":1408,"parentId":1399,"tags":{},"startTime":1776331082589,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":11852,"timestamp":6724135554395,"id":1399,"parentId":1284,"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":1776331082589,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":11264,"timestamp":6724135555043,"id":1415,"parentId":1414,"tags":{},"startTime":1776331082589,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":11272,"timestamp":6724135555036,"id":1414,"parentId":1402,"tags":{},"startTime":1776331082589,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":12503,"timestamp":6724135554479,"id":1402,"parentId":1283,"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":1776331082589,"traceId":"88e4a158817de868"},{"name":"read-resource","duration":56212,"timestamp":6724135522165,"id":1311,"parentId":1303,"tags":{},"startTime":1776331082557,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":38,"timestamp":6724135578389,"id":1419,"parentId":1303,"tags":{},"startTime":1776331082613,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":58234,"timestamp":6724135521897,"id":1303,"parentId":971,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/internal/helpers.js","layer":"app-pages-browser"},"startTime":1776331082556,"traceId":"88e4a158817de868"},{"name":"read-resource","duration":358,"timestamp":6724135581244,"id":1431,"parentId":1429,"tags":{},"startTime":1776331082616,"traceId":"88e4a158817de868"},{"name":"read-resource","duration":385,"timestamp":6724135581248,"id":1432,"parentId":1430,"tags":{},"startTime":1776331082616,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":178,"timestamp":6724135581607,"id":1451,"parentId":1429,"tags":{},"startTime":1776331082616,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":151,"timestamp":6724135581635,"id":1452,"parentId":1430,"tags":{},"startTime":1776331082616,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":1144,"timestamp":6724135581085,"id":1429,"parentId":1305,"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":1776331082615,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":1190,"timestamp":6724135581159,"id":1430,"parentId":1305,"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":1776331082616,"traceId":"88e4a158817de868"},{"name":"read-resource","duration":389,"timestamp":6724135584917,"id":1474,"parentId":1454,"tags":{},"startTime":1776331082619,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":33,"timestamp":6724135585311,"id":1515,"parentId":1454,"tags":{},"startTime":1776331082620,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":1277,"timestamp":6724135584482,"id":1454,"parentId":1402,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/constants.js","layer":"app-pages-browser"},"startTime":1776331082619,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":4414,"timestamp":6724135581363,"id":1434,"parentId":1433,"tags":{},"startTime":1776331082616,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":4449,"timestamp":6724135581329,"id":1433,"parentId":1420,"tags":{},"startTime":1776331082616,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":5381,"timestamp":6724135580690,"id":1420,"parentId":1306,"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":1776331082615,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":4674,"timestamp":6724135581407,"id":1438,"parentId":1437,"tags":{},"startTime":1776331082616,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":4703,"timestamp":6724135581378,"id":1437,"parentId":1422,"tags":{},"startTime":1776331082616,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":5832,"timestamp":6724135580923,"id":1422,"parentId":1309,"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":1776331082615,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":5369,"timestamp":6724135581424,"id":1442,"parentId":1441,"tags":{},"startTime":1776331082616,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":5377,"timestamp":6724135581417,"id":1441,"parentId":1424,"tags":{},"startTime":1776331082616,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":6207,"timestamp":6724135580985,"id":1424,"parentId":1309,"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":1776331082615,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":5833,"timestamp":6724135581377,"id":1436,"parentId":1435,"tags":{},"startTime":1776331082616,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":5845,"timestamp":6724135581365,"id":1435,"parentId":1421,"tags":{},"startTime":1776331082616,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":6721,"timestamp":6724135580873,"id":1421,"parentId":1309,"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":1776331082615,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":6190,"timestamp":6724135581416,"id":1440,"parentId":1439,"tags":{},"startTime":1776331082616,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":6199,"timestamp":6724135581408,"id":1439,"parentId":1423,"tags":{},"startTime":1776331082616,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":6948,"timestamp":6724135580960,"id":1423,"parentId":1309,"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":1776331082615,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":6469,"timestamp":6724135581448,"id":1448,"parentId":1447,"tags":{},"startTime":1776331082616,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":6477,"timestamp":6724135581441,"id":1447,"parentId":1427,"tags":{},"startTime":1776331082616,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":7111,"timestamp":6724135581047,"id":1427,"parentId":1308,"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":1776331082615,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":6751,"timestamp":6724135581455,"id":1450,"parentId":1449,"tags":{},"startTime":1776331082616,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":6758,"timestamp":6724135581448,"id":1449,"parentId":1428,"tags":{},"startTime":1776331082616,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":7462,"timestamp":6724135581066,"id":1428,"parentId":1308,"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":1776331082615,"traceId":"88e4a158817de868"}] -[{"name":"next-swc-transform","duration":7194,"timestamp":6724135581440,"id":1446,"parentId":1445,"tags":{},"startTime":1776331082616,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":7202,"timestamp":6724135581432,"id":1445,"parentId":1426,"tags":{},"startTime":1776331082616,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":7860,"timestamp":6724135581028,"id":1426,"parentId":1308,"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":1776331082615,"traceId":"88e4a158817de868"},{"name":"read-resource","duration":34348,"timestamp":6724135554777,"id":1404,"parentId":1403,"tags":{},"startTime":1776331082589,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":34714,"timestamp":6724135554500,"id":1403,"parentId":899,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react/jsx-dev-runtime.js","layer":"app-pages-browser"},"startTime":1776331082589,"traceId":"88e4a158817de868"},{"name":"read-resource","duration":34413,"timestamp":6724135554806,"id":1406,"parentId":1405,"tags":{},"startTime":1776331082589,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":34467,"timestamp":6724135554796,"id":1405,"parentId":903,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react/jsx-runtime.js","layer":"app-pages-browser"},"startTime":1776331082589,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":4297,"timestamp":6724135584995,"id":1478,"parentId":1477,"tags":{},"startTime":1776331082619,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":4307,"timestamp":6724135584984,"id":1477,"parentId":1455,"tags":{},"startTime":1776331082619,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":4958,"timestamp":6724135584530,"id":1455,"parentId":1402,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/escape-regexp.js","layer":"app-pages-browser"},"startTime":1776331082619,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":5987,"timestamp":6724135584982,"id":1476,"parentId":1475,"tags":{},"startTime":1776331082619,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":6014,"timestamp":6724135584957,"id":1475,"parentId":1453,"tags":{},"startTime":1776331082619,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":6927,"timestamp":6724135584419,"id":1453,"parentId":1398,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/is-plain-object.js","layer":"app-pages-browser"},"startTime":1776331082619,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":6374,"timestamp":6724135585003,"id":1480,"parentId":1479,"tags":{},"startTime":1776331082619,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":6382,"timestamp":6724135584996,"id":1479,"parentId":1456,"tags":{},"startTime":1776331082619,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":7358,"timestamp":6724135584555,"id":1456,"parentId":1347,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/magic-identifier.js","layer":"app-pages-browser"},"startTime":1776331082619,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":6911,"timestamp":6724135585020,"id":1484,"parentId":1483,"tags":{},"startTime":1776331082619,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":6919,"timestamp":6724135585013,"id":1483,"parentId":1458,"tags":{},"startTime":1776331082619,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":7589,"timestamp":6724135584603,"id":1458,"parentId":1346,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/group-stack-frames-by-framework.js","layer":"app-pages-browser"},"startTime":1776331082619,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":10810,"timestamp":6724135581432,"id":1444,"parentId":1443,"tags":{},"startTime":1776331082616,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":10818,"timestamp":6724135581425,"id":1443,"parentId":1425,"tags":{},"startTime":1776331082616,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":12337,"timestamp":6724135581007,"id":1425,"parentId":1310,"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":1776331082615,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":8332,"timestamp":6724135585028,"id":1486,"parentId":1485,"tags":{},"startTime":1776331082619,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":8340,"timestamp":6724135585021,"id":1485,"parentId":1459,"tags":{},"startTime":1776331082619,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":9010,"timestamp":6724135584625,"id":1459,"parentId":1344,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/icons/CollapseIcon.js","layer":"app-pages-browser"},"startTime":1776331082619,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":8591,"timestamp":6724135585051,"id":1492,"parentId":1491,"tags":{},"startTime":1776331082619,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":8598,"timestamp":6724135585045,"id":1491,"parentId":1462,"tags":{},"startTime":1776331082619,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":9199,"timestamp":6724135584684,"id":1462,"parentId":1331,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Dialog/DialogContent.js","layer":"app-pages-browser"},"startTime":1776331082619,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":8851,"timestamp":6724135585044,"id":1490,"parentId":1489,"tags":{},"startTime":1776331082619,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":8858,"timestamp":6724135585037,"id":1489,"parentId":1461,"tags":{},"startTime":1776331082619,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":9450,"timestamp":6724135584664,"id":1461,"parentId":1331,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Dialog/DialogBody.js","layer":"app-pages-browser"},"startTime":1776331082619,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":9125,"timestamp":6724135585012,"id":1482,"parentId":1481,"tags":{},"startTime":1776331082619,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":9133,"timestamp":6724135585004,"id":1481,"parentId":1457,"tags":{},"startTime":1776331082619,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":10149,"timestamp":6724135584577,"id":1457,"parentId":1340,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/stack-frame.js","layer":"app-pages-browser"},"startTime":1776331082619,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":9705,"timestamp":6724135585036,"id":1488,"parentId":1487,"tags":{},"startTime":1776331082619,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":9712,"timestamp":6724135585029,"id":1487,"parentId":1460,"tags":{},"startTime":1776331082619,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":10419,"timestamp":6724135584644,"id":1460,"parentId":1331,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Dialog/Dialog.js","layer":"app-pages-browser"},"startTime":1776331082619,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":10005,"timestamp":6724135585066,"id":1496,"parentId":1495,"tags":{},"startTime":1776331082619,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":10012,"timestamp":6724135585060,"id":1495,"parentId":1464,"tags":{},"startTime":1776331082619,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":10562,"timestamp":6724135584722,"id":1464,"parentId":1331,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Dialog/styles.js","layer":"app-pages-browser"},"startTime":1776331082619,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":10232,"timestamp":6724135585059,"id":1494,"parentId":1493,"tags":{},"startTime":1776331082619,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":10239,"timestamp":6724135585052,"id":1493,"parentId":1463,"tags":{},"startTime":1776331082619,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":10787,"timestamp":6724135584702,"id":1463,"parentId":1331,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Dialog/DialogHeader.js","layer":"app-pages-browser"},"startTime":1776331082619,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":10414,"timestamp":6724135585082,"id":1500,"parentId":1499,"tags":{},"startTime":1776331082619,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":10421,"timestamp":6724135585075,"id":1499,"parentId":1466,"tags":{},"startTime":1776331082619,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":10927,"timestamp":6724135584761,"id":1466,"parentId":1338,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/VersionStalenessInfo/styles.js","layer":"app-pages-browser"},"startTime":1776331082619,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":10623,"timestamp":6724135585074,"id":1498,"parentId":1497,"tags":{},"startTime":1776331082619,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":10630,"timestamp":6724135585067,"id":1497,"parentId":1465,"tags":{},"startTime":1776331082619,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":11208,"timestamp":6724135584742,"id":1465,"parentId":1332,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Overlay/Overlay.js","layer":"app-pages-browser"},"startTime":1776331082619,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":10862,"timestamp":6724135585104,"id":1506,"parentId":1505,"tags":{},"startTime":1776331082619,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":10870,"timestamp":6724135585098,"id":1505,"parentId":1469,"tags":{},"startTime":1776331082619,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":12689,"timestamp":6724135584816,"id":1469,"parentId":1345,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Toast/styles.js","layer":"app-pages-browser"},"startTime":1776331082619,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":12439,"timestamp":6724135585089,"id":1502,"parentId":1501,"tags":{},"startTime":1776331082619,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":12447,"timestamp":6724135585083,"id":1501,"parentId":1467,"tags":{},"startTime":1776331082619,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":13203,"timestamp":6724135584779,"id":1467,"parentId":1338,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/VersionStalenessInfo/VersionStalenessInfo.js","layer":"app-pages-browser"},"startTime":1776331082619,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":12903,"timestamp":6724135585097,"id":1504,"parentId":1503,"tags":{},"startTime":1776331082619,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":12911,"timestamp":6724135585090,"id":1503,"parentId":1468,"tags":{},"startTime":1776331082619,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":13812,"timestamp":6724135584798,"id":1468,"parentId":1337,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Terminal/Terminal.js","layer":"app-pages-browser"},"startTime":1776331082619,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":13510,"timestamp":6724135585112,"id":1508,"parentId":1507,"tags":{},"startTime":1776331082619,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":13518,"timestamp":6724135585105,"id":1507,"parentId":1470,"tags":{},"startTime":1776331082619,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":14055,"timestamp":6724135584837,"id":1470,"parentId":1345,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Toast/Toast.js","layer":"app-pages-browser"},"startTime":1776331082619,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":13918,"timestamp":6724135585134,"id":1514,"parentId":1513,"tags":{},"startTime":1776331082620,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":13926,"timestamp":6724135585127,"id":1513,"parentId":1473,"tags":{},"startTime":1776331082620,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":14427,"timestamp":6724135584892,"id":1473,"parentId":1346,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/CodeFrame/index.js","layer":"app-pages-browser"},"startTime":1776331082619,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":264768,"timestamp":6724135585127,"id":1512,"parentId":1511,"tags":{},"startTime":1776331082620,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":264782,"timestamp":6724135585120,"id":1511,"parentId":1472,"tags":{},"startTime":1776331082620,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":265975,"timestamp":6724135584874,"id":1472,"parentId":1346,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/container/RuntimeError/GroupedStackFrames.js","layer":"app-pages-browser"},"startTime":1776331082619,"traceId":"88e4a158817de868"},{"name":"read-resource","duration":281268,"timestamp":6724135569774,"id":1418,"parentId":1417,"tags":{},"startTime":1776331082604,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":281470,"timestamp":6724135569740,"id":1417,"parentId":904,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react/index.js","layer":"app-pages-browser"},"startTime":1776331082604,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":266134,"timestamp":6724135585119,"id":1510,"parentId":1509,"tags":{},"startTime":1776331082619,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":266142,"timestamp":6724135585112,"id":1509,"parentId":1471,"tags":{},"startTime":1776331082619,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":267068,"timestamp":6724135584855,"id":1471,"parentId":1348,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/LeftRightDialogHeader/LeftRightDialogHeader.js","layer":"app-pages-browser"},"startTime":1776331082619,"traceId":"88e4a158817de868"},{"name":"read-resource","duration":257,"timestamp":6724135864819,"id":1531,"parentId":1530,"tags":{},"startTime":1776331082899,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":29,"timestamp":6724135865084,"id":1546,"parentId":1530,"tags":{},"startTime":1776331082899,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":1679,"timestamp":6724135864727,"id":1530,"parentId":1468,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/anser/index.js","layer":"app-pages-browser"},"startTime":1776331082899,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":2226,"timestamp":6724135864913,"id":1533,"parentId":1532,"tags":{},"startTime":1776331082899,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":2262,"timestamp":6724135864878,"id":1532,"parentId":1523,"tags":{},"startTime":1776331082899,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":3046,"timestamp":6724135864467,"id":1523,"parentId":1460,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/hooks/use-on-click-outside.js","layer":"app-pages-browser"},"startTime":1776331082899,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":3492,"timestamp":6724135864927,"id":1535,"parentId":1534,"tags":{},"startTime":1776331082899,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":3503,"timestamp":6724135864917,"id":1534,"parentId":1524,"tags":{},"startTime":1776331082899,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":4242,"timestamp":6724135864568,"id":1524,"parentId":1472,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/icons/FrameworkIcon.js","layer":"app-pages-browser"},"startTime":1776331082899,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":3877,"timestamp":6724135864944,"id":1539,"parentId":1538,"tags":{},"startTime":1776331082899,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":3884,"timestamp":6724135864937,"id":1538,"parentId":1526,"tags":{},"startTime":1776331082899,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":4502,"timestamp":6724135864627,"id":1526,"parentId":1465,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Overlay/body-locker.js","layer":"app-pages-browser"},"startTime":1776331082899,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":4188,"timestamp":6724135864952,"id":1541,"parentId":1540,"tags":{},"startTime":1776331082899,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":4196,"timestamp":6724135864945,"id":1540,"parentId":1527,"tags":{},"startTime":1776331082899,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":4796,"timestamp":6724135864652,"id":1527,"parentId":1468,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Terminal/EditorLink.js","layer":"app-pages-browser"},"startTime":1776331082899,"traceId":"88e4a158817de868"},{"name":"read-resource","duration":278652,"timestamp":6724135590803,"id":1517,"parentId":1516,"tags":{},"startTime":1776331082625,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":278713,"timestamp":6724135590782,"id":1516,"parentId":962,"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":1776331082625,"traceId":"88e4a158817de868"},{"name":"read-resource","duration":278673,"timestamp":6724135590827,"id":1519,"parentId":1518,"tags":{},"startTime":1776331082625,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":278782,"timestamp":6724135590818,"id":1518,"parentId":905,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react-dom/index.js","layer":"app-pages-browser"},"startTime":1776331082625,"traceId":"88e4a158817de868"},{"name":"read-resource","duration":283607,"timestamp":6724135590843,"id":1521,"parentId":1520,"tags":{},"startTime":1776331082625,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":283945,"timestamp":6724135590834,"id":1520,"parentId":1036,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react-dom/client.js","layer":"app-pages-browser"},"startTime":1776331082625,"traceId":"88e4a158817de868"},{"name":"postcss-process","duration":219289,"timestamp":6724135763178,"id":1522,"parentId":1351,"tags":{},"startTime":1776331082798,"traceId":"88e4a158817de868"},{"name":"postcss-loader","duration":451753,"timestamp":6724135531716,"id":1351,"parentId":1329,"tags":{},"startTime":1776331082566,"traceId":"88e4a158817de868"},{"name":"css-loader","duration":26955,"timestamp":6724135983586,"id":1549,"parentId":1329,"tags":{"astUsed":"true"},"startTime":1776331083018,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":146621,"timestamp":6724135864989,"id":1545,"parentId":1544,"tags":{},"startTime":1776331082899,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":146631,"timestamp":6724135864981,"id":1544,"parentId":1529,"tags":{},"startTime":1776331082899,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":147485,"timestamp":6724135864699,"id":1529,"parentId":1472,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/container/RuntimeError/CallStackFrame.js","layer":"app-pages-browser"},"startTime":1776331082899,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":147228,"timestamp":6724135864979,"id":1543,"parentId":1542,"tags":{},"startTime":1776331082899,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":147255,"timestamp":6724135864953,"id":1542,"parentId":1528,"tags":{},"startTime":1776331082899,"traceId":"88e4a158817de868"}] -[{"name":"build-module-js","duration":148250,"timestamp":6724135864671,"id":1528,"parentId":1473,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/CodeFrame/CodeFrame.js","layer":"app-pages-browser"},"startTime":1776331082899,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":153712,"timestamp":6724135864936,"id":1537,"parentId":1536,"tags":{},"startTime":1776331082899,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":153723,"timestamp":6724135864928,"id":1536,"parentId":1525,"tags":{},"startTime":1776331082899,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":160631,"timestamp":6724135864603,"id":1525,"parentId":1465,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Overlay/maintain--tab-focus.js","layer":"app-pages-browser"},"startTime":1776331082899,"traceId":"88e4a158817de868"},{"name":"read-resource","duration":159850,"timestamp":6724135867728,"id":1548,"parentId":1547,"tags":{},"startTime":1776331082902,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":28,"timestamp":6724136027588,"id":1559,"parentId":1547,"tags":{},"startTime":1776331083062,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":160142,"timestamp":6724135867634,"id":1547,"parentId":971,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react-refresh/runtime.js","layer":"app-pages-browser"},"startTime":1776331082902,"traceId":"88e4a158817de868"},{"name":"read-resource","duration":45,"timestamp":6724136028210,"id":1562,"parentId":1560,"tags":{},"startTime":1776331083063,"traceId":"88e4a158817de868"},{"name":"read-resource","duration":102,"timestamp":6724136028213,"id":1563,"parentId":1561,"tags":{},"startTime":1776331083063,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":242,"timestamp":6724136028259,"id":1564,"parentId":1560,"tags":{},"startTime":1776331083063,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":191,"timestamp":6724136028318,"id":1565,"parentId":1561,"tags":{},"startTime":1776331083063,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":2973,"timestamp":6724136028100,"id":1560,"parentId":1525,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/platform/platform.js","layer":"app-pages-browser"},"startTime":1776331083062,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":3176,"timestamp":6724136028163,"id":1561,"parentId":1525,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/css.escape/css.escape.js","layer":"app-pages-browser"},"startTime":1776331083063,"traceId":"88e4a158817de868"},{"name":"read-resource","duration":17067,"timestamp":6724136014704,"id":1553,"parentId":1552,"tags":{},"startTime":1776331083049,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":20411,"timestamp":6724136014694,"id":1552,"parentId":1405,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react/cjs/react-jsx-runtime.development.js","layer":"app-pages-browser"},"startTime":1776331083049,"traceId":"88e4a158817de868"},{"name":"next-swc-transform","duration":8192,"timestamp":6724136027060,"id":1558,"parentId":1557,"tags":{},"startTime":1776331083061,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":8227,"timestamp":6724136027027,"id":1557,"parentId":1556,"tags":{},"startTime":1776331083061,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":8689,"timestamp":6724136026929,"id":1556,"parentId":1527,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/use-open-in-editor.js","layer":"app-pages-browser"},"startTime":1776331083061,"traceId":"88e4a158817de868"},{"name":"read-resource","duration":21768,"timestamp":6724136014677,"id":1551,"parentId":1550,"tags":{},"startTime":1776331083049,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":23527,"timestamp":6724136014646,"id":1550,"parentId":1403,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react/cjs/react-jsx-dev-runtime.development.js","layer":"app-pages-browser"},"startTime":1776331083049,"traceId":"88e4a158817de868"},{"name":"read-resource","duration":23458,"timestamp":6724136014723,"id":1555,"parentId":1554,"tags":{},"startTime":1776331083049,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":27057,"timestamp":6724136014713,"id":1554,"parentId":1417,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react/cjs/react.development.js","layer":"app-pages-browser"},"startTime":1776331083049,"traceId":"88e4a158817de868"},{"name":"add-entry","duration":687326,"timestamp":6724135355136,"id":887,"parentId":884,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776331082390,"traceId":"88e4a158817de868"},{"name":"read-resource","duration":7326,"timestamp":6724136035958,"id":1567,"parentId":1566,"tags":{},"startTime":1776331083070,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":7468,"timestamp":6724136035930,"id":1566,"parentId":1516,"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":1776331083070,"traceId":"88e4a158817de868"},{"name":"build-module-css","duration":515506,"timestamp":6724135528267,"id":1329,"parentId":1286,"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":1776331082563,"traceId":"88e4a158817de868"},{"name":"read-resource","duration":1655,"timestamp":6724136043223,"id":1571,"parentId":1570,"tags":{},"startTime":1776331083078,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":55,"timestamp":6724136044894,"id":1572,"parentId":1570,"tags":{},"startTime":1776331083079,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":3038,"timestamp":6724136043151,"id":1570,"parentId":1547,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react-refresh/cjs/react-refresh-runtime.development.js","layer":"app-pages-browser"},"startTime":1776331083078,"traceId":"88e4a158817de868"},{"name":"add-entry","duration":691303,"timestamp":6724135355008,"id":885,"parentId":884,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js"},"startTime":1776331082389,"traceId":"88e4a158817de868"},{"name":"read-resource","duration":4423,"timestamp":6724136042365,"id":1569,"parentId":1568,"tags":{},"startTime":1776331083077,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":73667,"timestamp":6724136042344,"id":1568,"parentId":1518,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js","layer":"app-pages-browser"},"startTime":1776331083077,"traceId":"88e4a158817de868"},{"name":"read-resource","duration":2166,"timestamp":6724136116340,"id":1574,"parentId":1573,"tags":{},"startTime":1776331083151,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":4882,"timestamp":6724136116287,"id":1573,"parentId":1566,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react-server-dom-webpack/cjs/react-server-dom-webpack-client.browser.development.js","layer":"app-pages-browser"},"startTime":1776331083151,"traceId":"88e4a158817de868"},{"name":"read-resource","duration":3582,"timestamp":6724136117675,"id":1576,"parentId":1575,"tags":{},"startTime":1776331083152,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":4059,"timestamp":6724136117428,"id":1575,"parentId":1329,"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":1776331083152,"traceId":"88e4a158817de868"},{"name":"build-module-css","duration":632158,"timestamp":6724135495064,"id":1286,"parentId":891,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/globals.css","layer":"app-pages-browser"},"startTime":1776331082529,"traceId":"88e4a158817de868"},{"name":"build-module","duration":56,"timestamp":6724136129359,"id":1577,"parentId":1286,"tags":{},"startTime":1776331083164,"traceId":"88e4a158817de868"},{"name":"add-entry","duration":774350,"timestamp":6724135355185,"id":888,"parentId":884,"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%2Fcomponents%2Fauth-guard.tsx%22%2C%22ids%22%3A%5B%22AuthGuard%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fnav.tsx%22%2C%22ids%22%3A%5B%22SidebarNav%22%2C%22MobileBottomNav%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fuser-menu.tsx%22%2C%22ids%22%3A%5B%22UserMenu%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fhooks%2Fuse-auth.tsx%22%2C%22ids%22%3A%5B%22AuthProvider%22%5D%7D&server=false!"},"startTime":1776331082390,"traceId":"88e4a158817de868"},{"name":"read-resource","duration":523,"timestamp":6724136131061,"id":1579,"parentId":1578,"tags":{},"startTime":1776331083165,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":26,"timestamp":6724136131590,"id":1580,"parentId":1578,"tags":{},"startTime":1776331083166,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":787,"timestamp":6724136130977,"id":1578,"parentId":1568,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/scheduler/index.js","layer":"app-pages-browser"},"startTime":1776331083165,"traceId":"88e4a158817de868"},{"name":"read-resource","duration":670,"timestamp":6724136132634,"id":1582,"parentId":1581,"tags":{},"startTime":1776331083167,"traceId":"88e4a158817de868"},{"name":"next-swc-loader","duration":42,"timestamp":6724136133309,"id":1583,"parentId":1581,"tags":{},"startTime":1776331083168,"traceId":"88e4a158817de868"},{"name":"build-module-js","duration":1665,"timestamp":6724136132566,"id":1581,"parentId":1578,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/scheduler/cjs/scheduler.development.js","layer":"app-pages-browser"},"startTime":1776331083167,"traceId":"88e4a158817de868"},{"name":"add-entry","duration":779187,"timestamp":6724135355119,"id":886,"parentId":884,"tags":{"request":"./node_modules/next/dist/client/app-next-dev.js"},"startTime":1776331082389,"traceId":"88e4a158817de868"},{"name":"add-entry","duration":779114,"timestamp":6724135355196,"id":889,"parentId":884,"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":1776331082390,"traceId":"88e4a158817de868"},{"name":"make","duration":781406,"timestamp":6724135352916,"id":884,"parentId":883,"tags":{},"startTime":1776331082387,"traceId":"88e4a158817de868"},{"name":"chunk-graph","duration":2247,"timestamp":6724136137608,"id":1585,"parentId":1584,"tags":{},"startTime":1776331083172,"traceId":"88e4a158817de868"},{"name":"optimize-modules","duration":3,"timestamp":6724136139871,"id":1587,"parentId":1584,"tags":{},"startTime":1776331083174,"traceId":"88e4a158817de868"},{"name":"optimize-chunks","duration":43,"timestamp":6724136139885,"id":1588,"parentId":1584,"tags":{},"startTime":1776331083174,"traceId":"88e4a158817de868"},{"name":"optimize-tree","duration":4,"timestamp":6724136139938,"id":1589,"parentId":1584,"tags":{},"startTime":1776331083174,"traceId":"88e4a158817de868"},{"name":"optimize-chunk-modules","duration":2,"timestamp":6724136139951,"id":1590,"parentId":1584,"tags":{},"startTime":1776331083174,"traceId":"88e4a158817de868"},{"name":"optimize","duration":751,"timestamp":6724136139865,"id":1586,"parentId":1584,"tags":{},"startTime":1776331083174,"traceId":"88e4a158817de868"},{"name":"module-hash","duration":2963,"timestamp":6724136141937,"id":1591,"parentId":1584,"tags":{},"startTime":1776331083176,"traceId":"88e4a158817de868"},{"name":"code-generation","duration":8912,"timestamp":6724136144908,"id":1592,"parentId":1584,"tags":{},"startTime":1776331083179,"traceId":"88e4a158817de868"},{"name":"hash","duration":7755,"timestamp":6724136155481,"id":1593,"parentId":1584,"tags":{},"startTime":1776331083190,"traceId":"88e4a158817de868"},{"name":"code-generation-jobs","duration":168,"timestamp":6724136163236,"id":1594,"parentId":1584,"tags":{},"startTime":1776331083198,"traceId":"88e4a158817de868"},{"name":"module-assets","duration":38,"timestamp":6724136163392,"id":1595,"parentId":1584,"tags":{},"startTime":1776331083198,"traceId":"88e4a158817de868"},{"name":"create-chunk-assets","duration":75509,"timestamp":6724136163433,"id":1596,"parentId":1584,"tags":{},"startTime":1776331083198,"traceId":"88e4a158817de868"},{"name":"NextJsBuildManifest-generateClientManifest","duration":68,"timestamp":6724136239595,"id":1598,"parentId":883,"tags":{},"startTime":1776331083274,"traceId":"88e4a158817de868"},{"name":"NextJsBuildManifest-createassets","duration":263,"timestamp":6724136239406,"id":1597,"parentId":883,"tags":{},"startTime":1776331083274,"traceId":"88e4a158817de868"},{"name":"seal","duration":104344,"timestamp":6724136136960,"id":1584,"parentId":883,"tags":{},"startTime":1776331083171,"traceId":"88e4a158817de868"},{"name":"webpack-compilation","duration":891011,"timestamp":6724135352666,"id":883,"parentId":258,"tags":{"name":"client"},"startTime":1776331082387,"traceId":"88e4a158817de868"},{"name":"emit","duration":23220,"timestamp":6724136243700,"id":1599,"parentId":258,"tags":{},"startTime":1776331083278,"traceId":"88e4a158817de868"},{"name":"compile-path","duration":1588653,"timestamp":6724134678976,"id":117,"tags":{"trigger":"/","isTurbopack":false},"startTime":1776331081713,"traceId":"88e4a158817de868"},{"name":"webpack-invalidated-client","duration":1365045,"timestamp":6724134902823,"id":258,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776331081937,"traceId":"88e4a158817de868"}] +[{"name":"hot-reloader","duration":25,"timestamp":6725226069284,"id":3,"tags":{"version":"14.2.35","isTurbopack":false},"startTime":1776332173105,"traceId":"bd5433937c2d2119"},{"name":"start","duration":0,"timestamp":6725226069758,"id":4,"parentId":3,"tags":{},"startTime":1776332173105,"traceId":"bd5433937c2d2119"},{"name":"get-version-info","duration":1025050,"timestamp":6725226069866,"id":5,"parentId":4,"tags":{},"startTime":1776332173106,"traceId":"bd5433937c2d2119"},{"name":"clean","duration":109944,"timestamp":6725227094961,"id":6,"parentId":4,"tags":{},"startTime":1776332174131,"traceId":"bd5433937c2d2119"},{"name":"create-pages-mapping","duration":97,"timestamp":6725227205492,"id":8,"parentId":7,"tags":{},"startTime":1776332174241,"traceId":"bd5433937c2d2119"},{"name":"create-entrypoints","duration":204716,"timestamp":6725227205600,"id":9,"parentId":7,"tags":{},"startTime":1776332174241,"traceId":"bd5433937c2d2119"},{"name":"generate-webpack-config","duration":60193,"timestamp":6725227410354,"id":10,"parentId":7,"tags":{},"startTime":1776332174446,"traceId":"bd5433937c2d2119"},{"name":"get-webpack-config","duration":265107,"timestamp":6725227205450,"id":7,"parentId":4,"tags":{},"startTime":1776332174241,"traceId":"bd5433937c2d2119"},{"name":"make","duration":514,"timestamp":6725227508523,"id":12,"parentId":11,"tags":{},"startTime":1776332174544,"traceId":"bd5433937c2d2119"},{"name":"chunk-graph","duration":320,"timestamp":6725227510187,"id":14,"parentId":13,"tags":{},"startTime":1776332174546,"traceId":"bd5433937c2d2119"},{"name":"optimize-modules","duration":10,"timestamp":6725227510553,"id":16,"parentId":13,"tags":{},"startTime":1776332174546,"traceId":"bd5433937c2d2119"},{"name":"optimize-chunks","duration":59,"timestamp":6725227510645,"id":17,"parentId":13,"tags":{},"startTime":1776332174546,"traceId":"bd5433937c2d2119"},{"name":"optimize-tree","duration":11,"timestamp":6725227510730,"id":18,"parentId":13,"tags":{},"startTime":1776332174546,"traceId":"bd5433937c2d2119"},{"name":"optimize-chunk-modules","duration":9,"timestamp":6725227510814,"id":19,"parentId":13,"tags":{},"startTime":1776332174546,"traceId":"bd5433937c2d2119"},{"name":"optimize","duration":332,"timestamp":6725227510535,"id":15,"parentId":13,"tags":{},"startTime":1776332174546,"traceId":"bd5433937c2d2119"},{"name":"module-hash","duration":43,"timestamp":6725227511146,"id":20,"parentId":13,"tags":{},"startTime":1776332174547,"traceId":"bd5433937c2d2119"},{"name":"code-generation","duration":76,"timestamp":6725227511198,"id":21,"parentId":13,"tags":{},"startTime":1776332174547,"traceId":"bd5433937c2d2119"},{"name":"hash","duration":195,"timestamp":6725227511393,"id":22,"parentId":13,"tags":{},"startTime":1776332174547,"traceId":"bd5433937c2d2119"},{"name":"code-generation-jobs","duration":26,"timestamp":6725227511587,"id":23,"parentId":13,"tags":{},"startTime":1776332174547,"traceId":"bd5433937c2d2119"},{"name":"module-assets","duration":32,"timestamp":6725227511602,"id":24,"parentId":13,"tags":{},"startTime":1776332174547,"traceId":"bd5433937c2d2119"},{"name":"create-chunk-assets","duration":116,"timestamp":6725227511638,"id":25,"parentId":13,"tags":{},"startTime":1776332174547,"traceId":"bd5433937c2d2119"},{"name":"NextJsBuildManifest-generateClientManifest","duration":667,"timestamp":6725227539486,"id":27,"parentId":11,"tags":{},"startTime":1776332174575,"traceId":"bd5433937c2d2119"},{"name":"NextJsBuildManifest-createassets","duration":891,"timestamp":6725227539271,"id":26,"parentId":11,"tags":{},"startTime":1776332174575,"traceId":"bd5433937c2d2119"},{"name":"seal","duration":30598,"timestamp":6725227510097,"id":13,"parentId":11,"tags":{},"startTime":1776332174546,"traceId":"bd5433937c2d2119"},{"name":"webpack-compilation","duration":33936,"timestamp":6725227506879,"id":11,"parentId":3,"tags":{"name":"client"},"startTime":1776332174543,"traceId":"bd5433937c2d2119"},{"name":"emit","duration":3284,"timestamp":6725227541005,"id":28,"parentId":3,"tags":{},"startTime":1776332174577,"traceId":"bd5433937c2d2119"},{"name":"make","duration":852,"timestamp":6725227548972,"id":30,"parentId":29,"tags":{},"startTime":1776332174585,"traceId":"bd5433937c2d2119"},{"name":"chunk-graph","duration":15,"timestamp":6725227550057,"id":32,"parentId":31,"tags":{},"startTime":1776332174586,"traceId":"bd5433937c2d2119"},{"name":"optimize-modules","duration":3,"timestamp":6725227550084,"id":34,"parentId":31,"tags":{},"startTime":1776332174586,"traceId":"bd5433937c2d2119"},{"name":"optimize-chunks","duration":38,"timestamp":6725227550117,"id":35,"parentId":31,"tags":{},"startTime":1776332174586,"traceId":"bd5433937c2d2119"},{"name":"optimize-tree","duration":4,"timestamp":6725227550173,"id":36,"parentId":31,"tags":{},"startTime":1776332174586,"traceId":"bd5433937c2d2119"},{"name":"optimize-chunk-modules","duration":30,"timestamp":6725227550198,"id":37,"parentId":31,"tags":{},"startTime":1776332174586,"traceId":"bd5433937c2d2119"},{"name":"optimize","duration":175,"timestamp":6725227550080,"id":33,"parentId":31,"tags":{},"startTime":1776332174586,"traceId":"bd5433937c2d2119"},{"name":"module-hash","duration":4,"timestamp":6725227550319,"id":38,"parentId":31,"tags":{},"startTime":1776332174586,"traceId":"bd5433937c2d2119"},{"name":"code-generation","duration":4,"timestamp":6725227550329,"id":39,"parentId":31,"tags":{},"startTime":1776332174586,"traceId":"bd5433937c2d2119"},{"name":"hash","duration":34,"timestamp":6725227550371,"id":40,"parentId":31,"tags":{},"startTime":1776332174586,"traceId":"bd5433937c2d2119"},{"name":"code-generation-jobs","duration":20,"timestamp":6725227550405,"id":41,"parentId":31,"tags":{},"startTime":1776332174586,"traceId":"bd5433937c2d2119"},{"name":"module-assets","duration":6,"timestamp":6725227550422,"id":42,"parentId":31,"tags":{},"startTime":1776332174586,"traceId":"bd5433937c2d2119"},{"name":"create-chunk-assets","duration":7,"timestamp":6725227550432,"id":43,"parentId":31,"tags":{},"startTime":1776332174586,"traceId":"bd5433937c2d2119"},{"name":"seal","duration":858,"timestamp":6725227550007,"id":31,"parentId":29,"tags":{},"startTime":1776332174586,"traceId":"bd5433937c2d2119"},{"name":"webpack-compilation","duration":2682,"timestamp":6725227548254,"id":29,"parentId":3,"tags":{"name":"server"},"startTime":1776332174584,"traceId":"bd5433937c2d2119"},{"name":"emit","duration":3260,"timestamp":6725227550968,"id":44,"parentId":3,"tags":{},"startTime":1776332174587,"traceId":"bd5433937c2d2119"},{"name":"make","duration":97,"timestamp":6725227556808,"id":46,"parentId":45,"tags":{},"startTime":1776332174592,"traceId":"bd5433937c2d2119"},{"name":"chunk-graph","duration":12,"timestamp":6725227557164,"id":48,"parentId":47,"tags":{},"startTime":1776332174593,"traceId":"bd5433937c2d2119"},{"name":"optimize-modules","duration":2,"timestamp":6725227557185,"id":50,"parentId":47,"tags":{},"startTime":1776332174593,"traceId":"bd5433937c2d2119"},{"name":"optimize-chunks","duration":5,"timestamp":6725227557213,"id":51,"parentId":47,"tags":{},"startTime":1776332174593,"traceId":"bd5433937c2d2119"},{"name":"optimize-tree","duration":3,"timestamp":6725227557225,"id":52,"parentId":47,"tags":{},"startTime":1776332174593,"traceId":"bd5433937c2d2119"},{"name":"optimize-chunk-modules","duration":2,"timestamp":6725227557239,"id":53,"parentId":47,"tags":{},"startTime":1776332174593,"traceId":"bd5433937c2d2119"},{"name":"optimize","duration":68,"timestamp":6725227557182,"id":49,"parentId":47,"tags":{},"startTime":1776332174593,"traceId":"bd5433937c2d2119"},{"name":"module-hash","duration":4,"timestamp":6725227557296,"id":54,"parentId":47,"tags":{},"startTime":1776332174593,"traceId":"bd5433937c2d2119"},{"name":"code-generation","duration":3,"timestamp":6725227557304,"id":55,"parentId":47,"tags":{},"startTime":1776332174593,"traceId":"bd5433937c2d2119"},{"name":"hash","duration":46,"timestamp":6725227557330,"id":56,"parentId":47,"tags":{},"startTime":1776332174593,"traceId":"bd5433937c2d2119"},{"name":"code-generation-jobs","duration":9,"timestamp":6725227557376,"id":57,"parentId":47,"tags":{},"startTime":1776332174593,"traceId":"bd5433937c2d2119"},{"name":"module-assets","duration":4,"timestamp":6725227557382,"id":58,"parentId":47,"tags":{},"startTime":1776332174593,"traceId":"bd5433937c2d2119"},{"name":"create-chunk-assets","duration":6,"timestamp":6725227557388,"id":59,"parentId":47,"tags":{},"startTime":1776332174593,"traceId":"bd5433937c2d2119"},{"name":"seal","duration":524,"timestamp":6725227557148,"id":47,"parentId":45,"tags":{},"startTime":1776332174593,"traceId":"bd5433937c2d2119"},{"name":"webpack-compilation","duration":1754,"timestamp":6725227555942,"id":45,"parentId":3,"tags":{"name":"edge-server"},"startTime":1776332174592,"traceId":"bd5433937c2d2119"},{"name":"emit","duration":574,"timestamp":6725227557712,"id":60,"parentId":3,"tags":{},"startTime":1776332174593,"traceId":"bd5433937c2d2119"}] +[{"name":"make","duration":218,"timestamp":6725227777022,"id":65,"parentId":64,"tags":{},"startTime":1776332174813,"traceId":"bd5433937c2d2119"},{"name":"chunk-graph","duration":18,"timestamp":6725227777369,"id":67,"parentId":66,"tags":{},"startTime":1776332174813,"traceId":"bd5433937c2d2119"},{"name":"optimize-modules","duration":3,"timestamp":6725227777398,"id":69,"parentId":66,"tags":{},"startTime":1776332174813,"traceId":"bd5433937c2d2119"},{"name":"optimize-chunks","duration":7,"timestamp":6725227777411,"id":70,"parentId":66,"tags":{},"startTime":1776332174813,"traceId":"bd5433937c2d2119"},{"name":"optimize-tree","duration":3,"timestamp":6725227777426,"id":71,"parentId":66,"tags":{},"startTime":1776332174813,"traceId":"bd5433937c2d2119"},{"name":"optimize-chunk-modules","duration":3,"timestamp":6725227777440,"id":72,"parentId":66,"tags":{},"startTime":1776332174813,"traceId":"bd5433937c2d2119"},{"name":"optimize","duration":67,"timestamp":6725227777394,"id":68,"parentId":66,"tags":{},"startTime":1776332174813,"traceId":"bd5433937c2d2119"},{"name":"module-hash","duration":5,"timestamp":6725227777526,"id":73,"parentId":66,"tags":{},"startTime":1776332174813,"traceId":"bd5433937c2d2119"},{"name":"code-generation","duration":5,"timestamp":6725227777536,"id":74,"parentId":66,"tags":{},"startTime":1776332174813,"traceId":"bd5433937c2d2119"},{"name":"hash","duration":35,"timestamp":6725227777561,"id":75,"parentId":66,"tags":{},"startTime":1776332174813,"traceId":"bd5433937c2d2119"},{"name":"code-generation-jobs","duration":11,"timestamp":6725227777596,"id":76,"parentId":66,"tags":{},"startTime":1776332174813,"traceId":"bd5433937c2d2119"},{"name":"module-assets","duration":5,"timestamp":6725227777604,"id":77,"parentId":66,"tags":{},"startTime":1776332174813,"traceId":"bd5433937c2d2119"},{"name":"create-chunk-assets","duration":9,"timestamp":6725227777612,"id":78,"parentId":66,"tags":{},"startTime":1776332174813,"traceId":"bd5433937c2d2119"},{"name":"NextJsBuildManifest-generateClientManifest","duration":259,"timestamp":6725227777894,"id":80,"parentId":64,"tags":{},"startTime":1776332174814,"traceId":"bd5433937c2d2119"},{"name":"NextJsBuildManifest-createassets","duration":294,"timestamp":6725227777861,"id":79,"parentId":64,"tags":{},"startTime":1776332174814,"traceId":"bd5433937c2d2119"},{"name":"seal","duration":910,"timestamp":6725227777347,"id":66,"parentId":64,"tags":{},"startTime":1776332174813,"traceId":"bd5433937c2d2119"},{"name":"webpack-compilation","duration":1891,"timestamp":6725227776386,"id":64,"parentId":61,"tags":{"name":"client"},"startTime":1776332174812,"traceId":"bd5433937c2d2119"},{"name":"setup-dev-bundler","duration":1848661,"timestamp":6725225955473,"id":2,"parentId":1,"tags":{},"startTime":1776332172991,"traceId":"bd5433937c2d2119"},{"name":"run-instrumentation-hook","duration":23,"timestamp":6725227822454,"id":82,"parentId":1,"tags":{},"startTime":1776332174858,"traceId":"bd5433937c2d2119"},{"name":"emit","duration":44535,"timestamp":6725227778293,"id":81,"parentId":61,"tags":{},"startTime":1776332174814,"traceId":"bd5433937c2d2119"},{"name":"webpack-invalidated-client","duration":51292,"timestamp":6725227772074,"id":61,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776332174808,"traceId":"bd5433937c2d2119"},{"name":"make","duration":248,"timestamp":6725227824890,"id":84,"parentId":83,"tags":{},"startTime":1776332174861,"traceId":"bd5433937c2d2119"},{"name":"chunk-graph","duration":23,"timestamp":6725227825250,"id":86,"parentId":85,"tags":{},"startTime":1776332174861,"traceId":"bd5433937c2d2119"},{"name":"optimize-modules","duration":4,"timestamp":6725227825282,"id":88,"parentId":85,"tags":{},"startTime":1776332174861,"traceId":"bd5433937c2d2119"},{"name":"optimize-chunks","duration":89,"timestamp":6725227825322,"id":89,"parentId":85,"tags":{},"startTime":1776332174861,"traceId":"bd5433937c2d2119"},{"name":"optimize-tree","duration":3,"timestamp":6725227825419,"id":90,"parentId":85,"tags":{},"startTime":1776332174861,"traceId":"bd5433937c2d2119"},{"name":"optimize-chunk-modules","duration":2,"timestamp":6725227825437,"id":91,"parentId":85,"tags":{},"startTime":1776332174861,"traceId":"bd5433937c2d2119"},{"name":"optimize","duration":173,"timestamp":6725227825279,"id":87,"parentId":85,"tags":{},"startTime":1776332174861,"traceId":"bd5433937c2d2119"},{"name":"module-hash","duration":4,"timestamp":6725227825585,"id":92,"parentId":85,"tags":{},"startTime":1776332174861,"traceId":"bd5433937c2d2119"},{"name":"code-generation","duration":4,"timestamp":6725227825593,"id":93,"parentId":85,"tags":{},"startTime":1776332174861,"traceId":"bd5433937c2d2119"},{"name":"hash","duration":33,"timestamp":6725227825614,"id":94,"parentId":85,"tags":{},"startTime":1776332174861,"traceId":"bd5433937c2d2119"},{"name":"code-generation-jobs","duration":9,"timestamp":6725227825648,"id":95,"parentId":85,"tags":{},"startTime":1776332174861,"traceId":"bd5433937c2d2119"},{"name":"module-assets","duration":4,"timestamp":6725227825654,"id":96,"parentId":85,"tags":{},"startTime":1776332174861,"traceId":"bd5433937c2d2119"},{"name":"create-chunk-assets","duration":9,"timestamp":6725227825660,"id":97,"parentId":85,"tags":{},"startTime":1776332174861,"traceId":"bd5433937c2d2119"},{"name":"seal","duration":617,"timestamp":6725227825230,"id":85,"parentId":83,"tags":{},"startTime":1776332174861,"traceId":"bd5433937c2d2119"},{"name":"webpack-compilation","duration":1458,"timestamp":6725227824410,"id":83,"parentId":62,"tags":{"name":"server"},"startTime":1776332174860,"traceId":"bd5433937c2d2119"},{"name":"start-dev-server","duration":2111178,"timestamp":6725225719901,"id":1,"tags":{"cpus":"10","platform":"darwin","memory.freeMem":"93011968","memory.totalMem":"17179869184","memory.heapSizeLimit":"8640266240","isTurbopack":false,"memory.rss":"229244928","memory.heapTotal":"105168896","memory.heapUsed":"80557216"},"startTime":1776332172756,"traceId":"bd5433937c2d2119"},{"name":"emit","duration":7267,"timestamp":6725227825881,"id":98,"parentId":62,"tags":{},"startTime":1776332174862,"traceId":"bd5433937c2d2119"},{"name":"webpack-invalidated-server","duration":61246,"timestamp":6725227772217,"id":62,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776332174808,"traceId":"bd5433937c2d2119"},{"name":"make","duration":290,"timestamp":6725227834794,"id":100,"parentId":99,"tags":{},"startTime":1776332174870,"traceId":"bd5433937c2d2119"},{"name":"chunk-graph","duration":15,"timestamp":6725227835229,"id":102,"parentId":101,"tags":{},"startTime":1776332174871,"traceId":"bd5433937c2d2119"},{"name":"optimize-modules","duration":2,"timestamp":6725227835253,"id":104,"parentId":101,"tags":{},"startTime":1776332174871,"traceId":"bd5433937c2d2119"},{"name":"optimize-chunks","duration":5,"timestamp":6725227835264,"id":105,"parentId":101,"tags":{},"startTime":1776332174871,"traceId":"bd5433937c2d2119"},{"name":"optimize-tree","duration":2,"timestamp":6725227835275,"id":106,"parentId":101,"tags":{},"startTime":1776332174871,"traceId":"bd5433937c2d2119"},{"name":"optimize-chunk-modules","duration":2,"timestamp":6725227835287,"id":107,"parentId":101,"tags":{},"startTime":1776332174871,"traceId":"bd5433937c2d2119"},{"name":"optimize","duration":53,"timestamp":6725227835250,"id":103,"parentId":101,"tags":{},"startTime":1776332174871,"traceId":"bd5433937c2d2119"},{"name":"module-hash","duration":4,"timestamp":6725227835356,"id":108,"parentId":101,"tags":{},"startTime":1776332174871,"traceId":"bd5433937c2d2119"},{"name":"code-generation","duration":3,"timestamp":6725227835363,"id":109,"parentId":101,"tags":{},"startTime":1776332174871,"traceId":"bd5433937c2d2119"},{"name":"hash","duration":25,"timestamp":6725227835390,"id":110,"parentId":101,"tags":{},"startTime":1776332174871,"traceId":"bd5433937c2d2119"},{"name":"code-generation-jobs","duration":7,"timestamp":6725227835415,"id":111,"parentId":101,"tags":{},"startTime":1776332174871,"traceId":"bd5433937c2d2119"},{"name":"module-assets","duration":3,"timestamp":6725227835420,"id":112,"parentId":101,"tags":{},"startTime":1776332174871,"traceId":"bd5433937c2d2119"},{"name":"create-chunk-assets","duration":8,"timestamp":6725227835426,"id":113,"parentId":101,"tags":{},"startTime":1776332174871,"traceId":"bd5433937c2d2119"},{"name":"seal","duration":419,"timestamp":6725227835214,"id":101,"parentId":99,"tags":{},"startTime":1776332174871,"traceId":"bd5433937c2d2119"},{"name":"webpack-compilation","duration":1260,"timestamp":6725227834386,"id":99,"parentId":63,"tags":{"name":"edge-server"},"startTime":1776332174870,"traceId":"bd5433937c2d2119"},{"name":"emit","duration":2247,"timestamp":6725227835656,"id":114,"parentId":63,"tags":{},"startTime":1776332174871,"traceId":"bd5433937c2d2119"},{"name":"webpack-invalidated-edge-server","duration":66068,"timestamp":6725227772240,"id":63,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776332174808,"traceId":"bd5433937c2d2119"}] +[{"name":"build-module","duration":47743,"timestamp":6725238985540,"id":121,"parentId":120,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-app-loader.js?name=app%2Frecommendations%2Fpage&page=%2Frecommendations%2Fpage&appPaths=%2Frecommendations%2Fpage&pagePath=private-next-app-dir%2Frecommendations%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!","layer":"rsc"},"startTime":1776332186021,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":5841,"timestamp":6725239044191,"id":137,"parentId":136,"tags":{},"startTime":1776332186080,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":5899,"timestamp":6725239044145,"id":136,"parentId":127,"tags":{},"startTime":1776332186080,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":8775,"timestamp":6725239043324,"id":127,"parentId":121,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/error-boundary.js","layer":"rsc"},"startTime":1776332186079,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":7997,"timestamp":6725239044143,"id":135,"parentId":134,"tags":{},"startTime":1776332186080,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":8101,"timestamp":6725239044040,"id":134,"parentId":123,"tags":{},"startTime":1776332186080,"traceId":"bd5433937c2d2119"},{"name":"build-module-tsx","duration":10389,"timestamp":6725239042584,"id":123,"parentId":121,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/recommendations/page.tsx","layer":"rsc"},"startTime":1776332186078,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":10711,"timestamp":6725239044229,"id":139,"parentId":138,"tags":{},"startTime":1776332186080,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":10750,"timestamp":6725239044193,"id":138,"parentId":128,"tags":{},"startTime":1776332186080,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":14819,"timestamp":6725239043370,"id":128,"parentId":121,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/not-found-error.js","layer":"rsc"},"startTime":1776332186079,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":14221,"timestamp":6725239044017,"id":133,"parentId":132,"tags":{},"startTime":1776332186080,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":14681,"timestamp":6725239043558,"id":132,"parentId":122,"tags":{},"startTime":1776332186079,"traceId":"bd5433937c2d2119"},{"name":"build-module-tsx","duration":19506,"timestamp":6725239041159,"id":122,"parentId":121,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/layout.tsx","layer":"rsc"},"startTime":1776332186077,"traceId":"bd5433937c2d2119"},{"name":"read-resource","duration":19174,"timestamp":6725239043527,"id":129,"parentId":124,"tags":{},"startTime":1776332186079,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":87,"timestamp":6725239062735,"id":140,"parentId":124,"tags":{},"startTime":1776332186098,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":20751,"timestamp":6725239042722,"id":124,"parentId":121,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/route-kind.js","layer":"rsc"},"startTime":1776332186078,"traceId":"bd5433937c2d2119"},{"name":"read-resource","duration":19938,"timestamp":6725239043547,"id":130,"parentId":125,"tags":{},"startTime":1776332186079,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":76,"timestamp":6725239063496,"id":141,"parentId":125,"tags":{},"startTime":1776332186099,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":23192,"timestamp":6725239043070,"id":125,"parentId":121,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/app-render/entry-base.js","layer":"rsc"},"startTime":1776332186079,"traceId":"bd5433937c2d2119"},{"name":"read-resource","duration":22758,"timestamp":6725239043554,"id":131,"parentId":126,"tags":{},"startTime":1776332186079,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":43,"timestamp":6725239066323,"id":142,"parentId":126,"tags":{},"startTime":1776332186102,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":24217,"timestamp":6725239043239,"id":126,"parentId":121,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/route-modules/app-page/module.compiled.js","layer":"ssr"},"startTime":1776332186079,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":345,"timestamp":6725239072485,"id":143,"parentId":126,"tags":{"name":"next/dist/compiled/next-server/app-page.runtime.dev.js","layer":null},"startTime":1776332186108,"traceId":"bd5433937c2d2119"},{"name":"build-module-external","duration":26,"timestamp":6725239075646,"id":147,"parentId":125,"tags":{"name":"../../client/components/request-async-storage.external","layer":null},"startTime":1776332186111,"traceId":"bd5433937c2d2119"},{"name":"build-module-external","duration":8,"timestamp":6725239075814,"id":151,"parentId":125,"tags":{"name":"../../client/components/static-generation-async-storage.external","layer":null},"startTime":1776332186111,"traceId":"bd5433937c2d2119"},{"name":"build-module-external","duration":4,"timestamp":6725239075827,"id":152,"parentId":125,"tags":{"name":"../../client/components/action-async-storage.external","layer":null},"startTime":1776332186111,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":4565,"timestamp":6725239076179,"id":161,"parentId":160,"tags":{},"startTime":1776332186112,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":4633,"timestamp":6725239076116,"id":160,"parentId":148,"tags":{},"startTime":1776332186112,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":5794,"timestamp":6725239075688,"id":148,"parentId":125,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/client-page.js","layer":"rsc"},"startTime":1776332186111,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":5601,"timestamp":6725239076113,"id":159,"parentId":158,"tags":{},"startTime":1776332186112,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":5635,"timestamp":6725239076082,"id":158,"parentId":146,"tags":{},"startTime":1776332186112,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":6464,"timestamp":6725239075577,"id":146,"parentId":125,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/render-from-template-context.js","layer":"rsc"},"startTime":1776332186111,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":5978,"timestamp":6725239076078,"id":157,"parentId":156,"tags":{},"startTime":1776332186112,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":6021,"timestamp":6725239076036,"id":156,"parentId":145,"tags":{},"startTime":1776332186112,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":6834,"timestamp":6725239075439,"id":145,"parentId":125,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/layout-router.js","layer":"rsc"},"startTime":1776332186111,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":6253,"timestamp":6725239076031,"id":155,"parentId":154,"tags":{},"startTime":1776332186112,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":6396,"timestamp":6725239075887,"id":154,"parentId":144,"tags":{},"startTime":1776332186112,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":7241,"timestamp":6725239075177,"id":144,"parentId":125,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/app-router.js","layer":"rsc"},"startTime":1776332186111,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":7273,"timestamp":6725239076424,"id":163,"parentId":162,"tags":{},"startTime":1776332186112,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":7427,"timestamp":6725239076275,"id":162,"parentId":149,"tags":{},"startTime":1776332186112,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":9241,"timestamp":6725239075745,"id":149,"parentId":125,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/search-params.js","layer":"rsc"},"startTime":1776332186111,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":8533,"timestamp":6725239076475,"id":165,"parentId":164,"tags":{},"startTime":1776332186112,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":8580,"timestamp":6725239076428,"id":164,"parentId":150,"tags":{},"startTime":1776332186112,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":9421,"timestamp":6725239075784,"id":150,"parentId":125,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/not-found-boundary.js","layer":"rsc"},"startTime":1776332186111,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":9713,"timestamp":6725239076503,"id":167,"parentId":166,"tags":{},"startTime":1776332186112,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":9739,"timestamp":6725239076479,"id":166,"parentId":153,"tags":{},"startTime":1776332186112,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":11664,"timestamp":6725239075834,"id":153,"parentId":125,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/hooks-server-context.js","layer":"rsc"},"startTime":1776332186112,"traceId":"bd5433937c2d2119"},{"name":"read-resource","duration":11505,"timestamp":6725239080497,"id":169,"parentId":168,"tags":{},"startTime":1776332186116,"traceId":"bd5433937c2d2119"},{"name":"build-module-css","duration":13358,"timestamp":6725239078990,"id":168,"parentId":122,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/globals.css","layer":"rsc"},"startTime":1776332186115,"traceId":"bd5433937c2d2119"},{"name":"read-resource","duration":7741,"timestamp":6725239085947,"id":174,"parentId":170,"tags":{},"startTime":1776332186122,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":97,"timestamp":6725239093698,"id":178,"parentId":170,"tags":{},"startTime":1776332186129,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":25591,"timestamp":6725239085538,"id":170,"parentId":125,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/lib/patch-fetch.js","layer":"rsc"},"startTime":1776332186121,"traceId":"bd5433937c2d2119"},{"name":"read-resource","duration":25258,"timestamp":6725239085962,"id":175,"parentId":171,"tags":{},"startTime":1776332186122,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":52,"timestamp":6725239111231,"id":179,"parentId":171,"tags":{},"startTime":1776332186147,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":26127,"timestamp":6725239085657,"id":171,"parentId":125,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/app-render/rsc/preloads.js","layer":"rsc"},"startTime":1776332186121,"traceId":"bd5433937c2d2119"},{"name":"read-resource","duration":25824,"timestamp":6725239085969,"id":176,"parentId":172,"tags":{},"startTime":1776332186122,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":38,"timestamp":6725239111804,"id":180,"parentId":172,"tags":{},"startTime":1776332186147,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":26276,"timestamp":6725239085732,"id":172,"parentId":125,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/app-render/rsc/postpone.js","layer":"rsc"},"startTime":1776332186121,"traceId":"bd5433937c2d2119"},{"name":"read-resource","duration":26041,"timestamp":6725239085973,"id":177,"parentId":173,"tags":{},"startTime":1776332186122,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":38,"timestamp":6725239112020,"id":181,"parentId":173,"tags":{},"startTime":1776332186148,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":27045,"timestamp":6725239085787,"id":173,"parentId":125,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/app-render/rsc/taint.js","layer":"rsc"},"startTime":1776332186121,"traceId":"bd5433937c2d2119"},{"name":"read-resource","duration":4172,"timestamp":6725239116252,"id":183,"parentId":182,"tags":{},"startTime":1776332186152,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":93,"timestamp":6725239120434,"id":190,"parentId":182,"tags":{},"startTime":1776332186156,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":5996,"timestamp":6725239116126,"id":182,"parentId":149,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/app-render/dynamic-rendering.js","layer":"rsc"},"startTime":1776332186152,"traceId":"bd5433937c2d2119"},{"name":"read-resource","duration":5480,"timestamp":6725239118595,"id":189,"parentId":186,"tags":{},"startTime":1776332186154,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":30,"timestamp":6725239124087,"id":201,"parentId":186,"tags":{},"startTime":1776332186160,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":5961,"timestamp":6725239118512,"id":186,"parentId":170,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/lib/clone-response.js","layer":"rsc"},"startTime":1776332186154,"traceId":"bd5433937c2d2119"},{"name":"read-resource","duration":5895,"timestamp":6725239118587,"id":188,"parentId":185,"tags":{},"startTime":1776332186154,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":34,"timestamp":6725239124487,"id":202,"parentId":185,"tags":{},"startTime":1776332186160,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":7236,"timestamp":6725239118452,"id":185,"parentId":170,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/lib/dedupe-fetch.js","layer":"rsc"},"startTime":1776332186154,"traceId":"bd5433937c2d2119"},{"name":"read-resource","duration":7140,"timestamp":6725239118571,"id":187,"parentId":184,"tags":{},"startTime":1776332186154,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":34,"timestamp":6725239125718,"id":203,"parentId":184,"tags":{},"startTime":1776332186161,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":7609,"timestamp":6725239118341,"id":184,"parentId":127,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-loader/module-proxy.js","layer":"rsc"},"startTime":1776332186154,"traceId":"bd5433937c2d2119"},{"name":"read-resource","duration":6646,"timestamp":6725239122733,"id":197,"parentId":192,"tags":{},"startTime":1776332186158,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":41,"timestamp":6725239129389,"id":208,"parentId":192,"tags":{},"startTime":1776332186165,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":8793,"timestamp":6725239122504,"id":192,"parentId":170,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/lib/trace/constants.js","layer":"rsc"},"startTime":1776332186158,"traceId":"bd5433937c2d2119"},{"name":"read-resource","duration":8560,"timestamp":6725239122750,"id":200,"parentId":195,"tags":{},"startTime":1776332186158,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":107,"timestamp":6725239131318,"id":209,"parentId":195,"tags":{},"startTime":1776332186167,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":9716,"timestamp":6725239122657,"id":195,"parentId":170,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/output/log.js","layer":"rsc"},"startTime":1776332186158,"traceId":"bd5433937c2d2119"},{"name":"read-resource","duration":9669,"timestamp":6725239122719,"id":196,"parentId":191,"tags":{},"startTime":1776332186158,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":33,"timestamp":6725239132395,"id":210,"parentId":191,"tags":{},"startTime":1776332186168,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":10302,"timestamp":6725239122403,"id":191,"parentId":149,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/web/spec-extension/adapters/reflect.js","layer":"rsc"},"startTime":1776332186158,"traceId":"bd5433937c2d2119"},{"name":"read-resource","duration":9972,"timestamp":6725239122740,"id":198,"parentId":193,"tags":{},"startTime":1776332186158,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":34,"timestamp":6725239132717,"id":211,"parentId":193,"tags":{},"startTime":1776332186168,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":12378,"timestamp":6725239122561,"id":193,"parentId":170,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/lib/trace/tracer.js","layer":"rsc"},"startTime":1776332186158,"traceId":"bd5433937c2d2119"},{"name":"read-resource","duration":12202,"timestamp":6725239122745,"id":199,"parentId":194,"tags":{},"startTime":1776332186158,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":55,"timestamp":6725239134951,"id":212,"parentId":194,"tags":{},"startTime":1776332186171,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":13387,"timestamp":6725239122610,"id":194,"parentId":170,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/constants.js","layer":"rsc"},"startTime":1776332186158,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":2539,"timestamp":6725239137629,"id":219,"parentId":218,"tags":{},"startTime":1776332186173,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":2580,"timestamp":6725239137598,"id":218,"parentId":215,"tags":{},"startTime":1776332186173,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":3350,"timestamp":6725239137411,"id":215,"parentId":182,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/static-generation-bailout.js","layer":"rsc"},"startTime":1776332186173,"traceId":"bd5433937c2d2119"},{"name":"read-resource","duration":14015,"timestamp":6725239128341,"id":206,"parentId":204,"tags":{},"startTime":1776332186164,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":32,"timestamp":6725239142362,"id":230,"parentId":204,"tags":{},"startTime":1776332186178,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":14340,"timestamp":6725239128180,"id":204,"parentId":125,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/route-modules/app-page/vendored/rsc/react-server-dom-webpack-server-edge.js","layer":"rsc"},"startTime":1776332186164,"traceId":"bd5433937c2d2119"},{"name":"read-resource","duration":14177,"timestamp":6725239128350,"id":207,"parentId":205,"tags":{},"startTime":1776332186164,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":29,"timestamp":6725239142530,"id":231,"parentId":205,"tags":{},"startTime":1776332186178,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":14467,"timestamp":6725239128277,"id":205,"parentId":128,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/route-modules/app-page/vendored/rsc/react-jsx-runtime.js","layer":"rsc"},"startTime":1776332186164,"traceId":"bd5433937c2d2119"},{"name":"read-resource","duration":5352,"timestamp":6725239137544,"id":216,"parentId":213,"tags":{},"startTime":1776332186173,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":29,"timestamp":6725239142900,"id":232,"parentId":213,"tags":{},"startTime":1776332186179,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":5746,"timestamp":6725239137257,"id":213,"parentId":128,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/route-modules/app-page/vendored/rsc/react.js","layer":"rsc"},"startTime":1776332186173,"traceId":"bd5433937c2d2119"},{"name":"read-resource","duration":5451,"timestamp":6725239137557,"id":217,"parentId":214,"tags":{},"startTime":1776332186173,"traceId":"bd5433937c2d2119"}] +[{"name":"next-swc-loader","duration":26,"timestamp":6725239143113,"id":233,"parentId":214,"tags":{},"startTime":1776332186179,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":6365,"timestamp":6725239137359,"id":214,"parentId":182,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/url.js","layer":"rsc"},"startTime":1776332186173,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":2940,"timestamp":6725239142307,"id":229,"parentId":228,"tags":{},"startTime":1776332186178,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":2975,"timestamp":6725239142273,"id":228,"parentId":225,"tags":{},"startTime":1776332186178,"traceId":"bd5433937c2d2119"},{"name":"build-module-tsx","duration":3361,"timestamp":6725239142121,"id":225,"parentId":122,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/auth-guard.tsx","layer":"rsc"},"startTime":1776332186178,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":3219,"timestamp":6725239142271,"id":227,"parentId":226,"tags":{},"startTime":1776332186178,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":3273,"timestamp":6725239142218,"id":226,"parentId":224,"tags":{},"startTime":1776332186178,"traceId":"bd5433937c2d2119"},{"name":"build-module-tsx","duration":3648,"timestamp":6725239142037,"id":224,"parentId":122,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/hooks/use-auth.tsx","layer":"rsc"},"startTime":1776332186178,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":1386,"timestamp":6725239144321,"id":239,"parentId":238,"tags":{},"startTime":1776332186180,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":1425,"timestamp":6725239144283,"id":238,"parentId":234,"tags":{},"startTime":1776332186180,"traceId":"bd5433937c2d2119"},{"name":"build-module-tsx","duration":1712,"timestamp":6725239144094,"id":234,"parentId":122,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/user-menu.tsx","layer":"rsc"},"startTime":1776332186180,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":2368,"timestamp":6725239144353,"id":241,"parentId":240,"tags":{},"startTime":1776332186180,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":2404,"timestamp":6725239144323,"id":240,"parentId":235,"tags":{},"startTime":1776332186180,"traceId":"bd5433937c2d2119"},{"name":"build-module-tsx","duration":2888,"timestamp":6725239144162,"id":235,"parentId":122,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/nav.tsx","layer":"rsc"},"startTime":1776332186180,"traceId":"bd5433937c2d2119"},{"name":"read-resource","duration":5563,"timestamp":6725239141506,"id":223,"parentId":221,"tags":{},"startTime":1776332186177,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":35,"timestamp":6725239147076,"id":242,"parentId":221,"tags":{},"startTime":1776332186183,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":5845,"timestamp":6725239141434,"id":221,"parentId":122,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/route-modules/app-page/vendored/rsc/react-jsx-dev-runtime.js","layer":"rsc"},"startTime":1776332186177,"traceId":"bd5433937c2d2119"},{"name":"read-resource","duration":5794,"timestamp":6725239141496,"id":222,"parentId":220,"tags":{},"startTime":1776332186177,"traceId":"bd5433937c2d2119"},{"name":"read-resource","duration":3775,"timestamp":6725239144263,"id":237,"parentId":236,"tags":{},"startTime":1776332186180,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":39,"timestamp":6725239148049,"id":245,"parentId":236,"tags":{},"startTime":1776332186184,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":4948,"timestamp":6725239144216,"id":236,"parentId":195,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/picocolors.js","layer":"rsc"},"startTime":1776332186180,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":2185,"timestamp":6725239147345,"id":244,"parentId":243,"tags":{},"startTime":1776332186183,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":2243,"timestamp":6725239147298,"id":243,"parentId":220,"tags":{},"startTime":1776332186183,"traceId":"bd5433937c2d2119"},{"name":"build-module-mjs","duration":9036,"timestamp":6725239141063,"id":220,"parentId":122,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next-themes/dist/index.mjs","layer":"rsc"},"startTime":1776332186177,"traceId":"bd5433937c2d2119"},{"name":"read-resource","duration":1517,"timestamp":6725239152094,"id":247,"parentId":246,"tags":{},"startTime":1776332186188,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":47,"timestamp":6725239153622,"id":252,"parentId":246,"tags":{},"startTime":1776332186189,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":1883,"timestamp":6725239151968,"id":246,"parentId":171,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/route-modules/app-page/vendored/rsc/react-dom.js","layer":"rsc"},"startTime":1776332186188,"traceId":"bd5433937c2d2119"},{"name":"read-resource","duration":925,"timestamp":6725239153366,"id":250,"parentId":248,"tags":{},"startTime":1776332186189,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":54,"timestamp":6725239154297,"id":253,"parentId":248,"tags":{},"startTime":1776332186190,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":18058,"timestamp":6725239153123,"id":248,"parentId":193,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@opentelemetry/api/index.js","layer":"rsc"},"startTime":1776332186189,"traceId":"bd5433937c2d2119"},{"name":"read-resource","duration":17845,"timestamp":6725239153375,"id":251,"parentId":249,"tags":{},"startTime":1776332186189,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":301,"timestamp":6725239171230,"id":254,"parentId":249,"tags":{},"startTime":1776332186207,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":19816,"timestamp":6725239153221,"id":249,"parentId":128,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_interop_require_default.js","layer":"rsc"},"startTime":1776332186189,"traceId":"bd5433937c2d2119"},{"name":"add-entry","duration":227566,"timestamp":6725238953692,"id":120,"parentId":119,"tags":{"request":"next-app-loader?name=app%2Frecommendations%2Fpage&page=%2Frecommendations%2Fpage&appPaths=%2Frecommendations%2Fpage&pagePath=private-next-app-dir%2Frecommendations%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776332185989,"traceId":"bd5433937c2d2119"},{"name":"build-module","duration":1588,"timestamp":6725239193581,"id":259,"parentId":118,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2Frecommendations%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=true!","layer":"ssr"},"startTime":1776332186229,"traceId":"bd5433937c2d2119"},{"name":"build-module","duration":1691,"timestamp":6725239195185,"id":260,"parentId":118,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext-themes%2Fdist%2Findex.mjs%22%2C%22ids%22%3A%5B%22ThemeProvider%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2Fglobals.css%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fauth-guard.tsx%22%2C%22ids%22%3A%5B%22AuthGuard%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fnav.tsx%22%2C%22ids%22%3A%5B%22SidebarNav%22%2C%22MobileBottomNav%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fuser-menu.tsx%22%2C%22ids%22%3A%5B%22UserMenu%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fhooks%2Fuse-auth.tsx%22%2C%22ids%22%3A%5B%22AuthProvider%22%5D%7D&server=true!","layer":"ssr"},"startTime":1776332186231,"traceId":"bd5433937c2d2119"},{"name":"build-module","duration":1538,"timestamp":6725239196896,"id":261,"parentId":118,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fapp-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fclient-page.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Ferror-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Flayout-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fnot-found-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Frender-from-template-context.js%22%2C%22ids%22%3A%5B%5D%7D&server=true!","layer":"ssr"},"startTime":1776332186233,"traceId":"bd5433937c2d2119"},{"name":"read-resource","duration":5,"timestamp":6725239205754,"id":296,"parentId":295,"tags":{},"startTime":1776332186241,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":1145,"timestamp":6725239204735,"id":276,"parentId":275,"tags":{},"startTime":1776332186240,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":1175,"timestamp":6725239204707,"id":275,"parentId":267,"tags":{},"startTime":1776332186240,"traceId":"bd5433937c2d2119"},{"name":"build-module-tsx","duration":2348,"timestamp":6725239204311,"id":267,"parentId":260,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/user-menu.tsx","layer":"ssr"},"startTime":1776332186240,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":4729,"timestamp":6725239202067,"id":264,"parentId":263,"tags":{},"startTime":1776332186238,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":4848,"timestamp":6725239201949,"id":263,"parentId":262,"tags":{},"startTime":1776332186238,"traceId":"bd5433937c2d2119"},{"name":"build-module-tsx","duration":8664,"timestamp":6725239201203,"id":262,"parentId":259,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/recommendations/page.tsx","layer":"ssr"},"startTime":1776332186237,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":6142,"timestamp":6725239204674,"id":272,"parentId":271,"tags":{},"startTime":1776332186240,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":6190,"timestamp":6725239204628,"id":271,"parentId":265,"tags":{},"startTime":1776332186240,"traceId":"bd5433937c2d2119"},{"name":"build-module-tsx","duration":7297,"timestamp":6725239204170,"id":265,"parentId":260,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/auth-guard.tsx","layer":"ssr"},"startTime":1776332186240,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":6829,"timestamp":6725239204706,"id":274,"parentId":273,"tags":{},"startTime":1776332186240,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":6861,"timestamp":6725239204676,"id":273,"parentId":266,"tags":{},"startTime":1776332186240,"traceId":"bd5433937c2d2119"},{"name":"build-module-tsx","duration":8794,"timestamp":6725239204262,"id":266,"parentId":260,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/nav.tsx","layer":"ssr"},"startTime":1776332186240,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":8320,"timestamp":6725239204763,"id":278,"parentId":277,"tags":{},"startTime":1776332186240,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":8348,"timestamp":6725239204736,"id":277,"parentId":268,"tags":{},"startTime":1776332186240,"traceId":"bd5433937c2d2119"},{"name":"build-module-tsx","duration":9145,"timestamp":6725239204354,"id":268,"parentId":260,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/hooks/use-auth.tsx","layer":"ssr"},"startTime":1776332186240,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":8469,"timestamp":6725239205046,"id":288,"parentId":287,"tags":{},"startTime":1776332186241,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":8480,"timestamp":6725239205036,"id":287,"parentId":283,"tags":{},"startTime":1776332186241,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":8985,"timestamp":6725239204944,"id":283,"parentId":261,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/client-page.js","layer":"ssr"},"startTime":1776332186241,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":9164,"timestamp":6725239204781,"id":280,"parentId":279,"tags":{},"startTime":1776332186240,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":9182,"timestamp":6725239204764,"id":279,"parentId":269,"tags":{},"startTime":1776332186240,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":10205,"timestamp":6725239204395,"id":269,"parentId":261,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/error-boundary.js","layer":"ssr"},"startTime":1776332186240,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":9538,"timestamp":6725239205071,"id":294,"parentId":293,"tags":{},"startTime":1776332186241,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":9546,"timestamp":6725239205064,"id":293,"parentId":286,"tags":{},"startTime":1776332186241,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":9839,"timestamp":6725239205016,"id":286,"parentId":261,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/render-from-template-context.js","layer":"ssr"},"startTime":1776332186241,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":9805,"timestamp":6725239205063,"id":292,"parentId":291,"tags":{},"startTime":1776332186241,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":9813,"timestamp":6725239205056,"id":291,"parentId":285,"tags":{},"startTime":1776332186241,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":10373,"timestamp":6725239204991,"id":285,"parentId":261,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/not-found-boundary.js","layer":"ssr"},"startTime":1776332186241,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":9577,"timestamp":6725239205817,"id":298,"parentId":297,"tags":{},"startTime":1776332186241,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":9628,"timestamp":6725239205767,"id":297,"parentId":295,"tags":{},"startTime":1776332186241,"traceId":"bd5433937c2d2119"},{"name":"build-module-mjs","duration":11633,"timestamp":6725239205416,"id":295,"parentId":260,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next-themes/dist/index.mjs","layer":"ssr"},"startTime":1776332186241,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":12033,"timestamp":6725239205055,"id":290,"parentId":289,"tags":{},"startTime":1776332186241,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":12042,"timestamp":6725239205048,"id":289,"parentId":284,"tags":{},"startTime":1776332186241,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":14878,"timestamp":6725239204970,"id":284,"parentId":261,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/layout-router.js","layer":"ssr"},"startTime":1776332186241,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":15125,"timestamp":6725239204790,"id":282,"parentId":281,"tags":{},"startTime":1776332186240,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":15135,"timestamp":6725239204782,"id":281,"parentId":270,"tags":{},"startTime":1776332186240,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":17800,"timestamp":6725239204588,"id":270,"parentId":261,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/app-router.js","layer":"ssr"},"startTime":1776332186240,"traceId":"bd5433937c2d2119"},{"name":"read-resource","duration":101,"timestamp":6725239234969,"id":301,"parentId":299,"tags":{},"startTime":1776332186271,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":42,"timestamp":6725239235087,"id":304,"parentId":299,"tags":{},"startTime":1776332186271,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":570,"timestamp":6725239234825,"id":299,"parentId":269,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_interop_require_default.js","layer":"ssr"},"startTime":1776332186270,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":5288,"timestamp":6725239234999,"id":303,"parentId":302,"tags":{},"startTime":1776332186271,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":5320,"timestamp":6725239234972,"id":302,"parentId":300,"tags":{},"startTime":1776332186271,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":5834,"timestamp":6725239234931,"id":300,"parentId":283,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/search-params.js","layer":"ssr"},"startTime":1776332186271,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":2820,"timestamp":6725239241336,"id":322,"parentId":321,"tags":{},"startTime":1776332186277,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":2831,"timestamp":6725239241329,"id":321,"parentId":307,"tags":{},"startTime":1776332186277,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":3419,"timestamp":6725239241091,"id":307,"parentId":270,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/has-base-path.js","layer":"ssr"},"startTime":1776332186277,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":3195,"timestamp":6725239241328,"id":320,"parentId":319,"tags":{},"startTime":1776332186277,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":3205,"timestamp":6725239241319,"id":319,"parentId":306,"tags":{},"startTime":1776332186277,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":3882,"timestamp":6725239241067,"id":306,"parentId":270,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/remove-base-path.js","layer":"ssr"},"startTime":1776332186277,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":3648,"timestamp":6725239241317,"id":318,"parentId":317,"tags":{},"startTime":1776332186277,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":3670,"timestamp":6725239241296,"id":317,"parentId":305,"tags":{},"startTime":1776332186277,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":4206,"timestamp":6725239241018,"id":305,"parentId":270,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/add-base-path.js","layer":"ssr"},"startTime":1776332186277,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":3896,"timestamp":6725239241344,"id":324,"parentId":323,"tags":{},"startTime":1776332186277,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":3904,"timestamp":6725239241337,"id":323,"parentId":308,"tags":{},"startTime":1776332186277,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":4678,"timestamp":6725239241112,"id":308,"parentId":269,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/navigation.js","layer":"ssr"},"startTime":1776332186277,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":4441,"timestamp":6725239241359,"id":328,"parentId":327,"tags":{},"startTime":1776332186277,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":4448,"timestamp":6725239241353,"id":327,"parentId":310,"tags":{},"startTime":1776332186277,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":4867,"timestamp":6725239241148,"id":310,"parentId":285,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/not-found.js","layer":"ssr"},"startTime":1776332186277,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":4656,"timestamp":6725239241366,"id":330,"parentId":329,"tags":{},"startTime":1776332186277,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":4664,"timestamp":6725239241360,"id":329,"parentId":311,"tags":{},"startTime":1776332186277,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":5031,"timestamp":6725239241166,"id":311,"parentId":284,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/unresolved-thenable.js","layer":"ssr"},"startTime":1776332186277,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":4856,"timestamp":6725239241352,"id":326,"parentId":325,"tags":{},"startTime":1776332186277,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":4863,"timestamp":6725239241345,"id":325,"parentId":309,"tags":{},"startTime":1776332186277,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":5289,"timestamp":6725239241130,"id":309,"parentId":269,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/is-next-router-error.js","layer":"ssr"},"startTime":1776332186277,"traceId":"bd5433937c2d2119"}] +[{"name":"next-swc-transform","duration":5177,"timestamp":6725239241374,"id":332,"parentId":331,"tags":{},"startTime":1776332186277,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":5185,"timestamp":6725239241367,"id":331,"parentId":312,"tags":{},"startTime":1776332186277,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":5627,"timestamp":6725239241184,"id":312,"parentId":284,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/match-segments.js","layer":"ssr"},"startTime":1776332186277,"traceId":"bd5433937c2d2119"},{"name":"read-resource","duration":523,"timestamp":6725239249227,"id":351,"parentId":341,"tags":{},"startTime":1776332186285,"traceId":"bd5433937c2d2119"},{"name":"read-resource","duration":564,"timestamp":6725239249234,"id":352,"parentId":342,"tags":{},"startTime":1776332186285,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":429,"timestamp":6725239249762,"id":369,"parentId":341,"tags":{},"startTime":1776332186285,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":393,"timestamp":6725239249801,"id":370,"parentId":342,"tags":{},"startTime":1776332186285,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":2108,"timestamp":6725239248724,"id":341,"parentId":300,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/app-render/dynamic-rendering.js","layer":"ssr"},"startTime":1776332186284,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":2139,"timestamp":6725239248862,"id":342,"parentId":300,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/web/spec-extension/adapters/reflect.js","layer":"ssr"},"startTime":1776332186285,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":9817,"timestamp":6725239241381,"id":334,"parentId":333,"tags":{},"startTime":1776332186277,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":9826,"timestamp":6725239241374,"id":333,"parentId":313,"tags":{},"startTime":1776332186277,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":10518,"timestamp":6725239241200,"id":313,"parentId":284,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/redirect-boundary.js","layer":"ssr"},"startTime":1776332186277,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":10346,"timestamp":6725239241407,"id":340,"parentId":339,"tags":{},"startTime":1776332186277,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":10354,"timestamp":6725239241400,"id":339,"parentId":316,"tags":{},"startTime":1776332186277,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":11075,"timestamp":6725239241249,"id":316,"parentId":270,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/app-router-headers.js","layer":"ssr"},"startTime":1776332186277,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":12150,"timestamp":6725239241399,"id":338,"parentId":337,"tags":{},"startTime":1776332186277,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":12164,"timestamp":6725239241388,"id":337,"parentId":315,"tags":{},"startTime":1776332186277,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":12729,"timestamp":6725239241233,"id":315,"parentId":270,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/app-router-announcer.js","layer":"ssr"},"startTime":1776332186277,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":12589,"timestamp":6725239241388,"id":336,"parentId":335,"tags":{},"startTime":1776332186277,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":12596,"timestamp":6725239241382,"id":335,"parentId":314,"tags":{},"startTime":1776332186277,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":13371,"timestamp":6725239241216,"id":314,"parentId":270,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/use-reducer-with-devtools.js","layer":"ssr"},"startTime":1776332186277,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":5030,"timestamp":6725239249577,"id":360,"parentId":359,"tags":{},"startTime":1776332186285,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":5043,"timestamp":6725239249564,"id":359,"parentId":346,"tags":{},"startTime":1776332186285,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":5755,"timestamp":6725239249019,"id":346,"parentId":270,"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":1776332186285,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":5220,"timestamp":6725239249563,"id":358,"parentId":357,"tags":{},"startTime":1776332186285,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":5231,"timestamp":6725239249553,"id":357,"parentId":345,"tags":{},"startTime":1776332186285,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":6012,"timestamp":6725239248990,"id":345,"parentId":270,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/router-reducer-types.js","layer":"ssr"},"startTime":1776332186285,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":7581,"timestamp":6725239249551,"id":356,"parentId":355,"tags":{},"startTime":1776332186285,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":7598,"timestamp":6725239249540,"id":355,"parentId":344,"tags":{},"startTime":1776332186285,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":8510,"timestamp":6725239248966,"id":344,"parentId":284,"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":1776332186285,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":7895,"timestamp":6725239249595,"id":364,"parentId":363,"tags":{},"startTime":1776332186285,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":7904,"timestamp":6725239249587,"id":363,"parentId":348,"tags":{},"startTime":1776332186285,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":8543,"timestamp":6725239249131,"id":348,"parentId":284,"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":1776332186285,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":8167,"timestamp":6725239249537,"id":354,"parentId":353,"tags":{},"startTime":1776332186285,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":8204,"timestamp":6725239249502,"id":353,"parentId":343,"tags":{},"startTime":1776332186285,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":9335,"timestamp":6725239248924,"id":343,"parentId":284,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/fetch-server-response.js","layer":"ssr"},"startTime":1776332186285,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":8819,"timestamp":6725239249586,"id":362,"parentId":361,"tags":{},"startTime":1776332186285,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":8829,"timestamp":6725239249578,"id":361,"parentId":347,"tags":{},"startTime":1776332186285,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":9665,"timestamp":6725239249109,"id":347,"parentId":270,"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":1776332186285,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":10565,"timestamp":6725239249603,"id":366,"parentId":365,"tags":{},"startTime":1776332186285,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":10575,"timestamp":6725239249596,"id":365,"parentId":349,"tags":{},"startTime":1776332186285,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":11296,"timestamp":6725239249153,"id":349,"parentId":284,"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":1776332186285,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":10869,"timestamp":6725239249614,"id":368,"parentId":367,"tags":{},"startTime":1776332186285,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":10881,"timestamp":6725239249604,"id":367,"parentId":350,"tags":{},"startTime":1776332186285,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":11583,"timestamp":6725239249177,"id":350,"parentId":270,"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":1776332186285,"traceId":"bd5433937c2d2119"},{"name":"read-resource","duration":212,"timestamp":6725239264746,"id":379,"parentId":371,"tags":{},"startTime":1776332186300,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":28,"timestamp":6725239264965,"id":394,"parentId":371,"tags":{},"startTime":1776332186301,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":1569,"timestamp":6725239264479,"id":371,"parentId":341,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/url.js","layer":"ssr"},"startTime":1776332186300,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":4109,"timestamp":6725239264810,"id":387,"parentId":386,"tags":{},"startTime":1776332186300,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":4119,"timestamp":6725239264802,"id":386,"parentId":375,"tags":{},"startTime":1776332186300,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":4494,"timestamp":6725239264664,"id":375,"parentId":285,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/utils/warn-once.js","layer":"ssr"},"startTime":1776332186300,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":4366,"timestamp":6725239264801,"id":385,"parentId":384,"tags":{},"startTime":1776332186300,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":4375,"timestamp":6725239264793,"id":384,"parentId":374,"tags":{},"startTime":1776332186300,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":4668,"timestamp":6725239264644,"id":374,"parentId":270,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/segment.js","layer":"ssr"},"startTime":1776332186300,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":4553,"timestamp":6725239264779,"id":381,"parentId":380,"tags":{},"startTime":1776332186300,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":4582,"timestamp":6725239264751,"id":380,"parentId":372,"tags":{},"startTime":1776332186300,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":5016,"timestamp":6725239264580,"id":372,"parentId":341,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/hooks-server-context.js","layer":"ssr"},"startTime":1776332186300,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":4813,"timestamp":6725239264792,"id":383,"parentId":382,"tags":{},"startTime":1776332186300,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":4824,"timestamp":6725239264782,"id":382,"parentId":373,"tags":{},"startTime":1776332186300,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":5200,"timestamp":6725239264622,"id":373,"parentId":341,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/static-generation-bailout.js","layer":"ssr"},"startTime":1776332186300,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":5596,"timestamp":6725239264829,"id":391,"parentId":390,"tags":{},"startTime":1776332186301,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":5609,"timestamp":6725239264822,"id":390,"parentId":377,"tags":{},"startTime":1776332186300,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":6413,"timestamp":6725239264698,"id":377,"parentId":270,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/is-bot.js","layer":"ssr"},"startTime":1776332186300,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":6307,"timestamp":6725239264821,"id":389,"parentId":388,"tags":{},"startTime":1776332186300,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":6315,"timestamp":6725239264814,"id":388,"parentId":376,"tags":{},"startTime":1776332186300,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":6657,"timestamp":6725239264681,"id":376,"parentId":284,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/handle-smooth-scroll.js","layer":"ssr"},"startTime":1776332186300,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":8829,"timestamp":6725239264837,"id":393,"parentId":392,"tags":{},"startTime":1776332186301,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":8840,"timestamp":6725239264830,"id":392,"parentId":378,"tags":{},"startTime":1776332186301,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":11027,"timestamp":6725239264718,"id":378,"parentId":270,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/app/hot-reloader-client.js","layer":"ssr"},"startTime":1776332186300,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":2416,"timestamp":6725239276819,"id":413,"parentId":412,"tags":{},"startTime":1776332186312,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":2430,"timestamp":6725239276809,"id":412,"parentId":398,"tags":{},"startTime":1776332186312,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":3289,"timestamp":6725239276327,"id":398,"parentId":308,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/bailout-to-client-rendering.js","layer":"ssr"},"startTime":1776332186312,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":3502,"timestamp":6725239276770,"id":407,"parentId":406,"tags":{},"startTime":1776332186312,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":3536,"timestamp":6725239276739,"id":406,"parentId":395,"tags":{},"startTime":1776332186312,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":5074,"timestamp":6725239276182,"id":395,"parentId":305,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/normalize-trailing-slash.js","layer":"ssr"},"startTime":1776332186312,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":4487,"timestamp":6725239276807,"id":411,"parentId":410,"tags":{},"startTime":1776332186312,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":4508,"timestamp":6725239276787,"id":410,"parentId":397,"tags":{},"startTime":1776332186312,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":5473,"timestamp":6725239276299,"id":397,"parentId":308,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/navigation.react-server.js","layer":"ssr"},"startTime":1776332186312,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":5013,"timestamp":6725239276785,"id":409,"parentId":408,"tags":{},"startTime":1776332186312,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":5027,"timestamp":6725239276772,"id":408,"parentId":396,"tags":{},"startTime":1776332186312,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":6217,"timestamp":6725239276265,"id":396,"parentId":309,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/redirect.js","layer":"ssr"},"startTime":1776332186312,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":6947,"timestamp":6725239276830,"id":415,"parentId":414,"tags":{},"startTime":1776332186313,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":6959,"timestamp":6725239276821,"id":414,"parentId":400,"tags":{},"startTime":1776332186312,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":7547,"timestamp":6725239276424,"id":400,"parentId":307,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/path-has-prefix.js","layer":"ssr"},"startTime":1776332186312,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":7142,"timestamp":6725239276840,"id":417,"parentId":416,"tags":{},"startTime":1776332186313,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":7151,"timestamp":6725239276832,"id":416,"parentId":401,"tags":{},"startTime":1776332186313,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":7722,"timestamp":6725239276448,"id":401,"parentId":305,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/add-path-prefix.js","layer":"ssr"},"startTime":1776332186312,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":11659,"timestamp":6725239276851,"id":419,"parentId":418,"tags":{},"startTime":1776332186313,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":11675,"timestamp":6725239276842,"id":418,"parentId":403,"tags":{},"startTime":1776332186313,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":12883,"timestamp":6725239276528,"id":403,"parentId":314,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/action-queue.js","layer":"ssr"},"startTime":1776332186312,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":9360,"timestamp":6725239280067,"id":432,"parentId":431,"tags":{},"startTime":1776332186316,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":9371,"timestamp":6725239280057,"id":431,"parentId":422,"tags":{},"startTime":1776332186316,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":9964,"timestamp":6725239279814,"id":422,"parentId":343,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/hash.js","layer":"ssr"},"startTime":1776332186315,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":9748,"timestamp":6725239280056,"id":430,"parentId":429,"tags":{},"startTime":1776332186316,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":9761,"timestamp":6725239280043,"id":429,"parentId":421,"tags":{},"startTime":1776332186316,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":10405,"timestamp":6725239279786,"id":421,"parentId":343,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/flight-data-helpers.js","layer":"ssr"},"startTime":1776332186315,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":10161,"timestamp":6725239280040,"id":428,"parentId":427,"tags":{},"startTime":1776332186316,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":10190,"timestamp":6725239280013,"id":427,"parentId":420,"tags":{},"startTime":1776332186316,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":10735,"timestamp":6725239279733,"id":420,"parentId":343,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/app-call-server.js","layer":"ssr"},"startTime":1776332186315,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":10408,"timestamp":6725239280083,"id":434,"parentId":433,"tags":{},"startTime":1776332186316,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":10424,"timestamp":6725239280068,"id":433,"parentId":423,"tags":{},"startTime":1776332186316,"traceId":"bd5433937c2d2119"}] +[{"name":"build-module-js","duration":11462,"timestamp":6725239279841,"id":423,"parentId":347,"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":1776332186316,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":13186,"timestamp":6725239280094,"id":436,"parentId":435,"tags":{},"startTime":1776332186316,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":13202,"timestamp":6725239280084,"id":435,"parentId":424,"tags":{},"startTime":1776332186316,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":14468,"timestamp":6725239279864,"id":424,"parentId":347,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/compute-changed-path.js","layer":"ssr"},"startTime":1776332186316,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":14298,"timestamp":6725239280115,"id":440,"parentId":439,"tags":{},"startTime":1776332186316,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":14309,"timestamp":6725239280106,"id":439,"parentId":426,"tags":{},"startTime":1776332186316,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":15614,"timestamp":6725239279918,"id":426,"parentId":347,"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":1776332186316,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":15610,"timestamp":6725239280104,"id":438,"parentId":437,"tags":{},"startTime":1776332186316,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":15621,"timestamp":6725239280096,"id":437,"parentId":425,"tags":{},"startTime":1776332186316,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":17085,"timestamp":6725239279887,"id":425,"parentId":347,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/prefetch-cache-utils.js","layer":"ssr"},"startTime":1776332186316,"traceId":"bd5433937c2d2119"},{"name":"read-resource","duration":28626,"timestamp":6725239276625,"id":405,"parentId":402,"tags":{},"startTime":1776332186312,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":35,"timestamp":6725239305265,"id":445,"parentId":402,"tags":{},"startTime":1776332186341,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":29006,"timestamp":6725239276472,"id":402,"parentId":269,"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":1776332186312,"traceId":"bd5433937c2d2119"},{"name":"read-resource","duration":28877,"timestamp":6725239276610,"id":404,"parentId":399,"tags":{},"startTime":1776332186312,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":27,"timestamp":6725239305491,"id":446,"parentId":399,"tags":{},"startTime":1776332186341,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":29414,"timestamp":6725239276364,"id":399,"parentId":312,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/app-render/get-segment-param.js","layer":"ssr"},"startTime":1776332186312,"traceId":"bd5433937c2d2119"},{"name":"read-resource","duration":561,"timestamp":6725239311295,"id":464,"parentId":457,"tags":{},"startTime":1776332186347,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":47,"timestamp":6725239311871,"id":477,"parentId":457,"tags":{},"startTime":1776332186348,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":1676,"timestamp":6725239310736,"id":457,"parentId":402,"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":1776332186346,"traceId":"bd5433937c2d2119"},{"name":"read-resource","duration":11756,"timestamp":6725239301797,"id":444,"parentId":442,"tags":{},"startTime":1776332186337,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":36,"timestamp":6725239313563,"id":478,"parentId":442,"tags":{},"startTime":1776332186349,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":12846,"timestamp":6725239301281,"id":442,"parentId":349,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/helpers/interception-routes.js","layer":"ssr"},"startTime":1776332186337,"traceId":"bd5433937c2d2119"},{"name":"read-resource","duration":12415,"timestamp":6725239301742,"id":443,"parentId":441,"tags":{},"startTime":1776332186337,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":37,"timestamp":6725239314170,"id":479,"parentId":441,"tags":{},"startTime":1776332186350,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":13548,"timestamp":6725239300884,"id":441,"parentId":267,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/route-modules/app-page/vendored/ssr/react-jsx-dev-runtime.js","layer":"ssr"},"startTime":1776332186337,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":4880,"timestamp":6725239309589,"id":454,"parentId":453,"tags":{},"startTime":1776332186345,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":4912,"timestamp":6725239309558,"id":453,"parentId":451,"tags":{},"startTime":1776332186345,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":5552,"timestamp":6725239309375,"id":451,"parentId":378,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/shared.js","layer":"ssr"},"startTime":1776332186345,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":5342,"timestamp":6725239309604,"id":456,"parentId":455,"tags":{},"startTime":1776332186345,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":5354,"timestamp":6725239309594,"id":455,"parentId":452,"tags":{},"startTime":1776332186345,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":6033,"timestamp":6725239309436,"id":452,"parentId":378,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/app/ReactDevOverlay.js","layer":"ssr"},"startTime":1776332186345,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":6095,"timestamp":6725239311510,"id":472,"parentId":471,"tags":{},"startTime":1776332186347,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":6108,"timestamp":6725239311501,"id":471,"parentId":461,"tags":{},"startTime":1776332186347,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":6737,"timestamp":6725239311148,"id":461,"parentId":396,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/redirect-status-code.js","layer":"ssr"},"startTime":1776332186347,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":6505,"timestamp":6725239311432,"id":466,"parentId":465,"tags":{},"startTime":1776332186347,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":6609,"timestamp":6725239311329,"id":465,"parentId":458,"tags":{},"startTime":1776332186347,"traceId":"bd5433937c2d2119"},{"name":"build-module-tsx","duration":7767,"timestamp":6725239310848,"id":458,"parentId":267,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/change-password-dialog.tsx","layer":"ssr"},"startTime":1776332186347,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":7142,"timestamp":6725239311499,"id":470,"parentId":469,"tags":{},"startTime":1776332186347,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":7173,"timestamp":6725239311470,"id":469,"parentId":460,"tags":{},"startTime":1776332186347,"traceId":"bd5433937c2d2119"},{"name":"build-module-tsx","duration":7873,"timestamp":6725239311096,"id":460,"parentId":267,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/theme-toggle.tsx","layer":"ssr"},"startTime":1776332186347,"traceId":"bd5433937c2d2119"},{"name":"read-resource","duration":13746,"timestamp":6725239306602,"id":449,"parentId":447,"tags":{},"startTime":1776332186342,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":31,"timestamp":6725239320356,"id":493,"parentId":447,"tags":{},"startTime":1776332186356,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":14044,"timestamp":6725239306428,"id":447,"parentId":283,"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":1776332186342,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":8968,"timestamp":6725239311519,"id":474,"parentId":473,"tags":{},"startTime":1776332186347,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":8977,"timestamp":6725239311511,"id":473,"parentId":462,"tags":{},"startTime":1776332186347,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":9505,"timestamp":6725239311171,"id":462,"parentId":395,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/remove-trailing-slash.js","layer":"ssr"},"startTime":1776332186347,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":9159,"timestamp":6725239311527,"id":476,"parentId":475,"tags":{},"startTime":1776332186347,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":9167,"timestamp":6725239311520,"id":475,"parentId":463,"tags":{},"startTime":1776332186347,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":9583,"timestamp":6725239311224,"id":463,"parentId":395,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/parse-path.js","layer":"ssr"},"startTime":1776332186347,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":9425,"timestamp":6725239311468,"id":468,"parentId":467,"tags":{},"startTime":1776332186347,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":9460,"timestamp":6725239311434,"id":467,"parentId":459,"tags":{},"startTime":1776332186347,"traceId":"bd5433937c2d2119"},{"name":"build-module-tsx","duration":11690,"timestamp":6725239310975,"id":459,"parentId":262,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/stock-card.tsx","layer":"ssr"},"startTime":1776332186347,"traceId":"bd5433937c2d2119"},{"name":"read-resource","duration":16060,"timestamp":6725239306625,"id":450,"parentId":448,"tags":{},"startTime":1776332186342,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":39,"timestamp":6725239322694,"id":494,"parentId":448,"tags":{},"startTime":1776332186358,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":16299,"timestamp":6725239306541,"id":448,"parentId":284,"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":1776332186342,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":6529,"timestamp":6725239316521,"id":488,"parentId":487,"tags":{},"startTime":1776332186352,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":6557,"timestamp":6725239316494,"id":487,"parentId":482,"tags":{},"startTime":1776332186352,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":7393,"timestamp":6725239316022,"id":482,"parentId":403,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/router-reducer.js","layer":"ssr"},"startTime":1776332186352,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":6888,"timestamp":6725239316543,"id":492,"parentId":491,"tags":{},"startTime":1776332186352,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":6898,"timestamp":6725239316535,"id":491,"parentId":484,"tags":{},"startTime":1776332186352,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":7704,"timestamp":6725239316072,"id":484,"parentId":425,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/prefetch-reducer.js","layer":"ssr"},"startTime":1776332186352,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":11820,"timestamp":6725239316534,"id":490,"parentId":489,"tags":{},"startTime":1776332186352,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":11834,"timestamp":6725239316523,"id":489,"parentId":483,"tags":{},"startTime":1776332186352,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":12711,"timestamp":6725239316049,"id":483,"parentId":426,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/apply-flight-data.js","layer":"ssr"},"startTime":1776332186352,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":2987,"timestamp":6725239326199,"id":500,"parentId":499,"tags":{},"startTime":1776332186362,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":3002,"timestamp":6725239326185,"id":499,"parentId":496,"tags":{},"startTime":1776332186362,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":4125,"timestamp":6725239325266,"id":496,"parentId":398,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/lazy-dynamic/bailout-to-csr.js","layer":"ssr"},"startTime":1776332186361,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":3234,"timestamp":6725239326182,"id":498,"parentId":497,"tags":{},"startTime":1776332186362,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":3301,"timestamp":6725239326117,"id":497,"parentId":495,"tags":{},"startTime":1776332186362,"traceId":"bd5433937c2d2119"},{"name":"build-module-ts","duration":4585,"timestamp":6725239325171,"id":495,"parentId":262,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/hooks/use-websocket.ts","layer":"ssr"},"startTime":1776332186361,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":1589,"timestamp":6725239330397,"id":516,"parentId":515,"tags":{},"startTime":1776332186366,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":1673,"timestamp":6725239330316,"id":515,"parentId":504,"tags":{},"startTime":1776332186366,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":2459,"timestamp":6725239329984,"id":504,"parentId":378,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/use-websocket.js","layer":"ssr"},"startTime":1776332186366,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":3239,"timestamp":6725239330297,"id":512,"parentId":511,"tags":{},"startTime":1776332186366,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":3250,"timestamp":6725239330288,"id":511,"parentId":502,"tags":{},"startTime":1776332186366,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":3885,"timestamp":6725239329943,"id":502,"parentId":378,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/parseStack.js","layer":"ssr"},"startTime":1776332186366,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":3535,"timestamp":6725239330306,"id":514,"parentId":513,"tags":{},"startTime":1776332186366,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":3544,"timestamp":6725239330298,"id":513,"parentId":503,"tags":{},"startTime":1776332186366,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":4192,"timestamp":6725239329965,"id":503,"parentId":378,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/use-error-handler.js","layer":"ssr"},"startTime":1776332186366,"traceId":"bd5433937c2d2119"},{"name":"read-resource","duration":18792,"timestamp":6725239316151,"id":485,"parentId":480,"tags":{},"startTime":1776332186352,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":28,"timestamp":6725239334950,"id":524,"parentId":480,"tags":{},"startTime":1776332186371,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":19248,"timestamp":6725239315894,"id":480,"parentId":378,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/dev/extract-modules-from-turbopack-message.js","layer":"ssr"},"startTime":1776332186352,"traceId":"bd5433937c2d2119"},{"name":"read-resource","duration":18982,"timestamp":6725239316165,"id":486,"parentId":481,"tags":{},"startTime":1776332186352,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":24,"timestamp":6725239335150,"id":525,"parentId":481,"tags":{},"startTime":1776332186371,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":19297,"timestamp":6725239315975,"id":481,"parentId":378,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/dev/hot-reloader-types.js","layer":"ssr"},"startTime":1776332186352,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":5842,"timestamp":6725239330414,"id":520,"parentId":519,"tags":{},"startTime":1776332186366,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":5851,"timestamp":6725239330407,"id":519,"parentId":506,"tags":{},"startTime":1776332186366,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":6395,"timestamp":6725239330020,"id":506,"parentId":378,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/runtime-error-handler.js","layer":"ssr"},"startTime":1776332186366,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":6151,"timestamp":6725239330286,"id":510,"parentId":509,"tags":{},"startTime":1776332186366,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":6173,"timestamp":6725239330266,"id":509,"parentId":501,"tags":{},"startTime":1776332186366,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":7905,"timestamp":6725239329896,"id":501,"parentId":378,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/format-webpack-messages.js","layer":"ssr"},"startTime":1776332186366,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":6332,"timestamp":6725239331513,"id":523,"parentId":522,"tags":{},"startTime":1776332186367,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":6366,"timestamp":6725239331480,"id":522,"parentId":521,"tags":{},"startTime":1776332186367,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":6709,"timestamp":6725239331355,"id":521,"parentId":442,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/app-paths.js","layer":"ssr"},"startTime":1776332186367,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":7710,"timestamp":6725239330406,"id":518,"parentId":517,"tags":{},"startTime":1776332186366,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":7719,"timestamp":6725239330398,"id":517,"parentId":505,"tags":{},"startTime":1776332186366,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":8524,"timestamp":6725239330002,"id":505,"parentId":378,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/parse-component-stack.js","layer":"ssr"},"startTime":1776332186366,"traceId":"bd5433937c2d2119"},{"name":"read-resource","duration":14167,"timestamp":6725239330098,"id":508,"parentId":507,"tags":{},"startTime":1776332186366,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":31,"timestamp":6725239344273,"id":556,"parentId":507,"tags":{},"startTime":1776332186380,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":14386,"timestamp":6725239330037,"id":507,"parentId":343,"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":1776332186366,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":2274,"timestamp":6725239343760,"id":545,"parentId":544,"tags":{},"startTime":1776332186379,"traceId":"bd5433937c2d2119"}] +[{"name":"next-swc-loader","duration":2399,"timestamp":6725239343748,"id":544,"parentId":531,"tags":{},"startTime":1776332186379,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":3135,"timestamp":6725239343425,"id":531,"parentId":482,"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":1776332186379,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":3874,"timestamp":6725239343772,"id":547,"parentId":546,"tags":{},"startTime":1776332186379,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":3885,"timestamp":6725239343762,"id":546,"parentId":532,"tags":{},"startTime":1776332186379,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":4494,"timestamp":6725239343444,"id":532,"parentId":482,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/restore-reducer.js","layer":"ssr"},"startTime":1776332186379,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":4261,"timestamp":6725239343692,"id":541,"parentId":540,"tags":{},"startTime":1776332186379,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":4329,"timestamp":6725239343625,"id":540,"parentId":529,"tags":{},"startTime":1776332186379,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":4960,"timestamp":6725239343380,"id":529,"parentId":484,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/promise-queue.js","layer":"ssr"},"startTime":1776332186379,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":4571,"timestamp":6725239343782,"id":549,"parentId":548,"tags":{},"startTime":1776332186379,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":4581,"timestamp":6725239343773,"id":548,"parentId":533,"tags":{},"startTime":1776332186379,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":5275,"timestamp":6725239343461,"id":533,"parentId":482,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/refresh-reducer.js","layer":"ssr"},"startTime":1776332186379,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":5011,"timestamp":6725239343746,"id":543,"parentId":542,"tags":{},"startTime":1776332186379,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":5054,"timestamp":6725239343704,"id":542,"parentId":530,"tags":{},"startTime":1776332186379,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":6229,"timestamp":6725239343405,"id":530,"parentId":482,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/reducers/navigate-reducer.js","layer":"ssr"},"startTime":1776332186379,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":6472,"timestamp":6725239343792,"id":551,"parentId":550,"tags":{},"startTime":1776332186379,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":6482,"timestamp":6725239343784,"id":550,"parentId":534,"tags":{},"startTime":1776332186379,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":7139,"timestamp":6725239343478,"id":534,"parentId":482,"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":1776332186379,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":9587,"timestamp":6725239343804,"id":553,"parentId":552,"tags":{},"startTime":1776332186379,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":9601,"timestamp":6725239343794,"id":552,"parentId":535,"tags":{},"startTime":1776332186379,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":10586,"timestamp":6725239343495,"id":535,"parentId":482,"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":1776332186379,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":8613,"timestamp":6725239345485,"id":567,"parentId":566,"tags":{},"startTime":1776332186381,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":8633,"timestamp":6725239345466,"id":566,"parentId":558,"tags":{},"startTime":1776332186381,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":9577,"timestamp":6725239344731,"id":558,"parentId":452,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/ShadowPortal.js","layer":"ssr"},"startTime":1776332186380,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":8826,"timestamp":6725239345497,"id":569,"parentId":568,"tags":{},"startTime":1776332186381,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":8837,"timestamp":6725239345487,"id":568,"parentId":559,"tags":{},"startTime":1776332186381,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":10270,"timestamp":6725239344754,"id":559,"parentId":452,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/container/BuildError.js","layer":"ssr"},"startTime":1776332186380,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":11210,"timestamp":6725239343855,"id":555,"parentId":554,"tags":{},"startTime":1776332186380,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":11261,"timestamp":6725239343806,"id":554,"parentId":536,"tags":{},"startTime":1776332186379,"traceId":"bd5433937c2d2119"},{"name":"build-module-ts","duration":12555,"timestamp":6725239343512,"id":536,"parentId":268,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/lib/api.ts","layer":"ssr"},"startTime":1776332186379,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":10565,"timestamp":6725239345516,"id":573,"parentId":572,"tags":{},"startTime":1776332186381,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":10575,"timestamp":6725239345507,"id":572,"parentId":561,"tags":{},"startTime":1776332186381,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":11444,"timestamp":6725239344929,"id":561,"parentId":452,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/container/root-layout-missing-tags-error.js","layer":"ssr"},"startTime":1776332186381,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":10859,"timestamp":6725239345524,"id":575,"parentId":574,"tags":{},"startTime":1776332186381,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":10867,"timestamp":6725239345517,"id":574,"parentId":562,"tags":{},"startTime":1776332186381,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":11427,"timestamp":6725239345166,"id":562,"parentId":452,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/styles/Base.js","layer":"ssr"},"startTime":1776332186381,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":11110,"timestamp":6725239345532,"id":577,"parentId":576,"tags":{},"startTime":1776332186381,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":11118,"timestamp":6725239345525,"id":576,"parentId":563,"tags":{},"startTime":1776332186381,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":12977,"timestamp":6725239345266,"id":563,"parentId":452,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/styles/ComponentStyles.js","layer":"ssr"},"startTime":1776332186381,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":12717,"timestamp":6725239345540,"id":579,"parentId":578,"tags":{},"startTime":1776332186381,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":12725,"timestamp":6725239345533,"id":578,"parentId":564,"tags":{},"startTime":1776332186381,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":13266,"timestamp":6725239345288,"id":564,"parentId":452,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/styles/CssReset.js","layer":"ssr"},"startTime":1776332186381,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":11959,"timestamp":6725239346852,"id":583,"parentId":582,"tags":{},"startTime":1776332186383,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":11976,"timestamp":6725239346836,"id":582,"parentId":580,"tags":{},"startTime":1776332186383,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":12454,"timestamp":6725239346745,"id":580,"parentId":483,"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":1776332186382,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":12355,"timestamp":6725239346863,"id":585,"parentId":584,"tags":{},"startTime":1776332186383,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":12365,"timestamp":6725239346854,"id":584,"parentId":581,"tags":{},"startTime":1776332186383,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":12707,"timestamp":6725239346778,"id":581,"parentId":504,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/get-socket-url.js","layer":"ssr"},"startTime":1776332186382,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":14018,"timestamp":6725239345506,"id":571,"parentId":570,"tags":{},"startTime":1776332186381,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":14027,"timestamp":6725239345498,"id":570,"parentId":560,"tags":{},"startTime":1776332186381,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":15971,"timestamp":6725239344785,"id":560,"parentId":452,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/container/Errors.js","layer":"ssr"},"startTime":1776332186380,"traceId":"bd5433937c2d2119"},{"name":"read-resource","duration":25440,"timestamp":6725239343566,"id":538,"parentId":527,"tags":{},"startTime":1776332186379,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":34,"timestamp":6725239369019,"id":586,"parentId":527,"tags":{},"startTime":1776332186405,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":25942,"timestamp":6725239343276,"id":527,"parentId":308,"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":1776332186379,"traceId":"bd5433937c2d2119"},{"name":"read-resource","duration":25668,"timestamp":6725239343556,"id":537,"parentId":526,"tags":{},"startTime":1776332186379,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":32,"timestamp":6725239369228,"id":587,"parentId":526,"tags":{},"startTime":1776332186405,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":26129,"timestamp":6725239343187,"id":526,"parentId":270,"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":1776332186379,"traceId":"bd5433937c2d2119"},{"name":"read-resource","duration":25755,"timestamp":6725239343571,"id":539,"parentId":528,"tags":{},"startTime":1776332186379,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":41,"timestamp":6725239369331,"id":588,"parentId":528,"tags":{},"startTime":1776332186405,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":26092,"timestamp":6725239343327,"id":528,"parentId":286,"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":1776332186379,"traceId":"bd5433937c2d2119"},{"name":"read-resource","duration":28296,"timestamp":6725239345311,"id":565,"parentId":557,"tags":{},"startTime":1776332186381,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":30,"timestamp":6725239373617,"id":599,"parentId":557,"tags":{},"startTime":1776332186409,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":29375,"timestamp":6725239344679,"id":557,"parentId":286,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_interop_require_wildcard.js","layer":"ssr"},"startTime":1776332186380,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":3772,"timestamp":6725239371529,"id":596,"parentId":595,"tags":{},"startTime":1776332186407,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":3807,"timestamp":6725239371496,"id":595,"parentId":591,"tags":{},"startTime":1776332186407,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":4291,"timestamp":6725239371367,"id":591,"parentId":503,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/is-hydration-error.js","layer":"ssr"},"startTime":1776332186407,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":4128,"timestamp":6725239371544,"id":598,"parentId":597,"tags":{},"startTime":1776332186407,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":4140,"timestamp":6725239371533,"id":597,"parentId":592,"tags":{},"startTime":1776332186407,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":4535,"timestamp":6725239371394,"id":592,"parentId":503,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/hydration-error-info.js","layer":"ssr"},"startTime":1776332186407,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":2866,"timestamp":6725239375229,"id":602,"parentId":601,"tags":{},"startTime":1776332186411,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":2897,"timestamp":6725239375207,"id":601,"parentId":600,"tags":{},"startTime":1776332186411,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":3222,"timestamp":6725239375102,"id":600,"parentId":521,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/page-path/ensure-leading-slash.js","layer":"ssr"},"startTime":1776332186411,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":1740,"timestamp":6725239377478,"id":614,"parentId":613,"tags":{},"startTime":1776332186413,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":1751,"timestamp":6725239377469,"id":613,"parentId":604,"tags":{},"startTime":1776332186413,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":2483,"timestamp":6725239377038,"id":604,"parentId":531,"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":1776332186413,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":2170,"timestamp":6725239377514,"id":618,"parentId":617,"tags":{},"startTime":1776332186413,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":2199,"timestamp":6725239377488,"id":617,"parentId":606,"tags":{},"startTime":1776332186413,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":2742,"timestamp":6725239377196,"id":606,"parentId":531,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/handle-segment-mismatch.js","layer":"ssr"},"startTime":1776332186413,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":2485,"timestamp":6725239377467,"id":612,"parentId":611,"tags":{},"startTime":1776332186413,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":2506,"timestamp":6725239377446,"id":611,"parentId":603,"tags":{},"startTime":1776332186413,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":3315,"timestamp":6725239376996,"id":603,"parentId":531,"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":1776332186413,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":3158,"timestamp":6725239377487,"id":616,"parentId":615,"tags":{},"startTime":1776332186413,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":3167,"timestamp":6725239377479,"id":615,"parentId":605,"tags":{},"startTime":1776332186413,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":4057,"timestamp":6725239377159,"id":605,"parentId":531,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/handle-mutable.js","layer":"ssr"},"startTime":1776332186413,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":3729,"timestamp":6725239377533,"id":622,"parentId":621,"tags":{},"startTime":1776332186413,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":3740,"timestamp":6725239377526,"id":621,"parentId":608,"tags":{},"startTime":1776332186413,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":4687,"timestamp":6725239377247,"id":608,"parentId":530,"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":1776332186413,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":4483,"timestamp":6725239377548,"id":624,"parentId":623,"tags":{},"startTime":1776332186413,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":4499,"timestamp":6725239377534,"id":623,"parentId":609,"tags":{},"startTime":1776332186413,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":4992,"timestamp":6725239377267,"id":609,"parentId":530,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/should-hard-navigate.js","layer":"ssr"},"startTime":1776332186413,"traceId":"bd5433937c2d2119"},{"name":"read-resource","duration":11800,"timestamp":6725239371440,"id":594,"parentId":590,"tags":{},"startTime":1776332186407,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":28,"timestamp":6725239383258,"id":642,"parentId":590,"tags":{},"startTime":1776332186419,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":12122,"timestamp":6725239371321,"id":590,"parentId":266,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/api/link.js","layer":"ssr"},"startTime":1776332186407,"traceId":"bd5433937c2d2119"},{"name":"read-resource","duration":12023,"timestamp":6725239371425,"id":593,"parentId":589,"tags":{},"startTime":1776332186407,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":23,"timestamp":6725239383452,"id":643,"parentId":589,"tags":{},"startTime":1776332186419,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":12315,"timestamp":6725239371220,"id":589,"parentId":265,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/api/navigation.js","layer":"ssr"},"startTime":1776332186407,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":5828,"timestamp":6725239379117,"id":631,"parentId":630,"tags":{},"startTime":1776332186415,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":5859,"timestamp":6725239379088,"id":630,"parentId":627,"tags":{},"startTime":1776332186415,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":6201,"timestamp":6725239378994,"id":627,"parentId":580,"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":1776332186415,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":7659,"timestamp":6725239377557,"id":626,"parentId":625,"tags":{},"startTime":1776332186413,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":7667,"timestamp":6725239377550,"id":625,"parentId":610,"tags":{},"startTime":1776332186413,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":8193,"timestamp":6725239377293,"id":610,"parentId":530,"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":1776332186413,"traceId":"bd5433937c2d2119"}] +[{"name":"next-swc-transform","duration":6458,"timestamp":6725239379135,"id":633,"parentId":632,"tags":{},"startTime":1776332186415,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":6475,"timestamp":6725239379119,"id":632,"parentId":628,"tags":{},"startTime":1776332186415,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":6702,"timestamp":6725239379033,"id":628,"parentId":581,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/normalized-asset-prefix.js","layer":"ssr"},"startTime":1776332186415,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":6599,"timestamp":6725239379145,"id":635,"parentId":634,"tags":{},"startTime":1776332186415,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":6609,"timestamp":6725239379136,"id":634,"parentId":629,"tags":{},"startTime":1776332186415,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":6854,"timestamp":6725239379055,"id":629,"parentId":559,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/noop-template.js","layer":"ssr"},"startTime":1776332186415,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":6284,"timestamp":6725239379634,"id":639,"parentId":638,"tags":{},"startTime":1776332186415,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":6301,"timestamp":6725239379618,"id":638,"parentId":636,"tags":{},"startTime":1776332186415,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":6493,"timestamp":6725239379558,"id":636,"parentId":560,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/error-source.js","layer":"ssr"},"startTime":1776332186415,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":6417,"timestamp":6725239379645,"id":641,"parentId":640,"tags":{},"startTime":1776332186415,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":6427,"timestamp":6725239379636,"id":640,"parentId":637,"tags":{},"startTime":1776332186415,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":6662,"timestamp":6725239379595,"id":637,"parentId":560,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/getErrorByType.js","layer":"ssr"},"startTime":1776332186415,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":8867,"timestamp":6725239377524,"id":620,"parentId":619,"tags":{},"startTime":1776332186413,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":8876,"timestamp":6725239377516,"id":619,"parentId":607,"tags":{},"startTime":1776332186413,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":10521,"timestamp":6725239377226,"id":607,"parentId":532,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/router-reducer/ppr-navigations.js","layer":"ssr"},"startTime":1776332186413,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":3005,"timestamp":6725239390866,"id":649,"parentId":648,"tags":{},"startTime":1776332186427,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":3042,"timestamp":6725239390836,"id":648,"parentId":644,"tags":{},"startTime":1776332186427,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":3910,"timestamp":6725239390326,"id":644,"parentId":563,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/CodeFrame/styles.js","layer":"ssr"},"startTime":1776332186426,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":3408,"timestamp":6725239390962,"id":653,"parentId":652,"tags":{},"startTime":1776332186427,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":3421,"timestamp":6725239390951,"id":652,"parentId":646,"tags":{},"startTime":1776332186427,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":4099,"timestamp":6725239390468,"id":646,"parentId":563,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Overlay/styles.js","layer":"ssr"},"startTime":1776332186426,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":3620,"timestamp":6725239390973,"id":655,"parentId":654,"tags":{},"startTime":1776332186427,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":3630,"timestamp":6725239390963,"id":654,"parentId":647,"tags":{},"startTime":1776332186427,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":4242,"timestamp":6725239390491,"id":647,"parentId":563,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Terminal/styles.js","layer":"ssr"},"startTime":1776332186426,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":3791,"timestamp":6725239390949,"id":651,"parentId":650,"tags":{},"startTime":1776332186427,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":3872,"timestamp":6725239390869,"id":650,"parentId":645,"tags":{},"startTime":1776332186427,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":4451,"timestamp":6725239390430,"id":645,"parentId":563,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/LeftRightDialogHeader/styles.js","layer":"ssr"},"startTime":1776332186426,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":3140,"timestamp":6725239393798,"id":659,"parentId":658,"tags":{},"startTime":1776332186429,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":3160,"timestamp":6725239393779,"id":658,"parentId":656,"tags":{},"startTime":1776332186429,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":3457,"timestamp":6725239393682,"id":656,"parentId":560,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/icons/CloseIcon.js","layer":"ssr"},"startTime":1776332186429,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":4726,"timestamp":6725239393808,"id":661,"parentId":660,"tags":{},"startTime":1776332186429,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":4737,"timestamp":6725239393800,"id":660,"parentId":657,"tags":{},"startTime":1776332186429,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":5542,"timestamp":6725239393740,"id":657,"parentId":560,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/container/RuntimeError/component-stack-pseudo-html.js","layer":"ssr"},"startTime":1776332186429,"traceId":"bd5433937c2d2119"},{"name":"read-resource","duration":8195,"timestamp":6725239395548,"id":663,"parentId":662,"tags":{},"startTime":1776332186431,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":29,"timestamp":6725239403750,"id":673,"parentId":662,"tags":{},"startTime":1776332186439,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":8686,"timestamp":6725239395388,"id":662,"parentId":591,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/is-error.js","layer":"ssr"},"startTime":1776332186431,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":2143,"timestamp":6725239402219,"id":669,"parentId":668,"tags":{},"startTime":1776332186438,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":2163,"timestamp":6725239402200,"id":668,"parentId":667,"tags":{},"startTime":1776332186438,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":2729,"timestamp":6725239402148,"id":667,"parentId":378,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/strip-ansi/index.js","layer":"ssr"},"startTime":1776332186438,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":5406,"timestamp":6725239399594,"id":666,"parentId":665,"tags":{},"startTime":1776332186435,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":5429,"timestamp":6725239399572,"id":665,"parentId":664,"tags":{},"startTime":1776332186435,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":8324,"timestamp":6725239399455,"id":664,"parentId":590,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/link.js","layer":"ssr"},"startTime":1776332186435,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":10298,"timestamp":6725239402653,"id":672,"parentId":671,"tags":{},"startTime":1776332186438,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":10319,"timestamp":6725239402634,"id":671,"parentId":670,"tags":{},"startTime":1776332186438,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":11600,"timestamp":6725239402589,"id":670,"parentId":637,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/stack-frame.js","layer":"ssr"},"startTime":1776332186438,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":5798,"timestamp":6725239409718,"id":685,"parentId":684,"tags":{},"startTime":1776332186445,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":5809,"timestamp":6725239409710,"id":684,"parentId":676,"tags":{},"startTime":1776332186445,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":6301,"timestamp":6725239409470,"id":676,"parentId":559,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Terminal/index.js","layer":"ssr"},"startTime":1776332186445,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":6074,"timestamp":6725239409709,"id":683,"parentId":682,"tags":{},"startTime":1776332186445,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":6086,"timestamp":6725239409697,"id":682,"parentId":675,"tags":{},"startTime":1776332186445,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":6465,"timestamp":6725239409443,"id":675,"parentId":559,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Overlay/index.js","layer":"ssr"},"startTime":1776332186445,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":6239,"timestamp":6725239409694,"id":681,"parentId":680,"tags":{},"startTime":1776332186445,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":6285,"timestamp":6725239409649,"id":680,"parentId":674,"tags":{},"startTime":1776332186445,"traceId":"bd5433937c2d2119"},{"name":"build-module-ts","duration":6912,"timestamp":6725239409349,"id":674,"parentId":459,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/lib/utils.ts","layer":"ssr"},"startTime":1776332186445,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":6727,"timestamp":6725239409735,"id":689,"parentId":688,"tags":{},"startTime":1776332186445,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":6736,"timestamp":6725239409728,"id":688,"parentId":678,"tags":{},"startTime":1776332186445,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":7159,"timestamp":6725239409515,"id":678,"parentId":560,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/LeftRightDialogHeader/index.js","layer":"ssr"},"startTime":1776332186445,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":6944,"timestamp":6725239409743,"id":691,"parentId":690,"tags":{},"startTime":1776332186445,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":6951,"timestamp":6725239409736,"id":690,"parentId":679,"tags":{},"startTime":1776332186445,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":7319,"timestamp":6725239409534,"id":679,"parentId":657,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/icons/CollapseIcon.js","layer":"ssr"},"startTime":1776332186445,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":7143,"timestamp":6725239409727,"id":687,"parentId":686,"tags":{},"startTime":1776332186445,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":7152,"timestamp":6725239409719,"id":686,"parentId":677,"tags":{},"startTime":1776332186445,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":7819,"timestamp":6725239409494,"id":677,"parentId":563,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/container/RuntimeError/index.js","layer":"ssr"},"startTime":1776332186445,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":3887,"timestamp":6725239418206,"id":694,"parentId":693,"tags":{},"startTime":1776332186454,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":3917,"timestamp":6725239418179,"id":693,"parentId":692,"tags":{},"startTime":1776332186454,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":4551,"timestamp":6725239417746,"id":692,"parentId":504,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/dev/noop-turbopack-hmr.js","layer":"ssr"},"startTime":1776332186453,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":2627,"timestamp":6725239419679,"id":706,"parentId":705,"tags":{},"startTime":1776332186455,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":2635,"timestamp":6725239419672,"id":705,"parentId":698,"tags":{},"startTime":1776332186455,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":2939,"timestamp":6725239419612,"id":698,"parentId":563,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Toast/index.js","layer":"ssr"},"startTime":1776332186455,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":2900,"timestamp":6725239419662,"id":702,"parentId":701,"tags":{},"startTime":1776332186455,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":2910,"timestamp":6725239419653,"id":701,"parentId":696,"tags":{},"startTime":1776332186455,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":3163,"timestamp":6725239419565,"id":696,"parentId":559,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/VersionStalenessInfo/index.js","layer":"ssr"},"startTime":1776332186455,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":3163,"timestamp":6725239419651,"id":700,"parentId":699,"tags":{},"startTime":1776332186455,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":3182,"timestamp":6725239419633,"id":699,"parentId":695,"tags":{},"startTime":1776332186455,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":3458,"timestamp":6725239419524,"id":695,"parentId":559,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Dialog/index.js","layer":"ssr"},"startTime":1776332186455,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":3344,"timestamp":6725239419671,"id":704,"parentId":703,"tags":{},"startTime":1776332186455,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":3352,"timestamp":6725239419663,"id":703,"parentId":697,"tags":{},"startTime":1776332186455,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":3742,"timestamp":6725239419591,"id":697,"parentId":561,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/hot-linked-text/index.js","layer":"ssr"},"startTime":1776332186455,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":1962,"timestamp":6725239425539,"id":722,"parentId":721,"tags":{},"startTime":1776332186461,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":1972,"timestamp":6725239425531,"id":721,"parentId":710,"tags":{},"startTime":1776332186461,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":2604,"timestamp":6725239425306,"id":710,"parentId":664,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/get-domain-locale.js","layer":"ssr"},"startTime":1776332186461,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":5481,"timestamp":6725239425519,"id":718,"parentId":717,"tags":{},"startTime":1776332186461,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":5517,"timestamp":6725239425510,"id":717,"parentId":708,"tags":{},"startTime":1776332186461,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":6440,"timestamp":6725239425252,"id":708,"parentId":664,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/add-locale.js","layer":"ssr"},"startTime":1776332186461,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":6258,"timestamp":6725239425530,"id":720,"parentId":719,"tags":{},"startTime":1776332186461,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":6271,"timestamp":6725239425520,"id":719,"parentId":709,"tags":{},"startTime":1776332186461,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":7376,"timestamp":6725239425279,"id":709,"parentId":664,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/use-intersection.js","layer":"ssr"},"startTime":1776332186461,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":7172,"timestamp":6725239425508,"id":716,"parentId":715,"tags":{},"startTime":1776332186461,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":7198,"timestamp":6725239425483,"id":715,"parentId":707,"tags":{},"startTime":1776332186461,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":8001,"timestamp":6725239425184,"id":707,"parentId":664,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/resolve-href.js","layer":"ssr"},"startTime":1776332186461,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":7644,"timestamp":6725239425554,"id":726,"parentId":725,"tags":{},"startTime":1776332186461,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":7652,"timestamp":6725239425547,"id":725,"parentId":712,"tags":{},"startTime":1776332186461,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":7972,"timestamp":6725239425346,"id":712,"parentId":664,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/is-local-url.js","layer":"ssr"},"startTime":1776332186461,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":8667,"timestamp":6725239425547,"id":724,"parentId":723,"tags":{},"startTime":1776332186461,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":8676,"timestamp":6725239425539,"id":723,"parentId":711,"tags":{},"startTime":1776332186461,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":9491,"timestamp":6725239425327,"id":711,"parentId":664,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/utils.js","layer":"ssr"},"startTime":1776332186461,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":9260,"timestamp":6725239425569,"id":730,"parentId":729,"tags":{},"startTime":1776332186461,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":9276,"timestamp":6725239425563,"id":729,"parentId":714,"tags":{},"startTime":1776332186461,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":9612,"timestamp":6725239425383,"id":714,"parentId":662,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/is-plain-object.js","layer":"ssr"},"startTime":1776332186461,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":9446,"timestamp":6725239425562,"id":728,"parentId":727,"tags":{},"startTime":1776332186461,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":9453,"timestamp":6725239425555,"id":727,"parentId":713,"tags":{},"startTime":1776332186461,"traceId":"bd5433937c2d2119"}] +[{"name":"build-module-js","duration":10113,"timestamp":6725239425364,"id":713,"parentId":664,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/format-url.js","layer":"ssr"},"startTime":1776332186461,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":6425,"timestamp":6725239430631,"id":737,"parentId":736,"tags":{},"startTime":1776332186466,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":6453,"timestamp":6725239430605,"id":736,"parentId":731,"tags":{},"startTime":1776332186466,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":7243,"timestamp":6725239430001,"id":731,"parentId":677,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/group-stack-frames-by-framework.js","layer":"ssr"},"startTime":1776332186466,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":6606,"timestamp":6725239430655,"id":741,"parentId":740,"tags":{},"startTime":1776332186466,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":6615,"timestamp":6725239430647,"id":740,"parentId":733,"tags":{},"startTime":1776332186466,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":7331,"timestamp":6725239430298,"id":733,"parentId":678,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/LeftRightDialogHeader/LeftRightDialogHeader.js","layer":"ssr"},"startTime":1776332186466,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":7092,"timestamp":6725239430645,"id":739,"parentId":738,"tags":{},"startTime":1776332186466,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":7104,"timestamp":6725239430634,"id":738,"parentId":732,"tags":{},"startTime":1776332186466,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":7934,"timestamp":6725239430255,"id":732,"parentId":676,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Terminal/Terminal.js","layer":"ssr"},"startTime":1776332186466,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":7564,"timestamp":6725239430664,"id":743,"parentId":742,"tags":{},"startTime":1776332186466,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":7573,"timestamp":6725239430657,"id":742,"parentId":734,"tags":{},"startTime":1776332186466,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":8104,"timestamp":6725239430402,"id":734,"parentId":677,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/container/RuntimeError/GroupedStackFrames.js","layer":"ssr"},"startTime":1776332186466,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":7880,"timestamp":6725239430673,"id":745,"parentId":744,"tags":{},"startTime":1776332186466,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":7888,"timestamp":6725239430665,"id":744,"parentId":735,"tags":{},"startTime":1776332186466,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":8298,"timestamp":6725239430464,"id":735,"parentId":675,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Overlay/Overlay.js","layer":"ssr"},"startTime":1776332186466,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":2905,"timestamp":6725239450898,"id":765,"parentId":764,"tags":{},"startTime":1776332186487,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":2921,"timestamp":6725239450886,"id":764,"parentId":749,"tags":{},"startTime":1776332186487,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":3790,"timestamp":6725239450385,"id":749,"parentId":698,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Toast/styles.js","layer":"ssr"},"startTime":1776332186486,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":3282,"timestamp":6725239450908,"id":767,"parentId":766,"tags":{},"startTime":1776332186487,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":3291,"timestamp":6725239450899,"id":766,"parentId":750,"tags":{},"startTime":1776332186487,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":3964,"timestamp":6725239450424,"id":750,"parentId":698,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Toast/Toast.js","layer":"ssr"},"startTime":1776332186486,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":3520,"timestamp":6725239450883,"id":763,"parentId":762,"tags":{},"startTime":1776332186487,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":3559,"timestamp":6725239450845,"id":762,"parentId":748,"tags":{},"startTime":1776332186487,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":4962,"timestamp":6725239450250,"id":748,"parentId":697,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/magic-identifier.js","layer":"ssr"},"startTime":1776332186486,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":4314,"timestamp":6725239450917,"id":769,"parentId":768,"tags":{},"startTime":1776332186487,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":4323,"timestamp":6725239450908,"id":768,"parentId":751,"tags":{},"startTime":1776332186487,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":5268,"timestamp":6725239450459,"id":751,"parentId":696,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/VersionStalenessInfo/styles.js","layer":"ssr"},"startTime":1776332186486,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":5038,"timestamp":6725239450934,"id":773,"parentId":772,"tags":{},"startTime":1776332186487,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":5053,"timestamp":6725239450927,"id":772,"parentId":753,"tags":{},"startTime":1776332186487,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":7549,"timestamp":6725239450530,"id":753,"parentId":695,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Dialog/Dialog.js","layer":"ssr"},"startTime":1776332186486,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":7148,"timestamp":6725239450950,"id":777,"parentId":776,"tags":{},"startTime":1776332186487,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":7156,"timestamp":6725239450943,"id":776,"parentId":755,"tags":{},"startTime":1776332186487,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":7721,"timestamp":6725239450586,"id":755,"parentId":695,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Dialog/DialogContent.js","layer":"ssr"},"startTime":1776332186486,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":13940,"timestamp":6725239450926,"id":771,"parentId":770,"tags":{},"startTime":1776332186487,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":13952,"timestamp":6725239450918,"id":770,"parentId":752,"tags":{},"startTime":1776332186487,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":15956,"timestamp":6725239450500,"id":752,"parentId":696,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/VersionStalenessInfo/VersionStalenessInfo.js","layer":"ssr"},"startTime":1776332186486,"traceId":"bd5433937c2d2119"},{"name":"read-resource","duration":26898,"timestamp":6725239439771,"id":747,"parentId":746,"tags":{},"startTime":1776332186475,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":36,"timestamp":6725239466676,"id":811,"parentId":746,"tags":{},"startTime":1776332186502,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":27694,"timestamp":6725239439542,"id":746,"parentId":502,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/stacktrace-parser/stack-trace-parser.cjs.js","layer":"ssr"},"startTime":1776332186475,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":16323,"timestamp":6725239450942,"id":775,"parentId":774,"tags":{},"startTime":1776332186487,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":16331,"timestamp":6725239450935,"id":774,"parentId":754,"tags":{},"startTime":1776332186487,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":16889,"timestamp":6725239450561,"id":754,"parentId":695,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Dialog/DialogBody.js","layer":"ssr"},"startTime":1776332186486,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":16501,"timestamp":6725239450959,"id":779,"parentId":778,"tags":{},"startTime":1776332186487,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":16509,"timestamp":6725239450951,"id":778,"parentId":756,"tags":{},"startTime":1776332186487,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":16989,"timestamp":6725239450607,"id":756,"parentId":695,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Dialog/DialogHeader.js","layer":"ssr"},"startTime":1776332186486,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":16639,"timestamp":6725239450967,"id":781,"parentId":780,"tags":{},"startTime":1776332186487,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":16647,"timestamp":6725239450960,"id":780,"parentId":757,"tags":{},"startTime":1776332186487,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":17135,"timestamp":6725239450625,"id":757,"parentId":695,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Dialog/styles.js","layer":"ssr"},"startTime":1776332186486,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":14147,"timestamp":6725239453622,"id":787,"parentId":786,"tags":{},"startTime":1776332186489,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":14211,"timestamp":6725239453559,"id":786,"parentId":782,"tags":{},"startTime":1776332186489,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":14606,"timestamp":6725239453365,"id":782,"parentId":709,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/request-idle-callback.js","layer":"ssr"},"startTime":1776332186489,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":14313,"timestamp":6725239453670,"id":789,"parentId":788,"tags":{},"startTime":1776332186489,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":14350,"timestamp":6725239453634,"id":788,"parentId":783,"tags":{},"startTime":1776332186489,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":14809,"timestamp":6725239453440,"id":783,"parentId":707,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/querystring.js","layer":"ssr"},"startTime":1776332186489,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":14577,"timestamp":6725239453684,"id":791,"parentId":790,"tags":{},"startTime":1776332186489,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":14589,"timestamp":6725239453672,"id":790,"parentId":784,"tags":{},"startTime":1776332186489,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":15058,"timestamp":6725239453470,"id":784,"parentId":707,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/interpolate-as.js","layer":"ssr"},"startTime":1776332186489,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":14849,"timestamp":6725239453695,"id":793,"parentId":792,"tags":{},"startTime":1776332186489,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":14859,"timestamp":6725239453685,"id":792,"parentId":785,"tags":{},"startTime":1776332186489,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":15173,"timestamp":6725239453492,"id":785,"parentId":707,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/omit.js","layer":"ssr"},"startTime":1776332186489,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":9597,"timestamp":6725239459094,"id":806,"parentId":805,"tags":{},"startTime":1776332186495,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":9606,"timestamp":6725239459086,"id":805,"parentId":797,"tags":{},"startTime":1776332186495,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":10139,"timestamp":6725239458806,"id":797,"parentId":734,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/container/RuntimeError/CallStackFrame.js","layer":"ssr"},"startTime":1776332186494,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":9872,"timestamp":6725239459085,"id":804,"parentId":803,"tags":{},"startTime":1776332186495,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":9882,"timestamp":6725239459075,"id":803,"parentId":796,"tags":{},"startTime":1776332186495,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":10399,"timestamp":6725239458783,"id":796,"parentId":732,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Terminal/EditorLink.js","layer":"ssr"},"startTime":1776332186494,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":10127,"timestamp":6725239459111,"id":810,"parentId":809,"tags":{},"startTime":1776332186495,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":10135,"timestamp":6725239459104,"id":809,"parentId":799,"tags":{},"startTime":1776332186495,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":10576,"timestamp":6725239458869,"id":799,"parentId":735,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Overlay/body-locker.js","layer":"ssr"},"startTime":1776332186495,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":10388,"timestamp":6725239459072,"id":802,"parentId":801,"tags":{},"startTime":1776332186495,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":10418,"timestamp":6725239459044,"id":801,"parentId":795,"tags":{},"startTime":1776332186495,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":11505,"timestamp":6725239458750,"id":795,"parentId":734,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/icons/FrameworkIcon.js","layer":"ssr"},"startTime":1776332186494,"traceId":"bd5433937c2d2119"},{"name":"read-resource","duration":34367,"timestamp":6725239450787,"id":760,"parentId":758,"tags":{},"startTime":1776332186486,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":41,"timestamp":6725239485171,"id":812,"parentId":758,"tags":{},"startTime":1776332186521,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":35169,"timestamp":6725239450680,"id":758,"parentId":529,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_class_private_field_loose_key.js","layer":"ssr"},"startTime":1776332186486,"traceId":"bd5433937c2d2119"},{"name":"read-resource","duration":35132,"timestamp":6725239450801,"id":761,"parentId":759,"tags":{},"startTime":1776332186486,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":29,"timestamp":6725239485938,"id":813,"parentId":759,"tags":{},"startTime":1776332186522,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":35527,"timestamp":6725239450736,"id":759,"parentId":529,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_class_private_field_loose_base.js","layer":"ssr"},"startTime":1776332186486,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":28476,"timestamp":6725239459103,"id":808,"parentId":807,"tags":{},"startTime":1776332186495,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":28493,"timestamp":6725239459095,"id":807,"parentId":798,"tags":{},"startTime":1776332186495,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":39223,"timestamp":6725239458848,"id":798,"parentId":735,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Overlay/maintain--tab-focus.js","layer":"ssr"},"startTime":1776332186495,"traceId":"bd5433937c2d2119"},{"name":"read-resource","duration":41549,"timestamp":6725239458985,"id":800,"parentId":794,"tags":{},"startTime":1776332186495,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":32,"timestamp":6725239500544,"id":817,"parentId":794,"tags":{},"startTime":1776332186536,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":42167,"timestamp":6725239458644,"id":794,"parentId":559,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_tagged_template_literal_loose.js","layer":"ssr"},"startTime":1776332186494,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":2009,"timestamp":6725239499945,"id":816,"parentId":815,"tags":{},"startTime":1776332186536,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":2050,"timestamp":6725239499907,"id":815,"parentId":814,"tags":{},"startTime":1776332186536,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":2590,"timestamp":6725239499606,"id":814,"parentId":677,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/CodeFrame/index.js","layer":"ssr"},"startTime":1776332186535,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":2087,"timestamp":6725239501730,"id":823,"parentId":822,"tags":{},"startTime":1776332186537,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":2117,"timestamp":6725239501703,"id":822,"parentId":819,"tags":{},"startTime":1776332186537,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":3137,"timestamp":6725239501476,"id":819,"parentId":784,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/route-matcher.js","layer":"ssr"},"startTime":1776332186537,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":2473,"timestamp":6725239502401,"id":831,"parentId":830,"tags":{},"startTime":1776332186538,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":2483,"timestamp":6725239502392,"id":830,"parentId":827,"tags":{},"startTime":1776332186538,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":2763,"timestamp":6725239502331,"id":827,"parentId":753,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/hooks/use-on-click-outside.js","layer":"ssr"},"startTime":1776332186538,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":4428,"timestamp":6725239502390,"id":829,"parentId":828,"tags":{},"startTime":1776332186538,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":4450,"timestamp":6725239502371,"id":828,"parentId":826,"tags":{},"startTime":1776332186538,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":6335,"timestamp":6725239502289,"id":826,"parentId":797,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/use-open-in-editor.js","layer":"ssr"},"startTime":1776332186538,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":6911,"timestamp":6725239501743,"id":825,"parentId":824,"tags":{},"startTime":1776332186537,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":6939,"timestamp":6725239501732,"id":824,"parentId":820,"tags":{},"startTime":1776332186537,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":9146,"timestamp":6725239501611,"id":820,"parentId":784,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/route-regex.js","layer":"ssr"},"startTime":1776332186537,"traceId":"bd5433937c2d2119"},{"name":"read-resource","duration":10753,"timestamp":6725239501661,"id":821,"parentId":818,"tags":{},"startTime":1776332186537,"traceId":"bd5433937c2d2119"}] +[{"name":"next-swc-loader","duration":35,"timestamp":6725239512616,"id":835,"parentId":818,"tags":{},"startTime":1776332186548,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":11499,"timestamp":6725239501269,"id":818,"parentId":664,"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":1776332186537,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":1973,"timestamp":6725239511309,"id":834,"parentId":833,"tags":{},"startTime":1776332186547,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":2036,"timestamp":6725239511248,"id":833,"parentId":832,"tags":{},"startTime":1776332186547,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":2426,"timestamp":6725239511021,"id":832,"parentId":707,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/index.js","layer":"ssr"},"startTime":1776332186547,"traceId":"bd5433937c2d2119"},{"name":"read-resource","duration":65,"timestamp":6725239513787,"id":838,"parentId":836,"tags":{},"startTime":1776332186549,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":154,"timestamp":6725239513856,"id":841,"parentId":836,"tags":{},"startTime":1776332186550,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":809,"timestamp":6725239513599,"id":836,"parentId":820,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/constants.js","layer":"ssr"},"startTime":1776332186549,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":2065,"timestamp":6725239513822,"id":840,"parentId":839,"tags":{},"startTime":1776332186549,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":2107,"timestamp":6725239513800,"id":839,"parentId":837,"tags":{},"startTime":1776332186549,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":2725,"timestamp":6725239513746,"id":837,"parentId":814,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/CodeFrame/CodeFrame.js","layer":"ssr"},"startTime":1776332186549,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":3950,"timestamp":6725239515074,"id":844,"parentId":843,"tags":{},"startTime":1776332186551,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":3972,"timestamp":6725239515053,"id":843,"parentId":842,"tags":{},"startTime":1776332186551,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":4190,"timestamp":6725239514975,"id":842,"parentId":820,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/escape-regexp.js","layer":"ssr"},"startTime":1776332186551,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":3640,"timestamp":6725239515581,"id":850,"parentId":849,"tags":{},"startTime":1776332186551,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":3651,"timestamp":6725239515572,"id":849,"parentId":846,"tags":{},"startTime":1776332186551,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":3802,"timestamp":6725239515525,"id":846,"parentId":832,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/is-dynamic.js","layer":"ssr"},"startTime":1776332186551,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":3774,"timestamp":6725239515570,"id":848,"parentId":847,"tags":{},"startTime":1776332186551,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":3793,"timestamp":6725239515552,"id":847,"parentId":845,"tags":{},"startTime":1776332186551,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":4346,"timestamp":6725239515482,"id":845,"parentId":832,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/sorted-routes.js","layer":"ssr"},"startTime":1776332186551,"traceId":"bd5433937c2d2119"},{"name":"read-resource","duration":298,"timestamp":6725239520432,"id":852,"parentId":851,"tags":{},"startTime":1776332186556,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":34,"timestamp":6725239520744,"id":853,"parentId":851,"tags":{},"startTime":1776332186556,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":1706,"timestamp":6725239520367,"id":851,"parentId":732,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/anser/index.js","layer":"ssr"},"startTime":1776332186556,"traceId":"bd5433937c2d2119"},{"name":"read-resource","duration":389,"timestamp":6725239523621,"id":855,"parentId":854,"tags":{},"startTime":1776332186559,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":30,"timestamp":6725239524024,"id":858,"parentId":854,"tags":{},"startTime":1776332186560,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":1305,"timestamp":6725239523548,"id":854,"parentId":798,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/css.escape/css.escape.js","layer":"ssr"},"startTime":1776332186559,"traceId":"bd5433937c2d2119"},{"name":"read-resource","duration":1203,"timestamp":6725239523743,"id":857,"parentId":856,"tags":{},"startTime":1776332186559,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":102,"timestamp":6725239524957,"id":859,"parentId":856,"tags":{},"startTime":1776332186561,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":5035,"timestamp":6725239523694,"id":856,"parentId":798,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/platform/platform.js","layer":"ssr"},"startTime":1776332186559,"traceId":"bd5433937c2d2119"},{"name":"make","duration":579389,"timestamp":6725238950687,"id":119,"parentId":118,"tags":{},"startTime":1776332185986,"traceId":"bd5433937c2d2119"},{"name":"chunk-graph","duration":2877,"timestamp":6725239537069,"id":861,"parentId":860,"tags":{},"startTime":1776332186573,"traceId":"bd5433937c2d2119"},{"name":"optimize-modules","duration":4,"timestamp":6725239539965,"id":863,"parentId":860,"tags":{},"startTime":1776332186576,"traceId":"bd5433937c2d2119"},{"name":"optimize-chunks","duration":2529,"timestamp":6725239539979,"id":864,"parentId":860,"tags":{},"startTime":1776332186576,"traceId":"bd5433937c2d2119"},{"name":"optimize-tree","duration":5,"timestamp":6725239542522,"id":865,"parentId":860,"tags":{},"startTime":1776332186578,"traceId":"bd5433937c2d2119"},{"name":"optimize-chunk-modules","duration":2,"timestamp":6725239542539,"id":866,"parentId":860,"tags":{},"startTime":1776332186578,"traceId":"bd5433937c2d2119"},{"name":"optimize","duration":3194,"timestamp":6725239539958,"id":862,"parentId":860,"tags":{},"startTime":1776332186576,"traceId":"bd5433937c2d2119"},{"name":"module-hash","duration":4768,"timestamp":6725239545326,"id":867,"parentId":860,"tags":{},"startTime":1776332186581,"traceId":"bd5433937c2d2119"},{"name":"code-generation","duration":12373,"timestamp":6725239550103,"id":868,"parentId":860,"tags":{},"startTime":1776332186586,"traceId":"bd5433937c2d2119"},{"name":"hash","duration":3326,"timestamp":6725239566246,"id":869,"parentId":860,"tags":{},"startTime":1776332186602,"traceId":"bd5433937c2d2119"},{"name":"code-generation-jobs","duration":328,"timestamp":6725239569572,"id":870,"parentId":860,"tags":{},"startTime":1776332186605,"traceId":"bd5433937c2d2119"},{"name":"module-assets","duration":128,"timestamp":6725239569848,"id":871,"parentId":860,"tags":{},"startTime":1776332186606,"traceId":"bd5433937c2d2119"},{"name":"create-chunk-assets","duration":51237,"timestamp":6725239569980,"id":872,"parentId":860,"tags":{},"startTime":1776332186606,"traceId":"bd5433937c2d2119"},{"name":"seal","duration":86643,"timestamp":6725239536371,"id":860,"parentId":118,"tags":{},"startTime":1776332186572,"traceId":"bd5433937c2d2119"},{"name":"webpack-compilation","duration":674517,"timestamp":6725238949527,"id":118,"parentId":116,"tags":{"name":"server"},"startTime":1776332185985,"traceId":"bd5433937c2d2119"},{"name":"emit","duration":6546,"timestamp":6725239624075,"id":873,"parentId":116,"tags":{},"startTime":1776332186660,"traceId":"bd5433937c2d2119"},{"name":"webpack-invalidated-server","duration":690818,"timestamp":6725238940191,"id":116,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776332185976,"traceId":"bd5433937c2d2119"},{"name":"build-module","duration":1024,"timestamp":6725239646372,"id":881,"parentId":878,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2Frecommendations%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!","layer":"app-pages-browser"},"startTime":1776332186682,"traceId":"bd5433937c2d2119"},{"name":"build-module","duration":1760,"timestamp":6725239647450,"id":882,"parentId":879,"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%2Fcomponents%2Fauth-guard.tsx%22%2C%22ids%22%3A%5B%22AuthGuard%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fnav.tsx%22%2C%22ids%22%3A%5B%22SidebarNav%22%2C%22MobileBottomNav%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fuser-menu.tsx%22%2C%22ids%22%3A%5B%22UserMenu%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fhooks%2Fuse-auth.tsx%22%2C%22ids%22%3A%5B%22AuthProvider%22%5D%7D&server=false!","layer":"app-pages-browser"},"startTime":1776332186683,"traceId":"bd5433937c2d2119"},{"name":"build-module","duration":2162,"timestamp":6725239649236,"id":883,"parentId":880,"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":1776332186685,"traceId":"bd5433937c2d2119"},{"name":"read-resource","duration":4,"timestamp":6725239656565,"id":885,"parentId":884,"tags":{},"startTime":1776332186692,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":1824,"timestamp":6725239659045,"id":901,"parentId":900,"tags":{},"startTime":1776332186695,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":1877,"timestamp":6725239659005,"id":900,"parentId":888,"tags":{},"startTime":1776332186695,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":5389,"timestamp":6725239657074,"id":888,"parentId":877,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/app-next-dev.js","layer":"app-pages-browser"},"startTime":1776332186693,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":6461,"timestamp":6725239656652,"id":887,"parentId":886,"tags":{},"startTime":1776332186692,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":6539,"timestamp":6725239656576,"id":886,"parentId":884,"tags":{},"startTime":1776332186692,"traceId":"bd5433937c2d2119"},{"name":"build-module-mjs","duration":8075,"timestamp":6725239656192,"id":884,"parentId":882,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next-themes/dist/index.mjs","layer":"app-pages-browser"},"startTime":1776332186692,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":5200,"timestamp":6725239659086,"id":903,"parentId":902,"tags":{},"startTime":1776332186695,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":5240,"timestamp":6725239659047,"id":902,"parentId":889,"tags":{},"startTime":1776332186695,"traceId":"bd5433937c2d2119"},{"name":"build-module-tsx","duration":6342,"timestamp":6725239658429,"id":889,"parentId":882,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/auth-guard.tsx","layer":"app-pages-browser"},"startTime":1776332186694,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":5640,"timestamp":6725239659154,"id":907,"parentId":906,"tags":{},"startTime":1776332186695,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":5668,"timestamp":6725239659126,"id":906,"parentId":891,"tags":{},"startTime":1776332186695,"traceId":"bd5433937c2d2119"},{"name":"build-module-tsx","duration":6506,"timestamp":6725239658718,"id":891,"parentId":882,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/user-menu.tsx","layer":"app-pages-browser"},"startTime":1776332186694,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":6139,"timestamp":6725239659125,"id":905,"parentId":904,"tags":{},"startTime":1776332186695,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":6177,"timestamp":6725239659087,"id":904,"parentId":890,"tags":{},"startTime":1776332186695,"traceId":"bd5433937c2d2119"},{"name":"build-module-tsx","duration":8171,"timestamp":6725239658672,"id":890,"parentId":882,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/nav.tsx","layer":"app-pages-browser"},"startTime":1776332186694,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":7687,"timestamp":6725239659198,"id":913,"parentId":912,"tags":{},"startTime":1776332186695,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":7696,"timestamp":6725239659190,"id":912,"parentId":894,"tags":{},"startTime":1776332186695,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":8592,"timestamp":6725239658837,"id":894,"parentId":883,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/client-page.js","layer":"app-pages-browser"},"startTime":1776332186695,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":8275,"timestamp":6725239659180,"id":909,"parentId":908,"tags":{},"startTime":1776332186695,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":8302,"timestamp":6725239659154,"id":908,"parentId":892,"tags":{},"startTime":1776332186695,"traceId":"bd5433937c2d2119"},{"name":"build-module-tsx","duration":9306,"timestamp":6725239658761,"id":892,"parentId":882,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/hooks/use-auth.tsx","layer":"app-pages-browser"},"startTime":1776332186694,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":14943,"timestamp":6725239659223,"id":919,"parentId":918,"tags":{},"startTime":1776332186695,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":14954,"timestamp":6725239659215,"id":918,"parentId":897,"tags":{},"startTime":1776332186695,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":15968,"timestamp":6725239658915,"id":897,"parentId":883,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/not-found-boundary.js","layer":"app-pages-browser"},"startTime":1776332186695,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":15695,"timestamp":6725239659206,"id":915,"parentId":914,"tags":{},"startTime":1776332186695,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":15704,"timestamp":6725239659199,"id":914,"parentId":895,"tags":{},"startTime":1776332186695,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":16616,"timestamp":6725239658859,"id":895,"parentId":883,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/error-boundary.js","layer":"app-pages-browser"},"startTime":1776332186695,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":16254,"timestamp":6725239659231,"id":921,"parentId":920,"tags":{},"startTime":1776332186695,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":16262,"timestamp":6725239659224,"id":920,"parentId":898,"tags":{},"startTime":1776332186695,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":16904,"timestamp":6725239658935,"id":898,"parentId":883,"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":1776332186695,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":17024,"timestamp":6725239659190,"id":911,"parentId":910,"tags":{},"startTime":1776332186695,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":17034,"timestamp":6725239659181,"id":910,"parentId":893,"tags":{},"startTime":1776332186695,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":18960,"timestamp":6725239658810,"id":893,"parentId":883,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/app-router.js","layer":"app-pages-browser"},"startTime":1776332186694,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":18587,"timestamp":6725239659214,"id":917,"parentId":916,"tags":{},"startTime":1776332186695,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":18595,"timestamp":6725239659207,"id":916,"parentId":896,"tags":{},"startTime":1776332186695,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":20309,"timestamp":6725239658882,"id":896,"parentId":883,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/layout-router.js","layer":"app-pages-browser"},"startTime":1776332186695,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":20095,"timestamp":6725239659259,"id":923,"parentId":922,"tags":{},"startTime":1776332186695,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":20130,"timestamp":6725239659232,"id":922,"parentId":899,"tags":{},"startTime":1776332186695,"traceId":"bd5433937c2d2119"},{"name":"build-module-tsx","duration":22711,"timestamp":6725239658959,"id":899,"parentId":881,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/recommendations/page.tsx","layer":"app-pages-browser"},"startTime":1776332186695,"traceId":"bd5433937c2d2119"},{"name":"read-resource","duration":222,"timestamp":6725239691612,"id":928,"parentId":925,"tags":{},"startTime":1776332186727,"traceId":"bd5433937c2d2119"},{"name":"read-resource","duration":272,"timestamp":6725239691619,"id":929,"parentId":926,"tags":{},"startTime":1776332186727,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":67,"timestamp":6725239691852,"id":933,"parentId":925,"tags":{},"startTime":1776332186728,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":25,"timestamp":6725239691894,"id":934,"parentId":926,"tags":{},"startTime":1776332186728,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":807,"timestamp":6725239691455,"id":925,"parentId":889,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/api/navigation.js","layer":"app-pages-browser"},"startTime":1776332186727,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":890,"timestamp":6725239691524,"id":926,"parentId":890,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/api/link.js","layer":"app-pages-browser"},"startTime":1776332186727,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":4127,"timestamp":6725239691746,"id":932,"parentId":931,"tags":{},"startTime":1776332186727,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":4164,"timestamp":6725239691712,"id":931,"parentId":924,"tags":{},"startTime":1776332186727,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":5070,"timestamp":6725239691366,"id":924,"parentId":894,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/search-params.js","layer":"app-pages-browser"},"startTime":1776332186727,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":2486,"timestamp":6725239694287,"id":967,"parentId":966,"tags":{},"startTime":1776332186730,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":2497,"timestamp":6725239694277,"id":966,"parentId":936,"tags":{},"startTime":1776332186730,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":3901,"timestamp":6725239693658,"id":936,"parentId":893,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/remove-base-path.js","layer":"app-pages-browser"},"startTime":1776332186729,"traceId":"bd5433937c2d2119"}] +[{"name":"next-swc-transform","duration":3404,"timestamp":6725239694275,"id":965,"parentId":964,"tags":{},"startTime":1776332186730,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":3426,"timestamp":6725239694254,"id":964,"parentId":935,"tags":{},"startTime":1776332186730,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":4428,"timestamp":6725239693614,"id":935,"parentId":893,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/add-base-path.js","layer":"app-pages-browser"},"startTime":1776332186729,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":3758,"timestamp":6725239694295,"id":969,"parentId":968,"tags":{},"startTime":1776332186730,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":3766,"timestamp":6725239694287,"id":968,"parentId":937,"tags":{},"startTime":1776332186730,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":4622,"timestamp":6725239693684,"id":937,"parentId":893,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/has-base-path.js","layer":"app-pages-browser"},"startTime":1776332186729,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":7168,"timestamp":6725239694303,"id":971,"parentId":970,"tags":{},"startTime":1776332186730,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":7179,"timestamp":6725239694296,"id":970,"parentId":938,"tags":{},"startTime":1776332186730,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":8508,"timestamp":6725239693705,"id":938,"parentId":897,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/navigation.js","layer":"app-pages-browser"},"startTime":1776332186729,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":7890,"timestamp":6725239694342,"id":977,"parentId":976,"tags":{},"startTime":1776332186730,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":7898,"timestamp":6725239694335,"id":976,"parentId":941,"tags":{},"startTime":1776332186730,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":8712,"timestamp":6725239693778,"id":941,"parentId":895,"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":1776332186729,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":8174,"timestamp":6725239694326,"id":973,"parentId":972,"tags":{},"startTime":1776332186730,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":8197,"timestamp":6725239694304,"id":972,"parentId":939,"tags":{},"startTime":1776332186730,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":9183,"timestamp":6725239693725,"id":939,"parentId":897,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/not-found.js","layer":"app-pages-browser"},"startTime":1776332186729,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":8574,"timestamp":6725239694356,"id":981,"parentId":980,"tags":{},"startTime":1776332186730,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":8582,"timestamp":6725239694350,"id":980,"parentId":943,"tags":{},"startTime":1776332186730,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":9422,"timestamp":6725239693815,"id":943,"parentId":893,"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":1776332186729,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":8898,"timestamp":6725239694349,"id":979,"parentId":978,"tags":{},"startTime":1776332186730,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":8906,"timestamp":6725239694342,"id":978,"parentId":942,"tags":{},"startTime":1776332186730,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":9708,"timestamp":6725239693798,"id":942,"parentId":895,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/static-generation-async-storage.external.js","layer":"shared"},"startTime":1776332186729,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":9182,"timestamp":6725239694334,"id":975,"parentId":974,"tags":{},"startTime":1776332186730,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":9190,"timestamp":6725239694327,"id":974,"parentId":940,"tags":{},"startTime":1776332186730,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":10241,"timestamp":6725239693759,"id":940,"parentId":897,"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":1776332186729,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":9626,"timestamp":6725239694386,"id":989,"parentId":988,"tags":{},"startTime":1776332186730,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":9634,"timestamp":6725239694379,"id":988,"parentId":947,"tags":{},"startTime":1776332186730,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":10363,"timestamp":6725239693894,"id":947,"parentId":893,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/unresolved-thenable.js","layer":"app-pages-browser"},"startTime":1776332186730,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":9901,"timestamp":6725239694371,"id":985,"parentId":984,"tags":{},"startTime":1776332186730,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":9909,"timestamp":6725239694364,"id":984,"parentId":945,"tags":{},"startTime":1776332186730,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":10821,"timestamp":6725239693859,"id":945,"parentId":893,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/app-router-announcer.js","layer":"app-pages-browser"},"startTime":1776332186730,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":10316,"timestamp":6725239694379,"id":987,"parentId":986,"tags":{},"startTime":1776332186730,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":10324,"timestamp":6725239694372,"id":986,"parentId":946,"tags":{},"startTime":1776332186730,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":11250,"timestamp":6725239693877,"id":946,"parentId":893,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/redirect-boundary.js","layer":"app-pages-browser"},"startTime":1776332186730,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":10779,"timestamp":6725239694364,"id":983,"parentId":982,"tags":{},"startTime":1776332186730,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":10787,"timestamp":6725239694357,"id":982,"parentId":944,"tags":{},"startTime":1776332186730,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":12028,"timestamp":6725239693841,"id":944,"parentId":893,"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":1776332186730,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":11484,"timestamp":6725239694393,"id":991,"parentId":990,"tags":{},"startTime":1776332186730,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":11492,"timestamp":6725239694386,"id":990,"parentId":948,"tags":{},"startTime":1776332186730,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":12270,"timestamp":6725239693910,"id":948,"parentId":893,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/app-router-headers.js","layer":"app-pages-browser"},"startTime":1776332186730,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":11788,"timestamp":6725239694401,"id":993,"parentId":992,"tags":{},"startTime":1776332186730,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":11795,"timestamp":6725239694394,"id":992,"parentId":949,"tags":{},"startTime":1776332186730,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":12451,"timestamp":6725239693927,"id":949,"parentId":893,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/segment.js","layer":"app-pages-browser"},"startTime":1776332186730,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":11970,"timestamp":6725239694415,"id":997,"parentId":996,"tags":{},"startTime":1776332186730,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":11978,"timestamp":6725239694409,"id":996,"parentId":951,"tags":{},"startTime":1776332186730,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":12590,"timestamp":6725239693960,"id":951,"parentId":897,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/utils/warn-once.js","layer":"app-pages-browser"},"startTime":1776332186730,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":12149,"timestamp":6725239694408,"id":995,"parentId":994,"tags":{},"startTime":1776332186730,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":12156,"timestamp":6725239694401,"id":994,"parentId":950,"tags":{},"startTime":1776332186730,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":12914,"timestamp":6725239693944,"id":950,"parentId":896,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/match-segments.js","layer":"app-pages-browser"},"startTime":1776332186730,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":12435,"timestamp":6725239694431,"id":1001,"parentId":1000,"tags":{},"startTime":1776332186730,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":12442,"timestamp":6725239694424,"id":1000,"parentId":953,"tags":{},"startTime":1776332186730,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":13224,"timestamp":6725239693995,"id":953,"parentId":893,"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":1776332186730,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":12815,"timestamp":6725239694423,"id":999,"parentId":998,"tags":{},"startTime":1776332186730,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":12824,"timestamp":6725239694416,"id":998,"parentId":952,"tags":{},"startTime":1776332186730,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":13604,"timestamp":6725239693976,"id":952,"parentId":893,"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":1776332186730,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":13158,"timestamp":6725239694438,"id":1003,"parentId":1002,"tags":{},"startTime":1776332186730,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":13165,"timestamp":6725239694431,"id":1002,"parentId":954,"tags":{},"startTime":1776332186730,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":14116,"timestamp":6725239694012,"id":954,"parentId":893,"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":1776332186730,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":13692,"timestamp":6725239694453,"id":1007,"parentId":1006,"tags":{},"startTime":1776332186730,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":13700,"timestamp":6725239694446,"id":1006,"parentId":956,"tags":{},"startTime":1776332186730,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":14374,"timestamp":6725239694045,"id":956,"parentId":896,"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":1776332186730,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":13990,"timestamp":6725239694446,"id":1005,"parentId":1004,"tags":{},"startTime":1776332186730,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":13998,"timestamp":6725239694438,"id":1004,"parentId":955,"tags":{},"startTime":1776332186730,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":14990,"timestamp":6725239694029,"id":955,"parentId":896,"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":1776332186730,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":14570,"timestamp":6725239694460,"id":1009,"parentId":1008,"tags":{},"startTime":1776332186730,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":14578,"timestamp":6725239694454,"id":1008,"parentId":957,"tags":{},"startTime":1776332186730,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":15222,"timestamp":6725239694061,"id":957,"parentId":893,"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":1776332186730,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":14827,"timestamp":6725239694467,"id":1011,"parentId":1010,"tags":{},"startTime":1776332186730,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":14835,"timestamp":6725239694461,"id":1010,"parentId":958,"tags":{},"startTime":1776332186730,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":15513,"timestamp":6725239694077,"id":958,"parentId":893,"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":1776332186730,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":15117,"timestamp":6725239694482,"id":1015,"parentId":1014,"tags":{},"startTime":1776332186730,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":15125,"timestamp":6725239694475,"id":1014,"parentId":960,"tags":{},"startTime":1776332186730,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":15722,"timestamp":6725239694112,"id":960,"parentId":896,"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":1776332186730,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":15352,"timestamp":6725239694489,"id":1017,"parentId":1016,"tags":{},"startTime":1776332186730,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":15359,"timestamp":6725239694483,"id":1016,"parentId":961,"tags":{},"startTime":1776332186730,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":16532,"timestamp":6725239694127,"id":961,"parentId":896,"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":1776332186730,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":16345,"timestamp":6725239694497,"id":1019,"parentId":1018,"tags":{},"startTime":1776332186730,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":16353,"timestamp":6725239694490,"id":1018,"parentId":962,"tags":{},"startTime":1776332186730,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":17025,"timestamp":6725239694143,"id":962,"parentId":896,"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":1776332186730,"traceId":"bd5433937c2d2119"},{"name":"read-resource","duration":727,"timestamp":6725239714918,"id":1043,"parentId":1040,"tags":{},"startTime":1776332186751,"traceId":"bd5433937c2d2119"},{"name":"read-resource","duration":758,"timestamp":6725239714926,"id":1044,"parentId":1041,"tags":{},"startTime":1776332186751,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":6646,"timestamp":6725239715655,"id":1053,"parentId":1040,"tags":{},"startTime":1776332186751,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":6617,"timestamp":6725239715687,"id":1054,"parentId":1041,"tags":{},"startTime":1776332186751,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":8477,"timestamp":6725239714781,"id":1040,"parentId":897,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_interop_require_wildcard.js","layer":"app-pages-browser"},"startTime":1776332186750,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":8745,"timestamp":6725239714827,"id":1041,"parentId":895,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_interop_require_default.js","layer":"app-pages-browser"},"startTime":1776332186750,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":23575,"timestamp":6725239700130,"id":1028,"parentId":1027,"tags":{},"startTime":1776332186736,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":23627,"timestamp":6725239700081,"id":1027,"parentId":1022,"tags":{},"startTime":1776332186736,"traceId":"bd5433937c2d2119"},{"name":"build-module-tsx","duration":25131,"timestamp":6725239699744,"id":1022,"parentId":891,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/theme-toggle.tsx","layer":"app-pages-browser"},"startTime":1776332186735,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":24746,"timestamp":6725239700178,"id":1030,"parentId":1029,"tags":{},"startTime":1776332186736,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":24793,"timestamp":6725239700132,"id":1029,"parentId":1023,"tags":{},"startTime":1776332186736,"traceId":"bd5433937c2d2119"},{"name":"build-module-ts","duration":26700,"timestamp":6725239699857,"id":1023,"parentId":892,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/lib/api.ts","layer":"app-pages-browser"},"startTime":1776332186736,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":32122,"timestamp":6725239694475,"id":1013,"parentId":1012,"tags":{},"startTime":1776332186730,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":32130,"timestamp":6725239694468,"id":1012,"parentId":959,"tags":{},"startTime":1776332186730,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":34685,"timestamp":6725239694095,"id":959,"parentId":893,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/app/hot-reloader-client.js","layer":"app-pages-browser"},"startTime":1776332186730,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":34425,"timestamp":6725239694528,"id":1021,"parentId":1020,"tags":{},"startTime":1776332186730,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":34468,"timestamp":6725239694497,"id":1020,"parentId":963,"tags":{},"startTime":1776332186730,"traceId":"bd5433937c2d2119"},{"name":"build-module-tsx","duration":35981,"timestamp":6725239694160,"id":963,"parentId":891,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/change-password-dialog.tsx","layer":"app-pages-browser"},"startTime":1776332186730,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":29969,"timestamp":6725239700191,"id":1032,"parentId":1031,"tags":{},"startTime":1776332186736,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":29981,"timestamp":6725239700179,"id":1031,"parentId":1024,"tags":{},"startTime":1776332186736,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":30705,"timestamp":6725239699929,"id":1024,"parentId":888,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/app-webpack.js","layer":"app-pages-browser"},"startTime":1776332186736,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":30468,"timestamp":6725239700200,"id":1034,"parentId":1033,"tags":{},"startTime":1776332186736,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":30478,"timestamp":6725239700192,"id":1033,"parentId":1025,"tags":{},"startTime":1776332186736,"traceId":"bd5433937c2d2119"}] +[{"name":"build-module-js","duration":31275,"timestamp":6725239699957,"id":1025,"parentId":888,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/app-bootstrap.js","layer":"app-pages-browser"},"startTime":1776332186736,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":31049,"timestamp":6725239700210,"id":1036,"parentId":1035,"tags":{},"startTime":1776332186736,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":31059,"timestamp":6725239700201,"id":1035,"parentId":1026,"tags":{},"startTime":1776332186736,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":32123,"timestamp":6725239699983,"id":1026,"parentId":888,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/app-index.js","layer":"app-pages-browser"},"startTime":1776332186736,"traceId":"bd5433937c2d2119"},{"name":"read-resource","duration":40672,"timestamp":6725239691621,"id":930,"parentId":927,"tags":{},"startTime":1776332186727,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":43,"timestamp":6725239732302,"id":1055,"parentId":927,"tags":{},"startTime":1776332186768,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":40923,"timestamp":6725239691563,"id":927,"parentId":876,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js","layer":"app-pages-browser"},"startTime":1776332186727,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":17012,"timestamp":6725239715551,"id":1050,"parentId":1049,"tags":{},"startTime":1776332186751,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":17048,"timestamp":6725239715517,"id":1049,"parentId":1039,"tags":{},"startTime":1776332186751,"traceId":"bd5433937c2d2119"},{"name":"build-module-ts","duration":18214,"timestamp":6725239714726,"id":1039,"parentId":899,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/hooks/use-websocket.ts","layer":"app-pages-browser"},"startTime":1776332186750,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":17469,"timestamp":6725239715564,"id":1052,"parentId":1051,"tags":{},"startTime":1776332186751,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":17481,"timestamp":6725239715553,"id":1051,"parentId":1042,"tags":{},"startTime":1776332186751,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":18478,"timestamp":6725239714869,"id":1042,"parentId":893,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/dev-root-not-found-boundary.js","layer":"app-pages-browser"},"startTime":1776332186751,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":17919,"timestamp":6725239715515,"id":1048,"parentId":1047,"tags":{},"startTime":1776332186751,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":17958,"timestamp":6725239715477,"id":1047,"parentId":1038,"tags":{},"startTime":1776332186751,"traceId":"bd5433937c2d2119"},{"name":"build-module-tsx","duration":21256,"timestamp":6725239714635,"id":1038,"parentId":899,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/stock-card.tsx","layer":"app-pages-browser"},"startTime":1776332186750,"traceId":"bd5433937c2d2119"},{"name":"read-resource","duration":363,"timestamp":6725239737878,"id":1060,"parentId":1057,"tags":{},"startTime":1776332186774,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":6746,"timestamp":6725239738248,"id":1067,"parentId":1057,"tags":{},"startTime":1776332186774,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":7957,"timestamp":6725239737743,"id":1057,"parentId":924,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/app-render/dynamic-rendering.js","layer":"app-pages-browser"},"startTime":1776332186773,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":30299,"timestamp":6725239715471,"id":1046,"parentId":1045,"tags":{},"startTime":1776332186751,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":30339,"timestamp":6725239715432,"id":1045,"parentId":1037,"tags":{},"startTime":1776332186751,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":33069,"timestamp":6725239714517,"id":1037,"parentId":926,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/link.js","layer":"app-pages-browser"},"startTime":1776332186750,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":9930,"timestamp":6725239738174,"id":1064,"parentId":1063,"tags":{},"startTime":1776332186774,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":9944,"timestamp":6725239738163,"id":1063,"parentId":1058,"tags":{},"startTime":1776332186774,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":10577,"timestamp":6725239737792,"id":1058,"parentId":935,"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":1776332186773,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":10195,"timestamp":6725239738185,"id":1066,"parentId":1065,"tags":{},"startTime":1776332186774,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":10204,"timestamp":6725239738176,"id":1065,"parentId":1059,"tags":{},"startTime":1776332186774,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":10753,"timestamp":6725239737818,"id":1059,"parentId":937,"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":1776332186773,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":10458,"timestamp":6725239738160,"id":1062,"parentId":1061,"tags":{},"startTime":1776332186774,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":10500,"timestamp":6725239738118,"id":1061,"parentId":1056,"tags":{},"startTime":1776332186774,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":11322,"timestamp":6725239737653,"id":1056,"parentId":935,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/normalize-trailing-slash.js","layer":"app-pages-browser"},"startTime":1776332186773,"traceId":"bd5433937c2d2119"},{"name":"read-resource","duration":438,"timestamp":6725239750313,"id":1077,"parentId":1068,"tags":{},"startTime":1776332186786,"traceId":"bd5433937c2d2119"},{"name":"read-resource","duration":465,"timestamp":6725239750318,"id":1078,"parentId":1075,"tags":{},"startTime":1776332186786,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":1616,"timestamp":6725239750756,"id":1093,"parentId":1068,"tags":{},"startTime":1776332186786,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":1588,"timestamp":6725239750786,"id":1094,"parentId":1075,"tags":{},"startTime":1776332186786,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":2601,"timestamp":6725239749968,"id":1068,"parentId":924,"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":1776332186786,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":2482,"timestamp":6725239750222,"id":1075,"parentId":950,"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":1776332186786,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":3131,"timestamp":6725239750603,"id":1082,"parentId":1081,"tags":{},"startTime":1776332186786,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":3143,"timestamp":6725239750592,"id":1081,"parentId":1070,"tags":{},"startTime":1776332186786,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":4032,"timestamp":6725239750116,"id":1070,"parentId":955,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/flight-data-helpers.js","layer":"app-pages-browser"},"startTime":1776332186786,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":3570,"timestamp":6725239750590,"id":1080,"parentId":1079,"tags":{},"startTime":1776332186786,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":3600,"timestamp":6725239750560,"id":1079,"parentId":1069,"tags":{},"startTime":1776332186786,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":4366,"timestamp":6725239750067,"id":1069,"parentId":955,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/app-call-server.js","layer":"app-pages-browser"},"startTime":1776332186786,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":3822,"timestamp":6725239750621,"id":1086,"parentId":1085,"tags":{},"startTime":1776332186786,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":3831,"timestamp":6725239750613,"id":1085,"parentId":1072,"tags":{},"startTime":1776332186786,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":4505,"timestamp":6725239750161,"id":1072,"parentId":938,"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":1776332186786,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":4063,"timestamp":6725239750612,"id":1084,"parentId":1083,"tags":{},"startTime":1776332186786,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":4072,"timestamp":6725239750604,"id":1083,"parentId":1071,"tags":{},"startTime":1776332186786,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":4833,"timestamp":6725239750140,"id":1071,"parentId":938,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/navigation.react-server.js","layer":"app-pages-browser"},"startTime":1776332186786,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":4336,"timestamp":6725239750647,"id":1092,"parentId":1091,"tags":{},"startTime":1776332186786,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":4344,"timestamp":6725239750640,"id":1091,"parentId":1076,"tags":{},"startTime":1776332186786,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":4992,"timestamp":6725239750263,"id":1076,"parentId":955,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/hash.js","layer":"app-pages-browser"},"startTime":1776332186786,"traceId":"bd5433937c2d2119"},{"name":"read-resource","duration":557,"timestamp":6725239758126,"id":1114,"parentId":1100,"tags":{},"startTime":1776332186794,"traceId":"bd5433937c2d2119"},{"name":"read-resource","duration":604,"timestamp":6725239758132,"id":1115,"parentId":1101,"tags":{},"startTime":1776332186794,"traceId":"bd5433937c2d2119"},{"name":"read-resource","duration":644,"timestamp":6725239758134,"id":1116,"parentId":1103,"tags":{},"startTime":1776332186794,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":1567,"timestamp":6725239758697,"id":1149,"parentId":1100,"tags":{},"startTime":1776332186794,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":1537,"timestamp":6725239758739,"id":1150,"parentId":1101,"tags":{},"startTime":1776332186794,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":1495,"timestamp":6725239758783,"id":1151,"parentId":1103,"tags":{},"startTime":1776332186794,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":3762,"timestamp":6725239757578,"id":1100,"parentId":962,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/future/helpers/interception-routes.js","layer":"app-pages-browser"},"startTime":1776332186793,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":4364,"timestamp":6725239757626,"id":1101,"parentId":1026,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/dev/hot-reloader-types.js","layer":"app-pages-browser"},"startTime":1776332186793,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":4771,"timestamp":6725239757785,"id":1103,"parentId":959,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/server/dev/extract-modules-from-turbopack-message.js","layer":"app-pages-browser"},"startTime":1776332186793,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":12152,"timestamp":6725239750631,"id":1088,"parentId":1087,"tags":{},"startTime":1776332186786,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":12163,"timestamp":6725239750622,"id":1087,"parentId":1073,"tags":{},"startTime":1776332186786,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":13036,"timestamp":6725239750182,"id":1073,"parentId":938,"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":1776332186786,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":13162,"timestamp":6725239750639,"id":1090,"parentId":1089,"tags":{},"startTime":1776332186786,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":13171,"timestamp":6725239750632,"id":1089,"parentId":1074,"tags":{},"startTime":1776332186786,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":14070,"timestamp":6725239750203,"id":1074,"parentId":941,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/redirect.js","layer":"app-pages-browser"},"startTime":1776332186786,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":6005,"timestamp":6725239758283,"id":1122,"parentId":1121,"tags":{},"startTime":1776332186794,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":6015,"timestamp":6725239758274,"id":1121,"parentId":1097,"tags":{},"startTime":1776332186794,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":7213,"timestamp":6725239757505,"id":1097,"parentId":954,"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":1776332186793,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":6473,"timestamp":6725239758259,"id":1118,"parentId":1117,"tags":{},"startTime":1776332186794,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":6503,"timestamp":6725239758230,"id":1117,"parentId":1095,"tags":{},"startTime":1776332186794,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":7986,"timestamp":6725239757340,"id":1095,"parentId":944,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/action-queue.js","layer":"app-pages-browser"},"startTime":1776332186793,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":7086,"timestamp":6725239758292,"id":1124,"parentId":1123,"tags":{},"startTime":1776332186794,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":7095,"timestamp":6725239758284,"id":1123,"parentId":1098,"tags":{},"startTime":1776332186794,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":8600,"timestamp":6725239757531,"id":1098,"parentId":954,"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":1776332186793,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":7883,"timestamp":6725239758273,"id":1120,"parentId":1119,"tags":{},"startTime":1776332186794,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":7895,"timestamp":6725239758262,"id":1119,"parentId":1096,"tags":{},"startTime":1776332186794,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":9162,"timestamp":6725239757466,"id":1096,"parentId":954,"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":1776332186793,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":8334,"timestamp":6725239758309,"id":1128,"parentId":1127,"tags":{},"startTime":1776332186794,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":8342,"timestamp":6725239758302,"id":1127,"parentId":1102,"tags":{},"startTime":1776332186794,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":9387,"timestamp":6725239757671,"id":1102,"parentId":1026,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/shared.js","layer":"app-pages-browser"},"startTime":1776332186793,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":8771,"timestamp":6725239758301,"id":1126,"parentId":1125,"tags":{},"startTime":1776332186794,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":8780,"timestamp":6725239758293,"id":1125,"parentId":1099,"tags":{},"startTime":1776332186794,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":9934,"timestamp":6725239757555,"id":1099,"parentId":954,"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":1776332186793,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":9188,"timestamp":6725239758318,"id":1130,"parentId":1129,"tags":{},"startTime":1776332186794,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":9196,"timestamp":6725239758310,"id":1129,"parentId":1104,"tags":{},"startTime":1776332186794,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":10043,"timestamp":6725239757849,"id":1104,"parentId":1026,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/app/ReactDevOverlay.js","layer":"app-pages-browser"},"startTime":1776332186794,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":9566,"timestamp":6725239758336,"id":1132,"parentId":1131,"tags":{},"startTime":1776332186794,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":9584,"timestamp":6725239758318,"id":1131,"parentId":1105,"tags":{},"startTime":1776332186794,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":10296,"timestamp":6725239757877,"id":1105,"parentId":1026,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/hydration-error-info.js","layer":"app-pages-browser"},"startTime":1776332186794,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":9837,"timestamp":6725239758345,"id":1134,"parentId":1133,"tags":{},"startTime":1776332186794,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":9845,"timestamp":6725239758337,"id":1133,"parentId":1106,"tags":{},"startTime":1776332186794,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":10543,"timestamp":6725239757900,"id":1106,"parentId":1026,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/get-socket-url.js","layer":"app-pages-browser"},"startTime":1776332186794,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":10098,"timestamp":6725239758360,"id":1138,"parentId":1137,"tags":{},"startTime":1776332186794,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":10106,"timestamp":6725239758354,"id":1137,"parentId":1108,"tags":{},"startTime":1776332186794,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":10885,"timestamp":6725239757971,"id":1108,"parentId":959,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/parseStack.js","layer":"app-pages-browser"},"startTime":1776332186794,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":10499,"timestamp":6725239758368,"id":1140,"parentId":1139,"tags":{},"startTime":1776332186794,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":10506,"timestamp":6725239758362,"id":1139,"parentId":1109,"tags":{},"startTime":1776332186794,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":11245,"timestamp":6725239758003,"id":1109,"parentId":959,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/use-error-handler.js","layer":"app-pages-browser"},"startTime":1776332186794,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":19584,"timestamp":6725239758376,"id":1142,"parentId":1141,"tags":{},"startTime":1776332186794,"traceId":"bd5433937c2d2119"}] +[{"name":"next-swc-loader","duration":19727,"timestamp":6725239758369,"id":1141,"parentId":1110,"tags":{},"startTime":1776332186794,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":20554,"timestamp":6725239758023,"id":1110,"parentId":959,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/runtime-error-handler.js","layer":"app-pages-browser"},"startTime":1776332186794,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":20215,"timestamp":6725239758384,"id":1144,"parentId":1143,"tags":{},"startTime":1776332186794,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":20223,"timestamp":6725239758377,"id":1143,"parentId":1111,"tags":{},"startTime":1776332186794,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":21091,"timestamp":6725239758043,"id":1111,"parentId":959,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/use-websocket.js","layer":"app-pages-browser"},"startTime":1776332186794,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":20960,"timestamp":6725239758391,"id":1146,"parentId":1145,"tags":{},"startTime":1776332186794,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":20968,"timestamp":6725239758385,"id":1145,"parentId":1112,"tags":{},"startTime":1776332186794,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":21830,"timestamp":6725239758063,"id":1112,"parentId":959,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/parse-component-stack.js","layer":"app-pages-browser"},"startTime":1776332186794,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":21568,"timestamp":6725239758401,"id":1148,"parentId":1147,"tags":{},"startTime":1776332186794,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":21578,"timestamp":6725239758392,"id":1147,"parentId":1113,"tags":{},"startTime":1776332186794,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":22335,"timestamp":6725239758081,"id":1113,"parentId":959,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/strip-ansi/index.js","layer":"app-pages-browser"},"startTime":1776332186794,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":22115,"timestamp":6725239758353,"id":1136,"parentId":1135,"tags":{},"startTime":1776332186794,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":22124,"timestamp":6725239758346,"id":1135,"parentId":1107,"tags":{},"startTime":1776332186794,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":23602,"timestamp":6725239757933,"id":1107,"parentId":959,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/format-webpack-messages.js","layer":"app-pages-browser"},"startTime":1776332186794,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":9665,"timestamp":6725239771913,"id":1157,"parentId":1156,"tags":{},"startTime":1776332186808,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":9695,"timestamp":6725239771885,"id":1156,"parentId":1152,"tags":{},"startTime":1776332186808,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":10580,"timestamp":6725239771560,"id":1152,"parentId":1037,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/resolve-href.js","layer":"app-pages-browser"},"startTime":1776332186807,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":10234,"timestamp":6725239771926,"id":1159,"parentId":1158,"tags":{},"startTime":1776332186808,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":10245,"timestamp":6725239771916,"id":1158,"parentId":1153,"tags":{},"startTime":1776332186808,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":10880,"timestamp":6725239771645,"id":1153,"parentId":1037,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/add-locale.js","layer":"app-pages-browser"},"startTime":1776332186807,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":10592,"timestamp":6725239771947,"id":1163,"parentId":1162,"tags":{},"startTime":1776332186808,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":10601,"timestamp":6725239771939,"id":1162,"parentId":1155,"tags":{},"startTime":1776332186808,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":11117,"timestamp":6725239771717,"id":1155,"parentId":1037,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/get-domain-locale.js","layer":"app-pages-browser"},"startTime":1776332186807,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":10915,"timestamp":6725239771938,"id":1161,"parentId":1160,"tags":{},"startTime":1776332186808,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":10926,"timestamp":6725239771927,"id":1160,"parentId":1154,"tags":{},"startTime":1776332186808,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":11560,"timestamp":6725239771685,"id":1154,"parentId":1037,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/use-intersection.js","layer":"app-pages-browser"},"startTime":1776332186807,"traceId":"bd5433937c2d2119"},{"name":"read-resource","duration":733,"timestamp":6725239784777,"id":1175,"parentId":1164,"tags":{},"startTime":1776332186820,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":3216,"timestamp":6725239785543,"id":1196,"parentId":1164,"tags":{},"startTime":1776332186821,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":4920,"timestamp":6725239784168,"id":1164,"parentId":1057,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/url.js","layer":"app-pages-browser"},"startTime":1776332186820,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":4583,"timestamp":6725239784985,"id":1183,"parentId":1182,"tags":{},"startTime":1776332186821,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":4592,"timestamp":6725239784977,"id":1182,"parentId":1168,"tags":{},"startTime":1776332186821,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":5606,"timestamp":6725239784346,"id":1168,"parentId":1057,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/static-generation-bailout.js","layer":"app-pages-browser"},"startTime":1776332186820,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":4996,"timestamp":6725239784967,"id":1179,"parentId":1178,"tags":{},"startTime":1776332186821,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":5009,"timestamp":6725239784954,"id":1178,"parentId":1166,"tags":{},"startTime":1776332186821,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":5931,"timestamp":6725239784297,"id":1166,"parentId":1037,"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":1776332186820,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":5292,"timestamp":6725239784977,"id":1181,"parentId":1180,"tags":{},"startTime":1776332186821,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":5302,"timestamp":6725239784968,"id":1180,"parentId":1167,"tags":{},"startTime":1776332186821,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":6298,"timestamp":6725239784323,"id":1167,"parentId":1057,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/hooks-server-context.js","layer":"app-pages-browser"},"startTime":1776332186820,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":5688,"timestamp":6725239784952,"id":1177,"parentId":1176,"tags":{},"startTime":1776332186821,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":5724,"timestamp":6725239784916,"id":1176,"parentId":1165,"tags":{},"startTime":1776332186821,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":6981,"timestamp":6725239784263,"id":1165,"parentId":1037,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/utils.js","layer":"app-pages-browser"},"startTime":1776332186820,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":6266,"timestamp":6725239784993,"id":1185,"parentId":1184,"tags":{},"startTime":1776332186821,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":6274,"timestamp":6725239784986,"id":1184,"parentId":1169,"tags":{},"startTime":1776332186821,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":7158,"timestamp":6725239784366,"id":1169,"parentId":1037,"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":1776332186820,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":6537,"timestamp":6725239785001,"id":1187,"parentId":1186,"tags":{},"startTime":1776332186821,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":6545,"timestamp":6725239784994,"id":1186,"parentId":1170,"tags":{},"startTime":1776332186821,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":7519,"timestamp":6725239784389,"id":1170,"parentId":1037,"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":1776332186820,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":6909,"timestamp":6725239785008,"id":1189,"parentId":1188,"tags":{},"startTime":1776332186821,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":6916,"timestamp":6725239785002,"id":1188,"parentId":1171,"tags":{},"startTime":1776332186821,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":7691,"timestamp":6725239784409,"id":1171,"parentId":1056,"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":1776332186820,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":7093,"timestamp":6725239785016,"id":1191,"parentId":1190,"tags":{},"startTime":1776332186821,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":7100,"timestamp":6725239785009,"id":1190,"parentId":1172,"tags":{},"startTime":1776332186821,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":7851,"timestamp":6725239784439,"id":1172,"parentId":1056,"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":1776332186820,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":7267,"timestamp":6725239785046,"id":1193,"parentId":1192,"tags":{},"startTime":1776332186821,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":7297,"timestamp":6725239785017,"id":1192,"parentId":1173,"tags":{},"startTime":1776332186821,"traceId":"bd5433937c2d2119"},{"name":"build-module-ts","duration":8235,"timestamp":6725239784460,"id":1173,"parentId":1038,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/lib/utils.ts","layer":"app-pages-browser"},"startTime":1776332186820,"traceId":"bd5433937c2d2119"},{"name":"read-resource","duration":579,"timestamp":6725239797526,"id":1221,"parentId":1219,"tags":{},"startTime":1776332186833,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":1215,"timestamp":6725239798112,"id":1262,"parentId":1219,"tags":{},"startTime":1776332186834,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":2682,"timestamp":6725239797223,"id":1219,"parentId":1108,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/stacktrace-parser/stack-trace-parser.cjs.js","layer":"app-pages-browser"},"startTime":1776332186833,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":14996,"timestamp":6725239785065,"id":1195,"parentId":1194,"tags":{},"startTime":1776332186821,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":15016,"timestamp":6725239785047,"id":1194,"parentId":1174,"tags":{},"startTime":1776332186821,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":15824,"timestamp":6725239784508,"id":1174,"parentId":942,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/static-generation-async-storage-instance.js","layer":"shared"},"startTime":1776332186820,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":2737,"timestamp":6725239797662,"id":1227,"parentId":1226,"tags":{},"startTime":1776332186833,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":2746,"timestamp":6725239797653,"id":1226,"parentId":1201,"tags":{},"startTime":1776332186833,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":3712,"timestamp":6725239796873,"id":1201,"parentId":1026,"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":1776332186833,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":2923,"timestamp":6725239797671,"id":1229,"parentId":1228,"tags":{},"startTime":1776332186833,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":2931,"timestamp":6725239797663,"id":1228,"parentId":1202,"tags":{},"startTime":1776332186833,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":3986,"timestamp":6725239796895,"id":1202,"parentId":1074,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/request-async-storage.external.js","layer":"shared"},"startTime":1776332186833,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":3252,"timestamp":6725239797637,"id":1223,"parentId":1222,"tags":{},"startTime":1776332186833,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":3284,"timestamp":6725239797606,"id":1222,"parentId":1199,"tags":{},"startTime":1776332186833,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":4278,"timestamp":6725239796818,"id":1199,"parentId":1026,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/on-recoverable-error.js","layer":"app-pages-browser"},"startTime":1776332186832,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":6730,"timestamp":6725239797680,"id":1231,"parentId":1230,"tags":{},"startTime":1776332186833,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":6741,"timestamp":6725239797672,"id":1230,"parentId":1203,"tags":{},"startTime":1776332186833,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":8205,"timestamp":6725239796916,"id":1203,"parentId":1074,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/action-async-storage.external.js","layer":"shared"},"startTime":1776332186833,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":7447,"timestamp":6725239797689,"id":1233,"parentId":1232,"tags":{},"startTime":1776332186833,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":7456,"timestamp":6725239797681,"id":1232,"parentId":1204,"tags":{},"startTime":1776332186833,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":8436,"timestamp":6725239796935,"id":1204,"parentId":1074,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/redirect-status-code.js","layer":"app-pages-browser"},"startTime":1776332186833,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":7735,"timestamp":6725239797652,"id":1225,"parentId":1224,"tags":{},"startTime":1776332186833,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":7746,"timestamp":6725239797641,"id":1224,"parentId":1200,"tags":{},"startTime":1776332186833,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":9078,"timestamp":6725239796851,"id":1200,"parentId":1026,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/app-link-gc.js","layer":"app-pages-browser"},"startTime":1776332186833,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":8243,"timestamp":6725239797698,"id":1235,"parentId":1234,"tags":{},"startTime":1776332186833,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":8251,"timestamp":6725239797690,"id":1234,"parentId":1205,"tags":{},"startTime":1776332186833,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":9273,"timestamp":6725239796954,"id":1205,"parentId":1073,"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":1776332186833,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":8527,"timestamp":6725239797715,"id":1239,"parentId":1238,"tags":{},"startTime":1776332186833,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":8535,"timestamp":6725239797707,"id":1238,"parentId":1207,"tags":{},"startTime":1776332186833,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":10490,"timestamp":6725239796990,"id":1207,"parentId":1099,"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":1776332186833,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":9850,"timestamp":6725239797706,"id":1237,"parentId":1236,"tags":{},"startTime":1776332186833,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":9860,"timestamp":6725239797699,"id":1236,"parentId":1206,"tags":{},"startTime":1776332186833,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":11262,"timestamp":6725239796972,"id":1206,"parentId":1095,"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":1776332186833,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":10548,"timestamp":6725239797722,"id":1241,"parentId":1240,"tags":{},"startTime":1776332186833,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":10556,"timestamp":6725239797715,"id":1240,"parentId":1208,"tags":{},"startTime":1776332186833,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":11540,"timestamp":6725239797012,"id":1208,"parentId":1106,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/normalized-asset-prefix.js","layer":"app-pages-browser"},"startTime":1776332186833,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":12869,"timestamp":6725239797731,"id":1243,"parentId":1242,"tags":{},"startTime":1776332186833,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":12879,"timestamp":6725239797723,"id":1242,"parentId":1209,"tags":{},"startTime":1776332186833,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":13929,"timestamp":6725239797030,"id":1209,"parentId":1109,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/is-hydration-error.js","layer":"app-pages-browser"},"startTime":1776332186833,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":13234,"timestamp":6725239797739,"id":1245,"parentId":1244,"tags":{},"startTime":1776332186833,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":13242,"timestamp":6725239797731,"id":1244,"parentId":1210,"tags":{},"startTime":1776332186833,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":14201,"timestamp":6725239797047,"id":1210,"parentId":1100,"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":1776332186833,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":13505,"timestamp":6725239797755,"id":1249,"parentId":1248,"tags":{},"startTime":1776332186833,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":13513,"timestamp":6725239797747,"id":1248,"parentId":1212,"tags":{},"startTime":1776332186833,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":14481,"timestamp":6725239797083,"id":1212,"parentId":1104,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/ShadowPortal.js","layer":"app-pages-browser"},"startTime":1776332186833,"traceId":"bd5433937c2d2119"}] +[{"name":"next-swc-transform","duration":13919,"timestamp":6725239797747,"id":1247,"parentId":1246,"tags":{},"startTime":1776332186833,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":13927,"timestamp":6725239797739,"id":1246,"parentId":1211,"tags":{},"startTime":1776332186833,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":14991,"timestamp":6725239797065,"id":1211,"parentId":1098,"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":1776332186833,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":14317,"timestamp":6725239797763,"id":1251,"parentId":1250,"tags":{},"startTime":1776332186833,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":14325,"timestamp":6725239797755,"id":1250,"parentId":1213,"tags":{},"startTime":1776332186833,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":15420,"timestamp":6725239797101,"id":1213,"parentId":1104,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/container/BuildError.js","layer":"app-pages-browser"},"startTime":1776332186833,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":14753,"timestamp":6725239797779,"id":1255,"parentId":1254,"tags":{},"startTime":1776332186833,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":14761,"timestamp":6725239797771,"id":1254,"parentId":1215,"tags":{},"startTime":1776332186833,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":15660,"timestamp":6725239797136,"id":1215,"parentId":1104,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/styles/Base.js","layer":"app-pages-browser"},"startTime":1776332186833,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":15020,"timestamp":6725239797787,"id":1257,"parentId":1256,"tags":{},"startTime":1776332186833,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":15027,"timestamp":6725239797780,"id":1256,"parentId":1216,"tags":{},"startTime":1776332186833,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":16086,"timestamp":6725239797154,"id":1216,"parentId":1104,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/styles/ComponentStyles.js","layer":"app-pages-browser"},"startTime":1776332186833,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":15853,"timestamp":6725239797794,"id":1259,"parentId":1258,"tags":{},"startTime":1776332186833,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":15861,"timestamp":6725239797787,"id":1258,"parentId":1217,"tags":{},"startTime":1776332186833,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":16911,"timestamp":6725239797171,"id":1217,"parentId":1104,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/styles/CssReset.js","layer":"app-pages-browser"},"startTime":1776332186833,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":16309,"timestamp":6725239797802,"id":1261,"parentId":1260,"tags":{},"startTime":1776332186833,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":16317,"timestamp":6725239797795,"id":1260,"parentId":1218,"tags":{},"startTime":1776332186833,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":17322,"timestamp":6725239797189,"id":1218,"parentId":1104,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/container/root-layout-missing-tags-error.js","layer":"app-pages-browser"},"startTime":1776332186833,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":11471,"timestamp":6725239803052,"id":1274,"parentId":1273,"tags":{},"startTime":1776332186839,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":11498,"timestamp":6725239803026,"id":1273,"parentId":1263,"tags":{},"startTime":1776332186839,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":12150,"timestamp":6725239802701,"id":1263,"parentId":1154,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/request-idle-callback.js","layer":"app-pages-browser"},"startTime":1776332186838,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":11785,"timestamp":6725239803076,"id":1278,"parentId":1277,"tags":{},"startTime":1776332186839,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":11794,"timestamp":6725239803067,"id":1277,"parentId":1265,"tags":{},"startTime":1776332186839,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":12338,"timestamp":6725239802789,"id":1265,"parentId":1152,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/omit.js","layer":"app-pages-browser"},"startTime":1776332186838,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":12088,"timestamp":6725239803066,"id":1276,"parentId":1275,"tags":{},"startTime":1776332186839,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":12101,"timestamp":6725239803054,"id":1275,"parentId":1264,"tags":{},"startTime":1776332186839,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":12855,"timestamp":6725239802763,"id":1264,"parentId":1152,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/querystring.js","layer":"app-pages-browser"},"startTime":1776332186838,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":17894,"timestamp":6725239797771,"id":1253,"parentId":1252,"tags":{},"startTime":1776332186833,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":17902,"timestamp":6725239797763,"id":1252,"parentId":1214,"tags":{},"startTime":1776332186833,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":22238,"timestamp":6725239797118,"id":1214,"parentId":1104,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/container/Errors.js","layer":"app-pages-browser"},"startTime":1776332186833,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":16945,"timestamp":6725239803093,"id":1282,"parentId":1281,"tags":{},"startTime":1776332186839,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":16960,"timestamp":6725239803086,"id":1281,"parentId":1267,"tags":{},"startTime":1776332186839,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":17892,"timestamp":6725239802831,"id":1267,"parentId":1152,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/router/utils/index.js","layer":"app-pages-browser"},"startTime":1776332186839,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":17636,"timestamp":6725239803101,"id":1284,"parentId":1283,"tags":{},"startTime":1776332186839,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":17644,"timestamp":6725239803094,"id":1283,"parentId":1268,"tags":{},"startTime":1776332186839,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":18934,"timestamp":6725239802851,"id":1268,"parentId":1111,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/dev/noop-turbopack-hmr.js","layer":"app-pages-browser"},"startTime":1776332186839,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":18790,"timestamp":6725239803085,"id":1280,"parentId":1279,"tags":{},"startTime":1776332186839,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":18801,"timestamp":6725239803077,"id":1279,"parentId":1266,"tags":{},"startTime":1776332186839,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":20024,"timestamp":6725239802811,"id":1266,"parentId":1152,"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":1776332186838,"traceId":"bd5433937c2d2119"},{"name":"read-resource","duration":43587,"timestamp":6725239797509,"id":1220,"parentId":1198,"tags":{},"startTime":1776332186833,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":39,"timestamp":6725239841113,"id":1285,"parentId":1198,"tags":{},"startTime":1776332186877,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":45293,"timestamp":6725239796743,"id":1198,"parentId":1024,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/deployment-id.js","layer":"app-pages-browser"},"startTime":1776332186832,"traceId":"bd5433937c2d2119"},{"name":"read-resource","duration":265,"timestamp":6725239849345,"id":1287,"parentId":1286,"tags":{},"startTime":1776332186885,"traceId":"bd5433937c2d2119"},{"name":"read-resource","duration":63318,"timestamp":6725239802970,"id":1272,"parentId":1270,"tags":{},"startTime":1776332186839,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":41,"timestamp":6725239866300,"id":1298,"parentId":1270,"tags":{},"startTime":1776332186902,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":64024,"timestamp":6725239802910,"id":1270,"parentId":927,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/internal/helpers.js","layer":"app-pages-browser"},"startTime":1776332186839,"traceId":"bd5433937c2d2119"},{"name":"read-resource","duration":63982,"timestamp":6725239802959,"id":1271,"parentId":1269,"tags":{},"startTime":1776332186839,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":30,"timestamp":6725239866965,"id":1299,"parentId":1269,"tags":{},"startTime":1776332186903,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":64697,"timestamp":6725239802870,"id":1269,"parentId":1026,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/polyfills/polyfill-module.js","layer":"app-pages-browser"},"startTime":1776332186839,"traceId":"bd5433937c2d2119"},{"name":"read-resource","duration":330,"timestamp":6725239868343,"id":1314,"parentId":1304,"tags":{},"startTime":1776332186904,"traceId":"bd5433937c2d2119"},{"name":"read-resource","duration":359,"timestamp":6725239868347,"id":1315,"parentId":1313,"tags":{},"startTime":1776332186904,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":197,"timestamp":6725239868679,"id":1340,"parentId":1304,"tags":{},"startTime":1776332186904,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":169,"timestamp":6725239868708,"id":1341,"parentId":1313,"tags":{},"startTime":1776332186904,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":1140,"timestamp":6725239868061,"id":1304,"parentId":1209,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/is-error.js","layer":"app-pages-browser"},"startTime":1776332186904,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":1066,"timestamp":6725239868295,"id":1313,"parentId":1213,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/@swc/helpers/esm/_tagged_template_literal_loose.js","layer":"app-pages-browser"},"startTime":1776332186904,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":5262,"timestamp":6725239864126,"id":1293,"parentId":1292,"tags":{},"startTime":1776332186900,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":5304,"timestamp":6725239864085,"id":1292,"parentId":1288,"tags":{},"startTime":1776332186900,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":20423,"timestamp":6725239849366,"id":1288,"parentId":1207,"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":1776332186885,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":5647,"timestamp":6725239864157,"id":1297,"parentId":1296,"tags":{},"startTime":1776332186900,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":5657,"timestamp":6725239864147,"id":1296,"parentId":1290,"tags":{},"startTime":1776332186900,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":20567,"timestamp":6725239849575,"id":1290,"parentId":1206,"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":1776332186885,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":8769,"timestamp":6725239864146,"id":1295,"parentId":1294,"tags":{},"startTime":1776332186900,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":8785,"timestamp":6725239864131,"id":1294,"parentId":1289,"tags":{},"startTime":1776332186900,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":24611,"timestamp":6725239849538,"id":1289,"parentId":1206,"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":1776332186885,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":9830,"timestamp":6725239868423,"id":1317,"parentId":1316,"tags":{},"startTime":1776332186904,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":9858,"timestamp":6725239868398,"id":1316,"parentId":1300,"tags":{},"startTime":1776332186904,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":10722,"timestamp":6725239867911,"id":1300,"parentId":1206,"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":1776332186904,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":10211,"timestamp":6725239868436,"id":1319,"parentId":1318,"tags":{},"startTime":1776332186904,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":10222,"timestamp":6725239868426,"id":1318,"parentId":1301,"tags":{},"startTime":1776332186904,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":12350,"timestamp":6725239867987,"id":1301,"parentId":1206,"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":1776332186904,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":11932,"timestamp":6725239868445,"id":1321,"parentId":1320,"tags":{},"startTime":1776332186904,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":11941,"timestamp":6725239868437,"id":1320,"parentId":1302,"tags":{},"startTime":1776332186904,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":12966,"timestamp":6725239868015,"id":1302,"parentId":1206,"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":1776332186904,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":12528,"timestamp":6725239868470,"id":1327,"parentId":1326,"tags":{},"startTime":1776332186904,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":12537,"timestamp":6725239868463,"id":1326,"parentId":1306,"tags":{},"startTime":1776332186904,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":13080,"timestamp":6725239868126,"id":1306,"parentId":1210,"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":1776332186904,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":12739,"timestamp":6725239868477,"id":1329,"parentId":1328,"tags":{},"startTime":1776332186904,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":12747,"timestamp":6725239868470,"id":1328,"parentId":1307,"tags":{},"startTime":1776332186904,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":13385,"timestamp":6725239868148,"id":1307,"parentId":1213,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/noop-template.js","layer":"app-pages-browser"},"startTime":1776332186904,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":13103,"timestamp":6725239868454,"id":1323,"parentId":1322,"tags":{},"startTime":1776332186904,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":13112,"timestamp":6725239868446,"id":1322,"parentId":1303,"tags":{},"startTime":1776332186904,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":14436,"timestamp":6725239868038,"id":1303,"parentId":1206,"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":1776332186904,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":14033,"timestamp":6725239868462,"id":1325,"parentId":1324,"tags":{},"startTime":1776332186904,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":14042,"timestamp":6725239868455,"id":1324,"parentId":1305,"tags":{},"startTime":1776332186904,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":14860,"timestamp":6725239868105,"id":1305,"parentId":1211,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/promise-queue.js","layer":"app-pages-browser"},"startTime":1776332186904,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":14503,"timestamp":6725239868485,"id":1331,"parentId":1330,"tags":{},"startTime":1776332186904,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":14511,"timestamp":6725239868478,"id":1330,"parentId":1308,"tags":{},"startTime":1776332186904,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":15045,"timestamp":6725239868167,"id":1308,"parentId":1216,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/CodeFrame/styles.js","layer":"app-pages-browser"},"startTime":1776332186904,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":14720,"timestamp":6725239868501,"id":1335,"parentId":1334,"tags":{},"startTime":1776332186904,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":14727,"timestamp":6725239868494,"id":1334,"parentId":1310,"tags":{},"startTime":1776332186904,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":15164,"timestamp":6725239868222,"id":1310,"parentId":1213,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Overlay/index.js","layer":"app-pages-browser"},"startTime":1776332186904,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":14884,"timestamp":6725239868508,"id":1337,"parentId":1336,"tags":{},"startTime":1776332186904,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":14891,"timestamp":6725239868501,"id":1336,"parentId":1311,"tags":{},"startTime":1776332186904,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":15311,"timestamp":6725239868243,"id":1311,"parentId":1213,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Terminal/index.js","layer":"app-pages-browser"},"startTime":1776332186904,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":18720,"timestamp":6725239868493,"id":1333,"parentId":1332,"tags":{},"startTime":1776332186904,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":18728,"timestamp":6725239868486,"id":1332,"parentId":1309,"tags":{},"startTime":1776332186904,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":19323,"timestamp":6725239868187,"id":1309,"parentId":1213,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Dialog/index.js","layer":"app-pages-browser"},"startTime":1776332186904,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":19004,"timestamp":6725239868516,"id":1339,"parentId":1338,"tags":{},"startTime":1776332186904,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":19012,"timestamp":6725239868509,"id":1338,"parentId":1312,"tags":{},"startTime":1776332186904,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":19469,"timestamp":6725239868269,"id":1312,"parentId":1213,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/VersionStalenessInfo/index.js","layer":"app-pages-browser"},"startTime":1776332186904,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":12265,"timestamp":6725239875996,"id":1356,"parentId":1355,"tags":{},"startTime":1776332186912,"traceId":"bd5433937c2d2119"}] +[{"name":"next-swc-loader","duration":12394,"timestamp":6725239875962,"id":1355,"parentId":1342,"tags":{},"startTime":1776332186912,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":13348,"timestamp":6725239875249,"id":1342,"parentId":1216,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/LeftRightDialogHeader/styles.js","layer":"app-pages-browser"},"startTime":1776332186911,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":12584,"timestamp":6725239876021,"id":1360,"parentId":1359,"tags":{},"startTime":1776332186912,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":12594,"timestamp":6725239876012,"id":1359,"parentId":1344,"tags":{},"startTime":1776332186912,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":13409,"timestamp":6725239875414,"id":1344,"parentId":1216,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Terminal/styles.js","layer":"app-pages-browser"},"startTime":1776332186911,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":12799,"timestamp":6725239876031,"id":1362,"parentId":1361,"tags":{},"startTime":1776332186912,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":12808,"timestamp":6725239876022,"id":1361,"parentId":1345,"tags":{},"startTime":1776332186912,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":13654,"timestamp":6725239875448,"id":1345,"parentId":1216,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Toast/index.js","layer":"app-pages-browser"},"startTime":1776332186911,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":13102,"timestamp":6725239876011,"id":1358,"parentId":1357,"tags":{},"startTime":1776332186912,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":13115,"timestamp":6725239875999,"id":1357,"parentId":1343,"tags":{},"startTime":1776332186912,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":14022,"timestamp":6725239875380,"id":1343,"parentId":1216,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Overlay/styles.js","layer":"app-pages-browser"},"startTime":1776332186911,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":13432,"timestamp":6725239876057,"id":1368,"parentId":1367,"tags":{},"startTime":1776332186912,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":13454,"timestamp":6725239876049,"id":1367,"parentId":1348,"tags":{},"startTime":1776332186912,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":15700,"timestamp":6725239875519,"id":1348,"parentId":1214,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/LeftRightDialogHeader/index.js","layer":"app-pages-browser"},"startTime":1776332186911,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":15186,"timestamp":6725239876048,"id":1366,"parentId":1365,"tags":{},"startTime":1776332186912,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":15195,"timestamp":6725239876040,"id":1365,"parentId":1347,"tags":{},"startTime":1776332186912,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":16159,"timestamp":6725239875497,"id":1347,"parentId":1218,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/hot-linked-text/index.js","layer":"app-pages-browser"},"startTime":1776332186911,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":15598,"timestamp":6725239876066,"id":1370,"parentId":1369,"tags":{},"startTime":1776332186912,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":15607,"timestamp":6725239876058,"id":1369,"parentId":1349,"tags":{},"startTime":1776332186912,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":16294,"timestamp":6725239875548,"id":1349,"parentId":1202,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/request-async-storage-instance.js","layer":"shared"},"startTime":1776332186911,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":15819,"timestamp":6725239876039,"id":1364,"parentId":1363,"tags":{},"startTime":1776332186912,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":15828,"timestamp":6725239876032,"id":1363,"parentId":1346,"tags":{},"startTime":1776332186912,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":16861,"timestamp":6725239875473,"id":1346,"parentId":1216,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/container/RuntimeError/index.js","layer":"app-pages-browser"},"startTime":1776332186911,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":29315,"timestamp":6725239876091,"id":1376,"parentId":1375,"tags":{},"startTime":1776332186912,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":29327,"timestamp":6725239876083,"id":1375,"parentId":1352,"tags":{},"startTime":1776332186912,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":30176,"timestamp":6725239875602,"id":1352,"parentId":1214,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/error-source.js","layer":"app-pages-browser"},"startTime":1776332186911,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":29681,"timestamp":6725239876107,"id":1380,"parentId":1379,"tags":{},"startTime":1776332186912,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":29689,"timestamp":6725239876100,"id":1379,"parentId":1354,"tags":{},"startTime":1776332186912,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":30363,"timestamp":6725239875651,"id":1354,"parentId":1267,"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":1776332186911,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":29942,"timestamp":6725239876082,"id":1374,"parentId":1373,"tags":{},"startTime":1776332186912,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":29950,"timestamp":6725239876075,"id":1373,"parentId":1351,"tags":{},"startTime":1776332186912,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":30888,"timestamp":6725239875584,"id":1351,"parentId":1203,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/action-async-storage-instance.js","layer":"shared"},"startTime":1776332186911,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":30413,"timestamp":6725239876074,"id":1372,"parentId":1371,"tags":{},"startTime":1776332186912,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":30420,"timestamp":6725239876067,"id":1371,"parentId":1350,"tags":{},"startTime":1776332186912,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":31233,"timestamp":6725239875566,"id":1350,"parentId":1174,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/async-local-storage.js","layer":"shared"},"startTime":1776332186911,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":30719,"timestamp":6725239876099,"id":1378,"parentId":1377,"tags":{},"startTime":1776332186912,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":30726,"timestamp":6725239876092,"id":1377,"parentId":1353,"tags":{},"startTime":1776332186912,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":31718,"timestamp":6725239875624,"id":1353,"parentId":1267,"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":1776332186911,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":10197,"timestamp":6725239897427,"id":1395,"parentId":1394,"tags":{},"startTime":1776332186933,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":10210,"timestamp":6725239897414,"id":1394,"parentId":1383,"tags":{},"startTime":1776332186933,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":11679,"timestamp":6725239896480,"id":1383,"parentId":1214,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/getErrorByType.js","layer":"app-pages-browser"},"startTime":1776332186932,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":10853,"timestamp":6725239897348,"id":1391,"parentId":1390,"tags":{},"startTime":1776332186933,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":10915,"timestamp":6725239897287,"id":1390,"parentId":1381,"tags":{},"startTime":1776332186933,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":12186,"timestamp":6725239896365,"id":1381,"parentId":1266,"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":1776332186932,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":11106,"timestamp":6725239897456,"id":1397,"parentId":1396,"tags":{},"startTime":1776332186933,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":11134,"timestamp":6725239897428,"id":1396,"parentId":1384,"tags":{},"startTime":1776332186933,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":12300,"timestamp":6725239896510,"id":1384,"parentId":1214,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/icons/CloseIcon.js","layer":"app-pages-browser"},"startTime":1776332186932,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":11413,"timestamp":6725239897412,"id":1393,"parentId":1392,"tags":{},"startTime":1776332186933,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":11460,"timestamp":6725239897366,"id":1392,"parentId":1382,"tags":{},"startTime":1776332186933,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":13790,"timestamp":6725239896451,"id":1382,"parentId":1266,"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":1776332186932,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":12810,"timestamp":6725239897482,"id":1399,"parentId":1398,"tags":{},"startTime":1776332186933,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":12833,"timestamp":6725239897460,"id":1398,"parentId":1385,"tags":{},"startTime":1776332186933,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":14427,"timestamp":6725239896532,"id":1385,"parentId":1214,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/container/RuntimeError/component-stack-pseudo-html.js","layer":"app-pages-browser"},"startTime":1776332186932,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":2770,"timestamp":6725239912756,"id":1413,"parentId":1412,"tags":{},"startTime":1776332186948,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":2803,"timestamp":6725239912726,"id":1412,"parentId":1400,"tags":{},"startTime":1776332186948,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":3937,"timestamp":6725239911903,"id":1400,"parentId":1304,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/is-plain-object.js","layer":"app-pages-browser"},"startTime":1776332186948,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":3055,"timestamp":6725239912794,"id":1419,"parentId":1418,"tags":{},"startTime":1776332186948,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":3063,"timestamp":6725239912787,"id":1418,"parentId":1403,"tags":{},"startTime":1776332186948,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":3922,"timestamp":6725239912181,"id":1403,"parentId":1290,"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":1776332186948,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":3341,"timestamp":6725239912772,"id":1415,"parentId":1414,"tags":{},"startTime":1776332186948,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":3355,"timestamp":6725239912758,"id":1414,"parentId":1401,"tags":{},"startTime":1776332186948,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":4268,"timestamp":6725239912079,"id":1401,"parentId":1288,"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":1776332186948,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":3575,"timestamp":6725239912782,"id":1417,"parentId":1416,"tags":{},"startTime":1776332186948,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":3585,"timestamp":6725239912773,"id":1416,"parentId":1402,"tags":{},"startTime":1776332186948,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":4525,"timestamp":6725239912151,"id":1402,"parentId":1290,"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":1776332186948,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":3869,"timestamp":6725239912817,"id":1425,"parentId":1424,"tags":{},"startTime":1776332186948,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":3876,"timestamp":6725239912810,"id":1424,"parentId":1406,"tags":{},"startTime":1776332186948,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":4484,"timestamp":6725239912466,"id":1406,"parentId":1289,"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":1776332186948,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":4157,"timestamp":6725239912802,"id":1421,"parentId":1420,"tags":{},"startTime":1776332186948,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":4164,"timestamp":6725239912795,"id":1420,"parentId":1404,"tags":{},"startTime":1776332186948,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":4925,"timestamp":6725239912293,"id":1404,"parentId":1290,"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":1776332186948,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":4401,"timestamp":6725239912824,"id":1427,"parentId":1426,"tags":{},"startTime":1776332186948,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":4408,"timestamp":6725239912817,"id":1426,"parentId":1407,"tags":{},"startTime":1776332186948,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":4995,"timestamp":6725239912488,"id":1407,"parentId":1289,"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":1776332186948,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":4690,"timestamp":6725239912809,"id":1423,"parentId":1422,"tags":{},"startTime":1776332186948,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":4697,"timestamp":6725239912803,"id":1422,"parentId":1405,"tags":{},"startTime":1776332186948,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":5253,"timestamp":6725239912437,"id":1405,"parentId":1290,"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":1776332186948,"traceId":"bd5433937c2d2119"},{"name":"read-resource","duration":308,"timestamp":6725239918628,"id":1450,"parentId":1447,"tags":{},"startTime":1776332186954,"traceId":"bd5433937c2d2119"},{"name":"read-resource","duration":337,"timestamp":6725239918630,"id":1451,"parentId":1448,"tags":{},"startTime":1776332186954,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":52,"timestamp":6725239918940,"id":1484,"parentId":1447,"tags":{},"startTime":1776332186955,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":23,"timestamp":6725239918969,"id":1485,"parentId":1448,"tags":{},"startTime":1776332186955,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":593,"timestamp":6725239918528,"id":1447,"parentId":1305,"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":1776332186954,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":620,"timestamp":6725239918566,"id":1448,"parentId":1305,"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":1776332186954,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":6394,"timestamp":6725239912838,"id":1431,"parentId":1430,"tags":{},"startTime":1776332186949,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":6401,"timestamp":6725239912832,"id":1430,"parentId":1409,"tags":{},"startTime":1776332186949,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":7059,"timestamp":6725239912534,"id":1409,"parentId":1289,"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":1776332186948,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":270421,"timestamp":6725239912831,"id":1429,"parentId":1428,"tags":{},"startTime":1776332186949,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":270433,"timestamp":6725239912825,"id":1428,"parentId":1408,"tags":{},"startTime":1776332186948,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":272617,"timestamp":6725239912513,"id":1408,"parentId":1289,"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":1776332186948,"traceId":"bd5433937c2d2119"},{"name":"read-resource","duration":111,"timestamp":6725240185945,"id":1491,"parentId":1487,"tags":{},"startTime":1776332187222,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":36,"timestamp":6725240186062,"id":1498,"parentId":1487,"tags":{},"startTime":1776332187222,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":833,"timestamp":6725240185753,"id":1487,"parentId":1382,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/lib/constants.js","layer":"app-pages-browser"},"startTime":1776332187221,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":267975,"timestamp":6725239918690,"id":1457,"parentId":1456,"tags":{},"startTime":1776332186954,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":267984,"timestamp":6725239918682,"id":1456,"parentId":1434,"tags":{},"startTime":1776332186954,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":268800,"timestamp":6725239918292,"id":1434,"parentId":1310,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Overlay/Overlay.js","layer":"app-pages-browser"},"startTime":1776332186954,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":268424,"timestamp":6725239918681,"id":1455,"parentId":1454,"tags":{},"startTime":1776332186954,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":268434,"timestamp":6725239918672,"id":1454,"parentId":1433,"tags":{},"startTime":1776332186954,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":269092,"timestamp":6725239918267,"id":1433,"parentId":1346,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/group-stack-frames-by-framework.js","layer":"app-pages-browser"},"startTime":1776332186954,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":268701,"timestamp":6725239918670,"id":1453,"parentId":1452,"tags":{},"startTime":1776332186954,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":268723,"timestamp":6725239918649,"id":1452,"parentId":1432,"tags":{},"startTime":1776332186954,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":269550,"timestamp":6725239918224,"id":1432,"parentId":1347,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/magic-identifier.js","layer":"app-pages-browser"},"startTime":1776332186954,"traceId":"bd5433937c2d2119"}] +[{"name":"next-swc-transform","duration":269180,"timestamp":6725239918697,"id":1459,"parentId":1458,"tags":{},"startTime":1776332186954,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":269188,"timestamp":6725239918690,"id":1458,"parentId":1435,"tags":{},"startTime":1776332186954,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":270036,"timestamp":6725239918315,"id":1435,"parentId":1311,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Terminal/Terminal.js","layer":"app-pages-browser"},"startTime":1776332186954,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":269647,"timestamp":6725239918712,"id":1463,"parentId":1462,"tags":{},"startTime":1776332186954,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":269655,"timestamp":6725239918706,"id":1462,"parentId":1437,"tags":{},"startTime":1776332186954,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":270218,"timestamp":6725239918353,"id":1437,"parentId":1309,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Dialog/DialogBody.js","layer":"app-pages-browser"},"startTime":1776332186954,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":269858,"timestamp":6725239918720,"id":1465,"parentId":1464,"tags":{},"startTime":1776332186954,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":269866,"timestamp":6725239918713,"id":1464,"parentId":1438,"tags":{},"startTime":1776332186954,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":270409,"timestamp":6725239918370,"id":1438,"parentId":1309,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Dialog/DialogContent.js","layer":"app-pages-browser"},"startTime":1776332186954,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":270059,"timestamp":6725239918727,"id":1467,"parentId":1466,"tags":{},"startTime":1776332186954,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":270067,"timestamp":6725239918721,"id":1466,"parentId":1439,"tags":{},"startTime":1776332186954,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":270604,"timestamp":6725239918387,"id":1439,"parentId":1309,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Dialog/DialogHeader.js","layer":"app-pages-browser"},"startTime":1776332186954,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":270264,"timestamp":6725239918735,"id":1469,"parentId":1468,"tags":{},"startTime":1776332186954,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":270271,"timestamp":6725239918728,"id":1468,"parentId":1440,"tags":{},"startTime":1776332186954,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":270818,"timestamp":6725239918405,"id":1440,"parentId":1309,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Dialog/styles.js","layer":"app-pages-browser"},"startTime":1776332186954,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":270530,"timestamp":6725239918705,"id":1461,"parentId":1460,"tags":{},"startTime":1776332186954,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":270537,"timestamp":6725239918698,"id":1460,"parentId":1436,"tags":{},"startTime":1776332186954,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":271453,"timestamp":6725239918334,"id":1436,"parentId":1309,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Dialog/Dialog.js","layer":"app-pages-browser"},"startTime":1776332186954,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":271053,"timestamp":6725239918742,"id":1471,"parentId":1470,"tags":{},"startTime":1776332186954,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":271060,"timestamp":6725239918735,"id":1470,"parentId":1441,"tags":{},"startTime":1776332186954,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":271612,"timestamp":6725239918423,"id":1441,"parentId":1312,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/VersionStalenessInfo/styles.js","layer":"app-pages-browser"},"startTime":1776332186954,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":271285,"timestamp":6725239918756,"id":1475,"parentId":1474,"tags":{},"startTime":1776332186954,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":271292,"timestamp":6725239918749,"id":1474,"parentId":1443,"tags":{},"startTime":1776332186954,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":271802,"timestamp":6725239918457,"id":1443,"parentId":1345,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Toast/styles.js","layer":"app-pages-browser"},"startTime":1776332186954,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":271520,"timestamp":6725239918749,"id":1473,"parentId":1472,"tags":{},"startTime":1776332186954,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":271527,"timestamp":6725239918742,"id":1472,"parentId":1442,"tags":{},"startTime":1776332186954,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":272223,"timestamp":6725239918440,"id":1442,"parentId":1312,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/VersionStalenessInfo/VersionStalenessInfo.js","layer":"app-pages-browser"},"startTime":1776332186954,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":271909,"timestamp":6725239918763,"id":1477,"parentId":1476,"tags":{},"startTime":1776332186954,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":271916,"timestamp":6725239918757,"id":1476,"parentId":1444,"tags":{},"startTime":1776332186954,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":272454,"timestamp":6725239918475,"id":1444,"parentId":1345,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Toast/Toast.js","layer":"app-pages-browser"},"startTime":1776332186954,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":272770,"timestamp":6725239918784,"id":1483,"parentId":1482,"tags":{},"startTime":1776332186954,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":272777,"timestamp":6725239918778,"id":1482,"parentId":1449,"tags":{},"startTime":1776332186954,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":273244,"timestamp":6725239918601,"id":1449,"parentId":1346,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/CodeFrame/index.js","layer":"app-pages-browser"},"startTime":1776332186954,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":273086,"timestamp":6725239918777,"id":1481,"parentId":1480,"tags":{},"startTime":1776332186954,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":273094,"timestamp":6725239918771,"id":1480,"parentId":1446,"tags":{},"startTime":1776332186954,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":273714,"timestamp":6725239918509,"id":1446,"parentId":1346,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/container/RuntimeError/GroupedStackFrames.js","layer":"app-pages-browser"},"startTime":1776332186954,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":273471,"timestamp":6725239918770,"id":1479,"parentId":1478,"tags":{},"startTime":1776332186954,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":273479,"timestamp":6725239918764,"id":1478,"parentId":1445,"tags":{},"startTime":1776332186954,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":274347,"timestamp":6725239918492,"id":1445,"parentId":1348,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/LeftRightDialogHeader/LeftRightDialogHeader.js","layer":"app-pages-browser"},"startTime":1776332186954,"traceId":"bd5433937c2d2119"},{"name":"read-resource","duration":296787,"timestamp":6725239896838,"id":1389,"parentId":1388,"tags":{},"startTime":1776332186933,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":296917,"timestamp":6725239896830,"id":1388,"parentId":889,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react/jsx-dev-runtime.js","layer":"app-pages-browser"},"startTime":1776332186933,"traceId":"bd5433937c2d2119"},{"name":"read-resource","duration":296948,"timestamp":6725239896810,"id":1387,"parentId":1386,"tags":{},"startTime":1776332186932,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":297251,"timestamp":6725239896552,"id":1386,"parentId":894,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react/jsx-runtime.js","layer":"app-pages-browser"},"startTime":1776332186932,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":20490,"timestamp":6725240186000,"id":1497,"parentId":1496,"tags":{},"startTime":1776332187222,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":20512,"timestamp":6725240185992,"id":1496,"parentId":1490,"tags":{},"startTime":1776332187222,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":21191,"timestamp":6725240185912,"id":1490,"parentId":1385,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/icons/CollapseIcon.js","layer":"app-pages-browser"},"startTime":1776332187222,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":21166,"timestamp":6725240185979,"id":1493,"parentId":1492,"tags":{},"startTime":1776332187222,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":21199,"timestamp":6725240185949,"id":1492,"parentId":1488,"tags":{},"startTime":1776332187222,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":21543,"timestamp":6725240185854,"id":1488,"parentId":1382,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/shared/lib/escape-regexp.js","layer":"app-pages-browser"},"startTime":1776332187222,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":21429,"timestamp":6725240185992,"id":1495,"parentId":1494,"tags":{},"startTime":1776332187222,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":21440,"timestamp":6725240185981,"id":1494,"parentId":1489,"tags":{},"startTime":1776332187222,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":22202,"timestamp":6725240185886,"id":1489,"parentId":1383,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/stack-frame.js","layer":"app-pages-browser"},"startTime":1776332187222,"traceId":"bd5433937c2d2119"},{"name":"read-resource","duration":295973,"timestamp":6725239912565,"id":1411,"parentId":1410,"tags":{},"startTime":1776332186948,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":296203,"timestamp":6725239912553,"id":1410,"parentId":897,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react/index.js","layer":"app-pages-browser"},"startTime":1776332186948,"traceId":"bd5433937c2d2119"},{"name":"read-resource","duration":242,"timestamp":6725240211257,"id":1514,"parentId":1512,"tags":{},"startTime":1776332187247,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":33,"timestamp":6725240211505,"id":1530,"parentId":1512,"tags":{},"startTime":1776332187247,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":1440,"timestamp":6725240211122,"id":1512,"parentId":1435,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/anser/index.js","layer":"app-pages-browser"},"startTime":1776332187247,"traceId":"bd5433937c2d2119"},{"name":"postcss-process","duration":229666,"timestamp":6725240101664,"id":1486,"parentId":1291,"tags":{},"startTime":1776332187137,"traceId":"bd5433937c2d2119"},{"name":"postcss-loader","duration":482807,"timestamp":6725239849713,"id":1291,"parentId":1286,"tags":{},"startTime":1776332186885,"traceId":"bd5433937c2d2119"},{"name":"css-loader","duration":27172,"timestamp":6725240332632,"id":1531,"parentId":1286,"tags":{"astUsed":"true"},"startTime":1776332187368,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":150016,"timestamp":6725240211369,"id":1523,"parentId":1522,"tags":{},"startTime":1776332187247,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":150030,"timestamp":6725240211361,"id":1522,"parentId":1508,"tags":{},"startTime":1776332187247,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":151053,"timestamp":6725240210924,"id":1508,"parentId":1434,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Overlay/body-locker.js","layer":"app-pages-browser"},"startTime":1776332187247,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":150656,"timestamp":6725240211350,"id":1519,"parentId":1518,"tags":{},"startTime":1776332187247,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":150701,"timestamp":6725240211306,"id":1518,"parentId":1506,"tags":{},"startTime":1776332187247,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":151724,"timestamp":6725240210869,"id":1506,"parentId":1446,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/icons/FrameworkIcon.js","layer":"app-pages-browser"},"startTime":1776332187247,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":151311,"timestamp":6725240211304,"id":1517,"parentId":1516,"tags":{},"startTime":1776332187247,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":151346,"timestamp":6725240211271,"id":1516,"parentId":1505,"tags":{},"startTime":1776332187247,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":152110,"timestamp":6725240210795,"id":1505,"parentId":1436,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/hooks/use-on-click-outside.js","layer":"app-pages-browser"},"startTime":1776332187246,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":151537,"timestamp":6725240211392,"id":1529,"parentId":1528,"tags":{},"startTime":1776332187247,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":151544,"timestamp":6725240211386,"id":1528,"parentId":1511,"tags":{},"startTime":1776332187247,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":152137,"timestamp":6725240211096,"id":1511,"parentId":1446,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/container/RuntimeError/CallStackFrame.js","layer":"app-pages-browser"},"startTime":1776332187247,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":151867,"timestamp":6725240211385,"id":1527,"parentId":1526,"tags":{},"startTime":1776332187247,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":151874,"timestamp":6725240211378,"id":1526,"parentId":1510,"tags":{},"startTime":1776332187247,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":152632,"timestamp":6725240211057,"id":1510,"parentId":1449,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/CodeFrame/CodeFrame.js","layer":"app-pages-browser"},"startTime":1776332187247,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":152324,"timestamp":6725240211377,"id":1525,"parentId":1524,"tags":{},"startTime":1776332187247,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":152332,"timestamp":6725240211370,"id":1524,"parentId":1509,"tags":{},"startTime":1776332187247,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":153308,"timestamp":6725240210946,"id":1509,"parentId":1435,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Terminal/EditorLink.js","layer":"app-pages-browser"},"startTime":1776332187247,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":153198,"timestamp":6725240211360,"id":1521,"parentId":1520,"tags":{},"startTime":1776332187247,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":153209,"timestamp":6725240211351,"id":1520,"parentId":1507,"tags":{},"startTime":1776332187247,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":161258,"timestamp":6725240210898,"id":1507,"parentId":1434,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/components/Overlay/maintain--tab-focus.js","layer":"app-pages-browser"},"startTime":1776332187247,"traceId":"bd5433937c2d2119"},{"name":"read-resource","duration":169682,"timestamp":6725240209908,"id":1500,"parentId":1499,"tags":{},"startTime":1776332187246,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":170126,"timestamp":6725240209863,"id":1499,"parentId":896,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react-dom/index.js","layer":"app-pages-browser"},"startTime":1776332187246,"traceId":"bd5433937c2d2119"},{"name":"read-resource","duration":169808,"timestamp":6725240210203,"id":1504,"parentId":1503,"tags":{},"startTime":1776332187246,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":169903,"timestamp":6725240210171,"id":1503,"parentId":955,"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":1776332187246,"traceId":"bd5433937c2d2119"},{"name":"read-resource","duration":169943,"timestamp":6725240210136,"id":1502,"parentId":1501,"tags":{},"startTime":1776332187246,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":170238,"timestamp":6725240209965,"id":1501,"parentId":1026,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react-dom/client.js","layer":"app-pages-browser"},"startTime":1776332187246,"traceId":"bd5433937c2d2119"},{"name":"read-resource","duration":171030,"timestamp":6725240211261,"id":1515,"parentId":1513,"tags":{},"startTime":1776332187247,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":33,"timestamp":6725240382298,"id":1538,"parentId":1513,"tags":{},"startTime":1776332187418,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":171218,"timestamp":6725240211212,"id":1513,"parentId":927,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react-refresh/runtime.js","layer":"app-pages-browser"},"startTime":1776332187247,"traceId":"bd5433937c2d2119"},{"name":"read-resource","duration":76,"timestamp":6725240382872,"id":1542,"parentId":1540,"tags":{},"startTime":1776332187419,"traceId":"bd5433937c2d2119"},{"name":"read-resource","duration":158,"timestamp":6725240382874,"id":1543,"parentId":1541,"tags":{},"startTime":1776332187419,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":167,"timestamp":6725240382951,"id":1546,"parentId":1540,"tags":{},"startTime":1776332187419,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":84,"timestamp":6725240383035,"id":1547,"parentId":1541,"tags":{},"startTime":1776332187419,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":2571,"timestamp":6725240382775,"id":1540,"parentId":1507,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/platform/platform.js","layer":"app-pages-browser"},"startTime":1776332187418,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":2761,"timestamp":6725240382829,"id":1541,"parentId":1507,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/css.escape/css.escape.js","layer":"app-pages-browser"},"startTime":1776332187419,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":2934,"timestamp":6725240382917,"id":1545,"parentId":1544,"tags":{},"startTime":1776332187419,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":2961,"timestamp":6725240382891,"id":1544,"parentId":1539,"tags":{},"startTime":1776332187419,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":3464,"timestamp":6725240382719,"id":1539,"parentId":1511,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/client/components/react-dev-overlay/internal/helpers/use-open-in-editor.js","layer":"app-pages-browser"},"startTime":1776332187418,"traceId":"bd5433937c2d2119"},{"name":"read-resource","duration":5578,"timestamp":6725240381363,"id":1533,"parentId":1532,"tags":{},"startTime":1776332187417,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":7397,"timestamp":6725240381322,"id":1532,"parentId":1386,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react/cjs/react-jsx-runtime.development.js","layer":"app-pages-browser"},"startTime":1776332187417,"traceId":"bd5433937c2d2119"}] +[{"name":"read-resource","duration":7418,"timestamp":6725240381392,"id":1535,"parentId":1534,"tags":{},"startTime":1776332187417,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":9173,"timestamp":6725240381380,"id":1534,"parentId":1388,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react/cjs/react-jsx-dev-runtime.development.js","layer":"app-pages-browser"},"startTime":1776332187417,"traceId":"bd5433937c2d2119"},{"name":"read-resource","duration":9164,"timestamp":6725240381408,"id":1537,"parentId":1536,"tags":{},"startTime":1776332187417,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":13924,"timestamp":6725240381399,"id":1536,"parentId":1410,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react/cjs/react.development.js","layer":"app-pages-browser"},"startTime":1776332187417,"traceId":"bd5433937c2d2119"},{"name":"add-entry","duration":760648,"timestamp":6725239635814,"id":878,"parentId":875,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2Frecommendations%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776332186671,"traceId":"bd5433937c2d2119"},{"name":"build-module-css","duration":552584,"timestamp":6725239844500,"id":1286,"parentId":1197,"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":1776332186880,"traceId":"bd5433937c2d2119"},{"name":"read-resource","duration":1699,"timestamp":6725240395539,"id":1549,"parentId":1548,"tags":{},"startTime":1776332187431,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":1887,"timestamp":6725240395486,"id":1548,"parentId":1503,"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":1776332187431,"traceId":"bd5433937c2d2119"},{"name":"read-resource","duration":641,"timestamp":6725240396911,"id":1553,"parentId":1552,"tags":{},"startTime":1776332187433,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":44,"timestamp":6725240397558,"id":1554,"parentId":1552,"tags":{},"startTime":1776332187433,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":1620,"timestamp":6725240396826,"id":1552,"parentId":1513,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react-refresh/cjs/react-refresh-runtime.development.js","layer":"app-pages-browser"},"startTime":1776332187432,"traceId":"bd5433937c2d2119"},{"name":"add-entry","duration":762810,"timestamp":6725239635669,"id":876,"parentId":875,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js"},"startTime":1776332186671,"traceId":"bd5433937c2d2119"},{"name":"read-resource","duration":219,"timestamp":6725240399063,"id":1556,"parentId":1555,"tags":{},"startTime":1776332187435,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":626,"timestamp":6725240398868,"id":1555,"parentId":1286,"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":1776332187435,"traceId":"bd5433937c2d2119"},{"name":"build-module-css","duration":610497,"timestamp":6725239794084,"id":1197,"parentId":882,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/globals.css","layer":"app-pages-browser"},"startTime":1776332186830,"traceId":"bd5433937c2d2119"},{"name":"read-resource","duration":7963,"timestamp":6725240396759,"id":1551,"parentId":1550,"tags":{},"startTime":1776332187432,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":82642,"timestamp":6725240396733,"id":1550,"parentId":1499,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react-dom/cjs/react-dom.development.js","layer":"app-pages-browser"},"startTime":1776332187432,"traceId":"bd5433937c2d2119"},{"name":"read-resource","duration":80424,"timestamp":6725240399100,"id":1558,"parentId":1557,"tags":{},"startTime":1776332187435,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":84791,"timestamp":6725240399088,"id":1557,"parentId":1548,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/react-server-dom-webpack/cjs/react-server-dom-webpack-client.browser.development.js","layer":"app-pages-browser"},"startTime":1776332187435,"traceId":"bd5433937c2d2119"},{"name":"build-module","duration":81,"timestamp":6725240485580,"id":1559,"parentId":1197,"tags":{},"startTime":1776332187521,"traceId":"bd5433937c2d2119"},{"name":"add-entry","duration":849844,"timestamp":6725239635864,"id":879,"parentId":875,"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%2Fcomponents%2Fauth-guard.tsx%22%2C%22ids%22%3A%5B%22AuthGuard%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fnav.tsx%22%2C%22ids%22%3A%5B%22SidebarNav%22%2C%22MobileBottomNav%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fuser-menu.tsx%22%2C%22ids%22%3A%5B%22UserMenu%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fhooks%2Fuse-auth.tsx%22%2C%22ids%22%3A%5B%22AuthProvider%22%5D%7D&server=false!"},"startTime":1776332186672,"traceId":"bd5433937c2d2119"},{"name":"read-resource","duration":273,"timestamp":6725240487199,"id":1561,"parentId":1560,"tags":{},"startTime":1776332187523,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":30,"timestamp":6725240487481,"id":1562,"parentId":1560,"tags":{},"startTime":1776332187523,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":607,"timestamp":6725240487070,"id":1560,"parentId":1550,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/scheduler/index.js","layer":"app-pages-browser"},"startTime":1776332187523,"traceId":"bd5433937c2d2119"},{"name":"read-resource","duration":288,"timestamp":6725240488187,"id":1564,"parentId":1563,"tags":{},"startTime":1776332187524,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":53,"timestamp":6725240488483,"id":1565,"parentId":1563,"tags":{},"startTime":1776332187524,"traceId":"bd5433937c2d2119"},{"name":"build-module-js","duration":1401,"timestamp":6725240488090,"id":1563,"parentId":1560,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/scheduler/cjs/scheduler.development.js","layer":"app-pages-browser"},"startTime":1776332187524,"traceId":"bd5433937c2d2119"},{"name":"add-entry","duration":853760,"timestamp":6725239635796,"id":877,"parentId":875,"tags":{"request":"./node_modules/next/dist/client/app-next-dev.js"},"startTime":1776332186671,"traceId":"bd5433937c2d2119"},{"name":"add-entry","duration":853684,"timestamp":6725239635875,"id":880,"parentId":875,"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":1776332186672,"traceId":"bd5433937c2d2119"},{"name":"make","duration":856982,"timestamp":6725239632590,"id":875,"parentId":874,"tags":{},"startTime":1776332186668,"traceId":"bd5433937c2d2119"},{"name":"chunk-graph","duration":2088,"timestamp":6725240492686,"id":1567,"parentId":1566,"tags":{},"startTime":1776332187528,"traceId":"bd5433937c2d2119"},{"name":"optimize-modules","duration":3,"timestamp":6725240494790,"id":1569,"parentId":1566,"tags":{},"startTime":1776332187530,"traceId":"bd5433937c2d2119"},{"name":"optimize-chunks","duration":50,"timestamp":6725240494803,"id":1570,"parentId":1566,"tags":{},"startTime":1776332187530,"traceId":"bd5433937c2d2119"},{"name":"optimize-tree","duration":4,"timestamp":6725240494883,"id":1571,"parentId":1566,"tags":{},"startTime":1776332187531,"traceId":"bd5433937c2d2119"},{"name":"optimize-chunk-modules","duration":2,"timestamp":6725240494896,"id":1572,"parentId":1566,"tags":{},"startTime":1776332187531,"traceId":"bd5433937c2d2119"},{"name":"optimize","duration":718,"timestamp":6725240494785,"id":1568,"parentId":1566,"tags":{},"startTime":1776332187530,"traceId":"bd5433937c2d2119"},{"name":"module-hash","duration":2978,"timestamp":6725240496774,"id":1573,"parentId":1566,"tags":{},"startTime":1776332187532,"traceId":"bd5433937c2d2119"},{"name":"code-generation","duration":8613,"timestamp":6725240499763,"id":1574,"parentId":1566,"tags":{},"startTime":1776332187535,"traceId":"bd5433937c2d2119"},{"name":"hash","duration":7403,"timestamp":6725240509984,"id":1575,"parentId":1566,"tags":{},"startTime":1776332187546,"traceId":"bd5433937c2d2119"},{"name":"code-generation-jobs","duration":292,"timestamp":6725240517387,"id":1576,"parentId":1566,"tags":{},"startTime":1776332187553,"traceId":"bd5433937c2d2119"},{"name":"module-assets","duration":49,"timestamp":6725240517659,"id":1577,"parentId":1566,"tags":{},"startTime":1776332187553,"traceId":"bd5433937c2d2119"},{"name":"create-chunk-assets","duration":75069,"timestamp":6725240517711,"id":1578,"parentId":1566,"tags":{},"startTime":1776332187553,"traceId":"bd5433937c2d2119"},{"name":"NextJsBuildManifest-generateClientManifest","duration":60,"timestamp":6725240593359,"id":1580,"parentId":874,"tags":{},"startTime":1776332187629,"traceId":"bd5433937c2d2119"},{"name":"NextJsBuildManifest-createassets","duration":232,"timestamp":6725240593191,"id":1579,"parentId":874,"tags":{},"startTime":1776332187629,"traceId":"bd5433937c2d2119"},{"name":"seal","duration":102808,"timestamp":6725240492077,"id":1566,"parentId":874,"tags":{},"startTime":1776332187528,"traceId":"bd5433937c2d2119"},{"name":"webpack-compilation","duration":962571,"timestamp":6725239632353,"id":874,"parentId":258,"tags":{"name":"client"},"startTime":1776332186668,"traceId":"bd5433937c2d2119"},{"name":"emit","duration":24682,"timestamp":6725240594949,"id":1581,"parentId":258,"tags":{},"startTime":1776332187631,"traceId":"bd5433937c2d2119"},{"name":"compile-path","duration":1680057,"timestamp":6725238940292,"id":117,"tags":{"trigger":"/recommendations","isTurbopack":false},"startTime":1776332185976,"traceId":"bd5433937c2d2119"},{"name":"webpack-invalidated-client","duration":1430099,"timestamp":6725239190478,"id":258,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776332186226,"traceId":"bd5433937c2d2119"}] +[{"name":"handle-request","duration":1794058,"timestamp":6725238928971,"id":115,"tags":{"url":"/recommendations","isTurbopack":false},"startTime":1776332185965,"traceId":"bd5433937c2d2119"},{"name":"memory-usage","duration":0,"timestamp":6725240723064,"id":1582,"parentId":115,"tags":{"url":"/recommendations","memory.rss":"490553344","memory.heapUsed":"291021712","memory.heapTotal":"315965440"},"startTime":1776332187759,"traceId":"bd5433937c2d2119"},{"name":"client-success","duration":27,"timestamp":6725241647688,"id":1583,"parentId":3,"tags":{},"startTime":1776332188683,"traceId":"bd5433937c2d2119"},{"name":"add-entry","duration":9682,"timestamp":6725245242609,"id":1590,"parentId":1588,"tags":{"request":"next-app-loader?name=app%2Frecommendations%2Fpage&page=%2Frecommendations%2Fpage&appPaths=%2Frecommendations%2Fpage&pagePath=private-next-app-dir%2Frecommendations%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776332192278,"traceId":"bd5433937c2d2119"},{"name":"build-module","duration":7641,"timestamp":6725245249001,"id":1591,"parentId":1589,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-app-loader.js?name=app%2Fpage&page=%2Fpage&appPaths=%2Fpage&pagePath=private-next-app-dir%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!","layer":"rsc"},"startTime":1776332192285,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":2415,"timestamp":6725245259143,"id":1594,"parentId":1593,"tags":{},"startTime":1776332192295,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":2500,"timestamp":6725245259063,"id":1593,"parentId":1592,"tags":{},"startTime":1776332192295,"traceId":"bd5433937c2d2119"},{"name":"build-module-tsx","duration":3077,"timestamp":6725245258821,"id":1592,"parentId":1591,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/page.tsx","layer":"rsc"},"startTime":1776332192295,"traceId":"bd5433937c2d2119"},{"name":"add-entry","duration":20634,"timestamp":6725245242495,"id":1589,"parentId":1588,"tags":{"request":"next-app-loader?name=app%2Fpage&page=%2Fpage&appPaths=%2Fpage&pagePath=private-next-app-dir%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776332192278,"traceId":"bd5433937c2d2119"},{"name":"build-module","duration":425,"timestamp":6725245270617,"id":1602,"parentId":1587,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=true!","layer":"ssr"},"startTime":1776332192306,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":6588,"timestamp":6725245274235,"id":1605,"parentId":1604,"tags":{},"startTime":1776332192310,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":6664,"timestamp":6725245274162,"id":1604,"parentId":1603,"tags":{},"startTime":1776332192310,"traceId":"bd5433937c2d2119"},{"name":"build-module-tsx","duration":9398,"timestamp":6725245273855,"id":1603,"parentId":1602,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/page.tsx","layer":"ssr"},"startTime":1776332192310,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":1419,"timestamp":6725245294504,"id":1614,"parentId":1613,"tags":{},"startTime":1776332192330,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":1475,"timestamp":6725245294454,"id":1613,"parentId":1612,"tags":{},"startTime":1776332192330,"traceId":"bd5433937c2d2119"},{"name":"build-module-ts","duration":2304,"timestamp":6725245294345,"id":1612,"parentId":1603,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/lib/markdown.ts","layer":"ssr"},"startTime":1776332192330,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":2611,"timestamp":6725245294109,"id":1609,"parentId":1608,"tags":{},"startTime":1776332192330,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":2660,"timestamp":6725245294062,"id":1608,"parentId":1606,"tags":{},"startTime":1776332192330,"traceId":"bd5433937c2d2119"},{"name":"build-module-tsx","duration":3479,"timestamp":6725245293891,"id":1606,"parentId":1603,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/sector-heatmap.tsx","layer":"ssr"},"startTime":1776332192330,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":3304,"timestamp":6725245294142,"id":1611,"parentId":1610,"tags":{},"startTime":1776332192330,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":3334,"timestamp":6725245294113,"id":1610,"parentId":1607,"tags":{},"startTime":1776332192330,"traceId":"bd5433937c2d2119"},{"name":"build-module-tsx","duration":4436,"timestamp":6725245293994,"id":1607,"parentId":1603,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/market-temp.tsx","layer":"ssr"},"startTime":1776332192330,"traceId":"bd5433937c2d2119"},{"name":"make","duration":59740,"timestamp":6725245240933,"id":1588,"parentId":1587,"tags":{},"startTime":1776332192277,"traceId":"bd5433937c2d2119"},{"name":"chunk-graph","duration":2852,"timestamp":6725245302679,"id":1616,"parentId":1615,"tags":{},"startTime":1776332192338,"traceId":"bd5433937c2d2119"},{"name":"optimize-modules","duration":3,"timestamp":6725245305547,"id":1618,"parentId":1615,"tags":{},"startTime":1776332192341,"traceId":"bd5433937c2d2119"},{"name":"optimize-chunks","duration":2366,"timestamp":6725245305739,"id":1619,"parentId":1615,"tags":{},"startTime":1776332192341,"traceId":"bd5433937c2d2119"},{"name":"optimize-tree","duration":4,"timestamp":6725245308123,"id":1620,"parentId":1615,"tags":{},"startTime":1776332192344,"traceId":"bd5433937c2d2119"},{"name":"optimize-chunk-modules","duration":2,"timestamp":6725245308139,"id":1621,"parentId":1615,"tags":{},"startTime":1776332192344,"traceId":"bd5433937c2d2119"},{"name":"optimize","duration":3140,"timestamp":6725245305541,"id":1617,"parentId":1615,"tags":{},"startTime":1776332192341,"traceId":"bd5433937c2d2119"},{"name":"module-hash","duration":682,"timestamp":6725245310484,"id":1622,"parentId":1615,"tags":{},"startTime":1776332192346,"traceId":"bd5433937c2d2119"},{"name":"code-generation","duration":2884,"timestamp":6725245311173,"id":1623,"parentId":1615,"tags":{},"startTime":1776332192347,"traceId":"bd5433937c2d2119"},{"name":"hash","duration":827,"timestamp":6725245315003,"id":1624,"parentId":1615,"tags":{},"startTime":1776332192351,"traceId":"bd5433937c2d2119"},{"name":"code-generation-jobs","duration":69,"timestamp":6725245315829,"id":1625,"parentId":1615,"tags":{},"startTime":1776332192352,"traceId":"bd5433937c2d2119"},{"name":"module-assets","duration":42,"timestamp":6725245315889,"id":1626,"parentId":1615,"tags":{},"startTime":1776332192352,"traceId":"bd5433937c2d2119"},{"name":"create-chunk-assets","duration":4231,"timestamp":6725245315934,"id":1627,"parentId":1615,"tags":{},"startTime":1776332192352,"traceId":"bd5433937c2d2119"},{"name":"seal","duration":19373,"timestamp":6725245302134,"id":1615,"parentId":1587,"tags":{},"startTime":1776332192338,"traceId":"bd5433937c2d2119"},{"name":"webpack-compilation","duration":83145,"timestamp":6725245239574,"id":1587,"parentId":1585,"tags":{"name":"server"},"startTime":1776332192275,"traceId":"bd5433937c2d2119"},{"name":"emit","duration":2526,"timestamp":6725245322742,"id":1628,"parentId":1585,"tags":{},"startTime":1776332192358,"traceId":"bd5433937c2d2119"},{"name":"webpack-invalidated-server","duration":90732,"timestamp":6725245234905,"id":1585,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776332192271,"traceId":"bd5433937c2d2119"},{"name":"add-entry","duration":16900,"timestamp":6725245331088,"id":1631,"parentId":1630,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js"},"startTime":1776332192367,"traceId":"bd5433937c2d2119"},{"name":"add-entry","duration":18312,"timestamp":6725245331127,"id":1633,"parentId":1630,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2Frecommendations%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776332192367,"traceId":"bd5433937c2d2119"},{"name":"add-entry","duration":27941,"timestamp":6725245331144,"id":1635,"parentId":1630,"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":1776332192367,"traceId":"bd5433937c2d2119"},{"name":"add-entry","duration":28451,"timestamp":6725245331119,"id":1632,"parentId":1630,"tags":{"request":"./node_modules/next/dist/client/app-next-dev.js"},"startTime":1776332192367,"traceId":"bd5433937c2d2119"},{"name":"read-resource","duration":10115,"timestamp":6725245350112,"id":1639,"parentId":1638,"tags":{},"startTime":1776332192386,"traceId":"bd5433937c2d2119"},{"name":"postcss-process","duration":72913,"timestamp":6725245360303,"id":1641,"parentId":1640,"tags":{},"startTime":1776332192396,"traceId":"bd5433937c2d2119"},{"name":"postcss-loader","duration":73569,"timestamp":6725245360280,"id":1640,"parentId":1638,"tags":{},"startTime":1776332192396,"traceId":"bd5433937c2d2119"},{"name":"css-loader","duration":9801,"timestamp":6725245433881,"id":1642,"parentId":1638,"tags":{"astUsed":"true"},"startTime":1776332192470,"traceId":"bd5433937c2d2119"},{"name":"build-module-css","duration":94788,"timestamp":6725245350014,"id":1638,"parentId":1637,"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":1776332192386,"traceId":"bd5433937c2d2119"},{"name":"build-module-css","duration":105209,"timestamp":6725245343187,"id":1637,"parentId":1629,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/globals.css","layer":"app-pages-browser"},"startTime":1776332192379,"traceId":"bd5433937c2d2119"},{"name":"build-module","duration":29,"timestamp":6725245448843,"id":1643,"parentId":1637,"tags":{},"startTime":1776332192485,"traceId":"bd5433937c2d2119"},{"name":"add-entry","duration":117911,"timestamp":6725245331139,"id":1634,"parentId":1630,"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%2Fcomponents%2Fauth-guard.tsx%22%2C%22ids%22%3A%5B%22AuthGuard%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fnav.tsx%22%2C%22ids%22%3A%5B%22SidebarNav%22%2C%22MobileBottomNav%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fuser-menu.tsx%22%2C%22ids%22%3A%5B%22UserMenu%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fhooks%2Fuse-auth.tsx%22%2C%22ids%22%3A%5B%22AuthProvider%22%5D%7D&server=false!"},"startTime":1776332192367,"traceId":"bd5433937c2d2119"},{"name":"build-module","duration":483,"timestamp":6725245453009,"id":1644,"parentId":1636,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!","layer":"app-pages-browser"},"startTime":1776332192489,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":3004,"timestamp":6725245454222,"id":1647,"parentId":1646,"tags":{},"startTime":1776332192490,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":3089,"timestamp":6725245454139,"id":1646,"parentId":1645,"tags":{},"startTime":1776332192490,"traceId":"bd5433937c2d2119"},{"name":"build-module-tsx","duration":5030,"timestamp":6725245454040,"id":1645,"parentId":1644,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/page.tsx","layer":"app-pages-browser"},"startTime":1776332192490,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":1436,"timestamp":6725245463329,"id":1656,"parentId":1655,"tags":{},"startTime":1776332192499,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":1472,"timestamp":6725245463297,"id":1655,"parentId":1654,"tags":{},"startTime":1776332192499,"traceId":"bd5433937c2d2119"},{"name":"build-module-ts","duration":2197,"timestamp":6725245463244,"id":1654,"parentId":1645,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/lib/markdown.ts","layer":"app-pages-browser"},"startTime":1776332192499,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":2673,"timestamp":6725245462995,"id":1653,"parentId":1652,"tags":{},"startTime":1776332192499,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":2708,"timestamp":6725245462962,"id":1652,"parentId":1649,"tags":{},"startTime":1776332192499,"traceId":"bd5433937c2d2119"},{"name":"build-module-tsx","duration":3453,"timestamp":6725245462864,"id":1649,"parentId":1645,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/sector-heatmap.tsx","layer":"app-pages-browser"},"startTime":1776332192499,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":3420,"timestamp":6725245462959,"id":1651,"parentId":1650,"tags":{},"startTime":1776332192499,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":3465,"timestamp":6725245462915,"id":1650,"parentId":1648,"tags":{},"startTime":1776332192499,"traceId":"bd5433937c2d2119"},{"name":"build-module-tsx","duration":4574,"timestamp":6725245462771,"id":1648,"parentId":1645,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/components/market-temp.tsx","layer":"app-pages-browser"},"startTime":1776332192498,"traceId":"bd5433937c2d2119"},{"name":"add-entry","duration":136938,"timestamp":6725245331147,"id":1636,"parentId":1630,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776332192367,"traceId":"bd5433937c2d2119"},{"name":"make","duration":139620,"timestamp":6725245328489,"id":1630,"parentId":1629,"tags":{},"startTime":1776332192364,"traceId":"bd5433937c2d2119"},{"name":"chunk-graph","duration":1156,"timestamp":6725245470123,"id":1658,"parentId":1657,"tags":{},"startTime":1776332192506,"traceId":"bd5433937c2d2119"},{"name":"optimize-modules","duration":8,"timestamp":6725245471293,"id":1660,"parentId":1657,"tags":{},"startTime":1776332192507,"traceId":"bd5433937c2d2119"},{"name":"optimize-chunks","duration":45,"timestamp":6725245471311,"id":1661,"parentId":1657,"tags":{},"startTime":1776332192507,"traceId":"bd5433937c2d2119"},{"name":"optimize-tree","duration":10,"timestamp":6725245471368,"id":1662,"parentId":1657,"tags":{},"startTime":1776332192507,"traceId":"bd5433937c2d2119"},{"name":"optimize-chunk-modules","duration":4,"timestamp":6725245471393,"id":1663,"parentId":1657,"tags":{},"startTime":1776332192507,"traceId":"bd5433937c2d2119"},{"name":"optimize","duration":750,"timestamp":6725245471289,"id":1659,"parentId":1657,"tags":{},"startTime":1776332192507,"traceId":"bd5433937c2d2119"},{"name":"module-hash","duration":476,"timestamp":6725245473029,"id":1664,"parentId":1657,"tags":{},"startTime":1776332192509,"traceId":"bd5433937c2d2119"},{"name":"code-generation","duration":1812,"timestamp":6725245473519,"id":1665,"parentId":1657,"tags":{},"startTime":1776332192509,"traceId":"bd5433937c2d2119"},{"name":"hash","duration":2484,"timestamp":6725245476248,"id":1666,"parentId":1657,"tags":{},"startTime":1776332192512,"traceId":"bd5433937c2d2119"},{"name":"code-generation-jobs","duration":269,"timestamp":6725245478731,"id":1667,"parentId":1657,"tags":{},"startTime":1776332192514,"traceId":"bd5433937c2d2119"},{"name":"module-assets","duration":49,"timestamp":6725245478990,"id":1668,"parentId":1657,"tags":{},"startTime":1776332192515,"traceId":"bd5433937c2d2119"},{"name":"create-chunk-assets","duration":6134,"timestamp":6725245479042,"id":1669,"parentId":1657,"tags":{},"startTime":1776332192515,"traceId":"bd5433937c2d2119"},{"name":"NextJsBuildManifest-generateClientManifest","duration":136,"timestamp":6725245487445,"id":1671,"parentId":1629,"tags":{},"startTime":1776332192523,"traceId":"bd5433937c2d2119"},{"name":"NextJsBuildManifest-createassets","duration":197,"timestamp":6725245487389,"id":1670,"parentId":1629,"tags":{},"startTime":1776332192523,"traceId":"bd5433937c2d2119"},{"name":"seal","duration":20240,"timestamp":6725245469417,"id":1657,"parentId":1629,"tags":{},"startTime":1776332192505,"traceId":"bd5433937c2d2119"},{"name":"webpack-compilation","duration":161770,"timestamp":6725245328091,"id":1629,"parentId":1601,"tags":{"name":"client"},"startTime":1776332192364,"traceId":"bd5433937c2d2119"},{"name":"emit","duration":5455,"timestamp":6725245489888,"id":1672,"parentId":1601,"tags":{},"startTime":1776332192526,"traceId":"bd5433937c2d2119"},{"name":"compile-path","duration":260921,"timestamp":6725245234970,"id":1586,"tags":{"trigger":"/","isTurbopack":false},"startTime":1776332192271,"traceId":"bd5433937c2d2119"},{"name":"webpack-invalidated-client","duration":231501,"timestamp":6725245264630,"id":1601,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776332192300,"traceId":"bd5433937c2d2119"}] +[{"name":"client-success","duration":4,"timestamp":6725245497410,"id":1673,"parentId":3,"tags":{},"startTime":1776332192533,"traceId":"bd5433937c2d2119"},{"name":"handle-request","duration":286884,"timestamp":6725245229337,"id":1584,"tags":{"url":"/?_rsc=17yb1","isTurbopack":false},"startTime":1776332192265,"traceId":"bd5433937c2d2119"},{"name":"memory-usage","duration":0,"timestamp":6725245516264,"id":1674,"parentId":1584,"tags":{"url":"/?_rsc=17yb1","memory.rss":"366411776","memory.heapUsed":"208293280","memory.heapTotal":"297418752"},"startTime":1776332192552,"traceId":"bd5433937c2d2119"},{"name":"client-hmr-latency","duration":264000,"timestamp":6725245265675,"id":1676,"parentId":3,"tags":{"updatedModules":["[project]/src/app/globals.css"],"page":"/recommendations","isPageHidden":false},"startTime":1776332192568,"traceId":"bd5433937c2d2119"},{"name":"handle-request","duration":12069,"timestamp":6725245522546,"id":1675,"tags":{"url":"/?_rsc=1p60s","isTurbopack":false},"startTime":1776332192558,"traceId":"bd5433937c2d2119"},{"name":"memory-usage","duration":0,"timestamp":6725245534662,"id":1677,"parentId":1675,"tags":{"url":"/?_rsc=1p60s","memory.rss":"366280704","memory.heapUsed":"209835288","memory.heapTotal":"297418752"},"startTime":1776332192570,"traceId":"bd5433937c2d2119"},{"name":"add-entry","duration":14405,"timestamp":6725264624057,"id":1685,"parentId":1682,"tags":{"request":"next-app-loader?name=app%2Fpage&page=%2Fpage&appPaths=%2Fpage&pagePath=private-next-app-dir%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776332211660,"traceId":"bd5433937c2d2119"},{"name":"add-entry","duration":23540,"timestamp":6725264624052,"id":1684,"parentId":1682,"tags":{"request":"next-app-loader?name=app%2Frecommendations%2Fpage&page=%2Frecommendations%2Fpage&appPaths=%2Frecommendations%2Fpage&pagePath=private-next-app-dir%2Frecommendations%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776332211660,"traceId":"bd5433937c2d2119"},{"name":"build-module","duration":20737,"timestamp":6725264636063,"id":1686,"parentId":1683,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/build/webpack/loaders/next-app-loader.js?name=app%2Fusers%2Fpage&page=%2Fusers%2Fpage&appPaths=%2Fusers%2Fpage&pagePath=private-next-app-dir%2Fusers%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!","layer":"rsc"},"startTime":1776332211672,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":2452,"timestamp":6725264659859,"id":1689,"parentId":1688,"tags":{},"startTime":1776332211696,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":2604,"timestamp":6725264659713,"id":1688,"parentId":1687,"tags":{},"startTime":1776332211695,"traceId":"bd5433937c2d2119"},{"name":"build-module-tsx","duration":3370,"timestamp":6725264659429,"id":1687,"parentId":1686,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/users/page.tsx","layer":"rsc"},"startTime":1776332211695,"traceId":"bd5433937c2d2119"},{"name":"add-entry","duration":40491,"timestamp":6725264623836,"id":1683,"parentId":1682,"tags":{"request":"next-app-loader?name=app%2Fusers%2Fpage&page=%2Fusers%2Fpage&appPaths=%2Fusers%2Fpage&pagePath=private-next-app-dir%2Fusers%2Fpage.tsx&appDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&rootDir=%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend&isDev=true&tsconfigPath=tsconfig.json&basePath=&assetPrefix=&nextConfigOutput=standalone&preferredRegion=&middlewareConfig=e30%3D!"},"startTime":1776332211660,"traceId":"bd5433937c2d2119"},{"name":"build-module","duration":697,"timestamp":6725264672906,"id":1700,"parentId":1681,"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%2Fusers%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=true!","layer":"ssr"},"startTime":1776332211709,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":5194,"timestamp":6725264677324,"id":1703,"parentId":1702,"tags":{},"startTime":1776332211713,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":5277,"timestamp":6725264677248,"id":1702,"parentId":1701,"tags":{},"startTime":1776332211713,"traceId":"bd5433937c2d2119"},{"name":"build-module-tsx","duration":14834,"timestamp":6725264676973,"id":1701,"parentId":1700,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/users/page.tsx","layer":"ssr"},"startTime":1776332211713,"traceId":"bd5433937c2d2119"},{"name":"make","duration":81391,"timestamp":6725264619277,"id":1682,"parentId":1681,"tags":{},"startTime":1776332211655,"traceId":"bd5433937c2d2119"},{"name":"chunk-graph","duration":1196,"timestamp":6725264702941,"id":1705,"parentId":1704,"tags":{},"startTime":1776332211739,"traceId":"bd5433937c2d2119"},{"name":"optimize-modules","duration":3,"timestamp":6725264704153,"id":1707,"parentId":1704,"tags":{},"startTime":1776332211740,"traceId":"bd5433937c2d2119"},{"name":"optimize-chunks","duration":1271,"timestamp":6725264704168,"id":1708,"parentId":1704,"tags":{},"startTime":1776332211740,"traceId":"bd5433937c2d2119"},{"name":"optimize-tree","duration":7,"timestamp":6725264705459,"id":1709,"parentId":1704,"tags":{},"startTime":1776332211741,"traceId":"bd5433937c2d2119"},{"name":"optimize-chunk-modules","duration":10,"timestamp":6725264705478,"id":1710,"parentId":1704,"tags":{},"startTime":1776332211741,"traceId":"bd5433937c2d2119"},{"name":"optimize","duration":2234,"timestamp":6725264704148,"id":1706,"parentId":1704,"tags":{},"startTime":1776332211740,"traceId":"bd5433937c2d2119"},{"name":"module-hash","duration":333,"timestamp":6725264706996,"id":1711,"parentId":1704,"tags":{},"startTime":1776332211743,"traceId":"bd5433937c2d2119"},{"name":"code-generation","duration":2039,"timestamp":6725264707337,"id":1712,"parentId":1704,"tags":{},"startTime":1776332211743,"traceId":"bd5433937c2d2119"},{"name":"hash","duration":769,"timestamp":6725264710026,"id":1713,"parentId":1704,"tags":{},"startTime":1776332211746,"traceId":"bd5433937c2d2119"},{"name":"code-generation-jobs","duration":62,"timestamp":6725264710795,"id":1714,"parentId":1704,"tags":{},"startTime":1776332211746,"traceId":"bd5433937c2d2119"},{"name":"module-assets","duration":32,"timestamp":6725264710852,"id":1715,"parentId":1704,"tags":{},"startTime":1776332211747,"traceId":"bd5433937c2d2119"},{"name":"create-chunk-assets","duration":2136,"timestamp":6725264710887,"id":1716,"parentId":1704,"tags":{},"startTime":1776332211747,"traceId":"bd5433937c2d2119"},{"name":"seal","duration":12145,"timestamp":6725264701981,"id":1704,"parentId":1681,"tags":{},"startTime":1776332211738,"traceId":"bd5433937c2d2119"},{"name":"webpack-compilation","duration":97626,"timestamp":6725264618598,"id":1681,"parentId":1679,"tags":{"name":"server"},"startTime":1776332211654,"traceId":"bd5433937c2d2119"},{"name":"emit","duration":2303,"timestamp":6725264716249,"id":1717,"parentId":1679,"tags":{},"startTime":1776332211752,"traceId":"bd5433937c2d2119"},{"name":"webpack-invalidated-server","duration":111827,"timestamp":6725264607117,"id":1679,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776332211643,"traceId":"bd5433937c2d2119"},{"name":"build-module","duration":574,"timestamp":6725264727649,"id":1727,"parentId":1726,"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%2Fusers%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!","layer":"app-pages-browser"},"startTime":1776332211763,"traceId":"bd5433937c2d2119"},{"name":"add-entry","duration":5906,"timestamp":6725264723664,"id":1720,"parentId":1719,"tags":{"request":"/Users/aaron/source_code/astock-agent/frontend/node_modules/next/dist/compiled/@next/react-refresh-utils/dist/runtime.js"},"startTime":1776332211759,"traceId":"bd5433937c2d2119"},{"name":"add-entry","duration":6522,"timestamp":6725264723700,"id":1725,"parentId":1719,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776332211759,"traceId":"bd5433937c2d2119"},{"name":"add-entry","duration":7308,"timestamp":6725264723691,"id":1722,"parentId":1719,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2Frecommendations%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776332211759,"traceId":"bd5433937c2d2119"},{"name":"add-entry","duration":9108,"timestamp":6725264723697,"id":1724,"parentId":1719,"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":1776332211759,"traceId":"bd5433937c2d2119"},{"name":"add-entry","duration":9158,"timestamp":6725264723687,"id":1721,"parentId":1719,"tags":{"request":"./node_modules/next/dist/client/app-next-dev.js"},"startTime":1776332211759,"traceId":"bd5433937c2d2119"},{"name":"add-entry","duration":9154,"timestamp":6725264723695,"id":1723,"parentId":1719,"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%2Fcomponents%2Fauth-guard.tsx%22%2C%22ids%22%3A%5B%22AuthGuard%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fnav.tsx%22%2C%22ids%22%3A%5B%22SidebarNav%22%2C%22MobileBottomNav%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fcomponents%2Fuser-menu.tsx%22%2C%22ids%22%3A%5B%22UserMenu%22%5D%7D&modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fhooks%2Fuse-auth.tsx%22%2C%22ids%22%3A%5B%22AuthProvider%22%5D%7D&server=false!"},"startTime":1776332211759,"traceId":"bd5433937c2d2119"},{"name":"next-swc-transform","duration":4668,"timestamp":6725264732199,"id":1730,"parentId":1729,"tags":{},"startTime":1776332211768,"traceId":"bd5433937c2d2119"},{"name":"next-swc-loader","duration":4730,"timestamp":6725264732139,"id":1729,"parentId":1728,"tags":{},"startTime":1776332211768,"traceId":"bd5433937c2d2119"},{"name":"build-module-tsx","duration":15339,"timestamp":6725264731952,"id":1728,"parentId":1727,"tags":{"name":"/Users/aaron/source_code/astock-agent/frontend/src/app/users/page.tsx","layer":"app-pages-browser"},"startTime":1776332211768,"traceId":"bd5433937c2d2119"},{"name":"add-entry","duration":30713,"timestamp":6725264723702,"id":1726,"parentId":1719,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2FUsers%2Faaron%2Fsource_code%2Fastock-agent%2Ffrontend%2Fsrc%2Fapp%2Fusers%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1776332211759,"traceId":"bd5433937c2d2119"},{"name":"make","duration":33944,"timestamp":6725264720506,"id":1719,"parentId":1718,"tags":{},"startTime":1776332211756,"traceId":"bd5433937c2d2119"},{"name":"chunk-graph","duration":950,"timestamp":6725264757346,"id":1732,"parentId":1731,"tags":{},"startTime":1776332211793,"traceId":"bd5433937c2d2119"},{"name":"optimize-modules","duration":4,"timestamp":6725264758312,"id":1734,"parentId":1731,"tags":{},"startTime":1776332211794,"traceId":"bd5433937c2d2119"},{"name":"optimize-chunks","duration":28,"timestamp":6725264758331,"id":1735,"parentId":1731,"tags":{},"startTime":1776332211794,"traceId":"bd5433937c2d2119"},{"name":"optimize-tree","duration":4,"timestamp":6725264758374,"id":1736,"parentId":1731,"tags":{},"startTime":1776332211794,"traceId":"bd5433937c2d2119"},{"name":"optimize-chunk-modules","duration":3,"timestamp":6725264758388,"id":1737,"parentId":1731,"tags":{},"startTime":1776332211794,"traceId":"bd5433937c2d2119"},{"name":"optimize","duration":793,"timestamp":6725264758307,"id":1733,"parentId":1731,"tags":{},"startTime":1776332211794,"traceId":"bd5433937c2d2119"},{"name":"module-hash","duration":372,"timestamp":6725264759787,"id":1738,"parentId":1731,"tags":{},"startTime":1776332211795,"traceId":"bd5433937c2d2119"},{"name":"code-generation","duration":4847,"timestamp":6725264760165,"id":1739,"parentId":1731,"tags":{},"startTime":1776332211796,"traceId":"bd5433937c2d2119"},{"name":"hash","duration":3247,"timestamp":6725264766353,"id":1740,"parentId":1731,"tags":{},"startTime":1776332211802,"traceId":"bd5433937c2d2119"},{"name":"code-generation-jobs","duration":111,"timestamp":6725264769599,"id":1741,"parentId":1731,"tags":{},"startTime":1776332211805,"traceId":"bd5433937c2d2119"},{"name":"module-assets","duration":37,"timestamp":6725264769702,"id":1742,"parentId":1731,"tags":{},"startTime":1776332211805,"traceId":"bd5433937c2d2119"},{"name":"create-chunk-assets","duration":3083,"timestamp":6725264769742,"id":1743,"parentId":1731,"tags":{},"startTime":1776332211805,"traceId":"bd5433937c2d2119"},{"name":"NextJsBuildManifest-generateClientManifest","duration":95,"timestamp":6725264773402,"id":1745,"parentId":1718,"tags":{},"startTime":1776332211809,"traceId":"bd5433937c2d2119"},{"name":"NextJsBuildManifest-createassets","duration":142,"timestamp":6725264773359,"id":1744,"parentId":1718,"tags":{},"startTime":1776332211809,"traceId":"bd5433937c2d2119"},{"name":"seal","duration":18351,"timestamp":6725264756564,"id":1731,"parentId":1718,"tags":{},"startTime":1776332211792,"traceId":"bd5433937c2d2119"},{"name":"webpack-compilation","duration":54752,"timestamp":6725264720183,"id":1718,"parentId":1699,"tags":{"name":"client"},"startTime":1776332211756,"traceId":"bd5433937c2d2119"},{"name":"emit","duration":3334,"timestamp":6725264774952,"id":1746,"parentId":1699,"tags":{},"startTime":1776332211811,"traceId":"bd5433937c2d2119"},{"name":"compile-path","duration":171516,"timestamp":6725264607250,"id":1680,"tags":{"trigger":"/users","isTurbopack":false},"startTime":1776332211643,"traceId":"bd5433937c2d2119"},{"name":"webpack-invalidated-client","duration":113420,"timestamp":6725264665748,"id":1699,"parentId":3,"tags":{"trigger":"manual"},"startTime":1776332211701,"traceId":"bd5433937c2d2119"}] diff --git a/frontend/src/app/users/page.tsx b/frontend/src/app/users/page.tsx index eaf1a20f..2e01fa3c 100644 --- a/frontend/src/app/users/page.tsx +++ b/frontend/src/app/users/page.tsx @@ -7,7 +7,10 @@ import { createUserAPI, disableUserAPI, resetPasswordAPI, + getDataStatsAPI, + dataResetAPI, type UserItem, + type DataStats, } from "@/lib/api"; export default function UsersPage() { @@ -30,6 +33,14 @@ export default function UsersPage() { // Copy feedback const [copied, setCopied] = useState(false); + // Data reset state + const [dataStats, setDataStats] = useState(null); + const [resetMode, setResetMode] = useState<"all" | "recommendations" | "date_range" | "low_score">("low_score"); + const [beforeDate, setBeforeDate] = useState(""); + const [resetLoading, setResetLoading] = useState(false); + const [resetResultMsg, setResetResultMsg] = useState(null); + const [confirmReset, setConfirmReset] = useState(false); + function copyCredential(username: string, password: string) { const text = `用户名:${username}\n密码:${password}`; navigator.clipboard.writeText(text).then(() => { @@ -49,11 +60,21 @@ export default function UsersPage() { } }, []); + const fetchStats = useCallback(async () => { + try { + const stats = await getDataStatsAPI(); + setDataStats(stats); + } catch { + // silently fail + } + }, []); + useEffect(() => { if (currentUser?.role === "admin") { fetchUsers(); + fetchStats(); } - }, [currentUser, fetchUsers]); + }, [currentUser, fetchUsers, fetchStats]); // Non-admin: show nothing (AuthGuard + route should prevent this) if (currentUser?.role !== "admin") { @@ -104,6 +125,28 @@ export default function UsersPage() { } } + async function handleDataReset() { + setConfirmReset(false); + setResetLoading(true); + setResetResultMsg(null); + try { + const result = await dataResetAPI( + resetMode, + resetMode === "date_range" ? beforeDate : undefined, + resetMode === "low_score" ? 60 : undefined, + ); + const parts = Object.entries(result.deleted) + .filter(([, v]) => v > 0) + .map(([k, v]) => `${k}: ${v}条`); + setResetResultMsg(parts.length > 0 ? `已删除: ${parts.join(", ")}` : "没有需要删除的数据"); + fetchStats(); + } catch (err) { + setResetResultMsg(err instanceof Error ? err.message : "重置失败"); + } finally { + setResetLoading(false); + } + } + return (
{/* Header */} @@ -125,6 +168,118 @@ export default function UsersPage() {

{error}

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

数据统计 & 重置

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

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

+ + +
+ ) : ( + + )} +
+ )} + {/* User list */} {loading ? (
@@ -319,4 +474,4 @@ export default function UsersPage() { )}
); -} +} \ No newline at end of file diff --git a/frontend/src/lib/api.ts b/frontend/src/lib/api.ts index 2e935144..5d919b55 100644 --- a/frontend/src/lib/api.ts +++ b/frontend/src/lib/api.ts @@ -347,3 +347,34 @@ export async function changePasswordAPI(oldPassword: string, newPassword: string new_password: newPassword, }); } + +// ---------- Data Reset (Admin) ---------- + +export interface DataStats { + recommendations: number; + tracking: number; + sector_heat: number; + market_temperature: number; + daily_reviews: number; + low_score_count: number; + latest_date: string; + earliest_date: string; +} + +export interface DataResetResult { + status: string; + mode: string; + deleted: Record; +} + +export async function getDataStatsAPI(): Promise { + return fetchAPI("/api/auth/data-stats"); +} + +export async function dataResetAPI(mode: string, beforeDate?: string, minScore?: number): Promise { + return postAPI("/api/auth/data-reset", { + mode, + before_date: beforeDate, + min_score: minScore, + }); +}