{"version":3,"sources":["../../../../src/server/dev/turbopack-utils.ts"],"sourcesContent":["import type {\n  ServerFields,\n  SetupOpts,\n} from '../lib/router-utils/setup-dev-bundler'\nimport type {\n  Issue,\n  TurbopackResult,\n  Endpoint,\n  RawEntrypoints,\n  Update as TurbopackUpdate,\n  WrittenEndpoint,\n} from '../../build/swc/types'\nimport {\n  type HmrMessageSentToBrowser,\n  HMR_MESSAGE_SENT_TO_BROWSER,\n} from './hot-reloader-types'\nimport * as Log from '../../build/output/log'\nimport type { PropagateToWorkersField } from '../lib/router-utils/types'\nimport type { TurbopackManifestLoader } from '../../shared/lib/turbopack/manifest-loader'\nimport type { AppRoute, Entrypoints, PageRoute } from '../../build/swc/types'\nimport {\n  type EntryKey,\n  getEntryKey,\n  splitEntryKey,\n} from '../../shared/lib/turbopack/entry-key'\nimport type ws from 'next/dist/compiled/ws'\nimport { isMetadataRoute } from '../../lib/metadata/is-metadata-route'\nimport type { CustomRoutes } from '../../lib/load-custom-routes'\nimport {\n  formatIssue,\n  getIssueKey,\n  isRelevantWarning,\n  processIssues,\n  renderStyledStringToErrorAnsi,\n  type EntryIssuesMap,\n  type TopLevelIssuesMap,\n} from '../../shared/lib/turbopack/utils'\nimport { MIDDLEWARE_FILENAME, PROXY_FILENAME } from '../../lib/constants'\n\nconst onceErrorSet = new Set()\n/**\n * Check if given issue is a warning to be display only once.\n * This mimics behavior of get-page-static-info's warnOnce.\n * @param issue\n * @returns\n */\nfunction shouldEmitOnceWarning(issue: Issue): boolean {\n  const { severity, title, stage } = issue\n  if (severity === 'warning' && title.value === 'Invalid page configuration') {\n    if (onceErrorSet.has(issue)) {\n      return false\n    }\n    onceErrorSet.add(issue)\n  }\n  if (\n    severity === 'warning' &&\n    stage === 'config' &&\n    renderStyledStringToErrorAnsi(issue.title).includes(\"can't be external\")\n  ) {\n    if (onceErrorSet.has(issue)) {\n      return false\n    }\n    onceErrorSet.add(issue)\n  }\n\n  return true\n}\n\n/// Print out an issue to the console which should not block\n/// the build by throwing out or blocking error overlay.\nexport function printNonFatalIssue(issue: Issue) {\n  if (isRelevantWarning(issue) && shouldEmitOnceWarning(issue)) {\n    Log.warn(formatIssue(issue))\n  }\n}\n\nexport function processTopLevelIssues(\n  currentTopLevelIssues: TopLevelIssuesMap,\n  result: TurbopackResult\n) {\n  currentTopLevelIssues.clear()\n\n  for (const issue of result.issues) {\n    const issueKey = getIssueKey(issue)\n    currentTopLevelIssues.set(issueKey, issue)\n  }\n}\n\nexport { msToNs } from '../../shared/lib/turbopack/compilation-events'\n\nexport type ChangeSubscriptions = Map<\n  EntryKey,\n  Promise<AsyncIterableIterator<TurbopackResult>>\n>\n\nexport type HandleWrittenEndpoint = (\n  key: EntryKey,\n  result: TurbopackResult<WrittenEndpoint>,\n  forceDeleteCache: boolean\n) => boolean\n\nexport type StartChangeSubscription = (\n  key: EntryKey,\n  includeIssues: boolean,\n  endpoint: Endpoint,\n  createMessage: (\n    change: TurbopackResult,\n    hash: string\n  ) => Promise<HmrMessageSentToBrowser> | HmrMessageSentToBrowser | void,\n  onError?: (\n    e: Error\n  ) => Promise<HmrMessageSentToBrowser> | HmrMessageSentToBrowser | void\n) => Promise<void>\n\nexport type StopChangeSubscription = (key: EntryKey) => Promise<void>\n\nexport type SendHmr = (id: string, message: HmrMessageSentToBrowser) => void\n\nexport type StartBuilding = (\n  id: string,\n  requestUrl: string | undefined,\n  forceRebuild: boolean\n) => () => void\n\nexport type ReadyIds = Set<string>\n\nexport type ClientState = {\n  clientIssues: EntryIssuesMap\n  messages: Map<string, HmrMessageSentToBrowser>\n  turbopackUpdates: TurbopackUpdate[]\n  subscriptions: Map<string, AsyncIterator<any>>\n}\n\nexport type ClientStateMap = WeakMap<ws, ClientState>\n\n// hooks only used by the dev server.\ntype HandleRouteTypeHooks = {\n  handleWrittenEndpoint: HandleWrittenEndpoint\n  subscribeToChanges: StartChangeSubscription\n}\n\nexport async function handleRouteType({\n  dev,\n  page,\n  pathname,\n  route,\n  currentEntryIssues,\n  entrypoints,\n  manifestLoader,\n  readyIds,\n  devRewrites,\n  productionRewrites,\n  hooks,\n  logErrors,\n}: {\n  dev: boolean\n  page: string\n  pathname: string\n  route: PageRoute | AppRoute\n\n  currentEntryIssues: EntryIssuesMap\n  entrypoints: Entrypoints\n  manifestLoader: TurbopackManifestLoader\n  devRewrites: SetupOpts['fsChecker']['rewrites'] | undefined\n  productionRewrites: CustomRoutes['rewrites'] | undefined\n  logErrors: boolean\n\n  readyIds?: ReadyIds // dev\n\n  hooks?: HandleRouteTypeHooks // dev\n}) {\n  switch (route.type) {\n    case 'page': {\n      const clientKey = getEntryKey('pages', 'client', page)\n      const serverKey = getEntryKey('pages', 'server', page)\n\n      try {\n        // In the best case scenario, Turbopack chunks document, app, page separately in that order,\n        // so it can happen that the chunks of document change, but the chunks of app and page\n        // don't. We still need to reload the page chunks in that case though, otherwise the version\n        // of the document or app component export from the pages template is stale.\n        let documentOrAppChanged = false\n        if (entrypoints.global.app) {\n          const key = getEntryKey('pages', 'server', '_app')\n\n          const writtenEndpoint = await entrypoints.global.app.writeToDisk()\n          documentOrAppChanged ||=\n            hooks?.handleWrittenEndpoint(key, writtenEndpoint, false) ?? false\n          processIssues(\n            currentEntryIssues,\n            key,\n            writtenEndpoint,\n            false,\n            logErrors\n          )\n        }\n        await manifestLoader.loadBuildManifest('_app')\n        await manifestLoader.loadPagesManifest('_app')\n\n        if (entrypoints.global.document) {\n          const key = getEntryKey('pages', 'server', '_document')\n\n          const writtenEndpoint =\n            await entrypoints.global.document.writeToDisk()\n          documentOrAppChanged ||=\n            hooks?.handleWrittenEndpoint(key, writtenEndpoint, false) ?? false\n          processIssues(\n            currentEntryIssues,\n            key,\n            writtenEndpoint,\n            false,\n            logErrors\n          )\n        }\n        await manifestLoader.loadPagesManifest('_document')\n\n        const writtenEndpoint = await route.htmlEndpoint.writeToDisk()\n        hooks?.handleWrittenEndpoint(\n          serverKey,\n          writtenEndpoint,\n          documentOrAppChanged\n        )\n\n        const type = writtenEndpoint?.type\n\n        await manifestLoader.loadClientBuildManifest(page)\n        await manifestLoader.loadBuildManifest(page)\n        await manifestLoader.loadPagesManifest(page)\n        if (type === 'edge') {\n          await manifestLoader.loadMiddlewareManifest(page, 'pages')\n        } else {\n          manifestLoader.deleteMiddlewareManifest(serverKey)\n        }\n        await manifestLoader.loadFontManifest('/_app', 'pages')\n        await manifestLoader.loadFontManifest(page, 'pages')\n\n        manifestLoader.writeManifests({\n          devRewrites,\n          productionRewrites,\n          entrypoints,\n        })\n\n        processIssues(\n          currentEntryIssues,\n          serverKey,\n          writtenEndpoint,\n          false,\n          logErrors\n        )\n      } finally {\n        if (dev) {\n          // TODO subscriptions should only be caused by the WebSocket connections\n          // otherwise we don't known when to unsubscribe and this leaking\n          hooks?.subscribeToChanges(\n            serverKey,\n            false,\n            route.dataEndpoint,\n            () => {\n              // Report the next compilation again\n              readyIds?.delete(pathname)\n              return {\n                type: HMR_MESSAGE_SENT_TO_BROWSER.SERVER_ONLY_CHANGES,\n                pages: [page],\n              }\n            },\n            (e) => {\n              return {\n                type: HMR_MESSAGE_SENT_TO_BROWSER.RELOAD_PAGE,\n                data: `error in ${page} data subscription: ${e}`,\n              }\n            }\n          )\n          hooks?.subscribeToChanges(\n            clientKey,\n            false,\n            route.htmlEndpoint,\n            () => {\n              return {\n                type: HMR_MESSAGE_SENT_TO_BROWSER.CLIENT_CHANGES,\n              }\n            },\n            (e) => {\n              return {\n                type: HMR_MESSAGE_SENT_TO_BROWSER.RELOAD_PAGE,\n                data: `error in ${page} html subscription: ${e}`,\n              }\n            }\n          )\n          if (entrypoints.global.document) {\n            hooks?.subscribeToChanges(\n              getEntryKey('pages', 'server', '_document'),\n              false,\n              entrypoints.global.document,\n              () => {\n                return {\n                  type: HMR_MESSAGE_SENT_TO_BROWSER.RELOAD_PAGE,\n                  data: '_document has changed (page route)',\n                }\n              },\n              (e) => {\n                return {\n                  type: HMR_MESSAGE_SENT_TO_BROWSER.RELOAD_PAGE,\n                  data: `error in _document subscription (page route): ${e}`,\n                }\n              }\n            )\n          }\n        }\n      }\n\n      break\n    }\n    case 'page-api': {\n      const key = getEntryKey('pages', 'server', page)\n\n      const writtenEndpoint = await route.endpoint.writeToDisk()\n      hooks?.handleWrittenEndpoint(key, writtenEndpoint, false)\n\n      const type = writtenEndpoint.type\n\n      await manifestLoader.loadPagesManifest(page)\n      if (type === 'edge') {\n        await manifestLoader.loadMiddlewareManifest(page, 'pages')\n      } else {\n        manifestLoader.deleteMiddlewareManifest(key)\n      }\n\n      manifestLoader.writeManifests({\n        devRewrites,\n        productionRewrites,\n        entrypoints,\n      })\n\n      processIssues(currentEntryIssues, key, writtenEndpoint, true, logErrors)\n\n      break\n    }\n    case 'app-page': {\n      const key = getEntryKey('app', 'server', page)\n\n      const writtenEndpoint = await route.htmlEndpoint.writeToDisk()\n      hooks?.handleWrittenEndpoint(key, writtenEndpoint, false)\n\n      if (dev) {\n        // TODO subscriptions should only be caused by the WebSocket connections\n        // otherwise we don't known when to unsubscribe and this leaking\n        hooks?.subscribeToChanges(\n          key,\n          true,\n          route.rscEndpoint,\n          (change, hash) => {\n            if (change.issues.some((issue) => issue.severity === 'error')) {\n              // Ignore any updates that has errors\n              // There will be another update without errors eventually\n              return\n            }\n            // Report the next compilation again\n            readyIds?.delete(pathname)\n            return {\n              type: HMR_MESSAGE_SENT_TO_BROWSER.SERVER_COMPONENT_CHANGES,\n              hash,\n            }\n          },\n          (e) => {\n            return {\n              type: HMR_MESSAGE_SENT_TO_BROWSER.RELOAD_PAGE,\n              data: `error in ${page} app-page subscription: ${e}`,\n            }\n          }\n        )\n      }\n\n      const type = writtenEndpoint.type\n\n      if (type === 'edge') {\n        manifestLoader.loadMiddlewareManifest(page, 'app')\n      } else {\n        manifestLoader.deleteMiddlewareManifest(key)\n      }\n\n      manifestLoader.loadBuildManifest(page, 'app')\n      manifestLoader.loadAppPathsManifest(page)\n      manifestLoader.loadActionManifest(page)\n      manifestLoader.loadFontManifest(page, 'app')\n\n      manifestLoader.writeManifests({\n        devRewrites,\n        productionRewrites,\n        entrypoints,\n      })\n\n      processIssues(currentEntryIssues, key, writtenEndpoint, dev, logErrors)\n\n      break\n    }\n    case 'app-route': {\n      const key = getEntryKey('app', 'server', page)\n\n      const writtenEndpoint = await route.endpoint.writeToDisk()\n      hooks?.handleWrittenEndpoint(key, writtenEndpoint, false)\n\n      const type = writtenEndpoint.type\n\n      manifestLoader.loadAppPathsManifest(page)\n\n      if (type === 'edge') {\n        manifestLoader.loadMiddlewareManifest(page, 'app')\n      } else {\n        manifestLoader.deleteMiddlewareManifest(key)\n      }\n\n      manifestLoader.writeManifests({\n        devRewrites,\n        productionRewrites,\n        entrypoints,\n      })\n      processIssues(currentEntryIssues, key, writtenEndpoint, true, logErrors)\n\n      break\n    }\n    default: {\n      throw new Error(`unknown route type ${(route as any).type} for ${page}`)\n    }\n  }\n}\n\n/**\n * Maintains a mapping between entrypoins and the corresponding client asset paths.\n */\nexport class AssetMapper {\n  private entryMap: Map<EntryKey, Set<string>> = new Map()\n  private assetMap: Map<string, Set<EntryKey>> = new Map()\n\n  /**\n   * Overrides asset paths for a key and updates the mapping from path to key.\n   *\n   * @param key\n   * @param assetPaths asset paths relative to the .next directory\n   */\n  setPathsForKey(key: EntryKey, assetPaths: string[]): void {\n    this.delete(key)\n\n    const newAssetPaths = new Set(assetPaths)\n    this.entryMap.set(key, newAssetPaths)\n\n    for (const assetPath of newAssetPaths) {\n      let assetPathKeys = this.assetMap.get(assetPath)\n      if (!assetPathKeys) {\n        assetPathKeys = new Set()\n        this.assetMap.set(assetPath, assetPathKeys)\n      }\n\n      assetPathKeys!.add(key)\n    }\n  }\n\n  /**\n   * Deletes the key and any asset only referenced by this key.\n   *\n   * @param key\n   */\n  delete(key: EntryKey) {\n    for (const assetPath of this.getAssetPathsByKey(key)) {\n      const assetPathKeys = this.assetMap.get(assetPath)\n\n      assetPathKeys?.delete(key)\n\n      if (!assetPathKeys?.size) {\n        this.assetMap.delete(assetPath)\n      }\n    }\n\n    this.entryMap.delete(key)\n  }\n\n  getAssetPathsByKey(key: EntryKey): string[] {\n    return Array.from(this.entryMap.get(key) ?? [])\n  }\n\n  getKeysByAsset(path: string): EntryKey[] {\n    return Array.from(this.assetMap.get(path) ?? [])\n  }\n\n  keys(): IterableIterator<EntryKey> {\n    return this.entryMap.keys()\n  }\n}\n\nexport function hasEntrypointForKey(\n  entrypoints: Entrypoints,\n  key: EntryKey,\n  assetMapper: AssetMapper | undefined\n): boolean {\n  const { type, page } = splitEntryKey(key)\n\n  switch (type) {\n    case 'app':\n      return entrypoints.app.has(page)\n    case 'pages':\n      switch (page) {\n        case '_app':\n          return entrypoints.global.app != null\n        case '_document':\n          return entrypoints.global.document != null\n        case '_error':\n          return entrypoints.global.error != null\n        default:\n          return entrypoints.page.has(page)\n      }\n    case 'root':\n      switch (page) {\n        case 'middleware':\n          return entrypoints.global.middleware != null\n        case 'instrumentation':\n          return entrypoints.global.instrumentation != null\n        default:\n          return false\n      }\n    case 'assets':\n      if (!assetMapper) {\n        return false\n      }\n\n      return assetMapper\n        .getKeysByAsset(page)\n        .some((pageKey) =>\n          hasEntrypointForKey(entrypoints, pageKey, assetMapper)\n        )\n    default: {\n      // validation that we covered all cases, this should never run.\n      const _: never = type\n      return false\n    }\n  }\n}\n\n// hooks only used by the dev server.\ntype HandleEntrypointsHooks = {\n  handleWrittenEndpoint: HandleWrittenEndpoint\n  propagateServerField: (\n    field: PropagateToWorkersField,\n    args: any\n  ) => Promise<void>\n  sendHmr: SendHmr\n  startBuilding: StartBuilding\n  subscribeToChanges: StartChangeSubscription\n  unsubscribeFromChanges: StopChangeSubscription\n  unsubscribeFromHmrEvents: (client: ws, id: string) => void\n}\n\ntype HandleEntrypointsDevOpts = {\n  assetMapper: AssetMapper\n  changeSubscriptions: ChangeSubscriptions\n  clients: Array<ws>\n  clientStates: ClientStateMap\n  serverFields: ServerFields\n\n  hooks: HandleEntrypointsHooks\n}\n\nexport async function handleEntrypoints({\n  entrypoints,\n\n  currentEntrypoints,\n\n  currentEntryIssues,\n  manifestLoader,\n  devRewrites,\n  logErrors,\n  dev,\n}: {\n  entrypoints: TurbopackResult<RawEntrypoints>\n\n  currentEntrypoints: Entrypoints\n\n  currentEntryIssues: EntryIssuesMap\n  manifestLoader: TurbopackManifestLoader\n  devRewrites: SetupOpts['fsChecker']['rewrites'] | undefined\n  productionRewrites: CustomRoutes['rewrites'] | undefined\n  logErrors: boolean\n\n  dev: HandleEntrypointsDevOpts\n}) {\n  currentEntrypoints.global.app = entrypoints.pagesAppEndpoint\n  currentEntrypoints.global.document = entrypoints.pagesDocumentEndpoint\n  currentEntrypoints.global.error = entrypoints.pagesErrorEndpoint\n\n  currentEntrypoints.global.instrumentation = entrypoints.instrumentation\n\n  currentEntrypoints.page.clear()\n  currentEntrypoints.app.clear()\n\n  for (const [pathname, route] of entrypoints.routes) {\n    switch (route.type) {\n      case 'page':\n      case 'page-api':\n        currentEntrypoints.page.set(pathname, route)\n        break\n      case 'app-page': {\n        route.pages.forEach((page) => {\n          currentEntrypoints.app.set(page.originalName, {\n            type: 'app-page',\n            ...page,\n          })\n        })\n        break\n      }\n      case 'app-route': {\n        currentEntrypoints.app.set(route.originalName, route)\n        break\n      }\n      case 'conflict':\n        Log.info(`skipping ${pathname} (${route.type})`)\n        break\n      default:\n        route satisfies never\n    }\n  }\n\n  if (dev) {\n    await handleEntrypointsDevCleanup({\n      currentEntryIssues,\n      currentEntrypoints,\n\n      ...dev,\n    })\n  }\n\n  const { middleware, instrumentation } = entrypoints\n\n  // We check for explicit true/false, since it's initialized to\n  // undefined during the first loop (middlewareChanges event is\n  // unnecessary during the first serve)\n  if (currentEntrypoints.global.middleware && !middleware) {\n    const key = getEntryKey('root', 'server', 'middleware')\n    // Went from middleware to no middleware\n    await dev?.hooks.unsubscribeFromChanges(key)\n    currentEntryIssues.delete(key)\n    dev.hooks.sendHmr('middleware', {\n      type: HMR_MESSAGE_SENT_TO_BROWSER.MIDDLEWARE_CHANGES,\n    })\n  } else if (!currentEntrypoints.global.middleware && middleware) {\n    // Went from no middleware to middleware\n    dev.hooks.sendHmr('middleware', {\n      type: HMR_MESSAGE_SENT_TO_BROWSER.MIDDLEWARE_CHANGES,\n    })\n  }\n\n  currentEntrypoints.global.middleware = middleware\n\n  if (instrumentation) {\n    const processInstrumentation = async (\n      name: string,\n      prop: 'nodeJs' | 'edge'\n    ) => {\n      const prettyName = {\n        nodeJs: 'Node.js',\n        edge: 'Edge',\n      }\n      const finishBuilding = dev.hooks.startBuilding(\n        `instrumentation ${prettyName[prop]}`,\n        undefined,\n        true\n      )\n      const key = getEntryKey('root', 'server', name)\n\n      const writtenEndpoint = await instrumentation[prop].writeToDisk()\n      dev.hooks.handleWrittenEndpoint(key, writtenEndpoint, false)\n      processIssues(currentEntryIssues, key, writtenEndpoint, false, logErrors)\n      finishBuilding()\n    }\n    await processInstrumentation('instrumentation.nodeJs', 'nodeJs')\n    await processInstrumentation('instrumentation.edge', 'edge')\n    await manifestLoader.loadMiddlewareManifest(\n      'instrumentation',\n      'instrumentation'\n    )\n    manifestLoader.writeManifests({\n      devRewrites,\n      productionRewrites: undefined,\n      entrypoints: currentEntrypoints,\n    })\n\n    dev.serverFields.actualInstrumentationHookFile = '/instrumentation'\n    await dev.hooks.propagateServerField(\n      'actualInstrumentationHookFile',\n      dev.serverFields.actualInstrumentationHookFile\n    )\n  } else {\n    dev.serverFields.actualInstrumentationHookFile = undefined\n    await dev.hooks.propagateServerField(\n      'actualInstrumentationHookFile',\n      dev.serverFields.actualInstrumentationHookFile\n    )\n  }\n\n  if (middleware) {\n    const key = getEntryKey('root', 'server', 'middleware')\n\n    const endpoint = middleware.endpoint\n    const triggerName = middleware.isProxy\n      ? PROXY_FILENAME\n      : MIDDLEWARE_FILENAME\n\n    async function processMiddleware() {\n      const finishBuilding = dev.hooks.startBuilding(\n        triggerName,\n        undefined,\n        true\n      )\n      const writtenEndpoint = await endpoint.writeToDisk()\n      dev.hooks.handleWrittenEndpoint(key, writtenEndpoint, false)\n      processIssues(currentEntryIssues, key, writtenEndpoint, false, logErrors)\n      await manifestLoader.loadMiddlewareManifest('middleware', 'middleware')\n      const middlewareConfig =\n        manifestLoader.getMiddlewareManifest(key)?.middleware['/']\n\n      if (dev && middlewareConfig) {\n        dev.serverFields.middleware = {\n          match: null as any,\n          page: '/',\n          matchers: middlewareConfig.matchers,\n        }\n      }\n      finishBuilding()\n    }\n    await processMiddleware()\n\n    if (dev) {\n      dev?.hooks.subscribeToChanges(\n        key,\n        false,\n        endpoint,\n        async () => {\n          const finishBuilding = dev.hooks.startBuilding(\n            triggerName,\n            undefined,\n            true\n          )\n          await processMiddleware()\n          await dev.hooks.propagateServerField(\n            'actualMiddlewareFile',\n            dev.serverFields.actualMiddlewareFile\n          )\n          await dev.hooks.propagateServerField(\n            'middleware',\n            dev.serverFields.middleware\n          )\n          manifestLoader.writeManifests({\n            devRewrites,\n            productionRewrites: undefined,\n            entrypoints: currentEntrypoints,\n          })\n\n          finishBuilding?.()\n          return {\n            type: HMR_MESSAGE_SENT_TO_BROWSER.MIDDLEWARE_CHANGES,\n          }\n        },\n        () => {\n          return {\n            type: HMR_MESSAGE_SENT_TO_BROWSER.MIDDLEWARE_CHANGES,\n          }\n        }\n      )\n    }\n  } else {\n    manifestLoader.deleteMiddlewareManifest(\n      getEntryKey('root', 'server', 'middleware')\n    )\n    dev.serverFields.actualMiddlewareFile = undefined\n    dev.serverFields.middleware = undefined\n  }\n\n  await dev.hooks.propagateServerField(\n    'actualMiddlewareFile',\n    dev.serverFields.actualMiddlewareFile\n  )\n  await dev.hooks.propagateServerField(\n    'middleware',\n    dev.serverFields.middleware\n  )\n}\n\nasync function handleEntrypointsDevCleanup({\n  currentEntryIssues,\n  currentEntrypoints,\n\n  assetMapper,\n  changeSubscriptions,\n  clients,\n  clientStates,\n\n  hooks,\n}: {\n  currentEntrypoints: Entrypoints\n  currentEntryIssues: EntryIssuesMap\n} & HandleEntrypointsDevOpts) {\n  // this needs to be first as `hasEntrypointForKey` uses the `assetMapper`\n  for (const key of assetMapper.keys()) {\n    if (!hasEntrypointForKey(currentEntrypoints, key, assetMapper)) {\n      assetMapper.delete(key)\n    }\n  }\n\n  for (const key of changeSubscriptions.keys()) {\n    // middleware is handled separately\n    if (!hasEntrypointForKey(currentEntrypoints, key, assetMapper)) {\n      await hooks.unsubscribeFromChanges(key)\n    }\n  }\n\n  for (const [key] of currentEntryIssues) {\n    if (!hasEntrypointForKey(currentEntrypoints, key, assetMapper)) {\n      currentEntryIssues.delete(key)\n    }\n  }\n\n  for (const client of clients) {\n    const state = clientStates.get(client)\n    if (!state) {\n      continue\n    }\n\n    for (const key of state.clientIssues.keys()) {\n      if (!hasEntrypointForKey(currentEntrypoints, key, assetMapper)) {\n        state.clientIssues.delete(key)\n      }\n    }\n\n    for (const id of state.subscriptions.keys()) {\n      if (\n        !hasEntrypointForKey(\n          currentEntrypoints,\n          getEntryKey('assets', 'client', id),\n          assetMapper\n        )\n      ) {\n        hooks.unsubscribeFromHmrEvents(client, id)\n      }\n    }\n  }\n}\n\nexport async function handlePagesErrorRoute({\n  currentEntryIssues,\n  entrypoints,\n  manifestLoader,\n  devRewrites,\n  productionRewrites,\n  logErrors,\n  hooks,\n}: {\n  currentEntryIssues: EntryIssuesMap\n  entrypoints: Entrypoints\n  manifestLoader: TurbopackManifestLoader\n  devRewrites: SetupOpts['fsChecker']['rewrites'] | undefined\n  productionRewrites: CustomRoutes['rewrites'] | undefined\n  logErrors: boolean\n  hooks: HandleRouteTypeHooks\n}) {\n  if (entrypoints.global.app) {\n    const key = getEntryKey('pages', 'server', '_app')\n\n    const writtenEndpoint = await entrypoints.global.app.writeToDisk()\n    hooks.handleWrittenEndpoint(key, writtenEndpoint, false)\n    hooks.subscribeToChanges(\n      key,\n      false,\n      entrypoints.global.app,\n      () => {\n        // There's a special case for this in `../client/page-bootstrap.ts`.\n        // https://github.com/vercel/next.js/blob/08d7a7e5189a835f5dcb82af026174e587575c0e/packages/next/src/client/page-bootstrap.ts#L69-L71\n        return {\n          type: HMR_MESSAGE_SENT_TO_BROWSER.CLIENT_CHANGES,\n        }\n      },\n      () => {\n        return {\n          type: HMR_MESSAGE_SENT_TO_BROWSER.RELOAD_PAGE,\n          data: '_app has changed (error route)',\n        }\n      }\n    )\n    processIssues(currentEntryIssues, key, writtenEndpoint, false, logErrors)\n  }\n  await manifestLoader.loadBuildManifest('_app')\n  await manifestLoader.loadPagesManifest('_app')\n  await manifestLoader.loadFontManifest('_app')\n\n  if (entrypoints.global.document) {\n    const key = getEntryKey('pages', 'server', '_document')\n\n    const writtenEndpoint = await entrypoints.global.document.writeToDisk()\n    hooks.handleWrittenEndpoint(key, writtenEndpoint, false)\n    hooks.subscribeToChanges(\n      key,\n      false,\n      entrypoints.global.document,\n      () => {\n        return {\n          type: HMR_MESSAGE_SENT_TO_BROWSER.RELOAD_PAGE,\n          data: '_document has changed (error route)',\n        }\n      },\n      (e) => {\n        return {\n          type: HMR_MESSAGE_SENT_TO_BROWSER.RELOAD_PAGE,\n          data: `error in _document subscription (error route): ${e}`,\n        }\n      }\n    )\n    processIssues(currentEntryIssues, key, writtenEndpoint, false, logErrors)\n  }\n  await manifestLoader.loadPagesManifest('_document')\n\n  if (entrypoints.global.error) {\n    const key = getEntryKey('pages', 'server', '_error')\n\n    const writtenEndpoint = await entrypoints.global.error.writeToDisk()\n    hooks.handleWrittenEndpoint(key, writtenEndpoint, false)\n    hooks.subscribeToChanges(\n      key,\n      false,\n      entrypoints.global.error,\n      () => {\n        // There's a special case for this in `../client/page-bootstrap.ts`.\n        // https://github.com/vercel/next.js/blob/08d7a7e5189a835f5dcb82af026174e587575c0e/packages/next/src/client/page-bootstrap.ts#L69-L71\n        return {\n          type: HMR_MESSAGE_SENT_TO_BROWSER.CLIENT_CHANGES,\n        }\n      },\n      (e) => {\n        return {\n          type: HMR_MESSAGE_SENT_TO_BROWSER.RELOAD_PAGE,\n          data: `error in _error subscription: ${e}`,\n        }\n      }\n    )\n    processIssues(currentEntryIssues, key, writtenEndpoint, false, logErrors)\n  }\n  await manifestLoader.loadClientBuildManifest('_error')\n  await manifestLoader.loadBuildManifest('_error')\n  await manifestLoader.loadPagesManifest('_error')\n  await manifestLoader.loadFontManifest('_error')\n\n  manifestLoader.writeManifests({\n    devRewrites,\n    productionRewrites,\n    entrypoints,\n  })\n}\n\nexport function removeRouteSuffix(route: string): string {\n  return route.replace(/\\/route$/, '')\n}\n\nexport function addRouteSuffix(route: string): string {\n  return route + '/route'\n}\n\nexport function addMetadataIdToRoute(route: string): string {\n  return route + '/[__metadata_id__]'\n}\n\n// Since turbopack will create app pages/route entries based on the structure,\n// which means the entry keys are based on file names.\n// But for special metadata conventions we'll change the page/pathname to a different path.\n// So we need this helper to map the new path back to original turbopack entry key.\nexport function normalizedPageToTurbopackStructureRoute(\n  route: string,\n  ext: string | false\n): string {\n  let entrypointKey = route\n  if (isMetadataRoute(entrypointKey)) {\n    entrypointKey = entrypointKey.endsWith('/route')\n      ? entrypointKey.slice(0, -'/route'.length)\n      : entrypointKey\n\n    if (ext) {\n      if (entrypointKey.endsWith('/[__metadata_id__]')) {\n        entrypointKey = entrypointKey.slice(0, -'/[__metadata_id__]'.length)\n      }\n      // After stripping [__metadata_id__], add .xml for dynamic sitemap routes\n      // to match the Turbopack entry key from normalize_metadata_route\n      if (entrypointKey.endsWith('/sitemap') && ext !== '.xml') {\n        entrypointKey = entrypointKey + '.xml'\n      }\n    }\n    entrypointKey = entrypointKey + '/route'\n  }\n  return entrypointKey\n}\n"],"names":["HMR_MESSAGE_SENT_TO_BROWSER","Log","getEntryKey","splitEntryKey","isMetadataRoute","formatIssue","getIssueKey","isRelevantWarning","processIssues","renderStyledStringToErrorAnsi","MIDDLEWARE_FILENAME","PROXY_FILENAME","onceErrorSet","Set","shouldEmitOnceWarning","issue","severity","title","stage","value","has","add","includes","printNonFatalIssue","warn","processTopLevelIssues","currentTopLevelIssues","result","clear","issues","issueKey","set","msToNs","handleRouteType","dev","page","pathname","route","currentEntryIssues","entrypoints","manifestLoader","readyIds","devRewrites","productionRewrites","hooks","logErrors","type","clientKey","serverKey","documentOrAppChanged","global","app","key","writtenEndpoint","writeToDisk","handleWrittenEndpoint","loadBuildManifest","loadPagesManifest","document","htmlEndpoint","loadClientBuildManifest","loadMiddlewareManifest","deleteMiddlewareManifest","loadFontManifest","writeManifests","subscribeToChanges","dataEndpoint","delete","SERVER_ONLY_CHANGES","pages","e","RELOAD_PAGE","data","CLIENT_CHANGES","endpoint","rscEndpoint","change","hash","some","SERVER_COMPONENT_CHANGES","loadAppPathsManifest","loadActionManifest","Error","AssetMapper","setPathsForKey","assetPaths","newAssetPaths","entryMap","assetPath","assetPathKeys","assetMap","get","getAssetPathsByKey","size","Array","from","getKeysByAsset","path","keys","Map","hasEntrypointForKey","assetMapper","error","middleware","instrumentation","pageKey","_","handleEntrypoints","currentEntrypoints","pagesAppEndpoint","pagesDocumentEndpoint","pagesErrorEndpoint","routes","forEach","originalName","info","handleEntrypointsDevCleanup","unsubscribeFromChanges","sendHmr","MIDDLEWARE_CHANGES","processInstrumentation","name","prop","prettyName","nodeJs","edge","finishBuilding","startBuilding","undefined","serverFields","actualInstrumentationHookFile","propagateServerField","triggerName","isProxy","processMiddleware","middlewareConfig","getMiddlewareManifest","match","matchers","actualMiddlewareFile","changeSubscriptions","clients","clientStates","client","state","clientIssues","id","subscriptions","unsubscribeFromHmrEvents","handlePagesErrorRoute","removeRouteSuffix","replace","addRouteSuffix","addMetadataIdToRoute","normalizedPageToTurbopackStructureRoute","ext","entrypointKey","endsWith","slice","length"],"mappings":"AAYA,SAEEA,2BAA2B,QACtB,uBAAsB;AAC7B,YAAYC,SAAS,yBAAwB;AAI7C,SAEEC,WAAW,EACXC,aAAa,QACR,uCAAsC;AAE7C,SAASC,eAAe,QAAQ,uCAAsC;AAEtE,SACEC,WAAW,EACXC,WAAW,EACXC,iBAAiB,EACjBC,aAAa,EACbC,6BAA6B,QAGxB,mCAAkC;AACzC,SAASC,mBAAmB,EAAEC,cAAc,QAAQ,sBAAqB;AAEzE,MAAMC,eAAe,IAAIC;AACzB;;;;;CAKC,GACD,SAASC,sBAAsBC,KAAY;IACzC,MAAM,EAAEC,QAAQ,EAAEC,KAAK,EAAEC,KAAK,EAAE,GAAGH;IACnC,IAAIC,aAAa,aAAaC,MAAME,KAAK,KAAK,8BAA8B;QAC1E,IAAIP,aAAaQ,GAAG,CAACL,QAAQ;YAC3B,OAAO;QACT;QACAH,aAAaS,GAAG,CAACN;IACnB;IACA,IACEC,aAAa,aACbE,UAAU,YACVT,8BAA8BM,MAAME,KAAK,EAAEK,QAAQ,CAAC,sBACpD;QACA,IAAIV,aAAaQ,GAAG,CAACL,QAAQ;YAC3B,OAAO;QACT;QACAH,aAAaS,GAAG,CAACN;IACnB;IAEA,OAAO;AACT;AAEA,4DAA4D;AAC5D,wDAAwD;AACxD,OAAO,SAASQ,mBAAmBR,KAAY;IAC7C,IAAIR,kBAAkBQ,UAAUD,sBAAsBC,QAAQ;QAC5Dd,IAAIuB,IAAI,CAACnB,YAAYU;IACvB;AACF;AAEA,OAAO,SAASU,sBACdC,qBAAwC,EACxCC,MAAuB;IAEvBD,sBAAsBE,KAAK;IAE3B,KAAK,MAAMb,SAASY,OAAOE,MAAM,CAAE;QACjC,MAAMC,WAAWxB,YAAYS;QAC7BW,sBAAsBK,GAAG,CAACD,UAAUf;IACtC;AACF;AAEA,SAASiB,MAAM,QAAQ,gDAA+C;AAqDtE,OAAO,eAAeC,gBAAgB,EACpCC,GAAG,EACHC,IAAI,EACJC,QAAQ,EACRC,KAAK,EACLC,kBAAkB,EAClBC,WAAW,EACXC,cAAc,EACdC,QAAQ,EACRC,WAAW,EACXC,kBAAkB,EAClBC,KAAK,EACLC,SAAS,EAiBV;IACC,OAAQR,MAAMS,IAAI;QAChB,KAAK;YAAQ;gBACX,MAAMC,YAAY7C,YAAY,SAAS,UAAUiC;gBACjD,MAAMa,YAAY9C,YAAY,SAAS,UAAUiC;gBAEjD,IAAI;oBACF,4FAA4F;oBAC5F,sFAAsF;oBACtF,4FAA4F;oBAC5F,4EAA4E;oBAC5E,IAAIc,uBAAuB;oBAC3B,IAAIV,YAAYW,MAAM,CAACC,GAAG,EAAE;wBAC1B,MAAMC,MAAMlD,YAAY,SAAS,UAAU;wBAE3C,MAAMmD,kBAAkB,MAAMd,YAAYW,MAAM,CAACC,GAAG,CAACG,WAAW;wBAChEL,yBACEL,CAAAA,yBAAAA,MAAOW,qBAAqB,CAACH,KAAKC,iBAAiB,WAAU;wBAC/D7C,cACE8B,oBACAc,KACAC,iBACA,OACAR;oBAEJ;oBACA,MAAML,eAAegB,iBAAiB,CAAC;oBACvC,MAAMhB,eAAeiB,iBAAiB,CAAC;oBAEvC,IAAIlB,YAAYW,MAAM,CAACQ,QAAQ,EAAE;wBAC/B,MAAMN,MAAMlD,YAAY,SAAS,UAAU;wBAE3C,MAAMmD,kBACJ,MAAMd,YAAYW,MAAM,CAACQ,QAAQ,CAACJ,WAAW;wBAC/CL,yBACEL,CAAAA,yBAAAA,MAAOW,qBAAqB,CAACH,KAAKC,iBAAiB,WAAU;wBAC/D7C,cACE8B,oBACAc,KACAC,iBACA,OACAR;oBAEJ;oBACA,MAAML,eAAeiB,iBAAiB,CAAC;oBAEvC,MAAMJ,kBAAkB,MAAMhB,MAAMsB,YAAY,CAACL,WAAW;oBAC5DV,yBAAAA,MAAOW,qBAAqB,CAC1BP,WACAK,iBACAJ;oBAGF,MAAMH,OAAOO,mCAAAA,gBAAiBP,IAAI;oBAElC,MAAMN,eAAeoB,uBAAuB,CAACzB;oBAC7C,MAAMK,eAAegB,iBAAiB,CAACrB;oBACvC,MAAMK,eAAeiB,iBAAiB,CAACtB;oBACvC,IAAIW,SAAS,QAAQ;wBACnB,MAAMN,eAAeqB,sBAAsB,CAAC1B,MAAM;oBACpD,OAAO;wBACLK,eAAesB,wBAAwB,CAACd;oBAC1C;oBACA,MAAMR,eAAeuB,gBAAgB,CAAC,SAAS;oBAC/C,MAAMvB,eAAeuB,gBAAgB,CAAC5B,MAAM;oBAE5CK,eAAewB,cAAc,CAAC;wBAC5BtB;wBACAC;wBACAJ;oBACF;oBAEA/B,cACE8B,oBACAU,WACAK,iBACA,OACAR;gBAEJ,SAAU;oBACR,IAAIX,KAAK;wBACP,wEAAwE;wBACxE,gEAAgE;wBAChEU,yBAAAA,MAAOqB,kBAAkB,CACvBjB,WACA,OACAX,MAAM6B,YAAY,EAClB;4BACE,oCAAoC;4BACpCzB,4BAAAA,SAAU0B,MAAM,CAAC/B;4BACjB,OAAO;gCACLU,MAAM9C,4BAA4BoE,mBAAmB;gCACrDC,OAAO;oCAAClC;iCAAK;4BACf;wBACF,GACA,CAACmC;4BACC,OAAO;gCACLxB,MAAM9C,4BAA4BuE,WAAW;gCAC7CC,MAAM,CAAC,SAAS,EAAErC,KAAK,oBAAoB,EAAEmC,GAAG;4BAClD;wBACF;wBAEF1B,yBAAAA,MAAOqB,kBAAkB,CACvBlB,WACA,OACAV,MAAMsB,YAAY,EAClB;4BACE,OAAO;gCACLb,MAAM9C,4BAA4ByE,cAAc;4BAClD;wBACF,GACA,CAACH;4BACC,OAAO;gCACLxB,MAAM9C,4BAA4BuE,WAAW;gCAC7CC,MAAM,CAAC,SAAS,EAAErC,KAAK,oBAAoB,EAAEmC,GAAG;4BAClD;wBACF;wBAEF,IAAI/B,YAAYW,MAAM,CAACQ,QAAQ,EAAE;4BAC/Bd,yBAAAA,MAAOqB,kBAAkB,CACvB/D,YAAY,SAAS,UAAU,cAC/B,OACAqC,YAAYW,MAAM,CAACQ,QAAQ,EAC3B;gCACE,OAAO;oCACLZ,MAAM9C,4BAA4BuE,WAAW;oCAC7CC,MAAM;gCACR;4BACF,GACA,CAACF;gCACC,OAAO;oCACLxB,MAAM9C,4BAA4BuE,WAAW;oCAC7CC,MAAM,CAAC,8CAA8C,EAAEF,GAAG;gCAC5D;4BACF;wBAEJ;oBACF;gBACF;gBAEA;YACF;QACA,KAAK;YAAY;gBACf,MAAMlB,MAAMlD,YAAY,SAAS,UAAUiC;gBAE3C,MAAMkB,kBAAkB,MAAMhB,MAAMqC,QAAQ,CAACpB,WAAW;gBACxDV,yBAAAA,MAAOW,qBAAqB,CAACH,KAAKC,iBAAiB;gBAEnD,MAAMP,OAAOO,gBAAgBP,IAAI;gBAEjC,MAAMN,eAAeiB,iBAAiB,CAACtB;gBACvC,IAAIW,SAAS,QAAQ;oBACnB,MAAMN,eAAeqB,sBAAsB,CAAC1B,MAAM;gBACpD,OAAO;oBACLK,eAAesB,wBAAwB,CAACV;gBAC1C;gBAEAZ,eAAewB,cAAc,CAAC;oBAC5BtB;oBACAC;oBACAJ;gBACF;gBAEA/B,cAAc8B,oBAAoBc,KAAKC,iBAAiB,MAAMR;gBAE9D;YACF;QACA,KAAK;YAAY;gBACf,MAAMO,MAAMlD,YAAY,OAAO,UAAUiC;gBAEzC,MAAMkB,kBAAkB,MAAMhB,MAAMsB,YAAY,CAACL,WAAW;gBAC5DV,yBAAAA,MAAOW,qBAAqB,CAACH,KAAKC,iBAAiB;gBAEnD,IAAInB,KAAK;oBACP,wEAAwE;oBACxE,gEAAgE;oBAChEU,yBAAAA,MAAOqB,kBAAkB,CACvBb,KACA,MACAf,MAAMsC,WAAW,EACjB,CAACC,QAAQC;wBACP,IAAID,OAAO/C,MAAM,CAACiD,IAAI,CAAC,CAAC/D,QAAUA,MAAMC,QAAQ,KAAK,UAAU;4BAC7D,qCAAqC;4BACrC,yDAAyD;4BACzD;wBACF;wBACA,oCAAoC;wBACpCyB,4BAAAA,SAAU0B,MAAM,CAAC/B;wBACjB,OAAO;4BACLU,MAAM9C,4BAA4B+E,wBAAwB;4BAC1DF;wBACF;oBACF,GACA,CAACP;wBACC,OAAO;4BACLxB,MAAM9C,4BAA4BuE,WAAW;4BAC7CC,MAAM,CAAC,SAAS,EAAErC,KAAK,wBAAwB,EAAEmC,GAAG;wBACtD;oBACF;gBAEJ;gBAEA,MAAMxB,OAAOO,gBAAgBP,IAAI;gBAEjC,IAAIA,SAAS,QAAQ;oBACnBN,eAAeqB,sBAAsB,CAAC1B,MAAM;gBAC9C,OAAO;oBACLK,eAAesB,wBAAwB,CAACV;gBAC1C;gBAEAZ,eAAegB,iBAAiB,CAACrB,MAAM;gBACvCK,eAAewC,oBAAoB,CAAC7C;gBACpCK,eAAeyC,kBAAkB,CAAC9C;gBAClCK,eAAeuB,gBAAgB,CAAC5B,MAAM;gBAEtCK,eAAewB,cAAc,CAAC;oBAC5BtB;oBACAC;oBACAJ;gBACF;gBAEA/B,cAAc8B,oBAAoBc,KAAKC,iBAAiBnB,KAAKW;gBAE7D;YACF;QACA,KAAK;YAAa;gBAChB,MAAMO,MAAMlD,YAAY,OAAO,UAAUiC;gBAEzC,MAAMkB,kBAAkB,MAAMhB,MAAMqC,QAAQ,CAACpB,WAAW;gBACxDV,yBAAAA,MAAOW,qBAAqB,CAACH,KAAKC,iBAAiB;gBAEnD,MAAMP,OAAOO,gBAAgBP,IAAI;gBAEjCN,eAAewC,oBAAoB,CAAC7C;gBAEpC,IAAIW,SAAS,QAAQ;oBACnBN,eAAeqB,sBAAsB,CAAC1B,MAAM;gBAC9C,OAAO;oBACLK,eAAesB,wBAAwB,CAACV;gBAC1C;gBAEAZ,eAAewB,cAAc,CAAC;oBAC5BtB;oBACAC;oBACAJ;gBACF;gBACA/B,cAAc8B,oBAAoBc,KAAKC,iBAAiB,MAAMR;gBAE9D;YACF;QACA;YAAS;gBACP,MAAM,qBAAkE,CAAlE,IAAIqC,MAAM,CAAC,mBAAmB,EAAE,AAAC7C,MAAcS,IAAI,CAAC,KAAK,EAAEX,MAAM,GAAjE,qBAAA;2BAAA;gCAAA;kCAAA;gBAAiE;YACzE;IACF;AACF;AAEA;;CAEC,GACD,OAAO,MAAMgD;IAIX;;;;;GAKC,GACDC,eAAehC,GAAa,EAAEiC,UAAoB,EAAQ;QACxD,IAAI,CAAClB,MAAM,CAACf;QAEZ,MAAMkC,gBAAgB,IAAIzE,IAAIwE;QAC9B,IAAI,CAACE,QAAQ,CAACxD,GAAG,CAACqB,KAAKkC;QAEvB,KAAK,MAAME,aAAaF,cAAe;YACrC,IAAIG,gBAAgB,IAAI,CAACC,QAAQ,CAACC,GAAG,CAACH;YACtC,IAAI,CAACC,eAAe;gBAClBA,gBAAgB,IAAI5E;gBACpB,IAAI,CAAC6E,QAAQ,CAAC3D,GAAG,CAACyD,WAAWC;YAC/B;YAEAA,cAAepE,GAAG,CAAC+B;QACrB;IACF;IAEA;;;;GAIC,GACDe,OAAOf,GAAa,EAAE;QACpB,KAAK,MAAMoC,aAAa,IAAI,CAACI,kBAAkB,CAACxC,KAAM;YACpD,MAAMqC,gBAAgB,IAAI,CAACC,QAAQ,CAACC,GAAG,CAACH;YAExCC,iCAAAA,cAAetB,MAAM,CAACf;YAEtB,IAAI,EAACqC,iCAAAA,cAAeI,IAAI,GAAE;gBACxB,IAAI,CAACH,QAAQ,CAACvB,MAAM,CAACqB;YACvB;QACF;QAEA,IAAI,CAACD,QAAQ,CAACpB,MAAM,CAACf;IACvB;IAEAwC,mBAAmBxC,GAAa,EAAY;QAC1C,OAAO0C,MAAMC,IAAI,CAAC,IAAI,CAACR,QAAQ,CAACI,GAAG,CAACvC,QAAQ,EAAE;IAChD;IAEA4C,eAAeC,IAAY,EAAc;QACvC,OAAOH,MAAMC,IAAI,CAAC,IAAI,CAACL,QAAQ,CAACC,GAAG,CAACM,SAAS,EAAE;IACjD;IAEAC,OAAmC;QACjC,OAAO,IAAI,CAACX,QAAQ,CAACW,IAAI;IAC3B;;aAvDQX,WAAuC,IAAIY;aAC3CT,WAAuC,IAAIS;;AAuDrD;AAEA,OAAO,SAASC,oBACd7D,WAAwB,EACxBa,GAAa,EACbiD,WAAoC;IAEpC,MAAM,EAAEvD,IAAI,EAAEX,IAAI,EAAE,GAAGhC,cAAciD;IAErC,OAAQN;QACN,KAAK;YACH,OAAOP,YAAYY,GAAG,CAAC/B,GAAG,CAACe;QAC7B,KAAK;YACH,OAAQA;gBACN,KAAK;oBACH,OAAOI,YAAYW,MAAM,CAACC,GAAG,IAAI;gBACnC,KAAK;oBACH,OAAOZ,YAAYW,MAAM,CAACQ,QAAQ,IAAI;gBACxC,KAAK;oBACH,OAAOnB,YAAYW,MAAM,CAACoD,KAAK,IAAI;gBACrC;oBACE,OAAO/D,YAAYJ,IAAI,CAACf,GAAG,CAACe;YAChC;QACF,KAAK;YACH,OAAQA;gBACN,KAAK;oBACH,OAAOI,YAAYW,MAAM,CAACqD,UAAU,IAAI;gBAC1C,KAAK;oBACH,OAAOhE,YAAYW,MAAM,CAACsD,eAAe,IAAI;gBAC/C;oBACE,OAAO;YACX;QACF,KAAK;YACH,IAAI,CAACH,aAAa;gBAChB,OAAO;YACT;YAEA,OAAOA,YACJL,cAAc,CAAC7D,MACf2C,IAAI,CAAC,CAAC2B,UACLL,oBAAoB7D,aAAakE,SAASJ;QAEhD;YAAS;gBACP,+DAA+D;gBAC/D,MAAMK,IAAW5D;gBACjB,OAAO;YACT;IACF;AACF;AA0BA,OAAO,eAAe6D,kBAAkB,EACtCpE,WAAW,EAEXqE,kBAAkB,EAElBtE,kBAAkB,EAClBE,cAAc,EACdE,WAAW,EACXG,SAAS,EACTX,GAAG,EAaJ;IACC0E,mBAAmB1D,MAAM,CAACC,GAAG,GAAGZ,YAAYsE,gBAAgB;IAC5DD,mBAAmB1D,MAAM,CAACQ,QAAQ,GAAGnB,YAAYuE,qBAAqB;IACtEF,mBAAmB1D,MAAM,CAACoD,KAAK,GAAG/D,YAAYwE,kBAAkB;IAEhEH,mBAAmB1D,MAAM,CAACsD,eAAe,GAAGjE,YAAYiE,eAAe;IAEvEI,mBAAmBzE,IAAI,CAACP,KAAK;IAC7BgF,mBAAmBzD,GAAG,CAACvB,KAAK;IAE5B,KAAK,MAAM,CAACQ,UAAUC,MAAM,IAAIE,YAAYyE,MAAM,CAAE;QAClD,OAAQ3E,MAAMS,IAAI;YAChB,KAAK;YACL,KAAK;gBACH8D,mBAAmBzE,IAAI,CAACJ,GAAG,CAACK,UAAUC;gBACtC;YACF,KAAK;gBAAY;oBACfA,MAAMgC,KAAK,CAAC4C,OAAO,CAAC,CAAC9E;wBACnByE,mBAAmBzD,GAAG,CAACpB,GAAG,CAACI,KAAK+E,YAAY,EAAE;4BAC5CpE,MAAM;4BACN,GAAGX,IAAI;wBACT;oBACF;oBACA;gBACF;YACA,KAAK;gBAAa;oBAChByE,mBAAmBzD,GAAG,CAACpB,GAAG,CAACM,MAAM6E,YAAY,EAAE7E;oBAC/C;gBACF;YACA,KAAK;gBACHpC,IAAIkH,IAAI,CAAC,CAAC,SAAS,EAAE/E,SAAS,EAAE,EAAEC,MAAMS,IAAI,CAAC,CAAC,CAAC;gBAC/C;YACF;gBACET;QACJ;IACF;IAEA,IAAIH,KAAK;QACP,MAAMkF,4BAA4B;YAChC9E;YACAsE;YAEA,GAAG1E,GAAG;QACR;IACF;IAEA,MAAM,EAAEqE,UAAU,EAAEC,eAAe,EAAE,GAAGjE;IAExC,8DAA8D;IAC9D,8DAA8D;IAC9D,sCAAsC;IACtC,IAAIqE,mBAAmB1D,MAAM,CAACqD,UAAU,IAAI,CAACA,YAAY;QACvD,MAAMnD,MAAMlD,YAAY,QAAQ,UAAU;QAC1C,wCAAwC;QACxC,OAAMgC,uBAAAA,IAAKU,KAAK,CAACyE,sBAAsB,CAACjE;QACxCd,mBAAmB6B,MAAM,CAACf;QAC1BlB,IAAIU,KAAK,CAAC0E,OAAO,CAAC,cAAc;YAC9BxE,MAAM9C,4BAA4BuH,kBAAkB;QACtD;IACF,OAAO,IAAI,CAACX,mBAAmB1D,MAAM,CAACqD,UAAU,IAAIA,YAAY;QAC9D,wCAAwC;QACxCrE,IAAIU,KAAK,CAAC0E,OAAO,CAAC,cAAc;YAC9BxE,MAAM9C,4BAA4BuH,kBAAkB;QACtD;IACF;IAEAX,mBAAmB1D,MAAM,CAACqD,UAAU,GAAGA;IAEvC,IAAIC,iBAAiB;QACnB,MAAMgB,yBAAyB,OAC7BC,MACAC;YAEA,MAAMC,aAAa;gBACjBC,QAAQ;gBACRC,MAAM;YACR;YACA,MAAMC,iBAAiB5F,IAAIU,KAAK,CAACmF,aAAa,CAC5C,CAAC,gBAAgB,EAAEJ,UAAU,CAACD,KAAK,EAAE,EACrCM,WACA;YAEF,MAAM5E,MAAMlD,YAAY,QAAQ,UAAUuH;YAE1C,MAAMpE,kBAAkB,MAAMmD,eAAe,CAACkB,KAAK,CAACpE,WAAW;YAC/DpB,IAAIU,KAAK,CAACW,qBAAqB,CAACH,KAAKC,iBAAiB;YACtD7C,cAAc8B,oBAAoBc,KAAKC,iBAAiB,OAAOR;YAC/DiF;QACF;QACA,MAAMN,uBAAuB,0BAA0B;QACvD,MAAMA,uBAAuB,wBAAwB;QACrD,MAAMhF,eAAeqB,sBAAsB,CACzC,mBACA;QAEFrB,eAAewB,cAAc,CAAC;YAC5BtB;YACAC,oBAAoBqF;YACpBzF,aAAaqE;QACf;QAEA1E,IAAI+F,YAAY,CAACC,6BAA6B,GAAG;QACjD,MAAMhG,IAAIU,KAAK,CAACuF,oBAAoB,CAClC,iCACAjG,IAAI+F,YAAY,CAACC,6BAA6B;IAElD,OAAO;QACLhG,IAAI+F,YAAY,CAACC,6BAA6B,GAAGF;QACjD,MAAM9F,IAAIU,KAAK,CAACuF,oBAAoB,CAClC,iCACAjG,IAAI+F,YAAY,CAACC,6BAA6B;IAElD;IAEA,IAAI3B,YAAY;QACd,MAAMnD,MAAMlD,YAAY,QAAQ,UAAU;QAE1C,MAAMwE,WAAW6B,WAAW7B,QAAQ;QACpC,MAAM0D,cAAc7B,WAAW8B,OAAO,GAClC1H,iBACAD;QAEJ,eAAe4H;gBAWX9F;YAVF,MAAMsF,iBAAiB5F,IAAIU,KAAK,CAACmF,aAAa,CAC5CK,aACAJ,WACA;YAEF,MAAM3E,kBAAkB,MAAMqB,SAASpB,WAAW;YAClDpB,IAAIU,KAAK,CAACW,qBAAqB,CAACH,KAAKC,iBAAiB;YACtD7C,cAAc8B,oBAAoBc,KAAKC,iBAAiB,OAAOR;YAC/D,MAAML,eAAeqB,sBAAsB,CAAC,cAAc;YAC1D,MAAM0E,oBACJ/F,wCAAAA,eAAegG,qBAAqB,CAACpF,yBAArCZ,sCAA2C+D,UAAU,CAAC,IAAI;YAE5D,IAAIrE,OAAOqG,kBAAkB;gBAC3BrG,IAAI+F,YAAY,CAAC1B,UAAU,GAAG;oBAC5BkC,OAAO;oBACPtG,MAAM;oBACNuG,UAAUH,iBAAiBG,QAAQ;gBACrC;YACF;YACAZ;QACF;QACA,MAAMQ;QAEN,IAAIpG,KAAK;YACPA,uBAAAA,IAAKU,KAAK,CAACqB,kBAAkB,CAC3Bb,KACA,OACAsB,UACA;gBACE,MAAMoD,iBAAiB5F,IAAIU,KAAK,CAACmF,aAAa,CAC5CK,aACAJ,WACA;gBAEF,MAAMM;gBACN,MAAMpG,IAAIU,KAAK,CAACuF,oBAAoB,CAClC,wBACAjG,IAAI+F,YAAY,CAACU,oBAAoB;gBAEvC,MAAMzG,IAAIU,KAAK,CAACuF,oBAAoB,CAClC,cACAjG,IAAI+F,YAAY,CAAC1B,UAAU;gBAE7B/D,eAAewB,cAAc,CAAC;oBAC5BtB;oBACAC,oBAAoBqF;oBACpBzF,aAAaqE;gBACf;gBAEAkB,kCAAAA;gBACA,OAAO;oBACLhF,MAAM9C,4BAA4BuH,kBAAkB;gBACtD;YACF,GACA;gBACE,OAAO;oBACLzE,MAAM9C,4BAA4BuH,kBAAkB;gBACtD;YACF;QAEJ;IACF,OAAO;QACL/E,eAAesB,wBAAwB,CACrC5D,YAAY,QAAQ,UAAU;QAEhCgC,IAAI+F,YAAY,CAACU,oBAAoB,GAAGX;QACxC9F,IAAI+F,YAAY,CAAC1B,UAAU,GAAGyB;IAChC;IAEA,MAAM9F,IAAIU,KAAK,CAACuF,oBAAoB,CAClC,wBACAjG,IAAI+F,YAAY,CAACU,oBAAoB;IAEvC,MAAMzG,IAAIU,KAAK,CAACuF,oBAAoB,CAClC,cACAjG,IAAI+F,YAAY,CAAC1B,UAAU;AAE/B;AAEA,eAAea,4BAA4B,EACzC9E,kBAAkB,EAClBsE,kBAAkB,EAElBP,WAAW,EACXuC,mBAAmB,EACnBC,OAAO,EACPC,YAAY,EAEZlG,KAAK,EAIqB;IAC1B,yEAAyE;IACzE,KAAK,MAAMQ,OAAOiD,YAAYH,IAAI,GAAI;QACpC,IAAI,CAACE,oBAAoBQ,oBAAoBxD,KAAKiD,cAAc;YAC9DA,YAAYlC,MAAM,CAACf;QACrB;IACF;IAEA,KAAK,MAAMA,OAAOwF,oBAAoB1C,IAAI,GAAI;QAC5C,mCAAmC;QACnC,IAAI,CAACE,oBAAoBQ,oBAAoBxD,KAAKiD,cAAc;YAC9D,MAAMzD,MAAMyE,sBAAsB,CAACjE;QACrC;IACF;IAEA,KAAK,MAAM,CAACA,IAAI,IAAId,mBAAoB;QACtC,IAAI,CAAC8D,oBAAoBQ,oBAAoBxD,KAAKiD,cAAc;YAC9D/D,mBAAmB6B,MAAM,CAACf;QAC5B;IACF;IAEA,KAAK,MAAM2F,UAAUF,QAAS;QAC5B,MAAMG,QAAQF,aAAanD,GAAG,CAACoD;QAC/B,IAAI,CAACC,OAAO;YACV;QACF;QAEA,KAAK,MAAM5F,OAAO4F,MAAMC,YAAY,CAAC/C,IAAI,GAAI;YAC3C,IAAI,CAACE,oBAAoBQ,oBAAoBxD,KAAKiD,cAAc;gBAC9D2C,MAAMC,YAAY,CAAC9E,MAAM,CAACf;YAC5B;QACF;QAEA,KAAK,MAAM8F,MAAMF,MAAMG,aAAa,CAACjD,IAAI,GAAI;YAC3C,IACE,CAACE,oBACCQ,oBACA1G,YAAY,UAAU,UAAUgJ,KAChC7C,cAEF;gBACAzD,MAAMwG,wBAAwB,CAACL,QAAQG;YACzC;QACF;IACF;AACF;AAEA,OAAO,eAAeG,sBAAsB,EAC1C/G,kBAAkB,EAClBC,WAAW,EACXC,cAAc,EACdE,WAAW,EACXC,kBAAkB,EAClBE,SAAS,EACTD,KAAK,EASN;IACC,IAAIL,YAAYW,MAAM,CAACC,GAAG,EAAE;QAC1B,MAAMC,MAAMlD,YAAY,SAAS,UAAU;QAE3C,MAAMmD,kBAAkB,MAAMd,YAAYW,MAAM,CAACC,GAAG,CAACG,WAAW;QAChEV,MAAMW,qBAAqB,CAACH,KAAKC,iBAAiB;QAClDT,MAAMqB,kBAAkB,CACtBb,KACA,OACAb,YAAYW,MAAM,CAACC,GAAG,EACtB;YACE,oEAAoE;YACpE,qIAAqI;YACrI,OAAO;gBACLL,MAAM9C,4BAA4ByE,cAAc;YAClD;QACF,GACA;YACE,OAAO;gBACL3B,MAAM9C,4BAA4BuE,WAAW;gBAC7CC,MAAM;YACR;QACF;QAEFhE,cAAc8B,oBAAoBc,KAAKC,iBAAiB,OAAOR;IACjE;IACA,MAAML,eAAegB,iBAAiB,CAAC;IACvC,MAAMhB,eAAeiB,iBAAiB,CAAC;IACvC,MAAMjB,eAAeuB,gBAAgB,CAAC;IAEtC,IAAIxB,YAAYW,MAAM,CAACQ,QAAQ,EAAE;QAC/B,MAAMN,MAAMlD,YAAY,SAAS,UAAU;QAE3C,MAAMmD,kBAAkB,MAAMd,YAAYW,MAAM,CAACQ,QAAQ,CAACJ,WAAW;QACrEV,MAAMW,qBAAqB,CAACH,KAAKC,iBAAiB;QAClDT,MAAMqB,kBAAkB,CACtBb,KACA,OACAb,YAAYW,MAAM,CAACQ,QAAQ,EAC3B;YACE,OAAO;gBACLZ,MAAM9C,4BAA4BuE,WAAW;gBAC7CC,MAAM;YACR;QACF,GACA,CAACF;YACC,OAAO;gBACLxB,MAAM9C,4BAA4BuE,WAAW;gBAC7CC,MAAM,CAAC,+CAA+C,EAAEF,GAAG;YAC7D;QACF;QAEF9D,cAAc8B,oBAAoBc,KAAKC,iBAAiB,OAAOR;IACjE;IACA,MAAML,eAAeiB,iBAAiB,CAAC;IAEvC,IAAIlB,YAAYW,MAAM,CAACoD,KAAK,EAAE;QAC5B,MAAMlD,MAAMlD,YAAY,SAAS,UAAU;QAE3C,MAAMmD,kBAAkB,MAAMd,YAAYW,MAAM,CAACoD,KAAK,CAAChD,WAAW;QAClEV,MAAMW,qBAAqB,CAACH,KAAKC,iBAAiB;QAClDT,MAAMqB,kBAAkB,CACtBb,KACA,OACAb,YAAYW,MAAM,CAACoD,KAAK,EACxB;YACE,oEAAoE;YACpE,qIAAqI;YACrI,OAAO;gBACLxD,MAAM9C,4BAA4ByE,cAAc;YAClD;QACF,GACA,CAACH;YACC,OAAO;gBACLxB,MAAM9C,4BAA4BuE,WAAW;gBAC7CC,MAAM,CAAC,8BAA8B,EAAEF,GAAG;YAC5C;QACF;QAEF9D,cAAc8B,oBAAoBc,KAAKC,iBAAiB,OAAOR;IACjE;IACA,MAAML,eAAeoB,uBAAuB,CAAC;IAC7C,MAAMpB,eAAegB,iBAAiB,CAAC;IACvC,MAAMhB,eAAeiB,iBAAiB,CAAC;IACvC,MAAMjB,eAAeuB,gBAAgB,CAAC;IAEtCvB,eAAewB,cAAc,CAAC;QAC5BtB;QACAC;QACAJ;IACF;AACF;AAEA,OAAO,SAAS+G,kBAAkBjH,KAAa;IAC7C,OAAOA,MAAMkH,OAAO,CAAC,YAAY;AACnC;AAEA,OAAO,SAASC,eAAenH,KAAa;IAC1C,OAAOA,QAAQ;AACjB;AAEA,OAAO,SAASoH,qBAAqBpH,KAAa;IAChD,OAAOA,QAAQ;AACjB;AAEA,8EAA8E;AAC9E,sDAAsD;AACtD,2FAA2F;AAC3F,mFAAmF;AACnF,OAAO,SAASqH,wCACdrH,KAAa,EACbsH,GAAmB;IAEnB,IAAIC,gBAAgBvH;IACpB,IAAIjC,gBAAgBwJ,gBAAgB;QAClCA,gBAAgBA,cAAcC,QAAQ,CAAC,YACnCD,cAAcE,KAAK,CAAC,GAAG,CAAC,SAASC,MAAM,IACvCH;QAEJ,IAAID,KAAK;YACP,IAAIC,cAAcC,QAAQ,CAAC,uBAAuB;gBAChDD,gBAAgBA,cAAcE,KAAK,CAAC,GAAG,CAAC,qBAAqBC,MAAM;YACrE;YACA,yEAAyE;YACzE,iEAAiE;YACjE,IAAIH,cAAcC,QAAQ,CAAC,eAAeF,QAAQ,QAAQ;gBACxDC,gBAAgBA,gBAAgB;YAClC;QACF;QACAA,gBAAgBA,gBAAgB;IAClC;IACA,OAAOA;AACT","ignoreList":[0]}