{"version":3,"file":"Footer-DxV2msAd.js","sources":["../../../node_modules/use-sync-external-store/cjs/use-sync-external-store-shim.production.min.js","../../../node_modules/use-sync-external-store/shim/index.js","../../../node_modules/@ably/ui/node_modules/swr/dist/_internal/index.mjs","../../../node_modules/@ably/ui/node_modules/swr/dist/core/index.mjs","../../../node_modules/@ably/ui/core/Status.js","../../../node_modules/@ably/ui/core/Badge.js","../../../node_modules/@ably/ui/core/Footer/data.js","../../../node_modules/@ably/ui/core/ProductTile/data.js","../../../node_modules/@ably/ui/core/ProductTile/ProductIcon.js","../../../node_modules/@ably/ui/core/ProductTile/ProductLabel.js","../../../node_modules/@ably/ui/core/ProductTile/ProductDescription.js","../../../node_modules/@ably/ui/core/Meganav/MeganavProductTile.js","../../../node_modules/@ably/ui/core/Meganav/MeganavPanel.js","../../../node_modules/@ably/ui/core/Meganav/images/fan-engagement-nav-image.png","../../../node_modules/@ably/ui/core/Meganav/images/founders-nav-image.png","../../../node_modules/@ably/ui/core/images/g2-best-meets-requirements-2025.svg","../../../node_modules/@ably/ui/core/images/g2-best-support-2025.svg","../../../node_modules/@ably/ui/core/images/g2-high-performer-2025.svg","../../../node_modules/@ably/ui/core/images/g2-users-most-likely-to-recommend-2025.svg","../../../node_modules/@ably/ui/core/Meganav/data.js","../../../node_modules/@ably/ui/core/Footer.js"],"sourcesContent":["/**\n * @license React\n * use-sync-external-store-shim.production.min.js\n *\n * Copyright (c) Facebook, Inc. and its affiliates.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n'use strict';var e=require(\"react\");function h(a,b){return a===b&&(0!==a||1/a===1/b)||a!==a&&b!==b}var k=\"function\"===typeof Object.is?Object.is:h,l=e.useState,m=e.useEffect,n=e.useLayoutEffect,p=e.useDebugValue;function q(a,b){var d=b(),f=l({inst:{value:d,getSnapshot:b}}),c=f[0].inst,g=f[1];n(function(){c.value=d;c.getSnapshot=b;r(c)&&g({inst:c})},[a,d,b]);m(function(){r(c)&&g({inst:c});return a(function(){r(c)&&g({inst:c})})},[a]);p(d);return d}\nfunction r(a){var b=a.getSnapshot;a=a.value;try{var d=b();return!k(a,d)}catch(f){return!0}}function t(a,b){return b()}var u=\"undefined\"===typeof window||\"undefined\"===typeof window.document||\"undefined\"===typeof window.document.createElement?t:q;exports.useSyncExternalStore=void 0!==e.useSyncExternalStore?e.useSyncExternalStore:u;\n","'use strict';\n\nif (process.env.NODE_ENV === 'production') {\n module.exports = require('../cjs/use-sync-external-store-shim.production.min.js');\n} else {\n module.exports = require('../cjs/use-sync-external-store-shim.development.js');\n}\n","import React, { useEffect, useLayoutEffect, createContext, useContext, useMemo, useRef, createElement } from 'react';\n\n// Shared state between server components and client components\nconst noop = ()=>{};\n// Using noop() as the undefined value as undefined can be replaced\n// by something else. Prettier ignore and extra parentheses are necessary here\n// to ensure that tsc doesn't remove the __NOINLINE__ comment.\n// prettier-ignore\nconst UNDEFINED = /*#__NOINLINE__*/ noop();\nconst OBJECT = Object;\nconst isUndefined = (v)=>v === UNDEFINED;\nconst isFunction = (v)=>typeof v == 'function';\nconst mergeObjects = (a, b)=>({\n ...a,\n ...b\n });\nconst isPromiseLike = (x)=>isFunction(x.then);\n\n// use WeakMap to store the object->key mapping\n// so the objects can be garbage collected.\n// WeakMap uses a hashtable under the hood, so the lookup\n// complexity is almost O(1).\nconst table = new WeakMap();\n// counter of the key\nlet counter = 0;\n// A stable hash implementation that supports:\n// - Fast and ensures unique hash properties\n// - Handles unserializable values\n// - Handles object key ordering\n// - Generates short results\n//\n// This is not a serialization function, and the result is not guaranteed to be\n// parsable.\nconst stableHash = (arg)=>{\n const type = typeof arg;\n const constructor = arg && arg.constructor;\n const isDate = constructor == Date;\n let result;\n let index;\n if (OBJECT(arg) === arg && !isDate && constructor != RegExp) {\n // Object/function, not null/date/regexp. Use WeakMap to store the id first.\n // If it's already hashed, directly return the result.\n result = table.get(arg);\n if (result) return result;\n // Store the hash first for circular reference detection before entering the\n // recursive `stableHash` calls.\n // For other objects like set and map, we use this id directly as the hash.\n result = ++counter + '~';\n table.set(arg, result);\n if (constructor == Array) {\n // Array.\n result = '@';\n for(index = 0; index < arg.length; index++){\n result += stableHash(arg[index]) + ',';\n }\n table.set(arg, result);\n }\n if (constructor == OBJECT) {\n // Object, sort keys.\n result = '#';\n const keys = OBJECT.keys(arg).sort();\n while(!isUndefined(index = keys.pop())){\n if (!isUndefined(arg[index])) {\n result += index + ':' + stableHash(arg[index]) + ',';\n }\n }\n table.set(arg, result);\n }\n } else {\n result = isDate ? arg.toJSON() : type == 'symbol' ? arg.toString() : type == 'string' ? JSON.stringify(arg) : '' + arg;\n }\n return result;\n};\n\n// Global state used to deduplicate requests and store listeners\nconst SWRGlobalState = new WeakMap();\n\nconst EMPTY_CACHE = {};\nconst INITIAL_CACHE = {};\nconst STR_UNDEFINED = 'undefined';\n// NOTE: Use the function to guarantee it's re-evaluated between jsdom and node runtime for tests.\nconst isWindowDefined = typeof window != STR_UNDEFINED;\nconst isDocumentDefined = typeof document != STR_UNDEFINED;\nconst hasRequestAnimationFrame = ()=>isWindowDefined && typeof window['requestAnimationFrame'] != STR_UNDEFINED;\nconst createCacheHelper = (cache, key)=>{\n const state = SWRGlobalState.get(cache);\n return [\n // Getter\n ()=>!isUndefined(key) && cache.get(key) || EMPTY_CACHE,\n // Setter\n (info)=>{\n if (!isUndefined(key)) {\n const prev = cache.get(key);\n // Before writing to the store, we keep the value in the initial cache\n // if it's not there yet.\n if (!(key in INITIAL_CACHE)) {\n INITIAL_CACHE[key] = prev;\n }\n state[5](key, mergeObjects(prev, info), prev || EMPTY_CACHE);\n }\n },\n // Subscriber\n state[6],\n // Get server cache snapshot\n ()=>{\n if (!isUndefined(key)) {\n // If the cache was updated on the client, we return the stored initial value.\n if (key in INITIAL_CACHE) return INITIAL_CACHE[key];\n }\n // If we haven't done any client-side updates, we return the current value.\n return !isUndefined(key) && cache.get(key) || EMPTY_CACHE;\n }\n ];\n} // export { UNDEFINED, OBJECT, isUndefined, isFunction, mergeObjects, isPromiseLike }\n;\n\n/**\n * Due to the bug https://bugs.chromium.org/p/chromium/issues/detail?id=678075,\n * it's not reliable to detect if the browser is currently online or offline\n * based on `navigator.onLine`.\n * As a workaround, we always assume it's online on the first load, and change\n * the status upon `online` or `offline` events.\n */ let online = true;\nconst isOnline = ()=>online;\n// For node and React Native, `add/removeEventListener` doesn't exist on window.\nconst [onWindowEvent, offWindowEvent] = isWindowDefined && window.addEventListener ? [\n window.addEventListener.bind(window),\n window.removeEventListener.bind(window)\n] : [\n noop,\n noop\n];\nconst isVisible = ()=>{\n const visibilityState = isDocumentDefined && document.visibilityState;\n return isUndefined(visibilityState) || visibilityState !== 'hidden';\n};\nconst initFocus = (callback)=>{\n // focus revalidate\n if (isDocumentDefined) {\n document.addEventListener('visibilitychange', callback);\n }\n onWindowEvent('focus', callback);\n return ()=>{\n if (isDocumentDefined) {\n document.removeEventListener('visibilitychange', callback);\n }\n offWindowEvent('focus', callback);\n };\n};\nconst initReconnect = (callback)=>{\n // revalidate on reconnected\n const onOnline = ()=>{\n online = true;\n callback();\n };\n // nothing to revalidate, just update the status\n const onOffline = ()=>{\n online = false;\n };\n onWindowEvent('online', onOnline);\n onWindowEvent('offline', onOffline);\n return ()=>{\n offWindowEvent('online', onOnline);\n offWindowEvent('offline', onOffline);\n };\n};\nconst preset = {\n isOnline,\n isVisible\n};\nconst defaultConfigOptions = {\n initFocus,\n initReconnect\n};\n\nconst IS_REACT_LEGACY = !React.useId;\nconst IS_SERVER = !isWindowDefined || 'Deno' in window;\n// Polyfill requestAnimationFrame\nconst rAF = (f)=>hasRequestAnimationFrame() ? window['requestAnimationFrame'](f) : setTimeout(f, 1);\n// React currently throws a warning when using useLayoutEffect on the server.\n// To get around it, we can conditionally useEffect on the server (no-op) and\n// useLayoutEffect in the browser.\nconst useIsomorphicLayoutEffect = IS_SERVER ? useEffect : useLayoutEffect;\n// This assignment is to extend the Navigator type to use effectiveType.\nconst navigatorConnection = typeof navigator !== 'undefined' && navigator.connection;\n// Adjust the config based on slow connection status (<= 70Kbps).\nconst slowConnection = !IS_SERVER && navigatorConnection && ([\n 'slow-2g',\n '2g'\n].includes(navigatorConnection.effectiveType) || navigatorConnection.saveData);\n\nconst serialize = (key)=>{\n if (isFunction(key)) {\n try {\n key = key();\n } catch (err) {\n // dependencies not ready\n key = '';\n }\n }\n // Use the original key as the argument of fetcher. This can be a string or an\n // array of values.\n const args = key;\n // If key is not falsy, or not an empty array, hash it.\n key = typeof key == 'string' ? key : (Array.isArray(key) ? key.length : key) ? stableHash(key) : '';\n return [\n key,\n args\n ];\n};\n\n// Global timestamp.\nlet __timestamp = 0;\nconst getTimestamp = ()=>++__timestamp;\n\nconst FOCUS_EVENT = 0;\nconst RECONNECT_EVENT = 1;\nconst MUTATE_EVENT = 2;\nconst ERROR_REVALIDATE_EVENT = 3;\n\nvar events = {\n __proto__: null,\n ERROR_REVALIDATE_EVENT: ERROR_REVALIDATE_EVENT,\n FOCUS_EVENT: FOCUS_EVENT,\n MUTATE_EVENT: MUTATE_EVENT,\n RECONNECT_EVENT: RECONNECT_EVENT\n};\n\nasync function internalMutate(...args) {\n const [cache, _key, _data, _opts] = args;\n // When passing as a boolean, it's explicitly used to disable/enable\n // revalidation.\n const options = mergeObjects({\n populateCache: true,\n throwOnError: true\n }, typeof _opts === 'boolean' ? {\n revalidate: _opts\n } : _opts || {});\n let populateCache = options.populateCache;\n const rollbackOnErrorOption = options.rollbackOnError;\n let optimisticData = options.optimisticData;\n const rollbackOnError = (error)=>{\n return typeof rollbackOnErrorOption === 'function' ? rollbackOnErrorOption(error) : rollbackOnErrorOption !== false;\n };\n const throwOnError = options.throwOnError;\n // If the second argument is a key filter, return the mutation results for all\n // filtered keys.\n if (isFunction(_key)) {\n const keyFilter = _key;\n const matchedKeys = [];\n const it = cache.keys();\n for (const key of it){\n if (// Skip the special useSWRInfinite and useSWRSubscription keys.\n !/^\\$(inf|sub)\\$/.test(key) && keyFilter(cache.get(key)._k)) {\n matchedKeys.push(key);\n }\n }\n return Promise.all(matchedKeys.map(mutateByKey));\n }\n return mutateByKey(_key);\n async function mutateByKey(_k) {\n // Serialize key\n const [key] = serialize(_k);\n if (!key) return;\n const [get, set] = createCacheHelper(cache, key);\n const [EVENT_REVALIDATORS, MUTATION, FETCH, PRELOAD] = SWRGlobalState.get(cache);\n const startRevalidate = ()=>{\n const revalidators = EVENT_REVALIDATORS[key];\n const revalidate = isFunction(options.revalidate) ? options.revalidate(get().data, _k) : options.revalidate !== false;\n if (revalidate) {\n // Invalidate the key by deleting the concurrent request markers so new\n // requests will not be deduped.\n delete FETCH[key];\n delete PRELOAD[key];\n if (revalidators && revalidators[0]) {\n return revalidators[0](MUTATE_EVENT).then(()=>get().data);\n }\n }\n return get().data;\n };\n // If there is no new data provided, revalidate the key with current state.\n if (args.length < 3) {\n // Revalidate and broadcast state.\n return startRevalidate();\n }\n let data = _data;\n let error;\n // Update global timestamps.\n const beforeMutationTs = getTimestamp();\n MUTATION[key] = [\n beforeMutationTs,\n 0\n ];\n const hasOptimisticData = !isUndefined(optimisticData);\n const state = get();\n // `displayedData` is the current value on screen. It could be the optimistic value\n // that is going to be overridden by a `committedData`, or get reverted back.\n // `committedData` is the validated value that comes from a fetch or mutation.\n const displayedData = state.data;\n const currentData = state._c;\n const committedData = isUndefined(currentData) ? displayedData : currentData;\n // Do optimistic data update.\n if (hasOptimisticData) {\n optimisticData = isFunction(optimisticData) ? optimisticData(committedData, displayedData) : optimisticData;\n // When we set optimistic data, backup the current committedData data in `_c`.\n set({\n data: optimisticData,\n _c: committedData\n });\n }\n if (isFunction(data)) {\n // `data` is a function, call it passing current cache value.\n try {\n data = data(committedData);\n } catch (err) {\n // If it throws an error synchronously, we shouldn't update the cache.\n error = err;\n }\n }\n // `data` is a promise/thenable, resolve the final data first.\n if (data && isPromiseLike(data)) {\n // This means that the mutation is async, we need to check timestamps to\n // avoid race conditions.\n data = await data.catch((err)=>{\n error = err;\n });\n // Check if other mutations have occurred since we've started this mutation.\n // If there's a race we don't update cache or broadcast the change,\n // just return the data.\n if (beforeMutationTs !== MUTATION[key][0]) {\n if (error) throw error;\n return data;\n } else if (error && hasOptimisticData && rollbackOnError(error)) {\n // Rollback. Always populate the cache in this case but without\n // transforming the data.\n populateCache = true;\n // Reset data to be the latest committed data, and clear the `_c` value.\n set({\n data: committedData,\n _c: UNDEFINED\n });\n }\n }\n // If we should write back the cache after request.\n if (populateCache) {\n if (!error) {\n // Transform the result into data.\n if (isFunction(populateCache)) {\n const populateCachedData = populateCache(data, committedData);\n set({\n data: populateCachedData,\n error: UNDEFINED,\n _c: UNDEFINED\n });\n } else {\n // Only update cached data and reset the error if there's no error. Data can be `undefined` here.\n set({\n data,\n error: UNDEFINED,\n _c: UNDEFINED\n });\n }\n }\n }\n // Reset the timestamp to mark the mutation has ended.\n MUTATION[key][1] = getTimestamp();\n // Update existing SWR Hooks' internal states:\n Promise.resolve(startRevalidate()).then(()=>{\n // The mutation and revalidation are ended, we can clear it since the data is\n // not an optimistic value anymore.\n set({\n _c: UNDEFINED\n });\n });\n // Throw error or return data\n if (error) {\n if (throwOnError) throw error;\n return;\n }\n return data;\n }\n}\n\nconst revalidateAllKeys = (revalidators, type)=>{\n for(const key in revalidators){\n if (revalidators[key][0]) revalidators[key][0](type);\n }\n};\nconst initCache = (provider, options)=>{\n // The global state for a specific provider will be used to deduplicate\n // requests and store listeners. As well as a mutate function that is bound to\n // the cache.\n // The provider's global state might be already initialized. Let's try to get the\n // global state associated with the provider first.\n if (!SWRGlobalState.has(provider)) {\n const opts = mergeObjects(defaultConfigOptions, options);\n // If there's no global state bound to the provider, create a new one with the\n // new mutate function.\n const EVENT_REVALIDATORS = {};\n const mutate = internalMutate.bind(UNDEFINED, provider);\n let unmount = noop;\n const subscriptions = {};\n const subscribe = (key, callback)=>{\n const subs = subscriptions[key] || [];\n subscriptions[key] = subs;\n subs.push(callback);\n return ()=>subs.splice(subs.indexOf(callback), 1);\n };\n const setter = (key, value, prev)=>{\n provider.set(key, value);\n const subs = subscriptions[key];\n if (subs) {\n for (const fn of subs){\n fn(value, prev);\n }\n }\n };\n const initProvider = ()=>{\n if (!SWRGlobalState.has(provider)) {\n // Update the state if it's new, or if the provider has been extended.\n SWRGlobalState.set(provider, [\n EVENT_REVALIDATORS,\n {},\n {},\n {},\n mutate,\n setter,\n subscribe\n ]);\n if (!IS_SERVER) {\n // When listening to the native events for auto revalidations,\n // we intentionally put a delay (setTimeout) here to make sure they are\n // fired after immediate JavaScript executions, which can be\n // React's state updates.\n // This avoids some unnecessary revalidations such as\n // https://github.com/vercel/swr/issues/1680.\n const releaseFocus = opts.initFocus(setTimeout.bind(UNDEFINED, revalidateAllKeys.bind(UNDEFINED, EVENT_REVALIDATORS, FOCUS_EVENT)));\n const releaseReconnect = opts.initReconnect(setTimeout.bind(UNDEFINED, revalidateAllKeys.bind(UNDEFINED, EVENT_REVALIDATORS, RECONNECT_EVENT)));\n unmount = ()=>{\n releaseFocus && releaseFocus();\n releaseReconnect && releaseReconnect();\n // When un-mounting, we need to remove the cache provider from the state\n // storage too because it's a side-effect. Otherwise, when re-mounting we\n // will not re-register those event listeners.\n SWRGlobalState.delete(provider);\n };\n }\n }\n };\n initProvider();\n // This is a new provider, we need to initialize it and setup DOM events\n // listeners for `focus` and `reconnect` actions.\n // We might want to inject an extra layer on top of `provider` in the future,\n // such as key serialization, auto GC, etc.\n // For now, it's just a `Map` interface without any modifications.\n return [\n provider,\n mutate,\n initProvider,\n unmount\n ];\n }\n return [\n provider,\n SWRGlobalState.get(provider)[4]\n ];\n};\n\n// error retry\nconst onErrorRetry = (_, __, config, revalidate, opts)=>{\n const maxRetryCount = config.errorRetryCount;\n const currentRetryCount = opts.retryCount;\n // Exponential backoff\n const timeout = ~~((Math.random() + 0.5) * (1 << (currentRetryCount < 8 ? currentRetryCount : 8))) * config.errorRetryInterval;\n if (!isUndefined(maxRetryCount) && currentRetryCount > maxRetryCount) {\n return;\n }\n setTimeout(revalidate, timeout, opts);\n};\nconst compare = (currentData, newData)=>stableHash(currentData) == stableHash(newData);\n// Default cache provider\nconst [cache, mutate] = initCache(new Map());\n// Default config\nconst defaultConfig = mergeObjects({\n // events\n onLoadingSlow: noop,\n onSuccess: noop,\n onError: noop,\n onErrorRetry,\n onDiscarded: noop,\n // switches\n revalidateOnFocus: true,\n revalidateOnReconnect: true,\n revalidateIfStale: true,\n shouldRetryOnError: true,\n // timeouts\n errorRetryInterval: slowConnection ? 10000 : 5000,\n focusThrottleInterval: 5 * 1000,\n dedupingInterval: 2 * 1000,\n loadingTimeout: slowConnection ? 5000 : 3000,\n // providers\n compare,\n isPaused: ()=>false,\n cache,\n mutate,\n fallback: {}\n}, // use web preset by default\npreset);\n\nconst mergeConfigs = (a, b)=>{\n // Need to create a new object to avoid mutating the original here.\n const v = mergeObjects(a, b);\n // If two configs are provided, merge their `use` and `fallback` options.\n if (b) {\n const { use: u1, fallback: f1 } = a;\n const { use: u2, fallback: f2 } = b;\n if (u1 && u2) {\n v.use = u1.concat(u2);\n }\n if (f1 && f2) {\n v.fallback = mergeObjects(f1, f2);\n }\n }\n return v;\n};\n\nconst SWRConfigContext = createContext({});\nconst SWRConfig = (props)=>{\n const { value } = props;\n const parentConfig = useContext(SWRConfigContext);\n const isFunctionalConfig = isFunction(value);\n const config = useMemo(()=>isFunctionalConfig ? value(parentConfig) : value, [\n isFunctionalConfig,\n parentConfig,\n value\n ]);\n // Extend parent context values and middleware.\n const extendedConfig = useMemo(()=>isFunctionalConfig ? config : mergeConfigs(parentConfig, config), [\n isFunctionalConfig,\n parentConfig,\n config\n ]);\n // Should not use the inherited provider.\n const provider = config && config.provider;\n // initialize the cache only on first access.\n const cacheContextRef = useRef(UNDEFINED);\n if (provider && !cacheContextRef.current) {\n cacheContextRef.current = initCache(provider(extendedConfig.cache || cache), config);\n }\n const cacheContext = cacheContextRef.current;\n // Override the cache if a new provider is given.\n if (cacheContext) {\n extendedConfig.cache = cacheContext[0];\n extendedConfig.mutate = cacheContext[1];\n }\n // Unsubscribe events.\n useIsomorphicLayoutEffect(()=>{\n if (cacheContext) {\n cacheContext[2] && cacheContext[2]();\n return cacheContext[3];\n }\n }, []);\n return createElement(SWRConfigContext.Provider, mergeObjects(props, {\n value: extendedConfig\n }));\n};\n\nconst INFINITE_PREFIX = '$inf$';\n\n// @ts-expect-error\nconst enableDevtools = isWindowDefined && window.__SWR_DEVTOOLS_USE__;\nconst use = enableDevtools ? window.__SWR_DEVTOOLS_USE__ : [];\nconst setupDevTools = ()=>{\n if (enableDevtools) {\n // @ts-expect-error\n window.__SWR_DEVTOOLS_REACT__ = React;\n }\n};\n\nconst normalize = (args)=>{\n return isFunction(args[1]) ? [\n args[0],\n args[1],\n args[2] || {}\n ] : [\n args[0],\n null,\n (args[1] === null ? args[2] : args[1]) || {}\n ];\n};\n\nconst useSWRConfig = ()=>{\n return mergeObjects(defaultConfig, useContext(SWRConfigContext));\n};\n\nconst preload = (key_, fetcher)=>{\n const [key, fnArg] = serialize(key_);\n const [, , , PRELOAD] = SWRGlobalState.get(cache);\n // Prevent preload to be called multiple times before used.\n if (PRELOAD[key]) return PRELOAD[key];\n const req = fetcher(fnArg);\n PRELOAD[key] = req;\n return req;\n};\nconst middleware = (useSWRNext)=>(key_, fetcher_, config)=>{\n // fetcher might be a sync function, so this should not be an async function\n const fetcher = fetcher_ && ((...args)=>{\n const [key] = serialize(key_);\n const [, , , PRELOAD] = SWRGlobalState.get(cache);\n if (key.startsWith(INFINITE_PREFIX)) {\n // we want the infinite fetcher to be called.\n // handling of the PRELOAD cache happens there.\n return fetcher_(...args);\n }\n const req = PRELOAD[key];\n if (isUndefined(req)) return fetcher_(...args);\n delete PRELOAD[key];\n return req;\n });\n return useSWRNext(key_, fetcher, config);\n };\n\nconst BUILT_IN_MIDDLEWARE = use.concat(middleware);\n\n// It's tricky to pass generic types as parameters, so we just directly override\n// the types here.\nconst withArgs = (hook)=>{\n return function useSWRArgs(...args) {\n // Get the default and inherited configuration.\n const fallbackConfig = useSWRConfig();\n // Normalize arguments.\n const [key, fn, _config] = normalize(args);\n // Merge configurations.\n const config = mergeConfigs(fallbackConfig, _config);\n // Apply middleware\n let next = hook;\n const { use } = config;\n const middleware = (use || []).concat(BUILT_IN_MIDDLEWARE);\n for(let i = middleware.length; i--;){\n next = middleware[i](next);\n }\n return next(key, fn || config.fetcher || null, config);\n };\n};\n\n// Add a callback function to a list of keyed callback functions and return\n// the unsubscribe function.\nconst subscribeCallback = (key, callbacks, callback)=>{\n const keyedRevalidators = callbacks[key] || (callbacks[key] = []);\n keyedRevalidators.push(callback);\n return ()=>{\n const index = keyedRevalidators.indexOf(callback);\n if (index >= 0) {\n // O(1): faster than splice\n keyedRevalidators[index] = keyedRevalidators[keyedRevalidators.length - 1];\n keyedRevalidators.pop();\n }\n };\n};\n\n// Create a custom hook with a middleware\nconst withMiddleware = (useSWR, middleware)=>{\n return (...args)=>{\n const [key, fn, config] = normalize(args);\n const uses = (config.use || []).concat(middleware);\n return useSWR(key, fn, {\n ...config,\n use: uses\n });\n };\n};\n\nsetupDevTools();\n\nexport { INFINITE_PREFIX, IS_REACT_LEGACY, IS_SERVER, OBJECT, SWRConfig, SWRGlobalState, UNDEFINED, cache, compare, createCacheHelper, defaultConfig, defaultConfigOptions, getTimestamp, hasRequestAnimationFrame, initCache, internalMutate, isDocumentDefined, isFunction, isPromiseLike, isUndefined, isWindowDefined, mergeConfigs, mergeObjects, mutate, noop, normalize, preload, preset, rAF, events as revalidateEvents, serialize, slowConnection, stableHash, subscribeCallback, useIsomorphicLayoutEffect, useSWRConfig, withArgs, withMiddleware };\n","import 'client-only';\nimport ReactExports, { useRef, useMemo, useCallback, useDebugValue } from 'react';\nimport { useSyncExternalStore } from 'use-sync-external-store/shim/index.js';\nimport { serialize, OBJECT, SWRConfig as SWRConfig$1, defaultConfig, withArgs, SWRGlobalState, createCacheHelper, isUndefined, getTimestamp, UNDEFINED, isFunction, revalidateEvents, internalMutate, useIsomorphicLayoutEffect, subscribeCallback, IS_SERVER, rAF, IS_REACT_LEGACY, mergeObjects } from 'swr/_internal';\nexport { mutate, preload, useSWRConfig } from 'swr/_internal';\n\nconst unstable_serialize = (key)=>serialize(key)[0];\n\n/// \nconst use = ReactExports.use || ((promise)=>{\n if (promise.status === 'pending') {\n throw promise;\n } else if (promise.status === 'fulfilled') {\n return promise.value;\n } else if (promise.status === 'rejected') {\n throw promise.reason;\n } else {\n promise.status = 'pending';\n promise.then((v)=>{\n promise.status = 'fulfilled';\n promise.value = v;\n }, (e)=>{\n promise.status = 'rejected';\n promise.reason = e;\n });\n throw promise;\n }\n});\nconst WITH_DEDUPE = {\n dedupe: true\n};\nconst useSWRHandler = (_key, fetcher, config)=>{\n const { cache, compare, suspense, fallbackData, revalidateOnMount, revalidateIfStale, refreshInterval, refreshWhenHidden, refreshWhenOffline, keepPreviousData } = config;\n const [EVENT_REVALIDATORS, MUTATION, FETCH, PRELOAD] = SWRGlobalState.get(cache);\n // `key` is the identifier of the SWR internal state,\n // `fnArg` is the argument/arguments parsed from the key, which will be passed\n // to the fetcher.\n // All of them are derived from `_key`.\n const [key, fnArg] = serialize(_key);\n // If it's the initial render of this hook.\n const initialMountedRef = useRef(false);\n // If the hook is unmounted already. This will be used to prevent some effects\n // to be called after unmounting.\n const unmountedRef = useRef(false);\n // Refs to keep the key and config.\n const keyRef = useRef(key);\n const fetcherRef = useRef(fetcher);\n const configRef = useRef(config);\n const getConfig = ()=>configRef.current;\n const isActive = ()=>getConfig().isVisible() && getConfig().isOnline();\n const [getCache, setCache, subscribeCache, getInitialCache] = createCacheHelper(cache, key);\n const stateDependencies = useRef({}).current;\n const fallback = isUndefined(fallbackData) ? config.fallback[key] : fallbackData;\n const isEqual = (prev, current)=>{\n for(const _ in stateDependencies){\n const t = _;\n if (t === 'data') {\n if (!compare(prev[t], current[t])) {\n if (!isUndefined(prev[t])) {\n return false;\n }\n if (!compare(returnedData, current[t])) {\n return false;\n }\n }\n } else {\n if (current[t] !== prev[t]) {\n return false;\n }\n }\n }\n return true;\n };\n const getSnapshot = useMemo(()=>{\n const shouldStartRequest = (()=>{\n if (!key) return false;\n if (!fetcher) return false;\n // If `revalidateOnMount` is set, we take the value directly.\n if (!isUndefined(revalidateOnMount)) return revalidateOnMount;\n // If it's paused, we skip revalidation.\n if (getConfig().isPaused()) return false;\n if (suspense) return false;\n if (!isUndefined(revalidateIfStale)) return revalidateIfStale;\n return true;\n })();\n // Get the cache and merge it with expected states.\n const getSelectedCache = (state)=>{\n // We only select the needed fields from the state.\n const snapshot = mergeObjects(state);\n delete snapshot._k;\n if (!shouldStartRequest) {\n return snapshot;\n }\n return {\n isValidating: true,\n isLoading: true,\n ...snapshot\n };\n };\n const cachedData = getCache();\n const initialData = getInitialCache();\n const clientSnapshot = getSelectedCache(cachedData);\n const serverSnapshot = cachedData === initialData ? clientSnapshot : getSelectedCache(initialData);\n // To make sure that we are returning the same object reference to avoid\n // unnecessary re-renders, we keep the previous snapshot and use deep\n // comparison to check if we need to return a new one.\n let memorizedSnapshot = clientSnapshot;\n return [\n ()=>{\n const newSnapshot = getSelectedCache(getCache());\n const compareResult = isEqual(newSnapshot, memorizedSnapshot);\n if (compareResult) {\n // Mentally, we should always return the `memorizedSnapshot` here\n // as there's no change between the new and old snapshots.\n // However, since the `isEqual` function only compares selected fields,\n // the values of the unselected fields might be changed. That's\n // simply because we didn't track them.\n // To support the case in https://github.com/vercel/swr/pull/2576,\n // we need to update these fields in the `memorizedSnapshot` too\n // with direct mutations to ensure the snapshot is always up-to-date\n // even for the unselected fields, but only trigger re-renders when\n // the selected fields are changed.\n memorizedSnapshot.data = newSnapshot.data;\n memorizedSnapshot.isLoading = newSnapshot.isLoading;\n memorizedSnapshot.isValidating = newSnapshot.isValidating;\n memorizedSnapshot.error = newSnapshot.error;\n return memorizedSnapshot;\n } else {\n memorizedSnapshot = newSnapshot;\n return newSnapshot;\n }\n },\n ()=>serverSnapshot\n ];\n // eslint-disable-next-line react-hooks/exhaustive-deps\n }, [\n cache,\n key\n ]);\n // Get the current state that SWR should return.\n const cached = useSyncExternalStore(useCallback((callback)=>subscribeCache(key, (current, prev)=>{\n if (!isEqual(prev, current)) callback();\n }), // eslint-disable-next-line react-hooks/exhaustive-deps\n [\n cache,\n key\n ]), getSnapshot[0], getSnapshot[1]);\n const isInitialMount = !initialMountedRef.current;\n const hasRevalidator = EVENT_REVALIDATORS[key] && EVENT_REVALIDATORS[key].length > 0;\n const cachedData = cached.data;\n const data = isUndefined(cachedData) ? fallback : cachedData;\n const error = cached.error;\n // Use a ref to store previously returned data. Use the initial data as its initial value.\n const laggyDataRef = useRef(data);\n const returnedData = keepPreviousData ? isUndefined(cachedData) ? laggyDataRef.current : cachedData : data;\n // - Suspense mode and there's stale data for the initial render.\n // - Not suspense mode and there is no fallback data and `revalidateIfStale` is enabled.\n // - `revalidateIfStale` is enabled but `data` is not defined.\n const shouldDoInitialRevalidation = (()=>{\n // if a key already has revalidators and also has error, we should not trigger revalidation\n if (hasRevalidator && !isUndefined(error)) return false;\n // If `revalidateOnMount` is set, we take the value directly.\n if (isInitialMount && !isUndefined(revalidateOnMount)) return revalidateOnMount;\n // If it's paused, we skip revalidation.\n if (getConfig().isPaused()) return false;\n // Under suspense mode, it will always fetch on render if there is no\n // stale data so no need to revalidate immediately mount it again.\n // If data exists, only revalidate if `revalidateIfStale` is true.\n if (suspense) return isUndefined(data) ? false : revalidateIfStale;\n // If there is no stale data, we need to revalidate when mount;\n // If `revalidateIfStale` is set to true, we will always revalidate.\n return isUndefined(data) || revalidateIfStale;\n })();\n // Resolve the default validating state:\n // If it's able to validate, and it should revalidate when mount, this will be true.\n const defaultValidatingState = !!(key && fetcher && isInitialMount && shouldDoInitialRevalidation);\n const isValidating = isUndefined(cached.isValidating) ? defaultValidatingState : cached.isValidating;\n const isLoading = isUndefined(cached.isLoading) ? defaultValidatingState : cached.isLoading;\n // The revalidation function is a carefully crafted wrapper of the original\n // `fetcher`, to correctly handle the many edge cases.\n const revalidate = useCallback(async (revalidateOpts)=>{\n const currentFetcher = fetcherRef.current;\n if (!key || !currentFetcher || unmountedRef.current || getConfig().isPaused()) {\n return false;\n }\n let newData;\n let startAt;\n let loading = true;\n const opts = revalidateOpts || {};\n // If there is no ongoing concurrent request, or `dedupe` is not set, a\n // new request should be initiated.\n const shouldStartNewRequest = !FETCH[key] || !opts.dedupe;\n /*\n For React 17\n Do unmount check for calls:\n If key has changed during the revalidation, or the component has been\n unmounted, old dispatch and old event callbacks should not take any\n effect\n\n For React 18\n only check if key has changed\n https://github.com/reactwg/react-18/discussions/82\n */ const callbackSafeguard = ()=>{\n if (IS_REACT_LEGACY) {\n return !unmountedRef.current && key === keyRef.current && initialMountedRef.current;\n }\n return key === keyRef.current;\n };\n // The final state object when the request finishes.\n const finalState = {\n isValidating: false,\n isLoading: false\n };\n const finishRequestAndUpdateState = ()=>{\n setCache(finalState);\n };\n const cleanupState = ()=>{\n // Check if it's still the same request before deleting it.\n const requestInfo = FETCH[key];\n if (requestInfo && requestInfo[1] === startAt) {\n delete FETCH[key];\n }\n };\n // Start fetching. Change the `isValidating` state, update the cache.\n const initialState = {\n isValidating: true\n };\n // It is in the `isLoading` state, if and only if there is no cached data.\n // This bypasses fallback data and laggy data.\n if (isUndefined(getCache().data)) {\n initialState.isLoading = true;\n }\n try {\n if (shouldStartNewRequest) {\n setCache(initialState);\n // If no cache is being rendered currently (it shows a blank page),\n // we trigger the loading slow event.\n if (config.loadingTimeout && isUndefined(getCache().data)) {\n setTimeout(()=>{\n if (loading && callbackSafeguard()) {\n getConfig().onLoadingSlow(key, config);\n }\n }, config.loadingTimeout);\n }\n // Start the request and save the timestamp.\n // Key must be truthy if entering here.\n FETCH[key] = [\n currentFetcher(fnArg),\n getTimestamp()\n ];\n }\n [newData, startAt] = FETCH[key];\n newData = await newData;\n if (shouldStartNewRequest) {\n // If the request isn't interrupted, clean it up after the\n // deduplication interval.\n setTimeout(cleanupState, config.dedupingInterval);\n }\n // If there're other ongoing request(s), started after the current one,\n // we need to ignore the current one to avoid possible race conditions:\n // req1------------------>res1 (current one)\n // req2---------------->res2\n // the request that fired later will always be kept.\n // The timestamp maybe be `undefined` or a number\n if (!FETCH[key] || FETCH[key][1] !== startAt) {\n if (shouldStartNewRequest) {\n if (callbackSafeguard()) {\n getConfig().onDiscarded(key);\n }\n }\n return false;\n }\n // Clear error.\n finalState.error = UNDEFINED;\n // If there're other mutations(s), that overlapped with the current revalidation:\n // case 1:\n // req------------------>res\n // mutate------>end\n // case 2:\n // req------------>res\n // mutate------>end\n // case 3:\n // req------------------>res\n // mutate-------...---------->\n // we have to ignore the revalidation result (res) because it's no longer fresh.\n // meanwhile, a new revalidation should be triggered when the mutation ends.\n const mutationInfo = MUTATION[key];\n if (!isUndefined(mutationInfo) && // case 1\n (startAt <= mutationInfo[0] || // case 2\n startAt <= mutationInfo[1] || // case 3\n mutationInfo[1] === 0)) {\n finishRequestAndUpdateState();\n if (shouldStartNewRequest) {\n if (callbackSafeguard()) {\n getConfig().onDiscarded(key);\n }\n }\n return false;\n }\n // Deep compare with the latest state to avoid extra re-renders.\n // For local state, compare and assign.\n const cacheData = getCache().data;\n // Since the compare fn could be custom fn\n // cacheData might be different from newData even when compare fn returns True\n finalState.data = compare(cacheData, newData) ? cacheData : newData;\n // Trigger the successful callback if it's the original request.\n if (shouldStartNewRequest) {\n if (callbackSafeguard()) {\n getConfig().onSuccess(newData, key, config);\n }\n }\n } catch (err) {\n cleanupState();\n const currentConfig = getConfig();\n const { shouldRetryOnError } = currentConfig;\n // Not paused, we continue handling the error. Otherwise, discard it.\n if (!currentConfig.isPaused()) {\n // Get a new error, don't use deep comparison for errors.\n finalState.error = err;\n // Error event and retry logic. Only for the actual request, not\n // deduped ones.\n if (shouldStartNewRequest && callbackSafeguard()) {\n currentConfig.onError(err, key, currentConfig);\n if (shouldRetryOnError === true || isFunction(shouldRetryOnError) && shouldRetryOnError(err)) {\n if (!getConfig().revalidateOnFocus || !getConfig().revalidateOnReconnect || isActive()) {\n // If it's inactive, stop. It will auto-revalidate when\n // refocusing or reconnecting.\n // When retrying, deduplication is always enabled.\n currentConfig.onErrorRetry(err, key, currentConfig, (_opts)=>{\n const revalidators = EVENT_REVALIDATORS[key];\n if (revalidators && revalidators[0]) {\n revalidators[0](revalidateEvents.ERROR_REVALIDATE_EVENT, _opts);\n }\n }, {\n retryCount: (opts.retryCount || 0) + 1,\n dedupe: true\n });\n }\n }\n }\n }\n }\n // Mark loading as stopped.\n loading = false;\n // Update the current hook's state.\n finishRequestAndUpdateState();\n return true;\n }, // `setState` is immutable, and `eventsCallback`, `fnArg`, and\n // `keyValidating` are depending on `key`, so we can exclude them from\n // the deps array.\n //\n // FIXME:\n // `fn` and `config` might be changed during the lifecycle,\n // but they might be changed every render like this.\n // `useSWR('key', () => fetch('/api/'), { suspense: true })`\n // So we omit the values from the deps array\n // even though it might cause unexpected behaviors.\n // eslint-disable-next-line react-hooks/exhaustive-deps\n [\n key,\n cache\n ]);\n // Similar to the global mutate but bound to the current cache and key.\n // `cache` isn't allowed to change during the lifecycle.\n const boundMutate = useCallback(// Use callback to make sure `keyRef.current` returns latest result every time\n (...args)=>{\n return internalMutate(cache, keyRef.current, ...args);\n }, // eslint-disable-next-line react-hooks/exhaustive-deps\n []);\n // The logic for updating refs.\n useIsomorphicLayoutEffect(()=>{\n fetcherRef.current = fetcher;\n configRef.current = config;\n // Handle laggy data updates. If there's cached data of the current key,\n // it'll be the correct reference.\n if (!isUndefined(cachedData)) {\n laggyDataRef.current = cachedData;\n }\n });\n // After mounted or key changed.\n useIsomorphicLayoutEffect(()=>{\n if (!key) return;\n const softRevalidate = revalidate.bind(UNDEFINED, WITH_DEDUPE);\n // Expose revalidators to global event listeners. So we can trigger\n // revalidation from the outside.\n let nextFocusRevalidatedAt = 0;\n const onRevalidate = (type, opts = {})=>{\n if (type == revalidateEvents.FOCUS_EVENT) {\n const now = Date.now();\n if (getConfig().revalidateOnFocus && now > nextFocusRevalidatedAt && isActive()) {\n nextFocusRevalidatedAt = now + getConfig().focusThrottleInterval;\n softRevalidate();\n }\n } else if (type == revalidateEvents.RECONNECT_EVENT) {\n if (getConfig().revalidateOnReconnect && isActive()) {\n softRevalidate();\n }\n } else if (type == revalidateEvents.MUTATE_EVENT) {\n return revalidate();\n } else if (type == revalidateEvents.ERROR_REVALIDATE_EVENT) {\n return revalidate(opts);\n }\n return;\n };\n const unsubEvents = subscribeCallback(key, EVENT_REVALIDATORS, onRevalidate);\n // Mark the component as mounted and update corresponding refs.\n unmountedRef.current = false;\n keyRef.current = key;\n initialMountedRef.current = true;\n // Keep the original key in the cache.\n setCache({\n _k: fnArg\n });\n // Trigger a revalidation\n if (shouldDoInitialRevalidation) {\n if (isUndefined(data) || IS_SERVER) {\n // Revalidate immediately.\n softRevalidate();\n } else {\n // Delay the revalidate if we have data to return so we won't block\n // rendering.\n rAF(softRevalidate);\n }\n }\n return ()=>{\n // Mark it as unmounted.\n unmountedRef.current = true;\n unsubEvents();\n };\n }, [\n key\n ]);\n // Polling\n useIsomorphicLayoutEffect(()=>{\n let timer;\n function next() {\n // Use the passed interval\n // ...or invoke the function with the updated data to get the interval\n const interval = isFunction(refreshInterval) ? refreshInterval(getCache().data) : refreshInterval;\n // We only start the next interval if `refreshInterval` is not 0, and:\n // - `force` is true, which is the start of polling\n // - or `timer` is not 0, which means the effect wasn't canceled\n if (interval && timer !== -1) {\n timer = setTimeout(execute, interval);\n }\n }\n function execute() {\n // Check if it's OK to execute:\n // Only revalidate when the page is visible, online, and not errored.\n if (!getCache().error && (refreshWhenHidden || getConfig().isVisible()) && (refreshWhenOffline || getConfig().isOnline())) {\n revalidate(WITH_DEDUPE).then(next);\n } else {\n // Schedule the next interval to check again.\n next();\n }\n }\n next();\n return ()=>{\n if (timer) {\n clearTimeout(timer);\n timer = -1;\n }\n };\n }, [\n refreshInterval,\n refreshWhenHidden,\n refreshWhenOffline,\n key\n ]);\n // Display debug info in React DevTools.\n useDebugValue(returnedData);\n // In Suspense mode, we can't return the empty `data` state.\n // If there is an `error`, the `error` needs to be thrown to the error boundary.\n // If there is no `error`, the `revalidation` promise needs to be thrown to\n // the suspense boundary.\n if (suspense && isUndefined(data) && key) {\n // SWR should throw when trying to use Suspense on the server with React 18,\n // without providing any initial data. See:\n // https://github.com/vercel/swr/issues/1832\n if (!IS_REACT_LEGACY && IS_SERVER) {\n throw new Error('Fallback data is required when using suspense in SSR.');\n }\n // Always update fetcher and config refs even with the Suspense mode.\n fetcherRef.current = fetcher;\n configRef.current = config;\n unmountedRef.current = false;\n const req = PRELOAD[key];\n if (!isUndefined(req)) {\n const promise = boundMutate(req);\n use(promise);\n }\n if (isUndefined(error)) {\n const promise = revalidate(WITH_DEDUPE);\n if (!isUndefined(returnedData)) {\n promise.status = 'fulfilled';\n promise.value = true;\n }\n use(promise);\n } else {\n throw error;\n }\n }\n return {\n mutate: boundMutate,\n get data () {\n stateDependencies.data = true;\n return returnedData;\n },\n get error () {\n stateDependencies.error = true;\n return error;\n },\n get isValidating () {\n stateDependencies.isValidating = true;\n return isValidating;\n },\n get isLoading () {\n stateDependencies.isLoading = true;\n return isLoading;\n }\n };\n};\nconst SWRConfig = OBJECT.defineProperty(SWRConfig$1, 'defaultValue', {\n value: defaultConfig\n});\n/**\n * A hook to fetch data.\n *\n * @link https://swr.vercel.app\n * @example\n * ```jsx\n * import useSWR from 'swr'\n * function Profile() {\n * const { data, error, isLoading } = useSWR('/api/user', fetcher)\n * if (error) return
failed to load
\n * if (isLoading) return
loading...
\n * return
hello {data.name}!
\n * }\n * ```\n */ const useSWR = withArgs(useSWRHandler);\n\nexport { SWRConfig, useSWR as default, unstable_serialize };\n","import React from\"react\";import useSWR from\"swr\";import cn from\"./utils/cn\";import Icon from\"./Icon\";export const statusTypes=[\"none\",\"operational\",\"minor\",\"major\",\"critical\",\"unknown\"];export const StatusUrl=\"https://ntqy1wz94gjv.statuspage.io/api/v2/status.json\";const fetcher=url=>fetch(url).then(res=>res.json());const indicatorClass=indicator=>{switch(indicator){case\"none\":case\"operational\":return\"bg-gui-success-green\";case\"minor\":return\"bg-yellow-500\";case\"major\":return\"bg-orange-500\";case\"critical\":return\"bg-gui-error-red\";default:return\"bg-neutral-500\"}};export const StatusIcon=({statusUrl,refreshInterval=1e3*60})=>{const{data,error,isLoading}=useSWR(statusUrl,fetcher,{refreshInterval});return React.createElement(\"span\",{className:cn(\"inline-flex h-8 aspect-square rounded-full\",indicatorClass(data?.status?.indicator),{\"animate-pulse\":isLoading||error})})};const Status=({statusUrl=StatusUrl,additionalCSS,refreshInterval=1e3*60,showDescription=false})=>{const{data}=useSWR(statusUrl,fetcher,{refreshInterval});return React.createElement(\"a\",{href:\"https://status.ably.com\",className:cn(\"inline-flex group/status items-center gap-8\",additionalCSS),target:\"_blank\",rel:\"noreferrer\"},React.createElement(StatusIcon,{statusUrl:statusUrl,refreshInterval:refreshInterval??1e3*60}),showDescription&&data?.status?.description&&React.createElement(\"div\",{className:\"flex gap-8 ui-text-menu4 font-medium text-neutral-900 group-hover/status:text-neutral-1300 dark:text-neutral-400 dark:group-hover/status:text-neutral-000 transition-colors\"},React.createElement(\"span\",null,data.status.description.charAt(0).toUpperCase()+data.status.description.slice(1).toLowerCase()),React.createElement(Icon,{name:\"icon-gui-arrow-top-right-on-square-outline\",size:\"16px\"})))};export default Status;\n//# sourceMappingURL=Status.js.map","import React,{useMemo}from\"react\";import Icon from\"./Icon\";import cn from\"./utils/cn\";const Badge=({size=\"md\",color=\"neutral\",iconBefore,iconAfter,className,children,disabled=false,focusable=false,hoverable=false,iconSize=\"12px\",ariaLabel})=>{const sizeClass=useMemo(()=>{switch(size){case\"xs\":return\"px-8 py-0 text-[10px] leading-tight\";case\"sm\":return\"px-8 py-2 text-[10px] leading-tight\";case\"md\":return\"px-[10px] py-2 text-[11px] leading-normal\";case\"lg\":return\"px-12 py-[3px] text-[12px] leading-normal\"}},[size]);const childClass=useMemo(()=>{switch(size){case\"xs\":case\"sm\":return\"leading-[18px]\";case\"md\":case\"lg\":return\"leading-[20px]\"}},[size]);const colorClass=useMemo(()=>{switch(color){case\"neutral\":return\"text-neutral-900 dark:text-neutral-400\";case\"violet\":return\"text-violet-400\";case\"orange\":return\"text-orange-600\";case\"yellow\":return\"text-yellow-600\";case\"green\":return\"text-green-600\";case\"blue\":return\"text-blue-600\";case\"pink\":return\"text-pink-600\";case\"red\":return\"text-orange-700\"}},[color]);return React.createElement(\"div\",{className:cn(\"inline-flex bg-neutral-100 dark:bg-neutral-1200 rounded-2xl gap-4 items-center focus-base transition-colors select-none font-semibold\",sizeClass,colorClass,{\"focus-base\":focusable},{\"hover:bg-neutral-300 hover:dark:bg-neutral-1000 active:bg-neutral-300 dark:active:bg-neutral-1000\":hoverable},{\"cursor-not-allowed disabled:text-gui-unavailable dark:disabled:text-gui-unavailable-dark\":disabled},className),tabIndex:focusable?0:undefined,\"aria-label\":focusable||hoverable?ariaLabel:undefined},iconBefore?React.createElement(Icon,{name:iconBefore,size:iconSize,color:colorClass}):null,React.createElement(\"span\",{className:cn(\"whitespace-nowrap tracking-widen-0.04\",childClass)},children),iconAfter?React.createElement(Icon,{name:iconAfter,size:iconSize,color:colorClass}):null)};export default Badge;\n//# sourceMappingURL=Badge.js.map","export const footerLinks=[{title:\"Products\",links:[{label:\"Ably Pub/Sub\",link:\"/pubsub\"},{label:\"Ably LiveSync\",link:\"/livesync\"},{label:\"Ably Chat\",link:\"/chat\"},{label:\"Ably Spaces\",link:\"/spaces\"},{label:\"Ably Asset Tracking\",link:\"/solutions/asset-tracking\"},{label:\"Compare our tech\",link:\"/compare\"}]},{title:\"Platform\",links:[{label:\"Infrastructure\",link:\"/four-pillars-of-dependability\"},{label:\"Integrations\",link:\"/integrations\"},{label:\"SDKs\",link:\"/docs/sdks\"},{label:\"Changelog\",link:\"https://changelog.ably.com/\"},{label:\"Security & Compliance\",link:\"/security-and-compliance\"}]},{title:\"Get started\",links:[{label:\"Documentation\",link:\"/docs\"},{label:\"Examples\",link:\"/examples\"},{label:\"Pricing\",link:\"/pricing\"},{label:\"Realtime A-Z\",link:\"/topics\"},{label:\"Support\",link:\"/support\"}]},{title:\"Company\",links:[{label:\"About Ably\",link:\"/about\"},{label:\"Blog\",link:\"/blog\"},{label:\"Careers\",link:\"/careers\",badge:\"WE’RE HIRING\"},{label:\"Contact us\",link:\"/contact\"}]}];export const bottomFooterLinks=[{label:\"Data protection\",link:\"/data-protection\"},{label:\"Privacy\",link:\"/privacy\"},{label:\"Legals\",link:\"/legals\"},{label:\"Cookies\",link:\"/privacy\"}];export const socialLinks=[{key:\"x\",colorIcon:\"icon-social-x\",monoIcon:\"icon-social-x-mono\",link:\"https://x.com/ablyrealtime\"},{key:\"linkedin\",colorIcon:\"icon-social-linkedin\",monoIcon:\"icon-social-linkedin-mono\",link:\"https://www.linkedin.com/company/ably-realtime\"},{key:\"github\",colorIcon:\"icon-social-github\",monoIcon:\"icon-social-github-mono\",link:\"https://github.com/ably/\"},{key:\"discord\",colorIcon:\"icon-social-discord\",monoIcon:\"icon-social-discord-mono\",link:\"https://discord.gg/g8yqePUVDn\"},{key:\"youtube\",colorIcon:\"icon-social-youtube\",monoIcon:\"icon-social-youtube-mono\",link:\"https://www.youtube.com/c/AblyRealtime\"}];\n//# sourceMappingURL=data.js.map","export const productNames=[\"pubsub\",\"chat\",\"spaces\",\"liveSync\",\"assetTracking\",\"liveObjects\"];export const products={pubsub:{label:\"Pub/Sub\",description:\"Low-level APIs to build any realtime experience\",icon:\"icon-product-pubsub-mono\",hoverIcon:\"icon-product-pubsub\",link:\"/docs/products/channels\"},chat:{label:\"Chat\",description:\"Rapidly build chat features and roll-out at scale\",icon:\"icon-product-chat-mono\",hoverIcon:\"icon-product-chat\",link:\"/docs/products/chat\"},spaces:{label:\"Spaces\",description:\"Create collaborative environments in a few lines of code\",icon:\"icon-product-spaces-mono\",hoverIcon:\"icon-product-spaces\",link:\"/docs/products/spaces\"},liveSync:{label:\"LiveSync\",description:\"Sync database changes with frontend clients\",icon:\"icon-product-livesync-mono\",hoverIcon:\"icon-product-livesync\",link:\"/docs/products/livesync\"},assetTracking:{label:\"Asset Tracking\",description:\"Simple APIs to build realtime tracking applications\",icon:\"icon-product-asset-tracking-mono\",hoverIcon:\"icon-product-asset-tracking\",link:\"/docs/products/asset-tracking\"},liveObjects:{label:\"LiveObjects\",description:\"Sync application state across multiple devices\",icon:\"icon-product-liveobjects-mono\",hoverIcon:\"icon-product-liveobjects\",link:\"/docs/products/asset-tracking\",unavailable:true}};\n//# sourceMappingURL=data.js.map","import React from\"react\";import Icon from\"../Icon\";import cn from\"../utils/cn\";const ProductIcon=({name,hoverName,selected,size,unavailable})=>{if(!name){return null}const innerSize=size-2;const iconSize=size/6*4;return React.createElement(\"span\",{className:cn(\"block p-1 bg-gradient-to-b\",{\"from-neutral-1000 to-neutral-1300 dark:from-neutral-000 dark:to-neutral-300\":selected,\"from-neutral-000 to-neutral-300 dark:from-neutral-1000 dark:to-neutral-1300\":!selected}),style:{width:size,height:size,borderRadius:size/4}},React.createElement(\"span\",{className:cn(\"flex items-center justify-center\",{\"bg-neutral-1200 dark:bg-neutral-100\":selected,\"bg-neutral-100 dark:bg-neutral-1200\":!selected,\"group-hover/product-tile:bg-neutral-000 dark:group-hover/product-tile:bg-neutral-1300\":selected===false&&!unavailable}),style:{height:innerSize,borderRadius:size/4}},hoverName?React.createElement(Icon,{name:hoverName,size:`${iconSize}px`,additionalCSS:cn({\"hidden group-hover/product-tile:flex\":!selected,flex:selected})}):null,React.createElement(Icon,{name:name,size:`${iconSize}px`,additionalCSS:cn({\"text-neutral-000 dark:text-neutral-1300\":selected&&!unavailable,\"text-neutral-1300 dark:text-neutral-000\":!selected&&!unavailable,\"text-neutral-700 dark:text-neutral-600\":selected&&unavailable,\"text-neutral-600 dark:text-neutral-700\":!selected&&unavailable,\"flex group-hover/product-tile:hidden\":hoverName&&!selected,hidden:hoverName&&selected})})))};export default ProductIcon;\n//# sourceMappingURL=ProductIcon.js.map","import React from\"react\";import cn from\"../utils/cn\";const LABEL_FONT_SIZE_RATIO=4;const DESCRIPTION_FONT_SIZE_RATIO=2.6;const ProductLabel=({label,unavailable,selected,numericalSize,showLabel})=>{if(!label||!showLabel){return null}const dynamicFontSize=numericalSize/LABEL_FONT_SIZE_RATIO;return React.createElement(\"span\",{className:\"flex flex-col justify-center\"},unavailable?React.createElement(\"span\",{className:\"block\"},React.createElement(\"span\",{className:\"table-cell font-sans bg-neutral-300 dark:bg-neutral-1000 rounded-full text-gui-unavailable tracking-widen-0.04 font-bold leading-snug\",style:{fontSize:dynamicFontSize*.6,padding:`${dynamicFontSize*.25}px ${dynamicFontSize*.5}px`}},\"COMING SOON\")):React.createElement(\"span\",{className:cn(\"block font-bold uppercase ui-text-p2 leading-snug\",{\"text-neutral-500 dark:text-neutral-700\":selected},{\"text-neutral-700 dark:text-neutral-500\":!selected}),style:{fontSize:dynamicFontSize,letterSpacing:\"0.06em\"}},\"Ably\"),React.createElement(\"span\",{className:cn(\"block ui-text-p2 font-bold\",{\"text-neutral-000 dark:text-neutral-1300\":selected===true&&!unavailable},{\"text-neutral-1000 dark:text-neutral-300 group-hover/product-tile:text-neutral-1300 dark:group-hover/product-tile:text-neutral-000\":selected===false&&!unavailable},{\"text-neutral-1300 dark:text-neutral-000\":selected===undefined&&!unavailable},{\"text-neutral-700 dark:text-neutral-600\":unavailable},{\"mt-[-3px]\":!unavailable}),style:{fontSize:numericalSize/DESCRIPTION_FONT_SIZE_RATIO}},label))};export default ProductLabel;\n//# sourceMappingURL=ProductLabel.js.map","import React from\"react\";import cn from\"../utils/cn\";const ProductDescription=({description,selected,unavailable,showDescription=true})=>{if(!description||!showDescription){return null}return React.createElement(\"span\",{className:cn(\"block ui-text-p3 font-medium leading-snug\",{\"text-neutral-300 dark:text-neutral-1000\":selected&&!unavailable},{\"text-neutral-700 dark:text-neutral-600 group-hover/product-tile:text-neutral-1000 dark:group-hover/product-tile:text-neutral-300\":!selected})},description)};export default ProductDescription;\n//# sourceMappingURL=ProductDescription.js.map","import React from\"react\";import cn from\"../utils/cn\";import{products}from\"../ProductTile/data\";import ProductIcon from\"../ProductTile/ProductIcon\";import ProductLabel from\"../ProductTile/ProductLabel\";import ProductDescription from\"../ProductTile/ProductDescription\";const CONTAINER_GAP_RATIO=3;const MeganavProductTile=({name,productLink,showDescription=true,showLabel=true,size=\"40px\",animateIcons=false})=>{const{icon,hoverIcon,label,unavailable,description}=products[name]??{};const numericalSize=parseInt(size,10);return React.createElement(\"a\",{href:productLink?productLink:\"#\",className:cn(\"transition-colors group/product-tile\",\"flex flex-col p-12 rounded-lg gap-8\",\"bg-neutral-000 dark:bg-neutral-1300\",{\"hover:bg-neutral-100 dark:hover:bg-neutral-1200\":!unavailable},{\"pointer-events-auto\":!unavailable},{\"pointer-events-none\":unavailable}),\"aria-hidden\":unavailable},React.createElement(\"span\",{className:cn(\"items-center flex\"),style:{gap:numericalSize/CONTAINER_GAP_RATIO}},React.createElement(ProductIcon,{size:numericalSize,name:icon,hoverName:animateIcons?hoverIcon:undefined,unavailable:!!unavailable,selected:false}),React.createElement(ProductLabel,{label:label,unavailable:!!unavailable,numericalSize:numericalSize,showLabel:showLabel,selected:false})),React.createElement(ProductDescription,{description:description,unavailable:!!unavailable,showDescription:showDescription,selected:false}))};export default MeganavProductTile;\n//# sourceMappingURL=MeganavProductTile.js.map","import React from\"react\";import cn from\"../utils/cn\";import Icon from\"../Icon\";import{productsForNav}from\"./data\";import{productNames}from\"../ProductTile/data\";import MeganavProductTile from\"./MeganavProductTile\";export const MeganavPanel=({displayProductTile,panelLeft,panelLeftClassName,panelRightHeading,panelRightItems,panelRightBottom})=>{return React.createElement(\"div\",{className:\"flex flex-col md:flex-row gap-x-24 bg-neutral-000 dark:bg-neutral-1300\"},React.createElement(\"div\",{className:cn(\"flex-[7] flex-shrink-0 group\",{\"grid-cols-1 xs:grid-cols-2\":displayProductTile},panelLeftClassName)},displayProductTile?productNames.map(product=>React.createElement(MeganavProductTile,{name:product,key:product,productLink:productsForNav[product].link??\"#\",animateIcons:true})):panelLeft&&React.createElement(\"a\",{className:\"grid grid-cols-1 xs:grid-cols-2 pointer-events-auto\",href:panelLeft.url},React.createElement(\"span\",{className:\"block w-full p-24\"},React.createElement(\"h4\",{className:\"ui-text-h4 text-neutral-1300 dark:text-neutral-000\"},panelLeft.heading),React.createElement(\"span\",{className:\"block ui-text-p3 text-neutral-800 dark:text-neutral-500 mt-8\"},panelLeft.content),React.createElement(\"span\",{className:\"py-8 font-sans font-bold block group/featured-link text-neutral-1300 dark:text-neutral-000 mt-16 ui-text-p3 hover:text-neutral-1300 dark:hover:text-neutral-000\"},panelLeft.labelLink,React.createElement(Icon,{name:\"icon-gui-arrow-long-right-outline\",size:\"18px\",color:\"text-orange-600\",additionalCSS:cn(\"align-middle ml-8 relative -top-1 -left-4 transition-[left]\",\"group-hover/featured-link:left-0 group-hover/meganav-panel:left-0\")}))),React.createElement(\"span\",{className:\"flex justify-end\"},React.createElement(\"img\",{src:panelLeft.image,alt:panelLeft.heading,className:\"w-full z-10 rounded-lg\"})))),React.createElement(\"div\",{className:\"flex-[3] flex-shrink-0 flex flex-col justify-between\"},React.createElement(\"ul\",null,panelRightHeading&&React.createElement(\"p\",{className:\"ui-text-overline2 text-neutral-700 dark:text-neutral-600 my-12\"},panelRightHeading),panelRightItems.map(item=>React.createElement(\"li\",{className:cn(\"list-none py-[10px] md:py-8 my-0 flex gap-x-[10px] group hover:cursor-pointer\",item.isMobile?\"md:hidden\":\"md:flex\"),key:item.label},React.createElement(Icon,{name:item.icon,size:\"1.25rem\",additionalCSS:\"text-neutral-1000 dark:text-neutral-300\"}),React.createElement(\"a\",{className:\"pointer-events-auto ui-text-menu2 md:ui-text-menu3 font-semibold text-neutral-1000 dark:text-neutral-300 group-hover:text-neutral-1300 dark:group-hover:text-neutral-000\",href:item.link},item.label)))),panelRightBottom&&React.createElement(\"div\",{className:\"items-end mt-16 md:mt-0\"},panelRightBottom)))};\n//# sourceMappingURL=MeganavPanel.js.map","export default \"__VITE_ASSET__C4TeFgX6__\"","export default \"__VITE_ASSET__BaJqbDV6__\"","export default \"__VITE_ASSET__TNRRT1Ww__\"","export default \"__VITE_ASSET__CCo7MYJv__\"","export default \"__VITE_ASSET__QLHpkEP2__\"","export default \"__VITE_ASSET__C24FvnB6__\"","import React from\"react\";import{MeganavPanel}from\"./MeganavPanel\";import Status,{StatusUrl}from\"../Status\";import FanEngagementNavImage from\"./images/fan-engagement-nav-image.png\";import CompanyNavImage from\"./images/founders-nav-image.png\";import BestRequirementsWinter2025 from\"../images/g2-best-meets-requirements-2025.svg\";import BestSupportWinter2025 from\"../images/g2-best-support-2025.svg\";import HighPerformerWinter2025 from\"../images/g2-high-performer-2025.svg\";import UsersMostLikelyToRecommend from\"../images/g2-users-most-likely-to-recommend-2025.svg\";import{products}from\"../ProductTile/data\";const panelClassName=\"w-full sm:w-[815px]\";const panelLeftFeatureClassName=\"bg-neutral-100 dark:bg-neutral-1200 hidden md:grid border border-neutral-300 dark:border-neutral-1000 hover:border-neutral-400 dark:hover:border-neutral-800 rounded-lg cursor-pointer group/meganav-panel\";const productsMenu=[{label:\"Infrastructure\",icon:\"icon-gui-globe-alt-outline\",link:\"/four-pillars-of-dependability\"},{label:\"Integrations\",icon:\"icon-gui-puzzle-piece-outline\",link:\"/integrations\"},{label:\"SDKs\",icon:\"icon-gui-cube-transparent-outline\",link:\"/docs/sdks\"},{label:\"Security & Compliance\",icon:\"icon-gui-shield-check-outline\",link:\"/security-and-compliance\"}];const solutionsHighlight={heading:\"Fan Engagement\",content:\"Capture the attention of millions of fans during live events.\",labelLink:\"Learn more\",url:\"/fan-engagement\",image:FanEngagementNavImage};const solutionsMenu=[{label:\"Fan Engagement\",icon:\"icon-gui-hand-thumb-up-outline\",link:\"/fan-engagement\",isMobile:true},{label:\"BizTech\",icon:\"icon-gui-building-office-outline\",link:\"/solutions/ecommerce-and-retail\"},{label:\"FinTech\",icon:\"icon-gui-currency-dollar-outline\",link:\"/solutions/fintech\"},{label:\"HealthTech\",icon:\"icon-gui-heart-outline\",link:\"/solutions/healthcare\"},{label:\"EdTech\",icon:\"icon-gui-academic-cap-outline\",link:\"/solutions/edtech\"}];const companyHighlight={heading:\"Leading the realtime revolution\",content:\"Hear from our founders about Ably’s ambitious plans to become the world’s definitive realtime platform.\",labelLink:\"About Ably\",url:\"/about\",image:CompanyNavImage};const companyMenu=[{label:\"About Ably\",icon:\"icon-gui-ably-badge\",link:\"/about\",isMobile:true},{label:\"Customer stories\",icon:\"icon-gui-star-outline\",link:\"/case-studies\"},{label:\"Careers\",icon:\"icon-gui-briefcase-outline\",link:\"/careers\"},{label:\"Blog\",icon:\"icon-gui-light-bulb-outline\",link:\"/blog\"}];export const ablyAwards=[{image:BestRequirementsWinter2025,desc:\"G2 Best Requirements Winter 2025\"},{image:BestSupportWinter2025,desc:\"G2 Best Support Winter 2025\"},{image:HighPerformerWinter2025,desc:\"G2 High Performer Winter 2025\"},{image:UsersMostLikelyToRecommend,desc:\"G2 Users Most Likely to Recommend Winter 2025\"}];export const menuItemLinks=[{name:\"Pricing\",link:\"/pricing\",isHiddenMobile:true},{name:\"Docs\",link:\"/docs\",isHiddenMobile:true}];export const menuItemsForHeader=[{name:\"Products\",content:React.createElement(MeganavPanel,{displayProductTile:true,panelLeftClassName:\"grid\",panelRightItems:productsMenu,panelRightHeading:\"platform\",panelRightBottom:React.createElement(Status,{statusUrl:StatusUrl,showDescription:true})}),panelClassName},{name:\"Solutions\",content:React.createElement(MeganavPanel,{panelLeft:solutionsHighlight,panelLeftClassName:panelLeftFeatureClassName,panelRightItems:solutionsMenu}),panelClassName},{name:\"Company\",content:React.createElement(MeganavPanel,{panelLeft:companyHighlight,panelLeftClassName:panelLeftFeatureClassName,panelRightItems:companyMenu,panelRightBottom:React.createElement(\"div\",{className:\"flex-1 gap-x-8 hidden md:flex\"},ablyAwards.slice(0,3).map(award=>React.createElement(\"img\",{key:award.desc,src:award.image,alt:award.desc,width:\"57\",height:\"64\"})))}),panelClassName},...menuItemLinks];export const productsForNav={...products,pubsub:{...products.pubsub,link:\"/pubsub\"},liveSync:{...products.liveSync,link:\"/livesync\"},chat:{...products.chat,link:\"/chat\"},spaces:{...products.spaces,link:\"/spaces\"},assetTracking:{...products.assetTracking,link:\"/solutions/asset-tracking\"}};\n//# sourceMappingURL=data.js.map","import React from\"react\";import cn from\"./utils/cn\";import Icon from\"./Icon\";import Status,{StatusUrl}from\"./Status\";import Logo from\"./Logo\";import Badge from\"./Badge\";import{bottomFooterLinks,footerLinks,socialLinks}from\"./Footer/data\";import{ablyAwards}from\"./Meganav/data\";const Footer=()=>{const textColorClassnames=\"ui-text-menu3 font-medium transition-colors text-neutral-1000 dark:text-neutral-300 hover:text-neutral-1300 hover:dark:text-neutral-000 active:text-neutral-800 active:dark:text-neutral-400 focus:outline focus:outline-gui-focus\";return React.createElement(\"footer\",{className:\"w-full bg-neutral-100 dark:bg-neutral-1200 border-t border-neutral-300 dark:border-neutral-1000\",\"data-id\":\"footer\"},React.createElement(\"div\",{className:\"max-w-screen-xl mx-auto ui-grid-px pt-40 sm:pt-48 md:pt-64 pb-40\"},React.createElement(\"div\",{className:\"flex flex-col sm:flex-row gap-x-24 gap-y-48 mb-64 justify-between\"},React.createElement(\"div\",{className:\"flex-1 flex flex-col gap-24\"},[\"light\",\"dark\"].map(theme=>React.createElement(Logo,{key:theme,href:\"/\",theme:theme,additionalLinkAttrs:{className:cn(\"focus-base rounded w-[102px]\",{\"flex dark:hidden\":theme===\"light\",\"hidden dark:flex\":theme===\"dark\"})}})),React.createElement(Status,{statusUrl:StatusUrl,showDescription:true}),React.createElement(\"div\",{className:\"flex gap-x-24\"},socialLinks.map(link=>React.createElement(\"a\",{key:link.key,href:link.link,target:\"_blank\",rel:\"noreferrer noopener\",\"aria-label\":`Visit Ably on ${link.key}`,className:\"w-20 h-20 group/social-icon\"},React.createElement(Icon,{name:link.monoIcon,size:\"20px\",additionalCSS:\"text-neutral-1000 dark:text-neutral-300 group-hover/social-icon:hidden\"}),React.createElement(Icon,{name:link.colorIcon,size:\"20px\",additionalCSS:\"hidden group-hover/social-icon:flex\"})))),React.createElement(\"div\",{className:\"flex gap-8 mt-16\"},ablyAwards.map(award=>React.createElement(\"img\",{key:award.desc,src:award.image,alt:award.desc,width:\"57\",height:\"64\"})))),React.createElement(\"div\",{className:\"flex-1 md:flex-[2] flex flex-row flex-wrap gap-x-24 gap-y-48\"},footerLinks.map(({title,links})=>React.createElement(\"div\",{key:title,className:\"flex-1 basis-1/3 md:basis-1\"},React.createElement(\"h3\",{className:\"ui-text-overline2 text-neutral-700 dark:text-neutral-600 mb-16\"},title),React.createElement(\"ul\",{className:\"flex flex-col gap-y-12\"},links.map(({label,link,badge})=>React.createElement(\"li\",{key:label,className:\"flex gap-x-8\"},React.createElement(\"a\",{href:link,className:textColorClassnames,\"aria-label\":`Visit ${label}`},label),badge&&React.createElement(Badge,{size:\"xs\",className:\"ui-text-p4 font-[10px]\"},badge)))))))),React.createElement(\"div\",{className:\"pt-24 border-t border-neutral-300 dark:border-neutral-1000\"},React.createElement(\"div\",{className:\"flex gap-24\"},bottomFooterLinks.map(link=>React.createElement(\"a\",{key:link.label,href:link.link,className:textColorClassnames,\"aria-label\":`Visit ${link.label}`},link.label))))))};export default Footer;\n//# sourceMappingURL=Footer.js.map"],"names":["e","require$$0","h","a","b","k","l","m","n","p","q","d","f","c","g","r","t","u","useSyncExternalStoreShim_production_min","shimModule","noop","UNDEFINED","OBJECT","isUndefined","v","isFunction","mergeObjects","isPromiseLike","x","table","counter","stableHash","arg","type","constructor","isDate","result","index","keys","SWRGlobalState","EMPTY_CACHE","INITIAL_CACHE","STR_UNDEFINED","isWindowDefined","isDocumentDefined","hasRequestAnimationFrame","createCacheHelper","cache","key","state","info","prev","online","isOnline","onWindowEvent","offWindowEvent","isVisible","visibilityState","initFocus","callback","initReconnect","onOnline","onOffline","preset","defaultConfigOptions","IS_REACT_LEGACY","React","IS_SERVER","rAF","useIsomorphicLayoutEffect","useEffect","useLayoutEffect","navigatorConnection","slowConnection","serialize","args","__timestamp","getTimestamp","FOCUS_EVENT","RECONNECT_EVENT","MUTATE_EVENT","ERROR_REVALIDATE_EVENT","events","internalMutate","_key","_data","_opts","options","populateCache","rollbackOnErrorOption","optimisticData","rollbackOnError","error","throwOnError","keyFilter","matchedKeys","it","mutateByKey","_k","get","set","EVENT_REVALIDATORS","MUTATION","FETCH","PRELOAD","startRevalidate","revalidators","data","beforeMutationTs","hasOptimisticData","displayedData","currentData","committedData","err","populateCachedData","revalidateAllKeys","initCache","provider","opts","mutate","unmount","subscriptions","subscribe","subs","setter","value","fn","initProvider","releaseFocus","releaseReconnect","onErrorRetry","_","__","config","revalidate","maxRetryCount","currentRetryCount","timeout","compare","newData","defaultConfig","mergeConfigs","u1","f1","u2","f2","SWRConfigContext","createContext","INFINITE_PREFIX","enableDevtools","use","setupDevTools","normalize","useSWRConfig","useContext","middleware","useSWRNext","key_","fetcher_","req","BUILT_IN_MIDDLEWARE","withArgs","hook","fallbackConfig","_config","next","i","subscribeCallback","callbacks","keyedRevalidators","ReactExports","promise","WITH_DEDUPE","useSWRHandler","fetcher","suspense","fallbackData","revalidateOnMount","revalidateIfStale","refreshInterval","refreshWhenHidden","refreshWhenOffline","keepPreviousData","fnArg","initialMountedRef","useRef","unmountedRef","keyRef","fetcherRef","configRef","getConfig","isActive","getCache","setCache","subscribeCache","getInitialCache","stateDependencies","fallback","isEqual","current","returnedData","getSnapshot","useMemo","shouldStartRequest","getSelectedCache","snapshot","cachedData","initialData","clientSnapshot","serverSnapshot","memorizedSnapshot","newSnapshot","cached","useSyncExternalStore","useCallback","isInitialMount","hasRevalidator","laggyDataRef","shouldDoInitialRevalidation","defaultValidatingState","isValidating","isLoading","revalidateOpts","currentFetcher","startAt","loading","shouldStartNewRequest","callbackSafeguard","finalState","finishRequestAndUpdateState","cleanupState","requestInfo","initialState","mutationInfo","cacheData","currentConfig","shouldRetryOnError","revalidateEvents","boundMutate","softRevalidate","nextFocusRevalidatedAt","unsubEvents","now","timer","interval","execute","useDebugValue","useSWR","StatusUrl","url","res","indicatorClass","indicator","StatusIcon","statusUrl","cn","_a","Status","additionalCSS","showDescription","Icon","Badge","size","color","iconBefore","iconAfter","className","children","disabled","focusable","hoverable","iconSize","ariaLabel","sizeClass","childClass","colorClass","footerLinks","bottomFooterLinks","socialLinks","productNames","products","ProductIcon","name","hoverName","selected","unavailable","innerSize","LABEL_FONT_SIZE_RATIO","DESCRIPTION_FONT_SIZE_RATIO","ProductLabel","label","numericalSize","showLabel","dynamicFontSize","ProductDescription","description","CONTAINER_GAP_RATIO","MeganavProductTile","productLink","animateIcons","icon","hoverIcon","MeganavPanel","displayProductTile","panelLeft","panelLeftClassName","panelRightHeading","panelRightItems","panelRightBottom","product","productsForNav","item","FanEngagementNavImage","CompanyNavImage","BestRequirementsWinter2025","BestSupportWinter2025","HighPerformerWinter2025","UsersMostLikelyToRecommend","panelClassName","panelLeftFeatureClassName","productsMenu","solutionsHighlight","solutionsMenu","companyHighlight","companyMenu","ablyAwards","menuItemLinks","menuItemsForHeader","award","Footer","textColorClassnames","theme","Logo","link","title","links","badge"],"mappings":";;;;;;;;GASa,IAAIA,EAAEC,EAAiB,SAASC,GAAEC,EAAEC,EAAE,CAAC,OAAOD,IAAIC,IAAQD,IAAJ,GAAO,EAAEA,IAAI,EAAEC,IAAID,IAAIA,GAAGC,IAAIA,CAAC,CAAC,IAAIC,GAAe,OAAO,OAAO,IAA3B,WAA8B,OAAO,GAAGH,GAAEI,GAAEN,EAAE,SAASO,GAAEP,EAAE,UAAUQ,GAAER,EAAE,gBAAgBS,GAAET,EAAE,cAAc,SAASU,GAAEP,EAAEC,EAAE,CAAC,IAAIO,EAAEP,EAAC,EAAGQ,EAAEN,GAAE,CAAC,KAAK,CAAC,MAAMK,EAAE,YAAYP,CAAC,CAAC,CAAC,EAAES,EAAED,EAAE,CAAC,EAAE,KAAKE,EAAEF,EAAE,CAAC,EAAE,OAAAJ,GAAE,UAAU,CAACK,EAAE,MAAMF,EAAEE,EAAE,YAAYT,EAAEW,GAAEF,CAAC,GAAGC,EAAE,CAAC,KAAKD,CAAC,CAAC,CAAC,EAAE,CAACV,EAAEQ,EAAEP,CAAC,CAAC,EAAEG,GAAE,UAAU,CAAC,OAAAQ,GAAEF,CAAC,GAAGC,EAAE,CAAC,KAAKD,CAAC,CAAC,EAASV,EAAE,UAAU,CAACY,GAAEF,CAAC,GAAGC,EAAE,CAAC,KAAKD,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,CAACV,CAAC,CAAC,EAAEM,GAAEE,CAAC,EAASA,CAAC,CAClc,SAASI,GAAEZ,EAAE,CAAC,IAAIC,EAAED,EAAE,YAAYA,EAAEA,EAAE,MAAM,GAAG,CAAC,IAAIQ,EAAEP,EAAG,EAAC,MAAM,CAACC,GAAEF,EAAEQ,CAAC,CAAC,MAAS,CAAC,MAAM,EAAE,CAAC,CAAC,SAASK,GAAEb,EAAEC,EAAE,CAAC,OAAOA,EAAC,CAAE,CAAC,IAAIa,GAAgB,OAAO,OAArB,KAA2C,OAAO,OAAO,SAA5B,KAAoD,OAAO,OAAO,SAAS,cAArC,IAAmDD,GAAEN,GAA8BQ,GAAA,qBAAUlB,EAAE,uBAAX,OAAgCA,EAAE,qBAAqBiB,GCPjUE,GAAA,QAAUlB,qBCAnB,MAAMmB,EAAO,IAAI,CAAE,EAKbC,EAA8BD,EAAM,EACpCE,GAAS,OACTC,EAAeC,GAAIA,IAAMH,EACzBI,EAAcD,GAAI,OAAOA,GAAK,WAC9BE,EAAe,CAACvB,EAAGC,KAAK,CACtB,GAAGD,EACH,GAAGC,CACX,GACMuB,GAAiBC,GAAIH,EAAWG,EAAE,IAAI,EAMtCC,GAAQ,IAAI,QAElB,IAAIC,GAAU,EASd,MAAMC,GAAcC,GAAM,CACtB,MAAMC,EAAO,OAAOD,EACdE,EAAcF,GAAOA,EAAI,YACzBG,EAASD,GAAe,KAC9B,IAAIE,EACAC,EACJ,GAAIf,GAAOU,CAAG,IAAMA,GAAO,CAACG,GAAUD,GAAe,OAAQ,CAIzD,GADAE,EAASP,GAAM,IAAIG,CAAG,EAClBI,EAAQ,OAAOA,EAMnB,GAFAA,EAAS,EAAEN,GAAU,IACrBD,GAAM,IAAIG,EAAKI,CAAM,EACjBF,GAAe,MAAO,CAGtB,IADAE,EAAS,IACLC,EAAQ,EAAGA,EAAQL,EAAI,OAAQK,IAC/BD,GAAUL,GAAWC,EAAIK,CAAK,CAAC,EAAI,IAEvCR,GAAM,IAAIG,EAAKI,CAAM,CACjC,CACQ,GAAIF,GAAeZ,GAAQ,CAEvBc,EAAS,IACT,MAAME,EAAOhB,GAAO,KAAKU,CAAG,EAAE,KAAM,EACpC,KAAM,CAACT,EAAYc,EAAQC,EAAK,IAAK,CAAA,GAC5Bf,EAAYS,EAAIK,CAAK,CAAC,IACvBD,GAAUC,EAAQ,IAAMN,GAAWC,EAAIK,CAAK,CAAC,EAAI,KAGzDR,GAAM,IAAIG,EAAKI,CAAM,CACjC,CACA,MACQA,EAASD,EAASH,EAAI,OAAM,EAAKC,GAAQ,SAAWD,EAAI,SAAQ,EAAKC,GAAQ,SAAW,KAAK,UAAUD,CAAG,EAAI,GAAKA,EAEvH,OAAOI,CACX,EAGMG,EAAiB,IAAI,QAErBC,GAAc,CAAE,EAChBC,GAAgB,CAAE,EAClBC,GAAgB,YAEhBC,GAAkB,OAAO,QAAUD,GACnCE,GAAoB,OAAO,UAAYF,GACvCG,GAA2B,IAAIF,IAAmB,OAAO,OAAO,uBAA4BD,GAC5FI,GAAoB,CAACC,EAAOC,IAAM,CACpC,MAAMC,EAAQV,EAAe,IAAIQ,CAAK,EACtC,MAAO,CAEH,IAAI,CAACxB,EAAYyB,CAAG,GAAKD,EAAM,IAAIC,CAAG,GAAKR,GAE1CU,GAAO,CACJ,GAAI,CAAC3B,EAAYyB,CAAG,EAAG,CACnB,MAAMG,EAAOJ,EAAM,IAAIC,CAAG,EAGpBA,KAAOP,KACTA,GAAcO,CAAG,EAAIG,GAEzBF,EAAM,CAAC,EAAED,EAAKtB,EAAayB,EAAMD,CAAI,EAAGC,GAAQX,EAAW,CAC3E,CACS,EAEDS,EAAM,CAAC,EAEP,IACQ,CAAC1B,EAAYyB,CAAG,GAEZA,KAAOP,GAAsBA,GAAcO,CAAG,EAG/C,CAACzB,EAAYyB,CAAG,GAAKD,EAAM,IAAIC,CAAG,GAAKR,EAErD,CACL,EASI,IAAIY,GAAS,GACjB,MAAMC,GAAW,IAAID,GAEf,CAACE,GAAeC,EAAc,EAAIZ,IAAmB,OAAO,iBAAmB,CACjF,OAAO,iBAAiB,KAAK,MAAM,EACnC,OAAO,oBAAoB,KAAK,MAAM,CAC1C,EAAI,CACAvB,EACAA,CACJ,EACMoC,GAAY,IAAI,CAClB,MAAMC,EAAkBb,IAAqB,SAAS,gBACtD,OAAOrB,EAAYkC,CAAe,GAAKA,IAAoB,QAC/D,EACMC,GAAaC,IAEXf,IACA,SAAS,iBAAiB,mBAAoBe,CAAQ,EAE1DL,GAAc,QAASK,CAAQ,EACxB,IAAI,CACHf,IACA,SAAS,oBAAoB,mBAAoBe,CAAQ,EAE7DJ,GAAe,QAASI,CAAQ,CACnC,GAECC,GAAiBD,GAAW,CAE9B,MAAME,EAAW,IAAI,CACjBT,GAAS,GACTO,EAAU,CACb,EAEKG,EAAY,IAAI,CAClBV,GAAS,EACZ,EACD,OAAAE,GAAc,SAAUO,CAAQ,EAChCP,GAAc,UAAWQ,CAAS,EAC3B,IAAI,CACPP,GAAe,SAAUM,CAAQ,EACjCN,GAAe,UAAWO,CAAS,CACtC,CACL,EACMC,GAAS,CACX,SAAAV,GACA,UAAAG,EACJ,EACMQ,GAAuB,CACzB,UAAAN,GACA,cAAAE,EACJ,EAEMK,GAAkB,CAACC,EAAM,MACzBC,GAAY,CAACxB,IAAmB,SAAU,OAE1CyB,GAAOxD,GAAIiC,GAAwB,EAAK,OAAO,sBAAyBjC,CAAC,EAAI,WAAWA,EAAG,CAAC,EAI5FyD,GAA4BF,GAAYG,EAAAA,UAAYC,EAAe,gBAEnEC,GAAsB,OAAO,UAAc,KAAe,UAAU,WAEpEC,GAAiB,CAACN,IAAaK,KAAwB,CACzD,UACA,IACJ,EAAE,SAASA,GAAoB,aAAa,GAAKA,GAAoB,UAE/DE,GAAa1B,GAAM,CACrB,GAAIvB,EAAWuB,CAAG,EACd,GAAI,CACAA,EAAMA,EAAK,CACd,MAAa,CAEVA,EAAM,EAClB,CAII,MAAM2B,EAAO3B,EAEb,OAAAA,EAAM,OAAOA,GAAO,SAAWA,GAAO,MAAM,QAAQA,CAAG,EAAIA,EAAI,OAASA,GAAOjB,GAAWiB,CAAG,EAAI,GAC1F,CACHA,EACA2B,CACH,CACL,EAGA,IAAIC,GAAc,EAClB,MAAMC,GAAe,IAAI,EAAED,GAErBE,GAAc,EACdC,GAAkB,EAClBC,GAAe,EACfC,GAAyB,EAE/B,IAAIC,GAAS,CACX,UAAW,KACX,uBAAwBD,GACxB,YAAaH,GACb,aAAcE,GACd,gBAAiBD,EACnB,EAEA,eAAeI,MAAkBR,EAAM,CACnC,KAAM,CAAC5B,EAAOqC,EAAMC,EAAOC,CAAK,EAAIX,EAG9BY,EAAU7D,EAAa,CACzB,cAAe,GACf,aAAc,EACtB,EAAO,OAAO4D,GAAU,UAAY,CAC5B,WAAYA,CACpB,EAAQA,GAAS,CAAA,CAAE,EACf,IAAIE,EAAgBD,EAAQ,cAC5B,MAAME,EAAwBF,EAAQ,gBACtC,IAAIG,EAAiBH,EAAQ,eAC7B,MAAMI,EAAmBC,GACd,OAAOH,GAA0B,WAAaA,EAAsBG,CAAK,EAAIH,IAA0B,GAE5GI,EAAeN,EAAQ,aAG7B,GAAI9D,EAAW2D,CAAI,EAAG,CAClB,MAAMU,EAAYV,EACZW,EAAc,CAAE,EAChBC,EAAKjD,EAAM,KAAM,EACvB,UAAWC,KAAOgD,EAEd,CAAC,iBAAiB,KAAKhD,CAAG,GAAK8C,EAAU/C,EAAM,IAAIC,CAAG,EAAE,EAAE,GACtD+C,EAAY,KAAK/C,CAAG,EAG5B,OAAO,QAAQ,IAAI+C,EAAY,IAAIE,CAAW,CAAC,CACvD,CACI,OAAOA,EAAYb,CAAI,EACvB,eAAea,EAAYC,EAAI,CAE3B,KAAM,CAAClD,CAAG,EAAI0B,GAAUwB,CAAE,EAC1B,GAAI,CAAClD,EAAK,OACV,KAAM,CAACmD,EAAKC,CAAG,EAAItD,GAAkBC,EAAOC,CAAG,EACzC,CAACqD,GAAoBC,EAAUC,GAAOC,EAAO,EAAIjE,EAAe,IAAIQ,CAAK,EACzE0D,EAAkB,IAAI,CACxB,MAAMC,EAAeL,GAAmBrD,CAAG,EAE3C,OADmBvB,EAAW8D,EAAQ,UAAU,EAAIA,EAAQ,WAAWY,EAAG,EAAG,KAAMD,CAAE,EAAIX,EAAQ,aAAe,MAI5G,OAAOgB,GAAMvD,CAAG,EAChB,OAAOwD,GAAQxD,CAAG,EACd0D,GAAgBA,EAAa,CAAC,GACvBA,EAAa,CAAC,EAAE1B,EAAY,EAAE,KAAK,IAAImB,EAAK,EAAC,IAAI,EAGzDA,EAAK,EAAC,IAChB,EAED,GAAIxB,EAAK,OAAS,EAEd,OAAO8B,EAAiB,EAE5B,IAAIE,EAAOtB,EACPO,EAEJ,MAAMgB,EAAmB/B,GAAc,EACvCyB,EAAStD,CAAG,EAAI,CACZ4D,EACA,CACH,EACD,MAAMC,EAAoB,CAACtF,EAAYmE,CAAc,EAC/CzC,EAAQkD,EAAK,EAIbW,EAAgB7D,EAAM,KACtB8D,EAAc9D,EAAM,GACpB+D,EAAgBzF,EAAYwF,CAAW,EAAID,EAAgBC,EAUjE,GARIF,IACAnB,EAAiBjE,EAAWiE,CAAc,EAAIA,EAAesB,EAAeF,CAAa,EAAIpB,EAE7FU,EAAI,CACA,KAAMV,EACN,GAAIsB,CACpB,CAAa,GAEDvF,EAAWkF,CAAI,EAEf,GAAI,CACAA,EAAOA,EAAKK,CAAa,CAC5B,OAAQC,EAAK,CAEVrB,EAAQqB,CACxB,CAGQ,GAAIN,GAAQhF,GAAcgF,CAAI,EAS1B,GANAA,EAAO,MAAMA,EAAK,MAAOM,GAAM,CAC3BrB,EAAQqB,CACxB,CAAa,EAIGL,IAAqBN,EAAStD,CAAG,EAAE,CAAC,EAAG,CACvC,GAAI4C,EAAO,MAAMA,EACjB,OAAOe,CACV,MAAUf,GAASiB,GAAqBlB,EAAgBC,CAAK,IAG1DJ,EAAgB,GAEhBY,EAAI,CACA,KAAMY,EACN,GAAI3F,CACxB,CAAiB,GAIT,GAAImE,GACI,CAACI,EAED,GAAInE,EAAW+D,CAAa,EAAG,CAC3B,MAAM0B,EAAqB1B,EAAcmB,EAAMK,CAAa,EAC5DZ,EAAI,CACA,KAAMc,EACN,MAAO7F,EACP,GAAIA,CAC5B,CAAqB,CACrB,MAEoB+E,EAAI,CACA,KAAAO,EACA,MAAOtF,EACP,GAAIA,CAC5B,CAAqB,EAeb,GAVAiF,EAAStD,CAAG,EAAE,CAAC,EAAI6B,GAAc,EAEjC,QAAQ,QAAQ4B,GAAiB,EAAE,KAAK,IAAI,CAGxCL,EAAI,CACA,GAAI/E,CACpB,CAAa,CACb,CAAS,EAEGuE,EAAO,CACP,GAAIC,EAAc,MAAMD,EACxB,MACZ,CACQ,OAAOe,CACf,CACA,CAEA,MAAMQ,GAAoB,CAACT,EAAczE,IAAO,CAC5C,UAAUe,KAAO0D,EACTA,EAAa1D,CAAG,EAAE,CAAC,GAAG0D,EAAa1D,CAAG,EAAE,CAAC,EAAEf,CAAI,CAE3D,EACMmF,GAAY,CAACC,EAAU9B,IAAU,CAMnC,GAAI,CAAChD,EAAe,IAAI8E,CAAQ,EAAG,CAC/B,MAAMC,EAAO5F,EAAasC,GAAsBuB,CAAO,EAGjDc,EAAqB,CAAE,EACvBkB,EAASpC,GAAe,KAAK9D,EAAWgG,CAAQ,EACtD,IAAIG,EAAUpG,EACd,MAAMqG,EAAgB,CAAE,EAClBC,EAAY,CAAC1E,EAAKW,IAAW,CAC/B,MAAMgE,EAAOF,EAAczE,CAAG,GAAK,CAAE,EACrC,OAAAyE,EAAczE,CAAG,EAAI2E,EACrBA,EAAK,KAAKhE,CAAQ,EACX,IAAIgE,EAAK,OAAOA,EAAK,QAAQhE,CAAQ,EAAG,CAAC,CACnD,EACKiE,EAAS,CAAC5E,EAAK6E,EAAO1E,IAAO,CAC/BkE,EAAS,IAAIrE,EAAK6E,CAAK,EACvB,MAAMF,EAAOF,EAAczE,CAAG,EAC9B,GAAI2E,EACA,UAAWG,KAAMH,EACbG,EAAGD,EAAO1E,CAAI,CAGzB,EACK4E,EAAe,IAAI,CACrB,GAAI,CAACxF,EAAe,IAAI8E,CAAQ,IAE5B9E,EAAe,IAAI8E,EAAU,CACzBhB,EACA,CAAE,EACF,CAAE,EACF,CAAE,EACFkB,EACAK,EACAF,CACpB,CAAiB,EACG,CAACvD,IAAW,CAOZ,MAAM6D,EAAeV,EAAK,UAAU,WAAW,KAAKjG,EAAW8F,GAAkB,KAAK9F,EAAWgF,EAAoBvB,EAAW,CAAC,CAAC,EAC5HmD,EAAmBX,EAAK,cAAc,WAAW,KAAKjG,EAAW8F,GAAkB,KAAK9F,EAAWgF,EAAoBtB,EAAe,CAAC,CAAC,EAC9IyC,EAAU,IAAI,CACVQ,GAAgBA,EAAc,EAC9BC,GAAoBA,EAAkB,EAItC1F,EAAe,OAAO8E,CAAQ,CACjC,CACrB,CAES,EACD,OAAAU,EAAc,EAMP,CACHV,EACAE,EACAQ,EACAP,CACH,CACT,CACI,MAAO,CACHH,EACA9E,EAAe,IAAI8E,CAAQ,EAAE,CAAC,CACjC,CACL,EAGMa,GAAe,CAACC,EAAGC,EAAIC,EAAQC,EAAYhB,IAAO,CACpD,MAAMiB,EAAgBF,EAAO,gBACvBG,EAAoBlB,EAAK,WAEzBmB,EAAU,CAAC,GAAG,KAAK,OAAM,EAAK,KAAQ,IAAMD,EAAoB,EAAIA,EAAoB,KAAOH,EAAO,mBACxG,CAAC9G,EAAYgH,CAAa,GAAKC,EAAoBD,GAGvD,WAAWD,EAAYG,EAASnB,CAAI,CACxC,EACMoB,GAAU,CAAC3B,EAAa4B,IAAU5G,GAAWgF,CAAW,GAAKhF,GAAW4G,CAAO,EAE/E,CAAC5F,GAAOwE,EAAM,EAAIH,GAAU,IAAI,GAAK,EAErCwB,GAAgBlH,EAAa,CAE/B,cAAeN,EACf,UAAWA,EACX,QAASA,EACT,aAAA8G,GACA,YAAa9G,EAEb,kBAAmB,GACnB,sBAAuB,GACvB,kBAAmB,GACnB,mBAAoB,GAEpB,mBAAoBqD,GAAiB,IAAQ,IAC7C,sBAAuB,EAAI,IAC3B,iBAAkB,EAAI,IACtB,eAAgBA,GAAiB,IAAO,IAExC,QAAAiE,GACA,SAAU,IAAI,GACd,MAAA3F,GACA,OAAAwE,GACA,SAAU,CAAA,CACd,EACAxD,EAAM,EAEA8E,GAAe,CAAC1I,EAAGC,IAAI,CAEzB,MAAMoB,EAAIE,EAAavB,EAAGC,CAAC,EAE3B,GAAIA,EAAG,CACH,KAAM,CAAE,IAAK0I,EAAI,SAAUC,CAAI,EAAG5I,EAC5B,CAAE,IAAK6I,EAAI,SAAUC,CAAI,EAAG7I,EAC9B0I,GAAME,IACNxH,EAAE,IAAMsH,EAAG,OAAOE,CAAE,GAEpBD,GAAME,IACNzH,EAAE,SAAWE,EAAaqH,EAAIE,CAAE,EAE5C,CACI,OAAOzH,CACX,EAEM0H,GAAmBC,EAAa,cAAC,EAAE,EAyCnCC,GAAkB,QAGlBC,GAAiB1G,IAAmB,OAAO,qBAC3C2G,GAAMD,GAAiB,OAAO,qBAAuB,CAAE,EACvDE,GAAgB,IAAI,CAClBF,KAEA,OAAO,uBAAyBnF,EAExC,EAEMsF,GAAa7E,GACRlD,EAAWkD,EAAK,CAAC,CAAC,EAAI,CACzBA,EAAK,CAAC,EACNA,EAAK,CAAC,EACNA,EAAK,CAAC,GAAK,CAAA,CACnB,EAAQ,CACAA,EAAK,CAAC,EACN,MACCA,EAAK,CAAC,IAAM,KAAOA,EAAK,CAAC,EAAIA,EAAK,CAAC,IAAM,CAAA,CAC7C,EAGC8E,GAAe,IACV/H,EAAakH,GAAec,EAAU,WAACR,EAAgB,CAAC,EAY7DS,GAAcC,GAAa,CAACC,EAAMC,EAAUzB,IAenCuB,EAAWC,EAbFC,IAAa,IAAInF,IAAO,CACpC,KAAM,CAAC3B,CAAG,EAAI0B,GAAUmF,CAAI,EACtB,CAAO,CAAA,CAAA,CAAArD,CAAO,EAAIjE,EAAe,IAAIQ,EAAK,EAChD,GAAIC,EAAI,WAAWoG,EAAe,EAG9B,OAAOU,EAAS,GAAGnF,CAAI,EAE3B,MAAMoF,EAAMvD,EAAQxD,CAAG,EACvB,OAAIzB,EAAYwI,CAAG,EAAUD,EAAS,GAAGnF,CAAI,GAC7C,OAAO6B,EAAQxD,CAAG,EACX+G,EACnB,GACyC1B,CAAM,EAGzC2B,GAAsBV,GAAI,OAAOK,EAAU,EAI3CM,GAAYC,GACP,YAAuBvF,EAAM,CAEhC,MAAMwF,EAAiBV,GAAc,EAE/B,CAACzG,EAAK8E,EAAIsC,CAAO,EAAIZ,GAAU7E,CAAI,EAEnC0D,EAASQ,GAAasB,EAAgBC,CAAO,EAEnD,IAAIC,EAAOH,EACX,KAAM,CAAE,IAAAZ,CAAG,EAAKjB,EACVsB,GAAcL,GAAO,CAAA,GAAI,OAAOU,EAAmB,EACzD,QAAQM,EAAIX,EAAW,OAAQW,KAC3BD,EAAOV,EAAWW,CAAC,EAAED,CAAI,EAE7B,OAAOA,EAAKrH,EAAK8E,GAAMO,EAAO,SAAW,KAAMA,CAAM,CACxD,EAKCkC,GAAoB,CAACvH,EAAKwH,EAAW7G,IAAW,CAClD,MAAM8G,EAAoBD,EAAUxH,CAAG,IAAMwH,EAAUxH,CAAG,EAAI,IAC9D,OAAAyH,EAAkB,KAAK9G,CAAQ,EACxB,IAAI,CACP,MAAMtB,EAAQoI,EAAkB,QAAQ9G,CAAQ,EAC5CtB,GAAS,IAEToI,EAAkBpI,CAAK,EAAIoI,EAAkBA,EAAkB,OAAS,CAAC,EACzEA,EAAkB,IAAK,EAE9B,CACL,EAcAlB,GAAe,ECvpBf,MAAMD,GAAMoB,EAAa,MAASC,GAAU,CACxC,GAAIA,EAAQ,SAAW,UACnB,MAAMA,EACH,GAAIA,EAAQ,SAAW,YAC1B,OAAOA,EAAQ,MACZ,MAAIA,EAAQ,SAAW,WACpBA,EAAQ,QAEdA,EAAQ,OAAS,UACjBA,EAAQ,KAAMnJ,GAAI,CACdmJ,EAAQ,OAAS,YACjBA,EAAQ,MAAQnJ,CACnB,EAAGxB,GAAI,CACJ2K,EAAQ,OAAS,WACjBA,EAAQ,OAAS3K,CAC7B,CAAS,EACK2K,EAEd,GACMC,GAAc,CAChB,OAAQ,EACZ,EACMC,GAAgB,CAACzF,EAAM0F,EAASzC,IAAS,CAC3C,KAAM,CAAE,MAAAtF,EAAO,QAAA2F,EAAS,SAAAqC,EAAU,aAAAC,EAAc,kBAAAC,EAAmB,kBAAAC,EAAmB,gBAAAC,EAAiB,kBAAAC,EAAmB,mBAAAC,EAAoB,iBAAAC,CAAkB,EAAGjD,EAC7J,CAAChC,EAAoBC,EAAUC,EAAOC,EAAO,EAAIjE,EAAe,IAAIQ,CAAK,EAKzE,CAACC,EAAKuI,EAAK,EAAI7G,GAAUU,CAAI,EAE7BoG,GAAoBC,EAAM,OAAC,EAAK,EAGhCC,EAAeD,EAAM,OAAC,EAAK,EAE3BE,EAASF,EAAM,OAACzI,CAAG,EACnB4I,EAAaH,EAAM,OAACX,CAAO,EAC3Be,EAAYJ,EAAM,OAACpD,CAAM,EACzByD,EAAY,IAAID,EAAU,QAC1BE,EAAW,IAAID,EAAW,EAAC,UAAS,GAAMA,EAAW,EAAC,SAAU,EAChE,CAACE,EAAUC,EAAUC,EAAgBC,CAAe,EAAIrJ,GAAkBC,EAAOC,CAAG,EACpFoJ,EAAoBX,EAAAA,OAAO,CAAE,CAAA,EAAE,QAC/BY,GAAW9K,EAAYyJ,CAAY,EAAI3C,EAAO,SAASrF,CAAG,EAAIgI,EAC9DsB,GAAU,CAACnJ,EAAMoJ,IAAU,CAC7B,UAAUpE,KAAKiE,EAAkB,CAC7B,MAAMpL,EAAImH,EACV,GAAInH,IAAM,QACN,GAAI,CAAC0H,EAAQvF,EAAKnC,CAAC,EAAGuL,EAAQvL,CAAC,CAAC,IACxB,CAACO,EAAY4B,EAAKnC,CAAC,CAAC,GAGpB,CAAC0H,EAAQ8D,GAAcD,EAAQvL,CAAC,CAAC,GACjC,MAAO,WAIXuL,EAAQvL,CAAC,IAAMmC,EAAKnC,CAAC,EACrB,MAAO,EAG3B,CACQ,MAAO,EACV,EACKyL,GAAcC,EAAAA,QAAQ,IAAI,CAC5B,MAAMC,EACE,CAAC3J,GACD,CAAC8H,EAAgB,GAEhBvJ,EAAY0J,CAAiB,EAE9Ba,EAAW,EAAC,SAAU,GACtBf,EAAiB,GAChBxJ,EAAY2J,CAAiB,EAC3B,GADqCA,EAJAD,EAQ1C2B,EAAoB3J,GAAQ,CAE9B,MAAM4J,EAAWnL,EAAauB,CAAK,EAEnC,OADA,OAAO4J,EAAS,GACXF,EAGE,CACH,aAAc,GACd,UAAW,GACX,GAAGE,CACN,EANUA,CAOd,EACKC,EAAad,EAAU,EACvBe,EAAcZ,EAAiB,EAC/Ba,EAAiBJ,EAAiBE,CAAU,EAC5CG,EAAiBH,IAAeC,EAAcC,EAAiBJ,EAAiBG,CAAW,EAIjG,IAAIG,EAAoBF,EACxB,MAAO,CACH,IAAI,CACA,MAAMG,EAAcP,EAAiBZ,GAAU,EAE/C,OADsBM,GAAQa,EAAaD,CAAiB,GAYxDA,EAAkB,KAAOC,EAAY,KACrCD,EAAkB,UAAYC,EAAY,UAC1CD,EAAkB,aAAeC,EAAY,aAC7CD,EAAkB,MAAQC,EAAY,MAC/BD,IAEPA,EAAoBC,EACbA,EAEd,EACD,IAAIF,CACP,CAET,EAAO,CACClK,EACAC,CACR,CAAK,EAEKoK,EAASC,wBAAqBC,EAAAA,YAAa3J,GAAWuI,EAAelJ,EAAK,CAACuJ,EAASpJ,IAAO,CACpFmJ,GAAQnJ,EAAMoJ,CAAO,GAAG5I,EAAU,CACnD,CAAS,EACL,CACIZ,EACAC,CACH,CAAA,EAAGyJ,GAAY,CAAC,EAAGA,GAAY,CAAC,CAAC,EAC5Bc,GAAiB,CAAC/B,GAAkB,QACpCgC,GAAiBnH,EAAmBrD,CAAG,GAAKqD,EAAmBrD,CAAG,EAAE,OAAS,EAC7E8J,EAAaM,EAAO,KACpBzG,EAAOpF,EAAYuL,CAAU,EAAIT,GAAWS,EAC5ClH,GAAQwH,EAAO,MAEfK,GAAehC,EAAM,OAAC9E,CAAI,EAC1B6F,GAAelB,EAAmB/J,EAAYuL,CAAU,EAAIW,GAAa,QAAUX,EAAanG,EAIhG+G,GAEEF,IAAkB,CAACjM,EAAYqE,EAAK,EAAU,GAE9C2H,IAAkB,CAAChM,EAAY0J,CAAiB,EAAUA,EAE1Da,EAAW,EAAC,SAAU,EAAS,GAI/Bf,EAAiBxJ,EAAYoF,CAAI,EAAI,GAAQuE,EAG1C3J,EAAYoF,CAAI,GAAKuE,EAI1ByC,GAAyB,CAAC,EAAE3K,GAAO8H,GAAWyC,IAAkBG,IAChEE,GAAerM,EAAY6L,EAAO,YAAY,EAAIO,GAAyBP,EAAO,aAClFS,GAAYtM,EAAY6L,EAAO,SAAS,EAAIO,GAAyBP,EAAO,UAG5E9E,GAAagF,cAAY,MAAOQ,GAAiB,CACnD,MAAMC,EAAiBnC,EAAW,QAClC,GAAI,CAAC5I,GAAO,CAAC+K,GAAkBrC,EAAa,SAAWI,EAAS,EAAG,WAC/D,MAAO,GAEX,IAAInD,EACAqF,EACAC,EAAU,GACd,MAAM3G,EAAOwG,GAAkB,CAAE,EAG3BI,EAAwB,CAAC3H,EAAMvD,CAAG,GAAK,CAACsE,EAAK,OAW5C6G,EAAoB,IACnBlK,GACO,CAACyH,EAAa,SAAW1I,IAAQ2I,EAAO,SAAWH,GAAkB,QAEzExI,IAAQ2I,EAAO,QAGpByC,EAAa,CACf,aAAc,GACd,UAAW,EACd,EACKC,GAA8B,IAAI,CACpCpC,EAASmC,CAAU,CACtB,EACKE,GAAe,IAAI,CAErB,MAAMC,EAAchI,EAAMvD,CAAG,EACzBuL,GAAeA,EAAY,CAAC,IAAMP,GAClC,OAAOzH,EAAMvD,CAAG,CAEvB,EAEKwL,GAAe,CACjB,aAAc,EACjB,EAGGjN,EAAYyK,IAAW,IAAI,IAC3BwC,GAAa,UAAY,IAE7B,GAAI,CAgCA,GA/BIN,IACAjC,EAASuC,EAAY,EAGjBnG,EAAO,gBAAkB9G,EAAYyK,EAAU,EAAC,IAAI,GACpD,WAAW,IAAI,CACPiC,GAAWE,KACXrC,IAAY,cAAc9I,EAAKqF,CAAM,CAEjE,EAAuBA,EAAO,cAAc,EAI5B9B,EAAMvD,CAAG,EAAI,CACT+K,EAAexC,EAAK,EACpB1G,GAAY,CACf,GAEL,CAAC8D,EAASqF,CAAO,EAAIzH,EAAMvD,CAAG,EAC9B2F,EAAU,MAAMA,EACZuF,GAGA,WAAWI,GAAcjG,EAAO,gBAAgB,EAQhD,CAAC9B,EAAMvD,CAAG,GAAKuD,EAAMvD,CAAG,EAAE,CAAC,IAAMgL,EACjC,OAAIE,GACIC,EAAiB,GACjBrC,EAAW,EAAC,YAAY9I,CAAG,EAG5B,GAGXoL,EAAW,MAAQ/M,EAanB,MAAMoN,EAAenI,EAAStD,CAAG,EACjC,GAAI,CAACzB,EAAYkN,CAAY,IAC5BT,GAAWS,EAAa,CAAC,GAC1BT,GAAWS,EAAa,CAAC,GACzBA,EAAa,CAAC,IAAM,GAChB,OAAAJ,GAA6B,EACzBH,GACIC,EAAiB,GACjBrC,EAAW,EAAC,YAAY9I,CAAG,EAG5B,GAIX,MAAM0L,EAAY1C,EAAQ,EAAG,KAG7BoC,EAAW,KAAO1F,EAAQgG,EAAW/F,CAAO,EAAI+F,EAAY/F,EAExDuF,GACIC,EAAiB,GACjBrC,EAAW,EAAC,UAAUnD,EAAS3F,EAAKqF,CAAM,CAGrD,OAAQpB,EAAK,CACVqH,GAAc,EACd,MAAMK,EAAgB7C,EAAW,EAC3B,CAAE,mBAAA8C,EAAkB,EAAKD,EAE1BA,EAAc,aAEfP,EAAW,MAAQnH,EAGfiH,GAAyBC,MACzBQ,EAAc,QAAQ1H,EAAKjE,EAAK2L,CAAa,GACzCC,KAAuB,IAAQnN,EAAWmN,EAAkB,GAAKA,GAAmB3H,CAAG,KACnF,CAAC6E,EAAS,EAAG,mBAAqB,CAACA,IAAY,uBAAyBC,MAIxE4C,EAAc,aAAa1H,EAAKjE,EAAK2L,EAAgBrJ,IAAQ,CACzD,MAAMoB,GAAeL,EAAmBrD,CAAG,EACvC0D,IAAgBA,GAAa,CAAC,GAC9BA,GAAa,CAAC,EAAEmI,GAAiB,uBAAwBvJ,EAAK,CAElG,EAA+B,CACC,YAAagC,EAAK,YAAc,GAAK,EACrC,OAAQ,EACxC,CAA6B,GAK7B,CAEQ,OAAA2G,EAAU,GAEVI,GAA6B,EACtB,EACV,EAWD,CACIrL,EACAD,CACR,CAAK,EAGK+L,GAAcxB,EAAW,YAC/B,IAAI3I,IACOQ,GAAepC,EAAO4I,EAAO,QAAS,GAAGhH,CAAI,EAExD,EAAE,EA2GF,GAzGAN,GAA0B,IAAI,CAC1BuH,EAAW,QAAUd,EACrBe,EAAU,QAAUxD,EAGf9G,EAAYuL,CAAU,IACvBW,GAAa,QAAUX,EAEnC,CAAK,EAEDzI,GAA0B,IAAI,CAC1B,GAAI,CAACrB,EAAK,OACV,MAAM+L,EAAiBzG,GAAW,KAAKjH,EAAWuJ,EAAW,EAG7D,IAAIoE,EAAyB,EAmB7B,MAAMC,EAAc1E,GAAkBvH,EAAKqD,EAlBtB,CAACpE,EAAMqF,EAAO,CAAA,IAAK,CACpC,GAAIrF,GAAQ4M,GAAiB,YAAa,CACtC,MAAMK,EAAM,KAAK,IAAK,EAClBpD,EAAW,EAAC,mBAAqBoD,EAAMF,GAA0BjD,EAAQ,IACzEiD,EAAyBE,EAAMpD,EAAS,EAAG,sBAC3CiD,EAAgB,EAEpC,SAAuB9M,GAAQ4M,GAAiB,gBAC5B/C,EAAW,EAAC,uBAAyBC,KACrCgD,EAAgB,MAEjB,IAAI9M,GAAQ4M,GAAiB,aAChC,OAAOvG,GAAY,EAChB,GAAIrG,GAAQ4M,GAAiB,uBAChC,OAAOvG,GAAWhB,CAAI,EAG7B,CAC0E,EAE3E,OAAAoE,EAAa,QAAU,GACvBC,EAAO,QAAU3I,EACjBwI,GAAkB,QAAU,GAE5BS,EAAS,CACL,GAAIV,EAChB,CAAS,EAEGmC,KACInM,EAAYoF,CAAI,GAAKxC,GAErB4K,EAAgB,EAIhB3K,GAAI2K,CAAc,GAGnB,IAAI,CAEPrD,EAAa,QAAU,GACvBuD,EAAa,CAChB,CACT,EAAO,CACCjM,CACR,CAAK,EAEDqB,GAA0B,IAAI,CAC1B,IAAI8K,EACJ,SAAS9E,GAAO,CAGZ,MAAM+E,EAAW3N,EAAW0J,CAAe,EAAIA,EAAgBa,EAAU,EAAC,IAAI,EAAIb,EAI9EiE,GAAYD,IAAU,KACtBA,EAAQ,WAAWE,EAASD,CAAQ,EAEpD,CACQ,SAASC,GAAU,CAGX,CAACrD,EAAU,EAAC,QAAUZ,GAAqBU,EAAW,EAAC,UAAW,KAAMT,GAAsBS,IAAY,SAAU,GACpHxD,GAAWsC,EAAW,EAAE,KAAKP,CAAI,EAGjCA,EAAM,CAEtB,CACQ,OAAAA,EAAM,EACC,IAAI,CACH8E,IACA,aAAaA,CAAK,EAClBA,EAAQ,GAEf,CACT,EAAO,CACChE,EACAC,EACAC,EACArI,CACR,CAAK,EAEDsM,EAAAA,cAAc9C,EAAY,EAKtBzB,GAAYxJ,EAAYoF,CAAI,GAAK3D,EAAK,CAItC,GAAI,CAACiB,IAAmBE,GACpB,MAAM,IAAI,MAAM,uDAAuD,EAG3EyH,EAAW,QAAUd,EACrBe,EAAU,QAAUxD,EACpBqD,EAAa,QAAU,GACvB,MAAM3B,EAAMvD,GAAQxD,CAAG,EACvB,GAAI,CAACzB,EAAYwI,CAAG,EAAG,CACnB,MAAMY,EAAUmE,GAAY/E,CAAG,EAC/BT,GAAIqB,CAAO,CACvB,CACQ,GAAIpJ,EAAYqE,EAAK,EAAG,CACpB,MAAM+E,EAAUrC,GAAWsC,EAAW,EACjCrJ,EAAYiL,EAAY,IACzB7B,EAAQ,OAAS,YACjBA,EAAQ,MAAQ,IAEpBrB,GAAIqB,CAAO,CACvB,KACY,OAAM/E,EAElB,CACI,MAAO,CACH,OAAQkJ,GACR,IAAI,MAAQ,CACR,OAAA1C,EAAkB,KAAO,GAClBI,EACV,EACD,IAAI,OAAS,CACT,OAAAJ,EAAkB,MAAQ,GACnBxG,EACV,EACD,IAAI,cAAgB,CAChB,OAAAwG,EAAkB,aAAe,GAC1BwB,EACV,EACD,IAAI,WAAa,CACb,OAAAxB,EAAkB,UAAY,GACvByB,EACnB,CACK,CACL,EAkBU0B,GAAStF,GAASY,EAAa,EC3hB8J2E,GAAU,wDAA8D1E,GAAQ2E,GAAK,MAAMA,CAAG,EAAE,KAAKC,GAAKA,EAAI,KAAM,CAAA,EAAQC,GAAeC,GAAW,CAAC,OAAOA,EAAS,CAAE,IAAI,OAAO,IAAI,cAAc,MAAM,uBAAuB,IAAI,QAAQ,MAAM,gBAAgB,IAAI,QAAQ,MAAM,gBAAgB,IAAI,WAAW,MAAM,mBAAmB,QAAQ,MAAM,gBAAgB,CAAC,EAAeC,GAAW,CAAC,CAAC,UAAAC,EAAU,gBAAA3E,EAAgB,IAAI,EAAE,IAAI,OAAC,KAAK,CAAC,KAAAxE,EAAK,MAAAf,EAAM,UAAAiI,CAAS,EAAE0B,GAAOO,EAAUhF,GAAQ,CAAC,gBAAAK,CAAe,CAAC,EAAE,OAAOjH,EAAM,cAAc,OAAO,CAAC,UAAU6L,EAAG,6CAA6CJ,IAAeK,EAAArJ,GAAA,YAAAA,EAAM,SAAN,YAAAqJ,EAAc,SAAS,EAAE,CAAC,gBAAgBnC,GAAWjI,CAAK,CAAC,CAAC,CAAC,CAAC,EAAQqK,GAAO,CAAC,CAAC,UAAAH,EAAUN,GAAU,cAAAU,EAAc,gBAAA/E,EAAgB,IAAI,GAAG,gBAAAgF,EAAgB,EAAK,IAAI,OAAC,KAAK,CAAC,KAAAxJ,CAAI,EAAE4I,GAAOO,EAAUhF,GAAQ,CAAC,gBAAAK,CAAe,CAAC,EAAE,OAAOjH,EAAM,cAAc,IAAI,CAAC,KAAK,0BAA0B,UAAU6L,EAAG,8CAA8CG,CAAa,EAAE,OAAO,SAAS,IAAI,YAAY,EAAEhM,EAAM,cAAc2L,GAAW,CAAC,UAAUC,EAAU,gBAAgB3E,GAAiB,IAAI,EAAE,CAAC,EAAEgF,KAAiBH,EAAArJ,GAAA,YAAAA,EAAM,SAAN,YAAAqJ,EAAc,cAAa9L,EAAM,cAAc,MAAM,CAAC,UAAU,6KAA6K,EAAEA,EAAM,cAAc,OAAO,KAAKyC,EAAK,OAAO,YAAY,OAAO,CAAC,EAAE,YAAa,EAACA,EAAK,OAAO,YAAY,MAAM,CAAC,EAAE,aAAa,EAAEzC,EAAM,cAAckM,EAAK,CAAC,KAAK,6CAA6C,KAAK,MAAM,CAAC,CAAC,CAAC,CAAC,ECA5oDC,GAAM,CAAC,CAAC,KAAAC,EAAK,KAAK,MAAAC,EAAM,UAAU,WAAAC,EAAW,UAAAC,EAAU,UAAAC,EAAU,SAAAC,EAAS,SAAAC,EAAS,GAAM,UAAAC,EAAU,GAAM,UAAAC,EAAU,GAAM,SAAAC,EAAS,OAAO,UAAAC,CAAS,IAAI,CAAC,MAAMC,EAAUvE,UAAQ,IAAI,CAAC,OAAO4D,EAAM,CAAA,IAAI,KAAK,MAAM,sCAAsC,IAAI,KAAK,MAAM,sCAAsC,IAAI,KAAK,MAAM,4CAA4C,IAAI,KAAK,MAAM,2CAA2C,CAAC,EAAE,CAACA,CAAI,CAAC,EAAQY,EAAWxE,EAAAA,QAAQ,IAAI,CAAC,OAAO4D,EAAM,CAAA,IAAI,KAAK,IAAI,KAAK,MAAM,iBAAiB,IAAI,KAAK,IAAI,KAAK,MAAM,gBAAgB,CAAC,EAAE,CAACA,CAAI,CAAC,EAAQa,EAAWzE,EAAO,QAAC,IAAI,CAAC,OAAO6D,EAAK,CAAE,IAAI,UAAU,MAAM,yCAAyC,IAAI,SAAS,MAAM,kBAAkB,IAAI,SAAS,MAAM,kBAAkB,IAAI,SAAS,MAAM,kBAAkB,IAAI,QAAQ,MAAM,iBAAiB,IAAI,OAAO,MAAM,gBAAgB,IAAI,OAAO,MAAM,gBAAgB,IAAI,MAAM,MAAM,iBAAiB,CAAC,EAAE,CAACA,CAAK,CAAC,EAAE,OAAOrM,EAAM,cAAc,MAAM,CAAC,UAAU6L,EAAG,wIAAwIkB,EAAUE,EAAW,CAAC,aAAaN,CAAS,EAAE,CAAC,oGAAoGC,CAAS,EAAE,CAAC,2FAA2FF,CAAQ,EAAEF,CAAS,EAAE,SAASG,EAAU,EAAE,OAAU,aAAaA,GAAWC,EAAUE,EAAU,MAAS,EAAER,EAAWtM,EAAM,cAAckM,EAAK,CAAC,KAAKI,EAAW,KAAKO,EAAS,MAAMI,CAAU,CAAC,EAAE,KAAKjN,EAAM,cAAc,OAAO,CAAC,UAAU6L,EAAG,wCAAwCmB,CAAU,CAAC,EAAEP,CAAQ,EAAEF,EAAUvM,EAAM,cAAckM,EAAK,CAAC,KAAKK,EAAU,KAAKM,EAAS,MAAMI,CAAU,CAAC,EAAE,IAAI,CAAC,ECAnyDC,GAAY,CAAC,CAAC,MAAM,WAAW,MAAM,CAAC,CAAC,MAAM,eAAe,KAAK,SAAS,EAAE,CAAC,MAAM,gBAAgB,KAAK,WAAW,EAAE,CAAC,MAAM,YAAY,KAAK,OAAO,EAAE,CAAC,MAAM,cAAc,KAAK,SAAS,EAAE,CAAC,MAAM,sBAAsB,KAAK,2BAA2B,EAAE,CAAC,MAAM,mBAAmB,KAAK,UAAU,CAAC,CAAC,EAAE,CAAC,MAAM,WAAW,MAAM,CAAC,CAAC,MAAM,iBAAiB,KAAK,gCAAgC,EAAE,CAAC,MAAM,eAAe,KAAK,eAAe,EAAE,CAAC,MAAM,OAAO,KAAK,YAAY,EAAE,CAAC,MAAM,YAAY,KAAK,6BAA6B,EAAE,CAAC,MAAM,wBAAwB,KAAK,0BAA0B,CAAC,CAAC,EAAE,CAAC,MAAM,cAAc,MAAM,CAAC,CAAC,MAAM,gBAAgB,KAAK,OAAO,EAAE,CAAC,MAAM,WAAW,KAAK,WAAW,EAAE,CAAC,MAAM,UAAU,KAAK,UAAU,EAAE,CAAC,MAAM,eAAe,KAAK,SAAS,EAAE,CAAC,MAAM,UAAU,KAAK,UAAU,CAAC,CAAC,EAAE,CAAC,MAAM,UAAU,MAAM,CAAC,CAAC,MAAM,aAAa,KAAK,QAAQ,EAAE,CAAC,MAAM,OAAO,KAAK,OAAO,EAAE,CAAC,MAAM,UAAU,KAAK,WAAW,MAAM,cAAc,EAAE,CAAC,MAAM,aAAa,KAAK,UAAU,CAAC,CAAC,CAAC,EAAeC,GAAkB,CAAC,CAAC,MAAM,kBAAkB,KAAK,kBAAkB,EAAE,CAAC,MAAM,UAAU,KAAK,UAAU,EAAE,CAAC,MAAM,SAAS,KAAK,SAAS,EAAE,CAAC,MAAM,UAAU,KAAK,UAAU,CAAC,EAAeC,GAAY,CAAC,CAAC,IAAI,IAAI,UAAU,gBAAgB,SAAS,qBAAqB,KAAK,4BAA4B,EAAE,CAAC,IAAI,WAAW,UAAU,uBAAuB,SAAS,4BAA4B,KAAK,gDAAgD,EAAE,CAAC,IAAI,SAAS,UAAU,qBAAqB,SAAS,0BAA0B,KAAK,0BAA0B,EAAE,CAAC,IAAI,UAAU,UAAU,sBAAsB,SAAS,2BAA2B,KAAK,+BAA+B,EAAE,CAAC,IAAI,UAAU,UAAU,sBAAsB,SAAS,2BAA2B,KAAK,wCAAwC,CAAC,ECAzvDC,GAAa,CAAC,SAAS,OAAO,SAAS,WAAW,gBAAgB,aAAa,EAAeC,EAAS,CAAC,OAAO,CAAC,MAAM,UAAU,YAAY,kDAAkD,KAAK,2BAA2B,UAAU,sBAAsB,KAAK,yBAAyB,EAAE,KAAK,CAAC,MAAM,OAAO,YAAY,oDAAoD,KAAK,yBAAyB,UAAU,oBAAoB,KAAK,qBAAqB,EAAE,OAAO,CAAC,MAAM,SAAS,YAAY,2DAA2D,KAAK,2BAA2B,UAAU,sBAAsB,KAAK,uBAAuB,EAAE,SAAS,CAAC,MAAM,WAAW,YAAY,8CAA8C,KAAK,6BAA6B,UAAU,wBAAwB,KAAK,yBAAyB,EAAE,cAAc,CAAC,MAAM,iBAAiB,YAAY,sDAAsD,KAAK,mCAAmC,UAAU,8BAA8B,KAAK,+BAA+B,EAAE,YAAY,CAAC,MAAM,cAAc,YAAY,iDAAiD,KAAK,gCAAgC,UAAU,2BAA2B,KAAK,gCAAgC,YAAY,EAAI,CAAC,ECAlrCC,GAAY,CAAC,CAAC,KAAAC,EAAK,UAAAC,EAAU,SAAAC,EAAS,KAAAtB,EAAK,YAAAuB,CAAW,IAAI,CAAC,GAAG,CAACH,EAAM,OAAO,KAAK,MAAMI,EAAUxB,EAAK,EAAQS,EAAST,EAAK,EAAE,EAAE,OAAOpM,EAAM,cAAc,OAAO,CAAC,UAAU6L,EAAG,6BAA6B,CAAC,8EAA8E6B,EAAS,8EAA8E,CAACA,CAAQ,CAAC,EAAE,MAAM,CAAC,MAAMtB,EAAK,OAAOA,EAAK,aAAaA,EAAK,CAAC,CAAC,EAAEpM,EAAM,cAAc,OAAO,CAAC,UAAU6L,EAAG,mCAAmC,CAAC,sCAAsC6B,EAAS,sCAAsC,CAACA,EAAS,wFAAwFA,IAAW,IAAO,CAACC,CAAW,CAAC,EAAE,MAAM,CAAC,OAAOC,EAAU,aAAaxB,EAAK,CAAC,CAAC,EAAEqB,EAAUzN,EAAM,cAAckM,EAAK,CAAC,KAAKuB,EAAU,KAAK,GAAGZ,CAAQ,KAAK,cAAchB,EAAG,CAAC,uCAAuC,CAAC6B,EAAS,KAAKA,CAAQ,CAAC,CAAC,CAAC,EAAE,KAAK1N,EAAM,cAAckM,EAAK,CAAC,KAAKsB,EAAK,KAAK,GAAGX,CAAQ,KAAK,cAAchB,EAAG,CAAC,0CAA0C6B,GAAU,CAACC,EAAY,0CAA0C,CAACD,GAAU,CAACC,EAAY,yCAAyCD,GAAUC,EAAY,yCAAyC,CAACD,GAAUC,EAAY,uCAAuCF,GAAW,CAACC,EAAS,OAAOD,GAAWC,CAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,ECA32CG,GAAsB,EAAQC,GAA4B,IAAUC,GAAa,CAAC,CAAC,MAAAC,EAAM,YAAAL,EAAY,SAAAD,EAAS,cAAAO,EAAc,UAAAC,CAAS,IAAI,CAAC,GAAG,CAACF,GAAO,CAACE,EAAW,OAAO,KAAK,MAAMC,EAAgBF,EAAcJ,GAAsB,OAAO7N,EAAM,cAAc,OAAO,CAAC,UAAU,8BAA8B,EAAE2N,EAAY3N,EAAM,cAAc,OAAO,CAAC,UAAU,OAAO,EAAEA,EAAM,cAAc,OAAO,CAAC,UAAU,wIAAwI,MAAM,CAAC,SAASmO,EAAgB,GAAG,QAAQ,GAAGA,EAAgB,GAAG,MAAMA,EAAgB,EAAE,IAAI,CAAC,EAAE,aAAa,CAAC,EAAEnO,EAAM,cAAc,OAAO,CAAC,UAAU6L,EAAG,oDAAoD,CAAC,yCAAyC6B,CAAQ,EAAE,CAAC,yCAAyC,CAACA,CAAQ,CAAC,EAAE,MAAM,CAAC,SAASS,EAAgB,cAAc,QAAQ,CAAC,EAAE,MAAM,EAAEnO,EAAM,cAAc,OAAO,CAAC,UAAU6L,EAAG,6BAA6B,CAAC,0CAA0C6B,IAAW,IAAM,CAACC,CAAW,EAAE,CAAC,oIAAoID,IAAW,IAAO,CAACC,CAAW,EAAE,CAAC,0CAA0CD,IAAW,QAAW,CAACC,CAAW,EAAE,CAAC,yCAAyCA,CAAW,EAAE,CAAC,YAAY,CAACA,CAAW,CAAC,EAAE,MAAM,CAAC,SAASM,EAAcH,EAA2B,CAAC,EAAEE,CAAK,CAAC,CAAC,ECA/6CI,GAAmB,CAAC,CAAC,YAAAC,EAAY,SAAAX,EAAS,YAAAC,EAAY,gBAAA1B,EAAgB,EAAI,IAAQ,CAACoC,GAAa,CAACpC,EAAwB,KAAYjM,EAAM,cAAc,OAAO,CAAC,UAAU6L,EAAG,4CAA4C,CAAC,0CAA0C6B,GAAU,CAACC,CAAW,EAAE,CAAC,mIAAmI,CAACD,CAAQ,CAAC,CAAC,EAAEW,CAAW,ECAnOC,GAAoB,EAAQC,GAAmB,CAAC,CAAC,KAAAf,EAAK,YAAAgB,EAAY,gBAAAvC,EAAgB,GAAK,UAAAiC,EAAU,GAAK,KAAA9B,EAAK,OAAO,aAAAqC,EAAa,EAAK,IAAI,CAAC,KAAK,CAAC,KAAAC,EAAK,UAAAC,EAAU,MAAAX,EAAM,YAAAL,EAAY,YAAAU,CAAW,EAAEf,EAASE,CAAI,GAAG,CAAE,EAAOS,EAAc,SAAS7B,EAAK,EAAE,EAAE,OAAOpM,EAAM,cAAc,IAAI,CAAC,KAAKwO,GAAwB,IAAI,UAAU3C,EAAG,uCAAuC,sCAAsC,sCAAsC,CAAC,kDAAkD,CAAC8B,CAAW,EAAE,CAAC,sBAAsB,CAACA,CAAW,EAAE,CAAC,sBAAsBA,CAAW,CAAC,EAAE,cAAcA,CAAW,EAAE3N,EAAM,cAAc,OAAO,CAAC,UAAU6L,EAAG,mBAAmB,EAAE,MAAM,CAAC,IAAIoC,EAAcK,EAAmB,CAAC,EAAEtO,EAAM,cAAcuN,GAAY,CAAC,KAAKU,EAAc,KAAKS,EAAK,UAAUD,EAAaE,EAAU,OAAU,YAAY,CAAC,CAAChB,EAAY,SAAS,EAAK,CAAC,EAAE3N,EAAM,cAAc+N,GAAa,CAAC,MAAMC,EAAM,YAAY,CAAC,CAACL,EAAY,cAAcM,EAAc,UAAUC,EAAU,SAAS,EAAK,CAAC,CAAC,EAAElO,EAAM,cAAcoO,GAAmB,CAAC,YAAYC,EAAY,YAAY,CAAC,CAACV,EAAY,gBAAgB1B,EAAgB,SAAS,EAAK,CAAC,CAAC,CAAC,ECAlqC2C,GAAa,CAAC,CAAC,mBAAAC,EAAmB,UAAAC,EAAU,mBAAAC,EAAmB,kBAAAC,EAAkB,gBAAAC,EAAgB,iBAAAC,CAAgB,IAAYlP,EAAM,cAAc,MAAM,CAAC,UAAU,wEAAwE,EAAEA,EAAM,cAAc,MAAM,CAAC,UAAU6L,EAAG,+BAA+B,CAAC,6BAA6BgD,CAAkB,EAAEE,CAAkB,CAAC,EAAEF,EAAmBxB,GAAa,IAAI8B,GAASnP,EAAM,cAAcuO,GAAmB,CAAC,KAAKY,EAAQ,IAAIA,EAAQ,YAAYC,GAAeD,CAAO,EAAE,MAAM,IAAI,aAAa,EAAI,CAAC,CAAC,EAAEL,GAAW9O,EAAM,cAAc,IAAI,CAAC,UAAU,sDAAsD,KAAK8O,EAAU,GAAG,EAAE9O,EAAM,cAAc,OAAO,CAAC,UAAU,mBAAmB,EAAEA,EAAM,cAAc,KAAK,CAAC,UAAU,oDAAoD,EAAE8O,EAAU,OAAO,EAAE9O,EAAM,cAAc,OAAO,CAAC,UAAU,8DAA8D,EAAE8O,EAAU,OAAO,EAAE9O,EAAM,cAAc,OAAO,CAAC,UAAU,iKAAiK,EAAE8O,EAAU,UAAU9O,EAAM,cAAckM,EAAK,CAAC,KAAK,oCAAoC,KAAK,OAAO,MAAM,kBAAkB,cAAcL,EAAG,8DAA8D,mEAAmE,CAAC,CAAC,CAAC,CAAC,EAAE7L,EAAM,cAAc,OAAO,CAAC,UAAU,kBAAkB,EAAEA,EAAM,cAAc,MAAM,CAAC,IAAI8O,EAAU,MAAM,IAAIA,EAAU,QAAQ,UAAU,wBAAwB,CAAC,CAAC,CAAC,CAAC,EAAE9O,EAAM,cAAc,MAAM,CAAC,UAAU,sDAAsD,EAAEA,EAAM,cAAc,KAAK,KAAKgP,GAAmBhP,EAAM,cAAc,IAAI,CAAC,UAAU,gEAAgE,EAAEgP,CAAiB,EAAEC,EAAgB,IAAII,GAAMrP,EAAM,cAAc,KAAK,CAAC,UAAU6L,EAAG,iFAAiFwD,EAAK,SAAS,YAAY,SAAS,EAAE,IAAIA,EAAK,KAAK,EAAErP,EAAM,cAAckM,EAAK,CAAC,KAAKmD,EAAK,KAAK,KAAK,UAAU,cAAc,yCAAyC,CAAC,EAAErP,EAAM,cAAc,IAAI,CAAC,UAAU,2KAA2K,KAAKqP,EAAK,IAAI,EAAEA,EAAK,KAAK,CAAC,CAAC,CAAC,EAAEH,GAAkBlP,EAAM,cAAc,MAAM,CAAC,UAAU,yBAAyB,EAAEkP,CAAgB,CAAC,CAAC,ECA1qFI,GAAA,qDCAAC,GAAA,+CCAAC,GAAA,4DCAAC,GAAA,iDCAAC,GAAA,mDCAAC,GAAA,mECAqlBC,GAAe,sBAA4BC,GAA0B,6MAAmNC,GAAa,CAAC,CAAC,MAAM,iBAAiB,KAAK,6BAA6B,KAAK,gCAAgC,EAAE,CAAC,MAAM,eAAe,KAAK,gCAAgC,KAAK,eAAe,EAAE,CAAC,MAAM,OAAO,KAAK,oCAAoC,KAAK,YAAY,EAAE,CAAC,MAAM,wBAAwB,KAAK,gCAAgC,KAAK,0BAA0B,CAAC,EAAQC,GAAmB,CAAC,QAAQ,iBAAiB,QAAQ,gEAAgE,UAAU,aAAa,IAAI,kBAAkB,MAAMT,EAAqB,EAAQU,GAAc,CAAC,CAAC,MAAM,iBAAiB,KAAK,iCAAiC,KAAK,kBAAkB,SAAS,EAAI,EAAE,CAAC,MAAM,UAAU,KAAK,mCAAmC,KAAK,iCAAiC,EAAE,CAAC,MAAM,UAAU,KAAK,mCAAmC,KAAK,oBAAoB,EAAE,CAAC,MAAM,aAAa,KAAK,yBAAyB,KAAK,uBAAuB,EAAE,CAAC,MAAM,SAAS,KAAK,gCAAgC,KAAK,mBAAmB,CAAC,EAAQC,GAAiB,CAAC,QAAQ,kCAAkC,QAAQ,0GAA0G,UAAU,aAAa,IAAI,SAAS,MAAMV,EAAe,EAAQW,GAAY,CAAC,CAAC,MAAM,aAAa,KAAK,sBAAsB,KAAK,SAAS,SAAS,EAAI,EAAE,CAAC,MAAM,mBAAmB,KAAK,wBAAwB,KAAK,eAAe,EAAE,CAAC,MAAM,UAAU,KAAK,6BAA6B,KAAK,UAAU,EAAE,CAAC,MAAM,OAAO,KAAK,8BAA8B,KAAK,OAAO,CAAC,EAAeC,GAAW,CAAC,CAAC,MAAMX,GAA2B,KAAK,kCAAkC,EAAE,CAAC,MAAMC,GAAsB,KAAK,6BAA6B,EAAE,CAAC,MAAMC,GAAwB,KAAK,+BAA+B,EAAE,CAAC,MAAMC,GAA2B,KAAK,+CAA+C,CAAC,EAAeS,GAAc,CAAC,CAAC,KAAK,UAAU,KAAK,WAAW,eAAe,EAAI,EAAE,CAAC,KAAK,OAAO,KAAK,QAAQ,eAAe,EAAI,CAAC,EAAeC,GAAmB,CAAC,CAAC,KAAK,WAAW,QAAQrQ,EAAM,cAAc4O,GAAa,CAAC,mBAAmB,GAAK,mBAAmB,OAAO,gBAAgBkB,GAAa,kBAAkB,WAAW,iBAAiB9P,EAAM,cAAc+L,GAAO,CAAC,UAAUT,GAAU,gBAAgB,EAAI,CAAC,CAAC,CAAC,EAAE,eAAAsE,EAAc,EAAE,CAAC,KAAK,YAAY,QAAQ5P,EAAM,cAAc4O,GAAa,CAAC,UAAUmB,GAAmB,mBAAmBF,GAA0B,gBAAgBG,EAAa,CAAC,EAAE,eAAAJ,EAAc,EAAE,CAAC,KAAK,UAAU,QAAQ5P,EAAM,cAAc4O,GAAa,CAAC,UAAUqB,GAAiB,mBAAmBJ,GAA0B,gBAAgBK,GAAY,iBAAiBlQ,EAAM,cAAc,MAAM,CAAC,UAAU,+BAA+B,EAAEmQ,GAAW,MAAM,EAAE,CAAC,EAAE,IAAIG,GAAOtQ,EAAM,cAAc,MAAM,CAAC,IAAIsQ,EAAM,KAAK,IAAIA,EAAM,MAAM,IAAIA,EAAM,KAAK,MAAM,KAAK,OAAO,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,eAAAV,EAAc,EAAE,GAAGQ,EAAa,EAAehB,GAAe,CAAC,GAAG9B,EAAS,OAAO,CAAC,GAAGA,EAAS,OAAO,KAAK,SAAS,EAAE,SAAS,CAAC,GAAGA,EAAS,SAAS,KAAK,WAAW,EAAE,KAAK,CAAC,GAAGA,EAAS,KAAK,KAAK,OAAO,EAAE,OAAO,CAAC,GAAGA,EAAS,OAAO,KAAK,SAAS,EAAE,cAAc,CAAC,GAAGA,EAAS,cAAc,KAAK,2BAA2B,CAAC,ECA5uHiD,GAAO,IAAI,CAAC,MAAMC,EAAoB,qOAAqO,OAAOxQ,EAAM,cAAc,SAAS,CAAC,UAAU,kGAAkG,UAAU,QAAQ,EAAEA,EAAM,cAAc,MAAM,CAAC,UAAU,kEAAkE,EAAEA,EAAM,cAAc,MAAM,CAAC,UAAU,mEAAmE,EAAEA,EAAM,cAAc,MAAM,CAAC,UAAU,6BAA6B,EAAE,CAAC,QAAQ,MAAM,EAAE,IAAIyQ,GAAOzQ,EAAM,cAAc0Q,GAAK,CAAC,IAAID,EAAM,KAAK,IAAI,MAAMA,EAAM,oBAAoB,CAAC,UAAU5E,EAAG,+BAA+B,CAAC,mBAAmB4E,IAAQ,QAAQ,mBAAmBA,IAAQ,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEzQ,EAAM,cAAc+L,GAAO,CAAC,UAAUT,GAAU,gBAAgB,EAAI,CAAC,EAAEtL,EAAM,cAAc,MAAM,CAAC,UAAU,eAAe,EAAEoN,GAAY,IAAIuD,GAAM3Q,EAAM,cAAc,IAAI,CAAC,IAAI2Q,EAAK,IAAI,KAAKA,EAAK,KAAK,OAAO,SAAS,IAAI,sBAAsB,aAAa,iBAAiBA,EAAK,GAAG,GAAG,UAAU,6BAA6B,EAAE3Q,EAAM,cAAckM,EAAK,CAAC,KAAKyE,EAAK,SAAS,KAAK,OAAO,cAAc,wEAAwE,CAAC,EAAE3Q,EAAM,cAAckM,EAAK,CAAC,KAAKyE,EAAK,UAAU,KAAK,OAAO,cAAc,qCAAqC,CAAC,CAAC,CAAC,CAAC,EAAE3Q,EAAM,cAAc,MAAM,CAAC,UAAU,kBAAkB,EAAEmQ,GAAW,IAAIG,GAAOtQ,EAAM,cAAc,MAAM,CAAC,IAAIsQ,EAAM,KAAK,IAAIA,EAAM,MAAM,IAAIA,EAAM,KAAK,MAAM,KAAK,OAAO,IAAI,CAAC,CAAC,CAAC,CAAC,EAAEtQ,EAAM,cAAc,MAAM,CAAC,UAAU,8DAA8D,EAAEkN,GAAY,IAAI,CAAC,CAAC,MAAA0D,EAAM,MAAAC,CAAK,IAAI7Q,EAAM,cAAc,MAAM,CAAC,IAAI4Q,EAAM,UAAU,6BAA6B,EAAE5Q,EAAM,cAAc,KAAK,CAAC,UAAU,gEAAgE,EAAE4Q,CAAK,EAAE5Q,EAAM,cAAc,KAAK,CAAC,UAAU,wBAAwB,EAAE6Q,EAAM,IAAI,CAAC,CAAC,MAAA7C,EAAM,KAAA2C,EAAK,MAAAG,CAAK,IAAI9Q,EAAM,cAAc,KAAK,CAAC,IAAIgO,EAAM,UAAU,cAAc,EAAEhO,EAAM,cAAc,IAAI,CAAC,KAAK2Q,EAAK,UAAUH,EAAoB,aAAa,SAASxC,CAAK,EAAE,EAAEA,CAAK,EAAE8C,GAAO9Q,EAAM,cAAcmM,GAAM,CAAC,KAAK,KAAK,UAAU,wBAAwB,EAAE2E,CAAK,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE9Q,EAAM,cAAc,MAAM,CAAC,UAAU,4DAA4D,EAAEA,EAAM,cAAc,MAAM,CAAC,UAAU,aAAa,EAAEmN,GAAkB,IAAIwD,GAAM3Q,EAAM,cAAc,IAAI,CAAC,IAAI2Q,EAAK,MAAM,KAAKA,EAAK,KAAK,UAAUH,EAAoB,aAAa,SAASG,EAAK,KAAK,EAAE,EAAEA,EAAK,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC","x_google_ignoreList":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20]}