@powersync/web 2.3.1 → 2.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1 +1 @@
1
- {"version":3,"file":"index.react_native_web.js","sources":["../lib/attachments/IndexDBFileSystemAdapter.js","../lib/db/adapters/wa-sqlite/vfs.js","../lib/db/adapters/SSRDBAdapter.js","../lib/db/adapters/wa-sqlite/DatabaseServer.js","../lib/shared/navigator.js","../lib/db/adapters/options.js","../lib/db/adapters/resolveAndValidateOptions.js","../lib/db/adapters/wa-sqlite/StatementCache.js","../lib/db/adapters/wa-sqlite/RawSqliteConnection.js","../lib/db/adapters/wa-sqlite/ConcurrentConnection.js","../lib/worker/db/MultiDatabaseServer.js","../lib/db/adapters/wa-sqlite/DatabaseClient.js","../lib/shared/tab_close_signal.js","../lib/db/adapters/acquireFromPool.js","../lib/db/adapters/AsyncWebAdapter.js","../lib/worker/client.js","../lib/db/adapters/wa-sqlite/WASQLiteOpenFactory.js","../lib/db/NavigatorTriggerClaimManager.js","../lib/db/sync/SSRWebStreamingSyncImplementation.js","../lib/worker/sync/AbstractSharedSyncClientProvider.js","../lib/db/sync/userAgent.js","../lib/db/sync/WebRemote.js","../lib/db/sync/WebStreamingSyncImplementation.js","../lib/worker/sync/SharedSyncImplementation.js","../lib/db/sync/SharedWebStreamingSyncImplementation.js","../lib/db/sync/TabLocalStreamingSyncImplementation.js","../lib/db/PowerSyncDatabase.js"],"sourcesContent":["/**\n * IndexDBFileSystemStorageAdapter implements LocalStorageAdapter using IndexedDB.\n * Suitable for web browsers and web-based environments.\n */\nexport class IndexDBFileSystemStorageAdapter {\n databaseName;\n dbPromise;\n constructor(databaseName = 'PowerSyncFiles') {\n this.databaseName = databaseName;\n }\n async initialize() {\n this.dbPromise = new Promise((resolve, reject) => {\n const request = indexedDB.open(this.databaseName, 1);\n request.onupgradeneeded = () => {\n request.result.createObjectStore('files');\n };\n request.onsuccess = () => resolve(request.result);\n request.onerror = () => reject(request.error);\n });\n }\n async clear() {\n const db = await this.dbPromise;\n return new Promise((resolve, reject) => {\n const tx = db.transaction('files', 'readwrite');\n const store = tx.objectStore('files');\n const req = store.clear();\n req.onsuccess = () => resolve();\n req.onerror = () => reject(req.error);\n });\n }\n getLocalUri(filename) {\n return `indexeddb://${this.databaseName}/files/${filename}`;\n }\n async getStore(mode = 'readonly') {\n const db = await this.dbPromise;\n const tx = db.transaction('files', mode);\n return tx.objectStore('files');\n }\n async saveFile(filePath, data) {\n const store = await this.getStore('readwrite');\n let dataToStore;\n let size;\n if (typeof data === 'string') {\n const binaryString = atob(data);\n const bytes = new Uint8Array(binaryString.length);\n for (let i = 0; i < binaryString.length; i++) {\n bytes[i] = binaryString.charCodeAt(i);\n }\n dataToStore = bytes.buffer;\n size = bytes.byteLength;\n }\n else {\n dataToStore = data;\n size = dataToStore.byteLength;\n }\n return await new Promise((resolve, reject) => {\n const req = store.put(dataToStore, filePath);\n req.onsuccess = () => resolve(size);\n req.onerror = () => reject(req.error);\n });\n }\n async readFile(fileUri, options) {\n const store = await this.getStore();\n return new Promise((resolve, reject) => {\n const req = store.get(fileUri);\n req.onsuccess = async () => {\n if (!req.result) {\n reject(new Error('File not found'));\n return;\n }\n resolve(req.result);\n };\n req.onerror = () => reject(req.error);\n });\n }\n async deleteFile(uri, options) {\n const store = await this.getStore('readwrite');\n await new Promise((resolve, reject) => {\n const req = store.delete(uri);\n req.onsuccess = () => resolve();\n req.onerror = () => reject(req.error);\n });\n }\n async fileExists(fileUri) {\n const store = await this.getStore();\n return new Promise((resolve, reject) => {\n const req = store.get(fileUri);\n req.onsuccess = () => resolve(!!req.result);\n req.onerror = () => reject(req.error);\n });\n }\n async makeDir(path) {\n // No-op for IndexedDB as it does not have a directory structure\n }\n async rmDir(path) {\n const store = await this.getStore('readwrite');\n const range = IDBKeyRange.bound(path + '/', path + '/\\uffff', false, false);\n await new Promise((resolve, reject) => {\n const req = store.delete(range);\n req.onsuccess = () => resolve();\n req.onerror = () => reject(req.error);\n });\n }\n}\n//# sourceMappingURL=IndexDBFileSystemAdapter.js.map","/**\n * List of currently tested virtual filesystems\n */\nexport var WASQLiteVFS;\n(function (WASQLiteVFS) {\n WASQLiteVFS[\"IDBBatchAtomicVFS\"] = \"IDBBatchAtomicVFS\";\n WASQLiteVFS[\"OPFSCoopSyncVFS\"] = \"OPFSCoopSyncVFS\";\n WASQLiteVFS[\"AccessHandlePoolVFS\"] = \"AccessHandlePoolVFS\";\n WASQLiteVFS[\"OPFSWriteAheadVFS\"] = \"OPFSWriteAheadVFS\";\n /**\n * A virtual file system storing data in-memory only, without persistence.\n *\n * This file system can be used in three configurations:\n *\n * 1. In shared workers (the default when available): All tabs share the same in-memory database, which is cleared\n * once the last tab is closed.\n * 2. In dedicated workers (used when `enableMultiTabs` is disabled). Each tab has its own in-memory database cleared\n * when the tab is closed. Queries are offloaded to a dedicated worker.\n * 3. In the context of the tab itself (used when both `enableMultiTabs` and `useWebWorker` are disabled). The per-tab\n * database is hosted in the tab itself, and queries run synchronously. This is _a lot_ faster than any other\n * single-threadedVFS, but can block JavaScript for computationally-intensive queries.\n *\n * This VFS primarily intended for development, but it also useful for online-first deployments not syncing large\n * amounts of data, as it is quicker to start up.\n */\n WASQLiteVFS[\"InMemoryVfs\"] = \"InMemoryVFS\";\n})(WASQLiteVFS || (WASQLiteVFS = {}));\nexport function vfsRequiresDedicatedWorkers(vfs) {\n return vfs != WASQLiteVFS.IDBBatchAtomicVFS && vfs != WASQLiteVFS.InMemoryVfs;\n}\nasync function asyncModuleFactory(encryptionKey) {\n if (encryptionKey) {\n const { default: factory } = await import('@journeyapps/wa-sqlite/dist/mc-wa-sqlite-async.mjs');\n return factory();\n }\n else {\n const { default: factory } = await import('@journeyapps/wa-sqlite/dist/wa-sqlite-async.mjs');\n return factory();\n }\n}\nasync function syncModuleFactory(encryptionKey) {\n if (encryptionKey) {\n const { default: factory } = await import('@journeyapps/wa-sqlite/dist/mc-wa-sqlite.mjs');\n return factory();\n }\n else {\n const { default: factory } = await import('@journeyapps/wa-sqlite/dist/wa-sqlite.mjs');\n return factory();\n }\n}\n/**\n * @internal\n */\nexport async function loadModuleAndVfs({ vfs, filename, encryptionKey }) {\n let moduleFactory = syncModuleFactory;\n let resolveVfs;\n switch (vfs) {\n case WASQLiteVFS.IDBBatchAtomicVFS: {\n moduleFactory = asyncModuleFactory;\n const { IDBBatchAtomicVFS } = await import('@journeyapps/wa-sqlite/src/examples/IDBBatchAtomicVFS.js');\n resolveVfs = (module) => {\n // @ts-expect-error The types for this static method are missing upstream\n return IDBBatchAtomicVFS.create(filename, module, { lockPolicy: 'exclusive' });\n };\n break;\n }\n case WASQLiteVFS.AccessHandlePoolVFS: {\n // @ts-expect-error The types for this import are missing upstream\n const { AccessHandlePoolVFS } = await import('@journeyapps/wa-sqlite/src/examples/AccessHandlePoolVFS.js');\n resolveVfs = (module) => AccessHandlePoolVFS.create(filename, module);\n break;\n }\n case WASQLiteVFS.OPFSCoopSyncVFS: {\n // @ts-expect-error The types for this import are missing upstream\n const { OPFSCoopSyncVFS } = await import('@journeyapps/wa-sqlite/src/examples/OPFSCoopSyncVFS.js');\n resolveVfs = (module) => OPFSCoopSyncVFS.create(filename, module);\n break;\n }\n case WASQLiteVFS.OPFSWriteAheadVFS: {\n // @ts-expect-error The types for this import are missing upstream\n const { OPFSWriteAheadVFS } = await import('@journeyapps/wa-sqlite/src/examples/OPFSWriteAheadVFS.js');\n resolveVfs = (module) => OPFSWriteAheadVFS.create(filename, module, {});\n break;\n }\n case WASQLiteVFS.InMemoryVfs: {\n const { MemoryVFS } = await import('@journeyapps/wa-sqlite/src/examples/MemoryVFS.js');\n // @ts-expect-error The types for this static method are missing upstream\n resolveVfs = (module) => MemoryVFS.create(filename, module);\n break;\n }\n }\n const module = await moduleFactory(encryptionKey);\n return { module, vfs: await resolveVfs(module) };\n}\n//# sourceMappingURL=vfs.js.map","import { DBAdapter, LockContext } from '@powersync/common';\nimport { Mutex } from '@powersync/shared-internals';\nconst MOCK_QUERY_RESPONSE = {\n rowsAffected: 0,\n columnNames: [],\n rawRows: []\n};\n/**\n * Implements a Mock DB adapter for use in Server Side Rendering (SSR).\n * This adapter will return empty results for queries, which will allow\n * server rendered views to initially generate scaffolding components\n */\nexport class SSRDBAdapter extends DBAdapter {\n name;\n readMutex;\n writeMutex;\n constructor() {\n super();\n this.name = 'SSR DB';\n this.readMutex = new Mutex();\n this.writeMutex = new Mutex();\n }\n close() { }\n async readLock(fn, options) {\n return fn(new StubLockContext());\n }\n async writeLock(fn, options) {\n return fn(new StubLockContext());\n }\n async refreshSchema() { }\n}\nclass StubLockContext extends LockContext {\n async executeRaw() {\n return MOCK_QUERY_RESPONSE;\n }\n}\n//# sourceMappingURL=SSRDBAdapter.js.map","import { LogLevels } from '@powersync/common';\n/**\n * Access to a WA-sqlite connection that can be shared with multiple clients sending queries over an RPC protocol built\n * with the Comlink package.\n */\nexport class DatabaseServer {\n #options;\n #nextClientId = 0;\n #activeClients = new Set();\n // TODO: Don't use a broadcast channel for connections managed by a shared worker.\n #updateBroadcastChannel;\n #clientTableListeners = new Set();\n constructor(options) {\n this.#options = options;\n const inner = options.inner;\n this.#updateBroadcastChannel = new BroadcastChannel(`${inner.options.filename}-table-updates`);\n this.#updateBroadcastChannel.onmessage = ({ data }) => {\n this.#pushTableUpdateToClients(data);\n };\n }\n #pushTableUpdateToClients(changedTables) {\n for (const listener of this.#clientTableListeners) {\n listener.postMessage(changedTables);\n }\n }\n get #inner() {\n return this.#options.inner;\n }\n get #logger() {\n return this.#options.logger;\n }\n /**\n * Called by clients when they wish to connect to this database.\n *\n * @param lockName A lock that is currently held by the client. When the lock is returned, we know the client is gone\n * and that we need to clean up resources.\n */\n async connect(lockName) {\n let isOpen = true;\n const clientId = this.#nextClientId++;\n this.#activeClients.add(clientId);\n let connectionLeases = new Map();\n let currentTableListener;\n function requireOpen() {\n if (!isOpen) {\n throw new Error('Client has already been closed');\n }\n }\n function requireOpenAndLease(lease) {\n requireOpen();\n const token = connectionLeases.get(lease);\n if (!token) {\n throw new Error('Attempted to use a connection lease that has already been returned.');\n }\n return token;\n }\n const close = async () => {\n if (isOpen) {\n isOpen = false;\n if (currentTableListener) {\n this.#clientTableListeners.delete(currentTableListener);\n }\n // If the client holds a connection lease it hasn't returned, return that now.\n for (const { lease } of connectionLeases.values()) {\n this.#logger.log({ level: LogLevels.debug, message: `Closing connection lease that hasn't been returned.` });\n await lease.returnLease();\n }\n this.#activeClients.delete(clientId);\n if (this.#activeClients.size == 0) {\n await this.forceClose();\n }\n else {\n this.#logger.log({\n level: LogLevels.debug,\n message: 'Keeping underlying connection active since its used by other clients.'\n });\n }\n }\n };\n if (lockName) {\n navigator.locks.request(lockName, {}, () => {\n close();\n });\n }\n return {\n close,\n debugIsAutoCommit: async () => {\n return this.#inner.unsafeUseInner().isAutoCommit();\n },\n requestAccess: async (write, timeoutMs) => {\n requireOpen();\n const lease = await this.#inner.acquireConnection(timeoutMs != null ? AbortSignal.timeout(timeoutMs) : undefined);\n if (!isOpen) {\n // Race between requestAccess and close(), the connection was closed while we tried to acquire a lease.\n await lease.returnLease();\n return requireOpen();\n }\n const token = crypto.randomUUID();\n connectionLeases.set(token, { lease, write });\n return token;\n },\n completeAccess: async (token) => {\n const lease = requireOpenAndLease(token);\n connectionLeases.delete(token);\n try {\n if (lease.write) {\n // Collect update hooks invoked while the client had the write connection.\n const { rawRows } = await lease.lease.use((conn) => conn.execute(`SELECT powersync_update_hooks('get')`));\n if (rawRows.length) {\n const updatedTables = JSON.parse(rawRows[0][0]);\n if (updatedTables.length) {\n this.#updateBroadcastChannel.postMessage(updatedTables);\n this.#pushTableUpdateToClients(updatedTables);\n }\n }\n }\n }\n finally {\n await lease.lease.returnLease();\n }\n },\n execute: async (token, sql, params) => {\n const { lease } = requireOpenAndLease(token);\n return await lease.use((db) => db.execute(sql, params));\n },\n executeBatch: async (token, sql, params) => {\n const { lease } = requireOpenAndLease(token);\n return await lease.use((db) => db.executeBatch(sql, params));\n },\n setUpdateListener: async (listener) => {\n requireOpen();\n if (currentTableListener) {\n this.#clientTableListeners.delete(currentTableListener);\n }\n currentTableListener = listener;\n if (listener) {\n this.#clientTableListeners.add(listener);\n }\n }\n };\n }\n async forceClose() {\n this.#logger.log({\n level: LogLevels.debug,\n message: `Closing connection to ${JSON.stringify(this.#inner.options)}.`\n });\n const connection = this.#inner;\n this.#options.onClose();\n this.#updateBroadcastChannel.close();\n await connection.close();\n }\n}\n//# sourceMappingURL=DatabaseServer.js.map","export const getNavigatorLocks = () => {\n if ('locks' in navigator && navigator.locks) {\n return navigator.locks;\n }\n throw new Error('Navigator locks are not available in an insecure context. Use a secure context such as HTTPS or http://localhost.');\n};\n//# sourceMappingURL=navigator.js.map","export var TemporaryStorageOption;\n(function (TemporaryStorageOption) {\n TemporaryStorageOption[\"MEMORY\"] = \"memory\";\n TemporaryStorageOption[\"FILESYSTEM\"] = \"file\";\n})(TemporaryStorageOption || (TemporaryStorageOption = {}));\n//# sourceMappingURL=options.js.map","import { LogLevels } from '@powersync/common';\nimport { TemporaryStorageOption } from './options.js';\nimport { vfsRequiresDedicatedWorkers, WASQLiteVFS } from './wa-sqlite/vfs.js';\n/**\n * The maximum length of a db filename we support.\n *\n * We configure the same on WA-SQLite (which otherwise defaults to a maximum length of 64). We don't want to support\n * very long path names as Safari maps OPFS files directly to OS files, and APFS has a 255-byte filename limit. Since\n * some VFS append additional characters for pooled file access handles, we want to stay well below that.\n */\nexport const maxPathNameLength = 128;\n/**\n * @internal\n */\nexport function resolveAndValidateOptions(options) {\n const defaults = {\n disableSSRWarning: false,\n ssrMode: !('window' in globalThis),\n /**\n * Multiple tabs are by default not supported on Android, iOS and Safari.\n * Other platforms will have multiple tabs enabled by default.\n */\n enableMultiTabs: typeof globalThis.navigator !== 'undefined' && // For SSR purposes\n typeof SharedWorker !== 'undefined' &&\n !navigator.userAgent.match(/(Android|iPhone|iPod|iPad)/i) &&\n !window.safari,\n useWebWorker: true,\n databaseWorkerLogLevel: LogLevels.info,\n temporaryStorage: TemporaryStorageOption.MEMORY,\n cacheSizeKb: 50 * 1024,\n encryptionKey: undefined,\n vfs: WASQLiteVFS.IDBBatchAtomicVFS,\n additionalReaders: 1\n };\n const resolved = Object.assign(defaults, options);\n if (vfsRequiresDedicatedWorkers(resolved.vfs) && !resolved.useWebWorker) {\n throw new Error(`Invalid configuration: The 'useWebWorker' flag must be true when using an OPFS-based VFS (${resolved.vfs}).`);\n }\n return resolved;\n}\n//# sourceMappingURL=resolveAndValidateOptions.js.map","export class PreparedStatementCache {\n #size;\n // Note that Map preserves insertion order, which allows using it as an LRU\n // cache (with the first element being the first element to evict).\n #statements = new Map();\n constructor(size) {\n this.#size = size;\n }\n /**\n * Attempts to look up the cached sql statement, if it's currently cached.\n */\n lookup(sql) {\n const foundStatement = this.#statements.get(sql);\n if (foundStatement != null) {\n // Delete and re-insert to move to the end (most-recently-used position).\n this.#statements.delete(sql);\n this.#statements.set(sql, foundStatement);\n return foundStatement;\n }\n return null;\n }\n /**\n * Adds a new statement into the cache.\n *\n * If that exceeds the target size of the statement cache, returns an old statement to evict.\n * The caller is responsible for freeing that statement.\n */\n addStatement(sql, statement) {\n this.#statements.set(sql, statement);\n if (this.#statements.size > this.#size) {\n for (const [k, v] of this.#statements.entries()) {\n this.#statements.delete(k);\n return v;\n }\n }\n return null;\n }\n drain() {\n const values = [...this.#statements.values()];\n this.#statements.clear();\n return values;\n }\n}\n//# sourceMappingURL=StatementCache.js.map","import { Factory as WaSqliteFactory, SQLITE_ROW } from '@journeyapps/wa-sqlite';\nimport { loadModuleAndVfs } from './vfs.js';\nimport { maxPathNameLength } from '../resolveAndValidateOptions.js';\nimport { PreparedStatementCache } from './StatementCache.js';\n/**\n * A small wrapper around WA-sqlite to help with opening databases and running statements by preparing them internally.\n *\n * This is an internal class, and it must never be used directly. Wrappers are required to ensure raw connections aren't\n * used concurrently across tabs.\n */\nexport class RawSqliteConnection {\n options;\n _sqliteAPI = null;\n sqlite3_stmt_isexplain;\n /**\n * The `sqlite3*` connection pointer.\n */\n db = 0;\n statementCache;\n constructor(options) {\n this.options = options;\n this.statementCache =\n options.preparedStatementsCache > 0 ? new PreparedStatementCache(options.preparedStatementsCache) : null;\n }\n get isOpen() {\n return this.db != 0;\n }\n async init() {\n const { module, vfs } = await loadModuleAndVfs(this.options);\n await this.initWithModule(module, vfs);\n }\n async initWithModule(module, vfs) {\n const api = (this._sqliteAPI = await this.openSQLiteAPI(module, vfs));\n this.db = await api.open_v2(this.options.filename, this.options.readonly ? 1 /* SQLITE_OPEN_READONLY */ : 6 /* SQLITE_OPEN_READWRITE | SQLITE_OPEN_CREATE */);\n await this.executeRaw(`PRAGMA temp_store = ${this.options.temporaryStorage};`);\n if (this.options.encryptionKey) {\n const escapedKey = this.options.encryptionKey.replaceAll(\"'\", \"''\");\n await this.executeRaw(`PRAGMA key = '${escapedKey}';`);\n }\n await this.executeRaw(`PRAGMA cache_size = -${this.options.cacheSizeKb};`);\n await this.executeRaw(`SELECT powersync_update_hooks('install');`);\n }\n async openSQLiteAPI(module, vfs) {\n vfs.mxPathname = maxPathNameLength;\n this.sqlite3_stmt_isexplain = module.cwrap('sqlite3_stmt_isexplain', 'int', ['int']);\n const sqlite3 = WaSqliteFactory(module);\n sqlite3.vfs_register(vfs, true);\n /**\n * Register the PowerSync core SQLite extension\n */\n module.ccall('powersync_init_static', 'int', []);\n /**\n * Create the multiple cipher vfs if an encryption key is provided\n */\n if (this.options.encryptionKey) {\n const createResult = module.ccall('sqlite3mc_vfs_create', 'int', ['string', 'int'], [this.options.filename, 1]);\n if (createResult !== 0) {\n throw new Error('Failed to create multiple cipher vfs, Database encryption will not work');\n }\n }\n return sqlite3;\n }\n requireSqlite() {\n if (!this._sqliteAPI) {\n throw new Error(`Initialization has not completed`);\n }\n return this._sqliteAPI;\n }\n /**\n * Checks if the database connection is in autocommit mode.\n * @returns true if in autocommit mode, false if in a transaction\n */\n isAutoCommit() {\n return this.requireSqlite().get_autocommit(this.db) != 0;\n }\n async execute(sql, bindings) {\n const resultSet = await this.executeSingleStatementRaw(sql, bindings);\n return this.wrapQueryResults(this.requireSqlite(), resultSet);\n }\n async executeBatch(sql, bindings) {\n const results = [];\n const api = this.requireSqlite();\n for await (const stmt of api.statements(this.db, sql)) {\n let columns;\n for (const parameterSet of bindings) {\n const rs = await this.stepThroughStatement(api, stmt, parameterSet, columns, false);\n results.push(this.wrapQueryResults(api, rs));\n }\n // executeBatch can only use a single statement\n break;\n }\n return results;\n }\n wrapQueryResults(api, { rawRows, columnNames }) {\n return {\n rowsAffected: api.changes(this.db),\n insertId: api.last_insert_id(this.db),\n autocommit: api.get_autocommit(this.db) != 0,\n rawRows,\n columnNames\n };\n }\n /**\n * This executes a single statement using SQLite3 and returns the results as a {@link RawResultSet}.\n */\n async executeSingleStatementRaw(sql, bindings) {\n const results = await this.executeRaw(sql, bindings);\n return results.length ? results[0] : { columnNames: [], rawRows: [] };\n }\n async executeRaw(sql, bindings) {\n const results = [];\n const api = this.requireSqlite();\n for await (const stmt of this.cachedStatements(api, sql)) {\n let columns;\n const rs = await this.stepThroughStatement(api, stmt, bindings ?? [], columns);\n columns = rs.columnNames;\n if (columns.length) {\n results.push(rs);\n }\n // When binding parameters, only a single statement is executed.\n if (bindings) {\n break;\n }\n }\n return results;\n }\n async stepThroughStatement(api, stmt, bindings, knownColumns, includeResults = true) {\n // TODO not sure why this is needed currently, but booleans break\n bindings.forEach((b, index, arr) => {\n if (typeof b == 'boolean') {\n arr[index] = b ? 1 : 0;\n }\n });\n api.reset(stmt);\n if (bindings) {\n api.bind_collection(stmt, bindings);\n }\n const rows = [];\n while ((await api.step(stmt)) === SQLITE_ROW) {\n if (includeResults) {\n const row = api.row(stmt);\n rows.push(row);\n }\n }\n knownColumns ??= api.column_names(stmt);\n return { columnNames: knownColumns, rawRows: rows };\n }\n async close() {\n if (this.isOpen) {\n const api = this.requireSqlite();\n if (this.statementCache) {\n for (const stmt of this.statementCache.drain()) {\n await api.finalize(stmt);\n }\n }\n await api.close(this.db);\n this.db = 0;\n }\n }\n async *cachedStatements(api, sql) {\n {\n const existing = this.statementCache?.lookup(sql);\n if (existing != null) {\n yield existing;\n return;\n }\n }\n const inner = api.statements(this.db, sql, { unscoped: true });\n const preparedStatements = [];\n try {\n for await (const stmt of inner) {\n preparedStatements.push(stmt);\n yield stmt;\n }\n }\n finally {\n // We can only cache statements if the sql text corresponds to a single statement, otherwise it's not clear what\n // portion of the original sql text to use as a key.\n if (preparedStatements.length === 1 && this.statementCache) {\n const stmt = preparedStatements[0];\n // Don't cache EXPLAIN statements, their result becomes invalid after schema changes.\n if (this.sqlite3_stmt_isexplain(stmt) == 0) {\n const evicted = this.statementCache.addStatement(sql, stmt);\n if (evicted != null) {\n await api.finalize(evicted);\n }\n return;\n }\n }\n // We're not caching statements, so finalize them.\n for (const stmt of preparedStatements) {\n await api.finalize(stmt);\n }\n }\n }\n}\n//# sourceMappingURL=RawSqliteConnection.js.map","import { Mutex } from '@powersync/shared-internals';\n/**\n * A wrapper around a {@link RawSqliteConnection} allowing multiple tabs to access it.\n *\n * To allow potentially concurrent accesses from different clients, this requires a local mutex implementation here.\n *\n * Note that instances of this class are not safe to proxy across context boundaries with comlink! We need to be able to\n * rely on mutexes being returned reliably, so additional checks to detect say a client tab closing are required to\n * avoid deadlocks.\n */\nexport class ConcurrentSqliteConnection {\n inner;\n /**\n * An outer mutex ensuring at most one {@link ConnectionLeaseToken} can exist for this connection at a time.\n *\n * If null, we'll use navigator locks instead.\n */\n leaseMutex;\n /**\n * @param needsNavigatorLocks Whether access to the database needs an additional navigator lock guard.\n *\n * While {@link ConcurrentSqliteConnection} prevents concurrent access to a database _connection_, it's possible we\n * might have multiple connections to the same physical database (e.g. if multiple tabs use dedicated workers).\n * In those setups, we use navigator locks instead of an internal mutex to guard access..\n */\n constructor(inner, needsNavigatorLocks) {\n this.inner = inner;\n this.leaseMutex = needsNavigatorLocks ? null : new Mutex();\n }\n get options() {\n return this.inner.options;\n }\n acquireMutex(abort) {\n if (this.leaseMutex) {\n return this.leaseMutex.acquire(abort);\n }\n return new Promise((resolve, reject) => {\n const options = { signal: abort };\n navigator.locks\n .request(`db-lock-${this.options.filename}`, options, (_) => {\n return new Promise((returnLock) => {\n return resolve(() => {\n returnLock();\n });\n });\n })\n .catch(reject);\n });\n }\n // Unsafe, unguarded access to the SQLite connection.\n unsafeUseInner() {\n return this.inner;\n }\n /**\n * @returns A {@link ConnectionLeaseToken}. Until that token is returned, no other client can use the database.\n */\n async acquireConnection(abort) {\n const returnMutex = await this.acquireMutex(abort);\n const token = new ConnectionLeaseToken(returnMutex, this.inner);\n try {\n // Assert that the inner connection is initialized at this point, fail early if it's not.\n this.inner.requireSqlite();\n // If a previous client was interrupted in the middle of a transaction AND this is a shared worker, it's possible\n // for the connection to still be in a transaction. To avoid inconsistent state, we roll back connection leases\n // that haven't been comitted.\n if (!this.inner.isAutoCommit()) {\n await this.inner.executeRaw('ROLLBACK');\n }\n }\n catch (e) {\n returnMutex();\n throw e;\n }\n return token;\n }\n async close() {\n const returnMutex = await this.acquireMutex();\n try {\n await this.inner.close();\n }\n finally {\n returnMutex();\n }\n }\n}\n/**\n * An instance representing temporary exclusive access to a {@link ConcurrentSqliteConnection}.\n */\nexport class ConnectionLeaseToken {\n returnMutex;\n connection;\n /** Ensures that the client with access to this token can't run statements concurrently. */\n useMutex = new Mutex();\n closed = false;\n constructor(returnMutex, connection) {\n this.returnMutex = returnMutex;\n this.connection = connection;\n }\n /**\n * Returns this lease, allowing another client to use the database connection.\n */\n async returnLease() {\n await this.useMutex.runExclusive(async () => {\n if (!this.closed) {\n this.closed = true;\n this.returnMutex();\n }\n });\n }\n /**\n * This should only be used internally, since the callback must not use the raw connection after resolving.\n */\n async use(callback) {\n return await this.useMutex.runExclusive(async () => {\n if (this.closed) {\n throw new Error('lease token has already been closed');\n }\n return await callback(this.connection);\n });\n }\n}\n//# sourceMappingURL=ConcurrentConnection.js.map","import { LogLevels } from '@powersync/common';\nimport * as Comlink from 'comlink';\nimport { DatabaseServer } from '../../db/adapters/wa-sqlite/DatabaseServer.js';\nimport { getNavigatorLocks } from '../../shared/navigator.js';\nimport { RawSqliteConnection } from '../../db/adapters/wa-sqlite/RawSqliteConnection.js';\nimport { ConcurrentSqliteConnection } from '../../db/adapters/wa-sqlite/ConcurrentConnection.js';\nimport { WASQLiteVFS } from '../../db/adapters/wa-sqlite/vfs.js';\nimport { Mutex } from '@powersync/shared-internals';\nconst OPEN_DB_LOCK = 'open-wasqlite-db';\n/**\n * Shared state to manage multiple database connections hosted by a worker.\n */\nexport class MultiDatabaseServer {\n logger;\n #activeDatabases = new Map();\n #localOpenLock = new Mutex();\n constructor(logger) {\n this.logger = logger;\n }\n async handleConnection({ logLevel, database, lockName }) {\n const logger = {\n log: (record) => {\n if (record.level >= logLevel)\n this.logger.log(record);\n }\n };\n return Comlink.proxy(await this.openConnectionLocally(logger, database, lockName));\n }\n async connectToExisting(name, lockName) {\n return getNavigatorLocks().request(OPEN_DB_LOCK, async () => {\n const server = this.#activeDatabases.get(name);\n if (server == null) {\n throw new Error(`connectToExisting(${name}) failed because the worker doesn't own a database with that name.`);\n }\n return Comlink.proxy(await server.connect(lockName));\n });\n }\n async openConnectionLocally(logger, options, lockName) {\n // Especially on Firefox, we're sometimes seeing \"NoModificationAllowedError\"s when opening OPFS databases we can\n // work around by retrying.\n const maxAttempts = 3;\n let server;\n for (let count = 0; count < maxAttempts - 1; count++) {\n try {\n server = await this.#databaseOpenAttempt(logger, options);\n }\n catch (error) {\n this.logger.log({\n level: LogLevels.warn,\n message: `Attempt ${count + 1} of ${maxAttempts} to open database failed, retrying in 1 second...`,\n error\n });\n await new Promise((resolve) => setTimeout(resolve, 1000));\n }\n }\n // Final attempt if we haven't been able to open the server - rethrow errors if we still can't open.\n server ??= await this.#databaseOpenAttempt(logger, options);\n return server.connect(lockName);\n }\n async #databaseOpenAttempt(logger, options) {\n const { filename, readonly, vfs } = options;\n // We don't need navigator locks for shared workers because all queries run in this shared worker exclusively.\n // For read-only connections, we use a VFS that supports concurrent reads (so a single lock on the connection is\n // fine). In-memory databases either run in a shared worker or aren't shared across tabs at all, so the internal\n // lock is enough.\n const needsNavigatorLocks = !(isSharedWorker || readonly || vfs == WASQLiteVFS.InMemoryVfs);\n const activeDatabases = this.#activeDatabases;\n async function openDatabase() {\n let server = activeDatabases.get(filename);\n if (server == null) {\n const connection = new RawSqliteConnection(options);\n const withSafeConcurrency = new ConcurrentSqliteConnection(connection, needsNavigatorLocks);\n // Initializing the RawSqliteConnection will run some pragmas that might write to the database file, so we want\n // to do that in an exclusive lock. Note that OPEN_DB_LOCK is not enough for that, as another tab might have\n // already created a connection (and is thus outside of OPEN_DB_LOCK) while currently writing to it.\n const returnLease = await withSafeConcurrency.acquireMutex();\n try {\n await connection.init();\n }\n catch (e) {\n returnLease();\n await connection.close();\n throw e;\n }\n returnLease();\n const onClose = () => activeDatabases.delete(filename);\n server = new DatabaseServer({\n inner: withSafeConcurrency,\n logger,\n onClose\n });\n activeDatabases.set(filename, server);\n }\n return server;\n }\n if (needsNavigatorLocks) {\n return getNavigatorLocks().request(OPEN_DB_LOCK, openDatabase);\n }\n else {\n // Even if we don't need navigator locks, this avoids a race between the activeDatabases.get() call, the async\n // open logic and the final activeDatabases.set() step.\n return this.#localOpenLock.runExclusive(openDatabase);\n }\n }\n closeAll() {\n const existingDatabases = [...this.#activeDatabases.values()];\n return Promise.all(existingDatabases.map((db) => {\n db.forceClose();\n }));\n }\n}\nexport const isSharedWorker = 'SharedWorkerGlobalScope' in globalThis;\n//# sourceMappingURL=MultiDatabaseServer.js.map","import { LockContext, DBAdapter, queryResultWithoutRows } from '@powersync/common';\nimport * as Comlink from 'comlink';\nimport { ConnectionClosedError } from '@powersync/shared-internals';\n/**\n * A single-connection {@link ConnectionPool} implementation based on a worker connection.\n */\nexport class DatabaseClient extends DBAdapter {\n options;\n config;\n #connection;\n #shareConnectionAbortController = new AbortController();\n #receiveTableUpdates;\n constructor(options, config) {\n super();\n this.options = options;\n this.config = config;\n this.#connection = {\n connection: options.connection,\n notifyRemoteClosed: options.remoteCanCloseUnexpectedly ? new AbortController() : undefined,\n traceQueries: config.debugMode === true\n };\n const { port1, port2 } = new MessageChannel();\n options.connection.setUpdateListener(Comlink.transfer(port1, [port1]));\n this.#receiveTableUpdates = port2;\n port2.onmessage = (event) => {\n const tables = event.data;\n const notification = {\n tables\n };\n this.iterateListeners((l) => {\n l.tablesUpdated && l.tablesUpdated(notification);\n });\n };\n }\n get name() {\n return this.config.dbFilename;\n }\n /**\n * Marks the remote as closed.\n *\n * This can sometimes happen outside of our control, e.g. when a shared worker requests a connection from a tab. When\n * it happens, all outstanding requests on this pool would never resolve. To avoid livelocks in this scenario, we\n * throw on all outstanding promises and forbid new calls.\n */\n markRemoteClosed() {\n // Can non-null assert here because this function is only supposed to be called when remoteCanCloseUnexpectedly was\n // set.\n this.#connection.notifyRemoteClosed.abort();\n }\n async close() {\n // This connection is no longer shared, so we can close locks held for shareConnection calls.\n this.#shareConnectionAbortController.abort();\n this.#receiveTableUpdates.close();\n await useConnectionState(this.#connection, (c) => c.close(), true);\n this.options.onClose?.();\n this.options.source?.[Comlink.releaseProxy]();\n }\n readLock(fn, options) {\n return this.#lock(false, fn, options);\n }\n writeLock(fn, options) {\n return this.#lock(true, fn, options);\n }\n async #lock(write, fn, options) {\n const token = await useConnectionState(this.#connection, (c) => c.requestAccess(write, options?.timeoutMs));\n try {\n return await fn(new ClientLockContext(this.#connection, token));\n }\n finally {\n await useConnectionState(this.#connection, (c) => c.completeAccess(token));\n }\n }\n async refreshSchema() {\n // Currently a no-op on the web.\n }\n async shareConnection() {\n /**\n * Hold a navigator lock in order to avoid features such as Chrome's frozen tabs,\n * or Edge's sleeping tabs from pausing the thread for this connection.\n * This promise resolves once a lock is obtained.\n * This lock will be held as long as this connection is open.\n * The `shareConnection` method should not be called on multiple tabs concurrently.\n */\n const abort = this.#shareConnectionAbortController;\n const source = this.options.source;\n if (source == null) {\n throw new Error(`shareConnection() is only available for connections based by workers.`);\n }\n await new Promise((resolve, reject) => navigator.locks\n .request(`shared-connection-${this.name}-${Date.now()}-${Math.round(Math.random() * 10000)}`, {\n signal: abort.signal\n }, async () => {\n resolve();\n // Free the lock when the connection is already closed.\n if (abort.signal.aborted) {\n return;\n }\n // Hold the lock while the shared connection is in use.\n await new Promise((releaseLock) => {\n abort.signal.addEventListener('abort', () => {\n releaseLock();\n });\n });\n })\n // We aren't concerned with abort errors here\n .catch((ex) => {\n if (ex.name == 'AbortError') {\n resolve();\n }\n else {\n reject(ex);\n }\n }));\n const newPort = await source[Comlink.createEndpoint]();\n return { port: newPort, identifier: this.name };\n }\n getConfiguration() {\n return this.config;\n }\n}\n/**\n * A {@link LockContext} implemented by sending commands to a worker.\n *\n * While an instance is active, it has exclusive access to the underlying database connection (as represented by its\n * token).\n */\nclass ClientLockContext extends LockContext {\n #connection;\n #token;\n constructor(connection, token) {\n super();\n this.#connection = connection;\n this.#token = token;\n }\n /**\n * Requests an operation from the worker, potentially tracing it if that option has been enabled.\n */\n async maybeTrace(fn, describeForTrace) {\n if (this.#connection.traceQueries) {\n const start = performance.now();\n const description = describeForTrace();\n try {\n const r = await useConnectionState(this.#connection, fn);\n performance.measure(`[SQL] ${description}`, { start });\n return r;\n }\n catch (e) {\n performance.measure(`[SQL] [ERROR: ${e.message}] ${description}`, { start });\n throw e;\n }\n }\n else {\n return useConnectionState(this.#connection, fn);\n }\n }\n async executeRaw(query, params) {\n return await this.#executeOnWorker(query, params);\n }\n async #executeOnWorker(query, params) {\n return this.maybeTrace((c) => c.execute(this.#token, query, params), () => query);\n }\n async executeBatch(query, params = []) {\n const results = await this.maybeTrace((c) => c.executeBatch(this.#token, query, params), () => `${query} (batch of ${params.length})`);\n const result = { insertId: undefined, rowsAffected: 0 };\n for (const source of results) {\n result.insertId = source.insertId;\n result.rowsAffected = (result.rowsAffected ?? 0) + source.rowsAffected;\n }\n return queryResultWithoutRows(result);\n }\n}\nasync function useConnectionState(state, workerPromise, fireActionOnAbort = false) {\n const controller = state.notifyRemoteClosed;\n if (controller) {\n return new Promise((resolve, reject) => {\n if (controller.signal.aborted) {\n reject(new ConnectionClosedError('Called operation on closed remote'));\n if (!fireActionOnAbort) {\n // Don't run the operation if we're going to reject\n // We might want to fire-and-forget the operation in some cases (like a close operation)\n return;\n }\n }\n function handleAbort() {\n reject(new ConnectionClosedError('Remote peer closed with request in flight'));\n }\n function completePromise(action) {\n controller.signal.removeEventListener('abort', handleAbort);\n action();\n }\n controller.signal.addEventListener('abort', handleAbort);\n workerPromise(state.connection)\n .then((data) => completePromise(() => resolve(data)))\n .catch((e) => completePromise(() => reject(e)));\n });\n }\n else {\n // Can't close, so just return the inner worker promise unguarded.\n return workerPromise(state.connection);\n }\n}\n//# sourceMappingURL=DatabaseClient.js.map","import { getNavigatorLocks } from './navigator.js';\n/**\n * Requests a random lock that will be released once the optional signal is aborted (or, if no signal is given, when the\n * tab is closed).\n *\n * This allows sending the name of the lock to another context (e.g. a shared worker), which will also attempt to\n * acquire it. Since the lock is returned when the tab is closed, this allows the shared worker to free resources\n * assocatiated with this tab.\n *\n * We take hold of this lock as soon-as-possible in order to cater for potentially closed tabs.\n */\nexport function generateTabCloseSignal(abort) {\n return new Promise((resolve, reject) => {\n const options = { signal: abort };\n getNavigatorLocks()\n .request(`tab-close-signal-${crypto.randomUUID()}`, options, (lock) => {\n resolve(lock.name);\n return new Promise((resolve) => {\n if (abort) {\n abort.addEventListener('abort', () => resolve());\n }\n });\n })\n .catch(reject);\n });\n}\n//# sourceMappingURL=tab_close_signal.js.map","/**\n * Internal helper function to acquire a connection from a pool that has a designated writer, additional readers, and\n * also allows dispatching reads to the writer.\n */\nexport async function acquireFromPool(writerMutex, writer, readers, callback, options, allowReadOnly) {\n const abortController = new AbortController();\n const abortSignal = abortController.signal;\n let timeout = null;\n let release;\n if (options?.timeoutMs) {\n timeout = setTimeout(() => abortController.abort('requesting database timed out'), options.timeoutMs);\n }\n try {\n if (allowReadOnly) {\n let connection;\n // Even if we have a pool of read connections, it's typically very small and we assume that most queries are\n // reads. So, we want to request any connection from the read pool and the dedicated write connection (which\n // can also serve reads). We race for the first connection we can obtain this way, and then abort the other\n // request.\n [connection, release] = await new Promise((resolve, reject) => {\n let didComplete = false;\n function complete() {\n didComplete = true;\n abortController.abort();\n }\n function completeSuccess(connection, returnFn) {\n if (didComplete) {\n // We're not going to use this connection, so return it immediately.\n returnFn();\n }\n else {\n complete();\n resolve([connection, returnFn]);\n }\n }\n function completeError(error) {\n // We either have a working connection already, or we've rejected the promise. Either way, we don't need\n // to do either thing again.\n if (didComplete)\n return;\n complete();\n reject(error);\n }\n writerMutex.acquire(abortSignal).then((unlock) => completeSuccess(writer, unlock), completeError);\n readers?.requestOne(abortSignal).then(({ item, release }) => completeSuccess(item, release), completeError);\n });\n return await callback(connection);\n }\n else {\n return await writerMutex.runExclusive(() => callback(writer), abortSignal);\n }\n }\n finally {\n if (timeout != null) {\n clearTimeout(timeout);\n }\n release?.();\n }\n}\n//# sourceMappingURL=acquireFromPool.js.map","import { DBAdapter } from '@powersync/common';\nimport { Mutex, Semaphore } from '@powersync/shared-internals';\nimport { acquireFromPool } from './acquireFromPool.js';\n/**\n * A connection pool implementation delegating to another pool opened asynchronnously.\n */\nexport class AsyncDbAdapter extends DBAdapter {\n name;\n state;\n resolvedWriter;\n pendingListeners = new Set();\n constructor(inner, name) {\n super();\n this.name = name;\n this.state = inner.then((client) => {\n for (const pending of this.pendingListeners) {\n pending.closeAfterRegisteredOnResolvedPool = client.writer.registerListener(pending.listener);\n }\n this.pendingListeners.clear();\n this.resolvedWriter = client.writer;\n if (client.additionalReaders.length) {\n return readWritePoolState(client.writer, client.additionalReaders);\n }\n return singleConnectionPoolState(client.writer);\n });\n }\n async init() {\n await this.state;\n }\n async close() {\n const state = await this.state;\n await state.close();\n }\n async readLock(fn, options) {\n const state = await this.state;\n return state.withConnection(true, fn, options);\n }\n async writeLock(fn, options) {\n const state = await this.state;\n return state.withConnection(false, fn, options);\n }\n async refreshSchema() {\n const state = await this.state;\n await state.refreshSchema();\n }\n registerListener(listener) {\n if (this.resolvedWriter) {\n return this.resolvedWriter.registerListener(listener);\n }\n else {\n const pending = { listener };\n this.pendingListeners.add(pending);\n return () => {\n if (pending.closeAfterRegisteredOnResolvedPool) {\n return pending.closeAfterRegisteredOnResolvedPool();\n }\n else {\n // Has not been registered yet, we can just remove the pending listener.\n this.pendingListeners.delete(pending);\n }\n };\n }\n }\n async shareConnection() {\n const state = await this.state;\n return state.writer.shareConnection();\n }\n getConfiguration() {\n if (this.resolvedWriter) {\n return this.resolvedWriter.getConfiguration();\n }\n throw new Error('AsyncDbAdapter.getConfiguration() can only be called after initializing it.');\n }\n}\nfunction singleConnectionPoolState(connection) {\n return {\n writer: connection,\n withConnection: (allowReadOnly, fn, options) => {\n if (allowReadOnly) {\n return connection.readLock(fn, options);\n }\n else {\n return connection.writeLock(fn, options);\n }\n },\n close: () => connection.close(),\n refreshSchema: () => connection.refreshSchema()\n };\n}\nfunction readWritePoolState(writer, readers) {\n // DatabaseClients have locks internally, so these aren't necessary for correctness. However, our mutex and semaphore\n // implementations are very cheap to cancel, which we use to dispatch reads to the first available connection (by\n // simply requesting all of them and sticking with the first connection we get).\n const writerMutex = new Mutex();\n const readerSemaphore = new Semaphore(readers);\n return {\n writer,\n async withConnection(allowReadOnly, fn, options) {\n return acquireFromPool(writerMutex, writer, readerSemaphore, (connection) => {\n return allowReadOnly ? connection.readLock(fn) : connection.writeLock(fn);\n }, options, allowReadOnly);\n },\n async close() {\n await writer.close();\n await Promise.all(readers.map((r) => r.close()));\n },\n async refreshSchema() {\n await writer.refreshSchema();\n await Promise.all(readers.map((r) => r.refreshSchema()));\n }\n };\n}\n//# sourceMappingURL=AsyncWebAdapter.js.map","import { LogLevels } from '@powersync/common';\nexport function connectToWorker({ service, databaseIdentifier, customWorker, shared, loggerForErrors }) {\n const name = `${shared ? 'shared-' : ''}powersync-${databaseIdentifier}`;\n let worker;\n if (customWorker) {\n worker = shared\n ? new SharedWorker(customWorker, {\n /* @vite-ignore */\n name,\n type: 'module'\n })\n : new Worker(customWorker, {\n /* @vite-ignore */\n name,\n type: 'module'\n });\n }\n else {\n worker = spawnDefaultPowerSyncWorker(shared, name);\n }\n return connectToExistingWorker(worker, loggerForErrors, service);\n}\n/**\n * Opens the default PowerSync worker.\n *\n * When users depend on the web SDK, we assume they use their own bundler (either vite or webpack). Both recognize the\n * syntax of worker constructors with a string literal and will rewrite the URL as part of their bundling processes.\n *\n * React Native / Metro users can't rely on this on the web, as their app is not a JavaScript module and import.meta.url\n * is not rewritten by Metro. For those users, we include a pre-bundled worker they can copy into a static assets\n * directory and load with a custom URI. This also means that defaultWorker cannot work with Metro for React Native Web.\n * We have a custom rollup plugin and conditional exports that replaces this function with a throwing stub for that\n * platform. This allows a helpful error message.\n */\n// Note: When changing this function, also update disableDefaultWorkers in rollup.config.ts.\nfunction spawnDefaultPowerSyncWorker(shared, name) {\n return shared\n ? new SharedWorker(new URL('./worker.js', import.meta.url), {\n /* @vite-ignore */\n name,\n type: 'module'\n })\n : new Worker(new URL('./worker.js', import.meta.url), {\n /* @vite-ignore */\n name,\n type: 'module'\n });\n}\nexport function connectToExistingWorker(worker, logger, service) {\n function logError(event) {\n // TODO: Ideally, we should be able to handle worker errors by forwarding them to async Comlink callers.\n // Currently, comlink calls on errored workers would just be stuck forever.\n logger.log({\n level: LogLevels.error,\n error: event.error,\n message: 'Error in database or sync worker, this likely disrupts PowerSync.'\n });\n }\n worker.addEventListener('error', logError);\n const isShared = isSharedWorker(worker);\n if (isShared) {\n const { port1, port2 } = new MessageChannel();\n const mainPort = worker.port;\n mainPort.start();\n mainPort.postMessage({ port: port1, service }, [port1]);\n port2.start();\n return {\n endpoint: port2,\n worker,\n close() {\n worker.removeEventListener('error', logError);\n port2.close();\n }\n };\n }\n else {\n return {\n endpoint: worker,\n worker,\n close() {\n worker.removeEventListener('error', logError);\n worker.terminate();\n }\n };\n }\n}\nexport function isSharedWorker(worker) {\n return 'port' in worker;\n}\n//# sourceMappingURL=client.js.map","import { LogLevels } from '@powersync/common';\nimport * as Comlink from 'comlink';\nimport { SSRDBAdapter } from '../SSRDBAdapter.js';\nimport { vfsRequiresDedicatedWorkers, WASQLiteVFS } from './vfs.js';\nimport { MultiDatabaseServer } from '../../../worker/db/MultiDatabaseServer.js';\nimport { DatabaseClient } from './DatabaseClient.js';\nimport { generateTabCloseSignal } from '../../../shared/tab_close_signal.js';\nimport { AsyncDbAdapter } from '../AsyncWebAdapter.js';\nimport { maxPathNameLength, resolveAndValidateOptions } from '../resolveAndValidateOptions.js';\nimport { connectToExistingWorker, connectToWorker } from '../../../worker/client.js';\n/**\n * Opens a SQLite connection using WA-SQLite.\n */\nexport class WASQLiteOpenFactory {\n options;\n logger;\n constructor(options) {\n this.options = resolveAndValidateOptions(options.open);\n // Account for the fact that SQLite might append -journal suffixes\n const maxLength = maxPathNameLength - 16;\n if (this.options.dbFilename.length > maxLength) {\n throw new Error(`dbFilename too long (max length is ${maxLength})`);\n }\n this.logger = options.logger;\n }\n openAdapter() {\n return new AsyncDbAdapter(this.openConnection(), this.options.dbFilename);\n }\n openDB() {\n const { disableSSRWarning, enableMultiTabs, ssrMode } = this.options;\n if (ssrMode) {\n if (!disableSSRWarning) {\n this.logger.log({\n level: LogLevels.warn,\n message: `\n Running PowerSync in SSR mode.\n Only empty query results will be returned.\n Disable this warning by setting 'disableSSRWarning: true' in options.`\n });\n }\n return new SSRDBAdapter();\n }\n if (!enableMultiTabs) {\n this.logger.log({\n level: LogLevels.warn,\n message: 'Multiple tab support is not enabled. Using this site across multiple tabs may not function correctly.'\n });\n }\n return this.openAdapter();\n }\n async openConnection() {\n const { enableMultiTabs, useWebWorker, vfs, dbFilename, encryptionKey, temporaryStorage, cacheSizeKb, preparedStatementsCache } = this.options;\n if (!enableMultiTabs) {\n this.logger.log({ level: LogLevels.warn, message: 'Multiple tabs are not enabled in this browser' });\n }\n let client;\n let additionalReaders = [];\n let requiresPersistentTriggers = vfsRequiresDedicatedWorkers(vfs);\n function resolveRawWaSqliteDatabaseOptions(readonly) {\n return {\n filename: dbFilename,\n readonly,\n vfs,\n encryptionKey,\n temporaryStorage,\n cacheSizeKb,\n // TODO: Enable prepared statement cache by default?\n preparedStatementsCache: preparedStatementsCache ?? 0\n };\n }\n if (useWebWorker) {\n const optionsDbWorker = this.options.worker;\n const openDatabaseWorker = async (readonly) => {\n let workerConnection;\n if (typeof optionsDbWorker == 'function') {\n const worker = optionsDbWorker(this.options);\n workerConnection = connectToExistingWorker(worker, this.logger, 'database');\n }\n else {\n const needsDedicated = vfsRequiresDedicatedWorkers(vfs);\n const useShared = !needsDedicated && enableMultiTabs;\n workerConnection = connectToWorker({\n service: 'database',\n databaseIdentifier: this.options.dbFilename,\n shared: useShared,\n customWorker: optionsDbWorker,\n loggerForErrors: this.logger\n });\n }\n const source = Comlink.wrap(workerConnection.endpoint);\n const closeSignal = new AbortController();\n const connection = await source.connect({\n database: resolveRawWaSqliteDatabaseOptions(readonly),\n logLevel: this.options.databaseWorkerLogLevel,\n lockName: await generateTabCloseSignal(closeSignal.signal)\n });\n const clientOptions = {\n connection,\n source,\n // This tab owns the worker, so we're guaranteed to outlive it.\n remoteCanCloseUnexpectedly: false,\n onClose: () => {\n closeSignal.abort();\n workerConnection.close();\n }\n };\n return new DatabaseClient(clientOptions, {\n ...this.options,\n requiresPersistentTriggers\n });\n };\n client = await openDatabaseWorker(false);\n if (vfs == WASQLiteVFS.OPFSWriteAheadVFS) {\n // This VFS supports concurrent reads, so we can open additional workers to host read-only connections for\n // concurrent reads / writes.\n const additionalReadersCount = this.options.additionalReaders ?? 1;\n const additionalReaderPromises = [];\n for (let i = 0; i < additionalReadersCount; i++) {\n additionalReaderPromises.push(openDatabaseWorker(true));\n }\n additionalReaders.push(...(await Promise.all(additionalReaderPromises)));\n }\n }\n else {\n // Don't use a web worker. Instead, open the MultiDatabaseServer a worker would use locally.\n const localServer = new MultiDatabaseServer(this.logger);\n requiresPersistentTriggers = true;\n const connection = await localServer.openConnectionLocally(this.logger, resolveRawWaSqliteDatabaseOptions(false));\n client = new DatabaseClient({ connection, source: null, remoteCanCloseUnexpectedly: false }, {\n ...this.options,\n requiresPersistentTriggers\n });\n }\n return {\n writer: client,\n additionalReaders\n };\n }\n}\n//# sourceMappingURL=WASQLiteOpenFactory.js.map","import { getNavigatorLocks } from '../shared/navigator.js';\n/**\n * @internal\n * @experimental\n */\nexport const NAVIGATOR_TRIGGER_CLAIM_MANAGER = {\n async obtainClaim(identifier) {\n return new Promise((resolveReleaser) => {\n getNavigatorLocks().request(identifier, async () => {\n await new Promise((releaseLock) => {\n resolveReleaser(async () => releaseLock());\n });\n });\n });\n },\n async checkClaim(identifier) {\n const currentState = await getNavigatorLocks().query();\n return currentState.held?.find((heldLock) => heldLock.name == identifier) != null;\n }\n};\n//# sourceMappingURL=NavigatorTriggerClaimManager.js.map","import { BaseObserver } from '@powersync/common';\nimport { Mutex, LockType } from '@powersync/shared-internals';\nexport class SSRStreamingSyncImplementation extends BaseObserver {\n syncMutex;\n crudMutex;\n isConnected;\n lastSyncedAt;\n constructor() {\n super();\n this.syncMutex = new Mutex();\n this.crudMutex = new Mutex();\n this.isConnected = false;\n }\n obtainLock(lockOptions) {\n const mutex = lockOptions.type == LockType.CRUD ? this.crudMutex : this.syncMutex;\n return mutex.runExclusive(lockOptions.callback, lockOptions.signal);\n }\n /**\n * This is a no-op in SSR mode\n */\n async connect() { }\n async dispose() { }\n /**\n * This is a no-op in SSR mode\n */\n async disconnect() { }\n /**\n * This SSR Mode implementation is immediately ready.\n */\n async waitForReady() { }\n /**\n * This will never resolve in SSR Mode.\n */\n waitUntilStatusMatches(_predicate) {\n return new Promise(() => { });\n }\n /**\n * This is a no-op in SSR mode.\n */\n triggerCrudUpload() { }\n /**\n * No-op in SSR mode.\n */\n updateSubscriptions() { }\n /**\n * No-op in SSR mode.\n */\n markConnectionMayHaveChanged() { }\n requestCheckpoint() {\n throw new Error('Sub sync implementation does not support request checkpoints');\n }\n}\n//# sourceMappingURL=SSRWebStreamingSyncImplementation.js.map","/**\n * The client side port should provide these methods.\n */\nexport class AbstractSharedSyncClientProvider {\n}\n//# sourceMappingURL=AbstractSharedSyncClientProvider.js.map","/**\n * Get a minimal representation of browser, version and operating system.\n *\n * The goal is to get enough environemnt info to reproduce issues, but no\n * more.\n */\nexport function getUserAgentInfo(nav) {\n nav ??= navigator;\n const browser = getBrowserInfo(nav);\n const os = getOsInfo(nav);\n // The cast below is to cater for TypeScript < 5.5.0\n return [browser, os].filter((v) => v != null);\n}\nfunction getBrowserInfo(nav) {\n const brands = nav.userAgentData?.brands;\n if (brands != null) {\n const tests = [\n { name: 'Google Chrome', value: 'Chrome' },\n { name: 'Opera', value: 'Opera' },\n { name: 'Edge', value: 'Edge' },\n { name: 'Chromium', value: 'Chromium' }\n ];\n for (let { name, value } of tests) {\n const brand = brands.find((b) => b.brand == name);\n if (brand != null) {\n return `${value}/${brand.version}`;\n }\n }\n }\n const ua = nav.userAgent;\n const regexps = [\n { re: /(?:firefox|fxios)\\/(\\d+)/i, value: 'Firefox' },\n { re: /(?:edg|edge|edga|edgios)\\/(\\d+)/i, value: 'Edge' },\n { re: /opr\\/(\\d+)/i, value: 'Opera' },\n { re: /(?:chrome|chromium|crios)\\/(\\d+)/i, value: 'Chrome' },\n { re: /version\\/(\\d+).*safari/i, value: 'Safari' }\n ];\n for (let { re, value } of regexps) {\n const match = re.exec(ua);\n if (match != null) {\n return `${value}/${match[1]}`;\n }\n }\n return null;\n}\nfunction getOsInfo(nav) {\n if (nav.userAgentData?.platform != null) {\n return nav.userAgentData.platform.toLowerCase();\n }\n const ua = nav.userAgent;\n const regexps = [\n { re: /windows/i, value: 'windows' },\n { re: /android/i, value: 'android' },\n { re: /linux/i, value: 'linux' },\n { re: /iphone|ipad|ipod/i, value: 'ios' },\n { re: /macintosh|mac os x/i, value: 'macos' }\n ];\n for (let { re, value } of regexps) {\n if (re.test(ua)) {\n return value;\n }\n }\n return null;\n}\n//# sourceMappingURL=userAgent.js.map","import { LogLevels } from '@powersync/common';\nimport { AbstractRemote } from '@powersync/shared-internals';\nimport { getUserAgentInfo } from './userAgent.js';\nexport class WebRemote extends AbstractRemote {\n connector;\n constructor(connector, logger) {\n super(connector, logger);\n this.connector = connector;\n }\n fetch({ resource, request }) {\n return fetch(resource, request);\n }\n async loadWebSocketSupport(platform) {\n if (!websockets) {\n // loadWebSocketSupport being called concurrently is safe, the import resolves to the same module in that case.\n const module = await import('@powersync/shared-internals/websockets');\n websockets = new module.WebSocketSupport(platform);\n }\n return websockets;\n }\n getUserAgent() {\n let ua = [super.getUserAgent(), `powersync-web`];\n try {\n ua.push(...getUserAgentInfo());\n }\n catch (error) {\n this.logger.log({ level: LogLevels.warn, message: 'Failed to get user agent info', error });\n }\n return ua.join(' ');\n }\n}\nlet websockets;\n//# sourceMappingURL=WebRemote.js.map","import { LogLevels } from '@powersync/common';\nimport { AbstractStreamingSyncImplementation, LockType } from '@powersync/shared-internals';\nimport { getNavigatorLocks } from '../../shared/navigator.js';\nexport class WebStreamingSyncImplementation extends AbstractStreamingSyncImplementation {\n constructor(options) {\n // Super will store and provide default values for options\n super(options);\n }\n get webOptions() {\n return this.options;\n }\n async obtainLock(lockOptions) {\n const identifier = `streaming-sync-${lockOptions.type}-${this.webOptions.identifier}`;\n if (lockOptions.type == LockType.SYNC) {\n this.logger.log({ level: LogLevels.debug, message: `requesting lock for ${identifier}` });\n }\n return getNavigatorLocks().request(identifier, { signal: lockOptions.signal }, lockOptions.callback);\n }\n}\n//# sourceMappingURL=WebStreamingSyncImplementation.js.map","import { BaseObserver, DBAdapter, LogLevels, SyncStreamConnectionMethod } from '@powersync/common';\nimport { AbortOperation, ConnectionManager, SqliteBucketStorage, Mutex } from '@powersync/shared-internals';\nimport * as Comlink from 'comlink';\nimport { WebRemote } from '../../db/sync/WebRemote.js';\nimport { WebStreamingSyncImplementation } from '../../db/sync/WebStreamingSyncImplementation.js';\nimport { BroadcastLogger } from './BroadcastLogger.js';\nimport { DatabaseClient } from '../../db/adapters/wa-sqlite/DatabaseClient.js';\nimport { generateTabCloseSignal } from '../../shared/tab_close_signal.js';\n/**\n * @internal\n * Manual message events for shared sync clients\n */\nexport var SharedSyncClientEvent;\n(function (SharedSyncClientEvent) {\n /**\n * This client requests the shared sync manager should\n * close it's connection to the client.\n */\n SharedSyncClientEvent[\"CLOSE_CLIENT\"] = \"close-client\";\n SharedSyncClientEvent[\"CLOSE_ACK\"] = \"close-ack\";\n})(SharedSyncClientEvent || (SharedSyncClientEvent = {}));\n/**\n * HACK: The shared implementation wraps and provides its own\n * PowerSyncBackendConnector when generating the streaming sync implementation.\n * We provide this unused placeholder when connecting with the ConnectionManager.\n */\nconst CONNECTOR_PLACEHOLDER = {};\n/**\n * @internal\n * Shared sync implementation which runs inside a shared webworker\n */\nexport class SharedSyncImplementation extends BaseObserver {\n ports;\n isInitialized;\n statusListener;\n syncParams;\n lastConnectOptions;\n portMutex;\n subscriptions = [];\n connectionManager;\n syncStatus;\n logger;\n database = this.generateReconnectableDatabase();\n sharedCloseSignal = generateTabCloseSignal();\n constructor() {\n super();\n this.ports = [];\n this.syncParams = null;\n this.lastConnectOptions = undefined;\n this.portMutex = new Mutex();\n this.isInitialized = new Promise((resolve) => {\n const callback = this.registerListener({\n initialized: () => {\n resolve();\n callback?.();\n }\n });\n });\n this.logger = new BroadcastLogger('shared-sync', this.ports);\n this.connectionManager = new ConnectionManager({\n createSyncImplementation: async () => {\n await this.waitForReady();\n const sync = this.generateStreamingImplementation();\n const onDispose = sync.registerListener({\n statusChanged: (snapshot) => {\n this.syncStatus = snapshot;\n const json = snapshot.toJSON();\n this.ports.forEach((p) => p.clientProvider.statusChanged(json));\n }\n });\n return {\n sync,\n onDispose\n };\n },\n logger: this.logger,\n defaultConnectionMethod: SyncStreamConnectionMethod.HTTP\n });\n }\n get isConnected() {\n return this.connectionManager.syncStreamImplementation?.isConnected ?? false;\n }\n /**\n * Gets the last client port which we know is safe from unexpected closes.\n */\n async getLastWrappedPort() {\n // Find the last port which is not closing\n return await this.portMutex.runExclusive(() => {\n for (let i = this.ports.length - 1; i >= 0; i--) {\n if (!this.ports[i].isClosing) {\n return this.ports[i];\n }\n }\n return;\n });\n }\n /**\n * In some very rare cases a specific tab might not respond to requests.\n * This returns a random port which is not closing.\n */\n async getRandomWrappedPort() {\n return await this.portMutex.runExclusive(() => {\n const nonClosingPorts = this.ports.filter((p) => !p.isClosing);\n return nonClosingPorts[Math.floor(Math.random() * nonClosingPorts.length)];\n });\n }\n async waitUntilStatusMatches(predicate) {\n return this.withSyncImplementation(async (sync) => {\n return sync.waitUntilStatusMatches(predicate);\n });\n }\n async waitForReady() {\n return this.isInitialized;\n }\n collectActiveSubscriptions() {\n this.logger.log({ level: LogLevels.debug, message: 'Collecting active stream subscriptions across tabs' });\n const active = new Map();\n for (const port of this.ports) {\n for (const stream of port.currentSubscriptions) {\n const serializedKey = JSON.stringify(stream);\n active.set(serializedKey, stream);\n }\n }\n this.subscriptions = [...active.values()];\n this.logger.log({\n level: LogLevels.debug,\n message: `Collected stream subscriptions, ${JSON.stringify(this.subscriptions)}`\n });\n this.connectionManager.syncStreamImplementation?.updateSubscriptions(this.subscriptions);\n }\n updateSubscriptions(port, subscriptions) {\n port.currentSubscriptions = subscriptions;\n this.collectActiveSubscriptions();\n }\n setLogLevel(level) {\n this.logger.setLevel(level);\n }\n /**\n * Configures the DBAdapter connection and a streaming sync client.\n */\n async setParams(params) {\n await this.portMutex.runExclusive(async () => {\n this.collectActiveSubscriptions();\n });\n if (this.syncParams) {\n // Cannot modify already existing sync implementation params\n return;\n }\n // First time setting params\n this.syncParams = params;\n this.logger.sendBroadcasts = params.enableBroadcastLogs;\n // Ensure we have a usable database connection, the reconnectable database will connect lazily on first use.\n await this.database.readLock(async () => { });\n self.onerror = (event) => {\n // Share any uncaught events on the broadcast logger\n this.logger.log({\n level: LogLevels.error,\n message: 'Uncaught exception in PowerSync shared sync worker',\n error: event\n });\n };\n this.iterateListeners((l) => l.initialized?.());\n }\n async dispose() {\n await this.waitForReady();\n this.statusListener?.();\n return this.connectionManager.close();\n }\n /**\n * Connects to the PowerSync backend instance.\n * Multiple tabs can safely call this in their initialization.\n * The connection will simply be reconnected whenever a new tab\n * connects.\n */\n async connect(options, serializedSchema) {\n this.lastConnectOptions = options;\n return this.connectionManager.connect(CONNECTOR_PLACEHOLDER, options ?? {}, serializedSchema);\n }\n async disconnect() {\n return this.connectionManager.disconnect();\n }\n /**\n * Adds a new client tab's message port to the list of connected ports\n */\n async addPort(port) {\n return await this.portMutex.runExclusive(() => {\n const portProvider = {\n port,\n clientProvider: Comlink.wrap(port),\n currentSubscriptions: [],\n closeListeners: [],\n isClosing: false\n };\n this.ports.push(portProvider);\n // Give the newly connected client the latest status\n const status = this.syncStatus;\n if (status) {\n portProvider.clientProvider.statusChanged(status.toJSON());\n }\n return portProvider;\n });\n }\n /**\n * Removes a message port client from this manager's managed\n * clients.\n */\n async removePort(port) {\n // Ports might be removed faster than we can process them.\n port.isClosing = true;\n // Remove the port within a mutex context.\n // Warns if the port is not found. This should not happen in practice.\n // We return early if the port is not found.\n return await this.portMutex.runExclusive(async () => {\n const index = this.ports.findIndex((p) => p == port);\n if (index < 0) {\n this.logger.log({\n level: LogLevels.warn,\n message: `Could not remove port ${port} since it is not present in active ports.`\n });\n return () => { };\n }\n const trackedPort = this.ports[index];\n // Remove from the list of active ports\n this.ports.splice(index, 1);\n // Close the worker wrapped database connection, we can't accurately rely on this connection\n for (const closeListener of trackedPort.closeListeners) {\n await closeListener();\n }\n this.collectActiveSubscriptions();\n return () => trackedPort.clientProvider[Comlink.releaseProxy]();\n });\n }\n triggerCrudUpload() {\n this.withSyncImplementation(async (sync) => {\n sync.triggerCrudUpload();\n });\n }\n requestCheckpoint() {\n return this.withSyncImplementation((sync) => sync.requestCheckpoint());\n }\n async withSyncImplementation(callback) {\n await this.waitForReady();\n if (this.connectionManager.syncStreamImplementation) {\n return callback(this.connectionManager.syncStreamImplementation);\n }\n const sync = await new Promise((resolve) => {\n const dispose = this.connectionManager.registerListener({\n syncStreamCreated: (sync) => {\n resolve(sync);\n dispose?.();\n }\n });\n });\n return callback(sync);\n }\n generateStreamingImplementation() {\n // This should only be called after initialization has completed\n const syncParams = this.syncParams;\n // Create a new StreamingSyncImplementation for each connect call. This is usually done is all SDKs.\n return new WebStreamingSyncImplementation({\n adapter: new SqliteBucketStorage(this.database, this.logger),\n remote: new WebRemote({\n invalidateCredentials: async () => {\n const lastPort = await this.getLastWrappedPort();\n if (!lastPort) {\n throw new Error('No client port found to invalidate credentials');\n }\n try {\n this.logger.log({\n level: LogLevels.info,\n message: 'calling the last port client provider to invalidate credentials'\n });\n lastPort.clientProvider.invalidateCredentials();\n }\n catch (error) {\n this.logger.log({ level: LogLevels.error, message: 'error invalidating credentials', error });\n }\n },\n fetchCredentials: () => {\n return this.#useConnector((port) => {\n this.logger.log({\n level: LogLevels.info,\n message: 'calling the last port client provider for credentials'\n });\n return port.clientProvider.fetchCredentials();\n }, 'fetchCredentials');\n }\n }, this.logger),\n uploadCrud: () => {\n return this.#useConnector((port) => port.clientProvider.uploadCrud(), 'uploadCrud');\n },\n postCheckpointRequest: (clientId, requestId) => {\n return this.#useConnector((port) => port.clientProvider.postCheckpointRequest(clientId, requestId), 'postCheckpointRequest');\n },\n ...syncParams.streamOptions,\n subscriptions: this.subscriptions,\n // Logger cannot be transferred just yet\n logger: this.logger\n });\n }\n async #useConnector(inner, debugContext) {\n const lastPort = await this.getLastWrappedPort();\n if (!lastPort) {\n throw new Error(`No client port found for ${debugContext}`);\n }\n return new Promise((resolve, reject) => {\n function portClosed() {\n reject(new Error(`Tab closed while handling ${debugContext}`));\n }\n lastPort.closeListeners.push(portClosed);\n inner(lastPort)\n .then(resolve, reject)\n .finally(() => {\n lastPort.closeListeners.splice(lastPort.closeListeners.indexOf(portClosed), 1);\n });\n });\n }\n /**\n * Requests a random client to share its database connection with us.\n */\n async openInternalDB(handleClosed) {\n const client = await this.getRandomWrappedPort();\n if (!client) {\n // Should not really happen in practice\n throw new Error(`Could not open DB connection since no client is connected.`);\n }\n // Fail-safe timeout for opening a database connection.\n const timeout = setTimeout(() => {\n abortController.abort();\n }, 10_000);\n /**\n * Handle cases where the client might close while opening a connection.\n */\n const abortController = new AbortController();\n const closeListener = () => {\n abortController.abort();\n };\n const removeCloseListener = () => {\n const index = client.closeListeners.indexOf(closeListener);\n if (index >= 0) {\n client.closeListeners.splice(index, 1);\n }\n };\n client.closeListeners.push(closeListener);\n const workerPort = await withAbort({\n action: () => client.clientProvider.getDBWorkerPort(),\n signal: abortController.signal,\n cleanupOnAbort: (port) => {\n port.close();\n }\n }).catch((ex) => {\n removeCloseListener();\n throw ex;\n });\n const remote = Comlink.wrap(workerPort);\n const identifier = this.syncParams.dbParams.dbFilename;\n const clientLockName = await this.sharedCloseSignal;\n /**\n * The open could fail if the tab is closed while we're busy opening the database.\n * This operation is typically executed inside an exclusive portMutex lock.\n * We typically execute the closeListeners using the portMutex in a different context.\n * We can't rely on the closeListeners to abort the operation if the tab is closed.\n */\n const db = await withAbort({\n action: async () => {\n const clientView = await remote.connectToExisting({ identifier, lockName: clientLockName });\n return new DatabaseClient({\n connection: clientView,\n source: remote,\n // It's possible for this worker to outlive the client hosting the database for us. We need to be prepared for\n // that and ensure pending requests are aborted when the tab is closed.\n remoteCanCloseUnexpectedly: true\n }, this.syncParams.dbParams);\n },\n signal: abortController.signal,\n cleanupOnAbort: (db) => {\n db.close();\n }\n }).finally(() => {\n // We can remove the close listener here since we no longer need it past this point.\n removeCloseListener();\n });\n clearTimeout(timeout);\n client.closeListeners.push(async () => {\n this.logger.log({ level: LogLevels.info, message: 'Aborting open connection because associated tab closed.' });\n handleClosed(db);\n /**\n * Don't await this close operation. It might never resolve if the tab is closed.\n * We mark the remote as closed first, this will reject any pending requests.\n * We then call close. The close operation is configured to fire-and-forget, the main promise will reject immediately.\n */\n db.markRemoteClosed();\n db.close().catch((error) => this.logger.log({ level: LogLevels.warn, message: 'error closing database connection', error }));\n });\n return db;\n }\n generateReconnectableDatabase() {\n const syncParams = this.syncParams;\n const sharedSync = this;\n return new (class extends DBAdapter {\n connectionState = null;\n get name() {\n return syncParams?.dbParams.dbFilename;\n }\n async connect() {\n if (this.connectionState == null) {\n const handleClosed = this.handleClientClosed.bind(this);\n this.connectionState = (async () => {\n try {\n const db = await sharedSync.openInternalDB(handleClosed);\n db.registerListener({\n tablesUpdated: (notification) => {\n this.iterateListeners((l) => l.tablesUpdated?.(notification));\n }\n });\n this.connectionState = db;\n return db;\n }\n catch (e) {\n // Allow reconnecting when the database is used again.\n this.connectionState = null;\n throw e;\n }\n })();\n }\n return await this.connectionState;\n }\n async close() {\n if (this.connectionState != null) {\n await (await this.connectionState).close();\n }\n }\n handleClientClosed(client) {\n if (client === this.connectionState) {\n this.connectionState = null;\n // We may have missed some table updates while the database was closed.\n // We can poke the crud in case we missed any updates.\n const impl = sharedSync.connectionManager.syncStreamImplementation;\n impl?.triggerCrudUpload();\n // The Rust client implementation stores sync state on the connection level. Reopening the database causes a\n // disruption of the connection state and forces us to reconnect. We want to do that as soon as possible to\n // minimize downtime.\n impl?.markConnectionMayHaveChanged();\n }\n }\n async readLock(fn, options) {\n const db = await this.connect();\n return db.readLock(fn, options);\n }\n async writeLock(fn, options) {\n const db = await this.connect();\n return db.writeLock(fn, options);\n }\n async refreshSchema() {\n // Not used by sync client.\n }\n })();\n }\n}\n/**\n * Runs the action with an abort controller.\n */\nfunction withAbort(options) {\n const { action, signal, cleanupOnAbort } = options;\n return new Promise((resolve, reject) => {\n if (signal.aborted) {\n reject(new AbortOperation('Operation aborted by abort controller'));\n return;\n }\n function handleAbort() {\n signal.removeEventListener('abort', handleAbort);\n reject(new AbortOperation('Operation aborted by abort controller'));\n }\n signal.addEventListener('abort', handleAbort, { once: true });\n function completePromise(action) {\n signal.removeEventListener('abort', handleAbort);\n action();\n }\n action()\n .then((data) => {\n // We already rejected due to the abort, allow for cleanup\n if (signal.aborted) {\n return completePromise(() => cleanupOnAbort?.(data));\n }\n completePromise(() => resolve(data));\n })\n .catch((e) => completePromise(() => reject(e)));\n });\n}\n//# sourceMappingURL=SharedSyncImplementation.js.map","import * as Comlink from 'comlink';\nimport { AbstractSharedSyncClientProvider } from '../../worker/sync/AbstractSharedSyncClientProvider.js';\nimport { SharedSyncClientEvent } from '../../worker/sync/SharedSyncImplementation.js';\nimport { WebStreamingSyncImplementation } from './WebStreamingSyncImplementation.js';\nimport { generateTabCloseSignal } from '../../shared/tab_close_signal.js';\nimport { connectToExistingWorker, connectToWorker } from '../../worker/client.js';\n/**\n * The shared worker will trigger methods on this side of the message port\n * via this client provider.\n */\nclass SharedSyncClientProvider extends AbstractSharedSyncClientProvider {\n options;\n statusChanged;\n webDB;\n constructor(options, statusChanged, webDB) {\n super();\n this.options = options;\n this.statusChanged = statusChanged;\n this.webDB = webDB;\n }\n async getDBWorkerPort() {\n const { port } = await this.webDB.shareConnection();\n return Comlink.transfer(port, [port]);\n }\n invalidateCredentials() {\n this.options.remote.invalidateCredentials();\n }\n async fetchCredentials() {\n const credentials = await this.options.remote.getCredentials();\n if (credentials == null) {\n return null;\n }\n /**\n * The credentials need to be serializable.\n * Users might extend [PowerSyncCredentials] to contain\n * items which are not serializable.\n * This returns only the essential fields.\n */\n return {\n endpoint: credentials.endpoint,\n token: credentials.token\n };\n }\n async uploadCrud() {\n /**\n * Don't return anything here, just incase something which is not\n * serializable is returned from the `uploadCrud` function.\n */\n await this.options.uploadCrud();\n }\n async postCheckpointRequest(clientId, requestId) {\n return await this.options.postCheckpointRequest(clientId, requestId);\n }\n get logger() {\n return this.options.logger;\n }\n log(record) {\n this.logger.log(record);\n }\n}\n/**\n * The local part of the sync implementation on the web, which talks to a sync implementation hosted in a shared worker.\n */\nexport class SharedWebStreamingSyncImplementation extends WebStreamingSyncImplementation {\n syncManager;\n clientProvider;\n worker;\n isInitialized;\n dbAdapter;\n abortOnClose = new AbortController();\n logLevel;\n enableBroadcastLogs;\n constructor(options) {\n super(options);\n this.dbAdapter = options.db;\n this.logLevel = options.logLevel;\n this.enableBroadcastLogs = options.enableBroadcastLogs;\n const syncWorker = options.sync?.worker;\n if (typeof syncWorker === 'function') {\n this.worker = connectToExistingWorker(syncWorker(), options.logger, 'sync');\n }\n else {\n this.worker = connectToWorker({\n service: 'sync',\n databaseIdentifier: this.webOptions.identifier,\n shared: true,\n customWorker: syncWorker,\n loggerForErrors: options.logger\n });\n }\n /**\n * Pass along any sync status updates to this listener\n */\n this.clientProvider = new SharedSyncClientProvider(this.webOptions, ({ core, dataFlow }) => {\n this.updateSyncStatus(core, dataFlow);\n }, options.db);\n this.syncManager = Comlink.wrap(this.worker.endpoint);\n /**\n * The sync worker will call this client provider when it needs\n * to fetch credentials or upload data.\n * This performs bi-directional method calling.\n */\n Comlink.expose(this.clientProvider, this.worker.endpoint);\n this.syncManager.setLogLevel(this.logLevel);\n this.triggerCrudUpload = this.syncManager.triggerCrudUpload;\n /**\n * Opens MessagePort to the existing shared DB worker.\n * The sync worker cannot initiate connections directly to the\n * DB worker, but a port to the DB worker can be transferred to the\n * sync worker.\n */\n this.isInitialized = this._init();\n }\n async _init() {\n /**\n * The general flow of initialization is:\n * - The client requests a unique navigator lock.\n * - Once the lock is acquired, we register the lock with the shared worker.\n * - The shared worker can then request the same lock. The client has been closed if the shared worker can acquire the lock.\n * - Once the shared worker knows the client's lock, we can guarentee that the shared worker will detect if the client has been closed.\n * - This makes the client safe for the shared worker to use.\n * - The client is only added to the SharedSyncImplementation once the lock has been registered.\n * This ensures we don't ever keep track of dead clients (tabs that closed before the lock was registered).\n * - The client side lock is held until the client is disposed.\n * - We resolve the top-level promise after the lock has been registered with the shared worker.\n * - The client sends the params to the shared worker after locks have been registered.\n */\n const closeSignal = await generateTabCloseSignal(this.abortOnClose.signal);\n // Awaiting here ensures the worker is waiting for the lock\n await this.syncManager.addLockBasedCloseSignal(closeSignal);\n const { identifier } = this.options;\n await this.syncManager.setParams({\n dbParams: this.dbAdapter.getConfiguration(),\n streamOptions: {\n identifier,\n serializedSchema: this.options.serializedSchema\n },\n enableBroadcastLogs: this.enableBroadcastLogs\n }, this.options.subscriptions);\n }\n /**\n * Starts the sync process, this effectively acts as a call to\n * `connect` if not yet connected.\n */\n async connect(options) {\n await this.waitForReady();\n return this.syncManager.connect(options, this.options.serializedSchema);\n }\n async disconnect() {\n await this.waitForReady();\n return this.syncManager.disconnect();\n }\n async dispose() {\n await this.waitForReady();\n await new Promise((resolve) => {\n // This will always be a message port since we use shared workers.\n const messagePort = this.worker.endpoint;\n // Listen for the close acknowledgment from the worker\n messagePort.addEventListener('message', (event) => {\n const payload = event.data;\n if (payload?.event === SharedSyncClientEvent.CLOSE_ACK) {\n resolve();\n }\n });\n // Signal the shared worker that this client is closing its connection to the worker\n const closeMessagePayload = {\n event: SharedSyncClientEvent.CLOSE_CLIENT,\n data: {}\n };\n messagePort.postMessage(closeMessagePayload);\n });\n await super.dispose();\n this.abortOnClose.abort();\n // Release the proxy\n this.syncManager[Comlink.releaseProxy]();\n this.worker.close();\n }\n async waitForReady() {\n return this.isInitialized;\n }\n requestCheckpoint() {\n return this.syncManager.requestCheckpoint();\n }\n updateSubscriptions(subscriptions) {\n this.syncManager.updateSubscriptions(subscriptions);\n }\n}\n//# sourceMappingURL=SharedWebStreamingSyncImplementation.js.map","import { LockType } from '@powersync/shared-internals';\nimport { WebStreamingSyncImplementation } from './WebStreamingSyncImplementation.js';\n/**\n * When multi-tab support is disabled and we don't use a shared worker for sync, only a single tab will be able to\n * acquire the sync navigator lock and start a sync iteration.\n *\n * To be able to provide _some_ multi-tab support in that configuration, this utility:\n *\n * 1. Sends sync status updates from the syncing tab to others.\n * 2. Allows other tabs to send notifications when their active sync stream subscriptions update, allowing the active\n * tab to take those subscriptions into account.\n */\nexport class TabLocalStreamingSyncImplementation extends WebStreamingSyncImplementation {\n #statusUpdated;\n #subscriptionsChanged;\n #hasSyncLock = false;\n constructor(options) {\n super(options);\n const identifier = options.identifier;\n this.#statusUpdated = new BroadcastChannel(`sync-status-${identifier}`);\n this.#subscriptionsChanged = new BroadcastChannel(`subscription-change-${identifier}`);\n this.#statusUpdated.onmessage = (event) => {\n if (event.data == 'ping') {\n this.#sendStatus(this.syncStatus);\n return;\n }\n const { core, dataFlow } = event.data;\n this.updateSyncStatus(core, dataFlow);\n };\n // Request other tabs to share their sync status.\n this.#statusUpdated.postMessage('ping');\n this.#subscriptionsChanged.onmessage = () => {\n // We can't update activeStreams since we don't know when another tab referencing them is closed. However,\n // clients will update an internal table listing streams after subscribing, and updateSubscriptions() will\n // scan that table.\n super.updateSubscriptions(this.activeStreams);\n };\n this.registerListener({\n statusChanged: (status) => this.#sendStatus(status)\n });\n }\n #sendStatus(status) {\n // Don't share sync status if this is not the tab currently syncing.\n if (this.#hasSyncLock) {\n this.#statusUpdated.postMessage(status.toJSON());\n }\n }\n updateSubscriptions(subscriptions) {\n super.updateSubscriptions(subscriptions);\n this.#subscriptionsChanged.postMessage('');\n }\n obtainLock({ callback, type, signal }) {\n const wrappedCallback = async () => {\n this.#hasSyncLock = true;\n try {\n return await callback();\n }\n finally {\n this.#hasSyncLock = false;\n }\n };\n return super.obtainLock({ callback: type == LockType.SYNC ? wrappedCallback : callback, type, signal });\n }\n async dispose() {\n this.#statusUpdated.close();\n this.#subscriptionsChanged.close();\n await super.dispose();\n }\n}\n//# sourceMappingURL=TabLocalStreamingSyncImplementation.js.map","import { LogLevels } from '@powersync/common';\nimport { BasePowerSyncDatabase, Mutex, openDatabase } from '@powersync/shared-internals';\nimport { getNavigatorLocks } from '../shared/navigator.js';\nimport { NAVIGATOR_TRIGGER_CLAIM_MANAGER } from './NavigatorTriggerClaimManager.js';\nimport { WASQLiteOpenFactory } from './adapters/wa-sqlite/WASQLiteOpenFactory.js';\nimport { SSRStreamingSyncImplementation } from './sync/SSRWebStreamingSyncImplementation.js';\nimport { SharedWebStreamingSyncImplementation } from './sync/SharedWebStreamingSyncImplementation.js';\nimport { WebRemote } from './sync/WebRemote.js';\nimport { AsyncDbAdapter } from './adapters/AsyncWebAdapter.js';\nimport { resolveAndValidateOptions } from './adapters/resolveAndValidateOptions.js';\nimport { TabLocalStreamingSyncImplementation } from './sync/TabLocalStreamingSyncImplementation.js';\n/**\n * @internal Use {@link PowerSyncDatabase} instead, this class is only used by other SDKs also needing web support.\n */\nexport class WebPowerSyncDatabase extends BasePowerSyncDatabase {\n static SHARED_MUTEX = new Mutex();\n resolvedOpenOptions;\n enableBroadcastLogs;\n constructor(options) {\n const resolvedOpenOptions = resolveAndValidateOptions('database' in options ? options.database : {});\n super(options);\n this.resolvedOpenOptions = resolvedOpenOptions;\n this.enableBroadcastLogs = options.broadcastLogs ?? true;\n }\n async _initialize() {\n if (this.database instanceof AsyncDbAdapter) {\n /**\n * While init is done automatically,\n * LockedAsyncDatabaseAdapter only exposes config after init.\n * We can explicitly wait for init here in order to access config.\n */\n await this.database.init();\n }\n // In some cases, like the SQLJs adapter, we don't pass a WebDBAdapter, so we need to check.\n if (typeof this.database.getConfiguration == 'function') {\n const config = this.database.getConfiguration();\n if (config.requiresPersistentTriggers) {\n this.triggersImpl.updateDefaults({\n useStorageByDefault: true\n });\n }\n }\n }\n generateTriggerManagerConfig() {\n return {\n // We need to share hold information between tabs for web\n claimManager: NAVIGATOR_TRIGGER_CLAIM_MANAGER\n };\n }\n openDBAdapter() {\n return openDatabase(this.options, (options) => {\n const defaultFactory = new WASQLiteOpenFactory({\n logger: this.logger,\n open: options\n });\n return defaultFactory.openDB();\n });\n }\n /**\n * Closes the database connection.\n * By default the sync stream client is only disconnected if\n * multiple tabs are not enabled.\n */\n close(options) {\n return super.close({\n // Don't disconnect by default if multiple tabs are enabled\n disconnect: options?.disconnect ?? !this.resolvedOpenOptions.enableMultiTabs\n });\n }\n async loadVersion() {\n if (this.resolvedOpenOptions.ssrMode) {\n return;\n }\n return super.loadVersion();\n }\n async resolveOfflineSyncStatus() {\n if (this.resolvedOpenOptions.ssrMode) {\n return;\n }\n return super.resolveOfflineSyncStatus();\n }\n async runExclusive(cb) {\n if (this.resolvedOpenOptions.ssrMode) {\n return WebPowerSyncDatabase.SHARED_MUTEX.runExclusive(cb);\n }\n return getNavigatorLocks().request(`lock-${this.database.name}`, cb);\n }\n generateSyncStreamImplementation(connector, options) {\n const remote = new WebRemote(connector, this.logger);\n const syncOptions = {\n ...this.options,\n ...this.commonSyncOptions(connector, options),\n remote\n };\n if (this.resolvedOpenOptions.ssrMode) {\n return new SSRStreamingSyncImplementation();\n }\n else if (this.resolvedOpenOptions.enableMultiTabs) {\n if (!this.enableBroadcastLogs) {\n const warning = `\n Multiple tabs are enabled, but broadcasting of logs is disabled.\n Logs for shared sync worker will only be available in the shared worker context\n `;\n const logger = this.options.logger;\n logger ? logger.log({ level: LogLevels.warn, message: warning }) : console.warn(warning);\n }\n if ('shareConnection' in this.database) {\n return new SharedWebStreamingSyncImplementation({\n ...syncOptions,\n db: this.database, // This should always be the case\n logLevel: this.options.sync?.logLevel ?? LogLevels.info,\n enableBroadcastLogs: this.enableBroadcastLogs\n });\n }\n this.logger.log({\n level: LogLevels.warn,\n message: \"Not using a shared sync worker because the database adapter doesn't support it.\"\n });\n }\n return new TabLocalStreamingSyncImplementation(syncOptions);\n }\n}\n/**\n * A PowerSync database which provides SQLite functionality\n * which is automatically synced.\n *\n * @example\n * ```typescript\n * export const db = new PowerSyncDatabase({\n * schema: AppSchema,\n * database: {\n * dbFilename: 'example.db'\n * }\n * });\n * ```\n */\n// Typed constructor to avoid leaking AbstractPowerSyncDatabase into the public interface\nexport const PowerSyncDatabase = WebPowerSyncDatabase;\n//# sourceMappingURL=PowerSyncDatabase.js.map"],"names":["WaSqliteFactory","isSharedWorker"],"mappings":"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"}
1
+ {"version":3,"file":"index.react_native_web.js","sources":["../lib/attachments/IndexDBFileSystemAdapter.js","../lib/db/adapters/wa-sqlite/vfs.js","../lib/db/adapters/SSRDBAdapter.js","../lib/db/adapters/wa-sqlite/DatabaseServer.js","../lib/shared/navigator.js","../lib/db/adapters/options.js","../lib/db/adapters/resolveAndValidateOptions.js","../lib/db/adapters/wa-sqlite/StatementCache.js","../lib/db/adapters/wa-sqlite/RawSqliteConnection.js","../lib/db/adapters/wa-sqlite/ConcurrentConnection.js","../lib/worker/db/MultiDatabaseServer.js","../lib/db/adapters/wa-sqlite/DatabaseClient.js","../lib/shared/tab_close_signal.js","../lib/db/adapters/acquireFromPool.js","../lib/db/adapters/AsyncWebAdapter.js","../lib/worker/client.js","../lib/db/adapters/wa-sqlite/WASQLiteOpenFactory.js","../lib/db/NavigatorTriggerClaimManager.js","../lib/db/sync/SSRWebStreamingSyncImplementation.js","../lib/worker/sync/AbstractSharedSyncClientProvider.js","../lib/db/sync/userAgent.js","../lib/db/sync/WebRemote.js","../lib/db/sync/WebStreamingSyncImplementation.js","../lib/worker/sync/SharedSyncImplementation.js","../lib/db/sync/SharedWebStreamingSyncImplementation.js","../lib/db/sync/TabLocalStreamingSyncImplementation.js","../lib/db/PowerSyncDatabase.js"],"sourcesContent":["/**\n * IndexDBFileSystemStorageAdapter implements LocalStorageAdapter using IndexedDB.\n * Suitable for web browsers and web-based environments.\n */\nexport class IndexDBFileSystemStorageAdapter {\n databaseName;\n dbPromise;\n constructor(databaseName = 'PowerSyncFiles') {\n this.databaseName = databaseName;\n }\n async initialize() {\n this.dbPromise = new Promise((resolve, reject) => {\n const request = indexedDB.open(this.databaseName, 1);\n request.onupgradeneeded = () => {\n request.result.createObjectStore('files');\n };\n request.onsuccess = () => resolve(request.result);\n request.onerror = () => reject(request.error);\n });\n }\n async clear() {\n const db = await this.dbPromise;\n return new Promise((resolve, reject) => {\n const tx = db.transaction('files', 'readwrite');\n const store = tx.objectStore('files');\n const req = store.clear();\n req.onsuccess = () => resolve();\n req.onerror = () => reject(req.error);\n });\n }\n getLocalUri(filename) {\n return `indexeddb://${this.databaseName}/files/${filename}`;\n }\n async getStore(mode = 'readonly') {\n const db = await this.dbPromise;\n const tx = db.transaction('files', mode);\n return tx.objectStore('files');\n }\n async saveFile(filePath, data) {\n const store = await this.getStore('readwrite');\n let dataToStore;\n let size;\n if (typeof data === 'string') {\n const binaryString = atob(data);\n const bytes = new Uint8Array(binaryString.length);\n for (let i = 0; i < binaryString.length; i++) {\n bytes[i] = binaryString.charCodeAt(i);\n }\n dataToStore = bytes.buffer;\n size = bytes.byteLength;\n }\n else {\n dataToStore = data;\n size = dataToStore.byteLength;\n }\n return await new Promise((resolve, reject) => {\n const req = store.put(dataToStore, filePath);\n req.onsuccess = () => resolve(size);\n req.onerror = () => reject(req.error);\n });\n }\n async readFile(fileUri, options) {\n const store = await this.getStore();\n return new Promise((resolve, reject) => {\n const req = store.get(fileUri);\n req.onsuccess = async () => {\n if (!req.result) {\n reject(new Error('File not found'));\n return;\n }\n resolve(req.result);\n };\n req.onerror = () => reject(req.error);\n });\n }\n async deleteFile(uri, options) {\n const store = await this.getStore('readwrite');\n await new Promise((resolve, reject) => {\n const req = store.delete(uri);\n req.onsuccess = () => resolve();\n req.onerror = () => reject(req.error);\n });\n }\n async fileExists(fileUri) {\n const store = await this.getStore();\n return new Promise((resolve, reject) => {\n const req = store.get(fileUri);\n req.onsuccess = () => resolve(!!req.result);\n req.onerror = () => reject(req.error);\n });\n }\n async makeDir(path) {\n // No-op for IndexedDB as it does not have a directory structure\n }\n async rmDir(path) {\n const store = await this.getStore('readwrite');\n const range = IDBKeyRange.bound(path + '/', path + '/\\uffff', false, false);\n await new Promise((resolve, reject) => {\n const req = store.delete(range);\n req.onsuccess = () => resolve();\n req.onerror = () => reject(req.error);\n });\n }\n}\n//# sourceMappingURL=IndexDBFileSystemAdapter.js.map","/**\n * List of currently tested virtual filesystems\n */\nexport var WASQLiteVFS;\n(function (WASQLiteVFS) {\n WASQLiteVFS[\"IDBBatchAtomicVFS\"] = \"IDBBatchAtomicVFS\";\n WASQLiteVFS[\"OPFSCoopSyncVFS\"] = \"OPFSCoopSyncVFS\";\n WASQLiteVFS[\"AccessHandlePoolVFS\"] = \"AccessHandlePoolVFS\";\n WASQLiteVFS[\"OPFSWriteAheadVFS\"] = \"OPFSWriteAheadVFS\";\n /**\n * A virtual file system storing data in-memory only, without persistence.\n *\n * This file system can be used in three configurations:\n *\n * 1. In shared workers (the default when available): All tabs share the same in-memory database, which is cleared\n * once the last tab is closed.\n * 2. In dedicated workers (used when `enableMultiTabs` is disabled). Each tab has its own in-memory database cleared\n * when the tab is closed. Queries are offloaded to a dedicated worker.\n * 3. In the context of the tab itself (used when both `enableMultiTabs` and `useWebWorker` are disabled). The per-tab\n * database is hosted in the tab itself, and queries run synchronously. This is _a lot_ faster than any other\n * single-threadedVFS, but can block JavaScript for computationally-intensive queries.\n *\n * This VFS primarily intended for development, but it also useful for online-first deployments not syncing large\n * amounts of data, as it is quicker to start up.\n */\n WASQLiteVFS[\"InMemoryVfs\"] = \"InMemoryVFS\";\n})(WASQLiteVFS || (WASQLiteVFS = {}));\nexport function vfsRequiresDedicatedWorkers(vfs) {\n return vfs != WASQLiteVFS.IDBBatchAtomicVFS && vfs != WASQLiteVFS.InMemoryVfs;\n}\nasync function asyncModuleFactory(encryptionKey) {\n if (encryptionKey) {\n const { default: factory } = await import('@journeyapps/wa-sqlite/dist/mc-wa-sqlite-async.mjs');\n return factory();\n }\n else {\n const { default: factory } = await import('@journeyapps/wa-sqlite/dist/wa-sqlite-async.mjs');\n return factory();\n }\n}\nasync function syncModuleFactory(encryptionKey) {\n if (encryptionKey) {\n const { default: factory } = await import('@journeyapps/wa-sqlite/dist/mc-wa-sqlite.mjs');\n return factory();\n }\n else {\n const { default: factory } = await import('@journeyapps/wa-sqlite/dist/wa-sqlite.mjs');\n return factory();\n }\n}\n/**\n * @internal\n */\nexport async function loadModuleAndVfs({ vfs, filename, encryptionKey }) {\n let moduleFactory = syncModuleFactory;\n let resolveVfs;\n switch (vfs) {\n case WASQLiteVFS.IDBBatchAtomicVFS: {\n moduleFactory = asyncModuleFactory;\n const { IDBBatchAtomicVFS } = await import('@journeyapps/wa-sqlite/src/examples/IDBBatchAtomicVFS.js');\n resolveVfs = (module) => {\n // @ts-expect-error The types for this static method are missing upstream\n return IDBBatchAtomicVFS.create(filename, module, { lockPolicy: 'exclusive' });\n };\n break;\n }\n case WASQLiteVFS.AccessHandlePoolVFS: {\n // @ts-expect-error The types for this import are missing upstream\n const { AccessHandlePoolVFS } = await import('@journeyapps/wa-sqlite/src/examples/AccessHandlePoolVFS.js');\n resolveVfs = (module) => AccessHandlePoolVFS.create(filename, module);\n break;\n }\n case WASQLiteVFS.OPFSCoopSyncVFS: {\n // @ts-expect-error The types for this import are missing upstream\n const { OPFSCoopSyncVFS } = await import('@journeyapps/wa-sqlite/src/examples/OPFSCoopSyncVFS.js');\n resolveVfs = (module) => OPFSCoopSyncVFS.create(filename, module);\n break;\n }\n case WASQLiteVFS.OPFSWriteAheadVFS: {\n // @ts-expect-error The types for this import are missing upstream\n const { OPFSWriteAheadVFS } = await import('@journeyapps/wa-sqlite/src/examples/OPFSWriteAheadVFS.js');\n resolveVfs = (module) => OPFSWriteAheadVFS.create(filename, module, {});\n break;\n }\n case WASQLiteVFS.InMemoryVfs: {\n const { MemoryVFS } = await import('@journeyapps/wa-sqlite/src/examples/MemoryVFS.js');\n // @ts-expect-error The types for this static method are missing upstream\n resolveVfs = (module) => MemoryVFS.create(filename, module);\n break;\n }\n }\n const module = await moduleFactory(encryptionKey);\n return { module, vfs: await resolveVfs(module) };\n}\n//# sourceMappingURL=vfs.js.map","import { DBAdapter, LockContext } from '@powersync/common';\nimport { Mutex } from '@powersync/shared-internals';\nconst MOCK_QUERY_RESPONSE = {\n rowsAffected: 0,\n columnNames: [],\n rawRows: []\n};\n/**\n * Implements a Mock DB adapter for use in Server Side Rendering (SSR).\n * This adapter will return empty results for queries, which will allow\n * server rendered views to initially generate scaffolding components\n */\nexport class SSRDBAdapter extends DBAdapter {\n name;\n readMutex;\n writeMutex;\n constructor() {\n super();\n this.name = 'SSR DB';\n this.readMutex = new Mutex();\n this.writeMutex = new Mutex();\n }\n close() { }\n async readLock(fn, options) {\n return fn(new StubLockContext());\n }\n async writeLock(fn, options) {\n return fn(new StubLockContext());\n }\n async refreshSchema() { }\n}\nclass StubLockContext extends LockContext {\n async executeRaw() {\n return MOCK_QUERY_RESPONSE;\n }\n}\n//# sourceMappingURL=SSRDBAdapter.js.map","import { LogLevels } from '@powersync/common';\n/**\n * Access to a WA-sqlite connection that can be shared with multiple clients sending queries over an RPC protocol built\n * with the Comlink package.\n */\nexport class DatabaseServer {\n #options;\n #nextClientId = 0;\n #activeClients = new Set();\n // TODO: Don't use a broadcast channel for connections managed by a shared worker.\n #updateBroadcastChannel;\n #clientTableListeners = new Set();\n constructor(options) {\n this.#options = options;\n const inner = options.inner;\n this.#updateBroadcastChannel = new BroadcastChannel(`${inner.options.filename}-table-updates`);\n this.#updateBroadcastChannel.onmessage = ({ data }) => {\n this.#pushTableUpdateToClients(data);\n };\n }\n #pushTableUpdateToClients(changedTables) {\n for (const listener of this.#clientTableListeners) {\n listener.postMessage(changedTables);\n }\n }\n get #inner() {\n return this.#options.inner;\n }\n get #logger() {\n return this.#options.logger;\n }\n /**\n * Called by clients when they wish to connect to this database.\n *\n * @param lockName A lock that is currently held by the client. When the lock is returned, we know the client is gone\n * and that we need to clean up resources.\n */\n async connect(lockName) {\n let isOpen = true;\n const clientId = this.#nextClientId++;\n this.#activeClients.add(clientId);\n let connectionLeases = new Map();\n let currentTableListener;\n function requireOpen() {\n if (!isOpen) {\n throw new Error('Client has already been closed');\n }\n }\n function requireOpenAndLease(lease) {\n requireOpen();\n const token = connectionLeases.get(lease);\n if (!token) {\n throw new Error('Attempted to use a connection lease that has already been returned.');\n }\n return token;\n }\n const close = async () => {\n if (isOpen) {\n isOpen = false;\n if (currentTableListener) {\n this.#clientTableListeners.delete(currentTableListener);\n }\n // If the client holds a connection lease it hasn't returned, return that now.\n for (const { lease } of connectionLeases.values()) {\n this.#logger.log({ level: LogLevels.debug, message: `Closing connection lease that hasn't been returned.` });\n await lease.returnLease();\n }\n this.#activeClients.delete(clientId);\n if (this.#activeClients.size == 0) {\n await this.forceClose();\n }\n else {\n this.#logger.log({\n level: LogLevels.debug,\n message: 'Keeping underlying connection active since its used by other clients.'\n });\n }\n }\n };\n if (lockName) {\n navigator.locks.request(lockName, {}, () => {\n close();\n });\n }\n return {\n close,\n debugIsAutoCommit: async () => {\n return this.#inner.unsafeUseInner().isAutoCommit();\n },\n requestAccess: async (write, timeoutMs) => {\n requireOpen();\n const lease = await this.#inner.acquireConnection(timeoutMs != null ? AbortSignal.timeout(timeoutMs) : undefined);\n if (!isOpen) {\n // Race between requestAccess and close(), the connection was closed while we tried to acquire a lease.\n await lease.returnLease();\n return requireOpen();\n }\n const token = crypto.randomUUID();\n connectionLeases.set(token, { lease, write });\n return token;\n },\n completeAccess: async (token) => {\n const lease = requireOpenAndLease(token);\n connectionLeases.delete(token);\n try {\n if (lease.write) {\n // Collect update hooks invoked while the client had the write connection.\n const { rawRows } = await lease.lease.use((conn) => conn.execute(`SELECT powersync_update_hooks('get')`));\n if (rawRows.length) {\n const updatedTables = JSON.parse(rawRows[0][0]);\n if (updatedTables.length) {\n this.#updateBroadcastChannel.postMessage(updatedTables);\n this.#pushTableUpdateToClients(updatedTables);\n }\n }\n }\n }\n finally {\n await lease.lease.returnLease();\n }\n },\n execute: async (token, sql, params) => {\n const { lease } = requireOpenAndLease(token);\n return await lease.use((db) => db.execute(sql, params));\n },\n executeBatch: async (token, sql, params) => {\n const { lease } = requireOpenAndLease(token);\n return await lease.use((db) => db.executeBatch(sql, params));\n },\n setUpdateListener: async (listener) => {\n requireOpen();\n if (currentTableListener) {\n this.#clientTableListeners.delete(currentTableListener);\n }\n currentTableListener = listener;\n if (listener) {\n this.#clientTableListeners.add(listener);\n }\n }\n };\n }\n async forceClose() {\n this.#logger.log({\n level: LogLevels.debug,\n message: `Closing connection to ${JSON.stringify(this.#inner.options)}.`\n });\n const connection = this.#inner;\n this.#options.onClose();\n this.#updateBroadcastChannel.close();\n await connection.close();\n }\n}\n//# sourceMappingURL=DatabaseServer.js.map","export const getNavigatorLocks = () => {\n if ('locks' in navigator && navigator.locks) {\n return navigator.locks;\n }\n throw new Error('Navigator locks are not available in an insecure context. Use a secure context such as HTTPS or http://localhost.');\n};\n//# sourceMappingURL=navigator.js.map","export var TemporaryStorageOption;\n(function (TemporaryStorageOption) {\n TemporaryStorageOption[\"MEMORY\"] = \"memory\";\n TemporaryStorageOption[\"FILESYSTEM\"] = \"file\";\n})(TemporaryStorageOption || (TemporaryStorageOption = {}));\n//# sourceMappingURL=options.js.map","import { LogLevels } from '@powersync/common';\nimport { TemporaryStorageOption } from './options.js';\nimport { vfsRequiresDedicatedWorkers, WASQLiteVFS } from './wa-sqlite/vfs.js';\n/**\n * The maximum length of a db filename we support.\n *\n * We configure the same on WA-SQLite (which otherwise defaults to a maximum length of 64). We don't want to support\n * very long path names as Safari maps OPFS files directly to OS files, and APFS has a 255-byte filename limit. Since\n * some VFS append additional characters for pooled file access handles, we want to stay well below that.\n */\nexport const maxPathNameLength = 128;\n/**\n * @internal\n */\nexport function resolveAndValidateOptions(options) {\n const defaults = {\n disableSSRWarning: false,\n ssrMode: !('window' in globalThis),\n /**\n * Multiple tabs are by default not supported on Android, iOS and Safari.\n * Other platforms will have multiple tabs enabled by default.\n */\n enableMultiTabs: typeof globalThis.navigator !== 'undefined' && // For SSR purposes\n typeof SharedWorker !== 'undefined' &&\n !navigator.userAgent.match(/(Android|iPhone|iPod|iPad)/i) &&\n !window.safari,\n useWebWorker: true,\n databaseWorkerLogLevel: LogLevels.info,\n temporaryStorage: TemporaryStorageOption.MEMORY,\n cacheSizeKb: 50 * 1024,\n encryptionKey: undefined,\n vfs: WASQLiteVFS.IDBBatchAtomicVFS,\n additionalReaders: 1\n };\n const resolved = Object.assign(defaults, options);\n if (vfsRequiresDedicatedWorkers(resolved.vfs) && !resolved.useWebWorker) {\n throw new Error(`Invalid configuration: The 'useWebWorker' flag must be true when using an OPFS-based VFS (${resolved.vfs}).`);\n }\n return resolved;\n}\n//# sourceMappingURL=resolveAndValidateOptions.js.map","export class PreparedStatementCache {\n #size;\n // Note that Map preserves insertion order, which allows using it as an LRU\n // cache (with the first element being the first element to evict).\n #statements = new Map();\n constructor(size) {\n this.#size = size;\n }\n /**\n * Attempts to look up the cached sql statement, if it's currently cached.\n */\n lookup(sql) {\n const foundStatement = this.#statements.get(sql);\n if (foundStatement != null) {\n // Delete and re-insert to move to the end (most-recently-used position).\n this.#statements.delete(sql);\n this.#statements.set(sql, foundStatement);\n return foundStatement;\n }\n return null;\n }\n /**\n * Adds a new statement into the cache.\n *\n * If that exceeds the target size of the statement cache, returns an old statement to evict.\n * The caller is responsible for freeing that statement.\n */\n addStatement(sql, statement) {\n this.#statements.set(sql, statement);\n if (this.#statements.size > this.#size) {\n for (const [k, v] of this.#statements.entries()) {\n this.#statements.delete(k);\n return v;\n }\n }\n return null;\n }\n drain() {\n const values = [...this.#statements.values()];\n this.#statements.clear();\n return values;\n }\n}\n//# sourceMappingURL=StatementCache.js.map","import { Factory as WaSqliteFactory, SQLITE_ROW } from '@journeyapps/wa-sqlite';\nimport { loadModuleAndVfs } from './vfs.js';\nimport { maxPathNameLength } from '../resolveAndValidateOptions.js';\nimport { PreparedStatementCache } from './StatementCache.js';\n/**\n * A small wrapper around WA-sqlite to help with opening databases and running statements by preparing them internally.\n *\n * This is an internal class, and it must never be used directly. Wrappers are required to ensure raw connections aren't\n * used concurrently across tabs.\n */\nexport class RawSqliteConnection {\n options;\n _sqliteAPI = null;\n sqlite3_stmt_isexplain;\n /**\n * The `sqlite3*` connection pointer.\n */\n db = 0;\n statementCache;\n constructor(options) {\n this.options = options;\n this.statementCache =\n options.preparedStatementsCache > 0 ? new PreparedStatementCache(options.preparedStatementsCache) : null;\n }\n get isOpen() {\n return this.db != 0;\n }\n async init() {\n const { module, vfs } = await loadModuleAndVfs(this.options);\n await this.initWithModule(module, vfs);\n }\n async initWithModule(module, vfs) {\n const api = (this._sqliteAPI = await this.openSQLiteAPI(module, vfs));\n this.db = await api.open_v2(this.options.filename, this.options.readonly ? 1 /* SQLITE_OPEN_READONLY */ : 6 /* SQLITE_OPEN_READWRITE | SQLITE_OPEN_CREATE */);\n await this.executeRaw(`PRAGMA temp_store = ${this.options.temporaryStorage};`);\n if (this.options.encryptionKey) {\n const escapedKey = this.options.encryptionKey.replaceAll(\"'\", \"''\");\n await this.executeRaw(`PRAGMA key = '${escapedKey}';`);\n }\n await this.executeRaw(`PRAGMA cache_size = -${this.options.cacheSizeKb};`);\n await this.executeRaw(`SELECT powersync_update_hooks('install');`);\n }\n async openSQLiteAPI(module, vfs) {\n vfs.mxPathname = maxPathNameLength;\n this.sqlite3_stmt_isexplain = module.cwrap('sqlite3_stmt_isexplain', 'int', ['int']);\n const sqlite3 = WaSqliteFactory(module);\n sqlite3.vfs_register(vfs, true);\n /**\n * Register the PowerSync core SQLite extension\n */\n module.ccall('powersync_init_static', 'int', []);\n /**\n * Create the multiple cipher vfs if an encryption key is provided\n */\n if (this.options.encryptionKey) {\n const createResult = module.ccall('sqlite3mc_vfs_create', 'int', ['string', 'int'], [this.options.filename, 1]);\n if (createResult !== 0) {\n throw new Error('Failed to create multiple cipher vfs, Database encryption will not work');\n }\n }\n return sqlite3;\n }\n requireSqlite() {\n if (!this._sqliteAPI) {\n throw new Error(`Initialization has not completed`);\n }\n return this._sqliteAPI;\n }\n /**\n * Checks if the database connection is in autocommit mode.\n * @returns true if in autocommit mode, false if in a transaction\n */\n isAutoCommit() {\n return this.requireSqlite().get_autocommit(this.db) != 0;\n }\n async execute(sql, bindings) {\n const resultSet = await this.executeSingleStatementRaw(sql, bindings);\n return this.wrapQueryResults(this.requireSqlite(), resultSet);\n }\n async executeBatch(sql, bindings) {\n const results = [];\n const api = this.requireSqlite();\n for await (const stmt of api.statements(this.db, sql)) {\n let columns;\n for (const parameterSet of bindings) {\n const rs = await this.stepThroughStatement(api, stmt, parameterSet, columns, false);\n results.push(this.wrapQueryResults(api, rs));\n }\n // executeBatch can only use a single statement\n break;\n }\n return results;\n }\n wrapQueryResults(api, { rawRows, columnNames }) {\n return {\n rowsAffected: api.changes(this.db),\n insertId: api.last_insert_id(this.db),\n autocommit: api.get_autocommit(this.db) != 0,\n rawRows,\n columnNames\n };\n }\n /**\n * This executes a single statement using SQLite3 and returns the results as a {@link RawResultSet}.\n */\n async executeSingleStatementRaw(sql, bindings) {\n const results = await this.executeRaw(sql, bindings);\n return results.length ? results[0] : { columnNames: [], rawRows: [] };\n }\n async executeRaw(sql, bindings) {\n const results = [];\n const api = this.requireSqlite();\n for await (const stmt of this.cachedStatements(api, sql)) {\n let columns;\n const rs = await this.stepThroughStatement(api, stmt, bindings ?? [], columns);\n columns = rs.columnNames;\n if (columns.length) {\n results.push(rs);\n }\n // When binding parameters, only a single statement is executed.\n if (bindings) {\n break;\n }\n }\n return results;\n }\n async stepThroughStatement(api, stmt, bindings, knownColumns, includeResults = true) {\n // TODO not sure why this is needed currently, but booleans break\n bindings.forEach((b, index, arr) => {\n if (typeof b == 'boolean') {\n arr[index] = b ? 1 : 0;\n }\n });\n api.reset(stmt);\n if (bindings) {\n api.bind_collection(stmt, bindings);\n }\n const rows = [];\n while ((await api.step(stmt)) === SQLITE_ROW) {\n if (includeResults) {\n const row = api.row(stmt);\n rows.push(row);\n }\n }\n knownColumns ??= api.column_names(stmt);\n return { columnNames: knownColumns, rawRows: rows };\n }\n async close() {\n if (this.isOpen) {\n const api = this.requireSqlite();\n if (this.statementCache) {\n for (const stmt of this.statementCache.drain()) {\n await api.finalize(stmt);\n }\n }\n await api.close(this.db);\n this.db = 0;\n }\n }\n async *cachedStatements(api, sql) {\n {\n const existing = this.statementCache?.lookup(sql);\n if (existing != null) {\n yield existing;\n return;\n }\n }\n const inner = api.statements(this.db, sql, { unscoped: true });\n const preparedStatements = [];\n try {\n for await (const stmt of inner) {\n preparedStatements.push(stmt);\n yield stmt;\n }\n }\n finally {\n // We can only cache statements if the sql text corresponds to a single statement, otherwise it's not clear what\n // portion of the original sql text to use as a key.\n if (preparedStatements.length === 1 && this.statementCache) {\n const stmt = preparedStatements[0];\n // Don't cache EXPLAIN statements, their result becomes invalid after schema changes.\n if (this.sqlite3_stmt_isexplain(stmt) == 0) {\n const evicted = this.statementCache.addStatement(sql, stmt);\n if (evicted != null) {\n await api.finalize(evicted);\n }\n return;\n }\n }\n // We're not caching statements, so finalize them.\n for (const stmt of preparedStatements) {\n await api.finalize(stmt);\n }\n }\n }\n}\n//# sourceMappingURL=RawSqliteConnection.js.map","import { Mutex } from '@powersync/shared-internals';\n/**\n * A wrapper around a {@link RawSqliteConnection} allowing multiple tabs to access it.\n *\n * To allow potentially concurrent accesses from different clients, this requires a local mutex implementation here.\n *\n * Note that instances of this class are not safe to proxy across context boundaries with comlink! We need to be able to\n * rely on mutexes being returned reliably, so additional checks to detect say a client tab closing are required to\n * avoid deadlocks.\n */\nexport class ConcurrentSqliteConnection {\n inner;\n /**\n * An outer mutex ensuring at most one {@link ConnectionLeaseToken} can exist for this connection at a time.\n *\n * If null, we'll use navigator locks instead.\n */\n leaseMutex;\n /**\n * @param needsNavigatorLocks Whether access to the database needs an additional navigator lock guard.\n *\n * While {@link ConcurrentSqliteConnection} prevents concurrent access to a database _connection_, it's possible we\n * might have multiple connections to the same physical database (e.g. if multiple tabs use dedicated workers).\n * In those setups, we use navigator locks instead of an internal mutex to guard access..\n */\n constructor(inner, needsNavigatorLocks) {\n this.inner = inner;\n this.leaseMutex = needsNavigatorLocks ? null : new Mutex();\n }\n get options() {\n return this.inner.options;\n }\n acquireMutex(abort) {\n if (this.leaseMutex) {\n return this.leaseMutex.acquire(abort);\n }\n return new Promise((resolve, reject) => {\n const options = { signal: abort };\n navigator.locks\n .request(`db-lock-${this.options.filename}`, options, (_) => {\n return new Promise((returnLock) => {\n return resolve(() => {\n returnLock();\n });\n });\n })\n .catch(reject);\n });\n }\n // Unsafe, unguarded access to the SQLite connection.\n unsafeUseInner() {\n return this.inner;\n }\n /**\n * @returns A {@link ConnectionLeaseToken}. Until that token is returned, no other client can use the database.\n */\n async acquireConnection(abort) {\n const returnMutex = await this.acquireMutex(abort);\n const token = new ConnectionLeaseToken(returnMutex, this.inner);\n try {\n // Assert that the inner connection is initialized at this point, fail early if it's not.\n this.inner.requireSqlite();\n // If a previous client was interrupted in the middle of a transaction AND this is a shared worker, it's possible\n // for the connection to still be in a transaction. To avoid inconsistent state, we roll back connection leases\n // that haven't been comitted.\n if (!this.inner.isAutoCommit()) {\n await this.inner.executeRaw('ROLLBACK');\n }\n }\n catch (e) {\n returnMutex();\n throw e;\n }\n return token;\n }\n async close() {\n const returnMutex = await this.acquireMutex();\n try {\n await this.inner.close();\n }\n finally {\n returnMutex();\n }\n }\n}\n/**\n * An instance representing temporary exclusive access to a {@link ConcurrentSqliteConnection}.\n */\nexport class ConnectionLeaseToken {\n returnMutex;\n connection;\n /** Ensures that the client with access to this token can't run statements concurrently. */\n useMutex = new Mutex();\n closed = false;\n constructor(returnMutex, connection) {\n this.returnMutex = returnMutex;\n this.connection = connection;\n }\n /**\n * Returns this lease, allowing another client to use the database connection.\n */\n async returnLease() {\n await this.useMutex.runExclusive(async () => {\n if (!this.closed) {\n this.closed = true;\n this.returnMutex();\n }\n });\n }\n /**\n * This should only be used internally, since the callback must not use the raw connection after resolving.\n */\n async use(callback) {\n return await this.useMutex.runExclusive(async () => {\n if (this.closed) {\n throw new Error('lease token has already been closed');\n }\n return await callback(this.connection);\n });\n }\n}\n//# sourceMappingURL=ConcurrentConnection.js.map","import { LogLevels } from '@powersync/common';\nimport * as Comlink from 'comlink';\nimport { DatabaseServer } from '../../db/adapters/wa-sqlite/DatabaseServer.js';\nimport { getNavigatorLocks } from '../../shared/navigator.js';\nimport { RawSqliteConnection } from '../../db/adapters/wa-sqlite/RawSqliteConnection.js';\nimport { ConcurrentSqliteConnection } from '../../db/adapters/wa-sqlite/ConcurrentConnection.js';\nimport { WASQLiteVFS } from '../../db/adapters/wa-sqlite/vfs.js';\nimport { Mutex } from '@powersync/shared-internals';\nconst OPEN_DB_LOCK = 'open-wasqlite-db';\n/**\n * Shared state to manage multiple database connections hosted by a worker.\n */\nexport class MultiDatabaseServer {\n logger;\n #activeDatabases = new Map();\n #localOpenLock = new Mutex();\n constructor(logger) {\n this.logger = logger;\n }\n async handleConnection({ logLevel, database, lockName }) {\n const logger = {\n log: (record) => {\n if (record.level >= logLevel)\n this.logger.log(record);\n }\n };\n return Comlink.proxy(await this.openConnectionLocally(logger, database, lockName));\n }\n async connectToExisting(name, lockName) {\n return getNavigatorLocks().request(OPEN_DB_LOCK, async () => {\n const server = this.#activeDatabases.get(name);\n if (server == null) {\n throw new Error(`connectToExisting(${name}) failed because the worker doesn't own a database with that name.`);\n }\n return Comlink.proxy(await server.connect(lockName));\n });\n }\n async openConnectionLocally(logger, options, lockName) {\n // Especially on Firefox, we're sometimes seeing \"NoModificationAllowedError\"s when opening OPFS databases we can\n // work around by retrying.\n const maxAttempts = 3;\n let server;\n for (let count = 0; count < maxAttempts - 1; count++) {\n try {\n server = await this.#databaseOpenAttempt(logger, options);\n }\n catch (error) {\n this.logger.log({\n level: LogLevels.warn,\n message: `Attempt ${count + 1} of ${maxAttempts} to open database failed, retrying in 1 second...`,\n error\n });\n await new Promise((resolve) => setTimeout(resolve, 1000));\n }\n }\n // Final attempt if we haven't been able to open the server - rethrow errors if we still can't open.\n server ??= await this.#databaseOpenAttempt(logger, options);\n return server.connect(lockName);\n }\n async #databaseOpenAttempt(logger, options) {\n const { filename, readonly, vfs } = options;\n // We don't need navigator locks for shared workers because all queries run in this shared worker exclusively.\n // For read-only connections, we use a VFS that supports concurrent reads (so a single lock on the connection is\n // fine). In-memory databases either run in a shared worker or aren't shared across tabs at all, so the internal\n // lock is enough.\n const needsNavigatorLocks = !(isSharedWorker || readonly || vfs == WASQLiteVFS.InMemoryVfs);\n const activeDatabases = this.#activeDatabases;\n async function openDatabase() {\n let server = activeDatabases.get(filename);\n if (server == null) {\n const connection = new RawSqliteConnection(options);\n const withSafeConcurrency = new ConcurrentSqliteConnection(connection, needsNavigatorLocks);\n // Initializing the RawSqliteConnection will run some pragmas that might write to the database file, so we want\n // to do that in an exclusive lock. Note that OPEN_DB_LOCK is not enough for that, as another tab might have\n // already created a connection (and is thus outside of OPEN_DB_LOCK) while currently writing to it.\n const returnLease = await withSafeConcurrency.acquireMutex();\n try {\n await connection.init();\n }\n catch (e) {\n returnLease();\n await connection.close();\n throw e;\n }\n returnLease();\n const onClose = () => activeDatabases.delete(filename);\n server = new DatabaseServer({\n inner: withSafeConcurrency,\n logger,\n onClose\n });\n activeDatabases.set(filename, server);\n }\n return server;\n }\n if (needsNavigatorLocks) {\n return getNavigatorLocks().request(OPEN_DB_LOCK, openDatabase);\n }\n else {\n // Even if we don't need navigator locks, this avoids a race between the activeDatabases.get() call, the async\n // open logic and the final activeDatabases.set() step.\n return this.#localOpenLock.runExclusive(openDatabase);\n }\n }\n closeAll() {\n const existingDatabases = [...this.#activeDatabases.values()];\n return Promise.all(existingDatabases.map((db) => {\n db.forceClose();\n }));\n }\n}\nexport const isSharedWorker = 'SharedWorkerGlobalScope' in globalThis;\n//# sourceMappingURL=MultiDatabaseServer.js.map","import { LockContext, DBAdapter, queryResultWithoutRows } from '@powersync/common';\nimport * as Comlink from 'comlink';\nimport { ConnectionClosedError } from '@powersync/shared-internals';\n/**\n * A single-connection {@link ConnectionPool} implementation based on a worker connection.\n */\nexport class DatabaseClient extends DBAdapter {\n options;\n config;\n #connection;\n #shareConnectionAbortController = new AbortController();\n #receiveTableUpdates;\n constructor(options, config) {\n super();\n this.options = options;\n this.config = config;\n this.#connection = {\n connection: options.connection,\n notifyRemoteClosed: options.remoteCanCloseUnexpectedly ? new AbortController() : undefined,\n traceQueries: config.debugMode === true\n };\n const { port1, port2 } = new MessageChannel();\n options.connection.setUpdateListener(Comlink.transfer(port1, [port1]));\n this.#receiveTableUpdates = port2;\n port2.onmessage = (event) => {\n const tables = event.data;\n const notification = {\n tables\n };\n this.iterateListeners((l) => {\n l.tablesUpdated && l.tablesUpdated(notification);\n });\n };\n }\n get name() {\n return this.config.dbFilename;\n }\n /**\n * Marks the remote as closed.\n *\n * This can sometimes happen outside of our control, e.g. when a shared worker requests a connection from a tab. When\n * it happens, all outstanding requests on this pool would never resolve. To avoid livelocks in this scenario, we\n * throw on all outstanding promises and forbid new calls.\n */\n markRemoteClosed() {\n // Can non-null assert here because this function is only supposed to be called when remoteCanCloseUnexpectedly was\n // set.\n this.#connection.notifyRemoteClosed.abort();\n }\n async close() {\n // This connection is no longer shared, so we can close locks held for shareConnection calls.\n this.#shareConnectionAbortController.abort();\n this.#receiveTableUpdates.close();\n await useConnectionState(this.#connection, (c) => c.close(), true);\n this.options.onClose?.();\n this.options.source?.[Comlink.releaseProxy]();\n }\n readLock(fn, options) {\n return this.#lock(false, fn, options);\n }\n writeLock(fn, options) {\n return this.#lock(true, fn, options);\n }\n async #lock(write, fn, options) {\n const token = await useConnectionState(this.#connection, (c) => c.requestAccess(write, options?.timeoutMs));\n try {\n return await fn(new ClientLockContext(this.#connection, token));\n }\n finally {\n await useConnectionState(this.#connection, (c) => c.completeAccess(token));\n }\n }\n async refreshSchema() {\n // Currently a no-op on the web.\n }\n async shareConnection() {\n /**\n * Hold a navigator lock in order to avoid features such as Chrome's frozen tabs,\n * or Edge's sleeping tabs from pausing the thread for this connection.\n * This promise resolves once a lock is obtained.\n * This lock will be held as long as this connection is open.\n * The `shareConnection` method should not be called on multiple tabs concurrently.\n */\n const abort = this.#shareConnectionAbortController;\n const source = this.options.source;\n if (source == null) {\n throw new Error(`shareConnection() is only available for connections based by workers.`);\n }\n await new Promise((resolve, reject) => navigator.locks\n .request(`shared-connection-${this.name}-${Date.now()}-${Math.round(Math.random() * 10000)}`, {\n signal: abort.signal\n }, async () => {\n resolve();\n // Free the lock when the connection is already closed.\n if (abort.signal.aborted) {\n return;\n }\n // Hold the lock while the shared connection is in use.\n await new Promise((releaseLock) => {\n abort.signal.addEventListener('abort', () => {\n releaseLock();\n });\n });\n })\n // We aren't concerned with abort errors here\n .catch((ex) => {\n if (ex.name == 'AbortError') {\n resolve();\n }\n else {\n reject(ex);\n }\n }));\n const newPort = await source[Comlink.createEndpoint]();\n return { port: newPort, identifier: this.name };\n }\n getConfiguration() {\n return this.config;\n }\n}\n/**\n * A {@link LockContext} implemented by sending commands to a worker.\n *\n * While an instance is active, it has exclusive access to the underlying database connection (as represented by its\n * token).\n */\nclass ClientLockContext extends LockContext {\n #connection;\n #token;\n constructor(connection, token) {\n super();\n this.#connection = connection;\n this.#token = token;\n }\n /**\n * Requests an operation from the worker, potentially tracing it if that option has been enabled.\n */\n async maybeTrace(fn, describeForTrace) {\n if (this.#connection.traceQueries) {\n const start = performance.now();\n const description = describeForTrace();\n try {\n const r = await useConnectionState(this.#connection, fn);\n performance.measure(`[SQL] ${description}`, { start });\n return r;\n }\n catch (e) {\n performance.measure(`[SQL] [ERROR: ${e.message}] ${description}`, { start });\n throw e;\n }\n }\n else {\n return useConnectionState(this.#connection, fn);\n }\n }\n async executeRaw(query, params) {\n return await this.#executeOnWorker(query, params);\n }\n async #executeOnWorker(query, params) {\n return this.maybeTrace((c) => c.execute(this.#token, query, params), () => query);\n }\n async executeBatch(query, params = []) {\n const results = await this.maybeTrace((c) => c.executeBatch(this.#token, query, params), () => `${query} (batch of ${params.length})`);\n const result = { insertId: undefined, rowsAffected: 0 };\n for (const source of results) {\n result.insertId = source.insertId;\n result.rowsAffected = (result.rowsAffected ?? 0) + source.rowsAffected;\n }\n return queryResultWithoutRows(result);\n }\n}\nasync function useConnectionState(state, workerPromise, fireActionOnAbort = false) {\n const controller = state.notifyRemoteClosed;\n if (controller) {\n return new Promise((resolve, reject) => {\n if (controller.signal.aborted) {\n reject(new ConnectionClosedError('Called operation on closed remote'));\n if (!fireActionOnAbort) {\n // Don't run the operation if we're going to reject\n // We might want to fire-and-forget the operation in some cases (like a close operation)\n return;\n }\n }\n function handleAbort() {\n reject(new ConnectionClosedError('Remote peer closed with request in flight'));\n }\n function completePromise(action) {\n controller.signal.removeEventListener('abort', handleAbort);\n action();\n }\n controller.signal.addEventListener('abort', handleAbort);\n workerPromise(state.connection)\n .then((data) => completePromise(() => resolve(data)))\n .catch((e) => completePromise(() => reject(e)));\n });\n }\n else {\n // Can't close, so just return the inner worker promise unguarded.\n return workerPromise(state.connection);\n }\n}\n//# sourceMappingURL=DatabaseClient.js.map","import { getNavigatorLocks } from './navigator.js';\n/**\n * Requests a random lock that will be released once the optional signal is aborted (or, if no signal is given, when the\n * tab is closed).\n *\n * This allows sending the name of the lock to another context (e.g. a shared worker), which will also attempt to\n * acquire it. Since the lock is returned when the tab is closed, this allows the shared worker to free resources\n * assocatiated with this tab.\n *\n * We take hold of this lock as soon-as-possible in order to cater for potentially closed tabs.\n */\nexport function generateTabCloseSignal(abort) {\n return new Promise((resolve, reject) => {\n const options = { signal: abort };\n getNavigatorLocks()\n .request(`tab-close-signal-${crypto.randomUUID()}`, options, (lock) => {\n resolve(lock.name);\n return new Promise((resolve) => {\n if (abort) {\n abort.addEventListener('abort', () => resolve());\n }\n });\n })\n .catch(reject);\n });\n}\n//# sourceMappingURL=tab_close_signal.js.map","/**\n * Internal helper function to acquire a connection from a pool that has a designated writer, additional readers, and\n * also allows dispatching reads to the writer.\n */\nexport async function acquireFromPool(writerMutex, writer, readers, callback, options, allowReadOnly) {\n const abortController = new AbortController();\n const abortSignal = abortController.signal;\n let timeout = null;\n let release;\n if (options?.timeoutMs) {\n timeout = setTimeout(() => abortController.abort('requesting database timed out'), options.timeoutMs);\n }\n try {\n if (allowReadOnly) {\n let connection;\n // Even if we have a pool of read connections, it's typically very small and we assume that most queries are\n // reads. So, we want to request any connection from the read pool and the dedicated write connection (which\n // can also serve reads). We race for the first connection we can obtain this way, and then abort the other\n // request.\n [connection, release] = await new Promise((resolve, reject) => {\n let didComplete = false;\n function complete() {\n didComplete = true;\n abortController.abort();\n }\n function completeSuccess(connection, returnFn) {\n if (didComplete) {\n // We're not going to use this connection, so return it immediately.\n returnFn();\n }\n else {\n complete();\n resolve([connection, returnFn]);\n }\n }\n function completeError(error) {\n // We either have a working connection already, or we've rejected the promise. Either way, we don't need\n // to do either thing again.\n if (didComplete)\n return;\n complete();\n reject(error);\n }\n writerMutex.acquire(abortSignal).then((unlock) => completeSuccess(writer, unlock), completeError);\n readers?.requestOne(abortSignal).then(({ item, release }) => completeSuccess(item, release), completeError);\n });\n return await callback(connection);\n }\n else {\n return await writerMutex.runExclusive(() => callback(writer), abortSignal);\n }\n }\n finally {\n if (timeout != null) {\n clearTimeout(timeout);\n }\n release?.();\n }\n}\n//# sourceMappingURL=acquireFromPool.js.map","import { DBAdapter } from '@powersync/common';\nimport { Mutex, Semaphore } from '@powersync/shared-internals';\nimport { acquireFromPool } from './acquireFromPool.js';\n/**\n * A connection pool implementation delegating to another pool opened asynchronnously.\n */\nexport class AsyncDbAdapter extends DBAdapter {\n name;\n state;\n resolvedWriter;\n pendingListeners = new Set();\n constructor(inner, name) {\n super();\n this.name = name;\n this.state = inner.then((client) => {\n for (const pending of this.pendingListeners) {\n pending.closeAfterRegisteredOnResolvedPool = client.writer.registerListener(pending.listener);\n }\n this.pendingListeners.clear();\n this.resolvedWriter = client.writer;\n if (client.additionalReaders.length) {\n return readWritePoolState(client.writer, client.additionalReaders);\n }\n return singleConnectionPoolState(client.writer);\n });\n }\n async init() {\n await this.state;\n }\n async close() {\n const state = await this.state;\n await state.close();\n }\n async readLock(fn, options) {\n const state = await this.state;\n return state.withConnection(true, fn, options);\n }\n async writeLock(fn, options) {\n const state = await this.state;\n return state.withConnection(false, fn, options);\n }\n async refreshSchema() {\n const state = await this.state;\n await state.refreshSchema();\n }\n registerListener(listener) {\n if (this.resolvedWriter) {\n return this.resolvedWriter.registerListener(listener);\n }\n else {\n const pending = { listener };\n this.pendingListeners.add(pending);\n return () => {\n if (pending.closeAfterRegisteredOnResolvedPool) {\n return pending.closeAfterRegisteredOnResolvedPool();\n }\n else {\n // Has not been registered yet, we can just remove the pending listener.\n this.pendingListeners.delete(pending);\n }\n };\n }\n }\n async shareConnection() {\n const state = await this.state;\n return state.writer.shareConnection();\n }\n getConfiguration() {\n if (this.resolvedWriter) {\n return this.resolvedWriter.getConfiguration();\n }\n throw new Error('AsyncDbAdapter.getConfiguration() can only be called after initializing it.');\n }\n}\nfunction singleConnectionPoolState(connection) {\n return {\n writer: connection,\n withConnection: (allowReadOnly, fn, options) => {\n if (allowReadOnly) {\n return connection.readLock(fn, options);\n }\n else {\n return connection.writeLock(fn, options);\n }\n },\n close: () => connection.close(),\n refreshSchema: () => connection.refreshSchema()\n };\n}\nfunction readWritePoolState(writer, readers) {\n // DatabaseClients have locks internally, so these aren't necessary for correctness. However, our mutex and semaphore\n // implementations are very cheap to cancel, which we use to dispatch reads to the first available connection (by\n // simply requesting all of them and sticking with the first connection we get).\n const writerMutex = new Mutex();\n const readerSemaphore = new Semaphore(readers);\n return {\n writer,\n async withConnection(allowReadOnly, fn, options) {\n return acquireFromPool(writerMutex, writer, readerSemaphore, (connection) => {\n return allowReadOnly ? connection.readLock(fn) : connection.writeLock(fn);\n }, options, allowReadOnly);\n },\n async close() {\n await writer.close();\n await Promise.all(readers.map((r) => r.close()));\n },\n async refreshSchema() {\n await writer.refreshSchema();\n await Promise.all(readers.map((r) => r.refreshSchema()));\n }\n };\n}\n//# sourceMappingURL=AsyncWebAdapter.js.map","import { LogLevels } from '@powersync/common';\nexport function connectToWorker({ service, databaseIdentifier, customWorker, shared, loggerForErrors }) {\n const name = `${shared ? 'shared-' : ''}powersync-${databaseIdentifier}`;\n let worker;\n if (customWorker) {\n worker = shared\n ? new SharedWorker(customWorker, {\n /* @vite-ignore */\n name,\n type: 'module'\n })\n : new Worker(customWorker, {\n /* @vite-ignore */\n name,\n type: 'module'\n });\n }\n else {\n worker = spawnDefaultPowerSyncWorker(shared, name);\n }\n return connectToExistingWorker(worker, loggerForErrors, service);\n}\n/**\n * Opens the default PowerSync worker.\n *\n * When users depend on the web SDK, we assume they use their own bundler (either vite or webpack). Both recognize the\n * syntax of worker constructors with a string literal and will rewrite the URL as part of their bundling processes.\n *\n * React Native / Metro users can't rely on this on the web, as their app is not a JavaScript module and import.meta.url\n * is not rewritten by Metro. For those users, we include a pre-bundled worker they can copy into a static assets\n * directory and load with a custom URI. This also means that defaultWorker cannot work with Metro for React Native Web.\n * We have a custom rollup plugin and conditional exports that replaces this function with a throwing stub for that\n * platform. This allows a helpful error message.\n */\n// Note: When changing this function, also update disableDefaultWorkers in rollup.config.ts.\nfunction spawnDefaultPowerSyncWorker(shared, name) {\n return shared\n ? new SharedWorker(new URL('./worker.js', import.meta.url), {\n /* @vite-ignore */\n name,\n type: 'module'\n })\n : new Worker(new URL('./worker.js', import.meta.url), {\n /* @vite-ignore */\n name,\n type: 'module'\n });\n}\nexport function connectToExistingWorker(worker, logger, service) {\n function logError(event) {\n // TODO: Ideally, we should be able to handle worker errors by forwarding them to async Comlink callers.\n // Currently, comlink calls on errored workers would just be stuck forever.\n logger.log({\n level: LogLevels.error,\n error: event.error,\n message: 'Error in database or sync worker, this likely disrupts PowerSync.'\n });\n }\n worker.addEventListener('error', logError);\n const isShared = isSharedWorker(worker);\n if (isShared) {\n const { port1, port2 } = new MessageChannel();\n const mainPort = worker.port;\n mainPort.start();\n mainPort.postMessage({ port: port1, service }, [port1]);\n port2.start();\n return {\n endpoint: port2,\n worker,\n close() {\n worker.removeEventListener('error', logError);\n port2.close();\n }\n };\n }\n else {\n return {\n endpoint: worker,\n worker,\n close() {\n worker.removeEventListener('error', logError);\n worker.terminate();\n }\n };\n }\n}\nexport function isSharedWorker(worker) {\n return 'port' in worker;\n}\n//# sourceMappingURL=client.js.map","import { LogLevels } from '@powersync/common';\nimport * as Comlink from 'comlink';\nimport { SSRDBAdapter } from '../SSRDBAdapter.js';\nimport { vfsRequiresDedicatedWorkers, WASQLiteVFS } from './vfs.js';\nimport { MultiDatabaseServer } from '../../../worker/db/MultiDatabaseServer.js';\nimport { DatabaseClient } from './DatabaseClient.js';\nimport { generateTabCloseSignal } from '../../../shared/tab_close_signal.js';\nimport { AsyncDbAdapter } from '../AsyncWebAdapter.js';\nimport { maxPathNameLength, resolveAndValidateOptions } from '../resolveAndValidateOptions.js';\nimport { connectToExistingWorker, connectToWorker } from '../../../worker/client.js';\n/**\n * Opens a SQLite connection using WA-SQLite.\n */\nexport class WASQLiteOpenFactory {\n options;\n logger;\n constructor(options) {\n this.options = resolveAndValidateOptions(options.open);\n // Account for the fact that SQLite might append -journal suffixes\n const maxLength = maxPathNameLength - 16;\n if (this.options.dbFilename.length > maxLength) {\n throw new Error(`dbFilename too long (max length is ${maxLength})`);\n }\n this.logger = options.logger;\n }\n openAdapter() {\n return new AsyncDbAdapter(this.openConnection(), this.options.dbFilename);\n }\n openDB() {\n const { disableSSRWarning, enableMultiTabs, ssrMode } = this.options;\n if (ssrMode) {\n if (!disableSSRWarning) {\n this.logger.log({\n level: LogLevels.warn,\n message: `\n Running PowerSync in SSR mode.\n Only empty query results will be returned.\n Disable this warning by setting 'disableSSRWarning: true' in options.`\n });\n }\n return new SSRDBAdapter();\n }\n if (!enableMultiTabs) {\n this.logger.log({\n level: LogLevels.warn,\n message: 'Multiple tab support is not enabled. Using this site across multiple tabs may not function correctly.'\n });\n }\n return this.openAdapter();\n }\n async openConnection() {\n const { enableMultiTabs, useWebWorker, vfs, dbFilename, encryptionKey, temporaryStorage, cacheSizeKb, preparedStatementsCache } = this.options;\n if (!enableMultiTabs) {\n this.logger.log({ level: LogLevels.warn, message: 'Multiple tabs are not enabled in this browser' });\n }\n let client;\n let additionalReaders = [];\n let requiresPersistentTriggers = vfsRequiresDedicatedWorkers(vfs);\n function resolveRawWaSqliteDatabaseOptions(readonly) {\n return {\n filename: dbFilename,\n readonly,\n vfs,\n encryptionKey,\n temporaryStorage,\n cacheSizeKb,\n // TODO: Enable prepared statement cache by default?\n preparedStatementsCache: preparedStatementsCache ?? 0\n };\n }\n if (useWebWorker) {\n const optionsDbWorker = this.options.worker;\n const openDatabaseWorker = async (readonly) => {\n let workerConnection;\n if (typeof optionsDbWorker == 'function') {\n const worker = optionsDbWorker(this.options);\n workerConnection = connectToExistingWorker(worker, this.logger, 'database');\n }\n else {\n const needsDedicated = vfsRequiresDedicatedWorkers(vfs);\n const useShared = !needsDedicated && enableMultiTabs;\n workerConnection = connectToWorker({\n service: 'database',\n databaseIdentifier: this.options.dbFilename,\n shared: useShared,\n customWorker: optionsDbWorker,\n loggerForErrors: this.logger\n });\n }\n const source = Comlink.wrap(workerConnection.endpoint);\n const closeSignal = new AbortController();\n const connection = await source.connect({\n database: resolveRawWaSqliteDatabaseOptions(readonly),\n logLevel: this.options.databaseWorkerLogLevel,\n lockName: await generateTabCloseSignal(closeSignal.signal)\n });\n const clientOptions = {\n connection,\n source,\n // This tab owns the worker, so we're guaranteed to outlive it.\n remoteCanCloseUnexpectedly: false,\n onClose: () => {\n closeSignal.abort();\n workerConnection.close();\n }\n };\n return new DatabaseClient(clientOptions, {\n ...this.options,\n requiresPersistentTriggers\n });\n };\n client = await openDatabaseWorker(false);\n if (vfs == WASQLiteVFS.OPFSWriteAheadVFS) {\n // This VFS supports concurrent reads, so we can open additional workers to host read-only connections for\n // concurrent reads / writes.\n const additionalReadersCount = this.options.additionalReaders ?? 1;\n const additionalReaderPromises = [];\n for (let i = 0; i < additionalReadersCount; i++) {\n additionalReaderPromises.push(openDatabaseWorker(true));\n }\n additionalReaders.push(...(await Promise.all(additionalReaderPromises)));\n }\n }\n else {\n // Don't use a web worker. Instead, open the MultiDatabaseServer a worker would use locally.\n const localServer = new MultiDatabaseServer(this.logger);\n requiresPersistentTriggers = true;\n const connection = await localServer.openConnectionLocally(this.logger, resolveRawWaSqliteDatabaseOptions(false));\n client = new DatabaseClient({ connection, source: null, remoteCanCloseUnexpectedly: false }, {\n ...this.options,\n requiresPersistentTriggers\n });\n }\n return {\n writer: client,\n additionalReaders\n };\n }\n}\n//# sourceMappingURL=WASQLiteOpenFactory.js.map","import { getNavigatorLocks } from '../shared/navigator.js';\n/**\n * @internal\n * @experimental\n */\nexport const NAVIGATOR_TRIGGER_CLAIM_MANAGER = {\n async obtainClaim(identifier) {\n return new Promise((resolveReleaser) => {\n getNavigatorLocks().request(identifier, async () => {\n await new Promise((releaseLock) => {\n resolveReleaser(async () => releaseLock());\n });\n });\n });\n },\n async checkClaim(identifier) {\n const currentState = await getNavigatorLocks().query();\n return currentState.held?.find((heldLock) => heldLock.name == identifier) != null;\n }\n};\n//# sourceMappingURL=NavigatorTriggerClaimManager.js.map","import { BaseObserver } from '@powersync/common';\nimport { Mutex, LockType } from '@powersync/shared-internals';\nexport class SSRStreamingSyncImplementation extends BaseObserver {\n syncMutex;\n crudMutex;\n isConnected;\n lastSyncedAt;\n constructor() {\n super();\n this.syncMutex = new Mutex();\n this.crudMutex = new Mutex();\n this.isConnected = false;\n }\n obtainLock(lockOptions) {\n const mutex = lockOptions.type == LockType.CRUD ? this.crudMutex : this.syncMutex;\n return mutex.runExclusive(lockOptions.callback, lockOptions.signal);\n }\n /**\n * This is a no-op in SSR mode\n */\n async connect() { }\n async dispose() { }\n /**\n * This is a no-op in SSR mode\n */\n async disconnect() { }\n /**\n * This SSR Mode implementation is immediately ready.\n */\n async waitForReady() { }\n /**\n * This will never resolve in SSR Mode.\n */\n waitUntilStatusMatches(_predicate) {\n return new Promise(() => { });\n }\n /**\n * This is a no-op in SSR mode.\n */\n triggerCrudUpload() { }\n /**\n * No-op in SSR mode.\n */\n updateSubscriptions() { }\n /**\n * No-op in SSR mode.\n */\n markConnectionMayHaveChanged() { }\n requestCheckpoint() {\n throw new Error('Sub sync implementation does not support request checkpoints');\n }\n}\n//# sourceMappingURL=SSRWebStreamingSyncImplementation.js.map","/**\n * The client side port should provide these methods.\n */\nexport class AbstractSharedSyncClientProvider {\n}\n//# sourceMappingURL=AbstractSharedSyncClientProvider.js.map","/**\n * Get a minimal representation of browser, version and operating system.\n *\n * The goal is to get enough environemnt info to reproduce issues, but no\n * more.\n */\nexport function getUserAgentInfo(nav) {\n nav ??= navigator;\n const browser = getBrowserInfo(nav);\n const os = getOsInfo(nav);\n // The cast below is to cater for TypeScript < 5.5.0\n return [browser, os].filter((v) => v != null);\n}\nfunction getBrowserInfo(nav) {\n const brands = nav.userAgentData?.brands;\n if (brands != null) {\n const tests = [\n { name: 'Google Chrome', value: 'Chrome' },\n { name: 'Opera', value: 'Opera' },\n { name: 'Edge', value: 'Edge' },\n { name: 'Chromium', value: 'Chromium' }\n ];\n for (let { name, value } of tests) {\n const brand = brands.find((b) => b.brand == name);\n if (brand != null) {\n return `${value}/${brand.version}`;\n }\n }\n }\n const ua = nav.userAgent;\n const regexps = [\n { re: /(?:firefox|fxios)\\/(\\d+)/i, value: 'Firefox' },\n { re: /(?:edg|edge|edga|edgios)\\/(\\d+)/i, value: 'Edge' },\n { re: /opr\\/(\\d+)/i, value: 'Opera' },\n { re: /(?:chrome|chromium|crios)\\/(\\d+)/i, value: 'Chrome' },\n { re: /version\\/(\\d+).*safari/i, value: 'Safari' }\n ];\n for (let { re, value } of regexps) {\n const match = re.exec(ua);\n if (match != null) {\n return `${value}/${match[1]}`;\n }\n }\n return null;\n}\nfunction getOsInfo(nav) {\n if (nav.userAgentData?.platform != null) {\n return nav.userAgentData.platform.toLowerCase();\n }\n const ua = nav.userAgent;\n const regexps = [\n { re: /windows/i, value: 'windows' },\n { re: /android/i, value: 'android' },\n { re: /linux/i, value: 'linux' },\n { re: /iphone|ipad|ipod/i, value: 'ios' },\n { re: /macintosh|mac os x/i, value: 'macos' }\n ];\n for (let { re, value } of regexps) {\n if (re.test(ua)) {\n return value;\n }\n }\n return null;\n}\n//# sourceMappingURL=userAgent.js.map","import { LogLevels } from '@powersync/common';\nimport { AbstractRemote } from '@powersync/shared-internals';\nimport { getUserAgentInfo } from './userAgent.js';\nexport class WebRemote extends AbstractRemote {\n connector;\n constructor(connector, logger) {\n super(connector, logger);\n this.connector = connector;\n }\n fetch({ resource, request }) {\n return fetch(resource, request);\n }\n async loadWebSocketSupport(platform) {\n if (!websockets) {\n // loadWebSocketSupport being called concurrently is safe, the import resolves to the same module in that case.\n const module = await import('@powersync/shared-internals/websockets');\n websockets = new module.WebSocketSupport(platform);\n }\n return websockets;\n }\n getUserAgent() {\n let ua = [super.getUserAgent(), `powersync-web`];\n try {\n ua.push(...getUserAgentInfo());\n }\n catch (error) {\n this.logger.log({ level: LogLevels.warn, message: 'Failed to get user agent info', error });\n }\n return ua.join(' ');\n }\n}\nlet websockets;\n//# sourceMappingURL=WebRemote.js.map","import { LogLevels } from '@powersync/common';\nimport { AbstractStreamingSyncImplementation, LockType } from '@powersync/shared-internals';\nimport { getNavigatorLocks } from '../../shared/navigator.js';\nexport class WebStreamingSyncImplementation extends AbstractStreamingSyncImplementation {\n constructor(options) {\n // Super will store and provide default values for options\n super(options);\n }\n get webOptions() {\n return this.options;\n }\n async obtainLock(lockOptions) {\n const identifier = `streaming-sync-${lockOptions.type}-${this.webOptions.identifier}`;\n if (lockOptions.type == LockType.SYNC) {\n this.logger.log({ level: LogLevels.debug, message: `requesting lock for ${identifier}` });\n }\n return getNavigatorLocks().request(identifier, { signal: lockOptions.signal }, lockOptions.callback);\n }\n}\n//# sourceMappingURL=WebStreamingSyncImplementation.js.map","import { BaseObserver, DBAdapter, LogLevels, SyncStreamConnectionMethod } from '@powersync/common';\nimport { AbortOperation, ConnectionManager, SqliteBucketStorage, Mutex, SyncStatusSnapshot } from '@powersync/shared-internals';\nimport * as Comlink from 'comlink';\nimport { WebRemote } from '../../db/sync/WebRemote.js';\nimport { WebStreamingSyncImplementation } from '../../db/sync/WebStreamingSyncImplementation.js';\nimport { BroadcastLogger } from './BroadcastLogger.js';\nimport { DatabaseClient } from '../../db/adapters/wa-sqlite/DatabaseClient.js';\nimport { generateTabCloseSignal } from '../../shared/tab_close_signal.js';\n/**\n * @internal\n * Manual message events for shared sync clients\n */\nexport var SharedSyncClientEvent;\n(function (SharedSyncClientEvent) {\n /**\n * This client requests the shared sync manager should\n * close it's connection to the client.\n */\n SharedSyncClientEvent[\"CLOSE_CLIENT\"] = \"close-client\";\n SharedSyncClientEvent[\"CLOSE_ACK\"] = \"close-ack\";\n})(SharedSyncClientEvent || (SharedSyncClientEvent = {}));\n/**\n * HACK: The shared implementation wraps and provides its own\n * PowerSyncBackendConnector when generating the streaming sync implementation.\n * We provide this unused placeholder when connecting with the ConnectionManager.\n */\nconst CONNECTOR_PLACEHOLDER = {};\n/**\n * @internal\n * Shared sync implementation which runs inside a shared webworker\n */\nexport class SharedSyncImplementation extends BaseObserver {\n ports;\n isInitialized;\n statusListener;\n syncParams;\n lastConnectOptions;\n portMutex;\n subscriptions = [];\n connectionManager;\n syncStatus;\n logger;\n database = this.generateReconnectableDatabase();\n sharedCloseSignal = generateTabCloseSignal();\n constructor() {\n super();\n this.ports = [];\n this.syncParams = null;\n this.lastConnectOptions = undefined;\n this.portMutex = new Mutex();\n this.isInitialized = new Promise((resolve) => {\n const callback = this.registerListener({\n initialized: () => {\n resolve();\n callback?.();\n }\n });\n });\n this.logger = new BroadcastLogger('shared-sync', this.ports);\n this.connectionManager = new ConnectionManager({\n createSyncImplementation: async () => {\n await this.waitForReady();\n const sync = this.generateStreamingImplementation();\n const removeStatusListener = sync.registerListener({\n statusChanged: (snapshot) => {\n this.syncStatus = snapshot;\n const json = snapshot.toJSON();\n this.ports.forEach((p) => p.clientProvider.statusChanged(json));\n }\n });\n return {\n sync,\n onDispose: () => {\n removeStatusListener();\n // Clear transient state so new tabs don't inherit stale errors.\n // Preserve core status, including hasSynced and lastSyncedAt.\n this.syncStatus &&= new SyncStatusSnapshot(this.syncStatus.core, {});\n }\n };\n },\n logger: this.logger,\n defaultConnectionMethod: SyncStreamConnectionMethod.HTTP\n });\n }\n get isConnected() {\n return this.connectionManager.syncStreamImplementation?.isConnected ?? false;\n }\n /**\n * Gets the last client port which we know is safe from unexpected closes.\n */\n async getLastWrappedPort() {\n // Find the last port which is not closing\n return await this.portMutex.runExclusive(() => {\n for (let i = this.ports.length - 1; i >= 0; i--) {\n if (!this.ports[i].isClosing) {\n return this.ports[i];\n }\n }\n return;\n });\n }\n /**\n * In some very rare cases a specific tab might not respond to requests.\n * This returns a random port which is not closing.\n */\n async getRandomWrappedPort() {\n return await this.portMutex.runExclusive(() => {\n const nonClosingPorts = this.ports.filter((p) => !p.isClosing);\n return nonClosingPorts[Math.floor(Math.random() * nonClosingPorts.length)];\n });\n }\n async waitUntilStatusMatches(predicate) {\n return this.withSyncImplementation(async (sync) => {\n return sync.waitUntilStatusMatches(predicate);\n });\n }\n async waitForReady() {\n return this.isInitialized;\n }\n collectActiveSubscriptions() {\n this.logger.log({ level: LogLevels.debug, message: 'Collecting active stream subscriptions across tabs' });\n const active = new Map();\n for (const port of this.ports) {\n for (const stream of port.currentSubscriptions) {\n const serializedKey = JSON.stringify(stream);\n active.set(serializedKey, stream);\n }\n }\n this.subscriptions = [...active.values()];\n this.logger.log({\n level: LogLevels.debug,\n message: `Collected stream subscriptions, ${JSON.stringify(this.subscriptions)}`\n });\n this.connectionManager.syncStreamImplementation?.updateSubscriptions(this.subscriptions);\n }\n updateSubscriptions(port, subscriptions) {\n port.currentSubscriptions = subscriptions;\n this.collectActiveSubscriptions();\n }\n setLogLevel(level) {\n this.logger.setLevel(level);\n }\n /**\n * Configures the DBAdapter connection and a streaming sync client.\n */\n async setParams(params) {\n await this.portMutex.runExclusive(async () => {\n this.collectActiveSubscriptions();\n });\n if (this.syncParams) {\n // Cannot modify already existing sync implementation params\n return;\n }\n // First time setting params\n this.syncParams = params;\n this.logger.sendBroadcasts = params.enableBroadcastLogs;\n // Ensure we have a usable database connection, the reconnectable database will connect lazily on first use.\n await this.database.readLock(async () => { });\n self.onerror = (event) => {\n // Share any uncaught events on the broadcast logger\n this.logger.log({\n level: LogLevels.error,\n message: 'Uncaught exception in PowerSync shared sync worker',\n error: event\n });\n };\n this.iterateListeners((l) => l.initialized?.());\n }\n async dispose() {\n await this.waitForReady();\n this.statusListener?.();\n return this.connectionManager.close();\n }\n /**\n * Connects to the PowerSync backend instance.\n * Multiple tabs can safely call this in their initialization.\n * The connection will simply be reconnected whenever a new tab\n * connects.\n */\n async connect(options, serializedSchema) {\n this.lastConnectOptions = options;\n return this.connectionManager.connect(CONNECTOR_PLACEHOLDER, options ?? {}, serializedSchema);\n }\n async disconnect() {\n return this.connectionManager.disconnect();\n }\n /**\n * Adds a new client tab's message port to the list of connected ports\n */\n async addPort(port) {\n return await this.portMutex.runExclusive(() => {\n const portProvider = {\n port,\n clientProvider: Comlink.wrap(port),\n currentSubscriptions: [],\n closeListeners: [],\n isClosing: false\n };\n this.ports.push(portProvider);\n // Give the newly connected client the latest status\n const status = this.syncStatus;\n if (status) {\n portProvider.clientProvider.statusChanged(status.toJSON());\n }\n return portProvider;\n });\n }\n /**\n * Removes a message port client from this manager's managed\n * clients.\n */\n async removePort(port) {\n // Ports might be removed faster than we can process them.\n port.isClosing = true;\n // Remove the port within a mutex context.\n // Warns if the port is not found. This should not happen in practice.\n // We return early if the port is not found.\n return await this.portMutex.runExclusive(async () => {\n const index = this.ports.findIndex((p) => p == port);\n if (index < 0) {\n this.logger.log({\n level: LogLevels.warn,\n message: `Could not remove port ${port} since it is not present in active ports.`\n });\n return () => { };\n }\n const trackedPort = this.ports[index];\n // Remove from the list of active ports\n this.ports.splice(index, 1);\n // Close the worker wrapped database connection, we can't accurately rely on this connection\n for (const closeListener of trackedPort.closeListeners) {\n await closeListener();\n }\n this.collectActiveSubscriptions();\n return () => trackedPort.clientProvider[Comlink.releaseProxy]();\n });\n }\n triggerCrudUpload() {\n this.withSyncImplementation(async (sync) => {\n sync.triggerCrudUpload();\n });\n }\n requestCheckpoint() {\n return this.withSyncImplementation((sync) => sync.requestCheckpoint());\n }\n async withSyncImplementation(callback) {\n await this.waitForReady();\n if (this.connectionManager.syncStreamImplementation) {\n return callback(this.connectionManager.syncStreamImplementation);\n }\n const sync = await new Promise((resolve) => {\n const dispose = this.connectionManager.registerListener({\n syncStreamCreated: (sync) => {\n resolve(sync);\n dispose?.();\n }\n });\n });\n return callback(sync);\n }\n generateStreamingImplementation() {\n // This should only be called after initialization has completed\n const syncParams = this.syncParams;\n // Create a new StreamingSyncImplementation for each connect call. This is usually done is all SDKs.\n return new WebStreamingSyncImplementation({\n adapter: new SqliteBucketStorage(this.database, this.logger),\n remote: new WebRemote({\n invalidateCredentials: async () => {\n const lastPort = await this.getLastWrappedPort();\n if (!lastPort) {\n throw new Error('No client port found to invalidate credentials');\n }\n try {\n this.logger.log({\n level: LogLevels.info,\n message: 'calling the last port client provider to invalidate credentials'\n });\n lastPort.clientProvider.invalidateCredentials();\n }\n catch (error) {\n this.logger.log({ level: LogLevels.error, message: 'error invalidating credentials', error });\n }\n },\n fetchCredentials: (signal) => {\n return this.#useConnector((port) => {\n this.logger.log({\n level: LogLevels.info,\n message: 'calling the last port client provider for credentials'\n });\n return port.clientProvider.fetchCredentials();\n }, 'fetchCredentials', signal);\n }\n }, this.logger),\n uploadCrud: (signal) => {\n return this.#useConnector((port) => port.clientProvider.uploadCrud(), 'uploadCrud', signal);\n },\n postCheckpointRequest: (clientId, requestId, signal) => {\n return this.#useConnector((port) => port.clientProvider.postCheckpointRequest(clientId, requestId), 'postCheckpointRequest', signal);\n },\n ...syncParams.streamOptions,\n subscriptions: this.subscriptions,\n // Logger cannot be transferred just yet\n logger: this.logger\n });\n }\n /**\n * Calls into a client tab, stopping the wait on disconnect when a signal is supplied.\n */\n async #useConnector(inner, debugContext, signal) {\n const action = async () => {\n const lastPort = await this.getLastWrappedPort();\n if (!lastPort) {\n throw new Error(`No client port found for ${debugContext}`);\n }\n return await new Promise((resolve, reject) => {\n const portClosed = () => {\n reject(new Error(`Tab closed while handling ${debugContext}`));\n };\n lastPort.closeListeners.push(portClosed);\n inner(lastPort)\n .then(resolve, reject)\n .finally(() => {\n const index = lastPort.closeListeners.indexOf(portClosed);\n if (index >= 0) {\n lastPort.closeListeners.splice(index, 1);\n }\n });\n });\n };\n // Include port lookup in the guard: port removal can hold portMutex.\n return signal ? withAbort({ signal, action }) : action();\n }\n /**\n * Requests a random client to share its database connection with us.\n */\n async openInternalDB(handleClosed) {\n const client = await this.getRandomWrappedPort();\n if (!client) {\n // Should not really happen in practice\n throw new Error(`Could not open DB connection since no client is connected.`);\n }\n // Fail-safe timeout for opening a database connection.\n const timeout = setTimeout(() => {\n abortController.abort();\n }, 10_000);\n /**\n * Handle cases where the client might close while opening a connection.\n */\n const abortController = new AbortController();\n const closeListener = () => {\n abortController.abort();\n };\n const removeCloseListener = () => {\n const index = client.closeListeners.indexOf(closeListener);\n if (index >= 0) {\n client.closeListeners.splice(index, 1);\n }\n };\n client.closeListeners.push(closeListener);\n const workerPort = await withAbort({\n action: () => client.clientProvider.getDBWorkerPort(),\n signal: abortController.signal,\n cleanupOnAbort: (port) => {\n port.close();\n }\n }).catch((ex) => {\n removeCloseListener();\n throw ex;\n });\n const remote = Comlink.wrap(workerPort);\n const identifier = this.syncParams.dbParams.dbFilename;\n const clientLockName = await this.sharedCloseSignal;\n /**\n * The open could fail if the tab is closed while we're busy opening the database.\n * This operation is typically executed inside an exclusive portMutex lock.\n * We typically execute the closeListeners using the portMutex in a different context.\n * We can't rely on the closeListeners to abort the operation if the tab is closed.\n */\n const db = await withAbort({\n action: async () => {\n const clientView = await remote.connectToExisting({ identifier, lockName: clientLockName });\n return new DatabaseClient({\n connection: clientView,\n source: remote,\n // It's possible for this worker to outlive the client hosting the database for us. We need to be prepared for\n // that and ensure pending requests are aborted when the tab is closed.\n remoteCanCloseUnexpectedly: true\n }, this.syncParams.dbParams);\n },\n signal: abortController.signal,\n cleanupOnAbort: (db) => {\n db.close();\n }\n }).finally(() => {\n // We can remove the close listener here since we no longer need it past this point.\n removeCloseListener();\n });\n clearTimeout(timeout);\n client.closeListeners.push(async () => {\n this.logger.log({ level: LogLevels.info, message: 'Aborting open connection because associated tab closed.' });\n handleClosed(db);\n /**\n * Don't await this close operation. It might never resolve if the tab is closed.\n * We mark the remote as closed first, this will reject any pending requests.\n * We then call close. The close operation is configured to fire-and-forget, the main promise will reject immediately.\n */\n db.markRemoteClosed();\n db.close().catch((error) => this.logger.log({ level: LogLevels.warn, message: 'error closing database connection', error }));\n });\n return db;\n }\n generateReconnectableDatabase() {\n const syncParams = this.syncParams;\n const sharedSync = this;\n return new (class extends DBAdapter {\n connectionState = null;\n get name() {\n return syncParams?.dbParams.dbFilename;\n }\n async connect() {\n if (this.connectionState == null) {\n const handleClosed = this.handleClientClosed.bind(this);\n this.connectionState = (async () => {\n try {\n const db = await sharedSync.openInternalDB(handleClosed);\n db.registerListener({\n tablesUpdated: (notification) => {\n this.iterateListeners((l) => l.tablesUpdated?.(notification));\n }\n });\n this.connectionState = db;\n return db;\n }\n catch (e) {\n // Allow reconnecting when the database is used again.\n this.connectionState = null;\n throw e;\n }\n })();\n }\n return await this.connectionState;\n }\n async close() {\n if (this.connectionState != null) {\n await (await this.connectionState).close();\n }\n }\n handleClientClosed(client) {\n if (client === this.connectionState) {\n this.connectionState = null;\n // We may have missed some table updates while the database was closed.\n // We can poke the crud in case we missed any updates.\n const impl = sharedSync.connectionManager.syncStreamImplementation;\n impl?.triggerCrudUpload();\n // The Rust client implementation stores sync state on the connection level. Reopening the database causes a\n // disruption of the connection state and forces us to reconnect. We want to do that as soon as possible to\n // minimize downtime.\n impl?.markConnectionMayHaveChanged();\n }\n }\n async readLock(fn, options) {\n const db = await this.connect();\n return db.readLock(fn, options);\n }\n async writeLock(fn, options) {\n const db = await this.connect();\n return db.writeLock(fn, options);\n }\n async refreshSchema() {\n // Not used by sync client.\n }\n })();\n }\n}\n/**\n * Runs the action with an abort controller.\n */\nfunction withAbort(options) {\n const { action, signal, cleanupOnAbort } = options;\n const abortError = () => signal.reason instanceof Error ? signal.reason : new AbortOperation('Operation aborted by abort controller');\n return new Promise((resolve, reject) => {\n if (signal.aborted) {\n reject(abortError());\n return;\n }\n function handleAbort() {\n signal.removeEventListener('abort', handleAbort);\n reject(abortError());\n }\n signal.addEventListener('abort', handleAbort, { once: true });\n function completePromise(action) {\n signal.removeEventListener('abort', handleAbort);\n action();\n }\n action()\n .then((data) => {\n // We already rejected due to the abort, allow for cleanup\n if (signal.aborted) {\n return completePromise(() => cleanupOnAbort?.(data));\n }\n completePromise(() => resolve(data));\n })\n .catch((e) => completePromise(() => reject(e)));\n });\n}\n//# sourceMappingURL=SharedSyncImplementation.js.map","import * as Comlink from 'comlink';\nimport { AbstractSharedSyncClientProvider } from '../../worker/sync/AbstractSharedSyncClientProvider.js';\nimport { SharedSyncClientEvent } from '../../worker/sync/SharedSyncImplementation.js';\nimport { WebStreamingSyncImplementation } from './WebStreamingSyncImplementation.js';\nimport { generateTabCloseSignal } from '../../shared/tab_close_signal.js';\nimport { connectToExistingWorker, connectToWorker } from '../../worker/client.js';\n/**\n * The shared worker will trigger methods on this side of the message port\n * via this client provider.\n */\nclass SharedSyncClientProvider extends AbstractSharedSyncClientProvider {\n options;\n statusChanged;\n webDB;\n constructor(options, statusChanged, webDB) {\n super();\n this.options = options;\n this.statusChanged = statusChanged;\n this.webDB = webDB;\n }\n async getDBWorkerPort() {\n const { port } = await this.webDB.shareConnection();\n return Comlink.transfer(port, [port]);\n }\n invalidateCredentials() {\n this.options.remote.invalidateCredentials();\n }\n async fetchCredentials() {\n const credentials = await this.options.remote.getCredentials();\n if (credentials == null) {\n return null;\n }\n /**\n * The credentials need to be serializable.\n * Users might extend [PowerSyncCredentials] to contain\n * items which are not serializable.\n * This returns only the essential fields.\n */\n return {\n endpoint: credentials.endpoint,\n token: credentials.token\n };\n }\n async uploadCrud() {\n /**\n * Don't return anything here, just incase something which is not\n * serializable is returned from the `uploadCrud` function.\n */\n await this.options.uploadCrud();\n }\n async postCheckpointRequest(clientId, requestId) {\n return await this.options.postCheckpointRequest(clientId, requestId);\n }\n get logger() {\n return this.options.logger;\n }\n log(record) {\n this.logger.log(record);\n }\n}\n/**\n * The local part of the sync implementation on the web, which talks to a sync implementation hosted in a shared worker.\n */\nexport class SharedWebStreamingSyncImplementation extends WebStreamingSyncImplementation {\n syncManager;\n clientProvider;\n worker;\n isInitialized;\n dbAdapter;\n abortOnClose = new AbortController();\n logLevel;\n enableBroadcastLogs;\n constructor(options) {\n super(options);\n this.dbAdapter = options.db;\n this.logLevel = options.logLevel;\n this.enableBroadcastLogs = options.enableBroadcastLogs;\n const syncWorker = options.sync?.worker;\n if (typeof syncWorker === 'function') {\n this.worker = connectToExistingWorker(syncWorker(), options.logger, 'sync');\n }\n else {\n this.worker = connectToWorker({\n service: 'sync',\n databaseIdentifier: this.webOptions.identifier,\n shared: true,\n customWorker: syncWorker,\n loggerForErrors: options.logger\n });\n }\n /**\n * Pass along any sync status updates to this listener\n */\n this.clientProvider = new SharedSyncClientProvider(this.webOptions, ({ core, dataFlow }) => {\n this.updateSyncStatus(core, dataFlow);\n }, options.db);\n this.syncManager = Comlink.wrap(this.worker.endpoint);\n /**\n * The sync worker will call this client provider when it needs\n * to fetch credentials or upload data.\n * This performs bi-directional method calling.\n */\n Comlink.expose(this.clientProvider, this.worker.endpoint);\n this.syncManager.setLogLevel(this.logLevel);\n this.triggerCrudUpload = this.syncManager.triggerCrudUpload;\n /**\n * Opens MessagePort to the existing shared DB worker.\n * The sync worker cannot initiate connections directly to the\n * DB worker, but a port to the DB worker can be transferred to the\n * sync worker.\n */\n this.isInitialized = this._init();\n }\n async _init() {\n /**\n * The general flow of initialization is:\n * - The client requests a unique navigator lock.\n * - Once the lock is acquired, we register the lock with the shared worker.\n * - The shared worker can then request the same lock. The client has been closed if the shared worker can acquire the lock.\n * - Once the shared worker knows the client's lock, we can guarentee that the shared worker will detect if the client has been closed.\n * - This makes the client safe for the shared worker to use.\n * - The client is only added to the SharedSyncImplementation once the lock has been registered.\n * This ensures we don't ever keep track of dead clients (tabs that closed before the lock was registered).\n * - The client side lock is held until the client is disposed.\n * - We resolve the top-level promise after the lock has been registered with the shared worker.\n * - The client sends the params to the shared worker after locks have been registered.\n */\n const closeSignal = await generateTabCloseSignal(this.abortOnClose.signal);\n // Awaiting here ensures the worker is waiting for the lock\n await this.syncManager.addLockBasedCloseSignal(closeSignal);\n const { identifier } = this.options;\n await this.syncManager.setParams({\n dbParams: this.dbAdapter.getConfiguration(),\n streamOptions: {\n identifier,\n serializedSchema: this.options.serializedSchema\n },\n enableBroadcastLogs: this.enableBroadcastLogs\n }, this.options.subscriptions);\n }\n /**\n * Starts the sync process, this effectively acts as a call to\n * `connect` if not yet connected.\n */\n async connect(options) {\n await this.waitForReady();\n return this.syncManager.connect(options, this.options.serializedSchema);\n }\n async disconnect() {\n await this.waitForReady();\n return this.syncManager.disconnect();\n }\n async dispose() {\n await this.waitForReady();\n await new Promise((resolve) => {\n // This will always be a message port since we use shared workers.\n const messagePort = this.worker.endpoint;\n // Listen for the close acknowledgment from the worker\n messagePort.addEventListener('message', (event) => {\n const payload = event.data;\n if (payload?.event === SharedSyncClientEvent.CLOSE_ACK) {\n resolve();\n }\n });\n // Signal the shared worker that this client is closing its connection to the worker\n const closeMessagePayload = {\n event: SharedSyncClientEvent.CLOSE_CLIENT,\n data: {}\n };\n messagePort.postMessage(closeMessagePayload);\n });\n await super.dispose();\n this.abortOnClose.abort();\n // Release the proxy\n this.syncManager[Comlink.releaseProxy]();\n this.worker.close();\n }\n async waitForReady() {\n return this.isInitialized;\n }\n requestCheckpoint() {\n return this.syncManager.requestCheckpoint();\n }\n updateSubscriptions(subscriptions) {\n this.syncManager.updateSubscriptions(subscriptions);\n }\n}\n//# sourceMappingURL=SharedWebStreamingSyncImplementation.js.map","import { LockType } from '@powersync/shared-internals';\nimport { WebStreamingSyncImplementation } from './WebStreamingSyncImplementation.js';\n/**\n * When multi-tab support is disabled and we don't use a shared worker for sync, only a single tab will be able to\n * acquire the sync navigator lock and start a sync iteration.\n *\n * To be able to provide _some_ multi-tab support in that configuration, this utility:\n *\n * 1. Sends sync status updates from the syncing tab to others.\n * 2. Allows other tabs to send notifications when their active sync stream subscriptions update, allowing the active\n * tab to take those subscriptions into account.\n */\nexport class TabLocalStreamingSyncImplementation extends WebStreamingSyncImplementation {\n #statusUpdated;\n #subscriptionsChanged;\n #hasSyncLock = false;\n constructor(options) {\n super(options);\n const identifier = options.identifier;\n this.#statusUpdated = new BroadcastChannel(`sync-status-${identifier}`);\n this.#subscriptionsChanged = new BroadcastChannel(`subscription-change-${identifier}`);\n this.#statusUpdated.onmessage = (event) => {\n if (event.data == 'ping') {\n this.#sendStatus(this.syncStatus);\n return;\n }\n const { core, dataFlow } = event.data;\n this.updateSyncStatus(core, dataFlow);\n };\n // Request other tabs to share their sync status.\n this.#statusUpdated.postMessage('ping');\n this.#subscriptionsChanged.onmessage = () => {\n // We can't update activeStreams since we don't know when another tab referencing them is closed. However,\n // clients will update an internal table listing streams after subscribing, and updateSubscriptions() will\n // scan that table.\n super.updateSubscriptions(this.activeStreams);\n };\n this.registerListener({\n statusChanged: (status) => this.#sendStatus(status)\n });\n }\n #sendStatus(status) {\n // Don't share sync status if this is not the tab currently syncing.\n if (this.#hasSyncLock) {\n this.#statusUpdated.postMessage(status.toJSON());\n }\n }\n updateSubscriptions(subscriptions) {\n super.updateSubscriptions(subscriptions);\n this.#subscriptionsChanged.postMessage('');\n }\n obtainLock({ callback, type, signal }) {\n const wrappedCallback = async () => {\n this.#hasSyncLock = true;\n try {\n return await callback();\n }\n finally {\n this.#hasSyncLock = false;\n }\n };\n return super.obtainLock({ callback: type == LockType.SYNC ? wrappedCallback : callback, type, signal });\n }\n async dispose() {\n this.#statusUpdated.close();\n this.#subscriptionsChanged.close();\n await super.dispose();\n }\n}\n//# sourceMappingURL=TabLocalStreamingSyncImplementation.js.map","import { LogLevels } from '@powersync/common';\nimport { BasePowerSyncDatabase, Mutex, openDatabase } from '@powersync/shared-internals';\nimport { getNavigatorLocks } from '../shared/navigator.js';\nimport { NAVIGATOR_TRIGGER_CLAIM_MANAGER } from './NavigatorTriggerClaimManager.js';\nimport { WASQLiteOpenFactory } from './adapters/wa-sqlite/WASQLiteOpenFactory.js';\nimport { SSRStreamingSyncImplementation } from './sync/SSRWebStreamingSyncImplementation.js';\nimport { SharedWebStreamingSyncImplementation } from './sync/SharedWebStreamingSyncImplementation.js';\nimport { WebRemote } from './sync/WebRemote.js';\nimport { AsyncDbAdapter } from './adapters/AsyncWebAdapter.js';\nimport { resolveAndValidateOptions } from './adapters/resolveAndValidateOptions.js';\nimport { TabLocalStreamingSyncImplementation } from './sync/TabLocalStreamingSyncImplementation.js';\n/**\n * @internal Use {@link PowerSyncDatabase} instead, this class is only used by other SDKs also needing web support.\n */\nexport class WebPowerSyncDatabase extends BasePowerSyncDatabase {\n static SHARED_MUTEX = new Mutex();\n resolvedOpenOptions;\n enableBroadcastLogs;\n constructor(options) {\n const resolvedOpenOptions = resolveAndValidateOptions('database' in options ? options.database : {});\n super(options);\n this.resolvedOpenOptions = resolvedOpenOptions;\n this.enableBroadcastLogs = options.broadcastLogs ?? true;\n }\n async _initialize() {\n if (this.database instanceof AsyncDbAdapter) {\n /**\n * While init is done automatically,\n * LockedAsyncDatabaseAdapter only exposes config after init.\n * We can explicitly wait for init here in order to access config.\n */\n await this.database.init();\n }\n // In some cases, like the SQLJs adapter, we don't pass a WebDBAdapter, so we need to check.\n if (typeof this.database.getConfiguration == 'function') {\n const config = this.database.getConfiguration();\n if (config.requiresPersistentTriggers) {\n this.triggersImpl.updateDefaults({\n useStorageByDefault: true\n });\n }\n }\n }\n generateTriggerManagerConfig() {\n return {\n // We need to share hold information between tabs for web\n claimManager: NAVIGATOR_TRIGGER_CLAIM_MANAGER\n };\n }\n openDBAdapter() {\n return openDatabase(this.options, (options) => {\n const defaultFactory = new WASQLiteOpenFactory({\n logger: this.logger,\n open: options\n });\n return defaultFactory.openDB();\n });\n }\n /**\n * Closes the database connection.\n * By default the sync stream client is only disconnected if\n * multiple tabs are not enabled.\n */\n close(options) {\n return super.close({\n // Don't disconnect by default if multiple tabs are enabled\n disconnect: options?.disconnect ?? !this.resolvedOpenOptions.enableMultiTabs\n });\n }\n async loadVersion() {\n if (this.resolvedOpenOptions.ssrMode) {\n return;\n }\n return super.loadVersion();\n }\n async resolveOfflineSyncStatus() {\n if (this.resolvedOpenOptions.ssrMode) {\n return;\n }\n return super.resolveOfflineSyncStatus();\n }\n async runExclusive(cb) {\n if (this.resolvedOpenOptions.ssrMode) {\n return WebPowerSyncDatabase.SHARED_MUTEX.runExclusive(cb);\n }\n return getNavigatorLocks().request(`lock-${this.database.name}`, cb);\n }\n generateSyncStreamImplementation(connector, options) {\n const remote = new WebRemote(connector, this.logger);\n const syncOptions = {\n ...this.options,\n ...this.commonSyncOptions(connector, options),\n remote\n };\n if (this.resolvedOpenOptions.ssrMode) {\n return new SSRStreamingSyncImplementation();\n }\n else if (this.resolvedOpenOptions.enableMultiTabs) {\n if (!this.enableBroadcastLogs) {\n const warning = `\n Multiple tabs are enabled, but broadcasting of logs is disabled.\n Logs for shared sync worker will only be available in the shared worker context\n `;\n const logger = this.options.logger;\n logger ? logger.log({ level: LogLevels.warn, message: warning }) : console.warn(warning);\n }\n if ('shareConnection' in this.database) {\n return new SharedWebStreamingSyncImplementation({\n ...syncOptions,\n db: this.database, // This should always be the case\n logLevel: this.options.sync?.logLevel ?? LogLevels.info,\n enableBroadcastLogs: this.enableBroadcastLogs\n });\n }\n this.logger.log({\n level: LogLevels.warn,\n message: \"Not using a shared sync worker because the database adapter doesn't support it.\"\n });\n }\n return new TabLocalStreamingSyncImplementation(syncOptions);\n }\n}\n/**\n * A PowerSync database which provides SQLite functionality\n * which is automatically synced.\n *\n * @example\n * ```typescript\n * export const db = new PowerSyncDatabase({\n * schema: AppSchema,\n * database: {\n * dbFilename: 'example.db'\n * }\n * });\n * ```\n */\n// Typed constructor to avoid leaking AbstractPowerSyncDatabase into the public interface\nexport const PowerSyncDatabase = WebPowerSyncDatabase;\n//# sourceMappingURL=PowerSyncDatabase.js.map"],"names":["WaSqliteFactory","isSharedWorker"],"mappings":";;;;;;AAAA;AACA;AACA;AACA;AACO,MAAM,+BAA+B,CAAC;AAC7C,IAAI,YAAY;AAChB,IAAI,SAAS;AACb,IAAI,WAAW,CAAC,YAAY,GAAG,gBAAgB,EAAE;AACjD,QAAQ,IAAI,CAAC,YAAY,GAAG,YAAY;AACxC,IAAI;AACJ,IAAI,MAAM,UAAU,GAAG;AACvB,QAAQ,IAAI,CAAC,SAAS,GAAG,IAAI,OAAO,CAAC,CAAC,OAAO,EAAE,MAAM,KAAK;AAC1D,YAAY,MAAM,OAAO,GAAG,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,YAAY,EAAE,CAAC,CAAC;AAChE,YAAY,OAAO,CAAC,eAAe,GAAG,MAAM;AAC5C,gBAAgB,OAAO,CAAC,MAAM,CAAC,iBAAiB,CAAC,OAAO,CAAC;AACzD,YAAY,CAAC;AACb,YAAY,OAAO,CAAC,SAAS,GAAG,MAAM,OAAO,CAAC,OAAO,CAAC,MAAM,CAAC;AAC7D,YAAY,OAAO,CAAC,OAAO,GAAG,MAAM,MAAM,CAAC,OAAO,CAAC,KAAK,CAAC;AACzD,QAAQ,CAAC,CAAC;AACV,IAAI;AACJ,IAAI,MAAM,KAAK,GAAG;AAClB,QAAQ,MAAM,EAAE,GAAG,MAAM,IAAI,CAAC,SAAS;AACvC,QAAQ,OAAO,IAAI,OAAO,CAAC,CAAC,OAAO,EAAE,MAAM,KAAK;AAChD,YAAY,MAAM,EAAE,GAAG,EAAE,CAAC,WAAW,CAAC,OAAO,EAAE,WAAW,CAAC;AAC3D,YAAY,MAAM,KAAK,GAAG,EAAE,CAAC,WAAW,CAAC,OAAO,CAAC;AACjD,YAAY,MAAM,GAAG,GAAG,KAAK,CAAC,KAAK,EAAE;AACrC,YAAY,GAAG,CAAC,SAAS,GAAG,MAAM,OAAO,EAAE;AAC3C,YAAY,GAAG,CAAC,OAAO,GAAG,MAAM,MAAM,CAAC,GAAG,CAAC,KAAK,CAAC;AACjD,QAAQ,CAAC,CAAC;AACV,IAAI;AACJ,IAAI,WAAW,CAAC,QAAQ,EAAE;AAC1B,QAAQ,OAAO,CAAC,YAAY,EAAE,IAAI,CAAC,YAAY,CAAC,OAAO,EAAE,QAAQ,CAAC,CAAC;AACnE,IAAI;AACJ,IAAI,MAAM,QAAQ,CAAC,IAAI,GAAG,UAAU,EAAE;AACtC,QAAQ,MAAM,EAAE,GAAG,MAAM,IAAI,CAAC,SAAS;AACvC,QAAQ,MAAM,EAAE,GAAG,EAAE,CAAC,WAAW,CAAC,OAAO,EAAE,IAAI,CAAC;AAChD,QAAQ,OAAO,EAAE,CAAC,WAAW,CAAC,OAAO,CAAC;AACtC,IAAI;AACJ,IAAI,MAAM,QAAQ,CAAC,QAAQ,EAAE,IAAI,EAAE;AACnC,QAAQ,MAAM,KAAK,GAAG,MAAM,IAAI,CAAC,QAAQ,CAAC,WAAW,CAAC;AACtD,QAAQ,IAAI,WAAW;AACvB,QAAQ,IAAI,IAAI;AAChB,QAAQ,IAAI,OAAO,IAAI,KAAK,QAAQ,EAAE;AACtC,YAAY,MAAM,YAAY,GAAG,IAAI,CAAC,IAAI,CAAC;AAC3C,YAAY,MAAM,KAAK,GAAG,IAAI,UAAU,CAAC,YAAY,CAAC,MAAM,CAAC;AAC7D,YAAY,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,YAAY,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE;AAC1D,gBAAgB,KAAK,CAAC,CAAC,CAAC,GAAG,YAAY,CAAC,UAAU,CAAC,CAAC,CAAC;AACrD,YAAY;AACZ,YAAY,WAAW,GAAG,KAAK,CAAC,MAAM;AACtC,YAAY,IAAI,GAAG,KAAK,CAAC,UAAU;AACnC,QAAQ;AACR,aAAa;AACb,YAAY,WAAW,GAAG,IAAI;AAC9B,YAAY,IAAI,GAAG,WAAW,CAAC,UAAU;AACzC,QAAQ;AACR,QAAQ,OAAO,MAAM,IAAI,OAAO,CAAC,CAAC,OAAO,EAAE,MAAM,KAAK;AACtD,YAAY,MAAM,GAAG,GAAG,KAAK,CAAC,GAAG,CAAC,WAAW,EAAE,QAAQ,CAAC;AACxD,YAAY,GAAG,CAAC,SAAS,GAAG,MAAM,OAAO,CAAC,IAAI,CAAC;AAC/C,YAAY,GAAG,CAAC,OAAO,GAAG,MAAM,MAAM,CAAC,GAAG,CAAC,KAAK,CAAC;AACjD,QAAQ,CAAC,CAAC;AACV,IAAI;AACJ,IAAI,MAAM,QAAQ,CAAC,OAAO,EAAE,OAAO,EAAE;AACrC,QAAQ,MAAM,KAAK,GAAG,MAAM,IAAI,CAAC,QAAQ,EAAE;AAC3C,QAAQ,OAAO,IAAI,OAAO,CAAC,CAAC,OAAO,EAAE,MAAM,KAAK;AAChD,YAAY,MAAM,GAAG,GAAG,KAAK,CAAC,GAAG,CAAC,OAAO,CAAC;AAC1C,YAAY,GAAG,CAAC,SAAS,GAAG,YAAY;AACxC,gBAAgB,IAAI,CAAC,GAAG,CAAC,MAAM,EAAE;AACjC,oBAAoB,MAAM,CAAC,IAAI,KAAK,CAAC,gBAAgB,CAAC,CAAC;AACvD,oBAAoB;AACpB,gBAAgB;AAChB,gBAAgB,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC;AACnC,YAAY,CAAC;AACb,YAAY,GAAG,CAAC,OAAO,GAAG,MAAM,MAAM,CAAC,GAAG,CAAC,KAAK,CAAC;AACjD,QAAQ,CAAC,CAAC;AACV,IAAI;AACJ,IAAI,MAAM,UAAU,CAAC,GAAG,EAAE,OAAO,EAAE;AACnC,QAAQ,MAAM,KAAK,GAAG,MAAM,IAAI,CAAC,QAAQ,CAAC,WAAW,CAAC;AACtD,QAAQ,MAAM,IAAI,OAAO,CAAC,CAAC,OAAO,EAAE,MAAM,KAAK;AAC/C,YAAY,MAAM,GAAG,GAAG,KAAK,CAAC,MAAM,CAAC,GAAG,CAAC;AACzC,YAAY,GAAG,CAAC,SAAS,GAAG,MAAM,OAAO,EAAE;AAC3C,YAAY,GAAG,CAAC,OAAO,GAAG,MAAM,MAAM,CAAC,GAAG,CAAC,KAAK,CAAC;AACjD,QAAQ,CAAC,CAAC;AACV,IAAI;AACJ,IAAI,MAAM,UAAU,CAAC,OAAO,EAAE;AAC9B,QAAQ,MAAM,KAAK,GAAG,MAAM,IAAI,CAAC,QAAQ,EAAE;AAC3C,QAAQ,OAAO,IAAI,OAAO,CAAC,CAAC,OAAO,EAAE,MAAM,KAAK;AAChD,YAAY,MAAM,GAAG,GAAG,KAAK,CAAC,GAAG,CAAC,OAAO,CAAC;AAC1C,YAAY,GAAG,CAAC,SAAS,GAAG,MAAM,OAAO,CAAC,CAAC,CAAC,GAAG,CAAC,MAAM,CAAC;AACvD,YAAY,GAAG,CAAC,OAAO,GAAG,MAAM,MAAM,CAAC,GAAG,CAAC,KAAK,CAAC;AACjD,QAAQ,CAAC,CAAC;AACV,IAAI;AACJ,IAAI,MAAM,OAAO,CAAC,IAAI,EAAE;AACxB;AACA,IAAI;AACJ,IAAI,MAAM,KAAK,CAAC,IAAI,EAAE;AACtB,QAAQ,MAAM,KAAK,GAAG,MAAM,IAAI,CAAC,QAAQ,CAAC,WAAW,CAAC;AACtD,QAAQ,MAAM,KAAK,GAAG,WAAW,CAAC,KAAK,CAAC,IAAI,GAAG,GAAG,EAAE,IAAI,GAAG,SAAS,EAAE,KAAK,EAAE,KAAK,CAAC;AACnF,QAAQ,MAAM,IAAI,OAAO,CAAC,CAAC,OAAO,EAAE,MAAM,KAAK;AAC/C,YAAY,MAAM,GAAG,GAAG,KAAK,CAAC,MAAM,CAAC,KAAK,CAAC;AAC3C,YAAY,GAAG,CAAC,SAAS,GAAG,MAAM,OAAO,EAAE;AAC3C,YAAY,GAAG,CAAC,OAAO,GAAG,MAAM,MAAM,CAAC,GAAG,CAAC,KAAK,CAAC;AACjD,QAAQ,CAAC,CAAC;AACV,IAAI;AACJ;;ACvGA;AACA;AACA;AACU,IAAC;AACX,CAAC,UAAU,WAAW,EAAE;AACxB,IAAI,WAAW,CAAC,mBAAmB,CAAC,GAAG,mBAAmB;AAC1D,IAAI,WAAW,CAAC,iBAAiB,CAAC,GAAG,iBAAiB;AACtD,IAAI,WAAW,CAAC,qBAAqB,CAAC,GAAG,qBAAqB;AAC9D,IAAI,WAAW,CAAC,mBAAmB,CAAC,GAAG,mBAAmB;AAC1D;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,IAAI,WAAW,CAAC,aAAa,CAAC,GAAG,aAAa;AAC9C,CAAC,EAAE,WAAW,KAAK,WAAW,GAAG,EAAE,CAAC,CAAC;AAC9B,SAAS,2BAA2B,CAAC,GAAG,EAAE;AACjD,IAAI,OAAO,GAAG,IAAI,WAAW,CAAC,iBAAiB,IAAI,GAAG,IAAI,WAAW,CAAC,WAAW;AACjF;AACA,eAAe,kBAAkB,CAAC,aAAa,EAAE;AACjD,IAAI,IAAI,aAAa,EAAE;AACvB,QAAQ,MAAM,EAAE,OAAO,EAAE,OAAO,EAAE,GAAG,MAAM,OAAO,oDAAoD,CAAC;AACvG,QAAQ,OAAO,OAAO,EAAE;AACxB,IAAI;AACJ,SAAS;AACT,QAAQ,MAAM,EAAE,OAAO,EAAE,OAAO,EAAE,GAAG,MAAM,OAAO,iDAAiD,CAAC;AACpG,QAAQ,OAAO,OAAO,EAAE;AACxB,IAAI;AACJ;AACA,eAAe,iBAAiB,CAAC,aAAa,EAAE;AAChD,IAAI,IAAI,aAAa,EAAE;AACvB,QAAQ,MAAM,EAAE,OAAO,EAAE,OAAO,EAAE,GAAG,MAAM,OAAO,8CAA8C,CAAC;AACjG,QAAQ,OAAO,OAAO,EAAE;AACxB,IAAI;AACJ,SAAS;AACT,QAAQ,MAAM,EAAE,OAAO,EAAE,OAAO,EAAE,GAAG,MAAM,OAAO,2CAA2C,CAAC;AAC9F,QAAQ,OAAO,OAAO,EAAE;AACxB,IAAI;AACJ;AACA;AACA;AACA;AACO,eAAe,gBAAgB,CAAC,EAAE,GAAG,EAAE,QAAQ,EAAE,aAAa,EAAE,EAAE;AACzE,IAAI,IAAI,aAAa,GAAG,iBAAiB;AACzC,IAAI,IAAI,UAAU;AAClB,IAAI,QAAQ,GAAG;AACf,QAAQ,KAAK,WAAW,CAAC,iBAAiB,EAAE;AAC5C,YAAY,aAAa,GAAG,kBAAkB;AAC9C,YAAY,MAAM,EAAE,iBAAiB,EAAE,GAAG,MAAM,OAAO,0DAA0D,CAAC;AAClH,YAAY,UAAU,GAAG,CAAC,MAAM,KAAK;AACrC;AACA,gBAAgB,OAAO,iBAAiB,CAAC,MAAM,CAAC,QAAQ,EAAE,MAAM,EAAE,EAAE,UAAU,EAAE,WAAW,EAAE,CAAC;AAC9F,YAAY,CAAC;AACb,YAAY;AACZ,QAAQ;AACR,QAAQ,KAAK,WAAW,CAAC,mBAAmB,EAAE;AAC9C;AACA,YAAY,MAAM,EAAE,mBAAmB,EAAE,GAAG,MAAM,OAAO,4DAA4D,CAAC;AACtH,YAAY,UAAU,GAAG,CAAC,MAAM,KAAK,mBAAmB,CAAC,MAAM,CAAC,QAAQ,EAAE,MAAM,CAAC;AACjF,YAAY;AACZ,QAAQ;AACR,QAAQ,KAAK,WAAW,CAAC,eAAe,EAAE;AAC1C;AACA,YAAY,MAAM,EAAE,eAAe,EAAE,GAAG,MAAM,OAAO,wDAAwD,CAAC;AAC9G,YAAY,UAAU,GAAG,CAAC,MAAM,KAAK,eAAe,CAAC,MAAM,CAAC,QAAQ,EAAE,MAAM,CAAC;AAC7E,YAAY;AACZ,QAAQ;AACR,QAAQ,KAAK,WAAW,CAAC,iBAAiB,EAAE;AAC5C;AACA,YAAY,MAAM,EAAE,iBAAiB,EAAE,GAAG,MAAM,OAAO,0DAA0D,CAAC;AAClH,YAAY,UAAU,GAAG,CAAC,MAAM,KAAK,iBAAiB,CAAC,MAAM,CAAC,QAAQ,EAAE,MAAM,EAAE,EAAE,CAAC;AACnF,YAAY;AACZ,QAAQ;AACR,QAAQ,KAAK,WAAW,CAAC,WAAW,EAAE;AACtC,YAAY,MAAM,EAAE,SAAS,EAAE,GAAG,MAAM,OAAO,kDAAkD,CAAC;AAClG;AACA,YAAY,UAAU,GAAG,CAAC,MAAM,KAAK,SAAS,CAAC,MAAM,CAAC,QAAQ,EAAE,MAAM,CAAC;AACvE,YAAY;AACZ,QAAQ;AACR;AACA,IAAI,MAAM,MAAM,GAAG,MAAM,aAAa,CAAC,aAAa,CAAC;AACrD,IAAI,OAAO,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,UAAU,CAAC,MAAM,CAAC,EAAE;AACpD;;AC3FA,MAAM,mBAAmB,GAAG;AAC5B,IAAI,YAAY,EAAE,CAAC;AACnB,IAAI,WAAW,EAAE,EAAE;AACnB,IAAI,OAAO,EAAE;AACb,CAAC;AACD;AACA;AACA;AACA;AACA;AACO,MAAM,YAAY,SAAS,SAAS,CAAC;AAC5C,IAAI,IAAI;AACR,IAAI,SAAS;AACb,IAAI,UAAU;AACd,IAAI,WAAW,GAAG;AAClB,QAAQ,KAAK,EAAE;AACf,QAAQ,IAAI,CAAC,IAAI,GAAG,QAAQ;AAC5B,QAAQ,IAAI,CAAC,SAAS,GAAG,IAAI,KAAK,EAAE;AACpC,QAAQ,IAAI,CAAC,UAAU,GAAG,IAAI,KAAK,EAAE;AACrC,IAAI;AACJ,IAAI,KAAK,GAAG,EAAE;AACd,IAAI,MAAM,QAAQ,CAAC,EAAE,EAAE,OAAO,EAAE;AAChC,QAAQ,OAAO,EAAE,CAAC,IAAI,eAAe,EAAE,CAAC;AACxC,IAAI;AACJ,IAAI,MAAM,SAAS,CAAC,EAAE,EAAE,OAAO,EAAE;AACjC,QAAQ,OAAO,EAAE,CAAC,IAAI,eAAe,EAAE,CAAC;AACxC,IAAI;AACJ,IAAI,MAAM,aAAa,GAAG,EAAE;AAC5B;AACA,MAAM,eAAe,SAAS,WAAW,CAAC;AAC1C,IAAI,MAAM,UAAU,GAAG;AACvB,QAAQ,OAAO,mBAAmB;AAClC,IAAI;AACJ;;AClCA;AACA;AACA;AACA;AACO,MAAM,cAAc,CAAC;AAC5B,IAAI,QAAQ;AACZ,IAAI,aAAa,GAAG,CAAC;AACrB,IAAI,cAAc,GAAG,IAAI,GAAG,EAAE;AAC9B;AACA,IAAI,uBAAuB;AAC3B,IAAI,qBAAqB,GAAG,IAAI,GAAG,EAAE;AACrC,IAAI,WAAW,CAAC,OAAO,EAAE;AACzB,QAAQ,IAAI,CAAC,QAAQ,GAAG,OAAO;AAC/B,QAAQ,MAAM,KAAK,GAAG,OAAO,CAAC,KAAK;AACnC,QAAQ,IAAI,CAAC,uBAAuB,GAAG,IAAI,gBAAgB,CAAC,CAAC,EAAE,KAAK,CAAC,OAAO,CAAC,QAAQ,CAAC,cAAc,CAAC,CAAC;AACtG,QAAQ,IAAI,CAAC,uBAAuB,CAAC,SAAS,GAAG,CAAC,EAAE,IAAI,EAAE,KAAK;AAC/D,YAAY,IAAI,CAAC,yBAAyB,CAAC,IAAI,CAAC;AAChD,QAAQ,CAAC;AACT,IAAI;AACJ,IAAI,yBAAyB,CAAC,aAAa,EAAE;AAC7C,QAAQ,KAAK,MAAM,QAAQ,IAAI,IAAI,CAAC,qBAAqB,EAAE;AAC3D,YAAY,QAAQ,CAAC,WAAW,CAAC,aAAa,CAAC;AAC/C,QAAQ;AACR,IAAI;AACJ,IAAI,IAAI,MAAM,GAAG;AACjB,QAAQ,OAAO,IAAI,CAAC,QAAQ,CAAC,KAAK;AAClC,IAAI;AACJ,IAAI,IAAI,OAAO,GAAG;AAClB,QAAQ,OAAO,IAAI,CAAC,QAAQ,CAAC,MAAM;AACnC,IAAI;AACJ;AACA;AACA;AACA;AACA;AACA;AACA,IAAI,MAAM,OAAO,CAAC,QAAQ,EAAE;AAC5B,QAAQ,IAAI,MAAM,GAAG,IAAI;AACzB,QAAQ,MAAM,QAAQ,GAAG,IAAI,CAAC,aAAa,EAAE;AAC7C,QAAQ,IAAI,CAAC,cAAc,CAAC,GAAG,CAAC,QAAQ,CAAC;AACzC,QAAQ,IAAI,gBAAgB,GAAG,IAAI,GAAG,EAAE;AACxC,QAAQ,IAAI,oBAAoB;AAChC,QAAQ,SAAS,WAAW,GAAG;AAC/B,YAAY,IAAI,CAAC,MAAM,EAAE;AACzB,gBAAgB,MAAM,IAAI,KAAK,CAAC,gCAAgC,CAAC;AACjE,YAAY;AACZ,QAAQ;AACR,QAAQ,SAAS,mBAAmB,CAAC,KAAK,EAAE;AAC5C,YAAY,WAAW,EAAE;AACzB,YAAY,MAAM,KAAK,GAAG,gBAAgB,CAAC,GAAG,CAAC,KAAK,CAAC;AACrD,YAAY,IAAI,CAAC,KAAK,EAAE;AACxB,gBAAgB,MAAM,IAAI,KAAK,CAAC,qEAAqE,CAAC;AACtG,YAAY;AACZ,YAAY,OAAO,KAAK;AACxB,QAAQ;AACR,QAAQ,MAAM,KAAK,GAAG,YAAY;AAClC,YAAY,IAAI,MAAM,EAAE;AACxB,gBAAgB,MAAM,GAAG,KAAK;AAC9B,gBAAgB,IAAI,oBAAoB,EAAE;AAC1C,oBAAoB,IAAI,CAAC,qBAAqB,CAAC,MAAM,CAAC,oBAAoB,CAAC;AAC3E,gBAAgB;AAChB;AACA,gBAAgB,KAAK,MAAM,EAAE,KAAK,EAAE,IAAI,gBAAgB,CAAC,MAAM,EAAE,EAAE;AACnE,oBAAoB,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,EAAE,KAAK,EAAE,SAAS,CAAC,KAAK,EAAE,OAAO,EAAE,CAAC,mDAAmD,CAAC,EAAE,CAAC;AAChI,oBAAoB,MAAM,KAAK,CAAC,WAAW,EAAE;AAC7C,gBAAgB;AAChB,gBAAgB,IAAI,CAAC,cAAc,CAAC,MAAM,CAAC,QAAQ,CAAC;AACpD,gBAAgB,IAAI,IAAI,CAAC,cAAc,CAAC,IAAI,IAAI,CAAC,EAAE;AACnD,oBAAoB,MAAM,IAAI,CAAC,UAAU,EAAE;AAC3C,gBAAgB;AAChB,qBAAqB;AACrB,oBAAoB,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC;AACrC,wBAAwB,KAAK,EAAE,SAAS,CAAC,KAAK;AAC9C,wBAAwB,OAAO,EAAE;AACjC,qBAAqB,CAAC;AACtB,gBAAgB;AAChB,YAAY;AACZ,QAAQ,CAAC;AACT,QAAQ,IAAI,QAAQ,EAAE;AACtB,YAAY,SAAS,CAAC,KAAK,CAAC,OAAO,CAAC,QAAQ,EAAE,EAAE,EAAE,MAAM;AACxD,gBAAgB,KAAK,EAAE;AACvB,YAAY,CAAC,CAAC;AACd,QAAQ;AACR,QAAQ,OAAO;AACf,YAAY,KAAK;AACjB,YAAY,iBAAiB,EAAE,YAAY;AAC3C,gBAAgB,OAAO,IAAI,CAAC,MAAM,CAAC,cAAc,EAAE,CAAC,YAAY,EAAE;AAClE,YAAY,CAAC;AACb,YAAY,aAAa,EAAE,OAAO,KAAK,EAAE,SAAS,KAAK;AACvD,gBAAgB,WAAW,EAAE;AAC7B,gBAAgB,MAAM,KAAK,GAAG,MAAM,IAAI,CAAC,MAAM,CAAC,iBAAiB,CAAC,SAAS,IAAI,IAAI,GAAG,WAAW,CAAC,OAAO,CAAC,SAAS,CAAC,GAAG,SAAS,CAAC;AACjI,gBAAgB,IAAI,CAAC,MAAM,EAAE;AAC7B;AACA,oBAAoB,MAAM,KAAK,CAAC,WAAW,EAAE;AAC7C,oBAAoB,OAAO,WAAW,EAAE;AACxC,gBAAgB;AAChB,gBAAgB,MAAM,KAAK,GAAG,MAAM,CAAC,UAAU,EAAE;AACjD,gBAAgB,gBAAgB,CAAC,GAAG,CAAC,KAAK,EAAE,EAAE,KAAK,EAAE,KAAK,EAAE,CAAC;AAC7D,gBAAgB,OAAO,KAAK;AAC5B,YAAY,CAAC;AACb,YAAY,cAAc,EAAE,OAAO,KAAK,KAAK;AAC7C,gBAAgB,MAAM,KAAK,GAAG,mBAAmB,CAAC,KAAK,CAAC;AACxD,gBAAgB,gBAAgB,CAAC,MAAM,CAAC,KAAK,CAAC;AAC9C,gBAAgB,IAAI;AACpB,oBAAoB,IAAI,KAAK,CAAC,KAAK,EAAE;AACrC;AACA,wBAAwB,MAAM,EAAE,OAAO,EAAE,GAAG,MAAM,KAAK,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,IAAI,KAAK,IAAI,CAAC,OAAO,CAAC,CAAC,oCAAoC,CAAC,CAAC,CAAC;AACjI,wBAAwB,IAAI,OAAO,CAAC,MAAM,EAAE;AAC5C,4BAA4B,MAAM,aAAa,GAAG,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AAC3E,4BAA4B,IAAI,aAAa,CAAC,MAAM,EAAE;AACtD,gCAAgC,IAAI,CAAC,uBAAuB,CAAC,WAAW,CAAC,aAAa,CAAC;AACvF,gCAAgC,IAAI,CAAC,yBAAyB,CAAC,aAAa,CAAC;AAC7E,4BAA4B;AAC5B,wBAAwB;AACxB,oBAAoB;AACpB,gBAAgB;AAChB,wBAAwB;AACxB,oBAAoB,MAAM,KAAK,CAAC,KAAK,CAAC,WAAW,EAAE;AACnD,gBAAgB;AAChB,YAAY,CAAC;AACb,YAAY,OAAO,EAAE,OAAO,KAAK,EAAE,GAAG,EAAE,MAAM,KAAK;AACnD,gBAAgB,MAAM,EAAE,KAAK,EAAE,GAAG,mBAAmB,CAAC,KAAK,CAAC;AAC5D,gBAAgB,OAAO,MAAM,KAAK,CAAC,GAAG,CAAC,CAAC,EAAE,KAAK,EAAE,CAAC,OAAO,CAAC,GAAG,EAAE,MAAM,CAAC,CAAC;AACvE,YAAY,CAAC;AACb,YAAY,YAAY,EAAE,OAAO,KAAK,EAAE,GAAG,EAAE,MAAM,KAAK;AACxD,gBAAgB,MAAM,EAAE,KAAK,EAAE,GAAG,mBAAmB,CAAC,KAAK,CAAC;AAC5D,gBAAgB,OAAO,MAAM,KAAK,CAAC,GAAG,CAAC,CAAC,EAAE,KAAK,EAAE,CAAC,YAAY,CAAC,GAAG,EAAE,MAAM,CAAC,CAAC;AAC5E,YAAY,CAAC;AACb,YAAY,iBAAiB,EAAE,OAAO,QAAQ,KAAK;AACnD,gBAAgB,WAAW,EAAE;AAC7B,gBAAgB,IAAI,oBAAoB,EAAE;AAC1C,oBAAoB,IAAI,CAAC,qBAAqB,CAAC,MAAM,CAAC,oBAAoB,CAAC;AAC3E,gBAAgB;AAChB,gBAAgB,oBAAoB,GAAG,QAAQ;AAC/C,gBAAgB,IAAI,QAAQ,EAAE;AAC9B,oBAAoB,IAAI,CAAC,qBAAqB,CAAC,GAAG,CAAC,QAAQ,CAAC;AAC5D,gBAAgB;AAChB,YAAY;AACZ,SAAS;AACT,IAAI;AACJ,IAAI,MAAM,UAAU,GAAG;AACvB,QAAQ,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC;AACzB,YAAY,KAAK,EAAE,SAAS,CAAC,KAAK;AAClC,YAAY,OAAO,EAAE,CAAC,sBAAsB,EAAE,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC,CAAC;AACnF,SAAS,CAAC;AACV,QAAQ,MAAM,UAAU,GAAG,IAAI,CAAC,MAAM;AACtC,QAAQ,IAAI,CAAC,QAAQ,CAAC,OAAO,EAAE;AAC/B,QAAQ,IAAI,CAAC,uBAAuB,CAAC,KAAK,EAAE;AAC5C,QAAQ,MAAM,UAAU,CAAC,KAAK,EAAE;AAChC,IAAI;AACJ;;ACvJO,MAAM,iBAAiB,GAAG,MAAM;AACvC,IAAI,IAAI,OAAO,IAAI,SAAS,IAAI,SAAS,CAAC,KAAK,EAAE;AACjD,QAAQ,OAAO,SAAS,CAAC,KAAK;AAC9B,IAAI;AACJ,IAAI,MAAM,IAAI,KAAK,CAAC,mHAAmH,CAAC;AACxI,CAAC;;ACLS,IAAC;AACX,CAAC,UAAU,sBAAsB,EAAE;AACnC,IAAI,sBAAsB,CAAC,QAAQ,CAAC,GAAG,QAAQ;AAC/C,IAAI,sBAAsB,CAAC,YAAY,CAAC,GAAG,MAAM;AACjD,CAAC,EAAE,sBAAsB,KAAK,sBAAsB,GAAG,EAAE,CAAC,CAAC;;ACD3D;AACA;AACA;AACA;AACA;AACA;AACA;AACO,MAAM,iBAAiB,GAAG,GAAG;AACpC;AACA;AACA;AACO,SAAS,yBAAyB,CAAC,OAAO,EAAE;AACnD,IAAI,MAAM,QAAQ,GAAG;AACrB,QAAQ,iBAAiB,EAAE,KAAK;AAChC,QAAQ,OAAO,EAAE,EAAE,QAAQ,IAAI,UAAU,CAAC;AAC1C;AACA;AACA;AACA;AACA,QAAQ,eAAe,EAAE,OAAO,UAAU,CAAC,SAAS,KAAK,WAAW;AACpE,YAAY,OAAO,YAAY,KAAK,WAAW;AAC/C,YAAY,CAAC,SAAS,CAAC,SAAS,CAAC,KAAK,CAAC,6BAA6B,CAAC;AACrE,YAAY,CAAC,MAAM,CAAC,MAAM;AAC1B,QAAQ,YAAY,EAAE,IAAI;AAC1B,QAAQ,sBAAsB,EAAE,SAAS,CAAC,IAAI;AAC9C,QAAQ,gBAAgB,EAAE,sBAAsB,CAAC,MAAM;AACvD,QAAQ,WAAW,EAAE,EAAE,GAAG,IAAI;AAC9B,QAAQ,aAAa,EAAE,SAAS;AAChC,QAAQ,GAAG,EAAE,WAAW,CAAC,iBAAiB;AAC1C,QAAQ,iBAAiB,EAAE;AAC3B,KAAK;AACL,IAAI,MAAM,QAAQ,GAAG,MAAM,CAAC,MAAM,CAAC,QAAQ,EAAE,OAAO,CAAC;AACrD,IAAI,IAAI,2BAA2B,CAAC,QAAQ,CAAC,GAAG,CAAC,IAAI,CAAC,QAAQ,CAAC,YAAY,EAAE;AAC7E,QAAQ,MAAM,IAAI,KAAK,CAAC,CAAC,0FAA0F,EAAE,QAAQ,CAAC,GAAG,CAAC,EAAE,CAAC,CAAC;AACtI,IAAI;AACJ,IAAI,OAAO,QAAQ;AACnB;;ACvCO,MAAM,sBAAsB,CAAC;AACpC,IAAI,KAAK;AACT;AACA;AACA,IAAI,WAAW,GAAG,IAAI,GAAG,EAAE;AAC3B,IAAI,WAAW,CAAC,IAAI,EAAE;AACtB,QAAQ,IAAI,CAAC,KAAK,GAAG,IAAI;AACzB,IAAI;AACJ;AACA;AACA;AACA,IAAI,MAAM,CAAC,GAAG,EAAE;AAChB,QAAQ,MAAM,cAAc,GAAG,IAAI,CAAC,WAAW,CAAC,GAAG,CAAC,GAAG,CAAC;AACxD,QAAQ,IAAI,cAAc,IAAI,IAAI,EAAE;AACpC;AACA,YAAY,IAAI,CAAC,WAAW,CAAC,MAAM,CAAC,GAAG,CAAC;AACxC,YAAY,IAAI,CAAC,WAAW,CAAC,GAAG,CAAC,GAAG,EAAE,cAAc,CAAC;AACrD,YAAY,OAAO,cAAc;AACjC,QAAQ;AACR,QAAQ,OAAO,IAAI;AACnB,IAAI;AACJ;AACA;AACA;AACA;AACA;AACA;AACA,IAAI,YAAY,CAAC,GAAG,EAAE,SAAS,EAAE;AACjC,QAAQ,IAAI,CAAC,WAAW,CAAC,GAAG,CAAC,GAAG,EAAE,SAAS,CAAC;AAC5C,QAAQ,IAAI,IAAI,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,CAAC,KAAK,EAAE;AAChD,YAAY,KAAK,MAAM,CAAC,CAAC,EAAE,CAAC,CAAC,IAAI,IAAI,CAAC,WAAW,CAAC,OAAO,EAAE,EAAE;AAC7D,gBAAgB,IAAI,CAAC,WAAW,CAAC,MAAM,CAAC,CAAC,CAAC;AAC1C,gBAAgB,OAAO,CAAC;AACxB,YAAY;AACZ,QAAQ;AACR,QAAQ,OAAO,IAAI;AACnB,IAAI;AACJ,IAAI,KAAK,GAAG;AACZ,QAAQ,MAAM,MAAM,GAAG,CAAC,GAAG,IAAI,CAAC,WAAW,CAAC,MAAM,EAAE,CAAC;AACrD,QAAQ,IAAI,CAAC,WAAW,CAAC,KAAK,EAAE;AAChC,QAAQ,OAAO,MAAM;AACrB,IAAI;AACJ;;ACtCA;AACA;AACA;AACA;AACA;AACA;AACO,MAAM,mBAAmB,CAAC;AACjC,IAAI,OAAO;AACX,IAAI,UAAU,GAAG,IAAI;AACrB,IAAI,sBAAsB;AAC1B;AACA;AACA;AACA,IAAI,EAAE,GAAG,CAAC;AACV,IAAI,cAAc;AAClB,IAAI,WAAW,CAAC,OAAO,EAAE;AACzB,QAAQ,IAAI,CAAC,OAAO,GAAG,OAAO;AAC9B,QAAQ,IAAI,CAAC,cAAc;AAC3B,YAAY,OAAO,CAAC,uBAAuB,GAAG,CAAC,GAAG,IAAI,sBAAsB,CAAC,OAAO,CAAC,uBAAuB,CAAC,GAAG,IAAI;AACpH,IAAI;AACJ,IAAI,IAAI,MAAM,GAAG;AACjB,QAAQ,OAAO,IAAI,CAAC,EAAE,IAAI,CAAC;AAC3B,IAAI;AACJ,IAAI,MAAM,IAAI,GAAG;AACjB,QAAQ,MAAM,EAAE,MAAM,EAAE,GAAG,EAAE,GAAG,MAAM,gBAAgB,CAAC,IAAI,CAAC,OAAO,CAAC;AACpE,QAAQ,MAAM,IAAI,CAAC,cAAc,CAAC,MAAM,EAAE,GAAG,CAAC;AAC9C,IAAI;AACJ,IAAI,MAAM,cAAc,CAAC,MAAM,EAAE,GAAG,EAAE;AACtC,QAAQ,MAAM,GAAG,IAAI,IAAI,CAAC,UAAU,GAAG,MAAM,IAAI,CAAC,aAAa,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;AAC7E,QAAQ,IAAI,CAAC,EAAE,GAAG,MAAM,GAAG,CAAC,OAAO,CAAC,IAAI,CAAC,OAAO,CAAC,QAAQ,EAAE,IAAI,CAAC,OAAO,CAAC,QAAQ,GAAG,CAAC,8BAA8B,CAAC,kDAAkD;AACrK,QAAQ,MAAM,IAAI,CAAC,UAAU,CAAC,CAAC,oBAAoB,EAAE,IAAI,CAAC,OAAO,CAAC,gBAAgB,CAAC,CAAC,CAAC,CAAC;AACtF,QAAQ,IAAI,IAAI,CAAC,OAAO,CAAC,aAAa,EAAE;AACxC,YAAY,MAAM,UAAU,GAAG,IAAI,CAAC,OAAO,CAAC,aAAa,CAAC,UAAU,CAAC,GAAG,EAAE,IAAI,CAAC;AAC/E,YAAY,MAAM,IAAI,CAAC,UAAU,CAAC,CAAC,cAAc,EAAE,UAAU,CAAC,EAAE,CAAC,CAAC;AAClE,QAAQ;AACR,QAAQ,MAAM,IAAI,CAAC,UAAU,CAAC,CAAC,qBAAqB,EAAE,IAAI,CAAC,OAAO,CAAC,WAAW,CAAC,CAAC,CAAC,CAAC;AAClF,QAAQ,MAAM,IAAI,CAAC,UAAU,CAAC,CAAC,yCAAyC,CAAC,CAAC;AAC1E,IAAI;AACJ,IAAI,MAAM,aAAa,CAAC,MAAM,EAAE,GAAG,EAAE;AACrC,QAAQ,GAAG,CAAC,UAAU,GAAG,iBAAiB;AAC1C,QAAQ,IAAI,CAAC,sBAAsB,GAAG,MAAM,CAAC,KAAK,CAAC,wBAAwB,EAAE,KAAK,EAAE,CAAC,KAAK,CAAC,CAAC;AAC5F,QAAQ,MAAM,OAAO,GAAGA,OAAe,CAAC,MAAM,CAAC;AAC/C,QAAQ,OAAO,CAAC,YAAY,CAAC,GAAG,EAAE,IAAI,CAAC;AACvC;AACA;AACA;AACA,QAAQ,MAAM,CAAC,KAAK,CAAC,uBAAuB,EAAE,KAAK,EAAE,EAAE,CAAC;AACxD;AACA;AACA;AACA,QAAQ,IAAI,IAAI,CAAC,OAAO,CAAC,aAAa,EAAE;AACxC,YAAY,MAAM,YAAY,GAAG,MAAM,CAAC,KAAK,CAAC,sBAAsB,EAAE,KAAK,EAAE,CAAC,QAAQ,EAAE,KAAK,CAAC,EAAE,CAAC,IAAI,CAAC,OAAO,CAAC,QAAQ,EAAE,CAAC,CAAC,CAAC;AAC3H,YAAY,IAAI,YAAY,KAAK,CAAC,EAAE;AACpC,gBAAgB,MAAM,IAAI,KAAK,CAAC,yEAAyE,CAAC;AAC1G,YAAY;AACZ,QAAQ;AACR,QAAQ,OAAO,OAAO;AACtB,IAAI;AACJ,IAAI,aAAa,GAAG;AACpB,QAAQ,IAAI,CAAC,IAAI,CAAC,UAAU,EAAE;AAC9B,YAAY,MAAM,IAAI,KAAK,CAAC,CAAC,gCAAgC,CAAC,CAAC;AAC/D,QAAQ;AACR,QAAQ,OAAO,IAAI,CAAC,UAAU;AAC9B,IAAI;AACJ;AACA;AACA;AACA;AACA,IAAI,YAAY,GAAG;AACnB,QAAQ,OAAO,IAAI,CAAC,aAAa,EAAE,CAAC,cAAc,CAAC,IAAI,CAAC,EAAE,CAAC,IAAI,CAAC;AAChE,IAAI;AACJ,IAAI,MAAM,OAAO,CAAC,GAAG,EAAE,QAAQ,EAAE;AACjC,QAAQ,MAAM,SAAS,GAAG,MAAM,IAAI,CAAC,yBAAyB,CAAC,GAAG,EAAE,QAAQ,CAAC;AAC7E,QAAQ,OAAO,IAAI,CAAC,gBAAgB,CAAC,IAAI,CAAC,aAAa,EAAE,EAAE,SAAS,CAAC;AACrE,IAAI;AACJ,IAAI,MAAM,YAAY,CAAC,GAAG,EAAE,QAAQ,EAAE;AACtC,QAAQ,MAAM,OAAO,GAAG,EAAE;AAC1B,QAAQ,MAAM,GAAG,GAAG,IAAI,CAAC,aAAa,EAAE;AACxC,QAAQ,WAAW,MAAM,IAAI,IAAI,GAAG,CAAC,UAAU,CAAC,IAAI,CAAC,EAAE,EAAE,GAAG,CAAC,EAAE;AAC/D,YAAY,IAAI,OAAO;AACvB,YAAY,KAAK,MAAM,YAAY,IAAI,QAAQ,EAAE;AACjD,gBAAgB,MAAM,EAAE,GAAG,MAAM,IAAI,CAAC,oBAAoB,CAAC,GAAG,EAAE,IAAI,EAAE,YAAY,EAAE,OAAO,EAAE,KAAK,CAAC;AACnG,gBAAgB,OAAO,CAAC,IAAI,CAAC,IAAI,CAAC,gBAAgB,CAAC,GAAG,EAAE,EAAE,CAAC,CAAC;AAC5D,YAAY;AACZ;AACA,YAAY;AACZ,QAAQ;AACR,QAAQ,OAAO,OAAO;AACtB,IAAI;AACJ,IAAI,gBAAgB,CAAC,GAAG,EAAE,EAAE,OAAO,EAAE,WAAW,EAAE,EAAE;AACpD,QAAQ,OAAO;AACf,YAAY,YAAY,EAAE,GAAG,CAAC,OAAO,CAAC,IAAI,CAAC,EAAE,CAAC;AAC9C,YAAY,QAAQ,EAAE,GAAG,CAAC,cAAc,CAAC,IAAI,CAAC,EAAE,CAAC;AACjD,YAAY,UAAU,EAAE,GAAG,CAAC,cAAc,CAAC,IAAI,CAAC,EAAE,CAAC,IAAI,CAAC;AACxD,YAAY,OAAO;AACnB,YAAY;AACZ,SAAS;AACT,IAAI;AACJ;AACA;AACA;AACA,IAAI,MAAM,yBAAyB,CAAC,GAAG,EAAE,QAAQ,EAAE;AACnD,QAAQ,MAAM,OAAO,GAAG,MAAM,IAAI,CAAC,UAAU,CAAC,GAAG,EAAE,QAAQ,CAAC;AAC5D,QAAQ,OAAO,OAAO,CAAC,MAAM,GAAG,OAAO,CAAC,CAAC,CAAC,GAAG,EAAE,WAAW,EAAE,EAAE,EAAE,OAAO,EAAE,EAAE,EAAE;AAC7E,IAAI;AACJ,IAAI,MAAM,UAAU,CAAC,GAAG,EAAE,QAAQ,EAAE;AACpC,QAAQ,MAAM,OAAO,GAAG,EAAE;AAC1B,QAAQ,MAAM,GAAG,GAAG,IAAI,CAAC,aAAa,EAAE;AACxC,QAAQ,WAAW,MAAM,IAAI,IAAI,IAAI,CAAC,gBAAgB,CAAC,GAAG,EAAE,GAAG,CAAC,EAAE;AAClE,YAAY,IAAI,OAAO;AACvB,YAAY,MAAM,EAAE,GAAG,MAAM,IAAI,CAAC,oBAAoB,CAAC,GAAG,EAAE,IAAI,EAAE,QAAQ,IAAI,EAAE,EAAE,OAAO,CAAC;AAC1F,YAAY,OAAO,GAAG,EAAE,CAAC,WAAW;AACpC,YAAY,IAAI,OAAO,CAAC,MAAM,EAAE;AAChC,gBAAgB,OAAO,CAAC,IAAI,CAAC,EAAE,CAAC;AAChC,YAAY;AACZ;AACA,YAAY,IAAI,QAAQ,EAAE;AAC1B,gBAAgB;AAChB,YAAY;AACZ,QAAQ;AACR,QAAQ,OAAO,OAAO;AACtB,IAAI;AACJ,IAAI,MAAM,oBAAoB,CAAC,GAAG,EAAE,IAAI,EAAE,QAAQ,EAAE,YAAY,EAAE,cAAc,GAAG,IAAI,EAAE;AACzF;AACA,QAAQ,QAAQ,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE,KAAK,EAAE,GAAG,KAAK;AAC5C,YAAY,IAAI,OAAO,CAAC,IAAI,SAAS,EAAE;AACvC,gBAAgB,GAAG,CAAC,KAAK,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC;AACtC,YAAY;AACZ,QAAQ,CAAC,CAAC;AACV,QAAQ,GAAG,CAAC,KAAK,CAAC,IAAI,CAAC;AACvB,QAAQ,IAAI,QAAQ,EAAE;AACtB,YAAY,GAAG,CAAC,eAAe,CAAC,IAAI,EAAE,QAAQ,CAAC;AAC/C,QAAQ;AACR,QAAQ,MAAM,IAAI,GAAG,EAAE;AACvB,QAAQ,OAAO,CAAC,MAAM,GAAG,CAAC,IAAI,CAAC,IAAI,CAAC,MAAM,UAAU,EAAE;AACtD,YAAY,IAAI,cAAc,EAAE;AAChC,gBAAgB,MAAM,GAAG,GAAG,GAAG,CAAC,GAAG,CAAC,IAAI,CAAC;AACzC,gBAAgB,IAAI,CAAC,IAAI,CAAC,GAAG,CAAC;AAC9B,YAAY;AACZ,QAAQ;AACR,QAAQ,YAAY,KAAK,GAAG,CAAC,YAAY,CAAC,IAAI,CAAC;AAC/C,QAAQ,OAAO,EAAE,WAAW,EAAE,YAAY,EAAE,OAAO,EAAE,IAAI,EAAE;AAC3D,IAAI;AACJ,IAAI,MAAM,KAAK,GAAG;AAClB,QAAQ,IAAI,IAAI,CAAC,MAAM,EAAE;AACzB,YAAY,MAAM,GAAG,GAAG,IAAI,CAAC,aAAa,EAAE;AAC5C,YAAY,IAAI,IAAI,CAAC,cAAc,EAAE;AACrC,gBAAgB,KAAK,MAAM,IAAI,IAAI,IAAI,CAAC,cAAc,CAAC,KAAK,EAAE,EAAE;AAChE,oBAAoB,MAAM,GAAG,CAAC,QAAQ,CAAC,IAAI,CAAC;AAC5C,gBAAgB;AAChB,YAAY;AACZ,YAAY,MAAM,GAAG,CAAC,KAAK,CAAC,IAAI,CAAC,EAAE,CAAC;AACpC,YAAY,IAAI,CAAC,EAAE,GAAG,CAAC;AACvB,QAAQ;AACR,IAAI;AACJ,IAAI,OAAO,gBAAgB,CAAC,GAAG,EAAE,GAAG,EAAE;AACtC,QAAQ;AACR,YAAY,MAAM,QAAQ,GAAG,IAAI,CAAC,cAAc,EAAE,MAAM,CAAC,GAAG,CAAC;AAC7D,YAAY,IAAI,QAAQ,IAAI,IAAI,EAAE;AAClC,gBAAgB,MAAM,QAAQ;AAC9B,gBAAgB;AAChB,YAAY;AACZ,QAAQ;AACR,QAAQ,MAAM,KAAK,GAAG,GAAG,CAAC,UAAU,CAAC,IAAI,CAAC,EAAE,EAAE,GAAG,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;AACtE,QAAQ,MAAM,kBAAkB,GAAG,EAAE;AACrC,QAAQ,IAAI;AACZ,YAAY,WAAW,MAAM,IAAI,IAAI,KAAK,EAAE;AAC5C,gBAAgB,kBAAkB,CAAC,IAAI,CAAC,IAAI,CAAC;AAC7C,gBAAgB,MAAM,IAAI;AAC1B,YAAY;AACZ,QAAQ;AACR,gBAAgB;AAChB;AACA;AACA,YAAY,IAAI,kBAAkB,CAAC,MAAM,KAAK,CAAC,IAAI,IAAI,CAAC,cAAc,EAAE;AACxE,gBAAgB,MAAM,IAAI,GAAG,kBAAkB,CAAC,CAAC,CAAC;AAClD;AACA,gBAAgB,IAAI,IAAI,CAAC,sBAAsB,CAAC,IAAI,CAAC,IAAI,CAAC,EAAE;AAC5D,oBAAoB,MAAM,OAAO,GAAG,IAAI,CAAC,cAAc,CAAC,YAAY,CAAC,GAAG,EAAE,IAAI,CAAC;AAC/E,oBAAoB,IAAI,OAAO,IAAI,IAAI,EAAE;AACzC,wBAAwB,MAAM,GAAG,CAAC,QAAQ,CAAC,OAAO,CAAC;AACnD,oBAAoB;AACpB,oBAAoB;AACpB,gBAAgB;AAChB,YAAY;AACZ;AACA,YAAY,KAAK,MAAM,IAAI,IAAI,kBAAkB,EAAE;AACnD,gBAAgB,MAAM,GAAG,CAAC,QAAQ,CAAC,IAAI,CAAC;AACxC,YAAY;AACZ,QAAQ;AACR,IAAI;AACJ;;AClMA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACO,MAAM,0BAA0B,CAAC;AACxC,IAAI,KAAK;AACT;AACA;AACA;AACA;AACA;AACA,IAAI,UAAU;AACd;AACA;AACA;AACA;AACA;AACA;AACA;AACA,IAAI,WAAW,CAAC,KAAK,EAAE,mBAAmB,EAAE;AAC5C,QAAQ,IAAI,CAAC,KAAK,GAAG,KAAK;AAC1B,QAAQ,IAAI,CAAC,UAAU,GAAG,mBAAmB,GAAG,IAAI,GAAG,IAAI,KAAK,EAAE;AAClE,IAAI;AACJ,IAAI,IAAI,OAAO,GAAG;AAClB,QAAQ,OAAO,IAAI,CAAC,KAAK,CAAC,OAAO;AACjC,IAAI;AACJ,IAAI,YAAY,CAAC,KAAK,EAAE;AACxB,QAAQ,IAAI,IAAI,CAAC,UAAU,EAAE;AAC7B,YAAY,OAAO,IAAI,CAAC,UAAU,CAAC,OAAO,CAAC,KAAK,CAAC;AACjD,QAAQ;AACR,QAAQ,OAAO,IAAI,OAAO,CAAC,CAAC,OAAO,EAAE,MAAM,KAAK;AAChD,YAAY,MAAM,OAAO,GAAG,EAAE,MAAM,EAAE,KAAK,EAAE;AAC7C,YAAY,SAAS,CAAC;AACtB,iBAAiB,OAAO,CAAC,CAAC,QAAQ,EAAE,IAAI,CAAC,OAAO,CAAC,QAAQ,CAAC,CAAC,EAAE,OAAO,EAAE,CAAC,CAAC,KAAK;AAC7E,gBAAgB,OAAO,IAAI,OAAO,CAAC,CAAC,UAAU,KAAK;AACnD,oBAAoB,OAAO,OAAO,CAAC,MAAM;AACzC,wBAAwB,UAAU,EAAE;AACpC,oBAAoB,CAAC,CAAC;AACtB,gBAAgB,CAAC,CAAC;AAClB,YAAY,CAAC;AACb,iBAAiB,KAAK,CAAC,MAAM,CAAC;AAC9B,QAAQ,CAAC,CAAC;AACV,IAAI;AACJ;AACA,IAAI,cAAc,GAAG;AACrB,QAAQ,OAAO,IAAI,CAAC,KAAK;AACzB,IAAI;AACJ;AACA;AACA;AACA,IAAI,MAAM,iBAAiB,CAAC,KAAK,EAAE;AACnC,QAAQ,MAAM,WAAW,GAAG,MAAM,IAAI,CAAC,YAAY,CAAC,KAAK,CAAC;AAC1D,QAAQ,MAAM,KAAK,GAAG,IAAI,oBAAoB,CAAC,WAAW,EAAE,IAAI,CAAC,KAAK,CAAC;AACvE,QAAQ,IAAI;AACZ;AACA,YAAY,IAAI,CAAC,KAAK,CAAC,aAAa,EAAE;AACtC;AACA;AACA;AACA,YAAY,IAAI,CAAC,IAAI,CAAC,KAAK,CAAC,YAAY,EAAE,EAAE;AAC5C,gBAAgB,MAAM,IAAI,CAAC,KAAK,CAAC,UAAU,CAAC,UAAU,CAAC;AACvD,YAAY;AACZ,QAAQ;AACR,QAAQ,OAAO,CAAC,EAAE;AAClB,YAAY,WAAW,EAAE;AACzB,YAAY,MAAM,CAAC;AACnB,QAAQ;AACR,QAAQ,OAAO,KAAK;AACpB,IAAI;AACJ,IAAI,MAAM,KAAK,GAAG;AAClB,QAAQ,MAAM,WAAW,GAAG,MAAM,IAAI,CAAC,YAAY,EAAE;AACrD,QAAQ,IAAI;AACZ,YAAY,MAAM,IAAI,CAAC,KAAK,CAAC,KAAK,EAAE;AACpC,QAAQ;AACR,gBAAgB;AAChB,YAAY,WAAW,EAAE;AACzB,QAAQ;AACR,IAAI;AACJ;AACA;AACA;AACA;AACO,MAAM,oBAAoB,CAAC;AAClC,IAAI,WAAW;AACf,IAAI,UAAU;AACd;AACA,IAAI,QAAQ,GAAG,IAAI,KAAK,EAAE;AAC1B,IAAI,MAAM,GAAG,KAAK;AAClB,IAAI,WAAW,CAAC,WAAW,EAAE,UAAU,EAAE;AACzC,QAAQ,IAAI,CAAC,WAAW,GAAG,WAAW;AACtC,QAAQ,IAAI,CAAC,UAAU,GAAG,UAAU;AACpC,IAAI;AACJ;AACA;AACA;AACA,IAAI,MAAM,WAAW,GAAG;AACxB,QAAQ,MAAM,IAAI,CAAC,QAAQ,CAAC,YAAY,CAAC,YAAY;AACrD,YAAY,IAAI,CAAC,IAAI,CAAC,MAAM,EAAE;AAC9B,gBAAgB,IAAI,CAAC,MAAM,GAAG,IAAI;AAClC,gBAAgB,IAAI,CAAC,WAAW,EAAE;AAClC,YAAY;AACZ,QAAQ,CAAC,CAAC;AACV,IAAI;AACJ;AACA;AACA;AACA,IAAI,MAAM,GAAG,CAAC,QAAQ,EAAE;AACxB,QAAQ,OAAO,MAAM,IAAI,CAAC,QAAQ,CAAC,YAAY,CAAC,YAAY;AAC5D,YAAY,IAAI,IAAI,CAAC,MAAM,EAAE;AAC7B,gBAAgB,MAAM,IAAI,KAAK,CAAC,qCAAqC,CAAC;AACtE,YAAY;AACZ,YAAY,OAAO,MAAM,QAAQ,CAAC,IAAI,CAAC,UAAU,CAAC;AAClD,QAAQ,CAAC,CAAC;AACV,IAAI;AACJ;;AChHA,MAAM,YAAY,GAAG,kBAAkB;AACvC;AACA;AACA;AACO,MAAM,mBAAmB,CAAC;AACjC,IAAI,MAAM;AACV,IAAI,gBAAgB,GAAG,IAAI,GAAG,EAAE;AAChC,IAAI,cAAc,GAAG,IAAI,KAAK,EAAE;AAChC,IAAI,WAAW,CAAC,MAAM,EAAE;AACxB,QAAQ,IAAI,CAAC,MAAM,GAAG,MAAM;AAC5B,IAAI;AACJ,IAAI,MAAM,gBAAgB,CAAC,EAAE,QAAQ,EAAE,QAAQ,EAAE,QAAQ,EAAE,EAAE;AAC7D,QAAQ,MAAM,MAAM,GAAG;AACvB,YAAY,GAAG,EAAE,CAAC,MAAM,KAAK;AAC7B,gBAAgB,IAAI,MAAM,CAAC,KAAK,IAAI,QAAQ;AAC5C,oBAAoB,IAAI,CAAC,MAAM,CAAC,GAAG,CAAC,MAAM,CAAC;AAC3C,YAAY;AACZ,SAAS;AACT,QAAQ,OAAO,OAAO,CAAC,KAAK,CAAC,MAAM,IAAI,CAAC,qBAAqB,CAAC,MAAM,EAAE,QAAQ,EAAE,QAAQ,CAAC,CAAC;AAC1F,IAAI;AACJ,IAAI,MAAM,iBAAiB,CAAC,IAAI,EAAE,QAAQ,EAAE;AAC5C,QAAQ,OAAO,iBAAiB,EAAE,CAAC,OAAO,CAAC,YAAY,EAAE,YAAY;AACrE,YAAY,MAAM,MAAM,GAAG,IAAI,CAAC,gBAAgB,CAAC,GAAG,CAAC,IAAI,CAAC;AAC1D,YAAY,IAAI,MAAM,IAAI,IAAI,EAAE;AAChC,gBAAgB,MAAM,IAAI,KAAK,CAAC,CAAC,kBAAkB,EAAE,IAAI,CAAC,kEAAkE,CAAC,CAAC;AAC9H,YAAY;AACZ,YAAY,OAAO,OAAO,CAAC,KAAK,CAAC,MAAM,MAAM,CAAC,OAAO,CAAC,QAAQ,CAAC,CAAC;AAChE,QAAQ,CAAC,CAAC;AACV,IAAI;AACJ,IAAI,MAAM,qBAAqB,CAAC,MAAM,EAAE,OAAO,EAAE,QAAQ,EAAE;AAC3D;AACA;AACA,QAAQ,MAAM,WAAW,GAAG,CAAC;AAC7B,QAAQ,IAAI,MAAM;AAClB,QAAQ,KAAK,IAAI,KAAK,GAAG,CAAC,EAAE,KAAK,GAAG,WAAW,GAAG,CAAC,EAAE,KAAK,EAAE,EAAE;AAC9D,YAAY,IAAI;AAChB,gBAAgB,MAAM,GAAG,MAAM,IAAI,CAAC,oBAAoB,CAAC,MAAM,EAAE,OAAO,CAAC;AACzE,YAAY;AACZ,YAAY,OAAO,KAAK,EAAE;AAC1B,gBAAgB,IAAI,CAAC,MAAM,CAAC,GAAG,CAAC;AAChC,oBAAoB,KAAK,EAAE,SAAS,CAAC,IAAI;AACzC,oBAAoB,OAAO,EAAE,CAAC,QAAQ,EAAE,KAAK,GAAG,CAAC,CAAC,IAAI,EAAE,WAAW,CAAC,iDAAiD,CAAC;AACtH,oBAAoB;AACpB,iBAAiB,CAAC;AAClB,gBAAgB,MAAM,IAAI,OAAO,CAAC,CAAC,OAAO,KAAK,UAAU,CAAC,OAAO,EAAE,IAAI,CAAC,CAAC;AACzE,YAAY;AACZ,QAAQ;AACR;AACA,QAAQ,MAAM,KAAK,MAAM,IAAI,CAAC,oBAAoB,CAAC,MAAM,EAAE,OAAO,CAAC;AACnE,QAAQ,OAAO,MAAM,CAAC,OAAO,CAAC,QAAQ,CAAC;AACvC,IAAI;AACJ,IAAI,MAAM,oBAAoB,CAAC,MAAM,EAAE,OAAO,EAAE;AAChD,QAAQ,MAAM,EAAE,QAAQ,EAAE,QAAQ,EAAE,GAAG,EAAE,GAAG,OAAO;AACnD;AACA;AACA;AACA;AACA,QAAQ,MAAM,mBAAmB,GAAG,EAAEC,gBAAc,IAAI,QAAQ,IAAI,GAAG,IAAI,WAAW,CAAC,WAAW,CAAC;AACnG,QAAQ,MAAM,eAAe,GAAG,IAAI,CAAC,gBAAgB;AACrD,QAAQ,eAAe,YAAY,GAAG;AACtC,YAAY,IAAI,MAAM,GAAG,eAAe,CAAC,GAAG,CAAC,QAAQ,CAAC;AACtD,YAAY,IAAI,MAAM,IAAI,IAAI,EAAE;AAChC,gBAAgB,MAAM,UAAU,GAAG,IAAI,mBAAmB,CAAC,OAAO,CAAC;AACnE,gBAAgB,MAAM,mBAAmB,GAAG,IAAI,0BAA0B,CAAC,UAAU,EAAE,mBAAmB,CAAC;AAC3G;AACA;AACA;AACA,gBAAgB,MAAM,WAAW,GAAG,MAAM,mBAAmB,CAAC,YAAY,EAAE;AAC5E,gBAAgB,IAAI;AACpB,oBAAoB,MAAM,UAAU,CAAC,IAAI,EAAE;AAC3C,gBAAgB;AAChB,gBAAgB,OAAO,CAAC,EAAE;AAC1B,oBAAoB,WAAW,EAAE;AACjC,oBAAoB,MAAM,UAAU,CAAC,KAAK,EAAE;AAC5C,oBAAoB,MAAM,CAAC;AAC3B,gBAAgB;AAChB,gBAAgB,WAAW,EAAE;AAC7B,gBAAgB,MAAM,OAAO,GAAG,MAAM,eAAe,CAAC,MAAM,CAAC,QAAQ,CAAC;AACtE,gBAAgB,MAAM,GAAG,IAAI,cAAc,CAAC;AAC5C,oBAAoB,KAAK,EAAE,mBAAmB;AAC9C,oBAAoB,MAAM;AAC1B,oBAAoB;AACpB,iBAAiB,CAAC;AAClB,gBAAgB,eAAe,CAAC,GAAG,CAAC,QAAQ,EAAE,MAAM,CAAC;AACrD,YAAY;AACZ,YAAY,OAAO,MAAM;AACzB,QAAQ;AACR,QAAQ,IAAI,mBAAmB,EAAE;AACjC,YAAY,OAAO,iBAAiB,EAAE,CAAC,OAAO,CAAC,YAAY,EAAE,YAAY,CAAC;AAC1E,QAAQ;AACR,aAAa;AACb;AACA;AACA,YAAY,OAAO,IAAI,CAAC,cAAc,CAAC,YAAY,CAAC,YAAY,CAAC;AACjE,QAAQ;AACR,IAAI;AACJ,IAAI,QAAQ,GAAG;AACf,QAAQ,MAAM,iBAAiB,GAAG,CAAC,GAAG,IAAI,CAAC,gBAAgB,CAAC,MAAM,EAAE,CAAC;AACrE,QAAQ,OAAO,OAAO,CAAC,GAAG,CAAC,iBAAiB,CAAC,GAAG,CAAC,CAAC,EAAE,KAAK;AACzD,YAAY,EAAE,CAAC,UAAU,EAAE;AAC3B,QAAQ,CAAC,CAAC,CAAC;AACX,IAAI;AACJ;AACO,MAAMA,gBAAc,GAAG,yBAAyB,IAAI,UAAU;;AC5GrE;AACA;AACA;AACO,MAAM,cAAc,SAAS,SAAS,CAAC;AAC9C,IAAI,OAAO;AACX,IAAI,MAAM;AACV,IAAI,WAAW;AACf,IAAI,+BAA+B,GAAG,IAAI,eAAe,EAAE;AAC3D,IAAI,oBAAoB;AACxB,IAAI,WAAW,CAAC,OAAO,EAAE,MAAM,EAAE;AACjC,QAAQ,KAAK,EAAE;AACf,QAAQ,IAAI,CAAC,OAAO,GAAG,OAAO;AAC9B,QAAQ,IAAI,CAAC,MAAM,GAAG,MAAM;AAC5B,QAAQ,IAAI,CAAC,WAAW,GAAG;AAC3B,YAAY,UAAU,EAAE,OAAO,CAAC,UAAU;AAC1C,YAAY,kBAAkB,EAAE,OAAO,CAAC,0BAA0B,GAAG,IAAI,eAAe,EAAE,GAAG,SAAS;AACtG,YAAY,YAAY,EAAE,MAAM,CAAC,SAAS,KAAK;AAC/C,SAAS;AACT,QAAQ,MAAM,EAAE,KAAK,EAAE,KAAK,EAAE,GAAG,IAAI,cAAc,EAAE;AACrD,QAAQ,OAAO,CAAC,UAAU,CAAC,iBAAiB,CAAC,OAAO,CAAC,QAAQ,CAAC,KAAK,EAAE,CAAC,KAAK,CAAC,CAAC,CAAC;AAC9E,QAAQ,IAAI,CAAC,oBAAoB,GAAG,KAAK;AACzC,QAAQ,KAAK,CAAC,SAAS,GAAG,CAAC,KAAK,KAAK;AACrC,YAAY,MAAM,MAAM,GAAG,KAAK,CAAC,IAAI;AACrC,YAAY,MAAM,YAAY,GAAG;AACjC,gBAAgB;AAChB,aAAa;AACb,YAAY,IAAI,CAAC,gBAAgB,CAAC,CAAC,CAAC,KAAK;AACzC,gBAAgB,CAAC,CAAC,aAAa,IAAI,CAAC,CAAC,aAAa,CAAC,YAAY,CAAC;AAChE,YAAY,CAAC,CAAC;AACd,QAAQ,CAAC;AACT,IAAI;AACJ,IAAI,IAAI,IAAI,GAAG;AACf,QAAQ,OAAO,IAAI,CAAC,MAAM,CAAC,UAAU;AACrC,IAAI;AACJ;AACA;AACA;AACA;AACA;AACA;AACA;AACA,IAAI,gBAAgB,GAAG;AACvB;AACA;AACA,QAAQ,IAAI,CAAC,WAAW,CAAC,kBAAkB,CAAC,KAAK,EAAE;AACnD,IAAI;AACJ,IAAI,MAAM,KAAK,GAAG;AAClB;AACA,QAAQ,IAAI,CAAC,+BAA+B,CAAC,KAAK,EAAE;AACpD,QAAQ,IAAI,CAAC,oBAAoB,CAAC,KAAK,EAAE;AACzC,QAAQ,MAAM,kBAAkB,CAAC,IAAI,CAAC,WAAW,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,KAAK,EAAE,EAAE,IAAI,CAAC;AAC1E,QAAQ,IAAI,CAAC,OAAO,CAAC,OAAO,IAAI;AAChC,QAAQ,IAAI,CAAC,OAAO,CAAC,MAAM,GAAG,OAAO,CAAC,YAAY,CAAC,EAAE;AACrD,IAAI;AACJ,IAAI,QAAQ,CAAC,EAAE,EAAE,OAAO,EAAE;AAC1B,QAAQ,OAAO,IAAI,CAAC,KAAK,CAAC,KAAK,EAAE,EAAE,EAAE,OAAO,CAAC;AAC7C,IAAI;AACJ,IAAI,SAAS,CAAC,EAAE,EAAE,OAAO,EAAE;AAC3B,QAAQ,OAAO,IAAI,CAAC,KAAK,CAAC,IAAI,EAAE,EAAE,EAAE,OAAO,CAAC;AAC5C,IAAI;AACJ,IAAI,MAAM,KAAK,CAAC,KAAK,EAAE,EAAE,EAAE,OAAO,EAAE;AACpC,QAAQ,MAAM,KAAK,GAAG,MAAM,kBAAkB,CAAC,IAAI,CAAC,WAAW,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,aAAa,CAAC,KAAK,EAAE,OAAO,EAAE,SAAS,CAAC,CAAC;AACnH,QAAQ,IAAI;AACZ,YAAY,OAAO,MAAM,EAAE,CAAC,IAAI,iBAAiB,CAAC,IAAI,CAAC,WAAW,EAAE,KAAK,CAAC,CAAC;AAC3E,QAAQ;AACR,gBAAgB;AAChB,YAAY,MAAM,kBAAkB,CAAC,IAAI,CAAC,WAAW,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,cAAc,CAAC,KAAK,CAAC,CAAC;AACtF,QAAQ;AACR,IAAI;AACJ,IAAI,MAAM,aAAa,GAAG;AAC1B;AACA,IAAI;AACJ,IAAI,MAAM,eAAe,GAAG;AAC5B;AACA;AACA;AACA;AACA;AACA;AACA;AACA,QAAQ,MAAM,KAAK,GAAG,IAAI,CAAC,+BAA+B;AAC1D,QAAQ,MAAM,MAAM,GAAG,IAAI,CAAC,OAAO,CAAC,MAAM;AAC1C,QAAQ,IAAI,MAAM,IAAI,IAAI,EAAE;AAC5B,YAAY,MAAM,IAAI,KAAK,CAAC,CAAC,qEAAqE,CAAC,CAAC;AACpG,QAAQ;AACR,QAAQ,MAAM,IAAI,OAAO,CAAC,CAAC,OAAO,EAAE,MAAM,KAAK,SAAS,CAAC;AACzD,aAAa,OAAO,CAAC,CAAC,kBAAkB,EAAE,IAAI,CAAC,IAAI,CAAC,CAAC,EAAE,IAAI,CAAC,GAAG,EAAE,CAAC,CAAC,EAAE,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,MAAM,EAAE,GAAG,KAAK,CAAC,CAAC,CAAC,EAAE;AAC1G,YAAY,MAAM,EAAE,KAAK,CAAC;AAC1B,SAAS,EAAE,YAAY;AACvB,YAAY,OAAO,EAAE;AACrB;AACA,YAAY,IAAI,KAAK,CAAC,MAAM,CAAC,OAAO,EAAE;AACtC,gBAAgB;AAChB,YAAY;AACZ;AACA,YAAY,MAAM,IAAI,OAAO,CAAC,CAAC,WAAW,KAAK;AAC/C,gBAAgB,KAAK,CAAC,MAAM,CAAC,gBAAgB,CAAC,OAAO,EAAE,MAAM;AAC7D,oBAAoB,WAAW,EAAE;AACjC,gBAAgB,CAAC,CAAC;AAClB,YAAY,CAAC,CAAC;AACd,QAAQ,CAAC;AACT;AACA,aAAa,KAAK,CAAC,CAAC,EAAE,KAAK;AAC3B,YAAY,IAAI,EAAE,CAAC,IAAI,IAAI,YAAY,EAAE;AACzC,gBAAgB,OAAO,EAAE;AACzB,YAAY;AACZ,iBAAiB;AACjB,gBAAgB,MAAM,CAAC,EAAE,CAAC;AAC1B,YAAY;AACZ,QAAQ,CAAC,CAAC,CAAC;AACX,QAAQ,MAAM,OAAO,GAAG,MAAM,MAAM,CAAC,OAAO,CAAC,cAAc,CAAC,EAAE;AAC9D,QAAQ,OAAO,EAAE,IAAI,EAAE,OAAO,EAAE,UAAU,EAAE,IAAI,CAAC,IAAI,EAAE;AACvD,IAAI;AACJ,IAAI,gBAAgB,GAAG;AACvB,QAAQ,OAAO,IAAI,CAAC,MAAM;AAC1B,IAAI;AACJ;AACA;AACA;AACA;AACA;AACA;AACA;AACA,MAAM,iBAAiB,SAAS,WAAW,CAAC;AAC5C,IAAI,WAAW;AACf,IAAI,MAAM;AACV,IAAI,WAAW,CAAC,UAAU,EAAE,KAAK,EAAE;AACnC,QAAQ,KAAK,EAAE;AACf,QAAQ,IAAI,CAAC,WAAW,GAAG,UAAU;AACrC,QAAQ,IAAI,CAAC,MAAM,GAAG,KAAK;AAC3B,IAAI;AACJ;AACA;AACA;AACA,IAAI,MAAM,UAAU,CAAC,EAAE,EAAE,gBAAgB,EAAE;AAC3C,QAAQ,IAAI,IAAI,CAAC,WAAW,CAAC,YAAY,EAAE;AAC3C,YAAY,MAAM,KAAK,GAAG,WAAW,CAAC,GAAG,EAAE;AAC3C,YAAY,MAAM,WAAW,GAAG,gBAAgB,EAAE;AAClD,YAAY,IAAI;AAChB,gBAAgB,MAAM,CAAC,GAAG,MAAM,kBAAkB,CAAC,IAAI,CAAC,WAAW,EAAE,EAAE,CAAC;AACxE,gBAAgB,WAAW,CAAC,OAAO,CAAC,CAAC,MAAM,EAAE,WAAW,CAAC,CAAC,EAAE,EAAE,KAAK,EAAE,CAAC;AACtE,gBAAgB,OAAO,CAAC;AACxB,YAAY;AACZ,YAAY,OAAO,CAAC,EAAE;AACtB,gBAAgB,WAAW,CAAC,OAAO,CAAC,CAAC,cAAc,EAAE,CAAC,CAAC,OAAO,CAAC,EAAE,EAAE,WAAW,CAAC,CAAC,EAAE,EAAE,KAAK,EAAE,CAAC;AAC5F,gBAAgB,MAAM,CAAC;AACvB,YAAY;AACZ,QAAQ;AACR,aAAa;AACb,YAAY,OAAO,kBAAkB,CAAC,IAAI,CAAC,WAAW,EAAE,EAAE,CAAC;AAC3D,QAAQ;AACR,IAAI;AACJ,IAAI,MAAM,UAAU,CAAC,KAAK,EAAE,MAAM,EAAE;AACpC,QAAQ,OAAO,MAAM,IAAI,CAAC,gBAAgB,CAAC,KAAK,EAAE,MAAM,CAAC;AACzD,IAAI;AACJ,IAAI,MAAM,gBAAgB,CAAC,KAAK,EAAE,MAAM,EAAE;AAC1C,QAAQ,OAAO,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,OAAO,CAAC,IAAI,CAAC,MAAM,EAAE,KAAK,EAAE,MAAM,CAAC,EAAE,MAAM,KAAK,CAAC;AACzF,IAAI;AACJ,IAAI,MAAM,YAAY,CAAC,KAAK,EAAE,MAAM,GAAG,EAAE,EAAE;AAC3C,QAAQ,MAAM,OAAO,GAAG,MAAM,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,YAAY,CAAC,IAAI,CAAC,MAAM,EAAE,KAAK,EAAE,MAAM,CAAC,EAAE,MAAM,CAAC,EAAE,KAAK,CAAC,WAAW,EAAE,MAAM,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC;AAC9I,QAAQ,MAAM,MAAM,GAAG,EAAE,QAAQ,EAAE,SAAS,EAAE,YAAY,EAAE,CAAC,EAAE;AAC/D,QAAQ,KAAK,MAAM,MAAM,IAAI,OAAO,EAAE;AACtC,YAAY,MAAM,CAAC,QAAQ,GAAG,MAAM,CAAC,QAAQ;AAC7C,YAAY,MAAM,CAAC,YAAY,GAAG,CAAC,MAAM,CAAC,YAAY,IAAI,CAAC,IAAI,MAAM,CAAC,YAAY;AAClF,QAAQ;AACR,QAAQ,OAAO,sBAAsB,CAAC,MAAM,CAAC;AAC7C,IAAI;AACJ;AACA,eAAe,kBAAkB,CAAC,KAAK,EAAE,aAAa,EAAE,iBAAiB,GAAG,KAAK,EAAE;AACnF,IAAI,MAAM,UAAU,GAAG,KAAK,CAAC,kBAAkB;AAC/C,IAAI,IAAI,UAAU,EAAE;AACpB,QAAQ,OAAO,IAAI,OAAO,CAAC,CAAC,OAAO,EAAE,MAAM,KAAK;AAChD,YAAY,IAAI,UAAU,CAAC,MAAM,CAAC,OAAO,EAAE;AAC3C,gBAAgB,MAAM,CAAC,IAAI,qBAAqB,CAAC,mCAAmC,CAAC,CAAC;AACtF,gBAAgB,IAAI,CAAC,iBAAiB,EAAE;AACxC;AACA;AACA,oBAAoB;AACpB,gBAAgB;AAChB,YAAY;AACZ,YAAY,SAAS,WAAW,GAAG;AACnC,gBAAgB,MAAM,CAAC,IAAI,qBAAqB,CAAC,2CAA2C,CAAC,CAAC;AAC9F,YAAY;AACZ,YAAY,SAAS,eAAe,CAAC,MAAM,EAAE;AAC7C,gBAAgB,UAAU,CAAC,MAAM,CAAC,mBAAmB,CAAC,OAAO,EAAE,WAAW,CAAC;AAC3E,gBAAgB,MAAM,EAAE;AACxB,YAAY;AACZ,YAAY,UAAU,CAAC,MAAM,CAAC,gBAAgB,CAAC,OAAO,EAAE,WAAW,CAAC;AACpE,YAAY,aAAa,CAAC,KAAK,CAAC,UAAU;AAC1C,iBAAiB,IAAI,CAAC,CAAC,IAAI,KAAK,eAAe,CAAC,MAAM,OAAO,CAAC,IAAI,CAAC,CAAC;AACpE,iBAAiB,KAAK,CAAC,CAAC,CAAC,KAAK,eAAe,CAAC,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC;AAC/D,QAAQ,CAAC,CAAC;AACV,IAAI;AACJ,SAAS;AACT;AACA,QAAQ,OAAO,aAAa,CAAC,KAAK,CAAC,UAAU,CAAC;AAC9C,IAAI;AACJ;;ACvMA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACO,SAAS,sBAAsB,CAAC,KAAK,EAAE;AAC9C,IAAI,OAAO,IAAI,OAAO,CAAC,CAAC,OAAO,EAAE,MAAM,KAAK;AAC5C,QAAQ,MAAM,OAAO,GAAG,EAAE,MAAM,EAAE,KAAK,EAAE;AACzC,QAAQ,iBAAiB;AACzB,aAAa,OAAO,CAAC,CAAC,iBAAiB,EAAE,MAAM,CAAC,UAAU,EAAE,CAAC,CAAC,EAAE,OAAO,EAAE,CAAC,IAAI,KAAK;AACnF,YAAY,OAAO,CAAC,IAAI,CAAC,IAAI,CAAC;AAC9B,YAAY,OAAO,IAAI,OAAO,CAAC,CAAC,OAAO,KAAK;AAC5C,gBAAgB,IAAI,KAAK,EAAE;AAC3B,oBAAoB,KAAK,CAAC,gBAAgB,CAAC,OAAO,EAAE,MAAM,OAAO,EAAE,CAAC;AACpE,gBAAgB;AAChB,YAAY,CAAC,CAAC;AACd,QAAQ,CAAC;AACT,aAAa,KAAK,CAAC,MAAM,CAAC;AAC1B,IAAI,CAAC,CAAC;AACN;;ACzBA;AACA;AACA;AACA;AACO,eAAe,eAAe,CAAC,WAAW,EAAE,MAAM,EAAE,OAAO,EAAE,QAAQ,EAAE,OAAO,EAAE,aAAa,EAAE;AACtG,IAAI,MAAM,eAAe,GAAG,IAAI,eAAe,EAAE;AACjD,IAAI,MAAM,WAAW,GAAG,eAAe,CAAC,MAAM;AAC9C,IAAI,IAAI,OAAO,GAAG,IAAI;AACtB,IAAI,IAAI,OAAO;AACf,IAAI,IAAI,OAAO,EAAE,SAAS,EAAE;AAC5B,QAAQ,OAAO,GAAG,UAAU,CAAC,MAAM,eAAe,CAAC,KAAK,CAAC,+BAA+B,CAAC,EAAE,OAAO,CAAC,SAAS,CAAC;AAC7G,IAAI;AACJ,IAAI,IAAI;AACR,QAAQ,IAAI,aAAa,EAAE;AAC3B,YAAY,IAAI,UAAU;AAC1B;AACA;AACA;AACA;AACA,YAAY,CAAC,UAAU,EAAE,OAAO,CAAC,GAAG,MAAM,IAAI,OAAO,CAAC,CAAC,OAAO,EAAE,MAAM,KAAK;AAC3E,gBAAgB,IAAI,WAAW,GAAG,KAAK;AACvC,gBAAgB,SAAS,QAAQ,GAAG;AACpC,oBAAoB,WAAW,GAAG,IAAI;AACtC,oBAAoB,eAAe,CAAC,KAAK,EAAE;AAC3C,gBAAgB;AAChB,gBAAgB,SAAS,eAAe,CAAC,UAAU,EAAE,QAAQ,EAAE;AAC/D,oBAAoB,IAAI,WAAW,EAAE;AACrC;AACA,wBAAwB,QAAQ,EAAE;AAClC,oBAAoB;AACpB,yBAAyB;AACzB,wBAAwB,QAAQ,EAAE;AAClC,wBAAwB,OAAO,CAAC,CAAC,UAAU,EAAE,QAAQ,CAAC,CAAC;AACvD,oBAAoB;AACpB,gBAAgB;AAChB,gBAAgB,SAAS,aAAa,CAAC,KAAK,EAAE;AAC9C;AACA;AACA,oBAAoB,IAAI,WAAW;AACnC,wBAAwB;AACxB,oBAAoB,QAAQ,EAAE;AAC9B,oBAAoB,MAAM,CAAC,KAAK,CAAC;AACjC,gBAAgB;AAChB,gBAAgB,WAAW,CAAC,OAAO,CAAC,WAAW,CAAC,CAAC,IAAI,CAAC,CAAC,MAAM,KAAK,eAAe,CAAC,MAAM,EAAE,MAAM,CAAC,EAAE,aAAa,CAAC;AACjH,gBAAgB,OAAO,EAAE,UAAU,CAAC,WAAW,CAAC,CAAC,IAAI,CAAC,CAAC,EAAE,IAAI,EAAE,OAAO,EAAE,KAAK,eAAe,CAAC,IAAI,EAAE,OAAO,CAAC,EAAE,aAAa,CAAC;AAC3H,YAAY,CAAC,CAAC;AACd,YAAY,OAAO,MAAM,QAAQ,CAAC,UAAU,CAAC;AAC7C,QAAQ;AACR,aAAa;AACb,YAAY,OAAO,MAAM,WAAW,CAAC,YAAY,CAAC,MAAM,QAAQ,CAAC,MAAM,CAAC,EAAE,WAAW,CAAC;AACtF,QAAQ;AACR,IAAI;AACJ,YAAY;AACZ,QAAQ,IAAI,OAAO,IAAI,IAAI,EAAE;AAC7B,YAAY,YAAY,CAAC,OAAO,CAAC;AACjC,QAAQ;AACR,QAAQ,OAAO,IAAI;AACnB,IAAI;AACJ;;ACvDA;AACA;AACA;AACO,MAAM,cAAc,SAAS,SAAS,CAAC;AAC9C,IAAI,IAAI;AACR,IAAI,KAAK;AACT,IAAI,cAAc;AAClB,IAAI,gBAAgB,GAAG,IAAI,GAAG,EAAE;AAChC,IAAI,WAAW,CAAC,KAAK,EAAE,IAAI,EAAE;AAC7B,QAAQ,KAAK,EAAE;AACf,QAAQ,IAAI,CAAC,IAAI,GAAG,IAAI;AACxB,QAAQ,IAAI,CAAC,KAAK,GAAG,KAAK,CAAC,IAAI,CAAC,CAAC,MAAM,KAAK;AAC5C,YAAY,KAAK,MAAM,OAAO,IAAI,IAAI,CAAC,gBAAgB,EAAE;AACzD,gBAAgB,OAAO,CAAC,kCAAkC,GAAG,MAAM,CAAC,MAAM,CAAC,gBAAgB,CAAC,OAAO,CAAC,QAAQ,CAAC;AAC7G,YAAY;AACZ,YAAY,IAAI,CAAC,gBAAgB,CAAC,KAAK,EAAE;AACzC,YAAY,IAAI,CAAC,cAAc,GAAG,MAAM,CAAC,MAAM;AAC/C,YAAY,IAAI,MAAM,CAAC,iBAAiB,CAAC,MAAM,EAAE;AACjD,gBAAgB,OAAO,kBAAkB,CAAC,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,iBAAiB,CAAC;AAClF,YAAY;AACZ,YAAY,OAAO,yBAAyB,CAAC,MAAM,CAAC,MAAM,CAAC;AAC3D,QAAQ,CAAC,CAAC;AACV,IAAI;AACJ,IAAI,MAAM,IAAI,GAAG;AACjB,QAAQ,MAAM,IAAI,CAAC,KAAK;AACxB,IAAI;AACJ,IAAI,MAAM,KAAK,GAAG;AAClB,QAAQ,MAAM,KAAK,GAAG,MAAM,IAAI,CAAC,KAAK;AACtC,QAAQ,MAAM,KAAK,CAAC,KAAK,EAAE;AAC3B,IAAI;AACJ,IAAI,MAAM,QAAQ,CAAC,EAAE,EAAE,OAAO,EAAE;AAChC,QAAQ,MAAM,KAAK,GAAG,MAAM,IAAI,CAAC,KAAK;AACtC,QAAQ,OAAO,KAAK,CAAC,cAAc,CAAC,IAAI,EAAE,EAAE,EAAE,OAAO,CAAC;AACtD,IAAI;AACJ,IAAI,MAAM,SAAS,CAAC,EAAE,EAAE,OAAO,EAAE;AACjC,QAAQ,MAAM,KAAK,GAAG,MAAM,IAAI,CAAC,KAAK;AACtC,QAAQ,OAAO,KAAK,CAAC,cAAc,CAAC,KAAK,EAAE,EAAE,EAAE,OAAO,CAAC;AACvD,IAAI;AACJ,IAAI,MAAM,aAAa,GAAG;AAC1B,QAAQ,MAAM,KAAK,GAAG,MAAM,IAAI,CAAC,KAAK;AACtC,QAAQ,MAAM,KAAK,CAAC,aAAa,EAAE;AACnC,IAAI;AACJ,IAAI,gBAAgB,CAAC,QAAQ,EAAE;AAC/B,QAAQ,IAAI,IAAI,CAAC,cAAc,EAAE;AACjC,YAAY,OAAO,IAAI,CAAC,cAAc,CAAC,gBAAgB,CAAC,QAAQ,CAAC;AACjE,QAAQ;AACR,aAAa;AACb,YAAY,MAAM,OAAO,GAAG,EAAE,QAAQ,EAAE;AACxC,YAAY,IAAI,CAAC,gBAAgB,CAAC,GAAG,CAAC,OAAO,CAAC;AAC9C,YAAY,OAAO,MAAM;AACzB,gBAAgB,IAAI,OAAO,CAAC,kCAAkC,EAAE;AAChE,oBAAoB,OAAO,OAAO,CAAC,kCAAkC,EAAE;AACvE,gBAAgB;AAChB,qBAAqB;AACrB;AACA,oBAAoB,IAAI,CAAC,gBAAgB,CAAC,MAAM,CAAC,OAAO,CAAC;AACzD,gBAAgB;AAChB,YAAY,CAAC;AACb,QAAQ;AACR,IAAI;AACJ,IAAI,MAAM,eAAe,GAAG;AAC5B,QAAQ,MAAM,KAAK,GAAG,MAAM,IAAI,CAAC,KAAK;AACtC,QAAQ,OAAO,KAAK,CAAC,MAAM,CAAC,eAAe,EAAE;AAC7C,IAAI;AACJ,IAAI,gBAAgB,GAAG;AACvB,QAAQ,IAAI,IAAI,CAAC,cAAc,EAAE;AACjC,YAAY,OAAO,IAAI,CAAC,cAAc,CAAC,gBAAgB,EAAE;AACzD,QAAQ;AACR,QAAQ,MAAM,IAAI,KAAK,CAAC,6EAA6E,CAAC;AACtG,IAAI;AACJ;AACA,SAAS,yBAAyB,CAAC,UAAU,EAAE;AAC/C,IAAI,OAAO;AACX,QAAQ,MAAM,EAAE,UAAU;AAC1B,QAAQ,cAAc,EAAE,CAAC,aAAa,EAAE,EAAE,EAAE,OAAO,KAAK;AACxD,YAAY,IAAI,aAAa,EAAE;AAC/B,gBAAgB,OAAO,UAAU,CAAC,QAAQ,CAAC,EAAE,EAAE,OAAO,CAAC;AACvD,YAAY;AACZ,iBAAiB;AACjB,gBAAgB,OAAO,UAAU,CAAC,SAAS,CAAC,EAAE,EAAE,OAAO,CAAC;AACxD,YAAY;AACZ,QAAQ,CAAC;AACT,QAAQ,KAAK,EAAE,MAAM,UAAU,CAAC,KAAK,EAAE;AACvC,QAAQ,aAAa,EAAE,MAAM,UAAU,CAAC,aAAa;AACrD,KAAK;AACL;AACA,SAAS,kBAAkB,CAAC,MAAM,EAAE,OAAO,EAAE;AAC7C;AACA;AACA;AACA,IAAI,MAAM,WAAW,GAAG,IAAI,KAAK,EAAE;AACnC,IAAI,MAAM,eAAe,GAAG,IAAI,SAAS,CAAC,OAAO,CAAC;AAClD,IAAI,OAAO;AACX,QAAQ,MAAM;AACd,QAAQ,MAAM,cAAc,CAAC,aAAa,EAAE,EAAE,EAAE,OAAO,EAAE;AACzD,YAAY,OAAO,eAAe,CAAC,WAAW,EAAE,MAAM,EAAE,eAAe,EAAE,CAAC,UAAU,KAAK;AACzF,gBAAgB,OAAO,aAAa,GAAG,UAAU,CAAC,QAAQ,CAAC,EAAE,CAAC,GAAG,UAAU,CAAC,SAAS,CAAC,EAAE,CAAC;AACzF,YAAY,CAAC,EAAE,OAAO,EAAE,aAAa,CAAC;AACtC,QAAQ,CAAC;AACT,QAAQ,MAAM,KAAK,GAAG;AACtB,YAAY,MAAM,MAAM,CAAC,KAAK,EAAE;AAChC,YAAY,MAAM,OAAO,CAAC,GAAG,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,KAAK,EAAE,CAAC,CAAC;AAC5D,QAAQ,CAAC;AACT,QAAQ,MAAM,aAAa,GAAG;AAC9B,YAAY,MAAM,MAAM,CAAC,aAAa,EAAE;AACxC,YAAY,MAAM,OAAO,CAAC,GAAG,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,aAAa,EAAE,CAAC,CAAC;AACpE,QAAQ;AACR,KAAK;AACL;;AC9GA,SAAA,eAAA,CAAA,EAAA,OAAA,EAAA,kBAAA,EAAA,YAAA,EAAA,MAAA,EAAA,eAAA,EAAA,EAAA;AACA,IAAA,MAAA,IAAA,GAAA,CAAA,EAAA,MAAA,GAAA,SAAA,GAAA,EAAA,CAAA,UAAA,EAAA,kBAAA,CAAA,CAAA;AACA,IAAA,IAAA,MAAA;AACA,IAAA,IAAA,YAAA,EAAA;AACA,QAAA,MAAA,GAAA;AACA,cAAA,IAAA,YAAA,CAAA,YAAA,EAAA;AACA;AACA,gBAAA,IAAA;AACA,gBAAA,IAAA,EAAA;AACA,aAAA;AACA,cAAA,IAAA,MAAA,CAAA,YAAA,EAAA;AACA;AACA,gBAAA,IAAA;AACA,gBAAA,IAAA,EAAA;AACA,aAAA,CAAA;AACA,IAAA;AACA,SAAA;AACA,QAAA,MAAA,GAAA,2BAAA,CAAA,CAAA;AACA,IAAA;AACA,IAAA,OAAA,uBAAA,CAAA,MAAA,EAAA,eAAA,EAAA,OAAA,CAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,SAAA,2BAAA,CAAA,MAAA,EAAA,IAAA,EAAmD;AAAA,EAAA,MAAA,IAAA,KAAA,CAAA,2NAAA,CAAA;AAAA;;AAanD,SAAA,uBAAA,CAAA,MAAA,EAAA,MAAA,EAAA,OAAA,EAAA;AACA,IAAA,SAAA,QAAA,CAAA,KAAA,EAAA;AACA;AACA;AACA,QAAA,MAAA,CAAA,GAAA,CAAA;AACA,YAAA,KAAA,EAAA,SAAA,CAAA,KAAA;AACA,YAAA,KAAA,EAAA,KAAA,CAAA,KAAA;AACA,YAAA,OAAA,EAAA;AACA,SAAA,CAAA;AACA,IAAA;AACA,IAAA,MAAA,CAAA,gBAAA,CAAA,OAAA,EAAA,QAAA,CAAA;AACA,IAAA,MAAA,QAAA,GAAA,cAAA,CAAA,MAAA,CAAA;AACA,IAAA,IAAA,QAAA,EAAA;AACA,QAAA,MAAA,EAAA,KAAA,EAAA,KAAA,EAAA,GAAA,IAAA,cAAA,EAAA;AACA,QAAA,MAAA,QAAA,GAAA,MAAA,CAAA,IAAA;AACA,QAAA,QAAA,CAAA,KAAA,EAAA;AACA,QAAA,QAAA,CAAA,WAAA,CAAA,EAAA,IAAA,EAAA,KAAA,EAAA,OAAA,EAAA,EAAA,CAAA,KAAA,CAAA,CAAA;AACA,QAAA,KAAA,CAAA,KAAA,EAAA;AACA,QAAA,OAAA;AACA,YAAA,QAAA,EAAA,KAAA;AACA,YAAA,MAAA;AACA,YAAA,KAAA,GAAA;AACA,gBAAA,MAAA,CAAA,mBAAA,CAAA,OAAA,EAAA,QAAA,CAAA;AACA,gBAAA,KAAA,CAAA,KAAA,EAAA;AACA,YAAA;AACA,SAAA;AACA,IAAA;AACA,SAAA;AACA,QAAA,OAAA;AACA,YAAA,QAAA,EAAA,MAAA;AACA,YAAA,MAAA;AACA,YAAA,KAAA,GAAA;AACA,gBAAA,MAAA,CAAA,mBAAA,CAAA,OAAA,EAAA,QAAA,CAAA;AACA,gBAAA,MAAA,CAAA,SAAA,EAAA;AACA,YAAA;AACA,SAAA;AACA,IAAA;AACA;AACA,SAAA,cAAA,CAAA,MAAA,EAAA;AACA,IAAA,OAAA,MAAA,IAAA,MAAA;AACA;;AC9EA;AACA;AACA;AACO,MAAM,mBAAmB,CAAC;AACjC,IAAI,OAAO;AACX,IAAI,MAAM;AACV,IAAI,WAAW,CAAC,OAAO,EAAE;AACzB,QAAQ,IAAI,CAAC,OAAO,GAAG,yBAAyB,CAAC,OAAO,CAAC,IAAI,CAAC;AAC9D;AACA,QAAQ,MAAM,SAAS,GAAG,iBAAiB,GAAG,EAAE;AAChD,QAAQ,IAAI,IAAI,CAAC,OAAO,CAAC,UAAU,CAAC,MAAM,GAAG,SAAS,EAAE;AACxD,YAAY,MAAM,IAAI,KAAK,CAAC,CAAC,mCAAmC,EAAE,SAAS,CAAC,CAAC,CAAC,CAAC;AAC/E,QAAQ;AACR,QAAQ,IAAI,CAAC,MAAM,GAAG,OAAO,CAAC,MAAM;AACpC,IAAI;AACJ,IAAI,WAAW,GAAG;AAClB,QAAQ,OAAO,IAAI,cAAc,CAAC,IAAI,CAAC,cAAc,EAAE,EAAE,IAAI,CAAC,OAAO,CAAC,UAAU,CAAC;AACjF,IAAI;AACJ,IAAI,MAAM,GAAG;AACb,QAAQ,MAAM,EAAE,iBAAiB,EAAE,eAAe,EAAE,OAAO,EAAE,GAAG,IAAI,CAAC,OAAO;AAC5E,QAAQ,IAAI,OAAO,EAAE;AACrB,YAAY,IAAI,CAAC,iBAAiB,EAAE;AACpC,gBAAgB,IAAI,CAAC,MAAM,CAAC,GAAG,CAAC;AAChC,oBAAoB,KAAK,EAAE,SAAS,CAAC,IAAI;AACzC,oBAAoB,OAAO,EAAE;AAC7B;AACA;AACA,2EAA2E;AAC3E,iBAAiB,CAAC;AAClB,YAAY;AACZ,YAAY,OAAO,IAAI,YAAY,EAAE;AACrC,QAAQ;AACR,QAAQ,IAAI,CAAC,eAAe,EAAE;AAC9B,YAAY,IAAI,CAAC,MAAM,CAAC,GAAG,CAAC;AAC5B,gBAAgB,KAAK,EAAE,SAAS,CAAC,IAAI;AACrC,gBAAgB,OAAO,EAAE;AACzB,aAAa,CAAC;AACd,QAAQ;AACR,QAAQ,OAAO,IAAI,CAAC,WAAW,EAAE;AACjC,IAAI;AACJ,IAAI,MAAM,cAAc,GAAG;AAC3B,QAAQ,MAAM,EAAE,eAAe,EAAE,YAAY,EAAE,GAAG,EAAE,UAAU,EAAE,aAAa,EAAE,gBAAgB,EAAE,WAAW,EAAE,uBAAuB,EAAE,GAAG,IAAI,CAAC,OAAO;AACtJ,QAAQ,IAAI,CAAC,eAAe,EAAE;AAC9B,YAAY,IAAI,CAAC,MAAM,CAAC,GAAG,CAAC,EAAE,KAAK,EAAE,SAAS,CAAC,IAAI,EAAE,OAAO,EAAE,+CAA+C,EAAE,CAAC;AAChH,QAAQ;AACR,QAAQ,IAAI,MAAM;AAClB,QAAQ,IAAI,iBAAiB,GAAG,EAAE;AAClC,QAAQ,IAAI,0BAA0B,GAAG,2BAA2B,CAAC,GAAG,CAAC;AACzE,QAAQ,SAAS,iCAAiC,CAAC,QAAQ,EAAE;AAC7D,YAAY,OAAO;AACnB,gBAAgB,QAAQ,EAAE,UAAU;AACpC,gBAAgB,QAAQ;AACxB,gBAAgB,GAAG;AACnB,gBAAgB,aAAa;AAC7B,gBAAgB,gBAAgB;AAChC,gBAAgB,WAAW;AAC3B;AACA,gBAAgB,uBAAuB,EAAE,uBAAuB,IAAI;AACpE,aAAa;AACb,QAAQ;AACR,QAAQ,IAAI,YAAY,EAAE;AAC1B,YAAY,MAAM,eAAe,GAAG,IAAI,CAAC,OAAO,CAAC,MAAM;AACvD,YAAY,MAAM,kBAAkB,GAAG,OAAO,QAAQ,KAAK;AAC3D,gBAAgB,IAAI,gBAAgB;AACpC,gBAAgB,IAAI,OAAO,eAAe,IAAI,UAAU,EAAE;AAC1D,oBAAoB,MAAM,MAAM,GAAG,eAAe,CAAC,IAAI,CAAC,OAAO,CAAC;AAChE,oBAAoB,gBAAgB,GAAG,uBAAuB,CAAC,MAAM,EAAE,IAAI,CAAC,MAAM,EAAE,UAAU,CAAC;AAC/F,gBAAgB;AAChB,qBAAqB;AACrB,oBAAoB,MAAM,cAAc,GAAG,2BAA2B,CAAC,GAAG,CAAC;AAC3E,oBAAoB,MAAM,SAAS,GAAG,CAAC,cAAc,IAAI,eAAe;AACxE,oBAAoB,gBAAgB,GAAG,eAAe,CAAC;AACvD,wBAAwB,OAAO,EAAE,UAAU;AAC3C,wBAAwB,kBAAkB,EAAE,IAAI,CAAC,OAAO,CAAC,UAAU;AACnE,wBAAwB,MAAM,EAAE,SAAS;AACzC,wBAAwB,YAAY,EAAE,eAAe;AACrD,wBAAwB,eAAe,EAAE,IAAI,CAAC;AAC9C,qBAAqB,CAAC;AACtB,gBAAgB;AAChB,gBAAgB,MAAM,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC,gBAAgB,CAAC,QAAQ,CAAC;AACtE,gBAAgB,MAAM,WAAW,GAAG,IAAI,eAAe,EAAE;AACzD,gBAAgB,MAAM,UAAU,GAAG,MAAM,MAAM,CAAC,OAAO,CAAC;AACxD,oBAAoB,QAAQ,EAAE,iCAAiC,CAAC,QAAQ,CAAC;AACzE,oBAAoB,QAAQ,EAAE,IAAI,CAAC,OAAO,CAAC,sBAAsB;AACjE,oBAAoB,QAAQ,EAAE,MAAM,sBAAsB,CAAC,WAAW,CAAC,MAAM;AAC7E,iBAAiB,CAAC;AAClB,gBAAgB,MAAM,aAAa,GAAG;AACtC,oBAAoB,UAAU;AAC9B,oBAAoB,MAAM;AAC1B;AACA,oBAAoB,0BAA0B,EAAE,KAAK;AACrD,oBAAoB,OAAO,EAAE,MAAM;AACnC,wBAAwB,WAAW,CAAC,KAAK,EAAE;AAC3C,wBAAwB,gBAAgB,CAAC,KAAK,EAAE;AAChD,oBAAoB;AACpB,iBAAiB;AACjB,gBAAgB,OAAO,IAAI,cAAc,CAAC,aAAa,EAAE;AACzD,oBAAoB,GAAG,IAAI,CAAC,OAAO;AACnC,oBAAoB;AACpB,iBAAiB,CAAC;AAClB,YAAY,CAAC;AACb,YAAY,MAAM,GAAG,MAAM,kBAAkB,CAAC,KAAK,CAAC;AACpD,YAAY,IAAI,GAAG,IAAI,WAAW,CAAC,iBAAiB,EAAE;AACtD;AACA;AACA,gBAAgB,MAAM,sBAAsB,GAAG,IAAI,CAAC,OAAO,CAAC,iBAAiB,IAAI,CAAC;AAClF,gBAAgB,MAAM,wBAAwB,GAAG,EAAE;AACnD,gBAAgB,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,sBAAsB,EAAE,CAAC,EAAE,EAAE;AACjE,oBAAoB,wBAAwB,CAAC,IAAI,CAAC,kBAAkB,CAAC,IAAI,CAAC,CAAC;AAC3E,gBAAgB;AAChB,gBAAgB,iBAAiB,CAAC,IAAI,CAAC,IAAI,MAAM,OAAO,CAAC,GAAG,CAAC,wBAAwB,CAAC,CAAC,CAAC;AACxF,YAAY;AACZ,QAAQ;AACR,aAAa;AACb;AACA,YAAY,MAAM,WAAW,GAAG,IAAI,mBAAmB,CAAC,IAAI,CAAC,MAAM,CAAC;AACpE,YAAY,0BAA0B,GAAG,IAAI;AAC7C,YAAY,MAAM,UAAU,GAAG,MAAM,WAAW,CAAC,qBAAqB,CAAC,IAAI,CAAC,MAAM,EAAE,iCAAiC,CAAC,KAAK,CAAC,CAAC;AAC7H,YAAY,MAAM,GAAG,IAAI,cAAc,CAAC,EAAE,UAAU,EAAE,MAAM,EAAE,IAAI,EAAE,0BAA0B,EAAE,KAAK,EAAE,EAAE;AACzG,gBAAgB,GAAG,IAAI,CAAC,OAAO;AAC/B,gBAAgB;AAChB,aAAa,CAAC;AACd,QAAQ;AACR,QAAQ,OAAO;AACf,YAAY,MAAM,EAAE,MAAM;AAC1B,YAAY;AACZ,SAAS;AACT,IAAI;AACJ;;ACzIA;AACA;AACA;AACA;AACO,MAAM,+BAA+B,GAAG;AAC/C,IAAI,MAAM,WAAW,CAAC,UAAU,EAAE;AAClC,QAAQ,OAAO,IAAI,OAAO,CAAC,CAAC,eAAe,KAAK;AAChD,YAAY,iBAAiB,EAAE,CAAC,OAAO,CAAC,UAAU,EAAE,YAAY;AAChE,gBAAgB,MAAM,IAAI,OAAO,CAAC,CAAC,WAAW,KAAK;AACnD,oBAAoB,eAAe,CAAC,YAAY,WAAW,EAAE,CAAC;AAC9D,gBAAgB,CAAC,CAAC;AAClB,YAAY,CAAC,CAAC;AACd,QAAQ,CAAC,CAAC;AACV,IAAI,CAAC;AACL,IAAI,MAAM,UAAU,CAAC,UAAU,EAAE;AACjC,QAAQ,MAAM,YAAY,GAAG,MAAM,iBAAiB,EAAE,CAAC,KAAK,EAAE;AAC9D,QAAQ,OAAO,YAAY,CAAC,IAAI,EAAE,IAAI,CAAC,CAAC,QAAQ,KAAK,QAAQ,CAAC,IAAI,IAAI,UAAU,CAAC,IAAI,IAAI;AACzF,IAAI;AACJ,CAAC;;ACjBM,MAAM,8BAA8B,SAAS,YAAY,CAAC;AACjE,IAAI,SAAS;AACb,IAAI,SAAS;AACb,IAAI,WAAW;AACf,IAAI,YAAY;AAChB,IAAI,WAAW,GAAG;AAClB,QAAQ,KAAK,EAAE;AACf,QAAQ,IAAI,CAAC,SAAS,GAAG,IAAI,KAAK,EAAE;AACpC,QAAQ,IAAI,CAAC,SAAS,GAAG,IAAI,KAAK,EAAE;AACpC,QAAQ,IAAI,CAAC,WAAW,GAAG,KAAK;AAChC,IAAI;AACJ,IAAI,UAAU,CAAC,WAAW,EAAE;AAC5B,QAAQ,MAAM,KAAK,GAAG,WAAW,CAAC,IAAI,IAAI,QAAQ,CAAC,IAAI,GAAG,IAAI,CAAC,SAAS,GAAG,IAAI,CAAC,SAAS;AACzF,QAAQ,OAAO,KAAK,CAAC,YAAY,CAAC,WAAW,CAAC,QAAQ,EAAE,WAAW,CAAC,MAAM,CAAC;AAC3E,IAAI;AACJ;AACA;AACA;AACA,IAAI,MAAM,OAAO,GAAG,EAAE;AACtB,IAAI,MAAM,OAAO,GAAG,EAAE;AACtB;AACA;AACA;AACA,IAAI,MAAM,UAAU,GAAG,EAAE;AACzB;AACA;AACA;AACA,IAAI,MAAM,YAAY,GAAG,EAAE;AAC3B;AACA;AACA;AACA,IAAI,sBAAsB,CAAC,UAAU,EAAE;AACvC,QAAQ,OAAO,IAAI,OAAO,CAAC,MAAM,EAAE,CAAC,CAAC;AACrC,IAAI;AACJ;AACA;AACA;AACA,IAAI,iBAAiB,GAAG,EAAE;AAC1B;AACA;AACA;AACA,IAAI,mBAAmB,GAAG,EAAE;AAC5B;AACA;AACA;AACA,IAAI,4BAA4B,GAAG,EAAE;AACrC,IAAI,iBAAiB,GAAG;AACxB,QAAQ,MAAM,IAAI,KAAK,CAAC,8DAA8D,CAAC;AACvF,IAAI;AACJ;;ACnDA;AACA;AACA;AACO,MAAM,gCAAgC,CAAC;AAC9C;;ACJA;AACA;AACA;AACA;AACA;AACA;AACO,SAAS,gBAAgB,CAAC,GAAG,EAAE;AACtC,IAAI,GAAG,KAAK,SAAS;AACrB,IAAI,MAAM,OAAO,GAAG,cAAc,CAAC,GAAG,CAAC;AACvC,IAAI,MAAM,EAAE,GAAG,SAAS,CAAC,GAAG,CAAC;AAC7B;AACA,IAAI,OAAO,CAAC,OAAO,EAAE,EAAE,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,IAAI,CAAC;AACjD;AACA,SAAS,cAAc,CAAC,GAAG,EAAE;AAC7B,IAAI,MAAM,MAAM,GAAG,GAAG,CAAC,aAAa,EAAE,MAAM;AAC5C,IAAI,IAAI,MAAM,IAAI,IAAI,EAAE;AACxB,QAAQ,MAAM,KAAK,GAAG;AACtB,YAAY,EAAE,IAAI,EAAE,eAAe,EAAE,KAAK,EAAE,QAAQ,EAAE;AACtD,YAAY,EAAE,IAAI,EAAE,OAAO,EAAE,KAAK,EAAE,OAAO,EAAE;AAC7C,YAAY,EAAE,IAAI,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE;AAC3C,YAAY,EAAE,IAAI,EAAE,UAAU,EAAE,KAAK,EAAE,UAAU;AACjD,SAAS;AACT,QAAQ,KAAK,IAAI,EAAE,IAAI,EAAE,KAAK,EAAE,IAAI,KAAK,EAAE;AAC3C,YAAY,MAAM,KAAK,GAAG,MAAM,CAAC,IAAI,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,KAAK,IAAI,IAAI,CAAC;AAC7D,YAAY,IAAI,KAAK,IAAI,IAAI,EAAE;AAC/B,gBAAgB,OAAO,CAAC,EAAE,KAAK,CAAC,CAAC,EAAE,KAAK,CAAC,OAAO,CAAC,CAAC;AAClD,YAAY;AACZ,QAAQ;AACR,IAAI;AACJ,IAAI,MAAM,EAAE,GAAG,GAAG,CAAC,SAAS;AAC5B,IAAI,MAAM,OAAO,GAAG;AACpB,QAAQ,EAAE,EAAE,EAAE,2BAA2B,EAAE,KAAK,EAAE,SAAS,EAAE;AAC7D,QAAQ,EAAE,EAAE,EAAE,kCAAkC,EAAE,KAAK,EAAE,MAAM,EAAE;AACjE,QAAQ,EAAE,EAAE,EAAE,aAAa,EAAE,KAAK,EAAE,OAAO,EAAE;AAC7C,QAAQ,EAAE,EAAE,EAAE,mCAAmC,EAAE,KAAK,EAAE,QAAQ,EAAE;AACpE,QAAQ,EAAE,EAAE,EAAE,yBAAyB,EAAE,KAAK,EAAE,QAAQ;AACxD,KAAK;AACL,IAAI,KAAK,IAAI,EAAE,EAAE,EAAE,KAAK,EAAE,IAAI,OAAO,EAAE;AACvC,QAAQ,MAAM,KAAK,GAAG,EAAE,CAAC,IAAI,CAAC,EAAE,CAAC;AACjC,QAAQ,IAAI,KAAK,IAAI,IAAI,EAAE;AAC3B,YAAY,OAAO,CAAC,EAAE,KAAK,CAAC,CAAC,EAAE,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC;AACzC,QAAQ;AACR,IAAI;AACJ,IAAI,OAAO,IAAI;AACf;AACA,SAAS,SAAS,CAAC,GAAG,EAAE;AACxB,IAAI,IAAI,GAAG,CAAC,aAAa,EAAE,QAAQ,IAAI,IAAI,EAAE;AAC7C,QAAQ,OAAO,GAAG,CAAC,aAAa,CAAC,QAAQ,CAAC,WAAW,EAAE;AACvD,IAAI;AACJ,IAAI,MAAM,EAAE,GAAG,GAAG,CAAC,SAAS;AAC5B,IAAI,MAAM,OAAO,GAAG;AACpB,QAAQ,EAAE,EAAE,EAAE,UAAU,EAAE,KAAK,EAAE,SAAS,EAAE;AAC5C,QAAQ,EAAE,EAAE,EAAE,UAAU,EAAE,KAAK,EAAE,SAAS,EAAE;AAC5C,QAAQ,EAAE,EAAE,EAAE,QAAQ,EAAE,KAAK,EAAE,OAAO,EAAE;AACxC,QAAQ,EAAE,EAAE,EAAE,mBAAmB,EAAE,KAAK,EAAE,KAAK,EAAE;AACjD,QAAQ,EAAE,EAAE,EAAE,qBAAqB,EAAE,KAAK,EAAE,OAAO;AACnD,KAAK;AACL,IAAI,KAAK,IAAI,EAAE,EAAE,EAAE,KAAK,EAAE,IAAI,OAAO,EAAE;AACvC,QAAQ,IAAI,EAAE,CAAC,IAAI,CAAC,EAAE,CAAC,EAAE;AACzB,YAAY,OAAO,KAAK;AACxB,QAAQ;AACR,IAAI;AACJ,IAAI,OAAO,IAAI;AACf;;AC5DO,MAAM,SAAS,SAAS,cAAc,CAAC;AAC9C,IAAI,SAAS;AACb,IAAI,WAAW,CAAC,SAAS,EAAE,MAAM,EAAE;AACnC,QAAQ,KAAK,CAAC,SAAS,EAAE,MAAM,CAAC;AAChC,QAAQ,IAAI,CAAC,SAAS,GAAG,SAAS;AAClC,IAAI;AACJ,IAAI,KAAK,CAAC,EAAE,QAAQ,EAAE,OAAO,EAAE,EAAE;AACjC,QAAQ,OAAO,KAAK,CAAC,QAAQ,EAAE,OAAO,CAAC;AACvC,IAAI;AACJ,IAAI,MAAM,oBAAoB,CAAC,QAAQ,EAAE;AACzC,QAAQ,IAAI,CAAC,UAAU,EAAE;AACzB;AACA,YAAY,MAAM,MAAM,GAAG,MAAM,OAAO,wCAAwC,CAAC;AACjF,YAAY,UAAU,GAAG,IAAI,MAAM,CAAC,gBAAgB,CAAC,QAAQ,CAAC;AAC9D,QAAQ;AACR,QAAQ,OAAO,UAAU;AACzB,IAAI;AACJ,IAAI,YAAY,GAAG;AACnB,QAAQ,IAAI,EAAE,GAAG,CAAC,KAAK,CAAC,YAAY,EAAE,EAAE,CAAC,aAAa,CAAC,CAAC;AACxD,QAAQ,IAAI;AACZ,YAAY,EAAE,CAAC,IAAI,CAAC,GAAG,gBAAgB,EAAE,CAAC;AAC1C,QAAQ;AACR,QAAQ,OAAO,KAAK,EAAE;AACtB,YAAY,IAAI,CAAC,MAAM,CAAC,GAAG,CAAC,EAAE,KAAK,EAAE,SAAS,CAAC,IAAI,EAAE,OAAO,EAAE,+BAA+B,EAAE,KAAK,EAAE,CAAC;AACvG,QAAQ;AACR,QAAQ,OAAO,EAAE,CAAC,IAAI,CAAC,GAAG,CAAC;AAC3B,IAAI;AACJ;AACA,IAAI,UAAU;;AC5BP,MAAM,8BAA8B,SAAS,mCAAmC,CAAC;AACxF,IAAI,WAAW,CAAC,OAAO,EAAE;AACzB;AACA,QAAQ,KAAK,CAAC,OAAO,CAAC;AACtB,IAAI;AACJ,IAAI,IAAI,UAAU,GAAG;AACrB,QAAQ,OAAO,IAAI,CAAC,OAAO;AAC3B,IAAI;AACJ,IAAI,MAAM,UAAU,CAAC,WAAW,EAAE;AAClC,QAAQ,MAAM,UAAU,GAAG,CAAC,eAAe,EAAE,WAAW,CAAC,IAAI,CAAC,CAAC,EAAE,IAAI,CAAC,UAAU,CAAC,UAAU,CAAC,CAAC;AAC7F,QAAQ,IAAI,WAAW,CAAC,IAAI,IAAI,QAAQ,CAAC,IAAI,EAAE;AAC/C,YAAY,IAAI,CAAC,MAAM,CAAC,GAAG,CAAC,EAAE,KAAK,EAAE,SAAS,CAAC,KAAK,EAAE,OAAO,EAAE,CAAC,oBAAoB,EAAE,UAAU,CAAC,CAAC,EAAE,CAAC;AACrG,QAAQ;AACR,QAAQ,OAAO,iBAAiB,EAAE,CAAC,OAAO,CAAC,UAAU,EAAE,EAAE,MAAM,EAAE,WAAW,CAAC,MAAM,EAAE,EAAE,WAAW,CAAC,QAAQ,CAAC;AAC5G,IAAI;AACJ;;ACVA;AACA;AACA;AACA;AACO,IAAI,qBAAqB;AAChC,CAAC,UAAU,qBAAqB,EAAE;AAClC;AACA;AACA;AACA;AACA,IAAI,qBAAqB,CAAC,cAAc,CAAC,GAAG,cAAc;AAC1D,IAAI,qBAAqB,CAAC,WAAW,CAAC,GAAG,WAAW;AACpD,CAAC,EAAE,qBAAqB,KAAK,qBAAqB,GAAG,EAAE,CAAC,CAAC;;ACdzD;AACA;AACA;AACA;AACA,MAAM,wBAAwB,SAAS,gCAAgC,CAAC;AACxE,IAAI,OAAO;AACX,IAAI,aAAa;AACjB,IAAI,KAAK;AACT,IAAI,WAAW,CAAC,OAAO,EAAE,aAAa,EAAE,KAAK,EAAE;AAC/C,QAAQ,KAAK,EAAE;AACf,QAAQ,IAAI,CAAC,OAAO,GAAG,OAAO;AAC9B,QAAQ,IAAI,CAAC,aAAa,GAAG,aAAa;AAC1C,QAAQ,IAAI,CAAC,KAAK,GAAG,KAAK;AAC1B,IAAI;AACJ,IAAI,MAAM,eAAe,GAAG;AAC5B,QAAQ,MAAM,EAAE,IAAI,EAAE,GAAG,MAAM,IAAI,CAAC,KAAK,CAAC,eAAe,EAAE;AAC3D,QAAQ,OAAO,OAAO,CAAC,QAAQ,CAAC,IAAI,EAAE,CAAC,IAAI,CAAC,CAAC;AAC7C,IAAI;AACJ,IAAI,qBAAqB,GAAG;AAC5B,QAAQ,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC,qBAAqB,EAAE;AACnD,IAAI;AACJ,IAAI,MAAM,gBAAgB,GAAG;AAC7B,QAAQ,MAAM,WAAW,GAAG,MAAM,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC,cAAc,EAAE;AACtE,QAAQ,IAAI,WAAW,IAAI,IAAI,EAAE;AACjC,YAAY,OAAO,IAAI;AACvB,QAAQ;AACR;AACA;AACA;AACA;AACA;AACA;AACA,QAAQ,OAAO;AACf,YAAY,QAAQ,EAAE,WAAW,CAAC,QAAQ;AAC1C,YAAY,KAAK,EAAE,WAAW,CAAC;AAC/B,SAAS;AACT,IAAI;AACJ,IAAI,MAAM,UAAU,GAAG;AACvB;AACA;AACA;AACA;AACA,QAAQ,MAAM,IAAI,CAAC,OAAO,CAAC,UAAU,EAAE;AACvC,IAAI;AACJ,IAAI,MAAM,qBAAqB,CAAC,QAAQ,EAAE,SAAS,EAAE;AACrD,QAAQ,OAAO,MAAM,IAAI,CAAC,OAAO,CAAC,qBAAqB,CAAC,QAAQ,EAAE,SAAS,CAAC;AAC5E,IAAI;AACJ,IAAI,IAAI,MAAM,GAAG;AACjB,QAAQ,OAAO,IAAI,CAAC,OAAO,CAAC,MAAM;AAClC,IAAI;AACJ,IAAI,GAAG,CAAC,MAAM,EAAE;AAChB,QAAQ,IAAI,CAAC,MAAM,CAAC,GAAG,CAAC,MAAM,CAAC;AAC/B,IAAI;AACJ;AACA;AACA;AACA;AACO,MAAM,oCAAoC,SAAS,8BAA8B,CAAC;AACzF,IAAI,WAAW;AACf,IAAI,cAAc;AAClB,IAAI,MAAM;AACV,IAAI,aAAa;AACjB,IAAI,SAAS;AACb,IAAI,YAAY,GAAG,IAAI,eAAe,EAAE;AACxC,IAAI,QAAQ;AACZ,IAAI,mBAAmB;AACvB,IAAI,WAAW,CAAC,OAAO,EAAE;AACzB,QAAQ,KAAK,CAAC,OAAO,CAAC;AACtB,QAAQ,IAAI,CAAC,SAAS,GAAG,OAAO,CAAC,EAAE;AACnC,QAAQ,IAAI,CAAC,QAAQ,GAAG,OAAO,CAAC,QAAQ;AACxC,QAAQ,IAAI,CAAC,mBAAmB,GAAG,OAAO,CAAC,mBAAmB;AAC9D,QAAQ,MAAM,UAAU,GAAG,OAAO,CAAC,IAAI,EAAE,MAAM;AAC/C,QAAQ,IAAI,OAAO,UAAU,KAAK,UAAU,EAAE;AAC9C,YAAY,IAAI,CAAC,MAAM,GAAG,uBAAuB,CAAC,UAAU,EAAE,EAAE,OAAO,CAAC,MAAM,EAAE,MAAM,CAAC;AACvF,QAAQ;AACR,aAAa;AACb,YAAY,IAAI,CAAC,MAAM,GAAG,eAAe,CAAC;AAC1C,gBAAgB,OAAO,EAAE,MAAM;AAC/B,gBAAgB,kBAAkB,EAAE,IAAI,CAAC,UAAU,CAAC,UAAU;AAC9D,gBAAgB,MAAM,EAAE,IAAI;AAC5B,gBAAgB,YAAY,EAAE,UAAU;AACxC,gBAAgB,eAAe,EAAE,OAAO,CAAC;AACzC,aAAa,CAAC;AACd,QAAQ;AACR;AACA;AACA;AACA,QAAQ,IAAI,CAAC,cAAc,GAAG,IAAI,wBAAwB,CAAC,IAAI,CAAC,UAAU,EAAE,CAAC,EAAE,IAAI,EAAE,QAAQ,EAAE,KAAK;AACpG,YAAY,IAAI,CAAC,gBAAgB,CAAC,IAAI,EAAE,QAAQ,CAAC;AACjD,QAAQ,CAAC,EAAE,OAAO,CAAC,EAAE,CAAC;AACtB,QAAQ,IAAI,CAAC,WAAW,GAAG,OAAO,CAAC,IAAI,CAAC,IAAI,CAAC,MAAM,CAAC,QAAQ,CAAC;AAC7D;AACA;AACA;AACA;AACA;AACA,QAAQ,OAAO,CAAC,MAAM,CAAC,IAAI,CAAC,cAAc,EAAE,IAAI,CAAC,MAAM,CAAC,QAAQ,CAAC;AACjE,QAAQ,IAAI,CAAC,WAAW,CAAC,WAAW,CAAC,IAAI,CAAC,QAAQ,CAAC;AACnD,QAAQ,IAAI,CAAC,iBAAiB,GAAG,IAAI,CAAC,WAAW,CAAC,iBAAiB;AACnE;AACA;AACA;AACA;AACA;AACA;AACA,QAAQ,IAAI,CAAC,aAAa,GAAG,IAAI,CAAC,KAAK,EAAE;AACzC,IAAI;AACJ,IAAI,MAAM,KAAK,GAAG;AAClB;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,QAAQ,MAAM,WAAW,GAAG,MAAM,sBAAsB,CAAC,IAAI,CAAC,YAAY,CAAC,MAAM,CAAC;AAClF;AACA,QAAQ,MAAM,IAAI,CAAC,WAAW,CAAC,uBAAuB,CAAC,WAAW,CAAC;AACnE,QAAQ,MAAM,EAAE,UAAU,EAAE,GAAG,IAAI,CAAC,OAAO;AAC3C,QAAQ,MAAM,IAAI,CAAC,WAAW,CAAC,SAAS,CAAC;AACzC,YAAY,QAAQ,EAAE,IAAI,CAAC,SAAS,CAAC,gBAAgB,EAAE;AACvD,YAAY,aAAa,EAAE;AAC3B,gBAAgB,UAAU;AAC1B,gBAAgB,gBAAgB,EAAE,IAAI,CAAC,OAAO,CAAC;AAC/C,aAAa;AACb,YAAY,mBAAmB,EAAE,IAAI,CAAC;AACtC,SAAS,EAAE,IAAI,CAAC,OAAO,CAAC,aAAa,CAAC;AACtC,IAAI;AACJ;AACA;AACA;AACA;AACA,IAAI,MAAM,OAAO,CAAC,OAAO,EAAE;AAC3B,QAAQ,MAAM,IAAI,CAAC,YAAY,EAAE;AACjC,QAAQ,OAAO,IAAI,CAAC,WAAW,CAAC,OAAO,CAAC,OAAO,EAAE,IAAI,CAAC,OAAO,CAAC,gBAAgB,CAAC;AAC/E,IAAI;AACJ,IAAI,MAAM,UAAU,GAAG;AACvB,QAAQ,MAAM,IAAI,CAAC,YAAY,EAAE;AACjC,QAAQ,OAAO,IAAI,CAAC,WAAW,CAAC,UAAU,EAAE;AAC5C,IAAI;AACJ,IAAI,MAAM,OAAO,GAAG;AACpB,QAAQ,MAAM,IAAI,CAAC,YAAY,EAAE;AACjC,QAAQ,MAAM,IAAI,OAAO,CAAC,CAAC,OAAO,KAAK;AACvC;AACA,YAAY,MAAM,WAAW,GAAG,IAAI,CAAC,MAAM,CAAC,QAAQ;AACpD;AACA,YAAY,WAAW,CAAC,gBAAgB,CAAC,SAAS,EAAE,CAAC,KAAK,KAAK;AAC/D,gBAAgB,MAAM,OAAO,GAAG,KAAK,CAAC,IAAI;AAC1C,gBAAgB,IAAI,OAAO,EAAE,KAAK,KAAK,qBAAqB,CAAC,SAAS,EAAE;AACxE,oBAAoB,OAAO,EAAE;AAC7B,gBAAgB;AAChB,YAAY,CAAC,CAAC;AACd;AACA,YAAY,MAAM,mBAAmB,GAAG;AACxC,gBAAgB,KAAK,EAAE,qBAAqB,CAAC,YAAY;AACzD,gBAAgB,IAAI,EAAE;AACtB,aAAa;AACb,YAAY,WAAW,CAAC,WAAW,CAAC,mBAAmB,CAAC;AACxD,QAAQ,CAAC,CAAC;AACV,QAAQ,MAAM,KAAK,CAAC,OAAO,EAAE;AAC7B,QAAQ,IAAI,CAAC,YAAY,CAAC,KAAK,EAAE;AACjC;AACA,QAAQ,IAAI,CAAC,WAAW,CAAC,OAAO,CAAC,YAAY,CAAC,EAAE;AAChD,QAAQ,IAAI,CAAC,MAAM,CAAC,KAAK,EAAE;AAC3B,IAAI;AACJ,IAAI,MAAM,YAAY,GAAG;AACzB,QAAQ,OAAO,IAAI,CAAC,aAAa;AACjC,IAAI;AACJ,IAAI,iBAAiB,GAAG;AACxB,QAAQ,OAAO,IAAI,CAAC,WAAW,CAAC,iBAAiB,EAAE;AACnD,IAAI;AACJ,IAAI,mBAAmB,CAAC,aAAa,EAAE;AACvC,QAAQ,IAAI,CAAC,WAAW,CAAC,mBAAmB,CAAC,aAAa,CAAC;AAC3D,IAAI;AACJ;;ACxLA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACO,MAAM,mCAAmC,SAAS,8BAA8B,CAAC;AACxF,IAAI,cAAc;AAClB,IAAI,qBAAqB;AACzB,IAAI,YAAY,GAAG,KAAK;AACxB,IAAI,WAAW,CAAC,OAAO,EAAE;AACzB,QAAQ,KAAK,CAAC,OAAO,CAAC;AACtB,QAAQ,MAAM,UAAU,GAAG,OAAO,CAAC,UAAU;AAC7C,QAAQ,IAAI,CAAC,cAAc,GAAG,IAAI,gBAAgB,CAAC,CAAC,YAAY,EAAE,UAAU,CAAC,CAAC,CAAC;AAC/E,QAAQ,IAAI,CAAC,qBAAqB,GAAG,IAAI,gBAAgB,CAAC,CAAC,oBAAoB,EAAE,UAAU,CAAC,CAAC,CAAC;AAC9F,QAAQ,IAAI,CAAC,cAAc,CAAC,SAAS,GAAG,CAAC,KAAK,KAAK;AACnD,YAAY,IAAI,KAAK,CAAC,IAAI,IAAI,MAAM,EAAE;AACtC,gBAAgB,IAAI,CAAC,WAAW,CAAC,IAAI,CAAC,UAAU,CAAC;AACjD,gBAAgB;AAChB,YAAY;AACZ,YAAY,MAAM,EAAE,IAAI,EAAE,QAAQ,EAAE,GAAG,KAAK,CAAC,IAAI;AACjD,YAAY,IAAI,CAAC,gBAAgB,CAAC,IAAI,EAAE,QAAQ,CAAC;AACjD,QAAQ,CAAC;AACT;AACA,QAAQ,IAAI,CAAC,cAAc,CAAC,WAAW,CAAC,MAAM,CAAC;AAC/C,QAAQ,IAAI,CAAC,qBAAqB,CAAC,SAAS,GAAG,MAAM;AACrD;AACA;AACA;AACA,YAAY,KAAK,CAAC,mBAAmB,CAAC,IAAI,CAAC,aAAa,CAAC;AACzD,QAAQ,CAAC;AACT,QAAQ,IAAI,CAAC,gBAAgB,CAAC;AAC9B,YAAY,aAAa,EAAE,CAAC,MAAM,KAAK,IAAI,CAAC,WAAW,CAAC,MAAM;AAC9D,SAAS,CAAC;AACV,IAAI;AACJ,IAAI,WAAW,CAAC,MAAM,EAAE;AACxB;AACA,QAAQ,IAAI,IAAI,CAAC,YAAY,EAAE;AAC/B,YAAY,IAAI,CAAC,cAAc,CAAC,WAAW,CAAC,MAAM,CAAC,MAAM,EAAE,CAAC;AAC5D,QAAQ;AACR,IAAI;AACJ,IAAI,mBAAmB,CAAC,aAAa,EAAE;AACvC,QAAQ,KAAK,CAAC,mBAAmB,CAAC,aAAa,CAAC;AAChD,QAAQ,IAAI,CAAC,qBAAqB,CAAC,WAAW,CAAC,EAAE,CAAC;AAClD,IAAI;AACJ,IAAI,UAAU,CAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,MAAM,EAAE,EAAE;AAC3C,QAAQ,MAAM,eAAe,GAAG,YAAY;AAC5C,YAAY,IAAI,CAAC,YAAY,GAAG,IAAI;AACpC,YAAY,IAAI;AAChB,gBAAgB,OAAO,MAAM,QAAQ,EAAE;AACvC,YAAY;AACZ,oBAAoB;AACpB,gBAAgB,IAAI,CAAC,YAAY,GAAG,KAAK;AACzC,YAAY;AACZ,QAAQ,CAAC;AACT,QAAQ,OAAO,KAAK,CAAC,UAAU,CAAC,EAAE,QAAQ,EAAE,IAAI,IAAI,QAAQ,CAAC,IAAI,GAAG,eAAe,GAAG,QAAQ,EAAE,IAAI,EAAE,MAAM,EAAE,CAAC;AAC/G,IAAI;AACJ,IAAI,MAAM,OAAO,GAAG;AACpB,QAAQ,IAAI,CAAC,cAAc,CAAC,KAAK,EAAE;AACnC,QAAQ,IAAI,CAAC,qBAAqB,CAAC,KAAK,EAAE;AAC1C,QAAQ,MAAM,KAAK,CAAC,OAAO,EAAE;AAC7B,IAAI;AACJ;;ACzDA;AACA;AACA;AACO,MAAM,oBAAoB,SAAS,qBAAqB,CAAC;AAChE,IAAI,OAAO,YAAY,GAAG,IAAI,KAAK,EAAE;AACrC,IAAI,mBAAmB;AACvB,IAAI,mBAAmB;AACvB,IAAI,WAAW,CAAC,OAAO,EAAE;AACzB,QAAQ,MAAM,mBAAmB,GAAG,yBAAyB,CAAC,UAAU,IAAI,OAAO,GAAG,OAAO,CAAC,QAAQ,GAAG,EAAE,CAAC;AAC5G,QAAQ,KAAK,CAAC,OAAO,CAAC;AACtB,QAAQ,IAAI,CAAC,mBAAmB,GAAG,mBAAmB;AACtD,QAAQ,IAAI,CAAC,mBAAmB,GAAG,OAAO,CAAC,aAAa,IAAI,IAAI;AAChE,IAAI;AACJ,IAAI,MAAM,WAAW,GAAG;AACxB,QAAQ,IAAI,IAAI,CAAC,QAAQ,YAAY,cAAc,EAAE;AACrD;AACA;AACA;AACA;AACA;AACA,YAAY,MAAM,IAAI,CAAC,QAAQ,CAAC,IAAI,EAAE;AACtC,QAAQ;AACR;AACA,QAAQ,IAAI,OAAO,IAAI,CAAC,QAAQ,CAAC,gBAAgB,IAAI,UAAU,EAAE;AACjE,YAAY,MAAM,MAAM,GAAG,IAAI,CAAC,QAAQ,CAAC,gBAAgB,EAAE;AAC3D,YAAY,IAAI,MAAM,CAAC,0BAA0B,EAAE;AACnD,gBAAgB,IAAI,CAAC,YAAY,CAAC,cAAc,CAAC;AACjD,oBAAoB,mBAAmB,EAAE;AACzC,iBAAiB,CAAC;AAClB,YAAY;AACZ,QAAQ;AACR,IAAI;AACJ,IAAI,4BAA4B,GAAG;AACnC,QAAQ,OAAO;AACf;AACA,YAAY,YAAY,EAAE;AAC1B,SAAS;AACT,IAAI;AACJ,IAAI,aAAa,GAAG;AACpB,QAAQ,OAAO,YAAY,CAAC,IAAI,CAAC,OAAO,EAAE,CAAC,OAAO,KAAK;AACvD,YAAY,MAAM,cAAc,GAAG,IAAI,mBAAmB,CAAC;AAC3D,gBAAgB,MAAM,EAAE,IAAI,CAAC,MAAM;AACnC,gBAAgB,IAAI,EAAE;AACtB,aAAa,CAAC;AACd,YAAY,OAAO,cAAc,CAAC,MAAM,EAAE;AAC1C,QAAQ,CAAC,CAAC;AACV,IAAI;AACJ;AACA;AACA;AACA;AACA;AACA,IAAI,KAAK,CAAC,OAAO,EAAE;AACnB,QAAQ,OAAO,KAAK,CAAC,KAAK,CAAC;AAC3B;AACA,YAAY,UAAU,EAAE,OAAO,EAAE,UAAU,IAAI,CAAC,IAAI,CAAC,mBAAmB,CAAC;AACzE,SAAS,CAAC;AACV,IAAI;AACJ,IAAI,MAAM,WAAW,GAAG;AACxB,QAAQ,IAAI,IAAI,CAAC,mBAAmB,CAAC,OAAO,EAAE;AAC9C,YAAY;AACZ,QAAQ;AACR,QAAQ,OAAO,KAAK,CAAC,WAAW,EAAE;AAClC,IAAI;AACJ,IAAI,MAAM,wBAAwB,GAAG;AACrC,QAAQ,IAAI,IAAI,CAAC,mBAAmB,CAAC,OAAO,EAAE;AAC9C,YAAY;AACZ,QAAQ;AACR,QAAQ,OAAO,KAAK,CAAC,wBAAwB,EAAE;AAC/C,IAAI;AACJ,IAAI,MAAM,YAAY,CAAC,EAAE,EAAE;AAC3B,QAAQ,IAAI,IAAI,CAAC,mBAAmB,CAAC,OAAO,EAAE;AAC9C,YAAY,OAAO,oBAAoB,CAAC,YAAY,CAAC,YAAY,CAAC,EAAE,CAAC;AACrE,QAAQ;AACR,QAAQ,OAAO,iBAAiB,EAAE,CAAC,OAAO,CAAC,CAAC,KAAK,EAAE,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAC,EAAE,EAAE,CAAC;AAC5E,IAAI;AACJ,IAAI,gCAAgC,CAAC,SAAS,EAAE,OAAO,EAAE;AACzD,QAAQ,MAAM,MAAM,GAAG,IAAI,SAAS,CAAC,SAAS,EAAE,IAAI,CAAC,MAAM,CAAC;AAC5D,QAAQ,MAAM,WAAW,GAAG;AAC5B,YAAY,GAAG,IAAI,CAAC,OAAO;AAC3B,YAAY,GAAG,IAAI,CAAC,iBAAiB,CAAC,SAAS,EAAE,OAAO,CAAC;AACzD,YAAY;AACZ,SAAS;AACT,QAAQ,IAAI,IAAI,CAAC,mBAAmB,CAAC,OAAO,EAAE;AAC9C,YAAY,OAAO,IAAI,8BAA8B,EAAE;AACvD,QAAQ;AACR,aAAa,IAAI,IAAI,CAAC,mBAAmB,CAAC,eAAe,EAAE;AAC3D,YAAY,IAAI,CAAC,IAAI,CAAC,mBAAmB,EAAE;AAC3C,gBAAgB,MAAM,OAAO,GAAG;AAChC;AACA;AACA,UAAU,CAAC;AACX,gBAAgB,MAAM,MAAM,GAAG,IAAI,CAAC,OAAO,CAAC,MAAM;AAClD,gBAAgB,MAAM,GAAG,MAAM,CAAC,GAAG,CAAC,EAAE,KAAK,EAAE,SAAS,CAAC,IAAI,EAAE,OAAO,EAAE,OAAO,EAAE,CAAC,GAAG,OAAO,CAAC,IAAI,CAAC,OAAO,CAAC;AACxG,YAAY;AACZ,YAAY,IAAI,iBAAiB,IAAI,IAAI,CAAC,QAAQ,EAAE;AACpD,gBAAgB,OAAO,IAAI,oCAAoC,CAAC;AAChE,oBAAoB,GAAG,WAAW;AAClC,oBAAoB,EAAE,EAAE,IAAI,CAAC,QAAQ;AACrC,oBAAoB,QAAQ,EAAE,IAAI,CAAC,OAAO,CAAC,IAAI,EAAE,QAAQ,IAAI,SAAS,CAAC,IAAI;AAC3E,oBAAoB,mBAAmB,EAAE,IAAI,CAAC;AAC9C,iBAAiB,CAAC;AAClB,YAAY;AACZ,YAAY,IAAI,CAAC,MAAM,CAAC,GAAG,CAAC;AAC5B,gBAAgB,KAAK,EAAE,SAAS,CAAC,IAAI;AACrC,gBAAgB,OAAO,EAAE;AACzB,aAAa,CAAC;AACd,QAAQ;AACR,QAAQ,OAAO,IAAI,mCAAmC,CAAC,WAAW,CAAC;AACnE,IAAI;AACJ;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACY,MAAC,iBAAiB,GAAG;;;;"}