From 73f247ada3cb60679a1fb66b79c7dd8b776c7a40 Mon Sep 17 00:00:00 2001 From: Daniel Date: Sat, 7 Mar 2026 02:40:59 +0100 Subject: [PATCH] Watch Together Plugin + Electron Desktop App mit Ad-Blocker Neuer Tab: Watch Together - gemeinsam Videos schauen (w2g.tv-Style) - Raum-System mit optionalem Passwort und Host-Kontrolle - Video-Queue mit Hinzufuegen/Entfernen/Umordnen - YouTube (IFrame API) + direkte Video-URLs (.mp4, .webm) - Synchronisierte Wiedergabe via WebSocket (/ws/watch-together) - Server-autoritative Playback-State mit Drift-Korrektur (2.5s Sync-Pulse) - Host-Transfer bei Disconnect, Room-Cleanup nach 30s Electron Desktop App (electron/): - Wrapper fuer Gaming Hub mit integriertem Ad-Blocker - uBlock-Style Request-Filtering via session.webRequest - 100+ Ad-Domains + YouTube-spezifische Filter - Download-Button im Web-Header (nur sichtbar wenn nicht in Electron) Co-Authored-By: Claude Opus 4.6 --- electron/ad-blocker.js | 87 + electron/filters.txt | 253 + electron/forge.config.js | 23 + electron/main.js | 68 + electron/package.json | 21 + electron/preload.js | 6 + server/src/index.ts | 7 + server/src/plugins/watch-together/index.ts | 577 ++ ...{index-DKX7sma7.css => index-C2eno-Si.css} | 2 +- web/dist/assets/index-UqZEdiQO.js | 4830 ----------------- web/dist/assets/index-ZMOZU_VE.js | 4830 +++++++++++++++++ web/dist/index.html | 4 +- web/src/App.tsx | 12 + .../watch-together/WatchTogetherTab.tsx | 758 +++ .../plugins/watch-together/watch-together.css | 730 +++ web/src/styles.css | 11 + 16 files changed, 7386 insertions(+), 4833 deletions(-) create mode 100644 electron/ad-blocker.js create mode 100644 electron/filters.txt create mode 100644 electron/forge.config.js create mode 100644 electron/main.js create mode 100644 electron/package.json create mode 100644 electron/preload.js create mode 100644 server/src/plugins/watch-together/index.ts rename web/dist/assets/{index-DKX7sma7.css => index-C2eno-Si.css} (64%) delete mode 100644 web/dist/assets/index-UqZEdiQO.js create mode 100644 web/dist/assets/index-ZMOZU_VE.js create mode 100644 web/src/plugins/watch-together/WatchTogetherTab.tsx create mode 100644 web/src/plugins/watch-together/watch-together.css diff --git a/electron/ad-blocker.js b/electron/ad-blocker.js new file mode 100644 index 0000000..6bc64a7 --- /dev/null +++ b/electron/ad-blocker.js @@ -0,0 +1,87 @@ +const fs = require('fs'); +const path = require('path'); + +function setupAdBlocker(session) { + // Load filter domains + const filtersPath = path.join(__dirname, 'filters.txt'); + let rawFilters; + try { + rawFilters = fs.readFileSync(filtersPath, 'utf-8'); + } catch (err) { + console.error('[AdBlocker] Could not load filters.txt:', err.message); + return; + } + + // Parse: each line is either a domain, a URL path pattern, or a regex + const blockedDomains = new Set(); + const blockedPatterns = []; + + for (const line of rawFilters.split('\n')) { + const trimmed = line.trim(); + if (!trimmed || trimmed.startsWith('#')) continue; + + if (trimmed.startsWith('/') && trimmed.endsWith('/')) { + // Regex pattern + try { + blockedPatterns.push(new RegExp(trimmed.slice(1, -1))); + } catch { + // invalid regex, skip + } + } else if (trimmed.includes('/')) { + // URL path pattern (string match) + blockedPatterns.push(trimmed); + } else { + // Domain + blockedDomains.add(trimmed); + } + } + + let blockedCount = 0; + + session.webRequest.onBeforeRequest((details, callback) => { + try { + const url = new URL(details.url); + const hostname = url.hostname; + + // Check domain blocklist (including subdomains) + for (const domain of blockedDomains) { + if (hostname === domain || hostname.endsWith('.' + domain)) { + blockedCount++; + callback({ cancel: true }); + return; + } + } + + // Check URL patterns + const fullUrl = details.url; + for (const pattern of blockedPatterns) { + if (pattern instanceof RegExp) { + if (pattern.test(fullUrl)) { + blockedCount++; + callback({ cancel: true }); + return; + } + } else if (fullUrl.includes(pattern)) { + blockedCount++; + callback({ cancel: true }); + return; + } + } + } catch { + // URL parsing error, allow request + } + + callback({}); + }); + + // Log stats periodically + setInterval(() => { + if (blockedCount > 0) { + console.log(`[AdBlocker] ${blockedCount} requests blocked`); + } + }, 30000); + + console.log(`[AdBlocker] Loaded ${blockedDomains.size} domains + ${blockedPatterns.length} patterns`); +} + +module.exports = { setupAdBlocker }; diff --git a/electron/filters.txt b/electron/filters.txt new file mode 100644 index 0000000..8d20e1e --- /dev/null +++ b/electron/filters.txt @@ -0,0 +1,253 @@ +# ============================================================ +# Gaming Hub Ad-Blocker Filter List +# Focused on YouTube ads, general ad networks, and trackers +# ============================================================ + +# ------------------------------------------------------------ +# Google Ads & Ad Networks +# ------------------------------------------------------------ +doubleclick.net +googlesyndication.com +googleadservices.com +google-analytics.com +googletagmanager.com +googletagservices.com +adservice.google.com +pagead2.googlesyndication.com +ads.google.com +adclick.g.doubleclick.net +googleads.g.doubleclick.net +www.googleadservices.com +partner.googleadservices.com +tpc.googlesyndication.com + +# ------------------------------------------------------------ +# Major Ad Exchanges & Programmatic +# ------------------------------------------------------------ +adnxs.com +adsrvr.org +adform.net +amazon-adsystem.com +adsymptotic.com +adtilt.com +advertising.com +bidswitch.net +casalemedia.com +criteo.com +criteo.net +demdex.net +dotomi.com +exelator.com +eyeblaster.com +flashtalking.com +moat.com +moatads.com +mookie1.com +pubmatic.com +quantserve.com +rubiconproject.com +scorecardresearch.com +serving-sys.com +sharethrough.com +smartadserver.com +tapad.com +turn.com +yieldmo.com +openx.net +indexww.com +lijit.com +mathtag.com +rlcdn.com +bluekai.com +krxd.net +agkn.com +adzerk.net +contextweb.com +3lift.com +triplelift.com +media.net +medianet.com +admixer.net +revenuecat.com +adcolony.com +vungle.com +unity3d.com +unityads.unity3d.com +applovin.com + +# ------------------------------------------------------------ +# Outbrain / Taboola / Content Recommendations +# ------------------------------------------------------------ +outbrain.com +taboola.com +outbrain-com.cdn.ampproject.org +revcontent.com +mgid.com +zergnet.com +content-recommendation.net +nativo.com +adblade.com +content.ad + +# ------------------------------------------------------------ +# Popup & Overlay Ad Networks +# ------------------------------------------------------------ +popads.net +popcash.net +propellerads.com +propellerpops.com +popunder.net +clickadu.com +hilltopads.net +ad-maven.com +admaven.com +juicyads.com + +# ------------------------------------------------------------ +# YouTube-Specific Ad Patterns (URL path matches) +# ------------------------------------------------------------ +/pagead/ +/ptracking +/get_midroll_ +/api/stats/ads +/api/stats/atr +/log_interaction +/ad_data_204 +/generate_204 +/s/player/*/player_ias +/youtubei/v1/log_event?alt= +/youtubei/v1/player/ad_break + +# ------------------------------------------------------------ +# YouTube Ad Regex Patterns +# ------------------------------------------------------------ +/googlevideo\.com\/videoplayback\?.*&ctier=L&/ +/googlevideo\.com\/videoplayback\?.*&oad=/ +/youtube\.com\/api\/stats\/ads/ +/youtube\.com\/pagead\// +/youtube\.com\/ptracking/ +/youtube\.com\/get_midroll_/ +/doubleclick\.net\/pagead\// +/youtube\.com\/sw\.js_data/ +/youtube\.com\/api\/stats\/qoe\?.*adformat/ +/youtube\.com\/youtubei\/v1\/log_event\?alt=/ + +# ------------------------------------------------------------ +# YouTube Tracking & Telemetry +# ------------------------------------------------------------ +s.youtube.com +video-stats.l.google.com +www.youtube.com/api/stats/ +yt3.ggpht.com/a/default-user + +# ------------------------------------------------------------ +# Facebook / Meta Tracking +# ------------------------------------------------------------ +facebook.net +connect.facebook.net +pixel.facebook.com +www.facebook.com/tr +an.facebook.com +staticxx.facebook.com + +# ------------------------------------------------------------ +# Twitter / X Tracking +# ------------------------------------------------------------ +analytics.twitter.com +t.co +ads-twitter.com +ads-api.twitter.com +static.ads-twitter.com + +# ------------------------------------------------------------ +# Microsoft Tracking +# ------------------------------------------------------------ +bat.bing.com +clarity.ms +c.bing.com +c.msn.com + +# ------------------------------------------------------------ +# Analytics & Session Recording +# ------------------------------------------------------------ +hotjar.com +mouseflow.com +fullstory.com +heapanalytics.com +mixpanel.com +segment.com +segment.io +amplitude.com +cdn.amplitude.com +api.amplitude.com +inspectlet.com +luckyorange.com +crazyegg.com +optimizely.com +cdn.optimizely.com +newrelic.com +js-agent.newrelic.com +bam.nr-data.net +sentry.io + +# ------------------------------------------------------------ +# General Tracking & Fingerprinting +# ------------------------------------------------------------ +liadm.com +ipredictive.com +bam-cell.nr-data.net +cdn.ravenjs.com +cdn.mxpnl.com +cdn.heapanalytics.com +static.hotjar.com +script.hotjar.com +vars.hotjar.com +identify.hotjar.com +surveys.hotjar.com +in.hotjar.com +sb.scorecardresearch.com +imrworldwide.com +sb.voicefive.com +c.amazon-adsystem.com +s.amazon-adsystem.com +z-na.amazon-adsystem.com + +# ------------------------------------------------------------ +# Ad-related CDN / Serving Domains +# ------------------------------------------------------------ +cdn.doubleverify.com +tps.doubleverify.com +cdn.adsafeprotected.com +fw.adsafeprotected.com +static.adsafeprotected.com +pixel.adsafeprotected.com +dt.adsafeprotected.com + +# ------------------------------------------------------------ +# Miscellaneous Ad / Tracking Domains +# ------------------------------------------------------------ +adroll.com +d.adroll.com +s.adroll.com +ib.adnxs.com +secure.adnxs.com +acdn.adnxs.com +cdn.adnxs.com +m.adnxs.com +nym1-ib.adnxs.com +bttrack.com +clicktale.net +zemanta.com +teads.tv +adskeeper.co.uk +adf.ly +sh.st +linkbucks.com +bc.vc +ouo.io +shorte.st +adfoc.us +coin-hive.com +coinhive.com +authedmine.com +crypto-loot.com diff --git a/electron/forge.config.js b/electron/forge.config.js new file mode 100644 index 0000000..dc3d371 --- /dev/null +++ b/electron/forge.config.js @@ -0,0 +1,23 @@ +const path = require('path'); + +module.exports = { + packagerConfig: { + name: 'Gaming Hub', + executableName: 'gaming-hub', + icon: path.join(__dirname, 'assets', 'icon'), + asar: true, + }, + makers: [ + { + name: '@electron-forge/maker-squirrel', + config: { + name: 'gaming-hub-desktop', + setupIcon: path.join(__dirname, 'assets', 'icon.ico'), + }, + }, + { + name: '@electron-forge/maker-zip', + platforms: ['win32', 'linux', 'darwin'], + }, + ], +}; diff --git a/electron/main.js b/electron/main.js new file mode 100644 index 0000000..e183cde --- /dev/null +++ b/electron/main.js @@ -0,0 +1,68 @@ +const { app, BrowserWindow, session, shell } = require('electron'); +const path = require('path'); +const { setupAdBlocker } = require('./ad-blocker'); + +// Handle Squirrel events (Windows installer) +try { + if (require('electron-squirrel-startup')) app.quit(); +} catch { + // electron-squirrel-startup not installed, skip +} + +const HUB_URL = process.env.GAMING_HUB_URL || 'https://hub.daddelolymp.de'; + +let mainWindow; + +function createWindow() { + mainWindow = new BrowserWindow({ + width: 1400, + height: 900, + minWidth: 900, + minHeight: 600, + title: 'Gaming Hub', + icon: path.join(__dirname, 'assets', 'icon.png'), + webPreferences: { + preload: path.join(__dirname, 'preload.js'), + contextIsolation: true, + nodeIntegration: false, + }, + backgroundColor: '#1a1b1e', + autoHideMenuBar: true, + }); + + // Setup ad blocker BEFORE loading URL + setupAdBlocker(session.defaultSession); + + // Custom User-Agent to identify Electron app + const currentUA = mainWindow.webContents.getUserAgent(); + mainWindow.webContents.setUserAgent(currentUA + ' GamingHubDesktop/1.0.0'); + + mainWindow.loadURL(HUB_URL); + + // Open external links in default browser + mainWindow.webContents.setWindowOpenHandler(({ url }) => { + if (!url.startsWith(HUB_URL)) { + shell.openExternal(url); + return { action: 'deny' }; + } + return { action: 'allow' }; + }); + + // Handle navigation to external URLs + mainWindow.webContents.on('will-navigate', (event, url) => { + if (!url.startsWith(HUB_URL)) { + event.preventDefault(); + shell.openExternal(url); + } + }); +} + +app.whenReady().then(createWindow); + +app.on('window-all-closed', () => { + if (process.platform !== 'darwin') app.quit(); +}); + +app.on('activate', () => { + if (BrowserWindow.getAllWindows().length === 0) createWindow(); +}); diff --git a/electron/package.json b/electron/package.json new file mode 100644 index 0000000..8b83878 --- /dev/null +++ b/electron/package.json @@ -0,0 +1,21 @@ +{ + "name": "gaming-hub-desktop", + "productName": "Gaming Hub", + "version": "1.0.0", + "description": "Gaming Hub Desktop App mit Ad-Blocker", + "main": "main.js", + "scripts": { + "start": "electron .", + "package": "electron-forge package", + "make": "electron-forge make" + }, + "dependencies": { + "electron-squirrel-startup": "^1.0.1" + }, + "devDependencies": { + "electron": "^33.0.0", + "@electron-forge/cli": "^7.6.0", + "@electron-forge/maker-squirrel": "^7.6.0", + "@electron-forge/maker-zip": "^7.6.0" + } +} diff --git a/electron/preload.js b/electron/preload.js new file mode 100644 index 0000000..e8b85f6 --- /dev/null +++ b/electron/preload.js @@ -0,0 +1,6 @@ +const { contextBridge } = require('electron'); + +contextBridge.exposeInMainWorld('electronAPI', { + isElectron: true, + version: '1.0.0', +}); diff --git a/server/src/index.ts b/server/src/index.ts index f1f3cf2..cec8374 100644 --- a/server/src/index.ts +++ b/server/src/index.ts @@ -10,6 +10,7 @@ import radioPlugin from './plugins/radio/index.js'; import soundboardPlugin from './plugins/soundboard/index.js'; import lolstatsPlugin from './plugins/lolstats/index.js'; import streamingPlugin, { attachWebSocket } from './plugins/streaming/index.js'; +import watchTogetherPlugin, { attachWatchTogetherWs } from './plugins/watch-together/index.js'; // ── Config ── const PORT = Number(process.env.PORT ?? 8080); @@ -135,6 +136,11 @@ async function boot(): Promise { const ctxStreaming: PluginContext = { client: clientStreaming, dataDir: DATA_DIR, adminPwd: ADMIN_PWD, allowedGuildIds: ALLOWED_GUILD_IDS }; registerPlugin(streamingPlugin, ctxStreaming); + // watch-together has no Discord bot — use a dummy client + const clientWatchTogether = createClient(); + const ctxWatchTogether: PluginContext = { client: clientWatchTogether, dataDir: DATA_DIR, adminPwd: ADMIN_PWD, allowedGuildIds: ALLOWED_GUILD_IDS }; + registerPlugin(watchTogetherPlugin, ctxWatchTogether); + // Init all plugins for (const p of getPlugins()) { const pCtx = getPluginCtx(p.name)!; @@ -155,6 +161,7 @@ async function boot(): Promise { // Start Express (http.createServer so WebSocket can attach) const httpServer = http.createServer(app); attachWebSocket(httpServer); + attachWatchTogetherWs(httpServer); httpServer.listen(PORT, () => console.log(`[HTTP] Listening on :${PORT}`)); // Login Discord bots diff --git a/server/src/plugins/watch-together/index.ts b/server/src/plugins/watch-together/index.ts new file mode 100644 index 0000000..8ab9ade --- /dev/null +++ b/server/src/plugins/watch-together/index.ts @@ -0,0 +1,577 @@ +import type express from 'express'; +import http from 'node:http'; +import { WebSocketServer, WebSocket } from 'ws'; +import crypto from 'node:crypto'; +import type { Plugin, PluginContext } from '../../core/plugin.js'; +import { sseBroadcast } from '../../core/sse.js'; + +// ── Types ── + +interface QueueItem { + url: string; + title: string; + addedBy: string; +} + +interface RoomMember { + id: string; + name: string; +} + +interface Room { + id: string; + name: string; + password: string; + hostId: string; + createdAt: string; + members: Map; + currentVideo: { url: string; title: string } | null; + playing: boolean; + currentTime: number; + lastSyncAt: number; + queue: QueueItem[]; +} + +interface WtClient { + id: string; + ws: WebSocket; + name: string; + roomId: string | null; + isAlive: boolean; +} + +// ── State ── + +const rooms = new Map(); +const wsClients = new Map(); +const cleanupTimers = new Map>(); + +let wss: WebSocketServer | null = null; +let heartbeatInterval: ReturnType | null = null; +let syncPulseInterval: ReturnType | null = null; +const HEARTBEAT_MS = 5_000; +const SYNC_PULSE_MS = 2_500; +const ROOM_CLEANUP_MS = 30_000; + +// ── Helpers ── + +function sendTo(client: WtClient, data: Record): void { + if (client.ws.readyState === WebSocket.OPEN) { + client.ws.send(JSON.stringify(data)); + } +} + +function sendToRoom(roomId: string, data: Record, excludeId?: string): void { + const room = rooms.get(roomId); + if (!room) return; + for (const member of room.members.values()) { + if (excludeId && member.id === excludeId) continue; + const client = wsClients.get(member.id); + if (client) sendTo(client, data); + } +} + +function getPlaybackState(room: Room): Record { + const currentTime = room.currentTime + (room.playing ? (Date.now() - room.lastSyncAt) / 1000 : 0); + return { + type: 'playback_state', + videoUrl: room.currentVideo?.url ?? null, + videoTitle: room.currentVideo?.title ?? null, + playing: room.playing, + currentTime, + updatedAt: Date.now(), + }; +} + +function serializeRoom(room: Room): Record { + return { + id: room.id, + name: room.name, + hostId: room.hostId, + createdAt: room.createdAt, + members: [...room.members.values()], + currentVideo: room.currentVideo, + playing: room.playing, + currentTime: room.currentTime + (room.playing ? (Date.now() - room.lastSyncAt) / 1000 : 0), + queue: room.queue, + }; +} + +function getRoomList(): Record[] { + return [...rooms.values()].map((room) => { + const host = room.members.get(room.hostId); + return { + id: room.id, + name: room.name, + hasPassword: room.password.length > 0, + memberCount: room.members.size, + hostName: host?.name ?? 'Unbekannt', + currentVideo: room.currentVideo, + playing: room.playing, + }; + }); +} + +function broadcastRoomList(): void { + sseBroadcast({ type: 'watch_together_status', plugin: 'watch-together', rooms: getRoomList() }); +} + +function scheduleRoomCleanup(roomId: string): void { + cancelRoomCleanup(roomId); + const timer = setTimeout(() => { + cleanupTimers.delete(roomId); + const room = rooms.get(roomId); + if (room && room.members.size === 0) { + rooms.delete(roomId); + broadcastRoomList(); + console.log(`[WatchTogether] Raum "${room.name}" gelöscht (leer nach Timeout)`); + } + }, ROOM_CLEANUP_MS); + cleanupTimers.set(roomId, timer); +} + +function cancelRoomCleanup(roomId: string): void { + const timer = cleanupTimers.get(roomId); + if (timer) { + clearTimeout(timer); + cleanupTimers.delete(roomId); + } +} + +function transferHost(room: Room): void { + const nextMember = room.members.values().next().value as RoomMember | undefined; + if (nextMember) { + room.hostId = nextMember.id; + sendToRoom(room.id, { type: 'members_updated', members: [...room.members.values()], hostId: room.hostId }); + console.log(`[WatchTogether] Host in "${room.name}" übertragen an ${nextMember.name}`); + } else { + scheduleRoomCleanup(room.id); + } +} + +function leaveRoom(client: WtClient): void { + if (!client.roomId) return; + const room = rooms.get(client.roomId); + if (!room) { + client.roomId = null; + return; + } + + room.members.delete(client.id); + const roomId = client.roomId; + client.roomId = null; + + if (room.members.size === 0) { + scheduleRoomCleanup(roomId); + } else if (room.hostId === client.id) { + transferHost(room); + } else { + sendToRoom(roomId, { type: 'members_updated', members: [...room.members.values()], hostId: room.hostId }); + } + + broadcastRoomList(); +} + +function handleDisconnect(client: WtClient): void { + leaveRoom(client); +} + +// ── WebSocket Message Handler ── + +function handleMessage(client: WtClient, msg: any): void { + switch (msg.type) { + case 'create_room': { + if (client.roomId) { + sendTo(client, { type: 'error', code: 'ALREADY_IN_ROOM', message: 'Du bist bereits in einem Raum.' }); + return; + } + const roomName = String(msg.name || 'Neuer Raum').slice(0, 32); + const password = String(msg.password ?? '').trim(); + const userName = String(msg.userName || 'Anon').slice(0, 32); + const roomId = crypto.randomUUID(); + + client.name = userName; + client.roomId = roomId; + + const room: Room = { + id: roomId, + name: roomName, + password, + hostId: client.id, + createdAt: new Date().toISOString(), + members: new Map([[client.id, { id: client.id, name: userName }]]), + currentVideo: null, + playing: false, + currentTime: 0, + lastSyncAt: Date.now(), + queue: [], + }; + + rooms.set(roomId, room); + sendTo(client, { type: 'room_created', roomId, room: serializeRoom(room) }); + broadcastRoomList(); + console.log(`[WatchTogether] ${userName} hat Raum "${roomName}" erstellt (${roomId.slice(0, 8)})`); + break; + } + + case 'join_room': { + if (client.roomId) { + sendTo(client, { type: 'error', code: 'ALREADY_IN_ROOM', message: 'Du bist bereits in einem Raum. Verlasse zuerst den aktuellen Raum.' }); + return; + } + const room = rooms.get(msg.roomId); + if (!room) { + sendTo(client, { type: 'error', code: 'ROOM_NOT_FOUND', message: 'Raum nicht gefunden.' }); + return; + } + const joinPw = String(msg.password ?? '').trim(); + if (room.password && joinPw !== room.password) { + sendTo(client, { type: 'error', code: 'WRONG_PASSWORD', message: 'Falsches Passwort.' }); + return; + } + + const userName = String(msg.userName || 'Anon').slice(0, 32); + client.name = userName; + client.roomId = room.id; + + room.members.set(client.id, { id: client.id, name: userName }); + cancelRoomCleanup(room.id); + + sendTo(client, { type: 'room_joined', room: serializeRoom(room) }); + sendToRoom(room.id, { type: 'members_updated', members: [...room.members.values()], hostId: room.hostId }, client.id); + broadcastRoomList(); + console.log(`[WatchTogether] ${userName} ist Raum "${room.name}" beigetreten`); + break; + } + + case 'leave_room': { + leaveRoom(client); + break; + } + + case 'add_to_queue': { + if (!client.roomId) { + sendTo(client, { type: 'error', code: 'NOT_IN_ROOM', message: 'Du bist in keinem Raum.' }); + return; + } + const room = rooms.get(client.roomId); + if (!room) return; + + const url = String(msg.url || '').trim(); + if (!url) { + sendTo(client, { type: 'error', code: 'INVALID_URL', message: 'URL darf nicht leer sein.' }); + return; + } + const title = String(msg.title || url).slice(0, 128); + + room.queue.push({ url, title, addedBy: client.name }); + sendToRoom(room.id, { type: 'queue_updated', queue: room.queue }); + + // Auto-play first item if nothing is currently playing + if (!room.currentVideo) { + const item = room.queue.shift()!; + room.currentVideo = { url: item.url, title: item.title }; + room.playing = true; + room.currentTime = 0; + room.lastSyncAt = Date.now(); + sendToRoom(room.id, getPlaybackState(room)); + sendToRoom(room.id, { type: 'queue_updated', queue: room.queue }); + } + break; + } + + case 'remove_from_queue': { + if (!client.roomId) return; + const room = rooms.get(client.roomId); + if (!room) return; + if (room.hostId !== client.id) { + sendTo(client, { type: 'error', code: 'NOT_HOST', message: 'Nur der Host kann die Warteschlange verwalten.' }); + return; + } + const index = Number(msg.index); + if (index < 0 || index >= room.queue.length) { + sendTo(client, { type: 'error', code: 'INVALID_INDEX', message: 'Ungültiger Index.' }); + return; + } + room.queue.splice(index, 1); + sendToRoom(room.id, { type: 'queue_updated', queue: room.queue }); + break; + } + + case 'move_in_queue': { + if (!client.roomId) return; + const room = rooms.get(client.roomId); + if (!room) return; + if (room.hostId !== client.id) { + sendTo(client, { type: 'error', code: 'NOT_HOST', message: 'Nur der Host kann die Warteschlange verwalten.' }); + return; + } + const from = Number(msg.from); + const to = Number(msg.to); + if (from < 0 || from >= room.queue.length || to < 0 || to >= room.queue.length) { + sendTo(client, { type: 'error', code: 'INVALID_INDEX', message: 'Ungültiger Index.' }); + return; + } + const [item] = room.queue.splice(from, 1); + room.queue.splice(to, 0, item); + sendToRoom(room.id, { type: 'queue_updated', queue: room.queue }); + break; + } + + case 'play_video': { + if (!client.roomId) return; + const room = rooms.get(client.roomId); + if (!room) return; + if (room.hostId !== client.id) { + sendTo(client, { type: 'error', code: 'NOT_HOST', message: 'Nur der Host kann die Wiedergabe steuern.' }); + return; + } + + const index = msg.index != null ? Number(msg.index) : undefined; + if (index !== undefined) { + if (index < 0 || index >= room.queue.length) { + sendTo(client, { type: 'error', code: 'INVALID_INDEX', message: 'Ungültiger Index.' }); + return; + } + const [item] = room.queue.splice(index, 1); + room.currentVideo = { url: item.url, title: item.title }; + } else { + // No index — play from queue head or error if nothing available + if (!room.currentVideo && room.queue.length === 0) { + sendTo(client, { type: 'error', code: 'QUEUE_EMPTY', message: 'Warteschlange ist leer und kein Video ausgewählt.' }); + return; + } + if (!room.currentVideo && room.queue.length > 0) { + const item = room.queue.shift()!; + room.currentVideo = { url: item.url, title: item.title }; + } + } + + room.playing = true; + room.currentTime = 0; + room.lastSyncAt = Date.now(); + sendToRoom(room.id, getPlaybackState(room)); + sendToRoom(room.id, { type: 'queue_updated', queue: room.queue }); + break; + } + + case 'pause': { + if (!client.roomId) return; + const room = rooms.get(client.roomId); + if (!room) return; + if (room.hostId !== client.id) { + sendTo(client, { type: 'error', code: 'NOT_HOST', message: 'Nur der Host kann die Wiedergabe steuern.' }); + return; + } + // Calculate drift before pausing + room.currentTime = room.currentTime + (room.playing ? (Date.now() - room.lastSyncAt) / 1000 : 0); + room.playing = false; + room.lastSyncAt = Date.now(); + sendToRoom(room.id, getPlaybackState(room)); + break; + } + + case 'resume': { + if (!client.roomId) return; + const room = rooms.get(client.roomId); + if (!room) return; + if (room.hostId !== client.id) { + sendTo(client, { type: 'error', code: 'NOT_HOST', message: 'Nur der Host kann die Wiedergabe steuern.' }); + return; + } + room.playing = true; + room.lastSyncAt = Date.now(); + sendToRoom(room.id, getPlaybackState(room)); + break; + } + + case 'seek': { + if (!client.roomId) return; + const room = rooms.get(client.roomId); + if (!room) return; + if (room.hostId !== client.id) { + sendTo(client, { type: 'error', code: 'NOT_HOST', message: 'Nur der Host kann die Wiedergabe steuern.' }); + return; + } + room.currentTime = Number(msg.time) || 0; + room.lastSyncAt = Date.now(); + sendToRoom(room.id, getPlaybackState(room)); + break; + } + + case 'skip': { + if (!client.roomId) return; + const room = rooms.get(client.roomId); + if (!room) return; + if (room.hostId !== client.id) { + sendTo(client, { type: 'error', code: 'NOT_HOST', message: 'Nur der Host kann die Wiedergabe steuern.' }); + return; + } + if (room.queue.length > 0) { + const item = room.queue.shift()!; + room.currentVideo = { url: item.url, title: item.title }; + } else { + room.currentVideo = null; + } + room.playing = room.currentVideo !== null; + room.currentTime = 0; + room.lastSyncAt = Date.now(); + sendToRoom(room.id, getPlaybackState(room)); + sendToRoom(room.id, { type: 'queue_updated', queue: room.queue }); + break; + } + + case 'report_time': { + if (!client.roomId) return; + const room = rooms.get(client.roomId); + if (!room) return; + if (room.hostId !== client.id) return; + room.currentTime = Number(msg.time) || 0; + room.lastSyncAt = Date.now(); + break; + } + + case 'transfer_host': { + if (!client.roomId) return; + const room = rooms.get(client.roomId); + if (!room) return; + if (room.hostId !== client.id) { + sendTo(client, { type: 'error', code: 'NOT_HOST', message: 'Nur der Host kann den Host übertragen.' }); + return; + } + const targetId = String(msg.userId || ''); + if (!room.members.has(targetId)) { + sendTo(client, { type: 'error', code: 'USER_NOT_FOUND', message: 'Benutzer nicht im Raum gefunden.' }); + return; + } + room.hostId = targetId; + sendToRoom(room.id, { type: 'members_updated', members: [...room.members.values()], hostId: room.hostId }); + const targetMember = room.members.get(targetId); + console.log(`[WatchTogether] Host in "${room.name}" übertragen an ${targetMember?.name ?? targetId.slice(0, 8)}`); + break; + } + + default: + break; + } +} + +// ── Plugin ── + +const watchTogetherPlugin: Plugin = { + name: 'watch-together', + version: '1.0.0', + description: 'Watch Together', + + async init(_ctx) { + console.log('[WatchTogether] Initialized'); + }, + + registerRoutes(app: express.Application, _ctx: PluginContext) { + app.get('/api/watch-together/rooms', (_req, res) => { + res.json({ rooms: getRoomList() }); + }); + + // Beacon cleanup endpoint — called via navigator.sendBeacon() on page unload + app.post('/api/watch-together/disconnect', (req, res) => { + let body = ''; + req.on('data', (chunk: Buffer) => { body += chunk.toString(); }); + req.on('end', () => { + try { + const { clientId } = JSON.parse(body); + const client = wsClients.get(clientId); + if (client) { + console.log(`[WatchTogether] Beacon disconnect für ${client.name || clientId.slice(0, 8)}`); + handleDisconnect(client); + wsClients.delete(clientId); + client.ws.terminate(); + } + } catch { /* ignore malformed */ } + res.status(204).end(); + }); + }); + }, + + getSnapshot(_ctx) { + return { + 'watch-together': { rooms: getRoomList() }, + }; + }, + + async destroy() { + if (heartbeatInterval) { clearInterval(heartbeatInterval); heartbeatInterval = null; } + if (syncPulseInterval) { clearInterval(syncPulseInterval); syncPulseInterval = null; } + for (const timer of cleanupTimers.values()) { clearTimeout(timer); } + cleanupTimers.clear(); + if (wss) { + for (const client of wsClients.values()) { + client.ws.close(1001, 'Server shutting down'); + } + wsClients.clear(); + rooms.clear(); + wss.close(); + wss = null; + } + console.log('[WatchTogether] Destroyed'); + }, +}; + +/** Call after httpServer is created to attach WebSocket */ +export function attachWatchTogetherWs(server: http.Server): void { + wss = new WebSocketServer({ server, path: '/ws/watch-together' }); + + wss.on('connection', (ws) => { + const clientId = crypto.randomUUID(); + const client: WtClient = { id: clientId, ws, name: '', roomId: null, isAlive: true }; + wsClients.set(clientId, client); + + sendTo(client, { type: 'welcome', clientId, rooms: getRoomList() }); + + ws.on('pong', () => { client.isAlive = true; }); + + ws.on('message', (raw) => { + client.isAlive = true; + let msg: any; + try { msg = JSON.parse(raw.toString()); } catch { return; } + handleMessage(client, msg); + }); + + ws.on('close', () => { + handleDisconnect(client); + wsClients.delete(clientId); + }); + + ws.on('error', () => { + handleDisconnect(client); + wsClients.delete(clientId); + }); + }); + + // ── Heartbeat: detect dead connections ── + heartbeatInterval = setInterval(() => { + for (const [id, client] of wsClients) { + if (!client.isAlive) { + console.log(`[WatchTogether] Heartbeat timeout für ${client.name || id.slice(0, 8)}`); + handleDisconnect(client); + wsClients.delete(id); + client.ws.terminate(); + continue; + } + client.isAlive = false; + try { client.ws.ping(); } catch { /* ignore */ } + } + }, HEARTBEAT_MS); + + // ── Sync pulse: broadcast playback state to playing rooms ── + syncPulseInterval = setInterval(() => { + for (const room of rooms.values()) { + if (room.playing && room.members.size > 0) { + sendToRoom(room.id, getPlaybackState(room)); + } + } + }, SYNC_PULSE_MS); + + console.log('[WatchTogether] WebSocket attached at /ws/watch-together'); +} + +export default watchTogetherPlugin; diff --git a/web/dist/assets/index-DKX7sma7.css b/web/dist/assets/index-C2eno-Si.css similarity index 64% rename from web/dist/assets/index-DKX7sma7.css rename to web/dist/assets/index-C2eno-Si.css index c111452..71cc3a6 100644 --- a/web/dist/assets/index-DKX7sma7.css +++ b/web/dist/assets/index-C2eno-Si.css @@ -1 +1 @@ -@import"https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap";@import"https://fonts.googleapis.com/icon?family=Material+Icons";.sb-app{--bg-deep: #1a1b1e;--bg-primary: #1e1f22;--bg-secondary: #2b2d31;--bg-tertiary: #313338;--bg-modifier-hover: rgba(79, 84, 92, .16);--bg-modifier-active: rgba(79, 84, 92, .24);--bg-modifier-selected: rgba(79, 84, 92, .32);--text-normal: #dbdee1;--text-muted: #949ba4;--text-faint: #6d6f78;--accent: #5865f2;--accent-rgb: 88, 101, 242;--accent-hover: #4752c4;--accent-glow: rgba(88, 101, 242, .45);--green: #23a55a;--red: #f23f42;--yellow: #f0b232;--white: #ffffff;--font: "DM Sans", "Outfit", "gg sans", "Noto Sans", Whitney, "Helvetica Neue", Helvetica, Arial, sans-serif;--radius: 8px;--radius-lg: 12px;--shadow-low: 0 1px 3px rgba(0, 0, 0, .24);--shadow-med: 0 4px 12px rgba(0, 0, 0, .32);--shadow-high: 0 8px 24px rgba(0, 0, 0, .4);--transition: .15s cubic-bezier(.4, 0, .2, 1);--card-size: 110px;--card-emoji: 28px;--card-font: 11px;color-scheme:dark}.sb-app[data-theme=purple]{--bg-deep: #13111c;--bg-primary: #1a1726;--bg-secondary: #241f35;--bg-tertiary: #2e2845;--accent: #9b59b6;--accent-rgb: 155, 89, 182;--accent-hover: #8e44ad;--accent-glow: rgba(155, 89, 182, .45)}.sb-app[data-theme=forest]{--bg-deep: #0f1a14;--bg-primary: #142119;--bg-secondary: #1c2e22;--bg-tertiary: #253a2c;--accent: #2ecc71;--accent-rgb: 46, 204, 113;--accent-hover: #27ae60;--accent-glow: rgba(46, 204, 113, .4)}.sb-app[data-theme=sunset]{--bg-deep: #1a1210;--bg-primary: #231815;--bg-secondary: #2f201c;--bg-tertiary: #3d2a24;--accent: #e67e22;--accent-rgb: 230, 126, 34;--accent-hover: #d35400;--accent-glow: rgba(230, 126, 34, .4)}.sb-app[data-theme=ocean]{--bg-deep: #0a1628;--bg-primary: #0f1e33;--bg-secondary: #162a42;--bg-tertiary: #1e3652;--accent: #3498db;--accent-rgb: 52, 152, 219;--accent-hover: #2980b9;--accent-glow: rgba(52, 152, 219, .4)}.sb-app{display:flex;flex-direction:column;height:100%;position:relative}.topbar{display:flex;align-items:center;padding:0 20px;height:52px;background:var(--bg-secondary);border-bottom:1px solid rgba(0,0,0,.24);z-index:10;flex-shrink:0;gap:16px;transition:background .4s ease}.topbar-left{display:flex;align-items:center;gap:10px;flex-shrink:0}.sb-app-logo{width:28px;height:28px;background:var(--accent);border-radius:8px;display:flex;align-items:center;justify-content:center;transition:background .4s ease}.sb-app-title{font-size:16px;font-weight:700;color:var(--white);letter-spacing:-.02em}.clock-wrap{flex:1;display:flex;justify-content:center}.clock{font-size:22px;font-weight:700;color:var(--text-normal);letter-spacing:.02em;font-variant-numeric:tabular-nums;opacity:.9}.clock-seconds{font-size:14px;color:var(--text-faint);font-weight:500}.topbar-right{display:flex;align-items:center;gap:6px;flex-shrink:0}.channel-dropdown{position:relative;flex-shrink:0}.channel-btn{display:flex;align-items:center;gap:8px;padding:5px 12px 5px 10px;border:1px solid rgba(255,255,255,.08);border-radius:20px;background:var(--bg-tertiary);color:var(--text-normal);font-family:var(--font);font-size:13px;font-weight:600;cursor:pointer;transition:all var(--transition);white-space:nowrap}.channel-btn:hover{background:var(--bg-modifier-selected);border-color:#ffffff1f}.channel-btn.open{border-color:var(--accent)}.channel-btn .cb-icon{font-size:16px;color:var(--text-muted)}.channel-btn .chevron{font-size:12px;color:var(--text-faint);transition:transform var(--transition);margin-left:2px}.channel-btn.open .chevron{transform:rotate(180deg)}.channel-status{width:6px;height:6px;border-radius:50%;background:var(--green);flex-shrink:0}.channel-menu{position:absolute;top:calc(100% + 6px);left:0;min-width:220px;background:var(--bg-deep);border:1px solid rgba(255,255,255,.08);border-radius:var(--radius);box-shadow:var(--shadow-high);padding:6px;z-index:100;animation:ctx-in .1s ease-out}.channel-menu-header{padding:6px 8px 4px;font-size:10px;font-weight:700;text-transform:uppercase;letter-spacing:.05em;color:var(--text-faint)}.channel-option{display:flex;align-items:center;gap:8px;padding:7px 10px;border-radius:4px;font-size:13px;color:var(--text-muted);cursor:pointer;transition:all var(--transition)}.channel-option:hover{background:var(--bg-modifier-hover);color:var(--text-normal)}.channel-option.active{background:var(--accent);color:var(--white)}.channel-option .co-icon{font-size:16px;opacity:.7}.connection{display:flex;align-items:center;gap:6px;padding:4px 10px;border-radius:20px;background:#23a55a1f;font-size:12px;color:var(--green);font-weight:600}.conn-dot{width:7px;height:7px;border-radius:50%;background:var(--green);box-shadow:0 0 6px #23a55a99;animation:pulse-dot 2s ease-in-out infinite}@keyframes pulse-dot{0%,to{box-shadow:0 0 6px #23a55a80}50%{box-shadow:0 0 12px #23a55acc}}.conn-ping{font-size:10px;opacity:.7;margin-left:2px}.conn-modal-overlay{position:fixed;top:0;right:0;bottom:0;left:0;background:#0000008c;z-index:9000;display:flex;align-items:center;justify-content:center;-webkit-backdrop-filter:blur(4px);backdrop-filter:blur(4px);animation:fadeIn .15s ease}.conn-modal{background:var(--bg-primary);border:1px solid var(--border);border-radius:16px;width:340px;box-shadow:0 20px 60px #0006;overflow:hidden;animation:slideUp .2s ease}@keyframes slideUp{0%{transform:translateY(20px);opacity:0}to{transform:translateY(0);opacity:1}}.conn-modal-header{display:flex;align-items:center;gap:8px;padding:14px 16px;border-bottom:1px solid var(--border);font-weight:700;font-size:14px}.conn-modal-close{margin-left:auto;background:none;border:none;color:var(--muted);cursor:pointer;padding:4px;border-radius:6px;display:flex;transition:all .15s}.conn-modal-close:hover{background:#ffffff14;color:var(--fg)}.conn-modal-body{padding:16px;display:flex;flex-direction:column;gap:12px}.conn-stat{display:flex;justify-content:space-between;align-items:center}.conn-stat-label{color:var(--muted);font-size:13px}.conn-stat-value{font-weight:600;font-size:13px;display:flex;align-items:center;gap:6px}.conn-ping-dot{width:8px;height:8px;border-radius:50%;flex-shrink:0}.admin-btn-icon{width:32px;height:32px;border-radius:8px;display:flex;align-items:center;justify-content:center;color:var(--text-faint);transition:all var(--transition);font-size:18px}.admin-btn-icon:hover{background:var(--bg-modifier-hover);color:var(--text-normal)}.admin-btn-icon.active{color:var(--accent)}.toolbar{display:flex;align-items:center;gap:10px;padding:10px 20px;background:var(--bg-primary);border-bottom:1px solid rgba(0,0,0,.12);flex-shrink:0;flex-wrap:wrap;transition:background .4s ease}.cat-tabs{display:flex;gap:4px;flex-shrink:0}.cat-tab{display:flex;align-items:center;gap:6px;padding:6px 14px;border-radius:20px;background:var(--bg-tertiary);color:var(--text-muted);font-family:var(--font);font-size:13px;font-weight:600;cursor:pointer;transition:all var(--transition);white-space:nowrap}.cat-tab:hover{background:var(--bg-modifier-selected);color:var(--text-normal)}.cat-tab.active{background:var(--accent);color:var(--white)}.tab-count{font-size:10px;font-weight:700;background:#ffffff26;padding:0 6px;border-radius:8px;line-height:1.6}.search-wrap{position:relative;flex:1;max-width:280px;min-width:140px}.search-wrap .search-icon{position:absolute;left:10px;top:50%;transform:translateY(-50%);font-size:15px;color:var(--text-faint);pointer-events:none}.search-input{width:100%;height:32px;padding:0 28px 0 32px;border:1px solid rgba(255,255,255,.06);border-radius:20px;background:var(--bg-secondary);color:var(--text-normal);font-family:var(--font);font-size:13px;outline:none;transition:all var(--transition)}.search-input::placeholder{color:var(--text-faint)}.search-input:focus{border-color:var(--accent);box-shadow:0 0 0 2px var(--accent-glow)}.search-clear{position:absolute;right:6px;top:50%;transform:translateY(-50%);width:20px;height:20px;border-radius:50%;display:flex;align-items:center;justify-content:center;color:var(--text-faint);transition:all var(--transition)}.search-clear:hover{background:var(--bg-tertiary);color:var(--text-normal)}.toolbar-spacer{flex:1}.url-import-wrap{display:flex;align-items:center;gap:6px;min-width:240px;max-width:460px;flex:1;padding:4px 6px 4px 8px;border-radius:20px;background:var(--bg-secondary);border:1px solid rgba(255,255,255,.08)}.url-import-icon{font-size:15px;color:var(--text-faint);flex-shrink:0}.url-import-input{flex:1;min-width:0;height:26px;border:none;background:transparent;color:var(--text-normal);font-size:12px;font-family:var(--font);outline:none}.url-import-input::placeholder{color:var(--text-faint)}.url-import-btn{height:24px;padding:0 10px;border-radius:14px;border:1px solid rgba(var(--accent-rgb, 88, 101, 242),.45);background:rgba(var(--accent-rgb, 88, 101, 242),.12);color:var(--accent);font-size:11px;font-weight:700;white-space:nowrap;transition:all var(--transition)}.url-import-btn:hover{background:var(--accent);border-color:var(--accent);color:var(--white)}.url-import-btn:disabled{opacity:.5;pointer-events:none}.url-import-tag{flex-shrink:0;padding:1px 6px;border-radius:8px;font-size:10px;font-weight:800;letter-spacing:.5px;text-transform:uppercase}.url-import-tag.valid{background:#2ecc712e;color:#2ecc71}.url-import-tag.invalid{background:#e74c3c2e;color:#e74c3c}.tb-btn{display:flex;align-items:center;gap:6px;padding:6px 12px;border:1px solid rgba(255,255,255,.08);border-radius:20px;background:var(--bg-tertiary);color:var(--text-muted);font-family:var(--font);font-size:12px;font-weight:600;cursor:pointer;transition:all var(--transition);white-space:nowrap}.tb-btn:hover{background:var(--bg-modifier-selected);color:var(--text-normal);border-color:#ffffff1f}.tb-btn .tb-icon{font-size:15px}.tb-btn.random{border-color:#5865f24d;color:var(--accent)}.tb-btn.random:hover{background:var(--accent);color:var(--white);border-color:var(--accent)}.tb-btn.party{border-color:#f0b2324d;color:var(--yellow)}.tb-btn.party:hover{background:var(--yellow);color:#1a1b1e;border-color:var(--yellow)}.tb-btn.party.active{background:var(--yellow);color:#1a1b1e;border-color:var(--yellow);animation:party-btn .6s ease-in-out infinite alternate}@keyframes party-btn{0%{box-shadow:0 0 8px #f0b23266}to{box-shadow:0 0 20px #f0b232b3}}.tb-btn.stop{border-color:#f23f424d;color:var(--red)}.tb-btn.stop:hover{background:var(--red);color:var(--white);border-color:var(--red)}.size-control{display:flex;align-items:center;gap:6px;padding:4px 10px;border-radius:20px;background:var(--bg-tertiary);border:1px solid rgba(255,255,255,.06)}.size-control .sc-icon{font-size:14px;color:var(--text-faint)}.size-slider{-webkit-appearance:none;-moz-appearance:none;appearance:none;width:70px;height:3px;border-radius:2px;background:var(--bg-modifier-selected);outline:none;cursor:pointer}.size-slider::-webkit-slider-thumb{-webkit-appearance:none;width:12px;height:12px;border-radius:50%;background:var(--accent);cursor:pointer;transition:transform var(--transition)}.size-slider::-webkit-slider-thumb:hover{transform:scale(1.3)}.size-slider::-moz-range-thumb{width:12px;height:12px;border-radius:50%;background:var(--accent);border:none;cursor:pointer}.theme-selector{display:flex;align-items:center;gap:4px;padding:4px 8px;border-radius:20px;background:var(--bg-tertiary);border:1px solid rgba(255,255,255,.06)}.theme-dot{width:16px;height:16px;border-radius:50%;cursor:pointer;transition:all var(--transition);border:2px solid transparent}.theme-dot:hover{transform:scale(1.2)}.theme-dot.active{border-color:var(--white);box-shadow:0 0 6px #ffffff4d}.analytics-strip{display:flex;align-items:stretch;gap:8px;padding:8px 20px;background:var(--bg-primary);border-bottom:1px solid rgba(0,0,0,.12);flex-shrink:0}.analytics-card{display:flex;align-items:center;gap:8px;padding:8px 12px;border-radius:12px;background:var(--bg-secondary);border:1px solid rgba(255,255,255,.08)}.analytics-card.analytics-wide{flex:1;min-width:0}.analytics-icon{font-size:18px;color:var(--accent);flex-shrink:0}.analytics-copy{display:flex;flex-direction:column;gap:4px;min-width:0}.analytics-label{font-size:10px;font-weight:700;letter-spacing:.04em;text-transform:uppercase;color:var(--text-faint)}.analytics-value{font-size:18px;line-height:1;font-weight:800;color:var(--text-normal)}.analytics-top-list{display:flex;align-items:center;gap:6px;overflow-x:auto;scrollbar-width:none}.analytics-top-list::-webkit-scrollbar{display:none}.analytics-chip{display:inline-flex;align-items:center;gap:4px;padding:3px 8px;border-radius:999px;background:rgba(var(--accent-rgb, 88, 101, 242),.15);color:var(--accent);font-size:11px;font-weight:600;white-space:nowrap}.analytics-muted{color:var(--text-muted);font-size:12px}.category-strip{display:flex;align-items:center;gap:6px;padding:8px 20px;background:var(--bg-primary);border-bottom:1px solid rgba(0,0,0,.12);overflow-x:auto;flex-shrink:0;scrollbar-width:none;transition:background .4s ease}.category-strip::-webkit-scrollbar{display:none}.cat-chip{display:inline-flex;align-items:center;gap:6px;padding:4px 12px;border-radius:20px;font-size:12px;font-weight:600;color:var(--text-muted);background:var(--bg-secondary);border:1px solid rgba(255,255,255,.06);white-space:nowrap;cursor:pointer;transition:all var(--transition);flex-shrink:0}.cat-chip:hover{border-color:#ffffff1f;color:var(--text-normal);background:var(--bg-tertiary)}.cat-chip.active{background:#5865f21a}.cat-dot{width:8px;height:8px;border-radius:50%;flex-shrink:0}.cat-count{font-size:10px;font-weight:700;opacity:.5}.main{flex:1;overflow-y:auto;padding:16px 20px;background:var(--bg-primary);transition:background .4s ease}.sound-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(var(--card-size),1fr));gap:8px}.sound-card{position:relative;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:3px;padding:12px 6px 8px;background:var(--bg-secondary);border-radius:var(--radius-lg);cursor:pointer;transition:all var(--transition);border:2px solid transparent;-webkit-user-select:none;user-select:none;overflow:hidden;aspect-ratio:1;opacity:0;animation:card-enter .35s ease-out forwards}.sound-card:before{content:"";position:absolute;top:0;right:0;bottom:0;left:0;border-radius:inherit;opacity:0;transition:opacity var(--transition);background:radial-gradient(ellipse at center,var(--accent-glow) 0%,transparent 70%);pointer-events:none}.sound-card:hover{background:var(--bg-tertiary);transform:translateY(-3px);box-shadow:var(--shadow-med),0 0 20px var(--accent-glow);border-color:#5865f233}.sound-card:hover:before{opacity:1}.sound-card:active{transform:translateY(0);transition-duration:50ms}.sound-card.playing{border-color:var(--accent);animation:card-enter .35s ease-out forwards,playing-glow 1.2s ease-in-out infinite alternate}@keyframes playing-glow{0%{box-shadow:0 0 4px var(--accent-glow)}to{box-shadow:0 0 16px var(--accent-glow)}}@keyframes card-enter{0%{opacity:0;transform:translateY(10px) scale(.97)}to{opacity:1;transform:translateY(0) scale(1)}}.ripple{position:absolute;border-radius:50%;background:#5865f24d;transform:scale(0);animation:ripple-expand .5s ease-out forwards;pointer-events:none}@keyframes ripple-expand{to{transform:scale(3);opacity:0}}.sound-emoji{font-size:var(--card-emoji);font-weight:800;line-height:1;z-index:1;transition:transform var(--transition);opacity:.7;font-family:Syne,DM Sans,sans-serif}.sound-card:hover .sound-emoji{transform:scale(1.15);opacity:1}.sound-card.playing .sound-emoji{animation:emoji-bounce .4s ease;opacity:1}@keyframes emoji-bounce{0%,to{transform:scale(1)}40%{transform:scale(1.3)}70%{transform:scale(.95)}}.sound-name{font-size:var(--card-font);font-weight:600;text-align:center;color:var(--text-normal);z-index:1;max-width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;padding:0 4px}.sound-duration{font-size:9px;color:var(--text-faint);z-index:1;font-weight:500}.fav-star{position:absolute;top:4px;right:4px;opacity:0;transition:all var(--transition);cursor:pointer;z-index:2;color:var(--text-faint);padding:2px;line-height:1}.fav-star .fav-icon{font-size:14px}.sound-card:hover .fav-star{opacity:.6}.fav-star:hover{opacity:1!important;color:var(--yellow);transform:scale(1.2)}.fav-star.active{opacity:1!important;color:var(--yellow)}.new-badge{position:absolute;top:4px;left:4px;font-size:8px;font-weight:700;background:var(--green);color:#fff;padding:1px 5px;border-radius:6px;text-transform:uppercase;letter-spacing:.03em;z-index:2}.playing-indicator{position:absolute;bottom:3px;left:50%;transform:translate(-50%);display:none;gap:2px;align-items:flex-end;height:10px}.sound-card.playing .playing-indicator{display:flex}.wave-bar{width:2px;background:var(--accent);border-radius:1px;animation:wave .6s ease-in-out infinite alternate}.wave-bar:nth-child(1){height:3px;animation-delay:0ms}.wave-bar:nth-child(2){height:7px;animation-delay:.15s}.wave-bar:nth-child(3){height:5px;animation-delay:.3s}.wave-bar:nth-child(4){height:9px;animation-delay:.1s}@keyframes wave{0%{height:2px}to{height:10px}}.empty-state{display:none;flex-direction:column;align-items:center;justify-content:center;gap:10px;padding:60px 20px;text-align:center}.empty-state.visible{display:flex}.empty-emoji{font-size:42px}.empty-title{font-size:15px;font-weight:700;color:var(--text-normal)}.empty-desc{font-size:13px;color:var(--text-muted);max-width:260px}.now-playing{display:flex;align-items:center;gap:6px;padding:4px 12px;border-radius:20px;background:rgba(var(--accent-rgb, 88, 101, 242),.12);border:1px solid rgba(var(--accent-rgb, 88, 101, 242),.2);font-size:12px;color:var(--text-muted);max-width:none;min-width:0;animation:np-fade-in .3s ease}@keyframes np-fade-in{0%{opacity:0;transform:translate(10px)}to{opacity:1;transform:translate(0)}}.np-name{color:var(--accent);font-weight:600;white-space:nowrap}.np-waves{display:none;gap:1.5px;align-items:flex-end;height:12px;flex-shrink:0}.np-waves.active{display:flex}.np-wave-bar{width:2px;background:var(--accent);border-radius:1px;animation:wave .5s ease-in-out infinite alternate}.np-wave-bar:nth-child(1){height:3px;animation-delay:0ms}.np-wave-bar:nth-child(2){height:8px;animation-delay:.12s}.np-wave-bar:nth-child(3){height:5px;animation-delay:.24s}.np-wave-bar:nth-child(4){height:10px;animation-delay:80ms}.volume-control{display:flex;align-items:center;gap:6px;padding:4px 10px;border-radius:20px;background:var(--bg-tertiary);border:1px solid rgba(255,255,255,.06)}.vol-icon{font-size:16px;color:var(--text-faint);cursor:pointer;transition:color var(--transition);-webkit-user-select:none;user-select:none}.vol-icon:hover{color:var(--text-normal)}.vol-slider{-webkit-appearance:none;-moz-appearance:none;appearance:none;width:80px;height:3px;border-radius:2px;background:linear-gradient(to right,var(--accent) 0%,var(--accent) var(--vol, 80%),var(--bg-modifier-selected) var(--vol, 80%));outline:none;cursor:pointer}.vol-slider::-webkit-slider-thumb{-webkit-appearance:none;width:12px;height:12px;border-radius:50%;background:var(--accent);cursor:pointer;transition:transform var(--transition)}.vol-slider::-webkit-slider-thumb:hover{transform:scale(1.3)}.vol-slider::-moz-range-thumb{width:12px;height:12px;border-radius:50%;background:var(--accent);border:none;cursor:pointer}.vol-pct{font-size:11px;color:var(--text-faint);min-width:28px;text-align:right;font-variant-numeric:tabular-nums}.party-overlay{position:fixed;top:0;right:0;bottom:0;left:0;pointer-events:none;z-index:50;opacity:0;transition:opacity .3s ease}.party-overlay.active{opacity:1;animation:party-hue 2s linear infinite}.party-overlay:before{content:"";position:absolute;top:0;right:0;bottom:0;left:0;background:linear-gradient(45deg,#ff00000a,#00ff000a,#0000ff0a,#ffff000a);background-size:400% 400%;animation:party-grad 3s ease infinite}@keyframes party-grad{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes party-hue{to{filter:hue-rotate(360deg)}}.ctx-menu{position:fixed;min-width:160px;background:var(--bg-deep);border:1px solid rgba(255,255,255,.06);border-radius:var(--radius);box-shadow:var(--shadow-high);padding:4px;z-index:1000;animation:ctx-in .1s ease-out}@keyframes ctx-in{0%{opacity:0;transform:scale(.96) translateY(-4px)}to{opacity:1;transform:scale(1) translateY(0)}}.ctx-item{display:flex;align-items:center;gap:8px;padding:6px 10px;border-radius:4px;font-size:13px;color:var(--text-normal);cursor:pointer;transition:all var(--transition)}.ctx-item:hover{background:var(--accent);color:var(--white)}.ctx-item.danger{color:var(--red)}.ctx-item.danger:hover{background:var(--red);color:var(--white)}.ctx-item .ctx-icon{font-size:15px}.ctx-sep{height:1px;background:#ffffff0f;margin:3px 8px}.toast{position:fixed;bottom:64px;left:50%;transform:translate(-50%);padding:10px 20px;border-radius:20px;font-size:13px;font-weight:600;z-index:100;display:flex;align-items:center;gap:8px;box-shadow:var(--shadow-high);animation:toast-in .3s cubic-bezier(.175,.885,.32,1.275);pointer-events:none}.toast .toast-icon{font-size:16px}.toast.error{background:var(--red);color:#fff}.toast.info{background:var(--green);color:#fff}@keyframes toast-in{0%{transform:translate(-50%,16px);opacity:0}to{transform:translate(-50%);opacity:1}}.admin-overlay{position:fixed;top:0;right:0;bottom:0;left:0;background:#0009;backdrop-filter:blur(8px);-webkit-backdrop-filter:blur(8px);z-index:60;display:flex;align-items:center;justify-content:center;animation:fade-in .2s ease}.admin-panel{background:var(--bg-secondary);border:1px solid rgba(255,255,255,.08);border-radius:var(--radius-lg);padding:28px;width:92%;max-width:920px;max-height:min(88vh,860px);display:flex;flex-direction:column;box-shadow:var(--shadow-high)}.admin-panel h3{font-size:18px;font-weight:700;margin-bottom:16px;display:flex;align-items:center;justify-content:space-between;flex-shrink:0}.admin-close{width:28px;height:28px;border-radius:6px;display:flex;align-items:center;justify-content:center;color:var(--text-muted);transition:all var(--transition)}.admin-close:hover{background:var(--bg-tertiary);color:var(--text-normal)}.admin-field{margin-bottom:16px}.admin-field label{display:block;font-size:12px;font-weight:600;color:var(--text-muted);margin-bottom:6px;text-transform:uppercase;letter-spacing:.5px}.admin-field input{width:100%;background:var(--bg-tertiary);border:1px solid rgba(255,255,255,.08);border-radius:8px;padding:10px 12px;font-size:14px;color:var(--text-normal);font-family:var(--font);transition:all var(--transition)}.admin-field input:focus{outline:none;border-color:var(--accent);box-shadow:0 0 0 2px var(--accent-glow)}.admin-btn-action{padding:10px 20px;border-radius:8px;font-size:13px;font-weight:600;font-family:var(--font);cursor:pointer;transition:all var(--transition);line-height:1}.admin-btn-action.primary{background:var(--accent);color:#fff;border:none}.admin-btn-action.primary:hover{background:var(--accent-hover)}.admin-btn-action.outline{background:transparent;border:1px solid rgba(255,255,255,.08);color:var(--text-muted)}.admin-btn-action.outline:hover{border-color:#ffffff1f;color:var(--text-normal)}.admin-btn-action.danger{background:var(--red);color:var(--white);border:1px solid var(--red)}.admin-btn-action.danger:hover{filter:brightness(1.06)}.admin-btn-action.danger.ghost{background:transparent;color:var(--red);border:1px solid rgba(242,63,66,.5)}.admin-btn-action.danger.ghost:hover{background:#f23f4224}.admin-btn-action:disabled{opacity:.5;pointer-events:none}.admin-shell{display:flex;flex-direction:column;gap:12px;min-height:0}.admin-header-row{display:flex;align-items:center;justify-content:space-between;gap:10px;flex-wrap:wrap}.admin-status{font-size:13px;color:var(--text-muted)}.admin-actions-inline{display:flex;align-items:center;gap:8px}.admin-search-field{margin-bottom:0}.admin-bulk-row{display:flex;align-items:center;justify-content:space-between;gap:10px;padding:8px 10px;border-radius:10px;background:var(--bg-tertiary);border:1px solid rgba(255,255,255,.08);flex-wrap:wrap}.admin-select-all{display:inline-flex;align-items:center;gap:8px;font-size:12px;color:var(--text-muted)}.admin-select-all input,.admin-item-check input{accent-color:var(--accent)}.admin-list-wrap{min-height:260px;max-height:52vh;overflow-y:auto;border:1px solid rgba(255,255,255,.08);border-radius:10px;background:var(--bg-primary)}.admin-list{display:flex;flex-direction:column;gap:6px;padding:6px}.admin-empty{padding:24px 12px;text-align:center;color:var(--text-muted);font-size:13px}.admin-item{display:grid;grid-template-columns:28px minmax(0,1fr) auto;gap:10px;align-items:center;padding:10px;border-radius:8px;background:var(--bg-secondary);border:1px solid rgba(255,255,255,.06)}.admin-item-main{min-width:0}.admin-item-name{font-size:14px;font-weight:600;color:var(--text-normal);overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.admin-item-meta{margin-top:3px;font-size:11px;color:var(--text-faint);overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.admin-item-actions{display:flex;align-items:center;gap:6px}.admin-item-actions .admin-btn-action,.admin-rename-row .admin-btn-action{padding:8px 12px;font-size:12px}.admin-rename-row{display:flex;align-items:center;gap:6px;margin-top:8px}.admin-rename-row input{flex:1;min-width:120px;background:var(--bg-tertiary);border:1px solid rgba(255,255,255,.08);border-radius:8px;padding:8px 10px;font-size:13px;color:var(--text-normal);font-family:var(--font);transition:all var(--transition)}.admin-rename-row input:focus{outline:none;border-color:var(--accent);box-shadow:0 0 0 2px var(--accent-glow)}@media(max-width:700px){.toolbar{gap:6px;padding:8px 12px}.cat-tabs{overflow-x:auto;scrollbar-width:none}.cat-tabs::-webkit-scrollbar{display:none}.search-wrap,.url-import-wrap{max-width:100%;min-width:100%;order:-1}.size-control,.theme-selector{display:none}.main{padding:12px}.topbar{padding:0 12px;gap:8px}.channel-label{max-width:100px;overflow:hidden;text-overflow:ellipsis}.clock{font-size:16px}.clock-seconds{font-size:11px}.tb-btn span:not(.tb-icon){display:none}.analytics-strip{padding:8px 12px;flex-direction:column;gap:6px}.analytics-card.analytics-wide{width:100%}.admin-panel{width:96%;padding:16px;max-height:92vh}.admin-item{grid-template-columns:24px minmax(0,1fr)}.admin-item-actions{grid-column:1 / -1;justify-content:flex-end}.admin-rename-row{flex-wrap:wrap}}@media(max-width:480px){.connection,.sb-app-title{display:none}.now-playing{max-width:none}.toolbar .tb-btn{padding:6px 8px}.url-import-btn{padding:0 8px}}.drop-overlay{position:fixed;top:0;right:0;bottom:0;left:0;background:#000000c7;backdrop-filter:blur(6px);-webkit-backdrop-filter:blur(6px);z-index:300;display:flex;align-items:center;justify-content:center;animation:fade-in .12s ease;pointer-events:none}.drop-zone{display:flex;flex-direction:column;align-items:center;gap:14px;padding:64px 72px;border-radius:24px;border:2.5px dashed rgba(var(--accent-rgb),.55);background:rgba(var(--accent-rgb),.07);animation:drop-pulse 2.2s ease-in-out infinite}@keyframes drop-pulse{0%,to{border-color:rgba(var(--accent-rgb),.45);box-shadow:0 0 rgba(var(--accent-rgb),0)}50%{border-color:rgba(var(--accent-rgb),.9);box-shadow:0 0 60px 12px rgba(var(--accent-rgb),.12)}}.drop-icon{font-size:64px;color:var(--accent);animation:drop-bounce 1.8s ease-in-out infinite}@keyframes drop-bounce{0%,to{transform:translateY(0)}50%{transform:translateY(-8px)}}.drop-title{font-size:22px;font-weight:700;color:var(--text-normal);letter-spacing:-.3px}.drop-sub{font-size:13px;color:var(--text-muted)}.upload-queue{position:fixed;bottom:24px;right:24px;width:340px;background:var(--bg-secondary);border:1px solid rgba(255,255,255,.09);border-radius:14px;box-shadow:0 8px 40px #00000073;z-index:200;animation:slide-up .2s cubic-bezier(.16,1,.3,1)}@keyframes slide-up{0%{opacity:0;transform:translateY(16px)}to{opacity:1;transform:translateY(0)}}.uq-header{display:flex;align-items:center;gap:8px;padding:12px 14px;background:rgba(var(--accent-rgb),.12);border-bottom:1px solid rgba(255,255,255,.06);font-size:13px;font-weight:600;color:var(--text-normal)}.uq-header .material-icons{color:var(--accent)}.uq-close{margin-left:auto;display:flex;align-items:center;justify-content:center;width:22px;height:22px;border-radius:50%;border:none;background:#ffffff0f;color:var(--text-muted);cursor:pointer;transition:background var(--transition),color var(--transition)}.uq-close:hover{background:#ffffff24;color:var(--text-normal)}.uq-list{display:flex;flex-direction:column;max-height:260px;overflow-y:auto;padding:6px 0}.uq-item{display:grid;grid-template-columns:20px 1fr auto 18px;align-items:center;gap:8px;padding:8px 14px;position:relative}.uq-item+.uq-item{border-top:1px solid rgba(255,255,255,.04)}.uq-file-icon{font-size:18px;color:var(--text-faint)}.uq-info{min-width:0}.uq-name{font-size:12px;font-weight:500;color:var(--text-normal);white-space:nowrap;text-overflow:ellipsis}.uq-size{font-size:10px;color:var(--text-faint);margin-top:1px}.uq-progress-wrap{grid-column:1 / -1;height:3px;background:#ffffff12;border-radius:2px;margin-top:4px}.uq-item{flex-wrap:wrap}.uq-progress-wrap{width:100%;order:10}.uq-progress-bar{height:100%;background:var(--accent);border-radius:2px;transition:width .12s ease}.uq-status-icon{font-size:16px}.uq-status-waiting .uq-status-icon{color:var(--text-faint)}.uq-status-uploading .uq-status-icon{color:var(--accent);animation:spin 1s linear infinite}.uq-status-done .uq-status-icon{color:var(--green)}.uq-status-error .uq-status-icon{color:var(--red)}.uq-error{grid-column:2 / -1;font-size:10px;color:var(--red);margin-top:2px}.dl-modal-overlay{position:fixed;top:0;right:0;bottom:0;left:0;background:#0000008c;display:flex;align-items:center;justify-content:center;z-index:300;animation:fade-in .15s ease}@keyframes fade-in{0%{opacity:0}to{opacity:1}}.dl-modal{width:420px;max-width:92vw;background:var(--bg-secondary);border:1px solid rgba(255,255,255,.1);border-radius:16px;box-shadow:0 12px 60px #00000080;animation:scale-in .2s cubic-bezier(.16,1,.3,1)}@keyframes scale-in{0%{opacity:0;transform:scale(.95)}to{opacity:1;transform:scale(1)}}.dl-modal-header{display:flex;align-items:center;gap:8px;padding:14px 16px;border-bottom:1px solid rgba(255,255,255,.06);font-size:14px;font-weight:700;color:var(--text-normal)}.dl-modal-header .material-icons{color:var(--accent)}.dl-modal-close{margin-left:auto;display:flex;align-items:center;justify-content:center;width:26px;height:26px;border-radius:50%;border:none;background:#ffffff0f;color:var(--text-muted);cursor:pointer;transition:background var(--transition)}.dl-modal-close:hover{background:#ffffff24;color:var(--text-normal)}.dl-modal-body{padding:16px;display:flex;flex-direction:column;gap:14px}.dl-modal-url{display:flex;align-items:center;gap:8px;padding:8px 10px;border-radius:8px;background:#0003;overflow:hidden}.dl-modal-tag{flex-shrink:0;padding:2px 8px;border-radius:6px;font-size:10px;font-weight:800;letter-spacing:.5px;text-transform:uppercase}.dl-modal-tag.youtube{background:#ff00002e;color:#f44}.dl-modal-tag.instagram{background:#e1306c2e;color:#e1306c}.dl-modal-tag.mp3{background:#2ecc712e;color:#2ecc71}.dl-modal-url-text{font-size:11px;color:var(--text-faint);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.dl-modal-field{display:flex;flex-direction:column;gap:5px}.dl-modal-label{font-size:11px;font-weight:600;color:var(--text-muted);text-transform:uppercase;letter-spacing:.5px}.dl-modal-input-wrap{display:flex;align-items:center;border:1px solid rgba(255,255,255,.1);border-radius:8px;background:#00000026;overflow:hidden;transition:border-color var(--transition)}.dl-modal-input-wrap:focus-within{border-color:var(--accent)}.dl-modal-input{flex:1;border:none;background:transparent;padding:8px 10px;color:var(--text-normal);font-size:13px;font-family:var(--font);outline:none}.dl-modal-input::placeholder{color:var(--text-faint)}.dl-modal-ext{padding:0 10px;font-size:12px;font-weight:600;color:var(--text-faint);background:#ffffff0a;align-self:stretch;display:flex;align-items:center}.dl-modal-hint{font-size:10px;color:var(--text-faint)}.dl-modal-progress{display:flex;align-items:center;gap:12px;padding:20px 0;justify-content:center;font-size:13px;color:var(--text-muted)}.dl-modal-spinner{width:24px;height:24px;border-radius:50%;border:3px solid rgba(var(--accent-rgb),.2);border-top-color:var(--accent);animation:spin .8s linear infinite}.dl-modal-success{display:flex;align-items:center;gap:10px;padding:16px 0;justify-content:center;font-size:13px;color:var(--text-normal)}.dl-modal-check{color:#2ecc71;font-size:28px}.dl-modal-error{display:flex;align-items:center;gap:10px;padding:12px 0;justify-content:center;font-size:13px;color:#e74c3c}.dl-modal-actions{display:flex;justify-content:flex-end;gap:8px;padding:0 16px 14px}.dl-modal-cancel{padding:7px 14px;border-radius:8px;border:1px solid rgba(255,255,255,.1);background:transparent;color:var(--text-muted);font-size:12px;font-weight:600;cursor:pointer;transition:all var(--transition)}.dl-modal-cancel:hover{background:#ffffff0f;color:var(--text-normal)}.dl-modal-submit{display:flex;align-items:center;gap:5px;padding:7px 16px;border-radius:8px;border:none;background:var(--accent);color:#fff;font-size:12px;font-weight:700;cursor:pointer;transition:filter var(--transition)}.dl-modal-submit:hover{filter:brightness(1.15)}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}.lol-container{max-width:920px;margin:0 auto;padding:16px;height:100%;overflow-y:auto}.lol-search{display:flex;gap:8px;margin-bottom:12px}.lol-search-input{flex:1;min-width:0;padding:10px 14px;border:1px solid var(--bg-tertiary);border-radius:8px;background:var(--bg-secondary);color:var(--text-normal);font-size:15px;outline:none;transition:border-color .2s}.lol-search-input:focus{border-color:var(--accent)}.lol-search-input::placeholder{color:var(--text-faint)}.lol-search-region{padding:10px 12px;border:1px solid var(--bg-tertiary);border-radius:8px;background:var(--bg-secondary);color:var(--text-normal);font-size:14px;cursor:pointer;outline:none}.lol-search-btn{padding:10px 20px;border:none;border-radius:8px;background:var(--accent);color:#fff;font-weight:600;font-size:14px;cursor:pointer;transition:opacity .2s;white-space:nowrap}.lol-search-btn:hover{opacity:.85}.lol-search-btn:disabled{opacity:.4;cursor:not-allowed}.lol-recent{display:flex;gap:6px;flex-wrap:wrap;margin-bottom:16px}.lol-recent-chip{display:flex;align-items:center;gap:6px;padding:4px 10px;border:1px solid var(--bg-tertiary);border-radius:16px;background:var(--bg-secondary);color:var(--text-muted);font-size:12px;cursor:pointer;transition:border-color .2s,color .2s}.lol-recent-chip:hover{border-color:var(--accent);color:var(--text-normal)}.lol-recent-chip img{width:18px;height:18px;border-radius:50%}.lol-recent-tier{font-size:10px;font-weight:600;opacity:.7;text-transform:uppercase}.lol-profile{display:flex;align-items:center;gap:16px;padding:16px;border-radius:12px;background:var(--bg-secondary);margin-bottom:12px}.lol-profile-icon{width:72px;height:72px;border-radius:12px;border:2px solid var(--bg-tertiary);object-fit:cover}.lol-profile-info h2{margin:0 0 2px;font-size:20px;color:var(--text-normal)}.lol-profile-info h2 span{color:var(--text-faint);font-weight:400;font-size:14px}.lol-profile-level{font-size:12px;color:var(--text-muted)}.lol-profile-ladder{font-size:11px;color:var(--text-faint)}.lol-profile-updated{font-size:10px;color:var(--text-faint);margin-top:2px}.lol-profile-info{flex:1;min-width:0}.lol-update-btn{display:flex;align-items:center;gap:6px;padding:8px 16px;border:1px solid var(--bg-tertiary);border-radius:8px;background:var(--bg-primary);color:var(--text-muted);font-size:13px;font-weight:500;cursor:pointer;transition:border-color .2s,color .2s,background .2s;white-space:nowrap;flex-shrink:0}.lol-update-btn:hover{border-color:var(--accent);color:var(--text-normal)}.lol-update-btn:disabled{opacity:.6;cursor:not-allowed}.lol-update-btn.renewing{border-color:var(--accent);color:var(--accent)}.lol-update-icon{font-size:16px;display:inline-block}.lol-update-btn.renewing .lol-update-icon{animation:lol-spin 1s linear infinite}.lol-ranked-row{display:flex;gap:10px;margin-bottom:12px}.lol-ranked-card{flex:1;padding:12px 14px;border-radius:10px;background:var(--bg-secondary);border-left:4px solid var(--bg-tertiary)}.lol-ranked-card.has-rank{border-left-color:var(--tier-color, var(--accent))}.lol-ranked-type{font-size:11px;color:var(--text-faint);text-transform:uppercase;letter-spacing:.5px;margin-bottom:4px}.lol-ranked-tier{font-size:18px;font-weight:700;color:var(--tier-color, var(--text-normal))}.lol-ranked-lp{font-size:13px;color:var(--text-muted);margin-left:4px;font-weight:400}.lol-ranked-record{font-size:12px;color:var(--text-muted);margin-top:2px}.lol-ranked-wr{color:var(--text-faint);margin-left:4px}.lol-ranked-streak{color:#e74c3c;font-size:11px;margin-left:4px}.lol-section-title{font-size:13px;font-weight:600;color:var(--text-muted);text-transform:uppercase;letter-spacing:.5px;margin:16px 0 8px;padding-left:2px}.lol-champs{display:flex;gap:8px;margin-bottom:12px;overflow-x:auto;padding-bottom:4px}.lol-champ-card{display:flex;align-items:center;gap:8px;padding:8px 12px;border-radius:8px;background:var(--bg-secondary);min-width:180px;flex-shrink:0}.lol-champ-icon{width:36px;height:36px;border-radius:50%;object-fit:cover}.lol-champ-name{font-size:13px;font-weight:600;color:var(--text-normal)}.lol-champ-stats{font-size:11px;color:var(--text-muted)}.lol-champ-kda{font-size:11px;color:var(--text-faint)}.lol-matches{display:flex;flex-direction:column;gap:6px}.lol-match{display:flex;align-items:center;gap:10px;padding:10px 12px;border-radius:8px;background:var(--bg-secondary);border-left:4px solid var(--bg-tertiary);cursor:pointer;transition:background .15s}.lol-match:hover{background:var(--bg-tertiary)}.lol-match.win{border-left-color:#2ecc71}.lol-match.loss{border-left-color:#e74c3c}.lol-match-result{width:28px;font-size:11px;font-weight:700;text-align:center;flex-shrink:0}.lol-match.win .lol-match-result{color:#2ecc71}.lol-match.loss .lol-match-result{color:#e74c3c}.lol-match-champ{position:relative;flex-shrink:0}.lol-match-champ img{width:40px;height:40px;border-radius:50%;display:block}.lol-match-champ-level{position:absolute;bottom:-2px;right:-2px;background:var(--bg-deep);color:var(--text-muted);font-size:9px;font-weight:700;width:16px;height:16px;border-radius:50%;display:flex;align-items:center;justify-content:center}.lol-match-kda{min-width:80px;text-align:center;flex-shrink:0}.lol-match-kda-nums{font-size:14px;font-weight:600;color:var(--text-normal)}.lol-match-kda-ratio{font-size:11px;color:var(--text-faint)}.lol-match-kda-ratio.perfect{color:#f39c12}.lol-match-kda-ratio.great{color:#2ecc71}.lol-match-stats{display:flex;flex-direction:column;gap:1px;min-width:70px;flex-shrink:0}.lol-match-stats span{font-size:11px;color:var(--text-muted)}.lol-match-items{display:flex;gap:2px;flex-shrink:0}.lol-match-items img,.lol-match-item-empty{width:24px;height:24px;border-radius:4px;background:var(--bg-deep)}.lol-match-meta{margin-left:auto;text-align:right;flex-shrink:0}.lol-match-duration{font-size:12px;color:var(--text-muted)}.lol-match-queue,.lol-match-ago{font-size:10px;color:var(--text-faint)}.lol-match-detail{background:var(--bg-primary);border-radius:8px;padding:8px;margin-top:4px;margin-bottom:4px}.lol-match-detail-team{margin-bottom:6px}.lol-match-detail-team-header{font-size:11px;font-weight:600;padding:4px 8px;border-radius:4px;margin-bottom:4px}.lol-match-detail-team-header.win{background:#2ecc7126;color:#2ecc71}.lol-match-detail-team-header.loss{background:#e74c3c26;color:#e74c3c}.lol-detail-row{display:flex;align-items:center;gap:8px;padding:3px 8px;border-radius:4px;font-size:12px;color:var(--text-muted)}.lol-detail-row:hover{background:var(--bg-secondary)}.lol-detail-row.me{background:#ffffff0a;font-weight:600}.lol-detail-champ{width:24px;height:24px;border-radius:50%}.lol-detail-name{width:110px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;color:var(--text-normal)}.lol-detail-kda{width:70px;text-align:center}.lol-detail-cs{width:45px;text-align:center}.lol-detail-dmg,.lol-detail-gold{width:55px;text-align:center}.lol-detail-items{display:flex;gap:1px}.lol-detail-items img{width:20px;height:20px;border-radius:3px}.lol-loading{display:flex;align-items:center;justify-content:center;gap:10px;padding:40px;color:var(--text-muted);font-size:14px}.lol-spinner{width:20px;height:20px;border:2px solid var(--bg-tertiary);border-top-color:var(--accent);border-radius:50%;animation:lol-spin .8s linear infinite}@keyframes lol-spin{to{transform:rotate(360deg)}}.lol-error{padding:16px;border-radius:8px;background:#e74c3c1a;color:#e74c3c;font-size:13px;text-align:center;margin-bottom:12px}.lol-empty{text-align:center;padding:60px 20px;color:var(--text-faint)}.lol-empty-icon{font-size:48px;margin-bottom:12px}.lol-empty h3{margin:0 0 8px;color:var(--text-muted);font-size:16px}.lol-empty p{margin:0;font-size:13px}.lol-load-more{display:block;width:100%;padding:10px;margin-top:8px;border:1px solid var(--bg-tertiary);border-radius:8px;background:transparent;color:var(--text-muted);font-size:13px;cursor:pointer;transition:border-color .2s,color .2s}.lol-load-more:hover{border-color:var(--accent);color:var(--text-normal)}@media(max-width:640px){.lol-search{flex-wrap:wrap}.lol-search-input{width:100%}.lol-match{flex-wrap:wrap;gap:6px}.lol-match-meta{margin-left:0;text-align:left}.lol-match-items,.lol-profile{flex-wrap:wrap}}.stream-container{height:100%;overflow-y:auto;padding:16px}.stream-topbar{display:flex;align-items:center;gap:10px;margin-bottom:16px;flex-wrap:wrap}.stream-input{padding:10px 14px;border:1px solid var(--bg-tertiary);border-radius:var(--radius);background:var(--bg-secondary);color:var(--text-normal);font-size:14px;outline:none;transition:border-color var(--transition);min-width:0}.stream-input:focus{border-color:var(--accent)}.stream-input::placeholder{color:var(--text-faint)}.stream-input-name{width:150px}.stream-input-title{flex:1;min-width:180px}.stream-btn{padding:10px 20px;border:none;border-radius:var(--radius);background:var(--accent);color:#fff;font-weight:600;font-size:14px;cursor:pointer;transition:background var(--transition);white-space:nowrap;display:flex;align-items:center;gap:6px}.stream-btn:hover{background:var(--accent-hover)}.stream-btn:disabled{opacity:.5;cursor:not-allowed}.stream-btn-stop{background:var(--danger)}.stream-btn-stop:hover{background:#c93b3e}.stream-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(280px,1fr));gap:16px}.stream-tile{background:var(--bg-secondary);border-radius:var(--radius-lg);overflow:hidden;cursor:pointer;transition:transform var(--transition),box-shadow var(--transition);position:relative}.stream-tile:hover{transform:translateY(-2px);box-shadow:0 4px 20px #0006}.stream-tile.own{border:2px solid var(--accent)}.stream-tile-preview{position:relative;width:100%;padding-top:56.25%;background:var(--bg-deep);overflow:hidden}.stream-tile-preview video{position:absolute;top:0;left:0;width:100%;height:100%;object-fit:cover}.stream-tile-preview .stream-tile-icon{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);font-size:48px;opacity:.3}.stream-live-badge{position:absolute;top:8px;left:8px;background:var(--danger);color:#fff;font-size:11px;font-weight:700;padding:2px 8px;border-radius:4px;letter-spacing:.5px;display:flex;align-items:center;gap:4px}.stream-live-dot{width:6px;height:6px;border-radius:50%;background:#fff;animation:stream-pulse 1.5s ease-in-out infinite}@keyframes stream-pulse{0%,to{opacity:1}50%{opacity:.3}}.stream-tile-viewers{position:absolute;top:8px;right:8px;background:#0009;color:#fff;font-size:12px;padding:2px 8px;border-radius:4px;display:flex;align-items:center;gap:4px}.stream-tile-info{padding:10px 12px;display:flex;align-items:center;justify-content:space-between;gap:8px}.stream-tile-meta{min-width:0;flex:1}.stream-tile-name{font-size:14px;font-weight:600;color:var(--text-normal);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.stream-tile-title{font-size:12px;color:var(--text-muted);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.stream-tile-time{font-size:12px;color:var(--text-faint);white-space:nowrap}.stream-tile-menu-wrap{position:relative}.stream-tile-menu{background:none;border:none;color:var(--text-muted);cursor:pointer;padding:4px 6px;font-size:18px;line-height:1;border-radius:4px;transition:background var(--transition)}.stream-tile-menu:hover{background:var(--bg-tertiary);color:var(--text-normal)}.stream-tile-dropdown{position:absolute;bottom:calc(100% + 6px);right:0;background:var(--bg-secondary);border:1px solid var(--bg-tertiary);border-radius:var(--radius-lg);min-width:220px;z-index:100;box-shadow:0 8px 24px #0006;overflow:hidden}.stream-tile-dropdown-header{padding:12px 14px}.stream-tile-dropdown-name{font-size:14px;font-weight:600;color:var(--text-normal)}.stream-tile-dropdown-title{font-size:12px;color:var(--text-muted);margin-top:2px}.stream-tile-dropdown-detail{font-size:11px;color:var(--text-faint);margin-top:6px}.stream-tile-dropdown-divider{height:1px;background:var(--bg-tertiary)}.stream-tile-dropdown-item{display:flex;align-items:center;gap:8px;width:100%;padding:10px 14px;border:none;background:none;color:var(--text-normal);font-size:13px;cursor:pointer;text-align:left;transition:background var(--transition)}.stream-tile-dropdown-item:hover{background:var(--bg-tertiary)}.stream-viewer-overlay{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1000;background:#000;display:flex;flex-direction:column}.stream-viewer-header{display:flex;align-items:center;justify-content:space-between;padding:12px 16px;background:#000c;color:#fff;z-index:1}.stream-viewer-header-left{display:flex;align-items:center;gap:12px}.stream-viewer-title{font-weight:600;font-size:16px}.stream-viewer-subtitle{font-size:13px;color:var(--text-muted)}.stream-viewer-header-right{display:flex;align-items:center;gap:8px}.stream-viewer-fullscreen{background:#ffffff1a;border:none;color:#fff;width:36px;height:36px;border-radius:var(--radius);cursor:pointer;font-size:18px;display:flex;align-items:center;justify-content:center;transition:background var(--transition)}.stream-viewer-fullscreen:hover{background:#ffffff40}.stream-viewer-close{background:#ffffff1a;border:none;color:#fff;padding:8px 16px;border-radius:var(--radius);cursor:pointer;font-size:14px;transition:background var(--transition)}.stream-viewer-close:hover{background:#fff3}.stream-viewer-video{flex:1;display:flex;align-items:center;justify-content:center;overflow:hidden}.stream-viewer-video video{max-width:100%;max-height:100%;width:100%;height:100%;object-fit:contain}.stream-viewer-connecting{color:var(--text-muted);font-size:16px;display:flex;flex-direction:column;align-items:center;gap:12px}.stream-viewer-spinner{width:32px;height:32px;border:3px solid var(--bg-tertiary);border-top-color:var(--accent);border-radius:50%;animation:stream-spin .8s linear infinite}@keyframes stream-spin{to{transform:rotate(360deg)}}.stream-empty{text-align:center;padding:60px 20px;color:var(--text-muted)}.stream-empty-icon{font-size:48px;margin-bottom:12px;opacity:.4}.stream-empty h3{font-size:18px;font-weight:600;color:var(--text-normal);margin-bottom:6px}.stream-empty p{font-size:14px}.stream-error{background:#ed42451f;color:var(--danger);padding:10px 14px;border-radius:var(--radius);font-size:14px;margin-bottom:12px;display:flex;align-items:center;gap:8px}.stream-error-dismiss{background:none;border:none;color:var(--danger);cursor:pointer;margin-left:auto;font-size:16px;padding:0 4px}.stream-tile.broadcasting .stream-tile-preview{border:2px solid var(--danger);border-bottom:none}.stream-input-password{width:140px}.stream-tile-lock{position:absolute;bottom:8px;right:8px;font-size:16px;opacity:.6}.stream-pw-overlay{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1000;background:#000000b3;display:flex;align-items:center;justify-content:center}.stream-pw-modal{background:var(--bg-secondary);border-radius:var(--radius-lg);padding:24px;width:340px;max-width:90vw}.stream-pw-modal h3{font-size:16px;font-weight:600;margin-bottom:4px}.stream-pw-modal p{font-size:13px;color:var(--text-muted);margin-bottom:16px}.stream-pw-modal .stream-input{width:100%;margin-bottom:12px}.stream-pw-modal-error{color:var(--danger);font-size:13px;margin-bottom:8px}.stream-pw-actions{display:flex;gap:8px;justify-content:flex-end}.stream-pw-cancel{padding:8px 16px;border:1px solid var(--bg-tertiary);border-radius:var(--radius);background:transparent;color:var(--text-muted);cursor:pointer;font-size:14px}.stream-pw-cancel:hover{color:var(--text-normal);border-color:var(--text-faint)}:root{--bg-deep: #1a1b1e;--bg-primary: #1e1f22;--bg-secondary: #2b2d31;--bg-tertiary: #313338;--text-normal: #dbdee1;--text-muted: #949ba4;--text-faint: #6d6f78;--accent: #e67e22;--accent-rgb: 230, 126, 34;--accent-hover: #d35400;--success: #57d28f;--danger: #ed4245;--warning: #fee75c;--border: rgba(255, 255, 255, .06);--radius: 8px;--radius-lg: 12px;--transition: .15s ease;--font: "Segoe UI", system-ui, -apple-system, sans-serif;--header-height: 56px}*,*:before,*:after{margin:0;padding:0;box-sizing:border-box}html,body{height:100%;font-family:var(--font);font-size:15px;color:var(--text-normal);background:var(--bg-deep);-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;overflow:hidden}#root{height:100%}.hub-app{display:flex;flex-direction:column;height:100vh;overflow:hidden}.hub-header{position:sticky;top:0;z-index:100;display:flex;align-items:center;height:var(--header-height);min-height:var(--header-height);padding:0 16px;background:var(--bg-primary);border-bottom:1px solid var(--border);gap:16px}.hub-header-left{display:flex;align-items:center;gap:10px;flex-shrink:0}.hub-logo{font-size:24px;line-height:1}.hub-title{font-size:18px;font-weight:700;color:var(--text-normal);letter-spacing:-.02em;white-space:nowrap}.hub-conn-dot{width:10px;height:10px;border-radius:50%;background:var(--danger);flex-shrink:0;transition:background var(--transition);box-shadow:0 0 0 2px #ed424540}.hub-conn-dot.online{background:var(--success);box-shadow:0 0 0 2px #57d28f40;animation:pulse-dot 2s ease-in-out infinite}@keyframes pulse-dot{0%,to{box-shadow:0 0 0 2px #57d28f40}50%{box-shadow:0 0 0 6px #57d28f1a}}.hub-tabs{display:flex;align-items:center;gap:4px;flex:1;overflow-x:auto;scrollbar-width:none;-ms-overflow-style:none;padding:0 4px}.hub-tabs::-webkit-scrollbar{display:none}.hub-tab{display:flex;align-items:center;gap:6px;padding:8px 14px;border:none;background:transparent;color:var(--text-muted);font-family:var(--font);font-size:14px;font-weight:500;cursor:pointer;border-radius:var(--radius);white-space:nowrap;transition:all var(--transition);position:relative;-webkit-user-select:none;user-select:none}.hub-tab:hover{color:var(--text-normal);background:var(--bg-secondary)}.hub-tab.active{color:var(--accent);background:rgba(var(--accent-rgb),.1)}.hub-tab.active:after{content:"";position:absolute;bottom:-1px;left:50%;transform:translate(-50%);width:calc(100% - 16px);height:2px;background:var(--accent);border-radius:1px}.hub-tab-icon{font-size:16px;line-height:1}.hub-tab-label{text-transform:capitalize}.hub-header-right{display:flex;align-items:center;gap:12px;flex-shrink:0}.hub-version{font-size:12px;color:var(--text-faint);font-weight:500;font-variant-numeric:tabular-nums;background:var(--bg-secondary);padding:4px 8px;border-radius:4px}.hub-content{flex:1;overflow-y:auto;overflow-x:hidden;background:var(--bg-deep);scrollbar-width:thin;scrollbar-color:var(--bg-tertiary) transparent}.hub-content::-webkit-scrollbar{width:6px}.hub-content::-webkit-scrollbar-track{background:transparent}.hub-content::-webkit-scrollbar-thumb{background:var(--bg-tertiary);border-radius:3px}.hub-content::-webkit-scrollbar-thumb:hover{background:var(--text-faint)}.hub-empty{display:flex;flex-direction:column;align-items:center;justify-content:center;height:100%;min-height:300px;text-align:center;padding:32px;animation:fade-in .3s ease}.hub-empty-icon{font-size:64px;line-height:1;margin-bottom:20px;opacity:.6;filter:grayscale(30%)}.hub-empty h2{font-size:22px;font-weight:700;color:var(--text-normal);margin-bottom:8px}.hub-empty p{font-size:15px;color:var(--text-muted);max-width:360px;line-height:1.5}@keyframes fade-in{0%{opacity:0;transform:translateY(8px)}to{opacity:1;transform:translateY(0)}}::selection{background:rgba(var(--accent-rgb),.3);color:var(--text-normal)}:focus-visible{outline:2px solid var(--accent);outline-offset:2px}@media(max-width:768px){:root{--header-height: 48px}.hub-header{padding:0 10px;gap:8px}.hub-title{font-size:15px}.hub-logo{font-size:20px}.hub-tab{padding:6px 10px;font-size:13px;gap:4px}.hub-tab-label{display:none}.hub-tab-icon{font-size:18px}.hub-version{font-size:11px}.hub-empty-icon{font-size:48px}.hub-empty h2{font-size:18px}.hub-empty p{font-size:14px}}@media(max-width:480px){.hub-header-right{display:none}.hub-header{padding:0 8px;gap:6px}.hub-title{font-size:14px}}.radio-container{display:flex;flex-direction:column;width:100%;height:100%;overflow:hidden;background:var(--bg-deep);--bg-deep: #1a1b1e;--bg-primary: #1e1f22;--bg-secondary: #2b2d31;--bg-tertiary: #313338;--text-normal: #dbdee1;--text-muted: #949ba4;--text-faint: #6d6f78;--accent: #e67e22;--accent-rgb: 230, 126, 34;--accent-hover: #d35400;--border: rgba(255, 255, 255, .06)}.radio-container[data-theme=purple]{--bg-deep: #13111c;--bg-primary: #1a1726;--bg-secondary: #241f35;--bg-tertiary: #2e2845;--accent: #9b59b6;--accent-rgb: 155, 89, 182;--accent-hover: #8e44ad}.radio-container[data-theme=forest]{--bg-deep: #0f1a14;--bg-primary: #142119;--bg-secondary: #1c2e22;--bg-tertiary: #253a2c;--accent: #2ecc71;--accent-rgb: 46, 204, 113;--accent-hover: #27ae60}.radio-container[data-theme=ocean]{--bg-deep: #0a1628;--bg-primary: #0f1e33;--bg-secondary: #162a42;--bg-tertiary: #1e3652;--accent: #3498db;--accent-rgb: 52, 152, 219;--accent-hover: #2980b9}.radio-container[data-theme=cherry]{--bg-deep: #1a0f14;--bg-primary: #22141a;--bg-secondary: #301c25;--bg-tertiary: #3e2530;--accent: #e74c6f;--accent-rgb: 231, 76, 111;--accent-hover: #c0392b}.radio-topbar{display:flex;align-items:center;padding:0 16px;height:52px;background:var(--bg-secondary, #2b2d31);border-bottom:1px solid rgba(0,0,0,.24);z-index:10;flex-shrink:0;gap:16px}.radio-topbar-left{display:flex;align-items:center;gap:10px;flex-shrink:0}.radio-topbar-logo{font-size:20px}.radio-topbar-title{font-size:16px;font-weight:700;color:var(--text-normal);letter-spacing:-.02em}.radio-topbar-np{flex:1;display:flex;align-items:center;gap:10px;min-width:0;justify-content:center}.radio-topbar-right{display:flex;align-items:center;gap:6px;flex-shrink:0;margin-left:auto}.radio-topbar-stop{display:flex;align-items:center;gap:4px;background:var(--danger);color:#fff;border:none;border-radius:var(--radius);padding:6px 14px;font-size:13px;font-family:var(--font);font-weight:600;cursor:pointer;transition:all var(--transition);flex-shrink:0}.radio-topbar-stop:hover{background:#c63639}.radio-theme-inline{display:flex;align-items:center;gap:4px;margin-left:4px}.radio-globe-wrap{position:relative;flex:1;overflow:hidden}.radio-globe{width:100%;height:100%}.radio-globe canvas{outline:none!important}.radio-search{position:absolute;top:16px;left:50%;transform:translate(-50%);z-index:20;width:min(440px,calc(100% - 32px))}.radio-search-wrap{display:flex;align-items:center;background:#1e1f22eb;-webkit-backdrop-filter:blur(12px);backdrop-filter:blur(12px);border:1px solid var(--border);border-radius:var(--radius-lg);padding:0 14px;gap:8px;box-shadow:0 8px 32px #0006}.radio-search-icon{font-size:16px;opacity:.6;flex-shrink:0}.radio-search-input{flex:1;background:transparent;border:none;color:var(--text-normal);font-family:var(--font);font-size:14px;padding:12px 0;outline:none}.radio-search-input::placeholder{color:var(--text-faint)}.radio-search-clear{background:none;border:none;color:var(--text-muted);font-size:14px;cursor:pointer;padding:4px;border-radius:4px;transition:color var(--transition)}.radio-search-clear:hover{color:var(--text-normal)}.radio-search-results{margin-top:6px;background:#1e1f22f2;-webkit-backdrop-filter:blur(12px);backdrop-filter:blur(12px);border:1px solid var(--border);border-radius:var(--radius-lg);max-height:360px;overflow-y:auto;box-shadow:0 12px 40px #00000080;scrollbar-width:thin;scrollbar-color:var(--bg-tertiary) transparent}.radio-search-result{display:flex;align-items:center;gap:10px;width:100%;padding:10px 14px;background:none;border:none;border-bottom:1px solid var(--border);color:var(--text-normal);font-family:var(--font);font-size:14px;cursor:pointer;text-align:left;transition:background var(--transition)}.radio-search-result:last-child{border-bottom:none}.radio-search-result:hover{background:rgba(var(--accent-rgb),.08)}.radio-search-result-icon{font-size:18px;flex-shrink:0}.radio-search-result-text{display:flex;flex-direction:column;gap:2px;min-width:0}.radio-search-result-title{font-weight:600;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.radio-search-result-sub{font-size:12px;color:var(--text-muted);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.radio-fab{position:absolute;top:16px;right:16px;z-index:20;display:flex;align-items:center;gap:4px;padding:10px 14px;background:#1e1f22eb;-webkit-backdrop-filter:blur(12px);backdrop-filter:blur(12px);border:1px solid var(--border);border-radius:var(--radius-lg);color:var(--text-normal);font-size:16px;cursor:pointer;box-shadow:0 8px 32px #0006;transition:all var(--transition)}.radio-fab:hover,.radio-fab.active{background:rgba(var(--accent-rgb),.15);border-color:rgba(var(--accent-rgb),.3)}.radio-fab-badge{font-size:11px;font-weight:700;background:var(--accent);color:#fff;padding:1px 6px;border-radius:10px;min-width:18px;text-align:center}.radio-panel{position:absolute;top:0;right:0;width:340px;height:100%;z-index:15;background:#1e1f22f2;-webkit-backdrop-filter:blur(16px);backdrop-filter:blur(16px);border-left:1px solid var(--border);display:flex;flex-direction:column;animation:slide-in-right .2s ease;box-shadow:-8px 0 32px #0000004d}@keyframes slide-in-right{0%{transform:translate(100%);opacity:0}to{transform:translate(0);opacity:1}}.radio-panel-header{display:flex;align-items:center;justify-content:space-between;padding:16px;border-bottom:1px solid var(--border);flex-shrink:0}.radio-panel-header h3{font-size:16px;font-weight:700;color:var(--text-normal)}.radio-panel-sub{font-size:12px;color:var(--text-muted);display:block;margin-top:2px}.radio-panel-close{background:none;border:none;color:var(--text-muted);font-size:18px;cursor:pointer;padding:4px 8px;border-radius:4px;transition:all var(--transition)}.radio-panel-close:hover{color:var(--text-normal);background:var(--bg-secondary)}.radio-panel-body{flex:1;overflow-y:auto;padding:8px;scrollbar-width:thin;scrollbar-color:var(--bg-tertiary) transparent}.radio-panel-empty{text-align:center;color:var(--text-muted);padding:40px 16px;font-size:14px}.radio-panel-loading{display:flex;flex-direction:column;align-items:center;gap:12px;padding:40px 16px;color:var(--text-muted);font-size:14px}.radio-station{display:flex;align-items:center;justify-content:space-between;padding:10px 12px;border-radius:var(--radius);transition:background var(--transition);gap:10px}.radio-station:hover{background:var(--bg-secondary)}.radio-station.playing{background:rgba(var(--accent-rgb),.1);border:1px solid rgba(var(--accent-rgb),.2)}.radio-station-info{flex:1;min-width:0;display:flex;flex-direction:column;gap:3px}.radio-station-name{font-size:14px;font-weight:600;color:var(--text-normal);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.radio-station-loc{font-size:11px;color:var(--text-faint);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.radio-station-live{display:flex;align-items:center;gap:6px;font-size:11px;color:var(--accent);font-weight:600}.radio-station-btns{display:flex;gap:4px;flex-shrink:0}.radio-btn-play,.radio-btn-stop{width:34px;height:34px;border:none;border-radius:50%;font-size:14px;cursor:pointer;display:flex;align-items:center;justify-content:center;transition:all var(--transition)}.radio-btn-play{background:var(--accent);color:#fff}.radio-btn-play:hover:not(:disabled){background:var(--accent-hover);transform:scale(1.05)}.radio-btn-play:disabled{opacity:.4;cursor:not-allowed}.radio-btn-stop{background:var(--danger);color:#fff}.radio-btn-stop:hover{background:#c63639}.radio-btn-fav{width:34px;height:34px;border:none;border-radius:50%;font-size:16px;cursor:pointer;background:transparent;color:var(--text-faint);display:flex;align-items:center;justify-content:center;transition:all var(--transition)}.radio-btn-fav:hover{color:var(--warning);background:#fee75c1a}.radio-btn-fav.active{color:var(--warning)}.radio-eq{display:flex;align-items:flex-end;gap:2px;height:14px}.radio-eq span{width:3px;background:var(--accent);border-radius:1px;animation:eq-bounce .8s ease-in-out infinite}.radio-eq span:nth-child(1){height:8px;animation-delay:0s}.radio-eq span:nth-child(2){height:14px;animation-delay:.15s}.radio-eq span:nth-child(3){height:10px;animation-delay:.3s}@keyframes eq-bounce{0%,to{transform:scaleY(.4)}50%{transform:scaleY(1)}}.radio-sel{background:var(--bg-secondary);border:1px solid var(--border);border-radius:var(--radius);color:var(--text-normal);font-family:var(--font);font-size:13px;padding:6px 10px;cursor:pointer;outline:none;max-width:180px}.radio-sel:focus{border-color:var(--accent)}.radio-eq-np{flex-shrink:0}.radio-np-info{display:flex;flex-direction:column;gap:1px;min-width:0;flex:1}.radio-np-name{font-size:14px;font-weight:600;color:var(--text-normal);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.radio-np-loc{font-size:11px;color:var(--text-muted);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.radio-volume{display:flex;align-items:center;gap:6px;flex-shrink:0}.radio-volume-icon{font-size:16px;width:20px;text-align:center;cursor:pointer}.radio-volume-slider{-webkit-appearance:none;-moz-appearance:none;appearance:none;width:100px;height:4px;border-radius:2px;background:var(--bg-tertiary, #383a40);outline:none;cursor:pointer}.radio-volume-slider::-webkit-slider-thumb{-webkit-appearance:none;-moz-appearance:none;appearance:none;width:14px;height:14px;border-radius:50%;background:var(--accent, #e67e22);cursor:pointer;border:none;box-shadow:0 0 4px #0000004d}.radio-volume-slider::-moz-range-thumb{width:14px;height:14px;border-radius:50%;background:var(--accent, #e67e22);cursor:pointer;border:none;box-shadow:0 0 4px #0000004d}.radio-volume-val{font-size:11px;color:var(--text-muted);min-width:32px;text-align:right}.radio-theme-dot{width:16px;height:16px;border-radius:50%;cursor:pointer;transition:transform .15s ease,border-color .15s ease;border:2px solid transparent}.radio-theme-dot:hover{transform:scale(1.25)}.radio-theme-dot.active{border-color:#fff;box-shadow:0 0 6px #ffffff4d}.radio-counter{position:absolute;bottom:16px;left:16px;z-index:10;font-size:12px;color:var(--text-faint);background:#1e1f22cc;padding:4px 10px;border-radius:20px;pointer-events:none}.radio-attribution{position:absolute;right:16px;bottom:16px;z-index:10;font-size:12px;color:var(--text-faint);background:#1e1f22cc;padding:4px 10px;border-radius:20px;text-decoration:none;transition:color var(--transition),background var(--transition)}.radio-attribution:hover{color:var(--text-normal);background:#1e1f22eb}.radio-spinner{width:24px;height:24px;border:3px solid var(--bg-tertiary);border-top-color:var(--accent);border-radius:50%;animation:spin .7s linear infinite}@keyframes spin{to{transform:rotate(360deg)}}@media(max-width:768px){.radio-panel{width:100%}.radio-fab{top:12px;right:12px;padding:8px 10px;font-size:14px}.radio-search{top:12px;width:calc(100% - 80px);left:calc(50% - 24px)}.radio-topbar{padding:0 12px;gap:8px}.radio-topbar-title{display:none}.radio-sel{max-width:140px;font-size:12px}}@media(max-width:480px){.radio-topbar-np,.radio-volume{display:none}.radio-sel{max-width:120px}}.radio-conn{display:flex;align-items:center;gap:6px;font-size:12px;color:var(--success);cursor:pointer;padding:4px 10px;border-radius:20px;background:#57d28f14;transition:all var(--transition);flex-shrink:0;-webkit-user-select:none;user-select:none}.radio-conn:hover{background:#57d28f26}.radio-conn-dot{width:8px;height:8px;border-radius:50%;background:var(--success);animation:pulse-dot 2s ease-in-out infinite}.radio-conn-ping{font-size:11px;color:var(--text-muted);font-weight:600;font-variant-numeric:tabular-nums}.radio-modal-overlay{position:fixed;top:0;right:0;bottom:0;left:0;background:#0000008c;z-index:9000;display:flex;align-items:center;justify-content:center;-webkit-backdrop-filter:blur(4px);backdrop-filter:blur(4px);animation:fade-in .15s ease}.radio-modal{background:var(--bg-primary);border:1px solid var(--border);border-radius:16px;width:340px;box-shadow:0 20px 60px #0006;overflow:hidden;animation:radio-modal-in .2s ease}@keyframes radio-modal-in{0%{transform:translateY(20px);opacity:0}to{transform:translateY(0);opacity:1}}.radio-modal-header{display:flex;align-items:center;gap:8px;padding:14px 16px;border-bottom:1px solid var(--border);font-weight:700;font-size:14px}.radio-modal-close{margin-left:auto;background:none;border:none;color:var(--text-muted);cursor:pointer;padding:4px 8px;border-radius:6px;font-size:14px;transition:all var(--transition)}.radio-modal-close:hover{background:#ffffff14;color:var(--text-normal)}.radio-modal-body{padding:16px;display:flex;flex-direction:column;gap:12px}.radio-modal-stat{display:flex;justify-content:space-between;align-items:center}.radio-modal-label{color:var(--text-muted);font-size:13px}.radio-modal-value{font-weight:600;font-size:13px;display:flex;align-items:center;gap:6px}.radio-modal-dot{width:8px;height:8px;border-radius:50%;flex-shrink:0} +@import"https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap";@import"https://fonts.googleapis.com/icon?family=Material+Icons";.sb-app{--bg-deep: #1a1b1e;--bg-primary: #1e1f22;--bg-secondary: #2b2d31;--bg-tertiary: #313338;--bg-modifier-hover: rgba(79, 84, 92, .16);--bg-modifier-active: rgba(79, 84, 92, .24);--bg-modifier-selected: rgba(79, 84, 92, .32);--text-normal: #dbdee1;--text-muted: #949ba4;--text-faint: #6d6f78;--accent: #5865f2;--accent-rgb: 88, 101, 242;--accent-hover: #4752c4;--accent-glow: rgba(88, 101, 242, .45);--green: #23a55a;--red: #f23f42;--yellow: #f0b232;--white: #ffffff;--font: "DM Sans", "Outfit", "gg sans", "Noto Sans", Whitney, "Helvetica Neue", Helvetica, Arial, sans-serif;--radius: 8px;--radius-lg: 12px;--shadow-low: 0 1px 3px rgba(0, 0, 0, .24);--shadow-med: 0 4px 12px rgba(0, 0, 0, .32);--shadow-high: 0 8px 24px rgba(0, 0, 0, .4);--transition: .15s cubic-bezier(.4, 0, .2, 1);--card-size: 110px;--card-emoji: 28px;--card-font: 11px;color-scheme:dark}.sb-app[data-theme=purple]{--bg-deep: #13111c;--bg-primary: #1a1726;--bg-secondary: #241f35;--bg-tertiary: #2e2845;--accent: #9b59b6;--accent-rgb: 155, 89, 182;--accent-hover: #8e44ad;--accent-glow: rgba(155, 89, 182, .45)}.sb-app[data-theme=forest]{--bg-deep: #0f1a14;--bg-primary: #142119;--bg-secondary: #1c2e22;--bg-tertiary: #253a2c;--accent: #2ecc71;--accent-rgb: 46, 204, 113;--accent-hover: #27ae60;--accent-glow: rgba(46, 204, 113, .4)}.sb-app[data-theme=sunset]{--bg-deep: #1a1210;--bg-primary: #231815;--bg-secondary: #2f201c;--bg-tertiary: #3d2a24;--accent: #e67e22;--accent-rgb: 230, 126, 34;--accent-hover: #d35400;--accent-glow: rgba(230, 126, 34, .4)}.sb-app[data-theme=ocean]{--bg-deep: #0a1628;--bg-primary: #0f1e33;--bg-secondary: #162a42;--bg-tertiary: #1e3652;--accent: #3498db;--accent-rgb: 52, 152, 219;--accent-hover: #2980b9;--accent-glow: rgba(52, 152, 219, .4)}.sb-app{display:flex;flex-direction:column;height:100%;position:relative}.topbar{display:flex;align-items:center;padding:0 20px;height:52px;background:var(--bg-secondary);border-bottom:1px solid rgba(0,0,0,.24);z-index:10;flex-shrink:0;gap:16px;transition:background .4s ease}.topbar-left{display:flex;align-items:center;gap:10px;flex-shrink:0}.sb-app-logo{width:28px;height:28px;background:var(--accent);border-radius:8px;display:flex;align-items:center;justify-content:center;transition:background .4s ease}.sb-app-title{font-size:16px;font-weight:700;color:var(--white);letter-spacing:-.02em}.clock-wrap{flex:1;display:flex;justify-content:center}.clock{font-size:22px;font-weight:700;color:var(--text-normal);letter-spacing:.02em;font-variant-numeric:tabular-nums;opacity:.9}.clock-seconds{font-size:14px;color:var(--text-faint);font-weight:500}.topbar-right{display:flex;align-items:center;gap:6px;flex-shrink:0}.channel-dropdown{position:relative;flex-shrink:0}.channel-btn{display:flex;align-items:center;gap:8px;padding:5px 12px 5px 10px;border:1px solid rgba(255,255,255,.08);border-radius:20px;background:var(--bg-tertiary);color:var(--text-normal);font-family:var(--font);font-size:13px;font-weight:600;cursor:pointer;transition:all var(--transition);white-space:nowrap}.channel-btn:hover{background:var(--bg-modifier-selected);border-color:#ffffff1f}.channel-btn.open{border-color:var(--accent)}.channel-btn .cb-icon{font-size:16px;color:var(--text-muted)}.channel-btn .chevron{font-size:12px;color:var(--text-faint);transition:transform var(--transition);margin-left:2px}.channel-btn.open .chevron{transform:rotate(180deg)}.channel-status{width:6px;height:6px;border-radius:50%;background:var(--green);flex-shrink:0}.channel-menu{position:absolute;top:calc(100% + 6px);left:0;min-width:220px;background:var(--bg-deep);border:1px solid rgba(255,255,255,.08);border-radius:var(--radius);box-shadow:var(--shadow-high);padding:6px;z-index:100;animation:ctx-in .1s ease-out}.channel-menu-header{padding:6px 8px 4px;font-size:10px;font-weight:700;text-transform:uppercase;letter-spacing:.05em;color:var(--text-faint)}.channel-option{display:flex;align-items:center;gap:8px;padding:7px 10px;border-radius:4px;font-size:13px;color:var(--text-muted);cursor:pointer;transition:all var(--transition)}.channel-option:hover{background:var(--bg-modifier-hover);color:var(--text-normal)}.channel-option.active{background:var(--accent);color:var(--white)}.channel-option .co-icon{font-size:16px;opacity:.7}.connection{display:flex;align-items:center;gap:6px;padding:4px 10px;border-radius:20px;background:#23a55a1f;font-size:12px;color:var(--green);font-weight:600}.conn-dot{width:7px;height:7px;border-radius:50%;background:var(--green);box-shadow:0 0 6px #23a55a99;animation:pulse-dot 2s ease-in-out infinite}@keyframes pulse-dot{0%,to{box-shadow:0 0 6px #23a55a80}50%{box-shadow:0 0 12px #23a55acc}}.conn-ping{font-size:10px;opacity:.7;margin-left:2px}.conn-modal-overlay{position:fixed;top:0;right:0;bottom:0;left:0;background:#0000008c;z-index:9000;display:flex;align-items:center;justify-content:center;-webkit-backdrop-filter:blur(4px);backdrop-filter:blur(4px);animation:fadeIn .15s ease}.conn-modal{background:var(--bg-primary);border:1px solid var(--border);border-radius:16px;width:340px;box-shadow:0 20px 60px #0006;overflow:hidden;animation:slideUp .2s ease}@keyframes slideUp{0%{transform:translateY(20px);opacity:0}to{transform:translateY(0);opacity:1}}.conn-modal-header{display:flex;align-items:center;gap:8px;padding:14px 16px;border-bottom:1px solid var(--border);font-weight:700;font-size:14px}.conn-modal-close{margin-left:auto;background:none;border:none;color:var(--muted);cursor:pointer;padding:4px;border-radius:6px;display:flex;transition:all .15s}.conn-modal-close:hover{background:#ffffff14;color:var(--fg)}.conn-modal-body{padding:16px;display:flex;flex-direction:column;gap:12px}.conn-stat{display:flex;justify-content:space-between;align-items:center}.conn-stat-label{color:var(--muted);font-size:13px}.conn-stat-value{font-weight:600;font-size:13px;display:flex;align-items:center;gap:6px}.conn-ping-dot{width:8px;height:8px;border-radius:50%;flex-shrink:0}.admin-btn-icon{width:32px;height:32px;border-radius:8px;display:flex;align-items:center;justify-content:center;color:var(--text-faint);transition:all var(--transition);font-size:18px}.admin-btn-icon:hover{background:var(--bg-modifier-hover);color:var(--text-normal)}.admin-btn-icon.active{color:var(--accent)}.toolbar{display:flex;align-items:center;gap:10px;padding:10px 20px;background:var(--bg-primary);border-bottom:1px solid rgba(0,0,0,.12);flex-shrink:0;flex-wrap:wrap;transition:background .4s ease}.cat-tabs{display:flex;gap:4px;flex-shrink:0}.cat-tab{display:flex;align-items:center;gap:6px;padding:6px 14px;border-radius:20px;background:var(--bg-tertiary);color:var(--text-muted);font-family:var(--font);font-size:13px;font-weight:600;cursor:pointer;transition:all var(--transition);white-space:nowrap}.cat-tab:hover{background:var(--bg-modifier-selected);color:var(--text-normal)}.cat-tab.active{background:var(--accent);color:var(--white)}.tab-count{font-size:10px;font-weight:700;background:#ffffff26;padding:0 6px;border-radius:8px;line-height:1.6}.search-wrap{position:relative;flex:1;max-width:280px;min-width:140px}.search-wrap .search-icon{position:absolute;left:10px;top:50%;transform:translateY(-50%);font-size:15px;color:var(--text-faint);pointer-events:none}.search-input{width:100%;height:32px;padding:0 28px 0 32px;border:1px solid rgba(255,255,255,.06);border-radius:20px;background:var(--bg-secondary);color:var(--text-normal);font-family:var(--font);font-size:13px;outline:none;transition:all var(--transition)}.search-input::placeholder{color:var(--text-faint)}.search-input:focus{border-color:var(--accent);box-shadow:0 0 0 2px var(--accent-glow)}.search-clear{position:absolute;right:6px;top:50%;transform:translateY(-50%);width:20px;height:20px;border-radius:50%;display:flex;align-items:center;justify-content:center;color:var(--text-faint);transition:all var(--transition)}.search-clear:hover{background:var(--bg-tertiary);color:var(--text-normal)}.toolbar-spacer{flex:1}.url-import-wrap{display:flex;align-items:center;gap:6px;min-width:240px;max-width:460px;flex:1;padding:4px 6px 4px 8px;border-radius:20px;background:var(--bg-secondary);border:1px solid rgba(255,255,255,.08)}.url-import-icon{font-size:15px;color:var(--text-faint);flex-shrink:0}.url-import-input{flex:1;min-width:0;height:26px;border:none;background:transparent;color:var(--text-normal);font-size:12px;font-family:var(--font);outline:none}.url-import-input::placeholder{color:var(--text-faint)}.url-import-btn{height:24px;padding:0 10px;border-radius:14px;border:1px solid rgba(var(--accent-rgb, 88, 101, 242),.45);background:rgba(var(--accent-rgb, 88, 101, 242),.12);color:var(--accent);font-size:11px;font-weight:700;white-space:nowrap;transition:all var(--transition)}.url-import-btn:hover{background:var(--accent);border-color:var(--accent);color:var(--white)}.url-import-btn:disabled{opacity:.5;pointer-events:none}.url-import-tag{flex-shrink:0;padding:1px 6px;border-radius:8px;font-size:10px;font-weight:800;letter-spacing:.5px;text-transform:uppercase}.url-import-tag.valid{background:#2ecc712e;color:#2ecc71}.url-import-tag.invalid{background:#e74c3c2e;color:#e74c3c}.tb-btn{display:flex;align-items:center;gap:6px;padding:6px 12px;border:1px solid rgba(255,255,255,.08);border-radius:20px;background:var(--bg-tertiary);color:var(--text-muted);font-family:var(--font);font-size:12px;font-weight:600;cursor:pointer;transition:all var(--transition);white-space:nowrap}.tb-btn:hover{background:var(--bg-modifier-selected);color:var(--text-normal);border-color:#ffffff1f}.tb-btn .tb-icon{font-size:15px}.tb-btn.random{border-color:#5865f24d;color:var(--accent)}.tb-btn.random:hover{background:var(--accent);color:var(--white);border-color:var(--accent)}.tb-btn.party{border-color:#f0b2324d;color:var(--yellow)}.tb-btn.party:hover{background:var(--yellow);color:#1a1b1e;border-color:var(--yellow)}.tb-btn.party.active{background:var(--yellow);color:#1a1b1e;border-color:var(--yellow);animation:party-btn .6s ease-in-out infinite alternate}@keyframes party-btn{0%{box-shadow:0 0 8px #f0b23266}to{box-shadow:0 0 20px #f0b232b3}}.tb-btn.stop{border-color:#f23f424d;color:var(--red)}.tb-btn.stop:hover{background:var(--red);color:var(--white);border-color:var(--red)}.size-control{display:flex;align-items:center;gap:6px;padding:4px 10px;border-radius:20px;background:var(--bg-tertiary);border:1px solid rgba(255,255,255,.06)}.size-control .sc-icon{font-size:14px;color:var(--text-faint)}.size-slider{-webkit-appearance:none;-moz-appearance:none;appearance:none;width:70px;height:3px;border-radius:2px;background:var(--bg-modifier-selected);outline:none;cursor:pointer}.size-slider::-webkit-slider-thumb{-webkit-appearance:none;width:12px;height:12px;border-radius:50%;background:var(--accent);cursor:pointer;transition:transform var(--transition)}.size-slider::-webkit-slider-thumb:hover{transform:scale(1.3)}.size-slider::-moz-range-thumb{width:12px;height:12px;border-radius:50%;background:var(--accent);border:none;cursor:pointer}.theme-selector{display:flex;align-items:center;gap:4px;padding:4px 8px;border-radius:20px;background:var(--bg-tertiary);border:1px solid rgba(255,255,255,.06)}.theme-dot{width:16px;height:16px;border-radius:50%;cursor:pointer;transition:all var(--transition);border:2px solid transparent}.theme-dot:hover{transform:scale(1.2)}.theme-dot.active{border-color:var(--white);box-shadow:0 0 6px #ffffff4d}.analytics-strip{display:flex;align-items:stretch;gap:8px;padding:8px 20px;background:var(--bg-primary);border-bottom:1px solid rgba(0,0,0,.12);flex-shrink:0}.analytics-card{display:flex;align-items:center;gap:8px;padding:8px 12px;border-radius:12px;background:var(--bg-secondary);border:1px solid rgba(255,255,255,.08)}.analytics-card.analytics-wide{flex:1;min-width:0}.analytics-icon{font-size:18px;color:var(--accent);flex-shrink:0}.analytics-copy{display:flex;flex-direction:column;gap:4px;min-width:0}.analytics-label{font-size:10px;font-weight:700;letter-spacing:.04em;text-transform:uppercase;color:var(--text-faint)}.analytics-value{font-size:18px;line-height:1;font-weight:800;color:var(--text-normal)}.analytics-top-list{display:flex;align-items:center;gap:6px;overflow-x:auto;scrollbar-width:none}.analytics-top-list::-webkit-scrollbar{display:none}.analytics-chip{display:inline-flex;align-items:center;gap:4px;padding:3px 8px;border-radius:999px;background:rgba(var(--accent-rgb, 88, 101, 242),.15);color:var(--accent);font-size:11px;font-weight:600;white-space:nowrap}.analytics-muted{color:var(--text-muted);font-size:12px}.category-strip{display:flex;align-items:center;gap:6px;padding:8px 20px;background:var(--bg-primary);border-bottom:1px solid rgba(0,0,0,.12);overflow-x:auto;flex-shrink:0;scrollbar-width:none;transition:background .4s ease}.category-strip::-webkit-scrollbar{display:none}.cat-chip{display:inline-flex;align-items:center;gap:6px;padding:4px 12px;border-radius:20px;font-size:12px;font-weight:600;color:var(--text-muted);background:var(--bg-secondary);border:1px solid rgba(255,255,255,.06);white-space:nowrap;cursor:pointer;transition:all var(--transition);flex-shrink:0}.cat-chip:hover{border-color:#ffffff1f;color:var(--text-normal);background:var(--bg-tertiary)}.cat-chip.active{background:#5865f21a}.cat-dot{width:8px;height:8px;border-radius:50%;flex-shrink:0}.cat-count{font-size:10px;font-weight:700;opacity:.5}.main{flex:1;overflow-y:auto;padding:16px 20px;background:var(--bg-primary);transition:background .4s ease}.sound-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(var(--card-size),1fr));gap:8px}.sound-card{position:relative;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:3px;padding:12px 6px 8px;background:var(--bg-secondary);border-radius:var(--radius-lg);cursor:pointer;transition:all var(--transition);border:2px solid transparent;-webkit-user-select:none;user-select:none;overflow:hidden;aspect-ratio:1;opacity:0;animation:card-enter .35s ease-out forwards}.sound-card:before{content:"";position:absolute;top:0;right:0;bottom:0;left:0;border-radius:inherit;opacity:0;transition:opacity var(--transition);background:radial-gradient(ellipse at center,var(--accent-glow) 0%,transparent 70%);pointer-events:none}.sound-card:hover{background:var(--bg-tertiary);transform:translateY(-3px);box-shadow:var(--shadow-med),0 0 20px var(--accent-glow);border-color:#5865f233}.sound-card:hover:before{opacity:1}.sound-card:active{transform:translateY(0);transition-duration:50ms}.sound-card.playing{border-color:var(--accent);animation:card-enter .35s ease-out forwards,playing-glow 1.2s ease-in-out infinite alternate}@keyframes playing-glow{0%{box-shadow:0 0 4px var(--accent-glow)}to{box-shadow:0 0 16px var(--accent-glow)}}@keyframes card-enter{0%{opacity:0;transform:translateY(10px) scale(.97)}to{opacity:1;transform:translateY(0) scale(1)}}.ripple{position:absolute;border-radius:50%;background:#5865f24d;transform:scale(0);animation:ripple-expand .5s ease-out forwards;pointer-events:none}@keyframes ripple-expand{to{transform:scale(3);opacity:0}}.sound-emoji{font-size:var(--card-emoji);font-weight:800;line-height:1;z-index:1;transition:transform var(--transition);opacity:.7;font-family:Syne,DM Sans,sans-serif}.sound-card:hover .sound-emoji{transform:scale(1.15);opacity:1}.sound-card.playing .sound-emoji{animation:emoji-bounce .4s ease;opacity:1}@keyframes emoji-bounce{0%,to{transform:scale(1)}40%{transform:scale(1.3)}70%{transform:scale(.95)}}.sound-name{font-size:var(--card-font);font-weight:600;text-align:center;color:var(--text-normal);z-index:1;max-width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;padding:0 4px}.sound-duration{font-size:9px;color:var(--text-faint);z-index:1;font-weight:500}.fav-star{position:absolute;top:4px;right:4px;opacity:0;transition:all var(--transition);cursor:pointer;z-index:2;color:var(--text-faint);padding:2px;line-height:1}.fav-star .fav-icon{font-size:14px}.sound-card:hover .fav-star{opacity:.6}.fav-star:hover{opacity:1!important;color:var(--yellow);transform:scale(1.2)}.fav-star.active{opacity:1!important;color:var(--yellow)}.new-badge{position:absolute;top:4px;left:4px;font-size:8px;font-weight:700;background:var(--green);color:#fff;padding:1px 5px;border-radius:6px;text-transform:uppercase;letter-spacing:.03em;z-index:2}.playing-indicator{position:absolute;bottom:3px;left:50%;transform:translate(-50%);display:none;gap:2px;align-items:flex-end;height:10px}.sound-card.playing .playing-indicator{display:flex}.wave-bar{width:2px;background:var(--accent);border-radius:1px;animation:wave .6s ease-in-out infinite alternate}.wave-bar:nth-child(1){height:3px;animation-delay:0ms}.wave-bar:nth-child(2){height:7px;animation-delay:.15s}.wave-bar:nth-child(3){height:5px;animation-delay:.3s}.wave-bar:nth-child(4){height:9px;animation-delay:.1s}@keyframes wave{0%{height:2px}to{height:10px}}.empty-state{display:none;flex-direction:column;align-items:center;justify-content:center;gap:10px;padding:60px 20px;text-align:center}.empty-state.visible{display:flex}.empty-emoji{font-size:42px}.empty-title{font-size:15px;font-weight:700;color:var(--text-normal)}.empty-desc{font-size:13px;color:var(--text-muted);max-width:260px}.now-playing{display:flex;align-items:center;gap:6px;padding:4px 12px;border-radius:20px;background:rgba(var(--accent-rgb, 88, 101, 242),.12);border:1px solid rgba(var(--accent-rgb, 88, 101, 242),.2);font-size:12px;color:var(--text-muted);max-width:none;min-width:0;animation:np-fade-in .3s ease}@keyframes np-fade-in{0%{opacity:0;transform:translate(10px)}to{opacity:1;transform:translate(0)}}.np-name{color:var(--accent);font-weight:600;white-space:nowrap}.np-waves{display:none;gap:1.5px;align-items:flex-end;height:12px;flex-shrink:0}.np-waves.active{display:flex}.np-wave-bar{width:2px;background:var(--accent);border-radius:1px;animation:wave .5s ease-in-out infinite alternate}.np-wave-bar:nth-child(1){height:3px;animation-delay:0ms}.np-wave-bar:nth-child(2){height:8px;animation-delay:.12s}.np-wave-bar:nth-child(3){height:5px;animation-delay:.24s}.np-wave-bar:nth-child(4){height:10px;animation-delay:80ms}.volume-control{display:flex;align-items:center;gap:6px;padding:4px 10px;border-radius:20px;background:var(--bg-tertiary);border:1px solid rgba(255,255,255,.06)}.vol-icon{font-size:16px;color:var(--text-faint);cursor:pointer;transition:color var(--transition);-webkit-user-select:none;user-select:none}.vol-icon:hover{color:var(--text-normal)}.vol-slider{-webkit-appearance:none;-moz-appearance:none;appearance:none;width:80px;height:3px;border-radius:2px;background:linear-gradient(to right,var(--accent) 0%,var(--accent) var(--vol, 80%),var(--bg-modifier-selected) var(--vol, 80%));outline:none;cursor:pointer}.vol-slider::-webkit-slider-thumb{-webkit-appearance:none;width:12px;height:12px;border-radius:50%;background:var(--accent);cursor:pointer;transition:transform var(--transition)}.vol-slider::-webkit-slider-thumb:hover{transform:scale(1.3)}.vol-slider::-moz-range-thumb{width:12px;height:12px;border-radius:50%;background:var(--accent);border:none;cursor:pointer}.vol-pct{font-size:11px;color:var(--text-faint);min-width:28px;text-align:right;font-variant-numeric:tabular-nums}.party-overlay{position:fixed;top:0;right:0;bottom:0;left:0;pointer-events:none;z-index:50;opacity:0;transition:opacity .3s ease}.party-overlay.active{opacity:1;animation:party-hue 2s linear infinite}.party-overlay:before{content:"";position:absolute;top:0;right:0;bottom:0;left:0;background:linear-gradient(45deg,#ff00000a,#00ff000a,#0000ff0a,#ffff000a);background-size:400% 400%;animation:party-grad 3s ease infinite}@keyframes party-grad{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}@keyframes party-hue{to{filter:hue-rotate(360deg)}}.ctx-menu{position:fixed;min-width:160px;background:var(--bg-deep);border:1px solid rgba(255,255,255,.06);border-radius:var(--radius);box-shadow:var(--shadow-high);padding:4px;z-index:1000;animation:ctx-in .1s ease-out}@keyframes ctx-in{0%{opacity:0;transform:scale(.96) translateY(-4px)}to{opacity:1;transform:scale(1) translateY(0)}}.ctx-item{display:flex;align-items:center;gap:8px;padding:6px 10px;border-radius:4px;font-size:13px;color:var(--text-normal);cursor:pointer;transition:all var(--transition)}.ctx-item:hover{background:var(--accent);color:var(--white)}.ctx-item.danger{color:var(--red)}.ctx-item.danger:hover{background:var(--red);color:var(--white)}.ctx-item .ctx-icon{font-size:15px}.ctx-sep{height:1px;background:#ffffff0f;margin:3px 8px}.toast{position:fixed;bottom:64px;left:50%;transform:translate(-50%);padding:10px 20px;border-radius:20px;font-size:13px;font-weight:600;z-index:100;display:flex;align-items:center;gap:8px;box-shadow:var(--shadow-high);animation:toast-in .3s cubic-bezier(.175,.885,.32,1.275);pointer-events:none}.toast .toast-icon{font-size:16px}.toast.error{background:var(--red);color:#fff}.toast.info{background:var(--green);color:#fff}@keyframes toast-in{0%{transform:translate(-50%,16px);opacity:0}to{transform:translate(-50%);opacity:1}}.admin-overlay{position:fixed;top:0;right:0;bottom:0;left:0;background:#0009;backdrop-filter:blur(8px);-webkit-backdrop-filter:blur(8px);z-index:60;display:flex;align-items:center;justify-content:center;animation:fade-in .2s ease}.admin-panel{background:var(--bg-secondary);border:1px solid rgba(255,255,255,.08);border-radius:var(--radius-lg);padding:28px;width:92%;max-width:920px;max-height:min(88vh,860px);display:flex;flex-direction:column;box-shadow:var(--shadow-high)}.admin-panel h3{font-size:18px;font-weight:700;margin-bottom:16px;display:flex;align-items:center;justify-content:space-between;flex-shrink:0}.admin-close{width:28px;height:28px;border-radius:6px;display:flex;align-items:center;justify-content:center;color:var(--text-muted);transition:all var(--transition)}.admin-close:hover{background:var(--bg-tertiary);color:var(--text-normal)}.admin-field{margin-bottom:16px}.admin-field label{display:block;font-size:12px;font-weight:600;color:var(--text-muted);margin-bottom:6px;text-transform:uppercase;letter-spacing:.5px}.admin-field input{width:100%;background:var(--bg-tertiary);border:1px solid rgba(255,255,255,.08);border-radius:8px;padding:10px 12px;font-size:14px;color:var(--text-normal);font-family:var(--font);transition:all var(--transition)}.admin-field input:focus{outline:none;border-color:var(--accent);box-shadow:0 0 0 2px var(--accent-glow)}.admin-btn-action{padding:10px 20px;border-radius:8px;font-size:13px;font-weight:600;font-family:var(--font);cursor:pointer;transition:all var(--transition);line-height:1}.admin-btn-action.primary{background:var(--accent);color:#fff;border:none}.admin-btn-action.primary:hover{background:var(--accent-hover)}.admin-btn-action.outline{background:transparent;border:1px solid rgba(255,255,255,.08);color:var(--text-muted)}.admin-btn-action.outline:hover{border-color:#ffffff1f;color:var(--text-normal)}.admin-btn-action.danger{background:var(--red);color:var(--white);border:1px solid var(--red)}.admin-btn-action.danger:hover{filter:brightness(1.06)}.admin-btn-action.danger.ghost{background:transparent;color:var(--red);border:1px solid rgba(242,63,66,.5)}.admin-btn-action.danger.ghost:hover{background:#f23f4224}.admin-btn-action:disabled{opacity:.5;pointer-events:none}.admin-shell{display:flex;flex-direction:column;gap:12px;min-height:0}.admin-header-row{display:flex;align-items:center;justify-content:space-between;gap:10px;flex-wrap:wrap}.admin-status{font-size:13px;color:var(--text-muted)}.admin-actions-inline{display:flex;align-items:center;gap:8px}.admin-search-field{margin-bottom:0}.admin-bulk-row{display:flex;align-items:center;justify-content:space-between;gap:10px;padding:8px 10px;border-radius:10px;background:var(--bg-tertiary);border:1px solid rgba(255,255,255,.08);flex-wrap:wrap}.admin-select-all{display:inline-flex;align-items:center;gap:8px;font-size:12px;color:var(--text-muted)}.admin-select-all input,.admin-item-check input{accent-color:var(--accent)}.admin-list-wrap{min-height:260px;max-height:52vh;overflow-y:auto;border:1px solid rgba(255,255,255,.08);border-radius:10px;background:var(--bg-primary)}.admin-list{display:flex;flex-direction:column;gap:6px;padding:6px}.admin-empty{padding:24px 12px;text-align:center;color:var(--text-muted);font-size:13px}.admin-item{display:grid;grid-template-columns:28px minmax(0,1fr) auto;gap:10px;align-items:center;padding:10px;border-radius:8px;background:var(--bg-secondary);border:1px solid rgba(255,255,255,.06)}.admin-item-main{min-width:0}.admin-item-name{font-size:14px;font-weight:600;color:var(--text-normal);overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.admin-item-meta{margin-top:3px;font-size:11px;color:var(--text-faint);overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.admin-item-actions{display:flex;align-items:center;gap:6px}.admin-item-actions .admin-btn-action,.admin-rename-row .admin-btn-action{padding:8px 12px;font-size:12px}.admin-rename-row{display:flex;align-items:center;gap:6px;margin-top:8px}.admin-rename-row input{flex:1;min-width:120px;background:var(--bg-tertiary);border:1px solid rgba(255,255,255,.08);border-radius:8px;padding:8px 10px;font-size:13px;color:var(--text-normal);font-family:var(--font);transition:all var(--transition)}.admin-rename-row input:focus{outline:none;border-color:var(--accent);box-shadow:0 0 0 2px var(--accent-glow)}@media(max-width:700px){.toolbar{gap:6px;padding:8px 12px}.cat-tabs{overflow-x:auto;scrollbar-width:none}.cat-tabs::-webkit-scrollbar{display:none}.search-wrap,.url-import-wrap{max-width:100%;min-width:100%;order:-1}.size-control,.theme-selector{display:none}.main{padding:12px}.topbar{padding:0 12px;gap:8px}.channel-label{max-width:100px;overflow:hidden;text-overflow:ellipsis}.clock{font-size:16px}.clock-seconds{font-size:11px}.tb-btn span:not(.tb-icon){display:none}.analytics-strip{padding:8px 12px;flex-direction:column;gap:6px}.analytics-card.analytics-wide{width:100%}.admin-panel{width:96%;padding:16px;max-height:92vh}.admin-item{grid-template-columns:24px minmax(0,1fr)}.admin-item-actions{grid-column:1 / -1;justify-content:flex-end}.admin-rename-row{flex-wrap:wrap}}@media(max-width:480px){.connection,.sb-app-title{display:none}.now-playing{max-width:none}.toolbar .tb-btn{padding:6px 8px}.url-import-btn{padding:0 8px}}.drop-overlay{position:fixed;top:0;right:0;bottom:0;left:0;background:#000000c7;backdrop-filter:blur(6px);-webkit-backdrop-filter:blur(6px);z-index:300;display:flex;align-items:center;justify-content:center;animation:fade-in .12s ease;pointer-events:none}.drop-zone{display:flex;flex-direction:column;align-items:center;gap:14px;padding:64px 72px;border-radius:24px;border:2.5px dashed rgba(var(--accent-rgb),.55);background:rgba(var(--accent-rgb),.07);animation:drop-pulse 2.2s ease-in-out infinite}@keyframes drop-pulse{0%,to{border-color:rgba(var(--accent-rgb),.45);box-shadow:0 0 rgba(var(--accent-rgb),0)}50%{border-color:rgba(var(--accent-rgb),.9);box-shadow:0 0 60px 12px rgba(var(--accent-rgb),.12)}}.drop-icon{font-size:64px;color:var(--accent);animation:drop-bounce 1.8s ease-in-out infinite}@keyframes drop-bounce{0%,to{transform:translateY(0)}50%{transform:translateY(-8px)}}.drop-title{font-size:22px;font-weight:700;color:var(--text-normal);letter-spacing:-.3px}.drop-sub{font-size:13px;color:var(--text-muted)}.upload-queue{position:fixed;bottom:24px;right:24px;width:340px;background:var(--bg-secondary);border:1px solid rgba(255,255,255,.09);border-radius:14px;box-shadow:0 8px 40px #00000073;z-index:200;animation:slide-up .2s cubic-bezier(.16,1,.3,1)}@keyframes slide-up{0%{opacity:0;transform:translateY(16px)}to{opacity:1;transform:translateY(0)}}.uq-header{display:flex;align-items:center;gap:8px;padding:12px 14px;background:rgba(var(--accent-rgb),.12);border-bottom:1px solid rgba(255,255,255,.06);font-size:13px;font-weight:600;color:var(--text-normal)}.uq-header .material-icons{color:var(--accent)}.uq-close{margin-left:auto;display:flex;align-items:center;justify-content:center;width:22px;height:22px;border-radius:50%;border:none;background:#ffffff0f;color:var(--text-muted);cursor:pointer;transition:background var(--transition),color var(--transition)}.uq-close:hover{background:#ffffff24;color:var(--text-normal)}.uq-list{display:flex;flex-direction:column;max-height:260px;overflow-y:auto;padding:6px 0}.uq-item{display:grid;grid-template-columns:20px 1fr auto 18px;align-items:center;gap:8px;padding:8px 14px;position:relative}.uq-item+.uq-item{border-top:1px solid rgba(255,255,255,.04)}.uq-file-icon{font-size:18px;color:var(--text-faint)}.uq-info{min-width:0}.uq-name{font-size:12px;font-weight:500;color:var(--text-normal);white-space:nowrap;text-overflow:ellipsis}.uq-size{font-size:10px;color:var(--text-faint);margin-top:1px}.uq-progress-wrap{grid-column:1 / -1;height:3px;background:#ffffff12;border-radius:2px;margin-top:4px}.uq-item{flex-wrap:wrap}.uq-progress-wrap{width:100%;order:10}.uq-progress-bar{height:100%;background:var(--accent);border-radius:2px;transition:width .12s ease}.uq-status-icon{font-size:16px}.uq-status-waiting .uq-status-icon{color:var(--text-faint)}.uq-status-uploading .uq-status-icon{color:var(--accent);animation:spin 1s linear infinite}.uq-status-done .uq-status-icon{color:var(--green)}.uq-status-error .uq-status-icon{color:var(--red)}.uq-error{grid-column:2 / -1;font-size:10px;color:var(--red);margin-top:2px}.dl-modal-overlay{position:fixed;top:0;right:0;bottom:0;left:0;background:#0000008c;display:flex;align-items:center;justify-content:center;z-index:300;animation:fade-in .15s ease}@keyframes fade-in{0%{opacity:0}to{opacity:1}}.dl-modal{width:420px;max-width:92vw;background:var(--bg-secondary);border:1px solid rgba(255,255,255,.1);border-radius:16px;box-shadow:0 12px 60px #00000080;animation:scale-in .2s cubic-bezier(.16,1,.3,1)}@keyframes scale-in{0%{opacity:0;transform:scale(.95)}to{opacity:1;transform:scale(1)}}.dl-modal-header{display:flex;align-items:center;gap:8px;padding:14px 16px;border-bottom:1px solid rgba(255,255,255,.06);font-size:14px;font-weight:700;color:var(--text-normal)}.dl-modal-header .material-icons{color:var(--accent)}.dl-modal-close{margin-left:auto;display:flex;align-items:center;justify-content:center;width:26px;height:26px;border-radius:50%;border:none;background:#ffffff0f;color:var(--text-muted);cursor:pointer;transition:background var(--transition)}.dl-modal-close:hover{background:#ffffff24;color:var(--text-normal)}.dl-modal-body{padding:16px;display:flex;flex-direction:column;gap:14px}.dl-modal-url{display:flex;align-items:center;gap:8px;padding:8px 10px;border-radius:8px;background:#0003;overflow:hidden}.dl-modal-tag{flex-shrink:0;padding:2px 8px;border-radius:6px;font-size:10px;font-weight:800;letter-spacing:.5px;text-transform:uppercase}.dl-modal-tag.youtube{background:#ff00002e;color:#f44}.dl-modal-tag.instagram{background:#e1306c2e;color:#e1306c}.dl-modal-tag.mp3{background:#2ecc712e;color:#2ecc71}.dl-modal-url-text{font-size:11px;color:var(--text-faint);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.dl-modal-field{display:flex;flex-direction:column;gap:5px}.dl-modal-label{font-size:11px;font-weight:600;color:var(--text-muted);text-transform:uppercase;letter-spacing:.5px}.dl-modal-input-wrap{display:flex;align-items:center;border:1px solid rgba(255,255,255,.1);border-radius:8px;background:#00000026;overflow:hidden;transition:border-color var(--transition)}.dl-modal-input-wrap:focus-within{border-color:var(--accent)}.dl-modal-input{flex:1;border:none;background:transparent;padding:8px 10px;color:var(--text-normal);font-size:13px;font-family:var(--font);outline:none}.dl-modal-input::placeholder{color:var(--text-faint)}.dl-modal-ext{padding:0 10px;font-size:12px;font-weight:600;color:var(--text-faint);background:#ffffff0a;align-self:stretch;display:flex;align-items:center}.dl-modal-hint{font-size:10px;color:var(--text-faint)}.dl-modal-progress{display:flex;align-items:center;gap:12px;padding:20px 0;justify-content:center;font-size:13px;color:var(--text-muted)}.dl-modal-spinner{width:24px;height:24px;border-radius:50%;border:3px solid rgba(var(--accent-rgb),.2);border-top-color:var(--accent);animation:spin .8s linear infinite}.dl-modal-success{display:flex;align-items:center;gap:10px;padding:16px 0;justify-content:center;font-size:13px;color:var(--text-normal)}.dl-modal-check{color:#2ecc71;font-size:28px}.dl-modal-error{display:flex;align-items:center;gap:10px;padding:12px 0;justify-content:center;font-size:13px;color:#e74c3c}.dl-modal-actions{display:flex;justify-content:flex-end;gap:8px;padding:0 16px 14px}.dl-modal-cancel{padding:7px 14px;border-radius:8px;border:1px solid rgba(255,255,255,.1);background:transparent;color:var(--text-muted);font-size:12px;font-weight:600;cursor:pointer;transition:all var(--transition)}.dl-modal-cancel:hover{background:#ffffff0f;color:var(--text-normal)}.dl-modal-submit{display:flex;align-items:center;gap:5px;padding:7px 16px;border-radius:8px;border:none;background:var(--accent);color:#fff;font-size:12px;font-weight:700;cursor:pointer;transition:filter var(--transition)}.dl-modal-submit:hover{filter:brightness(1.15)}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}.lol-container{max-width:920px;margin:0 auto;padding:16px;height:100%;overflow-y:auto}.lol-search{display:flex;gap:8px;margin-bottom:12px}.lol-search-input{flex:1;min-width:0;padding:10px 14px;border:1px solid var(--bg-tertiary);border-radius:8px;background:var(--bg-secondary);color:var(--text-normal);font-size:15px;outline:none;transition:border-color .2s}.lol-search-input:focus{border-color:var(--accent)}.lol-search-input::placeholder{color:var(--text-faint)}.lol-search-region{padding:10px 12px;border:1px solid var(--bg-tertiary);border-radius:8px;background:var(--bg-secondary);color:var(--text-normal);font-size:14px;cursor:pointer;outline:none}.lol-search-btn{padding:10px 20px;border:none;border-radius:8px;background:var(--accent);color:#fff;font-weight:600;font-size:14px;cursor:pointer;transition:opacity .2s;white-space:nowrap}.lol-search-btn:hover{opacity:.85}.lol-search-btn:disabled{opacity:.4;cursor:not-allowed}.lol-recent{display:flex;gap:6px;flex-wrap:wrap;margin-bottom:16px}.lol-recent-chip{display:flex;align-items:center;gap:6px;padding:4px 10px;border:1px solid var(--bg-tertiary);border-radius:16px;background:var(--bg-secondary);color:var(--text-muted);font-size:12px;cursor:pointer;transition:border-color .2s,color .2s}.lol-recent-chip:hover{border-color:var(--accent);color:var(--text-normal)}.lol-recent-chip img{width:18px;height:18px;border-radius:50%}.lol-recent-tier{font-size:10px;font-weight:600;opacity:.7;text-transform:uppercase}.lol-profile{display:flex;align-items:center;gap:16px;padding:16px;border-radius:12px;background:var(--bg-secondary);margin-bottom:12px}.lol-profile-icon{width:72px;height:72px;border-radius:12px;border:2px solid var(--bg-tertiary);object-fit:cover}.lol-profile-info h2{margin:0 0 2px;font-size:20px;color:var(--text-normal)}.lol-profile-info h2 span{color:var(--text-faint);font-weight:400;font-size:14px}.lol-profile-level{font-size:12px;color:var(--text-muted)}.lol-profile-ladder{font-size:11px;color:var(--text-faint)}.lol-profile-updated{font-size:10px;color:var(--text-faint);margin-top:2px}.lol-profile-info{flex:1;min-width:0}.lol-update-btn{display:flex;align-items:center;gap:6px;padding:8px 16px;border:1px solid var(--bg-tertiary);border-radius:8px;background:var(--bg-primary);color:var(--text-muted);font-size:13px;font-weight:500;cursor:pointer;transition:border-color .2s,color .2s,background .2s;white-space:nowrap;flex-shrink:0}.lol-update-btn:hover{border-color:var(--accent);color:var(--text-normal)}.lol-update-btn:disabled{opacity:.6;cursor:not-allowed}.lol-update-btn.renewing{border-color:var(--accent);color:var(--accent)}.lol-update-icon{font-size:16px;display:inline-block}.lol-update-btn.renewing .lol-update-icon{animation:lol-spin 1s linear infinite}.lol-ranked-row{display:flex;gap:10px;margin-bottom:12px}.lol-ranked-card{flex:1;padding:12px 14px;border-radius:10px;background:var(--bg-secondary);border-left:4px solid var(--bg-tertiary)}.lol-ranked-card.has-rank{border-left-color:var(--tier-color, var(--accent))}.lol-ranked-type{font-size:11px;color:var(--text-faint);text-transform:uppercase;letter-spacing:.5px;margin-bottom:4px}.lol-ranked-tier{font-size:18px;font-weight:700;color:var(--tier-color, var(--text-normal))}.lol-ranked-lp{font-size:13px;color:var(--text-muted);margin-left:4px;font-weight:400}.lol-ranked-record{font-size:12px;color:var(--text-muted);margin-top:2px}.lol-ranked-wr{color:var(--text-faint);margin-left:4px}.lol-ranked-streak{color:#e74c3c;font-size:11px;margin-left:4px}.lol-section-title{font-size:13px;font-weight:600;color:var(--text-muted);text-transform:uppercase;letter-spacing:.5px;margin:16px 0 8px;padding-left:2px}.lol-champs{display:flex;gap:8px;margin-bottom:12px;overflow-x:auto;padding-bottom:4px}.lol-champ-card{display:flex;align-items:center;gap:8px;padding:8px 12px;border-radius:8px;background:var(--bg-secondary);min-width:180px;flex-shrink:0}.lol-champ-icon{width:36px;height:36px;border-radius:50%;object-fit:cover}.lol-champ-name{font-size:13px;font-weight:600;color:var(--text-normal)}.lol-champ-stats{font-size:11px;color:var(--text-muted)}.lol-champ-kda{font-size:11px;color:var(--text-faint)}.lol-matches{display:flex;flex-direction:column;gap:6px}.lol-match{display:flex;align-items:center;gap:10px;padding:10px 12px;border-radius:8px;background:var(--bg-secondary);border-left:4px solid var(--bg-tertiary);cursor:pointer;transition:background .15s}.lol-match:hover{background:var(--bg-tertiary)}.lol-match.win{border-left-color:#2ecc71}.lol-match.loss{border-left-color:#e74c3c}.lol-match-result{width:28px;font-size:11px;font-weight:700;text-align:center;flex-shrink:0}.lol-match.win .lol-match-result{color:#2ecc71}.lol-match.loss .lol-match-result{color:#e74c3c}.lol-match-champ{position:relative;flex-shrink:0}.lol-match-champ img{width:40px;height:40px;border-radius:50%;display:block}.lol-match-champ-level{position:absolute;bottom:-2px;right:-2px;background:var(--bg-deep);color:var(--text-muted);font-size:9px;font-weight:700;width:16px;height:16px;border-radius:50%;display:flex;align-items:center;justify-content:center}.lol-match-kda{min-width:80px;text-align:center;flex-shrink:0}.lol-match-kda-nums{font-size:14px;font-weight:600;color:var(--text-normal)}.lol-match-kda-ratio{font-size:11px;color:var(--text-faint)}.lol-match-kda-ratio.perfect{color:#f39c12}.lol-match-kda-ratio.great{color:#2ecc71}.lol-match-stats{display:flex;flex-direction:column;gap:1px;min-width:70px;flex-shrink:0}.lol-match-stats span{font-size:11px;color:var(--text-muted)}.lol-match-items{display:flex;gap:2px;flex-shrink:0}.lol-match-items img,.lol-match-item-empty{width:24px;height:24px;border-radius:4px;background:var(--bg-deep)}.lol-match-meta{margin-left:auto;text-align:right;flex-shrink:0}.lol-match-duration{font-size:12px;color:var(--text-muted)}.lol-match-queue,.lol-match-ago{font-size:10px;color:var(--text-faint)}.lol-match-detail{background:var(--bg-primary);border-radius:8px;padding:8px;margin-top:4px;margin-bottom:4px}.lol-match-detail-team{margin-bottom:6px}.lol-match-detail-team-header{font-size:11px;font-weight:600;padding:4px 8px;border-radius:4px;margin-bottom:4px}.lol-match-detail-team-header.win{background:#2ecc7126;color:#2ecc71}.lol-match-detail-team-header.loss{background:#e74c3c26;color:#e74c3c}.lol-detail-row{display:flex;align-items:center;gap:8px;padding:3px 8px;border-radius:4px;font-size:12px;color:var(--text-muted)}.lol-detail-row:hover{background:var(--bg-secondary)}.lol-detail-row.me{background:#ffffff0a;font-weight:600}.lol-detail-champ{width:24px;height:24px;border-radius:50%}.lol-detail-name{width:110px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;color:var(--text-normal)}.lol-detail-kda{width:70px;text-align:center}.lol-detail-cs{width:45px;text-align:center}.lol-detail-dmg,.lol-detail-gold{width:55px;text-align:center}.lol-detail-items{display:flex;gap:1px}.lol-detail-items img{width:20px;height:20px;border-radius:3px}.lol-loading{display:flex;align-items:center;justify-content:center;gap:10px;padding:40px;color:var(--text-muted);font-size:14px}.lol-spinner{width:20px;height:20px;border:2px solid var(--bg-tertiary);border-top-color:var(--accent);border-radius:50%;animation:lol-spin .8s linear infinite}@keyframes lol-spin{to{transform:rotate(360deg)}}.lol-error{padding:16px;border-radius:8px;background:#e74c3c1a;color:#e74c3c;font-size:13px;text-align:center;margin-bottom:12px}.lol-empty{text-align:center;padding:60px 20px;color:var(--text-faint)}.lol-empty-icon{font-size:48px;margin-bottom:12px}.lol-empty h3{margin:0 0 8px;color:var(--text-muted);font-size:16px}.lol-empty p{margin:0;font-size:13px}.lol-load-more{display:block;width:100%;padding:10px;margin-top:8px;border:1px solid var(--bg-tertiary);border-radius:8px;background:transparent;color:var(--text-muted);font-size:13px;cursor:pointer;transition:border-color .2s,color .2s}.lol-load-more:hover{border-color:var(--accent);color:var(--text-normal)}@media(max-width:640px){.lol-search{flex-wrap:wrap}.lol-search-input{width:100%}.lol-match{flex-wrap:wrap;gap:6px}.lol-match-meta{margin-left:0;text-align:left}.lol-match-items,.lol-profile{flex-wrap:wrap}}.stream-container{height:100%;overflow-y:auto;padding:16px}.stream-topbar{display:flex;align-items:center;gap:10px;margin-bottom:16px;flex-wrap:wrap}.stream-input{padding:10px 14px;border:1px solid var(--bg-tertiary);border-radius:var(--radius);background:var(--bg-secondary);color:var(--text-normal);font-size:14px;outline:none;transition:border-color var(--transition);min-width:0}.stream-input:focus{border-color:var(--accent)}.stream-input::placeholder{color:var(--text-faint)}.stream-input-name{width:150px}.stream-input-title{flex:1;min-width:180px}.stream-btn{padding:10px 20px;border:none;border-radius:var(--radius);background:var(--accent);color:#fff;font-weight:600;font-size:14px;cursor:pointer;transition:background var(--transition);white-space:nowrap;display:flex;align-items:center;gap:6px}.stream-btn:hover{background:var(--accent-hover)}.stream-btn:disabled{opacity:.5;cursor:not-allowed}.stream-btn-stop{background:var(--danger)}.stream-btn-stop:hover{background:#c93b3e}.stream-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(280px,1fr));gap:16px}.stream-tile{background:var(--bg-secondary);border-radius:var(--radius-lg);overflow:hidden;cursor:pointer;transition:transform var(--transition),box-shadow var(--transition);position:relative}.stream-tile:hover{transform:translateY(-2px);box-shadow:0 4px 20px #0006}.stream-tile.own{border:2px solid var(--accent)}.stream-tile-preview{position:relative;width:100%;padding-top:56.25%;background:var(--bg-deep);overflow:hidden}.stream-tile-preview video{position:absolute;top:0;left:0;width:100%;height:100%;object-fit:cover}.stream-tile-preview .stream-tile-icon{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);font-size:48px;opacity:.3}.stream-live-badge{position:absolute;top:8px;left:8px;background:var(--danger);color:#fff;font-size:11px;font-weight:700;padding:2px 8px;border-radius:4px;letter-spacing:.5px;display:flex;align-items:center;gap:4px}.stream-live-dot{width:6px;height:6px;border-radius:50%;background:#fff;animation:stream-pulse 1.5s ease-in-out infinite}@keyframes stream-pulse{0%,to{opacity:1}50%{opacity:.3}}.stream-tile-viewers{position:absolute;top:8px;right:8px;background:#0009;color:#fff;font-size:12px;padding:2px 8px;border-radius:4px;display:flex;align-items:center;gap:4px}.stream-tile-info{padding:10px 12px;display:flex;align-items:center;justify-content:space-between;gap:8px}.stream-tile-meta{min-width:0;flex:1}.stream-tile-name{font-size:14px;font-weight:600;color:var(--text-normal);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.stream-tile-title{font-size:12px;color:var(--text-muted);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.stream-tile-time{font-size:12px;color:var(--text-faint);white-space:nowrap}.stream-tile-menu-wrap{position:relative}.stream-tile-menu{background:none;border:none;color:var(--text-muted);cursor:pointer;padding:4px 6px;font-size:18px;line-height:1;border-radius:4px;transition:background var(--transition)}.stream-tile-menu:hover{background:var(--bg-tertiary);color:var(--text-normal)}.stream-tile-dropdown{position:absolute;bottom:calc(100% + 6px);right:0;background:var(--bg-secondary);border:1px solid var(--bg-tertiary);border-radius:var(--radius-lg);min-width:220px;z-index:100;box-shadow:0 8px 24px #0006;overflow:hidden}.stream-tile-dropdown-header{padding:12px 14px}.stream-tile-dropdown-name{font-size:14px;font-weight:600;color:var(--text-normal)}.stream-tile-dropdown-title{font-size:12px;color:var(--text-muted);margin-top:2px}.stream-tile-dropdown-detail{font-size:11px;color:var(--text-faint);margin-top:6px}.stream-tile-dropdown-divider{height:1px;background:var(--bg-tertiary)}.stream-tile-dropdown-item{display:flex;align-items:center;gap:8px;width:100%;padding:10px 14px;border:none;background:none;color:var(--text-normal);font-size:13px;cursor:pointer;text-align:left;transition:background var(--transition)}.stream-tile-dropdown-item:hover{background:var(--bg-tertiary)}.stream-viewer-overlay{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1000;background:#000;display:flex;flex-direction:column}.stream-viewer-header{display:flex;align-items:center;justify-content:space-between;padding:12px 16px;background:#000c;color:#fff;z-index:1}.stream-viewer-header-left{display:flex;align-items:center;gap:12px}.stream-viewer-title{font-weight:600;font-size:16px}.stream-viewer-subtitle{font-size:13px;color:var(--text-muted)}.stream-viewer-header-right{display:flex;align-items:center;gap:8px}.stream-viewer-fullscreen{background:#ffffff1a;border:none;color:#fff;width:36px;height:36px;border-radius:var(--radius);cursor:pointer;font-size:18px;display:flex;align-items:center;justify-content:center;transition:background var(--transition)}.stream-viewer-fullscreen:hover{background:#ffffff40}.stream-viewer-close{background:#ffffff1a;border:none;color:#fff;padding:8px 16px;border-radius:var(--radius);cursor:pointer;font-size:14px;transition:background var(--transition)}.stream-viewer-close:hover{background:#fff3}.stream-viewer-video{flex:1;display:flex;align-items:center;justify-content:center;overflow:hidden}.stream-viewer-video video{max-width:100%;max-height:100%;width:100%;height:100%;object-fit:contain}.stream-viewer-connecting{color:var(--text-muted);font-size:16px;display:flex;flex-direction:column;align-items:center;gap:12px}.stream-viewer-spinner{width:32px;height:32px;border:3px solid var(--bg-tertiary);border-top-color:var(--accent);border-radius:50%;animation:stream-spin .8s linear infinite}@keyframes stream-spin{to{transform:rotate(360deg)}}.stream-empty{text-align:center;padding:60px 20px;color:var(--text-muted)}.stream-empty-icon{font-size:48px;margin-bottom:12px;opacity:.4}.stream-empty h3{font-size:18px;font-weight:600;color:var(--text-normal);margin-bottom:6px}.stream-empty p{font-size:14px}.stream-error{background:#ed42451f;color:var(--danger);padding:10px 14px;border-radius:var(--radius);font-size:14px;margin-bottom:12px;display:flex;align-items:center;gap:8px}.stream-error-dismiss{background:none;border:none;color:var(--danger);cursor:pointer;margin-left:auto;font-size:16px;padding:0 4px}.stream-tile.broadcasting .stream-tile-preview{border:2px solid var(--danger);border-bottom:none}.stream-input-password{width:140px}.stream-tile-lock{position:absolute;bottom:8px;right:8px;font-size:16px;opacity:.6}.stream-pw-overlay{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1000;background:#000000b3;display:flex;align-items:center;justify-content:center}.stream-pw-modal{background:var(--bg-secondary);border-radius:var(--radius-lg);padding:24px;width:340px;max-width:90vw}.stream-pw-modal h3{font-size:16px;font-weight:600;margin-bottom:4px}.stream-pw-modal p{font-size:13px;color:var(--text-muted);margin-bottom:16px}.stream-pw-modal .stream-input{width:100%;margin-bottom:12px}.stream-pw-modal-error{color:var(--danger);font-size:13px;margin-bottom:8px}.stream-pw-actions{display:flex;gap:8px;justify-content:flex-end}.stream-pw-cancel{padding:8px 16px;border:1px solid var(--bg-tertiary);border-radius:var(--radius);background:transparent;color:var(--text-muted);cursor:pointer;font-size:14px}.stream-pw-cancel:hover{color:var(--text-normal);border-color:var(--text-faint)}.wt-container{height:100%;overflow-y:auto;padding:16px}.wt-topbar{display:flex;align-items:center;gap:10px;margin-bottom:16px;flex-wrap:wrap}.wt-input{padding:10px 14px;border:1px solid var(--bg-tertiary);border-radius:var(--radius);background:var(--bg-secondary);color:var(--text-normal);font-size:14px;outline:none;transition:border-color var(--transition);min-width:0}.wt-input:focus{border-color:var(--accent)}.wt-input::placeholder{color:var(--text-faint)}.wt-input-name{width:150px}.wt-input-room{flex:1;min-width:180px}.wt-input-password{width:170px}.wt-btn{padding:10px 20px;border:none;border-radius:var(--radius);background:var(--accent);color:#fff;font-weight:600;font-size:14px;cursor:pointer;transition:background var(--transition);white-space:nowrap;display:flex;align-items:center;gap:6px}.wt-btn:hover{background:var(--accent-hover)}.wt-btn:disabled{opacity:.5;cursor:not-allowed}.wt-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(280px,1fr));gap:16px}.wt-tile{background:var(--bg-secondary);border-radius:var(--radius-lg);overflow:hidden;cursor:pointer;transition:transform var(--transition),box-shadow var(--transition);position:relative}.wt-tile:hover{transform:translateY(-2px);box-shadow:0 4px 20px #0006}.wt-tile-preview{position:relative;width:100%;padding-top:56.25%;background:var(--bg-deep);overflow:hidden}.wt-tile-icon{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);font-size:48px;opacity:.3}.wt-tile-members{position:absolute;top:8px;right:8px;background:#0009;color:#fff;font-size:12px;padding:2px 8px;border-radius:4px;display:flex;align-items:center;gap:4px}.wt-tile-lock{position:absolute;bottom:8px;right:8px;font-size:16px;opacity:.6}.wt-tile-playing{position:absolute;top:8px;left:8px;background:var(--accent);color:#fff;font-size:11px;font-weight:700;padding:2px 8px;border-radius:4px;display:flex;align-items:center;gap:4px}.wt-tile-info{padding:10px 12px;display:flex;align-items:center;justify-content:space-between;gap:8px}.wt-tile-meta{min-width:0;flex:1}.wt-tile-name{font-size:14px;font-weight:600;color:var(--text-normal);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.wt-tile-host{font-size:12px;color:var(--text-muted);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.wt-empty{text-align:center;padding:60px 20px;color:var(--text-muted)}.wt-empty-icon{font-size:48px;margin-bottom:12px;opacity:.4}.wt-empty h3{font-size:18px;font-weight:600;color:var(--text-normal);margin-bottom:6px}.wt-empty p{font-size:14px}.wt-error{background:#ed42451f;color:var(--danger);padding:10px 14px;border-radius:var(--radius);font-size:14px;margin-bottom:12px;display:flex;align-items:center;gap:8px}.wt-error-dismiss{background:none;border:none;color:var(--danger);cursor:pointer;margin-left:auto;font-size:16px;padding:0 4px}.wt-modal-overlay{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1000;background:#000000b3;display:flex;align-items:center;justify-content:center}.wt-modal{background:var(--bg-secondary);border-radius:var(--radius-lg);padding:24px;width:340px;max-width:90vw}.wt-modal h3{font-size:16px;font-weight:600;margin-bottom:4px}.wt-modal p{font-size:13px;color:var(--text-muted);margin-bottom:16px}.wt-modal .wt-input{width:100%;margin-bottom:12px}.wt-modal-error{color:var(--danger);font-size:13px;margin-bottom:8px}.wt-modal-actions{display:flex;gap:8px;justify-content:flex-end}.wt-modal-cancel{padding:8px 16px;border:1px solid var(--bg-tertiary);border-radius:var(--radius);background:transparent;color:var(--text-muted);cursor:pointer;font-size:14px}.wt-modal-cancel:hover{color:var(--text-normal);border-color:var(--text-faint)}.wt-room-overlay{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1000;background:#000;display:flex;flex-direction:column}.wt-room-header{display:flex;align-items:center;justify-content:space-between;padding:12px 16px;background:#000c;color:#fff;z-index:1;flex-shrink:0}.wt-room-header-left{display:flex;align-items:center;gap:12px}.wt-room-name{font-weight:600;font-size:16px}.wt-room-members{font-size:13px;color:var(--text-muted)}.wt-host-badge{font-size:11px;background:#ffffff1a;padding:2px 8px;border-radius:4px;color:var(--accent);font-weight:600}.wt-room-header-right{display:flex;align-items:center;gap:8px}.wt-fullscreen-btn{background:#ffffff1a;border:none;color:#fff;width:36px;height:36px;border-radius:var(--radius);cursor:pointer;font-size:18px;display:flex;align-items:center;justify-content:center;transition:background var(--transition)}.wt-fullscreen-btn:hover{background:#ffffff40}.wt-leave-btn{background:#ffffff1a;border:none;color:#fff;padding:8px 16px;border-radius:var(--radius);cursor:pointer;font-size:14px;transition:background var(--transition)}.wt-leave-btn:hover{background:#fff3}.wt-room-body{display:flex;flex:1;overflow:hidden}.wt-player-section{flex:1;display:flex;flex-direction:column;min-width:0}.wt-player-wrap{position:relative;width:100%;flex:1;background:#000;display:flex;align-items:center;justify-content:center;overflow:hidden}.wt-yt-container{position:absolute;top:0;right:0;bottom:0;left:0;width:100%;height:100%}.wt-yt-container iframe{width:100%;height:100%}.wt-video-element{width:100%;height:100%;object-fit:contain}.wt-player-placeholder{display:flex;flex-direction:column;align-items:center;gap:12px;color:var(--text-muted);font-size:16px}.wt-placeholder-icon{font-size:48px;opacity:.3}.wt-controls{display:flex;align-items:center;gap:12px;padding:12px 16px;background:#000c;flex-shrink:0}.wt-ctrl-btn{background:#ffffff1a;border:none;color:#fff;width:36px;height:36px;border-radius:var(--radius);cursor:pointer;font-size:16px;display:flex;align-items:center;justify-content:center;transition:background var(--transition);flex-shrink:0}.wt-ctrl-btn:hover:not(:disabled){background:#ffffff40}.wt-ctrl-btn:disabled{opacity:.3;cursor:not-allowed}.wt-ctrl-status{color:var(--text-muted);font-size:16px;width:36px;text-align:center;flex-shrink:0}.wt-seek{-webkit-appearance:none;-moz-appearance:none;appearance:none;flex:1;height:4px;border-radius:2px;background:var(--bg-tertiary);outline:none;cursor:pointer;min-width:60px}.wt-seek::-webkit-slider-thumb{-webkit-appearance:none;-moz-appearance:none;appearance:none;width:14px;height:14px;border-radius:50%;background:var(--accent);cursor:pointer;border:none;box-shadow:0 0 4px #0000004d}.wt-seek::-moz-range-thumb{width:14px;height:14px;border-radius:50%;background:var(--accent);cursor:pointer;border:none;box-shadow:0 0 4px #0000004d}.wt-seek::-webkit-slider-runnable-track{height:4px;border-radius:2px}.wt-seek::-moz-range-track{height:4px;border-radius:2px;background:var(--bg-tertiary)}.wt-seek-readonly{flex:1;height:4px;border-radius:2px;background:var(--bg-tertiary);position:relative;overflow:hidden;min-width:60px}.wt-seek-progress{position:absolute;top:0;left:0;height:100%;background:var(--accent);border-radius:2px;transition:width .3s linear}.wt-time{font-variant-numeric:tabular-nums;color:#fff;font-size:13px;white-space:nowrap;flex-shrink:0}.wt-volume{display:flex;align-items:center;gap:6px;flex-shrink:0;margin-left:auto}.wt-volume-icon{font-size:16px;width:20px;text-align:center;cursor:default}.wt-volume-slider{-webkit-appearance:none;-moz-appearance:none;appearance:none;width:100px;height:4px;border-radius:2px;background:var(--bg-tertiary);outline:none;cursor:pointer}.wt-volume-slider::-webkit-slider-thumb{-webkit-appearance:none;-moz-appearance:none;appearance:none;width:14px;height:14px;border-radius:50%;background:var(--accent);cursor:pointer;border:none;box-shadow:0 0 4px #0000004d}.wt-volume-slider::-moz-range-thumb{width:14px;height:14px;border-radius:50%;background:var(--accent);cursor:pointer;border:none;box-shadow:0 0 4px #0000004d}.wt-queue-panel{width:280px;background:var(--bg-secondary);border-left:1px solid var(--bg-tertiary);display:flex;flex-direction:column;flex-shrink:0}.wt-queue-header{padding:14px 16px;font-weight:600;font-size:14px;color:var(--text-normal);border-bottom:1px solid var(--bg-tertiary);flex-shrink:0}.wt-queue-list{flex:1;overflow-y:auto;scrollbar-width:thin;scrollbar-color:var(--bg-tertiary) transparent}.wt-queue-list::-webkit-scrollbar{width:4px}.wt-queue-list::-webkit-scrollbar-thumb{background:var(--bg-tertiary);border-radius:2px}.wt-queue-empty{padding:24px 16px;text-align:center;color:var(--text-faint);font-size:13px}.wt-queue-item{padding:10px 12px;border-bottom:1px solid var(--bg-tertiary);display:flex;align-items:center;gap:8px;transition:background var(--transition)}.wt-queue-item:hover{background:var(--bg-tertiary)}.wt-queue-item.playing{border-left:3px solid var(--accent);background:#e67e2214}.wt-queue-item-info{flex:1;min-width:0}.wt-queue-item-title{font-size:13px;font-weight:500;color:var(--text-normal);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.wt-queue-item-by{font-size:11px;color:var(--text-faint);margin-top:2px}.wt-queue-item-remove{background:none;border:none;color:var(--text-faint);cursor:pointer;font-size:18px;padding:2px 6px;border-radius:4px;transition:all var(--transition);flex-shrink:0}.wt-queue-item-remove:hover{color:var(--danger);background:#ed42451f}.wt-queue-add{padding:12px;display:flex;gap:8px;border-top:1px solid var(--bg-tertiary);flex-shrink:0}.wt-queue-input{flex:1;font-size:13px;padding:8px 10px}.wt-queue-add-btn{padding:8px 12px;font-size:13px;flex-shrink:0}@media(max-width:768px){.wt-room-body{flex-direction:column}.wt-queue-panel{width:100%;max-height:40vh;border-left:none;border-top:1px solid var(--bg-tertiary)}.wt-player-wrap{min-height:200px}.wt-controls{flex-wrap:wrap;gap:8px;padding:10px 12px}.wt-volume{margin-left:0}.wt-volume-slider{width:80px}.wt-room-header{padding:10px 12px}.wt-room-name{font-size:14px}.wt-room-members,.wt-host-badge{font-size:11px}}@media(max-width:480px){.wt-topbar{gap:8px}.wt-input-name{width:100%}.wt-input-room{min-width:0}.wt-input-password{width:100%}.wt-volume-slider{width:60px}.wt-time{font-size:12px}.wt-host-badge{display:none}}:root{--bg-deep: #1a1b1e;--bg-primary: #1e1f22;--bg-secondary: #2b2d31;--bg-tertiary: #313338;--text-normal: #dbdee1;--text-muted: #949ba4;--text-faint: #6d6f78;--accent: #e67e22;--accent-rgb: 230, 126, 34;--accent-hover: #d35400;--success: #57d28f;--danger: #ed4245;--warning: #fee75c;--border: rgba(255, 255, 255, .06);--radius: 8px;--radius-lg: 12px;--transition: .15s ease;--font: "Segoe UI", system-ui, -apple-system, sans-serif;--header-height: 56px}*,*:before,*:after{margin:0;padding:0;box-sizing:border-box}html,body{height:100%;font-family:var(--font);font-size:15px;color:var(--text-normal);background:var(--bg-deep);-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;overflow:hidden}#root{height:100%}.hub-app{display:flex;flex-direction:column;height:100vh;overflow:hidden}.hub-header{position:sticky;top:0;z-index:100;display:flex;align-items:center;height:var(--header-height);min-height:var(--header-height);padding:0 16px;background:var(--bg-primary);border-bottom:1px solid var(--border);gap:16px}.hub-header-left{display:flex;align-items:center;gap:10px;flex-shrink:0}.hub-logo{font-size:24px;line-height:1}.hub-title{font-size:18px;font-weight:700;color:var(--text-normal);letter-spacing:-.02em;white-space:nowrap}.hub-conn-dot{width:10px;height:10px;border-radius:50%;background:var(--danger);flex-shrink:0;transition:background var(--transition);box-shadow:0 0 0 2px #ed424540}.hub-conn-dot.online{background:var(--success);box-shadow:0 0 0 2px #57d28f40;animation:pulse-dot 2s ease-in-out infinite}@keyframes pulse-dot{0%,to{box-shadow:0 0 0 2px #57d28f40}50%{box-shadow:0 0 0 6px #57d28f1a}}.hub-tabs{display:flex;align-items:center;gap:4px;flex:1;overflow-x:auto;scrollbar-width:none;-ms-overflow-style:none;padding:0 4px}.hub-tabs::-webkit-scrollbar{display:none}.hub-tab{display:flex;align-items:center;gap:6px;padding:8px 14px;border:none;background:transparent;color:var(--text-muted);font-family:var(--font);font-size:14px;font-weight:500;cursor:pointer;border-radius:var(--radius);white-space:nowrap;transition:all var(--transition);position:relative;-webkit-user-select:none;user-select:none}.hub-tab:hover{color:var(--text-normal);background:var(--bg-secondary)}.hub-tab.active{color:var(--accent);background:rgba(var(--accent-rgb),.1)}.hub-tab.active:after{content:"";position:absolute;bottom:-1px;left:50%;transform:translate(-50%);width:calc(100% - 16px);height:2px;background:var(--accent);border-radius:1px}.hub-tab-icon{font-size:16px;line-height:1}.hub-tab-label{text-transform:capitalize}.hub-header-right{display:flex;align-items:center;gap:12px;flex-shrink:0}.hub-download-btn{font-size:16px;text-decoration:none;opacity:.6;transition:opacity var(--transition);cursor:pointer}.hub-download-btn:hover{opacity:1}.hub-version{font-size:12px;color:var(--text-faint);font-weight:500;font-variant-numeric:tabular-nums;background:var(--bg-secondary);padding:4px 8px;border-radius:4px}.hub-content{flex:1;overflow-y:auto;overflow-x:hidden;background:var(--bg-deep);scrollbar-width:thin;scrollbar-color:var(--bg-tertiary) transparent}.hub-content::-webkit-scrollbar{width:6px}.hub-content::-webkit-scrollbar-track{background:transparent}.hub-content::-webkit-scrollbar-thumb{background:var(--bg-tertiary);border-radius:3px}.hub-content::-webkit-scrollbar-thumb:hover{background:var(--text-faint)}.hub-empty{display:flex;flex-direction:column;align-items:center;justify-content:center;height:100%;min-height:300px;text-align:center;padding:32px;animation:fade-in .3s ease}.hub-empty-icon{font-size:64px;line-height:1;margin-bottom:20px;opacity:.6;filter:grayscale(30%)}.hub-empty h2{font-size:22px;font-weight:700;color:var(--text-normal);margin-bottom:8px}.hub-empty p{font-size:15px;color:var(--text-muted);max-width:360px;line-height:1.5}@keyframes fade-in{0%{opacity:0;transform:translateY(8px)}to{opacity:1;transform:translateY(0)}}::selection{background:rgba(var(--accent-rgb),.3);color:var(--text-normal)}:focus-visible{outline:2px solid var(--accent);outline-offset:2px}@media(max-width:768px){:root{--header-height: 48px}.hub-header{padding:0 10px;gap:8px}.hub-title{font-size:15px}.hub-logo{font-size:20px}.hub-tab{padding:6px 10px;font-size:13px;gap:4px}.hub-tab-label{display:none}.hub-tab-icon{font-size:18px}.hub-version{font-size:11px}.hub-empty-icon{font-size:48px}.hub-empty h2{font-size:18px}.hub-empty p{font-size:14px}}@media(max-width:480px){.hub-header-right{display:none}.hub-header{padding:0 8px;gap:6px}.hub-title{font-size:14px}}.radio-container{display:flex;flex-direction:column;width:100%;height:100%;overflow:hidden;background:var(--bg-deep);--bg-deep: #1a1b1e;--bg-primary: #1e1f22;--bg-secondary: #2b2d31;--bg-tertiary: #313338;--text-normal: #dbdee1;--text-muted: #949ba4;--text-faint: #6d6f78;--accent: #e67e22;--accent-rgb: 230, 126, 34;--accent-hover: #d35400;--border: rgba(255, 255, 255, .06)}.radio-container[data-theme=purple]{--bg-deep: #13111c;--bg-primary: #1a1726;--bg-secondary: #241f35;--bg-tertiary: #2e2845;--accent: #9b59b6;--accent-rgb: 155, 89, 182;--accent-hover: #8e44ad}.radio-container[data-theme=forest]{--bg-deep: #0f1a14;--bg-primary: #142119;--bg-secondary: #1c2e22;--bg-tertiary: #253a2c;--accent: #2ecc71;--accent-rgb: 46, 204, 113;--accent-hover: #27ae60}.radio-container[data-theme=ocean]{--bg-deep: #0a1628;--bg-primary: #0f1e33;--bg-secondary: #162a42;--bg-tertiary: #1e3652;--accent: #3498db;--accent-rgb: 52, 152, 219;--accent-hover: #2980b9}.radio-container[data-theme=cherry]{--bg-deep: #1a0f14;--bg-primary: #22141a;--bg-secondary: #301c25;--bg-tertiary: #3e2530;--accent: #e74c6f;--accent-rgb: 231, 76, 111;--accent-hover: #c0392b}.radio-topbar{display:flex;align-items:center;padding:0 16px;height:52px;background:var(--bg-secondary, #2b2d31);border-bottom:1px solid rgba(0,0,0,.24);z-index:10;flex-shrink:0;gap:16px}.radio-topbar-left{display:flex;align-items:center;gap:10px;flex-shrink:0}.radio-topbar-logo{font-size:20px}.radio-topbar-title{font-size:16px;font-weight:700;color:var(--text-normal);letter-spacing:-.02em}.radio-topbar-np{flex:1;display:flex;align-items:center;gap:10px;min-width:0;justify-content:center}.radio-topbar-right{display:flex;align-items:center;gap:6px;flex-shrink:0;margin-left:auto}.radio-topbar-stop{display:flex;align-items:center;gap:4px;background:var(--danger);color:#fff;border:none;border-radius:var(--radius);padding:6px 14px;font-size:13px;font-family:var(--font);font-weight:600;cursor:pointer;transition:all var(--transition);flex-shrink:0}.radio-topbar-stop:hover{background:#c63639}.radio-theme-inline{display:flex;align-items:center;gap:4px;margin-left:4px}.radio-globe-wrap{position:relative;flex:1;overflow:hidden}.radio-globe{width:100%;height:100%}.radio-globe canvas{outline:none!important}.radio-search{position:absolute;top:16px;left:50%;transform:translate(-50%);z-index:20;width:min(440px,calc(100% - 32px))}.radio-search-wrap{display:flex;align-items:center;background:#1e1f22eb;-webkit-backdrop-filter:blur(12px);backdrop-filter:blur(12px);border:1px solid var(--border);border-radius:var(--radius-lg);padding:0 14px;gap:8px;box-shadow:0 8px 32px #0006}.radio-search-icon{font-size:16px;opacity:.6;flex-shrink:0}.radio-search-input{flex:1;background:transparent;border:none;color:var(--text-normal);font-family:var(--font);font-size:14px;padding:12px 0;outline:none}.radio-search-input::placeholder{color:var(--text-faint)}.radio-search-clear{background:none;border:none;color:var(--text-muted);font-size:14px;cursor:pointer;padding:4px;border-radius:4px;transition:color var(--transition)}.radio-search-clear:hover{color:var(--text-normal)}.radio-search-results{margin-top:6px;background:#1e1f22f2;-webkit-backdrop-filter:blur(12px);backdrop-filter:blur(12px);border:1px solid var(--border);border-radius:var(--radius-lg);max-height:360px;overflow-y:auto;box-shadow:0 12px 40px #00000080;scrollbar-width:thin;scrollbar-color:var(--bg-tertiary) transparent}.radio-search-result{display:flex;align-items:center;gap:10px;width:100%;padding:10px 14px;background:none;border:none;border-bottom:1px solid var(--border);color:var(--text-normal);font-family:var(--font);font-size:14px;cursor:pointer;text-align:left;transition:background var(--transition)}.radio-search-result:last-child{border-bottom:none}.radio-search-result:hover{background:rgba(var(--accent-rgb),.08)}.radio-search-result-icon{font-size:18px;flex-shrink:0}.radio-search-result-text{display:flex;flex-direction:column;gap:2px;min-width:0}.radio-search-result-title{font-weight:600;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.radio-search-result-sub{font-size:12px;color:var(--text-muted);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.radio-fab{position:absolute;top:16px;right:16px;z-index:20;display:flex;align-items:center;gap:4px;padding:10px 14px;background:#1e1f22eb;-webkit-backdrop-filter:blur(12px);backdrop-filter:blur(12px);border:1px solid var(--border);border-radius:var(--radius-lg);color:var(--text-normal);font-size:16px;cursor:pointer;box-shadow:0 8px 32px #0006;transition:all var(--transition)}.radio-fab:hover,.radio-fab.active{background:rgba(var(--accent-rgb),.15);border-color:rgba(var(--accent-rgb),.3)}.radio-fab-badge{font-size:11px;font-weight:700;background:var(--accent);color:#fff;padding:1px 6px;border-radius:10px;min-width:18px;text-align:center}.radio-panel{position:absolute;top:0;right:0;width:340px;height:100%;z-index:15;background:#1e1f22f2;-webkit-backdrop-filter:blur(16px);backdrop-filter:blur(16px);border-left:1px solid var(--border);display:flex;flex-direction:column;animation:slide-in-right .2s ease;box-shadow:-8px 0 32px #0000004d}@keyframes slide-in-right{0%{transform:translate(100%);opacity:0}to{transform:translate(0);opacity:1}}.radio-panel-header{display:flex;align-items:center;justify-content:space-between;padding:16px;border-bottom:1px solid var(--border);flex-shrink:0}.radio-panel-header h3{font-size:16px;font-weight:700;color:var(--text-normal)}.radio-panel-sub{font-size:12px;color:var(--text-muted);display:block;margin-top:2px}.radio-panel-close{background:none;border:none;color:var(--text-muted);font-size:18px;cursor:pointer;padding:4px 8px;border-radius:4px;transition:all var(--transition)}.radio-panel-close:hover{color:var(--text-normal);background:var(--bg-secondary)}.radio-panel-body{flex:1;overflow-y:auto;padding:8px;scrollbar-width:thin;scrollbar-color:var(--bg-tertiary) transparent}.radio-panel-empty{text-align:center;color:var(--text-muted);padding:40px 16px;font-size:14px}.radio-panel-loading{display:flex;flex-direction:column;align-items:center;gap:12px;padding:40px 16px;color:var(--text-muted);font-size:14px}.radio-station{display:flex;align-items:center;justify-content:space-between;padding:10px 12px;border-radius:var(--radius);transition:background var(--transition);gap:10px}.radio-station:hover{background:var(--bg-secondary)}.radio-station.playing{background:rgba(var(--accent-rgb),.1);border:1px solid rgba(var(--accent-rgb),.2)}.radio-station-info{flex:1;min-width:0;display:flex;flex-direction:column;gap:3px}.radio-station-name{font-size:14px;font-weight:600;color:var(--text-normal);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.radio-station-loc{font-size:11px;color:var(--text-faint);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.radio-station-live{display:flex;align-items:center;gap:6px;font-size:11px;color:var(--accent);font-weight:600}.radio-station-btns{display:flex;gap:4px;flex-shrink:0}.radio-btn-play,.radio-btn-stop{width:34px;height:34px;border:none;border-radius:50%;font-size:14px;cursor:pointer;display:flex;align-items:center;justify-content:center;transition:all var(--transition)}.radio-btn-play{background:var(--accent);color:#fff}.radio-btn-play:hover:not(:disabled){background:var(--accent-hover);transform:scale(1.05)}.radio-btn-play:disabled{opacity:.4;cursor:not-allowed}.radio-btn-stop{background:var(--danger);color:#fff}.radio-btn-stop:hover{background:#c63639}.radio-btn-fav{width:34px;height:34px;border:none;border-radius:50%;font-size:16px;cursor:pointer;background:transparent;color:var(--text-faint);display:flex;align-items:center;justify-content:center;transition:all var(--transition)}.radio-btn-fav:hover{color:var(--warning);background:#fee75c1a}.radio-btn-fav.active{color:var(--warning)}.radio-eq{display:flex;align-items:flex-end;gap:2px;height:14px}.radio-eq span{width:3px;background:var(--accent);border-radius:1px;animation:eq-bounce .8s ease-in-out infinite}.radio-eq span:nth-child(1){height:8px;animation-delay:0s}.radio-eq span:nth-child(2){height:14px;animation-delay:.15s}.radio-eq span:nth-child(3){height:10px;animation-delay:.3s}@keyframes eq-bounce{0%,to{transform:scaleY(.4)}50%{transform:scaleY(1)}}.radio-sel{background:var(--bg-secondary);border:1px solid var(--border);border-radius:var(--radius);color:var(--text-normal);font-family:var(--font);font-size:13px;padding:6px 10px;cursor:pointer;outline:none;max-width:180px}.radio-sel:focus{border-color:var(--accent)}.radio-eq-np{flex-shrink:0}.radio-np-info{display:flex;flex-direction:column;gap:1px;min-width:0;flex:1}.radio-np-name{font-size:14px;font-weight:600;color:var(--text-normal);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.radio-np-loc{font-size:11px;color:var(--text-muted);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.radio-volume{display:flex;align-items:center;gap:6px;flex-shrink:0}.radio-volume-icon{font-size:16px;width:20px;text-align:center;cursor:pointer}.radio-volume-slider{-webkit-appearance:none;-moz-appearance:none;appearance:none;width:100px;height:4px;border-radius:2px;background:var(--bg-tertiary, #383a40);outline:none;cursor:pointer}.radio-volume-slider::-webkit-slider-thumb{-webkit-appearance:none;-moz-appearance:none;appearance:none;width:14px;height:14px;border-radius:50%;background:var(--accent, #e67e22);cursor:pointer;border:none;box-shadow:0 0 4px #0000004d}.radio-volume-slider::-moz-range-thumb{width:14px;height:14px;border-radius:50%;background:var(--accent, #e67e22);cursor:pointer;border:none;box-shadow:0 0 4px #0000004d}.radio-volume-val{font-size:11px;color:var(--text-muted);min-width:32px;text-align:right}.radio-theme-dot{width:16px;height:16px;border-radius:50%;cursor:pointer;transition:transform .15s ease,border-color .15s ease;border:2px solid transparent}.radio-theme-dot:hover{transform:scale(1.25)}.radio-theme-dot.active{border-color:#fff;box-shadow:0 0 6px #ffffff4d}.radio-counter{position:absolute;bottom:16px;left:16px;z-index:10;font-size:12px;color:var(--text-faint);background:#1e1f22cc;padding:4px 10px;border-radius:20px;pointer-events:none}.radio-attribution{position:absolute;right:16px;bottom:16px;z-index:10;font-size:12px;color:var(--text-faint);background:#1e1f22cc;padding:4px 10px;border-radius:20px;text-decoration:none;transition:color var(--transition),background var(--transition)}.radio-attribution:hover{color:var(--text-normal);background:#1e1f22eb}.radio-spinner{width:24px;height:24px;border:3px solid var(--bg-tertiary);border-top-color:var(--accent);border-radius:50%;animation:spin .7s linear infinite}@keyframes spin{to{transform:rotate(360deg)}}@media(max-width:768px){.radio-panel{width:100%}.radio-fab{top:12px;right:12px;padding:8px 10px;font-size:14px}.radio-search{top:12px;width:calc(100% - 80px);left:calc(50% - 24px)}.radio-topbar{padding:0 12px;gap:8px}.radio-topbar-title{display:none}.radio-sel{max-width:140px;font-size:12px}}@media(max-width:480px){.radio-topbar-np,.radio-volume{display:none}.radio-sel{max-width:120px}}.radio-conn{display:flex;align-items:center;gap:6px;font-size:12px;color:var(--success);cursor:pointer;padding:4px 10px;border-radius:20px;background:#57d28f14;transition:all var(--transition);flex-shrink:0;-webkit-user-select:none;user-select:none}.radio-conn:hover{background:#57d28f26}.radio-conn-dot{width:8px;height:8px;border-radius:50%;background:var(--success);animation:pulse-dot 2s ease-in-out infinite}.radio-conn-ping{font-size:11px;color:var(--text-muted);font-weight:600;font-variant-numeric:tabular-nums}.radio-modal-overlay{position:fixed;top:0;right:0;bottom:0;left:0;background:#0000008c;z-index:9000;display:flex;align-items:center;justify-content:center;-webkit-backdrop-filter:blur(4px);backdrop-filter:blur(4px);animation:fade-in .15s ease}.radio-modal{background:var(--bg-primary);border:1px solid var(--border);border-radius:16px;width:340px;box-shadow:0 20px 60px #0006;overflow:hidden;animation:radio-modal-in .2s ease}@keyframes radio-modal-in{0%{transform:translateY(20px);opacity:0}to{transform:translateY(0);opacity:1}}.radio-modal-header{display:flex;align-items:center;gap:8px;padding:14px 16px;border-bottom:1px solid var(--border);font-weight:700;font-size:14px}.radio-modal-close{margin-left:auto;background:none;border:none;color:var(--text-muted);cursor:pointer;padding:4px 8px;border-radius:6px;font-size:14px;transition:all var(--transition)}.radio-modal-close:hover{background:#ffffff14;color:var(--text-normal)}.radio-modal-body{padding:16px;display:flex;flex-direction:column;gap:12px}.radio-modal-stat{display:flex;justify-content:space-between;align-items:center}.radio-modal-label{color:var(--text-muted);font-size:13px}.radio-modal-value{font-weight:600;font-size:13px;display:flex;align-items:center;gap:6px}.radio-modal-dot{width:8px;height:8px;border-radius:50%;flex-shrink:0} diff --git a/web/dist/assets/index-UqZEdiQO.js b/web/dist/assets/index-UqZEdiQO.js deleted file mode 100644 index eeaacc6..0000000 --- a/web/dist/assets/index-UqZEdiQO.js +++ /dev/null @@ -1,4830 +0,0 @@ -(function(){const e=document.createElement("link").relList;if(e&&e.supports&&e.supports("modulepreload"))return;for(const r of document.querySelectorAll('link[rel="modulepreload"]'))n(r);new MutationObserver(r=>{for(const s of r)if(s.type==="childList")for(const a of s.addedNodes)a.tagName==="LINK"&&a.rel==="modulepreload"&&n(a)}).observe(document,{childList:!0,subtree:!0});function t(r){const s={};return r.integrity&&(s.integrity=r.integrity),r.referrerPolicy&&(s.referrerPolicy=r.referrerPolicy),r.crossOrigin==="use-credentials"?s.credentials="include":r.crossOrigin==="anonymous"?s.credentials="omit":s.credentials="same-origin",s}function n(r){if(r.ep)return;r.ep=!0;const s=t(r);fetch(r.href,s)}})();function b7(i){return i&&i.__esModule&&Object.prototype.hasOwnProperty.call(i,"default")?i.default:i}var $b={exports:{}},$p={};/** - * @license React - * react-jsx-runtime.production.js - * - * Copyright (c) Meta Platforms, Inc. and affiliates. - * - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. - */var BC;function SF(){if(BC)return $p;BC=1;var i=Symbol.for("react.transitional.element"),e=Symbol.for("react.fragment");function t(n,r,s){var a=null;if(s!==void 0&&(a=""+s),r.key!==void 0&&(a=""+r.key),"key"in r){s={};for(var l in r)l!=="key"&&(s[l]=r[l])}else s=r;return r=s.ref,{$$typeof:i,type:n,key:a,ref:r!==void 0?r:null,props:s}}return $p.Fragment=e,$p.jsx=t,$p.jsxs=t,$p}var OC;function TF(){return OC||(OC=1,$b.exports=SF()),$b.exports}var W=TF(),Xb={exports:{}},Xp={},Yb={exports:{}},Qb={};/** - * @license React - * scheduler.production.js - * - * Copyright (c) Meta Platforms, Inc. and affiliates. - * - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. - */var IC;function wF(){return IC||(IC=1,(function(i){function e(Q,le){var de=Q.length;Q.push(le);e:for(;0>>1,Se=Q[Te];if(0>>1;Ter(We,de))Eer(Ge,We)?(Q[Te]=Ge,Q[Ee]=de,Te=Ee):(Q[Te]=We,Q[be]=de,Te=be);else if(Eer(Ge,de))Q[Te]=Ge,Q[Ee]=de,Te=Ee;else break e}}return le}function r(Q,le){var de=Q.sortIndex-le.sortIndex;return de!==0?de:Q.id-le.id}if(i.unstable_now=void 0,typeof performance=="object"&&typeof performance.now=="function"){var s=performance;i.unstable_now=function(){return s.now()}}else{var a=Date,l=a.now();i.unstable_now=function(){return a.now()-l}}var u=[],h=[],g=1,v=null,x=3,S=!1,w=!1,R=!1,C=!1,E=typeof setTimeout=="function"?setTimeout:null,B=typeof clearTimeout=="function"?clearTimeout:null,L=typeof setImmediate<"u"?setImmediate:null;function O(Q){for(var le=t(h);le!==null;){if(le.callback===null)n(h);else if(le.startTime<=Q)n(h),le.sortIndex=le.expirationTime,e(u,le);else break;le=t(h)}}function z(Q){if(R=!1,O(Q),!w)if(t(u)!==null)w=!0,G||(G=!0,ee());else{var le=t(h);le!==null&&te(z,le.startTime-Q)}}var G=!1,k=-1,H=5,F=-1;function V(){return C?!0:!(i.unstable_now()-FQ&&V());){var Te=v.callback;if(typeof Te=="function"){v.callback=null,x=v.priorityLevel;var Se=Te(v.expirationTime<=Q);if(Q=i.unstable_now(),typeof Se=="function"){v.callback=Se,O(Q),le=!0;break t}v===t(u)&&n(u),O(Q)}else n(u);v=t(u)}if(v!==null)le=!0;else{var ue=t(h);ue!==null&&te(z,ue.startTime-Q),le=!1}}break e}finally{v=null,x=de,S=!1}le=void 0}}finally{le?ee():G=!1}}}var ee;if(typeof L=="function")ee=function(){L(Y)};else if(typeof MessageChannel<"u"){var ne=new MessageChannel,se=ne.port2;ne.port1.onmessage=Y,ee=function(){se.postMessage(null)}}else ee=function(){E(Y,0)};function te(Q,le){k=E(function(){Q(i.unstable_now())},le)}i.unstable_IdlePriority=5,i.unstable_ImmediatePriority=1,i.unstable_LowPriority=4,i.unstable_NormalPriority=3,i.unstable_Profiling=null,i.unstable_UserBlockingPriority=2,i.unstable_cancelCallback=function(Q){Q.callback=null},i.unstable_forceFrameRate=function(Q){0>Q||125Te?(Q.sortIndex=de,e(h,Q),t(u)===null&&Q===t(h)&&(R?(B(k),k=-1):R=!0,te(z,de-Te))):(Q.sortIndex=Se,e(u,Q),w||S||(w=!0,G||(G=!0,ee()))),Q},i.unstable_shouldYield=V,i.unstable_wrapCallback=function(Q){var le=x;return function(){var de=x;x=le;try{return Q.apply(this,arguments)}finally{x=de}}}})(Qb)),Qb}var FC;function MF(){return FC||(FC=1,Yb.exports=wF()),Yb.exports}var Kb={exports:{}},Jn={};/** - * @license React - * react.production.js - * - * Copyright (c) Meta Platforms, Inc. and affiliates. - * - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. - */var kC;function EF(){if(kC)return Jn;kC=1;var i=Symbol.for("react.transitional.element"),e=Symbol.for("react.portal"),t=Symbol.for("react.fragment"),n=Symbol.for("react.strict_mode"),r=Symbol.for("react.profiler"),s=Symbol.for("react.consumer"),a=Symbol.for("react.context"),l=Symbol.for("react.forward_ref"),u=Symbol.for("react.suspense"),h=Symbol.for("react.memo"),g=Symbol.for("react.lazy"),v=Symbol.for("react.activity"),x=Symbol.iterator;function S(ue){return ue===null||typeof ue!="object"?null:(ue=x&&ue[x]||ue["@@iterator"],typeof ue=="function"?ue:null)}var w={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},R=Object.assign,C={};function E(ue,be,We){this.props=ue,this.context=be,this.refs=C,this.updater=We||w}E.prototype.isReactComponent={},E.prototype.setState=function(ue,be){if(typeof ue!="object"&&typeof ue!="function"&&ue!=null)throw Error("takes an object of state variables to update or a function which returns an object of state variables.");this.updater.enqueueSetState(this,ue,be,"setState")},E.prototype.forceUpdate=function(ue){this.updater.enqueueForceUpdate(this,ue,"forceUpdate")};function B(){}B.prototype=E.prototype;function L(ue,be,We){this.props=ue,this.context=be,this.refs=C,this.updater=We||w}var O=L.prototype=new B;O.constructor=L,R(O,E.prototype),O.isPureReactComponent=!0;var z=Array.isArray;function G(){}var k={H:null,A:null,T:null,S:null},H=Object.prototype.hasOwnProperty;function F(ue,be,We){var Ee=We.ref;return{$$typeof:i,type:ue,key:be,ref:Ee!==void 0?Ee:null,props:We}}function V(ue,be){return F(ue.type,be,ue.props)}function Y(ue){return typeof ue=="object"&&ue!==null&&ue.$$typeof===i}function ee(ue){var be={"=":"=0",":":"=2"};return"$"+ue.replace(/[=:]/g,function(We){return be[We]})}var ne=/\/+/g;function se(ue,be){return typeof ue=="object"&&ue!==null&&ue.key!=null?ee(""+ue.key):be.toString(36)}function te(ue){switch(ue.status){case"fulfilled":return ue.value;case"rejected":throw ue.reason;default:switch(typeof ue.status=="string"?ue.then(G,G):(ue.status="pending",ue.then(function(be){ue.status==="pending"&&(ue.status="fulfilled",ue.value=be)},function(be){ue.status==="pending"&&(ue.status="rejected",ue.reason=be)})),ue.status){case"fulfilled":return ue.value;case"rejected":throw ue.reason}}throw ue}function Q(ue,be,We,Ee,Ge){var ye=typeof ue;(ye==="undefined"||ye==="boolean")&&(ue=null);var Pe=!1;if(ue===null)Pe=!0;else switch(ye){case"bigint":case"string":case"number":Pe=!0;break;case"object":switch(ue.$$typeof){case i:case e:Pe=!0;break;case g:return Pe=ue._init,Q(Pe(ue._payload),be,We,Ee,Ge)}}if(Pe)return Ge=Ge(ue),Pe=Ee===""?"."+se(ue,0):Ee,z(Ge)?(We="",Pe!=null&&(We=Pe.replace(ne,"$&/")+"/"),Q(Ge,be,We,"",function(Tt){return Tt})):Ge!=null&&(Y(Ge)&&(Ge=V(Ge,We+(Ge.key==null||ue&&ue.key===Ge.key?"":(""+Ge.key).replace(ne,"$&/")+"/")+Pe)),be.push(Ge)),1;Pe=0;var pt=Ee===""?".":Ee+":";if(z(ue))for(var vt=0;vt"u"||typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE!="function"))try{__REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE(i)}catch(e){console.error(e)}}return i(),Zb.exports=CF(),Zb.exports}/** - * @license React - * react-dom-client.production.js - * - * Copyright (c) Meta Platforms, Inc. and affiliates. - * - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. - */var VC;function NF(){if(VC)return Xp;VC=1;var i=MF(),e=_w(),t=RF();function n(o){var c="https://react.dev/errors/"+o;if(1Se||(o.current=Te[Se],Te[Se]=null,Se--)}function We(o,c){Se++,Te[Se]=o.current,o.current=c}var Ee=ue(null),Ge=ue(null),ye=ue(null),Pe=ue(null);function pt(o,c){switch(We(ye,c),We(Ge,o),We(Ee,null),c.nodeType){case 9:case 11:o=(o=c.documentElement)&&(o=o.namespaceURI)?rC(o):0;break;default:if(o=c.tagName,c=c.namespaceURI)c=rC(c),o=sC(c,o);else switch(o){case"svg":o=1;break;case"math":o=2;break;default:o=0}}be(Ee),We(Ee,o)}function vt(){be(Ee),be(Ge),be(ye)}function Tt(o){o.memoizedState!==null&&We(Pe,o);var c=Ee.current,m=sC(c,o.type);c!==m&&(We(Ge,o),We(Ee,m))}function It(o){Ge.current===o&&(be(Ee),be(Ge)),Pe.current===o&&(be(Pe),Vp._currentValue=de)}var Qe,it;function he(o){if(Qe===void 0)try{throw Error()}catch(m){var c=m.stack.trim().match(/\n( *(at )?)/);Qe=c&&c[1]||"",it=-1)":-1D||we[b]!==Je[D]){var ut=` -`+we[b].replace(" at new "," at ");return o.displayName&&ut.includes("")&&(ut=ut.replace("",o.displayName)),ut}while(1<=b&&0<=D);break}}}finally{Ft=!1,Error.prepareStackTrace=m}return(m=o?o.displayName||o.name:"")?he(m):""}function Dt(o,c){switch(o.tag){case 26:case 27:case 5:return he(o.type);case 16:return he("Lazy");case 13:return o.child!==c&&c!==null?he("Suspense Fallback"):he("Suspense");case 19:return he("SuspenseList");case 0:case 15:return ct(o.type,!1);case 11:return ct(o.type.render,!1);case 1:return ct(o.type,!0);case 31:return he("Activity");default:return""}}function gt(o){try{var c="",m=null;do c+=Dt(o,m),m=o,o=o.return;while(o);return c}catch(b){return` -Error generating stack: `+b.message+` -`+b.stack}}var tn=Object.prototype.hasOwnProperty,_t=i.unstable_scheduleCallback,fe=i.unstable_cancelCallback,X=i.unstable_shouldYield,oe=i.unstable_requestPaint,Me=i.unstable_now,Fe=i.unstable_getCurrentPriorityLevel,ze=i.unstable_ImmediatePriority,Et=i.unstable_UserBlockingPriority,Rt=i.unstable_NormalPriority,Ht=i.unstable_LowPriority,Xt=i.unstable_IdlePriority,yt=i.log,Zt=i.unstable_setDisableYieldValue,sn=null,jt=null;function kt(o){if(typeof yt=="function"&&Zt(o),jt&&typeof jt.setStrictMode=="function")try{jt.setStrictMode(sn,o)}catch{}}var qt=Math.clz32?Math.clz32:ge,In=Math.log,Mi=Math.LN2;function ge(o){return o>>>=0,o===0?32:31-(In(o)/Mi|0)|0}var Wt=256,nt=262144,xt=4194304;function $t(o){var c=o&42;if(c!==0)return c;switch(o&-o){case 1:return 1;case 2:return 2;case 4:return 4;case 8:return 8;case 16:return 16;case 32:return 32;case 64:return 64;case 128:return 128;case 256:case 512:case 1024:case 2048:case 4096:case 8192:case 16384:case 32768:case 65536:case 131072:return o&261888;case 262144:case 524288:case 1048576:case 2097152:return o&3932160;case 4194304:case 8388608:case 16777216:case 33554432:return o&62914560;case 67108864:return 67108864;case 134217728:return 134217728;case 268435456:return 268435456;case 536870912:return 536870912;case 1073741824:return 0;default:return o}}function zt(o,c,m){var b=o.pendingLanes;if(b===0)return 0;var D=0,P=o.suspendedLanes,$=o.pingedLanes;o=o.warmLanes;var re=b&134217727;return re!==0?(b=re&~P,b!==0?D=$t(b):($&=re,$!==0?D=$t($):m||(m=re&~o,m!==0&&(D=$t(m))))):(re=b&~P,re!==0?D=$t(re):$!==0?D=$t($):m||(m=b&~o,m!==0&&(D=$t(m)))),D===0?0:c!==0&&c!==D&&(c&P)===0&&(P=D&-D,m=c&-c,P>=m||P===32&&(m&4194048)!==0)?c:D}function xn(o,c){return(o.pendingLanes&~(o.suspendedLanes&~o.pingedLanes)&c)===0}function qi(o,c){switch(o){case 1:case 2:case 4:case 8:case 64:return c+250;case 16:case 32:case 128:case 256:case 512:case 1024:case 2048:case 4096:case 8192:case 16384:case 32768:case 65536:case 131072:case 262144:case 524288:case 1048576:case 2097152:return c+5e3;case 4194304:case 8388608:case 16777216:case 33554432:return-1;case 67108864:case 134217728:case 268435456:case 536870912:case 1073741824:return-1;default:return-1}}function rr(){var o=xt;return xt<<=1,(xt&62914560)===0&&(xt=4194304),o}function pn(o){for(var c=[],m=0;31>m;m++)c.push(o);return c}function $i(o,c){o.pendingLanes|=c,c!==268435456&&(o.suspendedLanes=0,o.pingedLanes=0,o.warmLanes=0)}function Jr(o,c,m,b,D,P){var $=o.pendingLanes;o.pendingLanes=m,o.suspendedLanes=0,o.pingedLanes=0,o.warmLanes=0,o.expiredLanes&=m,o.entangledLanes&=m,o.errorRecoveryDisabledLanes&=m,o.shellSuspendCounter=0;var re=o.entanglements,we=o.expirationTimes,Je=o.hiddenUpdates;for(m=$&~m;0"u")return null;try{return o.activeElement||o.body}catch{return o.body}}var _e=/[\n"\\]/g;function at(o){return o.replace(_e,function(c){return"\\"+c.charCodeAt(0).toString(16)+" "})}function Ct(o,c,m,b,D,P,$,re){o.name="",$!=null&&typeof $!="function"&&typeof $!="symbol"&&typeof $!="boolean"?o.type=$:o.removeAttribute("type"),c!=null?$==="number"?(c===0&&o.value===""||o.value!=c)&&(o.value=""+Ln(c)):o.value!==""+Ln(c)&&(o.value=""+Ln(c)):$!=="submit"&&$!=="reset"||o.removeAttribute("value"),c!=null?cn(o,$,Ln(c)):m!=null?cn(o,$,Ln(m)):b!=null&&o.removeAttribute("value"),D==null&&P!=null&&(o.defaultChecked=!!P),D!=null&&(o.checked=D&&typeof D!="function"&&typeof D!="symbol"),re!=null&&typeof re!="function"&&typeof re!="symbol"&&typeof re!="boolean"?o.name=""+Ln(re):o.removeAttribute("name")}function Jt(o,c,m,b,D,P,$,re){if(P!=null&&typeof P!="function"&&typeof P!="symbol"&&typeof P!="boolean"&&(o.type=P),c!=null||m!=null){if(!(P!=="submit"&&P!=="reset"||c!=null)){hi(o);return}m=m!=null?""+Ln(m):"",c=c!=null?""+Ln(c):m,re||c===o.value||(o.value=c),o.defaultValue=c}b=b??D,b=typeof b!="function"&&typeof b!="symbol"&&!!b,o.checked=re?o.checked:!!b,o.defaultChecked=!!b,$!=null&&typeof $!="function"&&typeof $!="symbol"&&typeof $!="boolean"&&(o.name=$),hi(o)}function cn(o,c,m){c==="number"&&fa(o.ownerDocument)===o||o.defaultValue===""+m||(o.defaultValue=""+m)}function Yn(o,c,m,b){if(o=o.options,c){c={};for(var D=0;D"u"||typeof window.document>"u"||typeof window.document.createElement>"u"),TA=!1;if(il)try{var tf={};Object.defineProperty(tf,"passive",{get:function(){TA=!0}}),window.addEventListener("test",tf,tf),window.removeEventListener("test",tf,tf)}catch{TA=!1}var Lo=null,nf=null,wA=null;function np(){if(wA)return wA;var o,c=nf,m=c.length,b,D="value"in Lo?Lo.value:Lo.textContent,P=D.length;for(o=0;o=of),Ou=" ",m1=!1;function RA(o,c){switch(o){case"keyup":return xx.indexOf(c.keyCode)!==-1;case"keydown":return c.keyCode!==229;case"keypress":case"mousedown":case"focusout":return!0;default:return!1}}function op(o){return o=o.detail,typeof o=="object"&&"data"in o?o.data:null}var Qc=!1;function g1(o,c){switch(o){case"compositionend":return op(c);case"keypress":return c.which!==32?null:(m1=!0,Ou);case"textInput":return o=c.data,o===Ou&&m1?null:o;default:return null}}function bx(o,c){if(Qc)return o==="compositionend"||!Bu&&RA(o,c)?(o=np(),wA=nf=Lo=null,Qc=!1,o):null;switch(o){case"paste":return null;case"keypress":if(!(c.ctrlKey||c.altKey||c.metaKey)||c.ctrlKey&&c.altKey){if(c.char&&1=c)return{node:m,offset:c-o};o=b}e:{for(;m;){if(m.nextSibling){m=m.nextSibling;break e}m=m.parentNode}m=void 0}m=PA(m)}}function zu(o,c){return o&&c?o===c?!0:o&&o.nodeType===3?!1:c&&c.nodeType===3?zu(o,c.parentNode):"contains"in o?o.contains(c):o.compareDocumentPosition?!!(o.compareDocumentPosition(c)&16):!1:!1}function Ol(o){o=o!=null&&o.ownerDocument!=null&&o.ownerDocument.defaultView!=null?o.ownerDocument.defaultView:window;for(var c=fa(o.document);c instanceof o.HTMLIFrameElement;){try{var m=typeof c.contentWindow.location.href=="string"}catch{m=!1}if(m)o=c.contentWindow;else break;c=fa(o.document)}return c}function Il(o){var c=o&&o.nodeName&&o.nodeName.toLowerCase();return c&&(c==="input"&&(o.type==="text"||o.type==="search"||o.type==="tel"||o.type==="url"||o.type==="password")||c==="textarea"||o.contentEditable==="true")}var wx=il&&"documentMode"in document&&11>=document.documentMode,Gu=null,fp=null,qu=null,Ap=!1;function S1(o,c,m){var b=m.window===m?m.document:m.nodeType===9?m:m.ownerDocument;Ap||Gu==null||Gu!==fa(b)||(b=Gu,"selectionStart"in b&&Il(b)?b={start:b.selectionStart,end:b.selectionEnd}:(b=(b.ownerDocument&&b.ownerDocument.defaultView||window).getSelection(),b={anchorNode:b.anchorNode,anchorOffset:b.anchorOffset,focusNode:b.focusNode,focusOffset:b.focusOffset}),qu&&Ss(qu,b)||(qu=b,b=r2(fp,"onSelect"),0>=$,D-=$,Na=1<<32-qt(c)+D|m<oi?(bi=hn,hn=null):bi=hn.sibling;var Pi=et(Ve,hn,Ke[oi],mt);if(Pi===null){hn===null&&(hn=bi);break}o&&hn&&Pi.alternate===null&&c(Ve,hn),Ue=P(Pi,Ue,oi),Di===null?Sn=Pi:Di.sibling=Pi,Di=Pi,hn=bi}if(oi===Ke.length)return m(Ve,hn),mi&&Oo(Ve,oi),Sn;if(hn===null){for(;oioi?(bi=hn,hn=null):bi=hn.sibling;var dh=et(Ve,hn,Pi.value,mt);if(dh===null){hn===null&&(hn=bi);break}o&&hn&&dh.alternate===null&&c(Ve,hn),Ue=P(dh,Ue,oi),Di===null?Sn=dh:Di.sibling=dh,Di=dh,hn=bi}if(Pi.done)return m(Ve,hn),mi&&Oo(Ve,oi),Sn;if(hn===null){for(;!Pi.done;oi++,Pi=Ke.next())Pi=St(Ve,Pi.value,mt),Pi!==null&&(Ue=P(Pi,Ue,oi),Di===null?Sn=Pi:Di.sibling=Pi,Di=Pi);return mi&&Oo(Ve,oi),Sn}for(hn=b(hn);!Pi.done;oi++,Pi=Ke.next())Pi=tt(hn,Ve,oi,Pi.value,mt),Pi!==null&&(o&&Pi.alternate!==null&&hn.delete(Pi.key===null?oi:Pi.key),Ue=P(Pi,Ue,oi),Di===null?Sn=Pi:Di.sibling=Pi,Di=Pi);return o&&hn.forEach(function(bF){return c(Ve,bF)}),mi&&Oo(Ve,oi),Sn}function er(Ve,Ue,Ke,mt){if(typeof Ke=="object"&&Ke!==null&&Ke.type===R&&Ke.key===null&&(Ke=Ke.props.children),typeof Ke=="object"&&Ke!==null){switch(Ke.$$typeof){case S:e:{for(var Sn=Ke.key;Ue!==null;){if(Ue.key===Sn){if(Sn=Ke.type,Sn===R){if(Ue.tag===7){m(Ve,Ue.sibling),mt=D(Ue,Ke.props.children),mt.return=Ve,Ve=mt;break e}}else if(Ue.elementType===Sn||typeof Sn=="object"&&Sn!==null&&Sn.$$typeof===H&&f(Sn)===Ue.type){m(Ve,Ue.sibling),mt=D(Ue,Ke.props),U(mt,Ke),mt.return=Ve,Ve=mt;break e}m(Ve,Ue);break}else c(Ve,Ue);Ue=Ue.sibling}Ke.type===R?(mt=$u(Ke.props.children,Ve.mode,mt,Ke.key),mt.return=Ve,Ve=mt):(mt=IA(Ke.type,Ke.key,Ke.props,null,Ve.mode,mt),U(mt,Ke),mt.return=Ve,Ve=mt)}return $(Ve);case w:e:{for(Sn=Ke.key;Ue!==null;){if(Ue.key===Sn)if(Ue.tag===4&&Ue.stateNode.containerInfo===Ke.containerInfo&&Ue.stateNode.implementation===Ke.implementation){m(Ve,Ue.sibling),mt=D(Ue,Ke.children||[]),mt.return=Ve,Ve=mt;break e}else{m(Ve,Ue);break}else c(Ve,Ue);Ue=Ue.sibling}mt=Bo(Ke,Ve.mode,mt),mt.return=Ve,Ve=mt}return $(Ve);case H:return Ke=f(Ke),er(Ve,Ue,Ke,mt)}if(te(Ke))return ln(Ve,Ue,Ke,mt);if(ee(Ke)){if(Sn=ee(Ke),typeof Sn!="function")throw Error(n(150));return Ke=Sn.call(Ke),Dn(Ve,Ue,Ke,mt)}if(typeof Ke.then=="function")return er(Ve,Ue,N(Ke),mt);if(Ke.$$typeof===L)return er(Ve,Ue,HA(Ve,Ke),mt);I(Ve,Ke)}return typeof Ke=="string"&&Ke!==""||typeof Ke=="number"||typeof Ke=="bigint"?(Ke=""+Ke,Ue!==null&&Ue.tag===6?(m(Ve,Ue.sibling),mt=D(Ue,Ke),mt.return=Ve,Ve=mt):(m(Ve,Ue),mt=vp(Ke,Ve.mode,mt),mt.return=Ve,Ve=mt),$(Ve)):m(Ve,Ue)}return function(Ve,Ue,Ke,mt){try{M=0;var Sn=er(Ve,Ue,Ke,mt);return T=null,Sn}catch(hn){if(hn===hl||hn===uo)throw hn;var Di=Ys(29,hn,null,Ve.mode);return Di.lanes=mt,Di.return=Ve,Di}finally{}}}var ie=q(!0),pe=q(!1),Ae=!1;function me(o){o.updateQueue={baseState:o.memoizedState,firstBaseUpdate:null,lastBaseUpdate:null,shared:{pending:null,lanes:0,hiddenCallbacks:null},callbacks:null}}function Ce(o,c){o=o.updateQueue,c.updateQueue===o&&(c.updateQueue={baseState:o.baseState,firstBaseUpdate:o.firstBaseUpdate,lastBaseUpdate:o.lastBaseUpdate,shared:o.shared,callbacks:null})}function Be(o){return{lane:o,tag:0,payload:null,callback:null,next:null}}function Xe(o,c,m){var b=o.updateQueue;if(b===null)return null;if(b=b.shared,(Oi&2)!==0){var D=b.pending;return D===null?c.next=c:(c.next=D.next,D.next=c),b.pending=c,c=OA(o),M1(o,null,m),c}return BA(o,b,c,m),OA(o)}function qe(o,c,m){if(c=c.updateQueue,c!==null&&(c=c.shared,(m&4194048)!==0)){var b=c.lanes;b&=o.pendingLanes,m|=b,c.lanes=m,At(o,m)}}function ke(o,c){var m=o.updateQueue,b=o.alternate;if(b!==null&&(b=b.updateQueue,m===b)){var D=null,P=null;if(m=m.firstBaseUpdate,m!==null){do{var $={lane:m.lane,tag:m.tag,payload:m.payload,callback:null,next:null};P===null?D=P=$:P=P.next=$,m=m.next}while(m!==null);P===null?D=P=c:P=P.next=c}else D=P=c;m={baseState:b.baseState,firstBaseUpdate:D,lastBaseUpdate:P,shared:b.shared,callbacks:b.callbacks},o.updateQueue=m;return}o=m.lastBaseUpdate,o===null?m.firstBaseUpdate=c:o.next=c,m.lastBaseUpdate=c}var Re=!1;function Pt(){if(Re){var o=fr;if(o!==null)throw o}}function rn(o,c,m,b){Re=!1;var D=o.updateQueue;Ae=!1;var P=D.firstBaseUpdate,$=D.lastBaseUpdate,re=D.shared.pending;if(re!==null){D.shared.pending=null;var we=re,Je=we.next;we.next=null,$===null?P=Je:$.next=Je,$=we;var ut=o.alternate;ut!==null&&(ut=ut.updateQueue,re=ut.lastBaseUpdate,re!==$&&(re===null?ut.firstBaseUpdate=Je:re.next=Je,ut.lastBaseUpdate=we))}if(P!==null){var St=D.baseState;$=0,ut=Je=we=null,re=P;do{var et=re.lane&-536870913,tt=et!==re.lane;if(tt?(xi&et)===et:(b&et)===et){et!==0&&et===eh&&(Re=!0),ut!==null&&(ut=ut.next={lane:0,tag:re.tag,payload:re.payload,callback:null,next:null});e:{var ln=o,Dn=re;et=c;var er=m;switch(Dn.tag){case 1:if(ln=Dn.payload,typeof ln=="function"){St=ln.call(er,St,et);break e}St=ln;break e;case 3:ln.flags=ln.flags&-65537|128;case 0:if(ln=Dn.payload,et=typeof ln=="function"?ln.call(er,St,et):ln,et==null)break e;St=v({},St,et);break e;case 2:Ae=!0}}et=re.callback,et!==null&&(o.flags|=64,tt&&(o.flags|=8192),tt=D.callbacks,tt===null?D.callbacks=[et]:tt.push(et))}else tt={lane:et,tag:re.tag,payload:re.payload,callback:re.callback,next:null},ut===null?(Je=ut=tt,we=St):ut=ut.next=tt,$|=et;if(re=re.next,re===null){if(re=D.shared.pending,re===null)break;tt=re,re=tt.next,tt.next=null,D.lastBaseUpdate=tt,D.shared.pending=null}}while(!0);ut===null&&(we=St),D.baseState=we,D.firstBaseUpdate=Je,D.lastBaseUpdate=ut,P===null&&(D.shared.lanes=0),rh|=$,o.lanes=$,o.memoizedState=St}}function en(o,c){if(typeof o!="function")throw Error(n(191,o));o.call(c)}function Un(o,c){var m=o.callbacks;if(m!==null)for(o.callbacks=null,o=0;oP?P:8;var $=Q.T,re={};Q.T=re,jx(o,!1,c,m);try{var we=D(),Je=Q.S;if(Je!==null&&Je(re,we),we!==null&&typeof we=="object"&&typeof we.then=="function"){var ut=N1(we,b);Mp(o,c,ut,Ao(o))}else Mp(o,c,b,Ao(o))}catch(St){Mp(o,c,{then:function(){},status:"rejected",reason:St},Ao())}finally{le.p=P,$!==null&&re.types!==null&&($.types=re.types),Q.T=$}}function gI(){}function Vx(o,c,m,b){if(o.tag!==5)throw Error(n(476));var D=N4(o).queue;R4(o,D,c,de,m===null?gI:function(){return D4(o),m(b)})}function N4(o){var c=o.memoizedState;if(c!==null)return c;c={memoizedState:de,baseState:de,baseQueue:null,queue:{pending:null,lanes:0,dispatch:null,lastRenderedReducer:nc,lastRenderedState:de},next:null};var m={};return c.next={memoizedState:m,baseState:m,baseQueue:null,queue:{pending:null,lanes:0,dispatch:null,lastRenderedReducer:nc,lastRenderedState:m},next:null},o.memoizedState=c,o=o.alternate,o!==null&&(o.memoizedState=c),c}function D4(o){var c=N4(o);c.next===null&&(c=o.alternate.memoizedState),Mp(o,c.next.queue,{},Ao())}function Hx(){return As(Vp)}function P4(){return jr().memoizedState}function L4(){return jr().memoizedState}function vI(o){for(var c=o.return;c!==null;){switch(c.tag){case 24:case 3:var m=Ao();o=Be(m);var b=Xe(c,o,m);b!==null&&(Ia(b,c,m),qe(b,c,m)),c={cache:Ur()},o.payload=c;return}c=c.return}}function _I(o,c,m){var b=Ao();m={lane:b,revertLane:0,gesture:null,action:m,hasEagerState:!1,eagerState:null,next:null},k1(o)?B4(c,m):(m=gp(o,c,m,b),m!==null&&(Ia(m,o,b),O4(m,c,b)))}function U4(o,c,m){var b=Ao();Mp(o,c,m,b)}function Mp(o,c,m,b){var D={lane:b,revertLane:0,gesture:null,action:m,hasEagerState:!1,eagerState:null,next:null};if(k1(o))B4(c,D);else{var P=o.alternate;if(o.lanes===0&&(P===null||P.lanes===0)&&(P=c.lastRenderedReducer,P!==null))try{var $=c.lastRenderedState,re=P($,m);if(D.hasEagerState=!0,D.eagerState=re,Aa(re,$))return BA(o,c,D,0),or===null&&UA(),!1}catch{}finally{}if(m=gp(o,c,D,b),m!==null)return Ia(m,o,b),O4(m,c,b),!0}return!1}function jx(o,c,m,b){if(b={lane:2,revertLane:Sb(),gesture:null,action:b,hasEagerState:!1,eagerState:null,next:null},k1(o)){if(c)throw Error(n(479))}else c=gp(o,m,b,2),c!==null&&Ia(c,o,2)}function k1(o){var c=o.alternate;return o===ri||c!==null&&c===ri}function B4(o,c){jA=P1=!0;var m=o.pending;m===null?c.next=c:(c.next=m.next,m.next=c),o.pending=c}function O4(o,c,m){if((m&4194048)!==0){var b=c.lanes;b&=o.pendingLanes,m|=b,c.lanes=m,At(o,m)}}var Ep={readContext:As,use:B1,useCallback:Br,useContext:Br,useEffect:Br,useImperativeHandle:Br,useLayoutEffect:Br,useInsertionEffect:Br,useMemo:Br,useReducer:Br,useRef:Br,useState:Br,useDebugValue:Br,useDeferredValue:Br,useTransition:Br,useSyncExternalStore:Br,useId:Br,useHostTransitionStatus:Br,useFormState:Br,useActionState:Br,useOptimistic:Br,useMemoCache:Br,useCacheRefresh:Br};Ep.useEffectEvent=Br;var I4={readContext:As,use:B1,useCallback:function(o,c){return ma().memoizedState=[o,c===void 0?null:c],o},useContext:As,useEffect:y4,useImperativeHandle:function(o,c,m){m=m!=null?m.concat([o]):null,I1(4194308,4,T4.bind(null,c,o),m)},useLayoutEffect:function(o,c){return I1(4194308,4,o,c)},useInsertionEffect:function(o,c){I1(4,2,o,c)},useMemo:function(o,c){var m=ma();c=c===void 0?null:c;var b=o();if(mf){kt(!0);try{o()}finally{kt(!1)}}return m.memoizedState=[b,c],b},useReducer:function(o,c,m){var b=ma();if(m!==void 0){var D=m(c);if(mf){kt(!0);try{m(c)}finally{kt(!1)}}}else D=c;return b.memoizedState=b.baseState=D,o={pending:null,lanes:0,dispatch:null,lastRenderedReducer:o,lastRenderedState:D},b.queue=o,o=o.dispatch=_I.bind(null,ri,o),[b.memoizedState,o]},useRef:function(o){var c=ma();return o={current:o},c.memoizedState=o},useState:function(o){o=Fx(o);var c=o.queue,m=U4.bind(null,ri,c);return c.dispatch=m,[o.memoizedState,m]},useDebugValue:Gx,useDeferredValue:function(o,c){var m=ma();return qx(m,o,c)},useTransition:function(){var o=Fx(!1);return o=R4.bind(null,ri,o.queue,!0,!1),ma().memoizedState=o,[!1,o]},useSyncExternalStore:function(o,c,m){var b=ri,D=ma();if(mi){if(m===void 0)throw Error(n(407));m=m()}else{if(m=c(),or===null)throw Error(n(349));(xi&127)!==0||r4(b,c,m)}D.memoizedState=m;var P={value:m,getSnapshot:c};return D.queue=P,y4(a4.bind(null,b,P,o),[o]),b.flags|=2048,$A(9,{destroy:void 0},s4.bind(null,b,P,m,c),null),m},useId:function(){var o=ma(),c=or.identifierPrefix;if(mi){var m=Da,b=Na;m=(b&~(1<<32-qt(b)-1)).toString(32)+m,c="_"+c+"R_"+m,m=L1++,0<\/script>",P=P.removeChild(P.firstChild);break;case"select":P=typeof b.is=="string"?$.createElement("select",{is:b.is}):$.createElement("select"),b.multiple?P.multiple=!0:b.size&&(P.size=b.size);break;default:P=typeof b.is=="string"?$.createElement(D,{is:b.is}):$.createElement(D)}}P[Xn]=c,P[un]=b;e:for($=c.child;$!==null;){if($.tag===5||$.tag===6)P.appendChild($.stateNode);else if($.tag!==4&&$.tag!==27&&$.child!==null){$.child.return=$,$=$.child;continue}if($===c)break e;for(;$.sibling===null;){if($.return===null||$.return===c)break e;$=$.return}$.sibling.return=$.return,$=$.sibling}c.stateNode=P;e:switch(Us(P,D,b),D){case"button":case"input":case"select":case"textarea":b=!!b.autoFocus;break e;case"img":b=!0;break e;default:b=!1}b&&rc(c)}}return Ar(c),sb(c,c.type,o===null?null:o.memoizedProps,c.pendingProps,m),null;case 6:if(o&&c.stateNode!=null)o.memoizedProps!==b&&rc(c);else{if(typeof b!="string"&&c.stateNode===null)throw Error(n(166));if(o=ye.current,ar(c)){if(o=c.stateNode,m=c.memoizedProps,b=null,D=fs,D!==null)switch(D.tag){case 27:case 5:b=D.memoizedProps}o[Xn]=c,o=!!(o.nodeValue===m||b!==null&&b.suppressHydrationWarning===!0||nC(o.nodeValue,m)),o||zl(c,!0)}else o=s2(o).createTextNode(b),o[Xn]=c,c.stateNode=o}return Ar(c),null;case 31:if(m=c.memoizedState,o===null||o.memoizedState!==null){if(b=ar(c),m!==null){if(o===null){if(!b)throw Error(n(318));if(o=c.memoizedState,o=o!==null?o.dehydrated:null,!o)throw Error(n(557));o[Xn]=c}else Yu(),(c.flags&128)===0&&(c.memoizedState=null),c.flags|=4;Ar(c),o=!1}else m=Sp(),o!==null&&o.memoizedState!==null&&(o.memoizedState.hydrationErrors=m),o=!0;if(!o)return c.flags&256?(co(c),c):(co(c),null);if((c.flags&128)!==0)throw Error(n(558))}return Ar(c),null;case 13:if(b=c.memoizedState,o===null||o.memoizedState!==null&&o.memoizedState.dehydrated!==null){if(D=ar(c),b!==null&&b.dehydrated!==null){if(o===null){if(!D)throw Error(n(318));if(D=c.memoizedState,D=D!==null?D.dehydrated:null,!D)throw Error(n(317));D[Xn]=c}else Yu(),(c.flags&128)===0&&(c.memoizedState=null),c.flags|=4;Ar(c),D=!1}else D=Sp(),o!==null&&o.memoizedState!==null&&(o.memoizedState.hydrationErrors=D),D=!0;if(!D)return c.flags&256?(co(c),c):(co(c),null)}return co(c),(c.flags&128)!==0?(c.lanes=m,c):(m=b!==null,o=o!==null&&o.memoizedState!==null,m&&(b=c.child,D=null,b.alternate!==null&&b.alternate.memoizedState!==null&&b.alternate.memoizedState.cachePool!==null&&(D=b.alternate.memoizedState.cachePool.pool),P=null,b.memoizedState!==null&&b.memoizedState.cachePool!==null&&(P=b.memoizedState.cachePool.pool),P!==D&&(b.flags|=2048)),m!==o&&m&&(c.child.flags|=8192),H1(c,c.updateQueue),Ar(c),null);case 4:return vt(),o===null&&Eb(c.stateNode.containerInfo),Ar(c),null;case 10:return Io(c.type),Ar(c),null;case 19:if(be(Hr),b=c.memoizedState,b===null)return Ar(c),null;if(D=(c.flags&128)!==0,P=b.rendering,P===null)if(D)Rp(b,!1);else{if(Or!==0||o!==null&&(o.flags&128)!==0)for(o=c.child;o!==null;){if(P=D1(o),P!==null){for(c.flags|=128,Rp(b,!1),o=P.updateQueue,c.updateQueue=o,H1(c,o),c.subtreeFlags=0,o=m,m=c.child;m!==null;)E1(m,o),m=m.sibling;return We(Hr,Hr.current&1|2),mi&&Oo(c,b.treeForkCount),c.child}o=o.sibling}b.tail!==null&&Me()>Y1&&(c.flags|=128,D=!0,Rp(b,!1),c.lanes=4194304)}else{if(!D)if(o=D1(P),o!==null){if(c.flags|=128,D=!0,o=o.updateQueue,c.updateQueue=o,H1(c,o),Rp(b,!0),b.tail===null&&b.tailMode==="hidden"&&!P.alternate&&!mi)return Ar(c),null}else 2*Me()-b.renderingStartTime>Y1&&m!==536870912&&(c.flags|=128,D=!0,Rp(b,!1),c.lanes=4194304);b.isBackwards?(P.sibling=c.child,c.child=P):(o=b.last,o!==null?o.sibling=P:c.child=P,b.last=P)}return b.tail!==null?(o=b.tail,b.rendering=o,b.tail=o.sibling,b.renderingStartTime=Me(),o.sibling=null,m=Hr.current,We(Hr,D?m&1|2:m&1),mi&&Oo(c,b.treeForkCount),o):(Ar(c),null);case 22:case 23:return co(c),Lt(),b=c.memoizedState!==null,o!==null?o.memoizedState!==null!==b&&(c.flags|=8192):b&&(c.flags|=8192),b?(m&536870912)!==0&&(c.flags&128)===0&&(Ar(c),c.subtreeFlags&6&&(c.flags|=8192)):Ar(c),m=c.updateQueue,m!==null&&H1(c,m.retryQueue),m=null,o!==null&&o.memoizedState!==null&&o.memoizedState.cachePool!==null&&(m=o.memoizedState.cachePool.pool),b=null,c.memoizedState!==null&&c.memoizedState.cachePool!==null&&(b=c.memoizedState.cachePool.pool),b!==m&&(c.flags|=2048),o!==null&&be(Nt),null;case 24:return m=null,o!==null&&(m=o.memoizedState.cache),c.memoizedState.cache!==m&&(c.flags|=2048),Io(Yt),Ar(c),null;case 25:return null;case 30:return null}throw Error(n(156,c.tag))}function TI(o,c){switch(_p(c),c.tag){case 1:return o=c.flags,o&65536?(c.flags=o&-65537|128,c):null;case 3:return Io(Yt),vt(),o=c.flags,(o&65536)!==0&&(o&128)===0?(c.flags=o&-65537|128,c):null;case 26:case 27:case 5:return It(c),null;case 31:if(c.memoizedState!==null){if(co(c),c.alternate===null)throw Error(n(340));Yu()}return o=c.flags,o&65536?(c.flags=o&-65537|128,c):null;case 13:if(co(c),o=c.memoizedState,o!==null&&o.dehydrated!==null){if(c.alternate===null)throw Error(n(340));Yu()}return o=c.flags,o&65536?(c.flags=o&-65537|128,c):null;case 19:return be(Hr),null;case 4:return vt(),null;case 10:return Io(c.type),null;case 22:case 23:return co(c),Lt(),o!==null&&be(Nt),o=c.flags,o&65536?(c.flags=o&-65537|128,c):null;case 24:return Io(Yt),null;case 25:return null;default:return null}}function o8(o,c){switch(_p(c),c.tag){case 3:Io(Yt),vt();break;case 26:case 27:case 5:It(c);break;case 4:vt();break;case 31:c.memoizedState!==null&&co(c);break;case 13:co(c);break;case 19:be(Hr);break;case 10:Io(c.type);break;case 22:case 23:co(c),Lt(),o!==null&&be(Nt);break;case 24:Io(Yt)}}function Np(o,c){try{var m=c.updateQueue,b=m!==null?m.lastEffect:null;if(b!==null){var D=b.next;m=D;do{if((m.tag&o)===o){b=void 0;var P=m.create,$=m.inst;b=P(),$.destroy=b}m=m.next}while(m!==D)}}catch(re){Yi(c,c.return,re)}}function nh(o,c,m){try{var b=c.updateQueue,D=b!==null?b.lastEffect:null;if(D!==null){var P=D.next;b=P;do{if((b.tag&o)===o){var $=b.inst,re=$.destroy;if(re!==void 0){$.destroy=void 0,D=c;var we=m,Je=re;try{Je()}catch(ut){Yi(D,we,ut)}}}b=b.next}while(b!==P)}}catch(ut){Yi(c,c.return,ut)}}function l8(o){var c=o.updateQueue;if(c!==null){var m=o.stateNode;try{Un(c,m)}catch(b){Yi(o,o.return,b)}}}function u8(o,c,m){m.props=gf(o.type,o.memoizedProps),m.state=o.memoizedState;try{m.componentWillUnmount()}catch(b){Yi(o,c,b)}}function Dp(o,c){try{var m=o.ref;if(m!==null){switch(o.tag){case 26:case 27:case 5:var b=o.stateNode;break;case 30:b=o.stateNode;break;default:b=o.stateNode}typeof m=="function"?o.refCleanup=m(b):m.current=b}}catch(D){Yi(o,c,D)}}function ql(o,c){var m=o.ref,b=o.refCleanup;if(m!==null)if(typeof b=="function")try{b()}catch(D){Yi(o,c,D)}finally{o.refCleanup=null,o=o.alternate,o!=null&&(o.refCleanup=null)}else if(typeof m=="function")try{m(null)}catch(D){Yi(o,c,D)}else m.current=null}function c8(o){var c=o.type,m=o.memoizedProps,b=o.stateNode;try{e:switch(c){case"button":case"input":case"select":case"textarea":m.autoFocus&&b.focus();break e;case"img":m.src?b.src=m.src:m.srcSet&&(b.srcset=m.srcSet)}}catch(D){Yi(o,o.return,D)}}function ab(o,c,m){try{var b=o.stateNode;WI(b,o.type,m,c),b[un]=c}catch(D){Yi(o,o.return,D)}}function h8(o){return o.tag===5||o.tag===3||o.tag===26||o.tag===27&&uh(o.type)||o.tag===4}function ob(o){e:for(;;){for(;o.sibling===null;){if(o.return===null||h8(o.return))return null;o=o.return}for(o.sibling.return=o.return,o=o.sibling;o.tag!==5&&o.tag!==6&&o.tag!==18;){if(o.tag===27&&uh(o.type)||o.flags&2||o.child===null||o.tag===4)continue e;o.child.return=o,o=o.child}if(!(o.flags&2))return o.stateNode}}function lb(o,c,m){var b=o.tag;if(b===5||b===6)o=o.stateNode,c?(m.nodeType===9?m.body:m.nodeName==="HTML"?m.ownerDocument.body:m).insertBefore(o,c):(c=m.nodeType===9?m.body:m.nodeName==="HTML"?m.ownerDocument.body:m,c.appendChild(o),m=m._reactRootContainer,m!=null||c.onclick!==null||(c.onclick=Po));else if(b!==4&&(b===27&&uh(o.type)&&(m=o.stateNode,c=null),o=o.child,o!==null))for(lb(o,c,m),o=o.sibling;o!==null;)lb(o,c,m),o=o.sibling}function j1(o,c,m){var b=o.tag;if(b===5||b===6)o=o.stateNode,c?m.insertBefore(o,c):m.appendChild(o);else if(b!==4&&(b===27&&uh(o.type)&&(m=o.stateNode),o=o.child,o!==null))for(j1(o,c,m),o=o.sibling;o!==null;)j1(o,c,m),o=o.sibling}function f8(o){var c=o.stateNode,m=o.memoizedProps;try{for(var b=o.type,D=c.attributes;D.length;)c.removeAttributeNode(D[0]);Us(c,b,m),c[Xn]=o,c[un]=m}catch(P){Yi(o,o.return,P)}}var sc=!1,ns=!1,ub=!1,A8=typeof WeakSet=="function"?WeakSet:Set,Ms=null;function wI(o,c){if(o=o.containerInfo,Nb=f2,o=Ol(o),Il(o)){if("selectionStart"in o)var m={start:o.selectionStart,end:o.selectionEnd};else e:{m=(m=o.ownerDocument)&&m.defaultView||window;var b=m.getSelection&&m.getSelection();if(b&&b.rangeCount!==0){m=b.anchorNode;var D=b.anchorOffset,P=b.focusNode;b=b.focusOffset;try{m.nodeType,P.nodeType}catch{m=null;break e}var $=0,re=-1,we=-1,Je=0,ut=0,St=o,et=null;t:for(;;){for(var tt;St!==m||D!==0&&St.nodeType!==3||(re=$+D),St!==P||b!==0&&St.nodeType!==3||(we=$+b),St.nodeType===3&&($+=St.nodeValue.length),(tt=St.firstChild)!==null;)et=St,St=tt;for(;;){if(St===o)break t;if(et===m&&++Je===D&&(re=$),et===P&&++ut===b&&(we=$),(tt=St.nextSibling)!==null)break;St=et,et=St.parentNode}St=tt}m=re===-1||we===-1?null:{start:re,end:we}}else m=null}m=m||{start:0,end:0}}else m=null;for(Db={focusedElem:o,selectionRange:m},f2=!1,Ms=c;Ms!==null;)if(c=Ms,o=c.child,(c.subtreeFlags&1028)!==0&&o!==null)o.return=c,Ms=o;else for(;Ms!==null;){switch(c=Ms,P=c.alternate,o=c.flags,c.tag){case 0:if((o&4)!==0&&(o=c.updateQueue,o=o!==null?o.events:null,o!==null))for(m=0;m title"))),Us(P,b,m),P[Xn]=o,Ie(P),b=P;break e;case"link":var $=_C("link","href",D).get(b+(m.href||""));if($){for(var re=0;re<$.length;re++)if(P=$[re],P.getAttribute("href")===(m.href==null||m.href===""?null:m.href)&&P.getAttribute("rel")===(m.rel==null?null:m.rel)&&P.getAttribute("title")===(m.title==null?null:m.title)&&P.getAttribute("crossorigin")===(m.crossOrigin==null?null:m.crossOrigin)){$.splice(re,1);break t}}P=D.createElement(b),Us(P,b,m),D.head.appendChild(P);break;case"meta":if($=_C("meta","content",D).get(b+(m.content||""))){for(re=0;re<$.length;re++)if(P=$[re],P.getAttribute("content")===(m.content==null?null:""+m.content)&&P.getAttribute("name")===(m.name==null?null:m.name)&&P.getAttribute("property")===(m.property==null?null:m.property)&&P.getAttribute("http-equiv")===(m.httpEquiv==null?null:m.httpEquiv)&&P.getAttribute("charset")===(m.charSet==null?null:m.charSet)){$.splice(re,1);break t}}P=D.createElement(b),Us(P,b,m),D.head.appendChild(P);break;default:throw Error(n(468,b))}P[Xn]=o,Ie(P),b=P}o.stateNode=b}else yC(D,o.type,o.stateNode);else o.stateNode=vC(D,b,o.memoizedProps);else P!==b?(P===null?m.stateNode!==null&&(m=m.stateNode,m.parentNode.removeChild(m)):P.count--,b===null?yC(D,o.type,o.stateNode):vC(D,b,o.memoizedProps)):b===null&&o.stateNode!==null&&ab(o,o.memoizedProps,m.memoizedProps)}break;case 27:Ua(c,o),Ba(o),b&512&&(ns||m===null||ql(m,m.return)),m!==null&&b&4&&ab(o,o.memoizedProps,m.memoizedProps);break;case 5:if(Ua(c,o),Ba(o),b&512&&(ns||m===null||ql(m,m.return)),o.flags&32){D=o.stateNode;try{pi(D,"")}catch(ln){Yi(o,o.return,ln)}}b&4&&o.stateNode!=null&&(D=o.memoizedProps,ab(o,D,m!==null?m.memoizedProps:D)),b&1024&&(ub=!0);break;case 6:if(Ua(c,o),Ba(o),b&4){if(o.stateNode===null)throw Error(n(162));b=o.memoizedProps,m=o.stateNode;try{m.nodeValue=b}catch(ln){Yi(o,o.return,ln)}}break;case 3:if(l2=null,D=dl,dl=a2(c.containerInfo),Ua(c,o),dl=D,Ba(o),b&4&&m!==null&&m.memoizedState.isDehydrated)try{sd(c.containerInfo)}catch(ln){Yi(o,o.return,ln)}ub&&(ub=!1,y8(o));break;case 4:b=dl,dl=a2(o.stateNode.containerInfo),Ua(c,o),Ba(o),dl=b;break;case 12:Ua(c,o),Ba(o);break;case 31:Ua(c,o),Ba(o),b&4&&(b=o.updateQueue,b!==null&&(o.updateQueue=null,W1(o,b)));break;case 13:Ua(c,o),Ba(o),o.child.flags&8192&&o.memoizedState!==null!=(m!==null&&m.memoizedState!==null)&&(X1=Me()),b&4&&(b=o.updateQueue,b!==null&&(o.updateQueue=null,W1(o,b)));break;case 22:D=o.memoizedState!==null;var we=m!==null&&m.memoizedState!==null,Je=sc,ut=ns;if(sc=Je||D,ns=ut||we,Ua(c,o),ns=ut,sc=Je,Ba(o),b&8192)e:for(c=o.stateNode,c._visibility=D?c._visibility&-2:c._visibility|1,D&&(m===null||we||sc||ns||vf(o)),m=null,c=o;;){if(c.tag===5||c.tag===26){if(m===null){we=m=c;try{if(P=we.stateNode,D)$=P.style,typeof $.setProperty=="function"?$.setProperty("display","none","important"):$.display="none";else{re=we.stateNode;var St=we.memoizedProps.style,et=St!=null&&St.hasOwnProperty("display")?St.display:null;re.style.display=et==null||typeof et=="boolean"?"":(""+et).trim()}}catch(ln){Yi(we,we.return,ln)}}}else if(c.tag===6){if(m===null){we=c;try{we.stateNode.nodeValue=D?"":we.memoizedProps}catch(ln){Yi(we,we.return,ln)}}}else if(c.tag===18){if(m===null){we=c;try{var tt=we.stateNode;D?uC(tt,!0):uC(we.stateNode,!1)}catch(ln){Yi(we,we.return,ln)}}}else if((c.tag!==22&&c.tag!==23||c.memoizedState===null||c===o)&&c.child!==null){c.child.return=c,c=c.child;continue}if(c===o)break e;for(;c.sibling===null;){if(c.return===null||c.return===o)break e;m===c&&(m=null),c=c.return}m===c&&(m=null),c.sibling.return=c.return,c=c.sibling}b&4&&(b=o.updateQueue,b!==null&&(m=b.retryQueue,m!==null&&(b.retryQueue=null,W1(o,m))));break;case 19:Ua(c,o),Ba(o),b&4&&(b=o.updateQueue,b!==null&&(o.updateQueue=null,W1(o,b)));break;case 30:break;case 21:break;default:Ua(c,o),Ba(o)}}function Ba(o){var c=o.flags;if(c&2){try{for(var m,b=o.return;b!==null;){if(h8(b)){m=b;break}b=b.return}if(m==null)throw Error(n(160));switch(m.tag){case 27:var D=m.stateNode,P=ob(o);j1(o,P,D);break;case 5:var $=m.stateNode;m.flags&32&&(pi($,""),m.flags&=-33);var re=ob(o);j1(o,re,$);break;case 3:case 4:var we=m.stateNode.containerInfo,Je=ob(o);lb(o,Je,we);break;default:throw Error(n(161))}}catch(ut){Yi(o,o.return,ut)}o.flags&=-3}c&4096&&(o.flags&=-4097)}function y8(o){if(o.subtreeFlags&1024)for(o=o.child;o!==null;){var c=o;y8(c),c.tag===5&&c.flags&1024&&c.stateNode.reset(),o=o.sibling}}function oc(o,c){if(c.subtreeFlags&8772)for(c=c.child;c!==null;)d8(o,c.alternate,c),c=c.sibling}function vf(o){for(o=o.child;o!==null;){var c=o;switch(c.tag){case 0:case 11:case 14:case 15:nh(4,c,c.return),vf(c);break;case 1:ql(c,c.return);var m=c.stateNode;typeof m.componentWillUnmount=="function"&&u8(c,c.return,m),vf(c);break;case 27:zp(c.stateNode);case 26:case 5:ql(c,c.return),vf(c);break;case 22:c.memoizedState===null&&vf(c);break;case 30:vf(c);break;default:vf(c)}o=o.sibling}}function lc(o,c,m){for(m=m&&(c.subtreeFlags&8772)!==0,c=c.child;c!==null;){var b=c.alternate,D=o,P=c,$=P.flags;switch(P.tag){case 0:case 11:case 15:lc(D,P,m),Np(4,P);break;case 1:if(lc(D,P,m),b=P,D=b.stateNode,typeof D.componentDidMount=="function")try{D.componentDidMount()}catch(Je){Yi(b,b.return,Je)}if(b=P,D=b.updateQueue,D!==null){var re=b.stateNode;try{var we=D.shared.hiddenCallbacks;if(we!==null)for(D.shared.hiddenCallbacks=null,D=0;Der&&($=er,er=Dn,Dn=$);var Ve=LA(re,Dn),Ue=LA(re,er);if(Ve&&Ue&&(tt.rangeCount!==1||tt.anchorNode!==Ve.node||tt.anchorOffset!==Ve.offset||tt.focusNode!==Ue.node||tt.focusOffset!==Ue.offset)){var Ke=St.createRange();Ke.setStart(Ve.node,Ve.offset),tt.removeAllRanges(),Dn>er?(tt.addRange(Ke),tt.extend(Ue.node,Ue.offset)):(Ke.setEnd(Ue.node,Ue.offset),tt.addRange(Ke))}}}}for(St=[],tt=re;tt=tt.parentNode;)tt.nodeType===1&&St.push({element:tt,left:tt.scrollLeft,top:tt.scrollTop});for(typeof re.focus=="function"&&re.focus(),re=0;rem?32:m,Q.T=null,m=mb,mb=null;var P=ah,$=cc;if(ds=0,ZA=ah=null,cc=0,(Oi&6)!==0)throw Error(n(331));var re=Oi;if(Oi|=4,T8(P.current),x8(P,P.current,$,m),Oi=re,Ip(0,!1),jt&&typeof jt.onPostCommitFiberRoot=="function")try{jt.onPostCommitFiberRoot(sn,P)}catch{}return!0}finally{le.p=D,Q.T=b,q8(o,c)}}function H8(o,c,m){c=Ca(m,c),c=Yx(o.stateNode,c,2),o=Xe(o,c,2),o!==null&&($i(o,2),Vl(o))}function Yi(o,c,m){if(o.tag===3)H8(o,o,m);else for(;c!==null;){if(c.tag===3){H8(c,o,m);break}else if(c.tag===1){var b=c.stateNode;if(typeof c.type.getDerivedStateFromError=="function"||typeof b.componentDidCatch=="function"&&(sh===null||!sh.has(b))){o=Ca(m,o),m=j4(2),b=Xe(c,m,2),b!==null&&(W4(m,b,c,o),$i(b,2),Vl(b));break}}c=c.return}}function yb(o,c,m){var b=o.pingCache;if(b===null){b=o.pingCache=new CI;var D=new Set;b.set(c,D)}else D=b.get(c),D===void 0&&(D=new Set,b.set(c,D));D.has(m)||(fb=!0,D.add(m),o=LI.bind(null,o,c,m),c.then(o,o))}function LI(o,c,m){var b=o.pingCache;b!==null&&b.delete(c),o.pingedLanes|=o.suspendedLanes&m,o.warmLanes&=~m,or===o&&(xi&m)===m&&(Or===4||Or===3&&(xi&62914560)===xi&&300>Me()-X1?(Oi&2)===0&&JA(o,0):Ab|=m,KA===xi&&(KA=0)),Vl(o)}function j8(o,c){c===0&&(c=rr()),o=ju(o,c),o!==null&&($i(o,c),Vl(o))}function UI(o){var c=o.memoizedState,m=0;c!==null&&(m=c.retryLane),j8(o,m)}function BI(o,c){var m=0;switch(o.tag){case 31:case 13:var b=o.stateNode,D=o.memoizedState;D!==null&&(m=D.retryLane);break;case 19:b=o.stateNode;break;case 22:b=o.stateNode._retryCache;break;default:throw Error(n(314))}b!==null&&b.delete(c),j8(o,m)}function OI(o,c){return _t(o,c)}var t2=null,td=null,xb=!1,n2=!1,bb=!1,lh=0;function Vl(o){o!==td&&o.next===null&&(td===null?t2=td=o:td=td.next=o),n2=!0,xb||(xb=!0,FI())}function Ip(o,c){if(!bb&&n2){bb=!0;do for(var m=!1,b=t2;b!==null;){if(o!==0){var D=b.pendingLanes;if(D===0)var P=0;else{var $=b.suspendedLanes,re=b.pingedLanes;P=(1<<31-qt(42|o)+1)-1,P&=D&~($&~re),P=P&201326741?P&201326741|1:P?P|2:0}P!==0&&(m=!0,Y8(b,P))}else P=xi,P=zt(b,b===or?P:0,b.cancelPendingCommit!==null||b.timeoutHandle!==-1),(P&3)===0||xn(b,P)||(m=!0,Y8(b,P));b=b.next}while(m);bb=!1}}function II(){W8()}function W8(){n2=xb=!1;var o=0;lh!==0&&XI()&&(o=lh);for(var c=Me(),m=null,b=t2;b!==null;){var D=b.next,P=$8(b,c);P===0?(b.next=null,m===null?t2=D:m.next=D,D===null&&(td=m)):(m=b,(o!==0||(P&3)!==0)&&(n2=!0)),b=D}ds!==0&&ds!==5||Ip(o),lh!==0&&(lh=0)}function $8(o,c){for(var m=o.suspendedLanes,b=o.pingedLanes,D=o.expirationTimes,P=o.pendingLanes&-62914561;0re)break;var ut=we.transferSize,St=we.initiatorType;ut&&iC(St)&&(we=we.responseEnd,$+=ut*(we"u"?null:document;function pC(o,c,m){var b=nd;if(b&&typeof c=="string"&&c){var D=at(c);D='link[rel="'+o+'"][href="'+D+'"]',typeof m=="string"&&(D+='[crossorigin="'+m+'"]'),dC.has(D)||(dC.add(D),o={rel:o,crossOrigin:m,href:c},b.querySelector(D)===null&&(c=b.createElement("link"),Us(c,"link",o),Ie(c),b.head.appendChild(c)))}}function iF(o){hc.D(o),pC("dns-prefetch",o,null)}function rF(o,c){hc.C(o,c),pC("preconnect",o,c)}function sF(o,c,m){hc.L(o,c,m);var b=nd;if(b&&o&&c){var D='link[rel="preload"][as="'+at(c)+'"]';c==="image"&&m&&m.imageSrcSet?(D+='[imagesrcset="'+at(m.imageSrcSet)+'"]',typeof m.imageSizes=="string"&&(D+='[imagesizes="'+at(m.imageSizes)+'"]')):D+='[href="'+at(o)+'"]';var P=D;switch(c){case"style":P=id(o);break;case"script":P=rd(o)}Go.has(P)||(o=v({rel:"preload",href:c==="image"&&m&&m.imageSrcSet?void 0:o,as:c},m),Go.set(P,o),b.querySelector(D)!==null||c==="style"&&b.querySelector(Gp(P))||c==="script"&&b.querySelector(qp(P))||(c=b.createElement("link"),Us(c,"link",o),Ie(c),b.head.appendChild(c)))}}function aF(o,c){hc.m(o,c);var m=nd;if(m&&o){var b=c&&typeof c.as=="string"?c.as:"script",D='link[rel="modulepreload"][as="'+at(b)+'"][href="'+at(o)+'"]',P=D;switch(b){case"audioworklet":case"paintworklet":case"serviceworker":case"sharedworker":case"worker":case"script":P=rd(o)}if(!Go.has(P)&&(o=v({rel:"modulepreload",href:o},c),Go.set(P,o),m.querySelector(D)===null)){switch(b){case"audioworklet":case"paintworklet":case"serviceworker":case"sharedworker":case"worker":case"script":if(m.querySelector(qp(P)))return}b=m.createElement("link"),Us(b,"link",o),Ie(b),m.head.appendChild(b)}}}function oF(o,c,m){hc.S(o,c,m);var b=nd;if(b&&o){var D=$e(b).hoistableStyles,P=id(o);c=c||"default";var $=D.get(P);if(!$){var re={loading:0,preload:null};if($=b.querySelector(Gp(P)))re.loading=5;else{o=v({rel:"stylesheet",href:o,"data-precedence":c},m),(m=Go.get(P))&&Fb(o,m);var we=$=b.createElement("link");Ie(we),Us(we,"link",o),we._p=new Promise(function(Je,ut){we.onload=Je,we.onerror=ut}),we.addEventListener("load",function(){re.loading|=1}),we.addEventListener("error",function(){re.loading|=2}),re.loading|=4,o2($,c,b)}$={type:"stylesheet",instance:$,count:1,state:re},D.set(P,$)}}}function lF(o,c){hc.X(o,c);var m=nd;if(m&&o){var b=$e(m).hoistableScripts,D=rd(o),P=b.get(D);P||(P=m.querySelector(qp(D)),P||(o=v({src:o,async:!0},c),(c=Go.get(D))&&kb(o,c),P=m.createElement("script"),Ie(P),Us(P,"link",o),m.head.appendChild(P)),P={type:"script",instance:P,count:1,state:null},b.set(D,P))}}function uF(o,c){hc.M(o,c);var m=nd;if(m&&o){var b=$e(m).hoistableScripts,D=rd(o),P=b.get(D);P||(P=m.querySelector(qp(D)),P||(o=v({src:o,async:!0,type:"module"},c),(c=Go.get(D))&&kb(o,c),P=m.createElement("script"),Ie(P),Us(P,"link",o),m.head.appendChild(P)),P={type:"script",instance:P,count:1,state:null},b.set(D,P))}}function mC(o,c,m,b){var D=(D=ye.current)?a2(D):null;if(!D)throw Error(n(446));switch(o){case"meta":case"title":return null;case"style":return typeof m.precedence=="string"&&typeof m.href=="string"?(c=id(m.href),m=$e(D).hoistableStyles,b=m.get(c),b||(b={type:"style",instance:null,count:0,state:null},m.set(c,b)),b):{type:"void",instance:null,count:0,state:null};case"link":if(m.rel==="stylesheet"&&typeof m.href=="string"&&typeof m.precedence=="string"){o=id(m.href);var P=$e(D).hoistableStyles,$=P.get(o);if($||(D=D.ownerDocument||D,$={type:"stylesheet",instance:null,count:0,state:{loading:0,preload:null}},P.set(o,$),(P=D.querySelector(Gp(o)))&&!P._p&&($.instance=P,$.state.loading=5),Go.has(o)||(m={rel:"preload",as:"style",href:m.href,crossOrigin:m.crossOrigin,integrity:m.integrity,media:m.media,hrefLang:m.hrefLang,referrerPolicy:m.referrerPolicy},Go.set(o,m),P||cF(D,o,m,$.state))),c&&b===null)throw Error(n(528,""));return $}if(c&&b!==null)throw Error(n(529,""));return null;case"script":return c=m.async,m=m.src,typeof m=="string"&&c&&typeof c!="function"&&typeof c!="symbol"?(c=rd(m),m=$e(D).hoistableScripts,b=m.get(c),b||(b={type:"script",instance:null,count:0,state:null},m.set(c,b)),b):{type:"void",instance:null,count:0,state:null};default:throw Error(n(444,o))}}function id(o){return'href="'+at(o)+'"'}function Gp(o){return'link[rel="stylesheet"]['+o+"]"}function gC(o){return v({},o,{"data-precedence":o.precedence,precedence:null})}function cF(o,c,m,b){o.querySelector('link[rel="preload"][as="style"]['+c+"]")?b.loading=1:(c=o.createElement("link"),b.preload=c,c.addEventListener("load",function(){return b.loading|=1}),c.addEventListener("error",function(){return b.loading|=2}),Us(c,"link",m),Ie(c),o.head.appendChild(c))}function rd(o){return'[src="'+at(o)+'"]'}function qp(o){return"script[async]"+o}function vC(o,c,m){if(c.count++,c.instance===null)switch(c.type){case"style":var b=o.querySelector('style[data-href~="'+at(m.href)+'"]');if(b)return c.instance=b,Ie(b),b;var D=v({},m,{"data-href":m.href,"data-precedence":m.precedence,href:null,precedence:null});return b=(o.ownerDocument||o).createElement("style"),Ie(b),Us(b,"style",D),o2(b,m.precedence,o),c.instance=b;case"stylesheet":D=id(m.href);var P=o.querySelector(Gp(D));if(P)return c.state.loading|=4,c.instance=P,Ie(P),P;b=gC(m),(D=Go.get(D))&&Fb(b,D),P=(o.ownerDocument||o).createElement("link"),Ie(P);var $=P;return $._p=new Promise(function(re,we){$.onload=re,$.onerror=we}),Us(P,"link",b),c.state.loading|=4,o2(P,m.precedence,o),c.instance=P;case"script":return P=rd(m.src),(D=o.querySelector(qp(P)))?(c.instance=D,Ie(D),D):(b=m,(D=Go.get(P))&&(b=v({},m),kb(b,D)),o=o.ownerDocument||o,D=o.createElement("script"),Ie(D),Us(D,"link",b),o.head.appendChild(D),c.instance=D);case"void":return null;default:throw Error(n(443,c.type))}else c.type==="stylesheet"&&(c.state.loading&4)===0&&(b=c.instance,c.state.loading|=4,o2(b,m.precedence,o));return c.instance}function o2(o,c,m){for(var b=m.querySelectorAll('link[rel="stylesheet"][data-precedence],style[data-precedence]'),D=b.length?b[b.length-1]:null,P=D,$=0;$ title"):null)}function hF(o,c,m){if(m===1||c.itemProp!=null)return!1;switch(o){case"meta":case"title":return!0;case"style":if(typeof c.precedence!="string"||typeof c.href!="string"||c.href==="")break;return!0;case"link":if(typeof c.rel!="string"||typeof c.href!="string"||c.href===""||c.onLoad||c.onError)break;switch(c.rel){case"stylesheet":return o=c.disabled,typeof c.precedence=="string"&&o==null;default:return!0}case"script":if(c.async&&typeof c.async!="function"&&typeof c.async!="symbol"&&!c.onLoad&&!c.onError&&c.src&&typeof c.src=="string")return!0}return!1}function xC(o){return!(o.type==="stylesheet"&&(o.state.loading&3)===0)}function fF(o,c,m,b){if(m.type==="stylesheet"&&(typeof b.media!="string"||matchMedia(b.media).matches!==!1)&&(m.state.loading&4)===0){if(m.instance===null){var D=id(b.href),P=c.querySelector(Gp(D));if(P){c=P._p,c!==null&&typeof c=="object"&&typeof c.then=="function"&&(o.count++,o=u2.bind(o),c.then(o,o)),m.state.loading|=4,m.instance=P,Ie(P);return}P=c.ownerDocument||c,b=gC(b),(D=Go.get(D))&&Fb(b,D),P=P.createElement("link"),Ie(P);var $=P;$._p=new Promise(function(re,we){$.onload=re,$.onerror=we}),Us(P,"link",b),m.instance=P}o.stylesheets===null&&(o.stylesheets=new Map),o.stylesheets.set(m,c),(c=m.state.preload)&&(m.state.loading&3)===0&&(o.count++,m=u2.bind(o),c.addEventListener("load",m),c.addEventListener("error",m))}}var zb=0;function AF(o,c){return o.stylesheets&&o.count===0&&h2(o,o.stylesheets),0zb?50:800)+c);return o.unsuspend=m,function(){o.unsuspend=null,clearTimeout(b),clearTimeout(D)}}:null}function u2(){if(this.count--,this.count===0&&(this.imgCount===0||!this.waitingForImages)){if(this.stylesheets)h2(this,this.stylesheets);else if(this.unsuspend){var o=this.unsuspend;this.unsuspend=null,o()}}}var c2=null;function h2(o,c){o.stylesheets=null,o.unsuspend!==null&&(o.count++,c2=new Map,c.forEach(dF,o),c2=null,u2.call(o))}function dF(o,c){if(!(c.state.loading&4)){var m=c2.get(o);if(m)var b=m.get(null);else{m=new Map,c2.set(o,m);for(var D=o.querySelectorAll("link[data-precedence],style[data-precedence]"),P=0;P"u"||typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE!="function"))try{__REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE(i)}catch(e){console.error(e)}}return i(),Xb.exports=NF(),Xb.exports}var PF=DF(),Le=_w();const LF=b7(Le);/** - * @license - * Copyright 2010-2024 Three.js Authors - * SPDX-License-Identifier: MIT - */const V0="172",Xo={ROTATE:0,DOLLY:1,PAN:2},Gd={ROTATE:0,PAN:1,DOLLY_PAN:2,DOLLY_ROTATE:3},S7=0,VS=1,T7=2,UF=0,yw=1,BF=2,xo=3,Nl=0,hr=1,as=2,Qa=0,Ka=1,a0=2,o0=3,l0=4,xw=5,Eo=100,bw=101,Sw=102,w7=103,M7=104,Tw=200,ww=201,Mw=202,Ew=203,qm=204,Vm=205,Cw=206,Rw=207,Nw=208,Dw=209,Pw=210,OF=211,IF=212,FF=213,kF=214,Hm=0,jm=1,Wm=2,kh=3,$m=4,Xm=5,Ym=6,Qm=7,Lg=0,E7=1,C7=2,Za=0,R7=1,N7=2,D7=3,P7=4,zF=5,L7=6,U7=7,Lw=300,Qo=301,Ko=302,zh=303,Gh=304,sA=306,aA=1e3,eu=1001,oA=1002,mr=1003,s_=1004,tu=1005,gs=1006,Jd=1007,Va=1008,GF=1008,aa=1009,Qf=1010,Kf=1011,wl=1012,Ns=1013,Rr=1014,$r=1015,Gs=1016,Ay=1017,dy=1018,Au=1020,py=35902,Uw=1021,Ug=1022,ks=1023,Bw=1024,Ow=1025,au=1026,du=1027,Bg=1028,H0=1029,lA=1030,j0=1031,qF=1032,W0=1033,Zf=33776,Bh=33777,Oh=33778,Ih=33779,Km=35840,Zm=35841,Jm=35842,eg=35843,tg=36196,u0=37492,c0=37496,h0=37808,f0=37809,A0=37810,d0=37811,p0=37812,m0=37813,g0=37814,v0=37815,_0=37816,y0=37817,x0=37818,b0=37819,S0=37820,T0=37821,Jf=36492,HS=36494,jS=36495,Iw=36283,ng=36284,ig=36285,rg=36286,VF=0,HF=1,jC=2,jF=3200,WF=3201,Dc=0,B7=1,Co="",_n="srgb",Ro="srgb-linear",a_="linear",Vi="srgb",$F=0,Uf=7680,XF=7681,YF=7682,QF=7683,KF=34055,ZF=34056,JF=5386,ek=512,tk=513,nk=514,ik=515,rk=516,sk=517,ak=518,WS=519,Fw=512,my=513,kw=514,gy=515,zw=516,Gw=517,qw=518,Vw=519,o_=35044,qd=35048,WC="300 es",Ha=2e3,pu=2001;class zc{addEventListener(e,t){this._listeners===void 0&&(this._listeners={});const n=this._listeners;n[e]===void 0&&(n[e]=[]),n[e].indexOf(t)===-1&&n[e].push(t)}hasEventListener(e,t){if(this._listeners===void 0)return!1;const n=this._listeners;return n[e]!==void 0&&n[e].indexOf(t)!==-1}removeEventListener(e,t){if(this._listeners===void 0)return;const r=this._listeners[e];if(r!==void 0){const s=r.indexOf(t);s!==-1&&r.splice(s,1)}}dispatchEvent(e){if(this._listeners===void 0)return;const n=this._listeners[e.type];if(n!==void 0){e.target=this;const r=n.slice(0);for(let s=0,a=r.length;s>8&255]+Js[i>>16&255]+Js[i>>24&255]+"-"+Js[e&255]+Js[e>>8&255]+"-"+Js[e>>16&15|64]+Js[e>>24&255]+"-"+Js[t&63|128]+Js[t>>8&255]+"-"+Js[t>>16&255]+Js[t>>24&255]+Js[n&255]+Js[n>>8&255]+Js[n>>16&255]+Js[n>>24&255]).toLowerCase()}function ni(i,e,t){return Math.max(e,Math.min(t,i))}function Hw(i,e){return(i%e+e)%e}function ok(i,e,t,n,r){return n+(i-e)*(r-n)/(t-e)}function lk(i,e,t){return i!==e?(t-i)/(e-i):0}function Cm(i,e,t){return(1-t)*i+t*e}function uk(i,e,t,n){return Cm(i,e,1-Math.exp(-t*n))}function ck(i,e=1){return e-Math.abs(Hw(i,e*2)-e)}function hk(i,e,t){return i<=e?0:i>=t?1:(i=(i-e)/(t-e),i*i*(3-2*i))}function fk(i,e,t){return i<=e?0:i>=t?1:(i=(i-e)/(t-e),i*i*i*(i*(i*6-15)+10))}function Ak(i,e){return i+Math.floor(Math.random()*(e-i+1))}function dk(i,e){return i+Math.random()*(e-i)}function pk(i){return i*(.5-Math.random())}function mk(i){i!==void 0&&($C=i);let e=$C+=1831565813;return e=Math.imul(e^e>>>15,e|1),e^=e+Math.imul(e^e>>>7,e|61),((e^e>>>14)>>>0)/4294967296}function gk(i){return i*Em}function vk(i){return i*w0}function _k(i){return(i&i-1)===0&&i!==0}function yk(i){return Math.pow(2,Math.ceil(Math.log(i)/Math.LN2))}function xk(i){return Math.pow(2,Math.floor(Math.log(i)/Math.LN2))}function bk(i,e,t,n,r){const s=Math.cos,a=Math.sin,l=s(t/2),u=a(t/2),h=s((e+n)/2),g=a((e+n)/2),v=s((e-n)/2),x=a((e-n)/2),S=s((n-e)/2),w=a((n-e)/2);switch(r){case"XYX":i.set(l*g,u*v,u*x,l*h);break;case"YZY":i.set(u*x,l*g,u*v,l*h);break;case"ZXZ":i.set(u*v,u*x,l*g,l*h);break;case"XZX":i.set(l*g,u*w,u*S,l*h);break;case"YXY":i.set(u*S,l*g,u*w,l*h);break;case"ZYZ":i.set(u*w,u*S,l*g,l*h);break;default:console.warn("THREE.MathUtils: .setQuaternionFromProperEuler() encountered an unknown order: "+r)}}function Ta(i,e){switch(e.constructor){case Float32Array:return i;case Uint32Array:return i/4294967295;case Uint16Array:return i/65535;case Uint8Array:return i/255;case Int32Array:return Math.max(i/2147483647,-1);case Int16Array:return Math.max(i/32767,-1);case Int8Array:return Math.max(i/127,-1);default:throw new Error("Invalid component type.")}}function si(i,e){switch(e.constructor){case Float32Array:return i;case Uint32Array:return Math.round(i*4294967295);case Uint16Array:return Math.round(i*65535);case Uint8Array:return Math.round(i*255);case Int32Array:return Math.round(i*2147483647);case Int16Array:return Math.round(i*32767);case Int8Array:return Math.round(i*127);default:throw new Error("Invalid component type.")}}const M0={DEG2RAD:Em,RAD2DEG:w0,generateUUID:ou,clamp:ni,euclideanModulo:Hw,mapLinear:ok,inverseLerp:lk,lerp:Cm,damp:uk,pingpong:ck,smoothstep:hk,smootherstep:fk,randInt:Ak,randFloat:dk,randFloatSpread:pk,seededRandom:mk,degToRad:gk,radToDeg:vk,isPowerOfTwo:_k,ceilPowerOfTwo:yk,floorPowerOfTwo:xk,setQuaternionFromProperEuler:bk,normalize:si,denormalize:Ta};class ft{constructor(e=0,t=0){ft.prototype.isVector2=!0,this.x=e,this.y=t}get width(){return this.x}set width(e){this.x=e}get height(){return this.y}set height(e){this.y=e}set(e,t){return this.x=e,this.y=t,this}setScalar(e){return this.x=e,this.y=e,this}setX(e){return this.x=e,this}setY(e){return this.y=e,this}setComponent(e,t){switch(e){case 0:this.x=t;break;case 1:this.y=t;break;default:throw new Error("index is out of range: "+e)}return this}getComponent(e){switch(e){case 0:return this.x;case 1:return this.y;default:throw new Error("index is out of range: "+e)}}clone(){return new this.constructor(this.x,this.y)}copy(e){return this.x=e.x,this.y=e.y,this}add(e){return this.x+=e.x,this.y+=e.y,this}addScalar(e){return this.x+=e,this.y+=e,this}addVectors(e,t){return this.x=e.x+t.x,this.y=e.y+t.y,this}addScaledVector(e,t){return this.x+=e.x*t,this.y+=e.y*t,this}sub(e){return this.x-=e.x,this.y-=e.y,this}subScalar(e){return this.x-=e,this.y-=e,this}subVectors(e,t){return this.x=e.x-t.x,this.y=e.y-t.y,this}multiply(e){return this.x*=e.x,this.y*=e.y,this}multiplyScalar(e){return this.x*=e,this.y*=e,this}divide(e){return this.x/=e.x,this.y/=e.y,this}divideScalar(e){return this.multiplyScalar(1/e)}applyMatrix3(e){const t=this.x,n=this.y,r=e.elements;return this.x=r[0]*t+r[3]*n+r[6],this.y=r[1]*t+r[4]*n+r[7],this}min(e){return this.x=Math.min(this.x,e.x),this.y=Math.min(this.y,e.y),this}max(e){return this.x=Math.max(this.x,e.x),this.y=Math.max(this.y,e.y),this}clamp(e,t){return this.x=ni(this.x,e.x,t.x),this.y=ni(this.y,e.y,t.y),this}clampScalar(e,t){return this.x=ni(this.x,e,t),this.y=ni(this.y,e,t),this}clampLength(e,t){const n=this.length();return this.divideScalar(n||1).multiplyScalar(ni(n,e,t))}floor(){return this.x=Math.floor(this.x),this.y=Math.floor(this.y),this}ceil(){return this.x=Math.ceil(this.x),this.y=Math.ceil(this.y),this}round(){return this.x=Math.round(this.x),this.y=Math.round(this.y),this}roundToZero(){return this.x=Math.trunc(this.x),this.y=Math.trunc(this.y),this}negate(){return this.x=-this.x,this.y=-this.y,this}dot(e){return this.x*e.x+this.y*e.y}cross(e){return this.x*e.y-this.y*e.x}lengthSq(){return this.x*this.x+this.y*this.y}length(){return Math.sqrt(this.x*this.x+this.y*this.y)}manhattanLength(){return Math.abs(this.x)+Math.abs(this.y)}normalize(){return this.divideScalar(this.length()||1)}angle(){return Math.atan2(-this.y,-this.x)+Math.PI}angleTo(e){const t=Math.sqrt(this.lengthSq()*e.lengthSq());if(t===0)return Math.PI/2;const n=this.dot(e)/t;return Math.acos(ni(n,-1,1))}distanceTo(e){return Math.sqrt(this.distanceToSquared(e))}distanceToSquared(e){const t=this.x-e.x,n=this.y-e.y;return t*t+n*n}manhattanDistanceTo(e){return Math.abs(this.x-e.x)+Math.abs(this.y-e.y)}setLength(e){return this.normalize().multiplyScalar(e)}lerp(e,t){return this.x+=(e.x-this.x)*t,this.y+=(e.y-this.y)*t,this}lerpVectors(e,t,n){return this.x=e.x+(t.x-e.x)*n,this.y=e.y+(t.y-e.y)*n,this}equals(e){return e.x===this.x&&e.y===this.y}fromArray(e,t=0){return this.x=e[t],this.y=e[t+1],this}toArray(e=[],t=0){return e[t]=this.x,e[t+1]=this.y,e}fromBufferAttribute(e,t){return this.x=e.getX(t),this.y=e.getY(t),this}rotateAround(e,t){const n=Math.cos(t),r=Math.sin(t),s=this.x-e.x,a=this.y-e.y;return this.x=s*n-a*r+e.x,this.y=s*r+a*n+e.y,this}random(){return this.x=Math.random(),this.y=Math.random(),this}*[Symbol.iterator](){yield this.x,yield this.y}}class Vn{constructor(e,t,n,r,s,a,l,u,h){Vn.prototype.isMatrix3=!0,this.elements=[1,0,0,0,1,0,0,0,1],e!==void 0&&this.set(e,t,n,r,s,a,l,u,h)}set(e,t,n,r,s,a,l,u,h){const g=this.elements;return g[0]=e,g[1]=r,g[2]=l,g[3]=t,g[4]=s,g[5]=u,g[6]=n,g[7]=a,g[8]=h,this}identity(){return this.set(1,0,0,0,1,0,0,0,1),this}copy(e){const t=this.elements,n=e.elements;return t[0]=n[0],t[1]=n[1],t[2]=n[2],t[3]=n[3],t[4]=n[4],t[5]=n[5],t[6]=n[6],t[7]=n[7],t[8]=n[8],this}extractBasis(e,t,n){return e.setFromMatrix3Column(this,0),t.setFromMatrix3Column(this,1),n.setFromMatrix3Column(this,2),this}setFromMatrix4(e){const t=e.elements;return this.set(t[0],t[4],t[8],t[1],t[5],t[9],t[2],t[6],t[10]),this}multiply(e){return this.multiplyMatrices(this,e)}premultiply(e){return this.multiplyMatrices(e,this)}multiplyMatrices(e,t){const n=e.elements,r=t.elements,s=this.elements,a=n[0],l=n[3],u=n[6],h=n[1],g=n[4],v=n[7],x=n[2],S=n[5],w=n[8],R=r[0],C=r[3],E=r[6],B=r[1],L=r[4],O=r[7],z=r[2],G=r[5],k=r[8];return s[0]=a*R+l*B+u*z,s[3]=a*C+l*L+u*G,s[6]=a*E+l*O+u*k,s[1]=h*R+g*B+v*z,s[4]=h*C+g*L+v*G,s[7]=h*E+g*O+v*k,s[2]=x*R+S*B+w*z,s[5]=x*C+S*L+w*G,s[8]=x*E+S*O+w*k,this}multiplyScalar(e){const t=this.elements;return t[0]*=e,t[3]*=e,t[6]*=e,t[1]*=e,t[4]*=e,t[7]*=e,t[2]*=e,t[5]*=e,t[8]*=e,this}determinant(){const e=this.elements,t=e[0],n=e[1],r=e[2],s=e[3],a=e[4],l=e[5],u=e[6],h=e[7],g=e[8];return t*a*g-t*l*h-n*s*g+n*l*u+r*s*h-r*a*u}invert(){const e=this.elements,t=e[0],n=e[1],r=e[2],s=e[3],a=e[4],l=e[5],u=e[6],h=e[7],g=e[8],v=g*a-l*h,x=l*u-g*s,S=h*s-a*u,w=t*v+n*x+r*S;if(w===0)return this.set(0,0,0,0,0,0,0,0,0);const R=1/w;return e[0]=v*R,e[1]=(r*h-g*n)*R,e[2]=(l*n-r*a)*R,e[3]=x*R,e[4]=(g*t-r*u)*R,e[5]=(r*s-l*t)*R,e[6]=S*R,e[7]=(n*u-h*t)*R,e[8]=(a*t-n*s)*R,this}transpose(){let e;const t=this.elements;return e=t[1],t[1]=t[3],t[3]=e,e=t[2],t[2]=t[6],t[6]=e,e=t[5],t[5]=t[7],t[7]=e,this}getNormalMatrix(e){return this.setFromMatrix4(e).invert().transpose()}transposeIntoArray(e){const t=this.elements;return e[0]=t[0],e[1]=t[3],e[2]=t[6],e[3]=t[1],e[4]=t[4],e[5]=t[7],e[6]=t[2],e[7]=t[5],e[8]=t[8],this}setUvTransform(e,t,n,r,s,a,l){const u=Math.cos(s),h=Math.sin(s);return this.set(n*u,n*h,-n*(u*a+h*l)+a+e,-r*h,r*u,-r*(-h*a+u*l)+l+t,0,0,1),this}scale(e,t){return this.premultiply(Jb.makeScale(e,t)),this}rotate(e){return this.premultiply(Jb.makeRotation(-e)),this}translate(e,t){return this.premultiply(Jb.makeTranslation(e,t)),this}makeTranslation(e,t){return e.isVector2?this.set(1,0,e.x,0,1,e.y,0,0,1):this.set(1,0,e,0,1,t,0,0,1),this}makeRotation(e){const t=Math.cos(e),n=Math.sin(e);return this.set(t,-n,0,n,t,0,0,0,1),this}makeScale(e,t){return this.set(e,0,0,0,t,0,0,0,1),this}equals(e){const t=this.elements,n=e.elements;for(let r=0;r<9;r++)if(t[r]!==n[r])return!1;return!0}fromArray(e,t=0){for(let n=0;n<9;n++)this.elements[n]=e[n+t];return this}toArray(e=[],t=0){const n=this.elements;return e[t]=n[0],e[t+1]=n[1],e[t+2]=n[2],e[t+3]=n[3],e[t+4]=n[4],e[t+5]=n[5],e[t+6]=n[6],e[t+7]=n[7],e[t+8]=n[8],e}clone(){return new this.constructor().fromArray(this.elements)}}const Jb=new Vn;function O7(i){for(let e=i.length-1;e>=0;--e)if(i[e]>=65535)return!0;return!1}function sg(i){return document.createElementNS("http://www.w3.org/1999/xhtml",i)}function I7(){const i=sg("canvas");return i.style.display="block",i}const XC={};function kf(i){i in XC||(XC[i]=!0,console.warn(i))}function Sk(i,e,t){return new Promise(function(n,r){function s(){switch(i.clientWaitSync(e,i.SYNC_FLUSH_COMMANDS_BIT,0)){case i.WAIT_FAILED:r();break;case i.TIMEOUT_EXPIRED:setTimeout(s,t);break;default:n()}}setTimeout(s,t)})}function Tk(i){const e=i.elements;e[2]=.5*e[2]+.5*e[3],e[6]=.5*e[6]+.5*e[7],e[10]=.5*e[10]+.5*e[11],e[14]=.5*e[14]+.5*e[15]}function wk(i){const e=i.elements;e[11]===-1?(e[10]=-e[10]-1,e[14]=-e[14]):(e[10]=-e[10],e[14]=-e[14]+1)}const YC=new Vn().set(.4123908,.3575843,.1804808,.212639,.7151687,.0721923,.0193308,.1191948,.9505322),QC=new Vn().set(3.2409699,-1.5373832,-.4986108,-.9692436,1.8759675,.0415551,.0556301,-.203977,1.0569715);function Mk(){const i={enabled:!0,workingColorSpace:Ro,spaces:{},convert:function(r,s,a){return this.enabled===!1||s===a||!s||!a||(this.spaces[s].transfer===Vi&&(r.r=Mc(r.r),r.g=Mc(r.g),r.b=Mc(r.b)),this.spaces[s].primaries!==this.spaces[a].primaries&&(r.applyMatrix3(this.spaces[s].toXYZ),r.applyMatrix3(this.spaces[a].fromXYZ)),this.spaces[a].transfer===Vi&&(r.r=e0(r.r),r.g=e0(r.g),r.b=e0(r.b))),r},fromWorkingColorSpace:function(r,s){return this.convert(r,this.workingColorSpace,s)},toWorkingColorSpace:function(r,s){return this.convert(r,s,this.workingColorSpace)},getPrimaries:function(r){return this.spaces[r].primaries},getTransfer:function(r){return r===Co?a_:this.spaces[r].transfer},getLuminanceCoefficients:function(r,s=this.workingColorSpace){return r.fromArray(this.spaces[s].luminanceCoefficients)},define:function(r){Object.assign(this.spaces,r)},_getMatrix:function(r,s,a){return r.copy(this.spaces[s].toXYZ).multiply(this.spaces[a].fromXYZ)},_getDrawingBufferColorSpace:function(r){return this.spaces[r].outputColorSpaceConfig.drawingBufferColorSpace},_getUnpackColorSpace:function(r=this.workingColorSpace){return this.spaces[r].workingColorSpaceConfig.unpackColorSpace}},e=[.64,.33,.3,.6,.15,.06],t=[.2126,.7152,.0722],n=[.3127,.329];return i.define({[Ro]:{primaries:e,whitePoint:n,transfer:a_,toXYZ:YC,fromXYZ:QC,luminanceCoefficients:t,workingColorSpaceConfig:{unpackColorSpace:_n},outputColorSpaceConfig:{drawingBufferColorSpace:_n}},[_n]:{primaries:e,whitePoint:n,transfer:Vi,toXYZ:YC,fromXYZ:QC,luminanceCoefficients:t,outputColorSpaceConfig:{drawingBufferColorSpace:_n}}}),i}const ai=Mk();function Mc(i){return i<.04045?i*.0773993808:Math.pow(i*.9478672986+.0521327014,2.4)}function e0(i){return i<.0031308?i*12.92:1.055*Math.pow(i,.41666)-.055}let ad;class Ek{static getDataURL(e){if(/^data:/i.test(e.src)||typeof HTMLCanvasElement>"u")return e.src;let t;if(e instanceof HTMLCanvasElement)t=e;else{ad===void 0&&(ad=sg("canvas")),ad.width=e.width,ad.height=e.height;const n=ad.getContext("2d");e instanceof ImageData?n.putImageData(e,0,0):n.drawImage(e,0,0,e.width,e.height),t=ad}return t.width>2048||t.height>2048?(console.warn("THREE.ImageUtils.getDataURL: Image converted to jpg for performance reasons",e),t.toDataURL("image/jpeg",.6)):t.toDataURL("image/png")}static sRGBToLinear(e){if(typeof HTMLImageElement<"u"&&e instanceof HTMLImageElement||typeof HTMLCanvasElement<"u"&&e instanceof HTMLCanvasElement||typeof ImageBitmap<"u"&&e instanceof ImageBitmap){const t=sg("canvas");t.width=e.width,t.height=e.height;const n=t.getContext("2d");n.drawImage(e,0,0,e.width,e.height);const r=n.getImageData(0,0,e.width,e.height),s=r.data;for(let a=0;a0&&(n.userData=this.userData),t||(e.textures[this.uuid]=n),n}dispose(){this.dispatchEvent({type:"dispose"})}transformUv(e){if(this.mapping!==Lw)return e;if(e.applyMatrix3(this.matrix),e.x<0||e.x>1)switch(this.wrapS){case aA:e.x=e.x-Math.floor(e.x);break;case eu:e.x=e.x<0?0:1;break;case oA:Math.abs(Math.floor(e.x)%2)===1?e.x=Math.ceil(e.x)-e.x:e.x=e.x-Math.floor(e.x);break}if(e.y<0||e.y>1)switch(this.wrapT){case aA:e.y=e.y-Math.floor(e.y);break;case eu:e.y=e.y<0?0:1;break;case oA:Math.abs(Math.floor(e.y)%2)===1?e.y=Math.ceil(e.y)-e.y:e.y=e.y-Math.floor(e.y);break}return this.flipY&&(e.y=1-e.y),e}set needsUpdate(e){e===!0&&(this.version++,this.source.needsUpdate=!0)}set needsPMREMUpdate(e){e===!0&&this.pmremVersion++}}vs.DEFAULT_IMAGE=null;vs.DEFAULT_MAPPING=Lw;vs.DEFAULT_ANISOTROPY=1;class Pn{constructor(e=0,t=0,n=0,r=1){Pn.prototype.isVector4=!0,this.x=e,this.y=t,this.z=n,this.w=r}get width(){return this.z}set width(e){this.z=e}get height(){return this.w}set height(e){this.w=e}set(e,t,n,r){return this.x=e,this.y=t,this.z=n,this.w=r,this}setScalar(e){return this.x=e,this.y=e,this.z=e,this.w=e,this}setX(e){return this.x=e,this}setY(e){return this.y=e,this}setZ(e){return this.z=e,this}setW(e){return this.w=e,this}setComponent(e,t){switch(e){case 0:this.x=t;break;case 1:this.y=t;break;case 2:this.z=t;break;case 3:this.w=t;break;default:throw new Error("index is out of range: "+e)}return this}getComponent(e){switch(e){case 0:return this.x;case 1:return this.y;case 2:return this.z;case 3:return this.w;default:throw new Error("index is out of range: "+e)}}clone(){return new this.constructor(this.x,this.y,this.z,this.w)}copy(e){return this.x=e.x,this.y=e.y,this.z=e.z,this.w=e.w!==void 0?e.w:1,this}add(e){return this.x+=e.x,this.y+=e.y,this.z+=e.z,this.w+=e.w,this}addScalar(e){return this.x+=e,this.y+=e,this.z+=e,this.w+=e,this}addVectors(e,t){return this.x=e.x+t.x,this.y=e.y+t.y,this.z=e.z+t.z,this.w=e.w+t.w,this}addScaledVector(e,t){return this.x+=e.x*t,this.y+=e.y*t,this.z+=e.z*t,this.w+=e.w*t,this}sub(e){return this.x-=e.x,this.y-=e.y,this.z-=e.z,this.w-=e.w,this}subScalar(e){return this.x-=e,this.y-=e,this.z-=e,this.w-=e,this}subVectors(e,t){return this.x=e.x-t.x,this.y=e.y-t.y,this.z=e.z-t.z,this.w=e.w-t.w,this}multiply(e){return this.x*=e.x,this.y*=e.y,this.z*=e.z,this.w*=e.w,this}multiplyScalar(e){return this.x*=e,this.y*=e,this.z*=e,this.w*=e,this}applyMatrix4(e){const t=this.x,n=this.y,r=this.z,s=this.w,a=e.elements;return this.x=a[0]*t+a[4]*n+a[8]*r+a[12]*s,this.y=a[1]*t+a[5]*n+a[9]*r+a[13]*s,this.z=a[2]*t+a[6]*n+a[10]*r+a[14]*s,this.w=a[3]*t+a[7]*n+a[11]*r+a[15]*s,this}divide(e){return this.x/=e.x,this.y/=e.y,this.z/=e.z,this.w/=e.w,this}divideScalar(e){return this.multiplyScalar(1/e)}setAxisAngleFromQuaternion(e){this.w=2*Math.acos(e.w);const t=Math.sqrt(1-e.w*e.w);return t<1e-4?(this.x=1,this.y=0,this.z=0):(this.x=e.x/t,this.y=e.y/t,this.z=e.z/t),this}setAxisAngleFromRotationMatrix(e){let t,n,r,s;const u=e.elements,h=u[0],g=u[4],v=u[8],x=u[1],S=u[5],w=u[9],R=u[2],C=u[6],E=u[10];if(Math.abs(g-x)<.01&&Math.abs(v-R)<.01&&Math.abs(w-C)<.01){if(Math.abs(g+x)<.1&&Math.abs(v+R)<.1&&Math.abs(w+C)<.1&&Math.abs(h+S+E-3)<.1)return this.set(1,0,0,0),this;t=Math.PI;const L=(h+1)/2,O=(S+1)/2,z=(E+1)/2,G=(g+x)/4,k=(v+R)/4,H=(w+C)/4;return L>O&&L>z?L<.01?(n=0,r=.707106781,s=.707106781):(n=Math.sqrt(L),r=G/n,s=k/n):O>z?O<.01?(n=.707106781,r=0,s=.707106781):(r=Math.sqrt(O),n=G/r,s=H/r):z<.01?(n=.707106781,r=.707106781,s=0):(s=Math.sqrt(z),n=k/s,r=H/s),this.set(n,r,s,t),this}let B=Math.sqrt((C-w)*(C-w)+(v-R)*(v-R)+(x-g)*(x-g));return Math.abs(B)<.001&&(B=1),this.x=(C-w)/B,this.y=(v-R)/B,this.z=(x-g)/B,this.w=Math.acos((h+S+E-1)/2),this}setFromMatrixPosition(e){const t=e.elements;return this.x=t[12],this.y=t[13],this.z=t[14],this.w=t[15],this}min(e){return this.x=Math.min(this.x,e.x),this.y=Math.min(this.y,e.y),this.z=Math.min(this.z,e.z),this.w=Math.min(this.w,e.w),this}max(e){return this.x=Math.max(this.x,e.x),this.y=Math.max(this.y,e.y),this.z=Math.max(this.z,e.z),this.w=Math.max(this.w,e.w),this}clamp(e,t){return this.x=ni(this.x,e.x,t.x),this.y=ni(this.y,e.y,t.y),this.z=ni(this.z,e.z,t.z),this.w=ni(this.w,e.w,t.w),this}clampScalar(e,t){return this.x=ni(this.x,e,t),this.y=ni(this.y,e,t),this.z=ni(this.z,e,t),this.w=ni(this.w,e,t),this}clampLength(e,t){const n=this.length();return this.divideScalar(n||1).multiplyScalar(ni(n,e,t))}floor(){return this.x=Math.floor(this.x),this.y=Math.floor(this.y),this.z=Math.floor(this.z),this.w=Math.floor(this.w),this}ceil(){return this.x=Math.ceil(this.x),this.y=Math.ceil(this.y),this.z=Math.ceil(this.z),this.w=Math.ceil(this.w),this}round(){return this.x=Math.round(this.x),this.y=Math.round(this.y),this.z=Math.round(this.z),this.w=Math.round(this.w),this}roundToZero(){return this.x=Math.trunc(this.x),this.y=Math.trunc(this.y),this.z=Math.trunc(this.z),this.w=Math.trunc(this.w),this}negate(){return this.x=-this.x,this.y=-this.y,this.z=-this.z,this.w=-this.w,this}dot(e){return this.x*e.x+this.y*e.y+this.z*e.z+this.w*e.w}lengthSq(){return this.x*this.x+this.y*this.y+this.z*this.z+this.w*this.w}length(){return Math.sqrt(this.x*this.x+this.y*this.y+this.z*this.z+this.w*this.w)}manhattanLength(){return Math.abs(this.x)+Math.abs(this.y)+Math.abs(this.z)+Math.abs(this.w)}normalize(){return this.divideScalar(this.length()||1)}setLength(e){return this.normalize().multiplyScalar(e)}lerp(e,t){return this.x+=(e.x-this.x)*t,this.y+=(e.y-this.y)*t,this.z+=(e.z-this.z)*t,this.w+=(e.w-this.w)*t,this}lerpVectors(e,t,n){return this.x=e.x+(t.x-e.x)*n,this.y=e.y+(t.y-e.y)*n,this.z=e.z+(t.z-e.z)*n,this.w=e.w+(t.w-e.w)*n,this}equals(e){return e.x===this.x&&e.y===this.y&&e.z===this.z&&e.w===this.w}fromArray(e,t=0){return this.x=e[t],this.y=e[t+1],this.z=e[t+2],this.w=e[t+3],this}toArray(e=[],t=0){return e[t]=this.x,e[t+1]=this.y,e[t+2]=this.z,e[t+3]=this.w,e}fromBufferAttribute(e,t){return this.x=e.getX(t),this.y=e.getY(t),this.z=e.getZ(t),this.w=e.getW(t),this}random(){return this.x=Math.random(),this.y=Math.random(),this.z=Math.random(),this.w=Math.random(),this}*[Symbol.iterator](){yield this.x,yield this.y,yield this.z,yield this.w}}class Wh extends zc{constructor(e=1,t=1,n={}){super(),this.isRenderTarget=!0,this.width=e,this.height=t,this.depth=1,this.scissor=new Pn(0,0,e,t),this.scissorTest=!1,this.viewport=new Pn(0,0,e,t);const r={width:e,height:t,depth:1};n=Object.assign({generateMipmaps:!1,internalFormat:null,minFilter:gs,depthBuffer:!0,stencilBuffer:!1,resolveDepthBuffer:!0,resolveStencilBuffer:!0,depthTexture:null,samples:0,count:1},n);const s=new vs(r,n.mapping,n.wrapS,n.wrapT,n.magFilter,n.minFilter,n.format,n.type,n.anisotropy,n.colorSpace);s.flipY=!1,s.generateMipmaps=n.generateMipmaps,s.internalFormat=n.internalFormat,this.textures=[];const a=n.count;for(let l=0;l=0?1:-1,L=1-E*E;if(L>Number.EPSILON){const z=Math.sqrt(L),G=Math.atan2(z,E*B);C=Math.sin(C*G)/z,l=Math.sin(l*G)/z}const O=l*B;if(u=u*C+x*O,h=h*C+S*O,g=g*C+w*O,v=v*C+R*O,C===1-l){const z=1/Math.sqrt(u*u+h*h+g*g+v*v);u*=z,h*=z,g*=z,v*=z}}e[t]=u,e[t+1]=h,e[t+2]=g,e[t+3]=v}static multiplyQuaternionsFlat(e,t,n,r,s,a){const l=n[r],u=n[r+1],h=n[r+2],g=n[r+3],v=s[a],x=s[a+1],S=s[a+2],w=s[a+3];return e[t]=l*w+g*v+u*S-h*x,e[t+1]=u*w+g*x+h*v-l*S,e[t+2]=h*w+g*S+l*x-u*v,e[t+3]=g*w-l*v-u*x-h*S,e}get x(){return this._x}set x(e){this._x=e,this._onChangeCallback()}get y(){return this._y}set y(e){this._y=e,this._onChangeCallback()}get z(){return this._z}set z(e){this._z=e,this._onChangeCallback()}get w(){return this._w}set w(e){this._w=e,this._onChangeCallback()}set(e,t,n,r){return this._x=e,this._y=t,this._z=n,this._w=r,this._onChangeCallback(),this}clone(){return new this.constructor(this._x,this._y,this._z,this._w)}copy(e){return this._x=e.x,this._y=e.y,this._z=e.z,this._w=e.w,this._onChangeCallback(),this}setFromEuler(e,t=!0){const n=e._x,r=e._y,s=e._z,a=e._order,l=Math.cos,u=Math.sin,h=l(n/2),g=l(r/2),v=l(s/2),x=u(n/2),S=u(r/2),w=u(s/2);switch(a){case"XYZ":this._x=x*g*v+h*S*w,this._y=h*S*v-x*g*w,this._z=h*g*w+x*S*v,this._w=h*g*v-x*S*w;break;case"YXZ":this._x=x*g*v+h*S*w,this._y=h*S*v-x*g*w,this._z=h*g*w-x*S*v,this._w=h*g*v+x*S*w;break;case"ZXY":this._x=x*g*v-h*S*w,this._y=h*S*v+x*g*w,this._z=h*g*w+x*S*v,this._w=h*g*v-x*S*w;break;case"ZYX":this._x=x*g*v-h*S*w,this._y=h*S*v+x*g*w,this._z=h*g*w-x*S*v,this._w=h*g*v+x*S*w;break;case"YZX":this._x=x*g*v+h*S*w,this._y=h*S*v+x*g*w,this._z=h*g*w-x*S*v,this._w=h*g*v-x*S*w;break;case"XZY":this._x=x*g*v-h*S*w,this._y=h*S*v-x*g*w,this._z=h*g*w+x*S*v,this._w=h*g*v+x*S*w;break;default:console.warn("THREE.Quaternion: .setFromEuler() encountered an unknown order: "+a)}return t===!0&&this._onChangeCallback(),this}setFromAxisAngle(e,t){const n=t/2,r=Math.sin(n);return this._x=e.x*r,this._y=e.y*r,this._z=e.z*r,this._w=Math.cos(n),this._onChangeCallback(),this}setFromRotationMatrix(e){const t=e.elements,n=t[0],r=t[4],s=t[8],a=t[1],l=t[5],u=t[9],h=t[2],g=t[6],v=t[10],x=n+l+v;if(x>0){const S=.5/Math.sqrt(x+1);this._w=.25/S,this._x=(g-u)*S,this._y=(s-h)*S,this._z=(a-r)*S}else if(n>l&&n>v){const S=2*Math.sqrt(1+n-l-v);this._w=(g-u)/S,this._x=.25*S,this._y=(r+a)/S,this._z=(s+h)/S}else if(l>v){const S=2*Math.sqrt(1+l-n-v);this._w=(s-h)/S,this._x=(r+a)/S,this._y=.25*S,this._z=(u+g)/S}else{const S=2*Math.sqrt(1+v-n-l);this._w=(a-r)/S,this._x=(s+h)/S,this._y=(u+g)/S,this._z=.25*S}return this._onChangeCallback(),this}setFromUnitVectors(e,t){let n=e.dot(t)+1;return nMath.abs(e.z)?(this._x=-e.y,this._y=e.x,this._z=0,this._w=n):(this._x=0,this._y=-e.z,this._z=e.y,this._w=n)):(this._x=e.y*t.z-e.z*t.y,this._y=e.z*t.x-e.x*t.z,this._z=e.x*t.y-e.y*t.x,this._w=n),this.normalize()}angleTo(e){return 2*Math.acos(Math.abs(ni(this.dot(e),-1,1)))}rotateTowards(e,t){const n=this.angleTo(e);if(n===0)return this;const r=Math.min(1,t/n);return this.slerp(e,r),this}identity(){return this.set(0,0,0,1)}invert(){return this.conjugate()}conjugate(){return this._x*=-1,this._y*=-1,this._z*=-1,this._onChangeCallback(),this}dot(e){return this._x*e._x+this._y*e._y+this._z*e._z+this._w*e._w}lengthSq(){return this._x*this._x+this._y*this._y+this._z*this._z+this._w*this._w}length(){return Math.sqrt(this._x*this._x+this._y*this._y+this._z*this._z+this._w*this._w)}normalize(){let e=this.length();return e===0?(this._x=0,this._y=0,this._z=0,this._w=1):(e=1/e,this._x=this._x*e,this._y=this._y*e,this._z=this._z*e,this._w=this._w*e),this._onChangeCallback(),this}multiply(e){return this.multiplyQuaternions(this,e)}premultiply(e){return this.multiplyQuaternions(e,this)}multiplyQuaternions(e,t){const n=e._x,r=e._y,s=e._z,a=e._w,l=t._x,u=t._y,h=t._z,g=t._w;return this._x=n*g+a*l+r*h-s*u,this._y=r*g+a*u+s*l-n*h,this._z=s*g+a*h+n*u-r*l,this._w=a*g-n*l-r*u-s*h,this._onChangeCallback(),this}slerp(e,t){if(t===0)return this;if(t===1)return this.copy(e);const n=this._x,r=this._y,s=this._z,a=this._w;let l=a*e._w+n*e._x+r*e._y+s*e._z;if(l<0?(this._w=-e._w,this._x=-e._x,this._y=-e._y,this._z=-e._z,l=-l):this.copy(e),l>=1)return this._w=a,this._x=n,this._y=r,this._z=s,this;const u=1-l*l;if(u<=Number.EPSILON){const S=1-t;return this._w=S*a+t*this._w,this._x=S*n+t*this._x,this._y=S*r+t*this._y,this._z=S*s+t*this._z,this.normalize(),this}const h=Math.sqrt(u),g=Math.atan2(h,l),v=Math.sin((1-t)*g)/h,x=Math.sin(t*g)/h;return this._w=a*v+this._w*x,this._x=n*v+this._x*x,this._y=r*v+this._y*x,this._z=s*v+this._z*x,this._onChangeCallback(),this}slerpQuaternions(e,t,n){return this.copy(e).slerp(t,n)}random(){const e=2*Math.PI*Math.random(),t=2*Math.PI*Math.random(),n=Math.random(),r=Math.sqrt(1-n),s=Math.sqrt(n);return this.set(r*Math.sin(e),r*Math.cos(e),s*Math.sin(t),s*Math.cos(t))}equals(e){return e._x===this._x&&e._y===this._y&&e._z===this._z&&e._w===this._w}fromArray(e,t=0){return this._x=e[t],this._y=e[t+1],this._z=e[t+2],this._w=e[t+3],this._onChangeCallback(),this}toArray(e=[],t=0){return e[t]=this._x,e[t+1]=this._y,e[t+2]=this._z,e[t+3]=this._w,e}fromBufferAttribute(e,t){return this._x=e.getX(t),this._y=e.getY(t),this._z=e.getZ(t),this._w=e.getW(t),this._onChangeCallback(),this}toJSON(){return this.toArray()}_onChange(e){return this._onChangeCallback=e,this}_onChangeCallback(){}*[Symbol.iterator](){yield this._x,yield this._y,yield this._z,yield this._w}}class ce{constructor(e=0,t=0,n=0){ce.prototype.isVector3=!0,this.x=e,this.y=t,this.z=n}set(e,t,n){return n===void 0&&(n=this.z),this.x=e,this.y=t,this.z=n,this}setScalar(e){return this.x=e,this.y=e,this.z=e,this}setX(e){return this.x=e,this}setY(e){return this.y=e,this}setZ(e){return this.z=e,this}setComponent(e,t){switch(e){case 0:this.x=t;break;case 1:this.y=t;break;case 2:this.z=t;break;default:throw new Error("index is out of range: "+e)}return this}getComponent(e){switch(e){case 0:return this.x;case 1:return this.y;case 2:return this.z;default:throw new Error("index is out of range: "+e)}}clone(){return new this.constructor(this.x,this.y,this.z)}copy(e){return this.x=e.x,this.y=e.y,this.z=e.z,this}add(e){return this.x+=e.x,this.y+=e.y,this.z+=e.z,this}addScalar(e){return this.x+=e,this.y+=e,this.z+=e,this}addVectors(e,t){return this.x=e.x+t.x,this.y=e.y+t.y,this.z=e.z+t.z,this}addScaledVector(e,t){return this.x+=e.x*t,this.y+=e.y*t,this.z+=e.z*t,this}sub(e){return this.x-=e.x,this.y-=e.y,this.z-=e.z,this}subScalar(e){return this.x-=e,this.y-=e,this.z-=e,this}subVectors(e,t){return this.x=e.x-t.x,this.y=e.y-t.y,this.z=e.z-t.z,this}multiply(e){return this.x*=e.x,this.y*=e.y,this.z*=e.z,this}multiplyScalar(e){return this.x*=e,this.y*=e,this.z*=e,this}multiplyVectors(e,t){return this.x=e.x*t.x,this.y=e.y*t.y,this.z=e.z*t.z,this}applyEuler(e){return this.applyQuaternion(KC.setFromEuler(e))}applyAxisAngle(e,t){return this.applyQuaternion(KC.setFromAxisAngle(e,t))}applyMatrix3(e){const t=this.x,n=this.y,r=this.z,s=e.elements;return this.x=s[0]*t+s[3]*n+s[6]*r,this.y=s[1]*t+s[4]*n+s[7]*r,this.z=s[2]*t+s[5]*n+s[8]*r,this}applyNormalMatrix(e){return this.applyMatrix3(e).normalize()}applyMatrix4(e){const t=this.x,n=this.y,r=this.z,s=e.elements,a=1/(s[3]*t+s[7]*n+s[11]*r+s[15]);return this.x=(s[0]*t+s[4]*n+s[8]*r+s[12])*a,this.y=(s[1]*t+s[5]*n+s[9]*r+s[13])*a,this.z=(s[2]*t+s[6]*n+s[10]*r+s[14])*a,this}applyQuaternion(e){const t=this.x,n=this.y,r=this.z,s=e.x,a=e.y,l=e.z,u=e.w,h=2*(a*r-l*n),g=2*(l*t-s*r),v=2*(s*n-a*t);return this.x=t+u*h+a*v-l*g,this.y=n+u*g+l*h-s*v,this.z=r+u*v+s*g-a*h,this}project(e){return this.applyMatrix4(e.matrixWorldInverse).applyMatrix4(e.projectionMatrix)}unproject(e){return this.applyMatrix4(e.projectionMatrixInverse).applyMatrix4(e.matrixWorld)}transformDirection(e){const t=this.x,n=this.y,r=this.z,s=e.elements;return this.x=s[0]*t+s[4]*n+s[8]*r,this.y=s[1]*t+s[5]*n+s[9]*r,this.z=s[2]*t+s[6]*n+s[10]*r,this.normalize()}divide(e){return this.x/=e.x,this.y/=e.y,this.z/=e.z,this}divideScalar(e){return this.multiplyScalar(1/e)}min(e){return this.x=Math.min(this.x,e.x),this.y=Math.min(this.y,e.y),this.z=Math.min(this.z,e.z),this}max(e){return this.x=Math.max(this.x,e.x),this.y=Math.max(this.y,e.y),this.z=Math.max(this.z,e.z),this}clamp(e,t){return this.x=ni(this.x,e.x,t.x),this.y=ni(this.y,e.y,t.y),this.z=ni(this.z,e.z,t.z),this}clampScalar(e,t){return this.x=ni(this.x,e,t),this.y=ni(this.y,e,t),this.z=ni(this.z,e,t),this}clampLength(e,t){const n=this.length();return this.divideScalar(n||1).multiplyScalar(ni(n,e,t))}floor(){return this.x=Math.floor(this.x),this.y=Math.floor(this.y),this.z=Math.floor(this.z),this}ceil(){return this.x=Math.ceil(this.x),this.y=Math.ceil(this.y),this.z=Math.ceil(this.z),this}round(){return this.x=Math.round(this.x),this.y=Math.round(this.y),this.z=Math.round(this.z),this}roundToZero(){return this.x=Math.trunc(this.x),this.y=Math.trunc(this.y),this.z=Math.trunc(this.z),this}negate(){return this.x=-this.x,this.y=-this.y,this.z=-this.z,this}dot(e){return this.x*e.x+this.y*e.y+this.z*e.z}lengthSq(){return this.x*this.x+this.y*this.y+this.z*this.z}length(){return Math.sqrt(this.x*this.x+this.y*this.y+this.z*this.z)}manhattanLength(){return Math.abs(this.x)+Math.abs(this.y)+Math.abs(this.z)}normalize(){return this.divideScalar(this.length()||1)}setLength(e){return this.normalize().multiplyScalar(e)}lerp(e,t){return this.x+=(e.x-this.x)*t,this.y+=(e.y-this.y)*t,this.z+=(e.z-this.z)*t,this}lerpVectors(e,t,n){return this.x=e.x+(t.x-e.x)*n,this.y=e.y+(t.y-e.y)*n,this.z=e.z+(t.z-e.z)*n,this}cross(e){return this.crossVectors(this,e)}crossVectors(e,t){const n=e.x,r=e.y,s=e.z,a=t.x,l=t.y,u=t.z;return this.x=r*u-s*l,this.y=s*a-n*u,this.z=n*l-r*a,this}projectOnVector(e){const t=e.lengthSq();if(t===0)return this.set(0,0,0);const n=e.dot(this)/t;return this.copy(e).multiplyScalar(n)}projectOnPlane(e){return t3.copy(this).projectOnVector(e),this.sub(t3)}reflect(e){return this.sub(t3.copy(e).multiplyScalar(2*this.dot(e)))}angleTo(e){const t=Math.sqrt(this.lengthSq()*e.lengthSq());if(t===0)return Math.PI/2;const n=this.dot(e)/t;return Math.acos(ni(n,-1,1))}distanceTo(e){return Math.sqrt(this.distanceToSquared(e))}distanceToSquared(e){const t=this.x-e.x,n=this.y-e.y,r=this.z-e.z;return t*t+n*n+r*r}manhattanDistanceTo(e){return Math.abs(this.x-e.x)+Math.abs(this.y-e.y)+Math.abs(this.z-e.z)}setFromSpherical(e){return this.setFromSphericalCoords(e.radius,e.phi,e.theta)}setFromSphericalCoords(e,t,n){const r=Math.sin(t)*e;return this.x=r*Math.sin(n),this.y=Math.cos(t)*e,this.z=r*Math.cos(n),this}setFromCylindrical(e){return this.setFromCylindricalCoords(e.radius,e.theta,e.y)}setFromCylindricalCoords(e,t,n){return this.x=e*Math.sin(t),this.y=n,this.z=e*Math.cos(t),this}setFromMatrixPosition(e){const t=e.elements;return this.x=t[12],this.y=t[13],this.z=t[14],this}setFromMatrixScale(e){const t=this.setFromMatrixColumn(e,0).length(),n=this.setFromMatrixColumn(e,1).length(),r=this.setFromMatrixColumn(e,2).length();return this.x=t,this.y=n,this.z=r,this}setFromMatrixColumn(e,t){return this.fromArray(e.elements,t*4)}setFromMatrix3Column(e,t){return this.fromArray(e.elements,t*3)}setFromEuler(e){return this.x=e._x,this.y=e._y,this.z=e._z,this}setFromColor(e){return this.x=e.r,this.y=e.g,this.z=e.b,this}equals(e){return e.x===this.x&&e.y===this.y&&e.z===this.z}fromArray(e,t=0){return this.x=e[t],this.y=e[t+1],this.z=e[t+2],this}toArray(e=[],t=0){return e[t]=this.x,e[t+1]=this.y,e[t+2]=this.z,e}fromBufferAttribute(e,t){return this.x=e.getX(t),this.y=e.getY(t),this.z=e.getZ(t),this}random(){return this.x=Math.random(),this.y=Math.random(),this.z=Math.random(),this}randomDirection(){const e=Math.random()*Math.PI*2,t=Math.random()*2-1,n=Math.sqrt(1-t*t);return this.x=n*Math.cos(e),this.y=t,this.z=n*Math.sin(e),this}*[Symbol.iterator](){yield this.x,yield this.y,yield this.z}}const t3=new ce,KC=new mu;class Gc{constructor(e=new ce(1/0,1/0,1/0),t=new ce(-1/0,-1/0,-1/0)){this.isBox3=!0,this.min=e,this.max=t}set(e,t){return this.min.copy(e),this.max.copy(t),this}setFromArray(e){this.makeEmpty();for(let t=0,n=e.length;t=this.min.x&&e.x<=this.max.x&&e.y>=this.min.y&&e.y<=this.max.y&&e.z>=this.min.z&&e.z<=this.max.z}containsBox(e){return this.min.x<=e.min.x&&e.max.x<=this.max.x&&this.min.y<=e.min.y&&e.max.y<=this.max.y&&this.min.z<=e.min.z&&e.max.z<=this.max.z}getParameter(e,t){return t.set((e.x-this.min.x)/(this.max.x-this.min.x),(e.y-this.min.y)/(this.max.y-this.min.y),(e.z-this.min.z)/(this.max.z-this.min.z))}intersectsBox(e){return e.max.x>=this.min.x&&e.min.x<=this.max.x&&e.max.y>=this.min.y&&e.min.y<=this.max.y&&e.max.z>=this.min.z&&e.min.z<=this.max.z}intersectsSphere(e){return this.clampPoint(e.center,ml),ml.distanceToSquared(e.center)<=e.radius*e.radius}intersectsPlane(e){let t,n;return e.normal.x>0?(t=e.normal.x*this.min.x,n=e.normal.x*this.max.x):(t=e.normal.x*this.max.x,n=e.normal.x*this.min.x),e.normal.y>0?(t+=e.normal.y*this.min.y,n+=e.normal.y*this.max.y):(t+=e.normal.y*this.max.y,n+=e.normal.y*this.min.y),e.normal.z>0?(t+=e.normal.z*this.min.z,n+=e.normal.z*this.max.z):(t+=e.normal.z*this.max.z,n+=e.normal.z*this.min.z),t<=-e.constant&&n>=-e.constant}intersectsTriangle(e){if(this.isEmpty())return!1;this.getCenter(Yp),y2.subVectors(this.max,Yp),od.subVectors(e.a,Yp),ld.subVectors(e.b,Yp),ud.subVectors(e.c,Yp),ph.subVectors(ld,od),mh.subVectors(ud,ld),yf.subVectors(od,ud);let t=[0,-ph.z,ph.y,0,-mh.z,mh.y,0,-yf.z,yf.y,ph.z,0,-ph.x,mh.z,0,-mh.x,yf.z,0,-yf.x,-ph.y,ph.x,0,-mh.y,mh.x,0,-yf.y,yf.x,0];return!n3(t,od,ld,ud,y2)||(t=[1,0,0,0,1,0,0,0,1],!n3(t,od,ld,ud,y2))?!1:(x2.crossVectors(ph,mh),t=[x2.x,x2.y,x2.z],n3(t,od,ld,ud,y2))}clampPoint(e,t){return t.copy(e).clamp(this.min,this.max)}distanceToPoint(e){return this.clampPoint(e,ml).distanceTo(e)}getBoundingSphere(e){return this.isEmpty()?e.makeEmpty():(this.getCenter(e.center),e.radius=this.getSize(ml).length()*.5),e}intersect(e){return this.min.max(e.min),this.max.min(e.max),this.isEmpty()&&this.makeEmpty(),this}union(e){return this.min.min(e.min),this.max.max(e.max),this}applyMatrix4(e){return this.isEmpty()?this:(fc[0].set(this.min.x,this.min.y,this.min.z).applyMatrix4(e),fc[1].set(this.min.x,this.min.y,this.max.z).applyMatrix4(e),fc[2].set(this.min.x,this.max.y,this.min.z).applyMatrix4(e),fc[3].set(this.min.x,this.max.y,this.max.z).applyMatrix4(e),fc[4].set(this.max.x,this.min.y,this.min.z).applyMatrix4(e),fc[5].set(this.max.x,this.min.y,this.max.z).applyMatrix4(e),fc[6].set(this.max.x,this.max.y,this.min.z).applyMatrix4(e),fc[7].set(this.max.x,this.max.y,this.max.z).applyMatrix4(e),this.setFromPoints(fc),this)}translate(e){return this.min.add(e),this.max.add(e),this}equals(e){return e.min.equals(this.min)&&e.max.equals(this.max)}}const fc=[new ce,new ce,new ce,new ce,new ce,new ce,new ce,new ce],ml=new ce,_2=new Gc,od=new ce,ld=new ce,ud=new ce,ph=new ce,mh=new ce,yf=new ce,Yp=new ce,y2=new ce,x2=new ce,xf=new ce;function n3(i,e,t,n,r){for(let s=0,a=i.length-3;s<=a;s+=3){xf.fromArray(i,s);const l=r.x*Math.abs(xf.x)+r.y*Math.abs(xf.y)+r.z*Math.abs(xf.z),u=e.dot(xf),h=t.dot(xf),g=n.dot(xf);if(Math.max(-Math.max(u,h,g),Math.min(u,h,g))>l)return!1}return!0}const Dk=new Gc,Qp=new ce,i3=new ce;class dA{constructor(e=new ce,t=-1){this.isSphere=!0,this.center=e,this.radius=t}set(e,t){return this.center.copy(e),this.radius=t,this}setFromPoints(e,t){const n=this.center;t!==void 0?n.copy(t):Dk.setFromPoints(e).getCenter(n);let r=0;for(let s=0,a=e.length;sthis.radius*this.radius&&(t.sub(this.center).normalize(),t.multiplyScalar(this.radius).add(this.center)),t}getBoundingBox(e){return this.isEmpty()?(e.makeEmpty(),e):(e.set(this.center,this.center),e.expandByScalar(this.radius),e)}applyMatrix4(e){return this.center.applyMatrix4(e),this.radius=this.radius*e.getMaxScaleOnAxis(),this}translate(e){return this.center.add(e),this}expandByPoint(e){if(this.isEmpty())return this.center.copy(e),this.radius=0,this;Qp.subVectors(e,this.center);const t=Qp.lengthSq();if(t>this.radius*this.radius){const n=Math.sqrt(t),r=(n-this.radius)*.5;this.center.addScaledVector(Qp,r/n),this.radius+=r}return this}union(e){return e.isEmpty()?this:this.isEmpty()?(this.copy(e),this):(this.center.equals(e.center)===!0?this.radius=Math.max(this.radius,e.radius):(i3.subVectors(e.center,this.center).setLength(e.radius),this.expandByPoint(Qp.copy(e.center).add(i3)),this.expandByPoint(Qp.copy(e.center).sub(i3))),this)}equals(e){return e.center.equals(this.center)&&e.radius===this.radius}clone(){return new this.constructor().copy(this)}}const Ac=new ce,r3=new ce,b2=new ce,gh=new ce,s3=new ce,S2=new ce,a3=new ce;class Og{constructor(e=new ce,t=new ce(0,0,-1)){this.origin=e,this.direction=t}set(e,t){return this.origin.copy(e),this.direction.copy(t),this}copy(e){return this.origin.copy(e.origin),this.direction.copy(e.direction),this}at(e,t){return t.copy(this.origin).addScaledVector(this.direction,e)}lookAt(e){return this.direction.copy(e).sub(this.origin).normalize(),this}recast(e){return this.origin.copy(this.at(e,Ac)),this}closestPointToPoint(e,t){t.subVectors(e,this.origin);const n=t.dot(this.direction);return n<0?t.copy(this.origin):t.copy(this.origin).addScaledVector(this.direction,n)}distanceToPoint(e){return Math.sqrt(this.distanceSqToPoint(e))}distanceSqToPoint(e){const t=Ac.subVectors(e,this.origin).dot(this.direction);return t<0?this.origin.distanceToSquared(e):(Ac.copy(this.origin).addScaledVector(this.direction,t),Ac.distanceToSquared(e))}distanceSqToSegment(e,t,n,r){r3.copy(e).add(t).multiplyScalar(.5),b2.copy(t).sub(e).normalize(),gh.copy(this.origin).sub(r3);const s=e.distanceTo(t)*.5,a=-this.direction.dot(b2),l=gh.dot(this.direction),u=-gh.dot(b2),h=gh.lengthSq(),g=Math.abs(1-a*a);let v,x,S,w;if(g>0)if(v=a*u-l,x=a*l-u,w=s*g,v>=0)if(x>=-w)if(x<=w){const R=1/g;v*=R,x*=R,S=v*(v+a*x+2*l)+x*(a*v+x+2*u)+h}else x=s,v=Math.max(0,-(a*x+l)),S=-v*v+x*(x+2*u)+h;else x=-s,v=Math.max(0,-(a*x+l)),S=-v*v+x*(x+2*u)+h;else x<=-w?(v=Math.max(0,-(-a*s+l)),x=v>0?-s:Math.min(Math.max(-s,-u),s),S=-v*v+x*(x+2*u)+h):x<=w?(v=0,x=Math.min(Math.max(-s,-u),s),S=x*(x+2*u)+h):(v=Math.max(0,-(a*s+l)),x=v>0?s:Math.min(Math.max(-s,-u),s),S=-v*v+x*(x+2*u)+h);else x=a>0?-s:s,v=Math.max(0,-(a*x+l)),S=-v*v+x*(x+2*u)+h;return n&&n.copy(this.origin).addScaledVector(this.direction,v),r&&r.copy(r3).addScaledVector(b2,x),S}intersectSphere(e,t){Ac.subVectors(e.center,this.origin);const n=Ac.dot(this.direction),r=Ac.dot(Ac)-n*n,s=e.radius*e.radius;if(r>s)return null;const a=Math.sqrt(s-r),l=n-a,u=n+a;return u<0?null:l<0?this.at(u,t):this.at(l,t)}intersectsSphere(e){return this.distanceSqToPoint(e.center)<=e.radius*e.radius}distanceToPlane(e){const t=e.normal.dot(this.direction);if(t===0)return e.distanceToPoint(this.origin)===0?0:null;const n=-(this.origin.dot(e.normal)+e.constant)/t;return n>=0?n:null}intersectPlane(e,t){const n=this.distanceToPlane(e);return n===null?null:this.at(n,t)}intersectsPlane(e){const t=e.distanceToPoint(this.origin);return t===0||e.normal.dot(this.direction)*t<0}intersectBox(e,t){let n,r,s,a,l,u;const h=1/this.direction.x,g=1/this.direction.y,v=1/this.direction.z,x=this.origin;return h>=0?(n=(e.min.x-x.x)*h,r=(e.max.x-x.x)*h):(n=(e.max.x-x.x)*h,r=(e.min.x-x.x)*h),g>=0?(s=(e.min.y-x.y)*g,a=(e.max.y-x.y)*g):(s=(e.max.y-x.y)*g,a=(e.min.y-x.y)*g),n>a||s>r||((s>n||isNaN(n))&&(n=s),(a=0?(l=(e.min.z-x.z)*v,u=(e.max.z-x.z)*v):(l=(e.max.z-x.z)*v,u=(e.min.z-x.z)*v),n>u||l>r)||((l>n||n!==n)&&(n=l),(u=0?n:r,t)}intersectsBox(e){return this.intersectBox(e,Ac)!==null}intersectTriangle(e,t,n,r,s){s3.subVectors(t,e),S2.subVectors(n,e),a3.crossVectors(s3,S2);let a=this.direction.dot(a3),l;if(a>0){if(r)return null;l=1}else if(a<0)l=-1,a=-a;else return null;gh.subVectors(this.origin,e);const u=l*this.direction.dot(S2.crossVectors(gh,S2));if(u<0)return null;const h=l*this.direction.dot(s3.cross(gh));if(h<0||u+h>a)return null;const g=-l*gh.dot(a3);return g<0?null:this.at(g/a,s)}applyMatrix4(e){return this.origin.applyMatrix4(e),this.direction.transformDirection(e),this}equals(e){return e.origin.equals(this.origin)&&e.direction.equals(this.direction)}clone(){return new this.constructor().copy(this)}}class kn{constructor(e,t,n,r,s,a,l,u,h,g,v,x,S,w,R,C){kn.prototype.isMatrix4=!0,this.elements=[1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1],e!==void 0&&this.set(e,t,n,r,s,a,l,u,h,g,v,x,S,w,R,C)}set(e,t,n,r,s,a,l,u,h,g,v,x,S,w,R,C){const E=this.elements;return E[0]=e,E[4]=t,E[8]=n,E[12]=r,E[1]=s,E[5]=a,E[9]=l,E[13]=u,E[2]=h,E[6]=g,E[10]=v,E[14]=x,E[3]=S,E[7]=w,E[11]=R,E[15]=C,this}identity(){return this.set(1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1),this}clone(){return new kn().fromArray(this.elements)}copy(e){const t=this.elements,n=e.elements;return t[0]=n[0],t[1]=n[1],t[2]=n[2],t[3]=n[3],t[4]=n[4],t[5]=n[5],t[6]=n[6],t[7]=n[7],t[8]=n[8],t[9]=n[9],t[10]=n[10],t[11]=n[11],t[12]=n[12],t[13]=n[13],t[14]=n[14],t[15]=n[15],this}copyPosition(e){const t=this.elements,n=e.elements;return t[12]=n[12],t[13]=n[13],t[14]=n[14],this}setFromMatrix3(e){const t=e.elements;return this.set(t[0],t[3],t[6],0,t[1],t[4],t[7],0,t[2],t[5],t[8],0,0,0,0,1),this}extractBasis(e,t,n){return e.setFromMatrixColumn(this,0),t.setFromMatrixColumn(this,1),n.setFromMatrixColumn(this,2),this}makeBasis(e,t,n){return this.set(e.x,t.x,n.x,0,e.y,t.y,n.y,0,e.z,t.z,n.z,0,0,0,0,1),this}extractRotation(e){const t=this.elements,n=e.elements,r=1/cd.setFromMatrixColumn(e,0).length(),s=1/cd.setFromMatrixColumn(e,1).length(),a=1/cd.setFromMatrixColumn(e,2).length();return t[0]=n[0]*r,t[1]=n[1]*r,t[2]=n[2]*r,t[3]=0,t[4]=n[4]*s,t[5]=n[5]*s,t[6]=n[6]*s,t[7]=0,t[8]=n[8]*a,t[9]=n[9]*a,t[10]=n[10]*a,t[11]=0,t[12]=0,t[13]=0,t[14]=0,t[15]=1,this}makeRotationFromEuler(e){const t=this.elements,n=e.x,r=e.y,s=e.z,a=Math.cos(n),l=Math.sin(n),u=Math.cos(r),h=Math.sin(r),g=Math.cos(s),v=Math.sin(s);if(e.order==="XYZ"){const x=a*g,S=a*v,w=l*g,R=l*v;t[0]=u*g,t[4]=-u*v,t[8]=h,t[1]=S+w*h,t[5]=x-R*h,t[9]=-l*u,t[2]=R-x*h,t[6]=w+S*h,t[10]=a*u}else if(e.order==="YXZ"){const x=u*g,S=u*v,w=h*g,R=h*v;t[0]=x+R*l,t[4]=w*l-S,t[8]=a*h,t[1]=a*v,t[5]=a*g,t[9]=-l,t[2]=S*l-w,t[6]=R+x*l,t[10]=a*u}else if(e.order==="ZXY"){const x=u*g,S=u*v,w=h*g,R=h*v;t[0]=x-R*l,t[4]=-a*v,t[8]=w+S*l,t[1]=S+w*l,t[5]=a*g,t[9]=R-x*l,t[2]=-a*h,t[6]=l,t[10]=a*u}else if(e.order==="ZYX"){const x=a*g,S=a*v,w=l*g,R=l*v;t[0]=u*g,t[4]=w*h-S,t[8]=x*h+R,t[1]=u*v,t[5]=R*h+x,t[9]=S*h-w,t[2]=-h,t[6]=l*u,t[10]=a*u}else if(e.order==="YZX"){const x=a*u,S=a*h,w=l*u,R=l*h;t[0]=u*g,t[4]=R-x*v,t[8]=w*v+S,t[1]=v,t[5]=a*g,t[9]=-l*g,t[2]=-h*g,t[6]=S*v+w,t[10]=x-R*v}else if(e.order==="XZY"){const x=a*u,S=a*h,w=l*u,R=l*h;t[0]=u*g,t[4]=-v,t[8]=h*g,t[1]=x*v+R,t[5]=a*g,t[9]=S*v-w,t[2]=w*v-S,t[6]=l*g,t[10]=R*v+x}return t[3]=0,t[7]=0,t[11]=0,t[12]=0,t[13]=0,t[14]=0,t[15]=1,this}makeRotationFromQuaternion(e){return this.compose(Pk,e,Lk)}lookAt(e,t,n){const r=this.elements;return po.subVectors(e,t),po.lengthSq()===0&&(po.z=1),po.normalize(),vh.crossVectors(n,po),vh.lengthSq()===0&&(Math.abs(n.z)===1?po.x+=1e-4:po.z+=1e-4,po.normalize(),vh.crossVectors(n,po)),vh.normalize(),T2.crossVectors(po,vh),r[0]=vh.x,r[4]=T2.x,r[8]=po.x,r[1]=vh.y,r[5]=T2.y,r[9]=po.y,r[2]=vh.z,r[6]=T2.z,r[10]=po.z,this}multiply(e){return this.multiplyMatrices(this,e)}premultiply(e){return this.multiplyMatrices(e,this)}multiplyMatrices(e,t){const n=e.elements,r=t.elements,s=this.elements,a=n[0],l=n[4],u=n[8],h=n[12],g=n[1],v=n[5],x=n[9],S=n[13],w=n[2],R=n[6],C=n[10],E=n[14],B=n[3],L=n[7],O=n[11],z=n[15],G=r[0],k=r[4],H=r[8],F=r[12],V=r[1],Y=r[5],ee=r[9],ne=r[13],se=r[2],te=r[6],Q=r[10],le=r[14],de=r[3],Te=r[7],Se=r[11],ue=r[15];return s[0]=a*G+l*V+u*se+h*de,s[4]=a*k+l*Y+u*te+h*Te,s[8]=a*H+l*ee+u*Q+h*Se,s[12]=a*F+l*ne+u*le+h*ue,s[1]=g*G+v*V+x*se+S*de,s[5]=g*k+v*Y+x*te+S*Te,s[9]=g*H+v*ee+x*Q+S*Se,s[13]=g*F+v*ne+x*le+S*ue,s[2]=w*G+R*V+C*se+E*de,s[6]=w*k+R*Y+C*te+E*Te,s[10]=w*H+R*ee+C*Q+E*Se,s[14]=w*F+R*ne+C*le+E*ue,s[3]=B*G+L*V+O*se+z*de,s[7]=B*k+L*Y+O*te+z*Te,s[11]=B*H+L*ee+O*Q+z*Se,s[15]=B*F+L*ne+O*le+z*ue,this}multiplyScalar(e){const t=this.elements;return t[0]*=e,t[4]*=e,t[8]*=e,t[12]*=e,t[1]*=e,t[5]*=e,t[9]*=e,t[13]*=e,t[2]*=e,t[6]*=e,t[10]*=e,t[14]*=e,t[3]*=e,t[7]*=e,t[11]*=e,t[15]*=e,this}determinant(){const e=this.elements,t=e[0],n=e[4],r=e[8],s=e[12],a=e[1],l=e[5],u=e[9],h=e[13],g=e[2],v=e[6],x=e[10],S=e[14],w=e[3],R=e[7],C=e[11],E=e[15];return w*(+s*u*v-r*h*v-s*l*x+n*h*x+r*l*S-n*u*S)+R*(+t*u*S-t*h*x+s*a*x-r*a*S+r*h*g-s*u*g)+C*(+t*h*v-t*l*S-s*a*v+n*a*S+s*l*g-n*h*g)+E*(-r*l*g-t*u*v+t*l*x+r*a*v-n*a*x+n*u*g)}transpose(){const e=this.elements;let t;return t=e[1],e[1]=e[4],e[4]=t,t=e[2],e[2]=e[8],e[8]=t,t=e[6],e[6]=e[9],e[9]=t,t=e[3],e[3]=e[12],e[12]=t,t=e[7],e[7]=e[13],e[13]=t,t=e[11],e[11]=e[14],e[14]=t,this}setPosition(e,t,n){const r=this.elements;return e.isVector3?(r[12]=e.x,r[13]=e.y,r[14]=e.z):(r[12]=e,r[13]=t,r[14]=n),this}invert(){const e=this.elements,t=e[0],n=e[1],r=e[2],s=e[3],a=e[4],l=e[5],u=e[6],h=e[7],g=e[8],v=e[9],x=e[10],S=e[11],w=e[12],R=e[13],C=e[14],E=e[15],B=v*C*h-R*x*h+R*u*S-l*C*S-v*u*E+l*x*E,L=w*x*h-g*C*h-w*u*S+a*C*S+g*u*E-a*x*E,O=g*R*h-w*v*h+w*l*S-a*R*S-g*l*E+a*v*E,z=w*v*u-g*R*u-w*l*x+a*R*x+g*l*C-a*v*C,G=t*B+n*L+r*O+s*z;if(G===0)return this.set(0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0);const k=1/G;return e[0]=B*k,e[1]=(R*x*s-v*C*s-R*r*S+n*C*S+v*r*E-n*x*E)*k,e[2]=(l*C*s-R*u*s+R*r*h-n*C*h-l*r*E+n*u*E)*k,e[3]=(v*u*s-l*x*s-v*r*h+n*x*h+l*r*S-n*u*S)*k,e[4]=L*k,e[5]=(g*C*s-w*x*s+w*r*S-t*C*S-g*r*E+t*x*E)*k,e[6]=(w*u*s-a*C*s-w*r*h+t*C*h+a*r*E-t*u*E)*k,e[7]=(a*x*s-g*u*s+g*r*h-t*x*h-a*r*S+t*u*S)*k,e[8]=O*k,e[9]=(w*v*s-g*R*s-w*n*S+t*R*S+g*n*E-t*v*E)*k,e[10]=(a*R*s-w*l*s+w*n*h-t*R*h-a*n*E+t*l*E)*k,e[11]=(g*l*s-a*v*s-g*n*h+t*v*h+a*n*S-t*l*S)*k,e[12]=z*k,e[13]=(g*R*r-w*v*r+w*n*x-t*R*x-g*n*C+t*v*C)*k,e[14]=(w*l*r-a*R*r-w*n*u+t*R*u+a*n*C-t*l*C)*k,e[15]=(a*v*r-g*l*r+g*n*u-t*v*u-a*n*x+t*l*x)*k,this}scale(e){const t=this.elements,n=e.x,r=e.y,s=e.z;return t[0]*=n,t[4]*=r,t[8]*=s,t[1]*=n,t[5]*=r,t[9]*=s,t[2]*=n,t[6]*=r,t[10]*=s,t[3]*=n,t[7]*=r,t[11]*=s,this}getMaxScaleOnAxis(){const e=this.elements,t=e[0]*e[0]+e[1]*e[1]+e[2]*e[2],n=e[4]*e[4]+e[5]*e[5]+e[6]*e[6],r=e[8]*e[8]+e[9]*e[9]+e[10]*e[10];return Math.sqrt(Math.max(t,n,r))}makeTranslation(e,t,n){return e.isVector3?this.set(1,0,0,e.x,0,1,0,e.y,0,0,1,e.z,0,0,0,1):this.set(1,0,0,e,0,1,0,t,0,0,1,n,0,0,0,1),this}makeRotationX(e){const t=Math.cos(e),n=Math.sin(e);return this.set(1,0,0,0,0,t,-n,0,0,n,t,0,0,0,0,1),this}makeRotationY(e){const t=Math.cos(e),n=Math.sin(e);return this.set(t,0,n,0,0,1,0,0,-n,0,t,0,0,0,0,1),this}makeRotationZ(e){const t=Math.cos(e),n=Math.sin(e);return this.set(t,-n,0,0,n,t,0,0,0,0,1,0,0,0,0,1),this}makeRotationAxis(e,t){const n=Math.cos(t),r=Math.sin(t),s=1-n,a=e.x,l=e.y,u=e.z,h=s*a,g=s*l;return this.set(h*a+n,h*l-r*u,h*u+r*l,0,h*l+r*u,g*l+n,g*u-r*a,0,h*u-r*l,g*u+r*a,s*u*u+n,0,0,0,0,1),this}makeScale(e,t,n){return this.set(e,0,0,0,0,t,0,0,0,0,n,0,0,0,0,1),this}makeShear(e,t,n,r,s,a){return this.set(1,n,s,0,e,1,a,0,t,r,1,0,0,0,0,1),this}compose(e,t,n){const r=this.elements,s=t._x,a=t._y,l=t._z,u=t._w,h=s+s,g=a+a,v=l+l,x=s*h,S=s*g,w=s*v,R=a*g,C=a*v,E=l*v,B=u*h,L=u*g,O=u*v,z=n.x,G=n.y,k=n.z;return r[0]=(1-(R+E))*z,r[1]=(S+O)*z,r[2]=(w-L)*z,r[3]=0,r[4]=(S-O)*G,r[5]=(1-(x+E))*G,r[6]=(C+B)*G,r[7]=0,r[8]=(w+L)*k,r[9]=(C-B)*k,r[10]=(1-(x+R))*k,r[11]=0,r[12]=e.x,r[13]=e.y,r[14]=e.z,r[15]=1,this}decompose(e,t,n){const r=this.elements;let s=cd.set(r[0],r[1],r[2]).length();const a=cd.set(r[4],r[5],r[6]).length(),l=cd.set(r[8],r[9],r[10]).length();this.determinant()<0&&(s=-s),e.x=r[12],e.y=r[13],e.z=r[14],gl.copy(this);const h=1/s,g=1/a,v=1/l;return gl.elements[0]*=h,gl.elements[1]*=h,gl.elements[2]*=h,gl.elements[4]*=g,gl.elements[5]*=g,gl.elements[6]*=g,gl.elements[8]*=v,gl.elements[9]*=v,gl.elements[10]*=v,t.setFromRotationMatrix(gl),n.x=s,n.y=a,n.z=l,this}makePerspective(e,t,n,r,s,a,l=Ha){const u=this.elements,h=2*s/(t-e),g=2*s/(n-r),v=(t+e)/(t-e),x=(n+r)/(n-r);let S,w;if(l===Ha)S=-(a+s)/(a-s),w=-2*a*s/(a-s);else if(l===pu)S=-a/(a-s),w=-a*s/(a-s);else throw new Error("THREE.Matrix4.makePerspective(): Invalid coordinate system: "+l);return u[0]=h,u[4]=0,u[8]=v,u[12]=0,u[1]=0,u[5]=g,u[9]=x,u[13]=0,u[2]=0,u[6]=0,u[10]=S,u[14]=w,u[3]=0,u[7]=0,u[11]=-1,u[15]=0,this}makeOrthographic(e,t,n,r,s,a,l=Ha){const u=this.elements,h=1/(t-e),g=1/(n-r),v=1/(a-s),x=(t+e)*h,S=(n+r)*g;let w,R;if(l===Ha)w=(a+s)*v,R=-2*v;else if(l===pu)w=s*v,R=-1*v;else throw new Error("THREE.Matrix4.makeOrthographic(): Invalid coordinate system: "+l);return u[0]=2*h,u[4]=0,u[8]=0,u[12]=-x,u[1]=0,u[5]=2*g,u[9]=0,u[13]=-S,u[2]=0,u[6]=0,u[10]=R,u[14]=-w,u[3]=0,u[7]=0,u[11]=0,u[15]=1,this}equals(e){const t=this.elements,n=e.elements;for(let r=0;r<16;r++)if(t[r]!==n[r])return!1;return!0}fromArray(e,t=0){for(let n=0;n<16;n++)this.elements[n]=e[n+t];return this}toArray(e=[],t=0){const n=this.elements;return e[t]=n[0],e[t+1]=n[1],e[t+2]=n[2],e[t+3]=n[3],e[t+4]=n[4],e[t+5]=n[5],e[t+6]=n[6],e[t+7]=n[7],e[t+8]=n[8],e[t+9]=n[9],e[t+10]=n[10],e[t+11]=n[11],e[t+12]=n[12],e[t+13]=n[13],e[t+14]=n[14],e[t+15]=n[15],e}}const cd=new ce,gl=new kn,Pk=new ce(0,0,0),Lk=new ce(1,1,1),vh=new ce,T2=new ce,po=new ce,ZC=new kn,JC=new mu;class la{constructor(e=0,t=0,n=0,r=la.DEFAULT_ORDER){this.isEuler=!0,this._x=e,this._y=t,this._z=n,this._order=r}get x(){return this._x}set x(e){this._x=e,this._onChangeCallback()}get y(){return this._y}set y(e){this._y=e,this._onChangeCallback()}get z(){return this._z}set z(e){this._z=e,this._onChangeCallback()}get order(){return this._order}set order(e){this._order=e,this._onChangeCallback()}set(e,t,n,r=this._order){return this._x=e,this._y=t,this._z=n,this._order=r,this._onChangeCallback(),this}clone(){return new this.constructor(this._x,this._y,this._z,this._order)}copy(e){return this._x=e._x,this._y=e._y,this._z=e._z,this._order=e._order,this._onChangeCallback(),this}setFromRotationMatrix(e,t=this._order,n=!0){const r=e.elements,s=r[0],a=r[4],l=r[8],u=r[1],h=r[5],g=r[9],v=r[2],x=r[6],S=r[10];switch(t){case"XYZ":this._y=Math.asin(ni(l,-1,1)),Math.abs(l)<.9999999?(this._x=Math.atan2(-g,S),this._z=Math.atan2(-a,s)):(this._x=Math.atan2(x,h),this._z=0);break;case"YXZ":this._x=Math.asin(-ni(g,-1,1)),Math.abs(g)<.9999999?(this._y=Math.atan2(l,S),this._z=Math.atan2(u,h)):(this._y=Math.atan2(-v,s),this._z=0);break;case"ZXY":this._x=Math.asin(ni(x,-1,1)),Math.abs(x)<.9999999?(this._y=Math.atan2(-v,S),this._z=Math.atan2(-a,h)):(this._y=0,this._z=Math.atan2(u,s));break;case"ZYX":this._y=Math.asin(-ni(v,-1,1)),Math.abs(v)<.9999999?(this._x=Math.atan2(x,S),this._z=Math.atan2(u,s)):(this._x=0,this._z=Math.atan2(-a,h));break;case"YZX":this._z=Math.asin(ni(u,-1,1)),Math.abs(u)<.9999999?(this._x=Math.atan2(-g,h),this._y=Math.atan2(-v,s)):(this._x=0,this._y=Math.atan2(l,S));break;case"XZY":this._z=Math.asin(-ni(a,-1,1)),Math.abs(a)<.9999999?(this._x=Math.atan2(x,h),this._y=Math.atan2(l,s)):(this._x=Math.atan2(-g,S),this._y=0);break;default:console.warn("THREE.Euler: .setFromRotationMatrix() encountered an unknown order: "+t)}return this._order=t,n===!0&&this._onChangeCallback(),this}setFromQuaternion(e,t,n){return ZC.makeRotationFromQuaternion(e),this.setFromRotationMatrix(ZC,t,n)}setFromVector3(e,t=this._order){return this.set(e.x,e.y,e.z,t)}reorder(e){return JC.setFromEuler(this),this.setFromQuaternion(JC,e)}equals(e){return e._x===this._x&&e._y===this._y&&e._z===this._z&&e._order===this._order}fromArray(e){return this._x=e[0],this._y=e[1],this._z=e[2],e[3]!==void 0&&(this._order=e[3]),this._onChangeCallback(),this}toArray(e=[],t=0){return e[t]=this._x,e[t+1]=this._y,e[t+2]=this._z,e[t+3]=this._order,e}_onChange(e){return this._onChangeCallback=e,this}_onChangeCallback(){}*[Symbol.iterator](){yield this._x,yield this._y,yield this._z,yield this._order}}la.DEFAULT_ORDER="XYZ";class Ww{constructor(){this.mask=1}set(e){this.mask=(1<>>0}enable(e){this.mask|=1<1){for(let t=0;t1){for(let n=0;n0&&(r.userData=this.userData),r.layers=this.layers.mask,r.matrix=this.matrix.toArray(),r.up=this.up.toArray(),this.matrixAutoUpdate===!1&&(r.matrixAutoUpdate=!1),this.isInstancedMesh&&(r.type="InstancedMesh",r.count=this.count,r.instanceMatrix=this.instanceMatrix.toJSON(),this.instanceColor!==null&&(r.instanceColor=this.instanceColor.toJSON())),this.isBatchedMesh&&(r.type="BatchedMesh",r.perObjectFrustumCulled=this.perObjectFrustumCulled,r.sortObjects=this.sortObjects,r.drawRanges=this._drawRanges,r.reservedRanges=this._reservedRanges,r.visibility=this._visibility,r.active=this._active,r.bounds=this._bounds.map(l=>({boxInitialized:l.boxInitialized,boxMin:l.box.min.toArray(),boxMax:l.box.max.toArray(),sphereInitialized:l.sphereInitialized,sphereRadius:l.sphere.radius,sphereCenter:l.sphere.center.toArray()})),r.maxInstanceCount=this._maxInstanceCount,r.maxVertexCount=this._maxVertexCount,r.maxIndexCount=this._maxIndexCount,r.geometryInitialized=this._geometryInitialized,r.geometryCount=this._geometryCount,r.matricesTexture=this._matricesTexture.toJSON(e),this._colorsTexture!==null&&(r.colorsTexture=this._colorsTexture.toJSON(e)),this.boundingSphere!==null&&(r.boundingSphere={center:r.boundingSphere.center.toArray(),radius:r.boundingSphere.radius}),this.boundingBox!==null&&(r.boundingBox={min:r.boundingBox.min.toArray(),max:r.boundingBox.max.toArray()}));function s(l,u){return l[u.uuid]===void 0&&(l[u.uuid]=u.toJSON(e)),u.uuid}if(this.isScene)this.background&&(this.background.isColor?r.background=this.background.toJSON():this.background.isTexture&&(r.background=this.background.toJSON(e).uuid)),this.environment&&this.environment.isTexture&&this.environment.isRenderTargetTexture!==!0&&(r.environment=this.environment.toJSON(e).uuid);else if(this.isMesh||this.isLine||this.isPoints){r.geometry=s(e.geometries,this.geometry);const l=this.geometry.parameters;if(l!==void 0&&l.shapes!==void 0){const u=l.shapes;if(Array.isArray(u))for(let h=0,g=u.length;h0){r.children=[];for(let l=0;l0){r.animations=[];for(let l=0;l0&&(n.geometries=l),u.length>0&&(n.materials=u),h.length>0&&(n.textures=h),g.length>0&&(n.images=g),v.length>0&&(n.shapes=v),x.length>0&&(n.skeletons=x),S.length>0&&(n.animations=S),w.length>0&&(n.nodes=w)}return n.object=r,n;function a(l){const u=[];for(const h in l){const g=l[h];delete g.metadata,u.push(g)}return u}}clone(e){return new this.constructor().copy(this,e)}copy(e,t=!0){if(this.name=e.name,this.up.copy(e.up),this.position.copy(e.position),this.rotation.order=e.rotation.order,this.quaternion.copy(e.quaternion),this.scale.copy(e.scale),this.matrix.copy(e.matrix),this.matrixWorld.copy(e.matrixWorld),this.matrixAutoUpdate=e.matrixAutoUpdate,this.matrixWorldAutoUpdate=e.matrixWorldAutoUpdate,this.matrixWorldNeedsUpdate=e.matrixWorldNeedsUpdate,this.layers.mask=e.layers.mask,this.visible=e.visible,this.castShadow=e.castShadow,this.receiveShadow=e.receiveShadow,this.frustumCulled=e.frustumCulled,this.renderOrder=e.renderOrder,this.animations=e.animations.slice(),this.userData=JSON.parse(JSON.stringify(e.userData)),t===!0)for(let n=0;n0?r.multiplyScalar(1/Math.sqrt(s)):r.set(0,0,0)}static getBarycoord(e,t,n,r,s){vl.subVectors(r,t),pc.subVectors(n,t),l3.subVectors(e,t);const a=vl.dot(vl),l=vl.dot(pc),u=vl.dot(l3),h=pc.dot(pc),g=pc.dot(l3),v=a*h-l*l;if(v===0)return s.set(0,0,0),null;const x=1/v,S=(h*u-l*g)*x,w=(a*g-l*u)*x;return s.set(1-S-w,w,S)}static containsPoint(e,t,n,r){return this.getBarycoord(e,t,n,r,mc)===null?!1:mc.x>=0&&mc.y>=0&&mc.x+mc.y<=1}static getInterpolation(e,t,n,r,s,a,l,u){return this.getBarycoord(e,t,n,r,mc)===null?(u.x=0,u.y=0,"z"in u&&(u.z=0),"w"in u&&(u.w=0),null):(u.setScalar(0),u.addScaledVector(s,mc.x),u.addScaledVector(a,mc.y),u.addScaledVector(l,mc.z),u)}static getInterpolatedAttribute(e,t,n,r,s,a){return f3.setScalar(0),A3.setScalar(0),d3.setScalar(0),f3.fromBufferAttribute(e,t),A3.fromBufferAttribute(e,n),d3.fromBufferAttribute(e,r),a.setScalar(0),a.addScaledVector(f3,s.x),a.addScaledVector(A3,s.y),a.addScaledVector(d3,s.z),a}static isFrontFacing(e,t,n,r){return vl.subVectors(n,t),pc.subVectors(e,t),vl.cross(pc).dot(r)<0}set(e,t,n){return this.a.copy(e),this.b.copy(t),this.c.copy(n),this}setFromPointsAndIndices(e,t,n,r){return this.a.copy(e[t]),this.b.copy(e[n]),this.c.copy(e[r]),this}setFromAttributeAndIndices(e,t,n,r){return this.a.fromBufferAttribute(e,t),this.b.fromBufferAttribute(e,n),this.c.fromBufferAttribute(e,r),this}clone(){return new this.constructor().copy(this)}copy(e){return this.a.copy(e.a),this.b.copy(e.b),this.c.copy(e.c),this}getArea(){return vl.subVectors(this.c,this.b),pc.subVectors(this.a,this.b),vl.cross(pc).length()*.5}getMidpoint(e){return e.addVectors(this.a,this.b).add(this.c).multiplyScalar(1/3)}getNormal(e){return Sl.getNormal(this.a,this.b,this.c,e)}getPlane(e){return e.setFromCoplanarPoints(this.a,this.b,this.c)}getBarycoord(e,t){return Sl.getBarycoord(e,this.a,this.b,this.c,t)}getInterpolation(e,t,n,r,s){return Sl.getInterpolation(e,this.a,this.b,this.c,t,n,r,s)}containsPoint(e){return Sl.containsPoint(e,this.a,this.b,this.c)}isFrontFacing(e){return Sl.isFrontFacing(this.a,this.b,this.c,e)}intersectsBox(e){return e.intersectsTriangle(this)}closestPointToPoint(e,t){const n=this.a,r=this.b,s=this.c;let a,l;Ad.subVectors(r,n),dd.subVectors(s,n),u3.subVectors(e,n);const u=Ad.dot(u3),h=dd.dot(u3);if(u<=0&&h<=0)return t.copy(n);c3.subVectors(e,r);const g=Ad.dot(c3),v=dd.dot(c3);if(g>=0&&v<=g)return t.copy(r);const x=u*v-g*h;if(x<=0&&u>=0&&g<=0)return a=u/(u-g),t.copy(n).addScaledVector(Ad,a);h3.subVectors(e,s);const S=Ad.dot(h3),w=dd.dot(h3);if(w>=0&&S<=w)return t.copy(s);const R=S*h-u*w;if(R<=0&&h>=0&&w<=0)return l=h/(h-w),t.copy(n).addScaledVector(dd,l);const C=g*w-S*v;if(C<=0&&v-g>=0&&S-w>=0)return s5.subVectors(s,r),l=(v-g)/(v-g+(S-w)),t.copy(r).addScaledVector(s5,l);const E=1/(C+R+x);return a=R*E,l=x*E,t.copy(n).addScaledVector(Ad,a).addScaledVector(dd,l)}equals(e){return e.a.equals(this.a)&&e.b.equals(this.b)&&e.c.equals(this.c)}}const k7={aliceblue:15792383,antiquewhite:16444375,aqua:65535,aquamarine:8388564,azure:15794175,beige:16119260,bisque:16770244,black:0,blanchedalmond:16772045,blue:255,blueviolet:9055202,brown:10824234,burlywood:14596231,cadetblue:6266528,chartreuse:8388352,chocolate:13789470,coral:16744272,cornflowerblue:6591981,cornsilk:16775388,crimson:14423100,cyan:65535,darkblue:139,darkcyan:35723,darkgoldenrod:12092939,darkgray:11119017,darkgreen:25600,darkgrey:11119017,darkkhaki:12433259,darkmagenta:9109643,darkolivegreen:5597999,darkorange:16747520,darkorchid:10040012,darkred:9109504,darksalmon:15308410,darkseagreen:9419919,darkslateblue:4734347,darkslategray:3100495,darkslategrey:3100495,darkturquoise:52945,darkviolet:9699539,deeppink:16716947,deepskyblue:49151,dimgray:6908265,dimgrey:6908265,dodgerblue:2003199,firebrick:11674146,floralwhite:16775920,forestgreen:2263842,fuchsia:16711935,gainsboro:14474460,ghostwhite:16316671,gold:16766720,goldenrod:14329120,gray:8421504,green:32768,greenyellow:11403055,grey:8421504,honeydew:15794160,hotpink:16738740,indianred:13458524,indigo:4915330,ivory:16777200,khaki:15787660,lavender:15132410,lavenderblush:16773365,lawngreen:8190976,lemonchiffon:16775885,lightblue:11393254,lightcoral:15761536,lightcyan:14745599,lightgoldenrodyellow:16448210,lightgray:13882323,lightgreen:9498256,lightgrey:13882323,lightpink:16758465,lightsalmon:16752762,lightseagreen:2142890,lightskyblue:8900346,lightslategray:7833753,lightslategrey:7833753,lightsteelblue:11584734,lightyellow:16777184,lime:65280,limegreen:3329330,linen:16445670,magenta:16711935,maroon:8388608,mediumaquamarine:6737322,mediumblue:205,mediumorchid:12211667,mediumpurple:9662683,mediumseagreen:3978097,mediumslateblue:8087790,mediumspringgreen:64154,mediumturquoise:4772300,mediumvioletred:13047173,midnightblue:1644912,mintcream:16121850,mistyrose:16770273,moccasin:16770229,navajowhite:16768685,navy:128,oldlace:16643558,olive:8421376,olivedrab:7048739,orange:16753920,orangered:16729344,orchid:14315734,palegoldenrod:15657130,palegreen:10025880,paleturquoise:11529966,palevioletred:14381203,papayawhip:16773077,peachpuff:16767673,peru:13468991,pink:16761035,plum:14524637,powderblue:11591910,purple:8388736,rebeccapurple:6697881,red:16711680,rosybrown:12357519,royalblue:4286945,saddlebrown:9127187,salmon:16416882,sandybrown:16032864,seagreen:3050327,seashell:16774638,sienna:10506797,silver:12632256,skyblue:8900331,slateblue:6970061,slategray:7372944,slategrey:7372944,snow:16775930,springgreen:65407,steelblue:4620980,tan:13808780,teal:32896,thistle:14204888,tomato:16737095,turquoise:4251856,violet:15631086,wheat:16113331,white:16777215,whitesmoke:16119285,yellow:16776960,yellowgreen:10145074},_h={h:0,s:0,l:0},M2={h:0,s:0,l:0};function p3(i,e,t){return t<0&&(t+=1),t>1&&(t-=1),t<1/6?i+(e-i)*6*t:t<1/2?e:t<2/3?i+(e-i)*6*(2/3-t):i}let an=class{constructor(e,t,n){return this.isColor=!0,this.r=1,this.g=1,this.b=1,this.set(e,t,n)}set(e,t,n){if(t===void 0&&n===void 0){const r=e;r&&r.isColor?this.copy(r):typeof r=="number"?this.setHex(r):typeof r=="string"&&this.setStyle(r)}else this.setRGB(e,t,n);return this}setScalar(e){return this.r=e,this.g=e,this.b=e,this}setHex(e,t=_n){return e=Math.floor(e),this.r=(e>>16&255)/255,this.g=(e>>8&255)/255,this.b=(e&255)/255,ai.toWorkingColorSpace(this,t),this}setRGB(e,t,n,r=ai.workingColorSpace){return this.r=e,this.g=t,this.b=n,ai.toWorkingColorSpace(this,r),this}setHSL(e,t,n,r=ai.workingColorSpace){if(e=Hw(e,1),t=ni(t,0,1),n=ni(n,0,1),t===0)this.r=this.g=this.b=n;else{const s=n<=.5?n*(1+t):n+t-n*t,a=2*n-s;this.r=p3(a,s,e+1/3),this.g=p3(a,s,e),this.b=p3(a,s,e-1/3)}return ai.toWorkingColorSpace(this,r),this}setStyle(e,t=_n){function n(s){s!==void 0&&parseFloat(s)<1&&console.warn("THREE.Color: Alpha component of "+e+" will be ignored.")}let r;if(r=/^(\w+)\(([^\)]*)\)/.exec(e)){let s;const a=r[1],l=r[2];switch(a){case"rgb":case"rgba":if(s=/^\s*(\d+)\s*,\s*(\d+)\s*,\s*(\d+)\s*(?:,\s*(\d*\.?\d+)\s*)?$/.exec(l))return n(s[4]),this.setRGB(Math.min(255,parseInt(s[1],10))/255,Math.min(255,parseInt(s[2],10))/255,Math.min(255,parseInt(s[3],10))/255,t);if(s=/^\s*(\d+)\%\s*,\s*(\d+)\%\s*,\s*(\d+)\%\s*(?:,\s*(\d*\.?\d+)\s*)?$/.exec(l))return n(s[4]),this.setRGB(Math.min(100,parseInt(s[1],10))/100,Math.min(100,parseInt(s[2],10))/100,Math.min(100,parseInt(s[3],10))/100,t);break;case"hsl":case"hsla":if(s=/^\s*(\d*\.?\d+)\s*,\s*(\d*\.?\d+)\%\s*,\s*(\d*\.?\d+)\%\s*(?:,\s*(\d*\.?\d+)\s*)?$/.exec(l))return n(s[4]),this.setHSL(parseFloat(s[1])/360,parseFloat(s[2])/100,parseFloat(s[3])/100,t);break;default:console.warn("THREE.Color: Unknown color model "+e)}}else if(r=/^\#([A-Fa-f\d]+)$/.exec(e)){const s=r[1],a=s.length;if(a===3)return this.setRGB(parseInt(s.charAt(0),16)/15,parseInt(s.charAt(1),16)/15,parseInt(s.charAt(2),16)/15,t);if(a===6)return this.setHex(parseInt(s,16),t);console.warn("THREE.Color: Invalid hex color "+e)}else if(e&&e.length>0)return this.setColorName(e,t);return this}setColorName(e,t=_n){const n=k7[e.toLowerCase()];return n!==void 0?this.setHex(n,t):console.warn("THREE.Color: Unknown color "+e),this}clone(){return new this.constructor(this.r,this.g,this.b)}copy(e){return this.r=e.r,this.g=e.g,this.b=e.b,this}copySRGBToLinear(e){return this.r=Mc(e.r),this.g=Mc(e.g),this.b=Mc(e.b),this}copyLinearToSRGB(e){return this.r=e0(e.r),this.g=e0(e.g),this.b=e0(e.b),this}convertSRGBToLinear(){return this.copySRGBToLinear(this),this}convertLinearToSRGB(){return this.copyLinearToSRGB(this),this}getHex(e=_n){return ai.fromWorkingColorSpace(ea.copy(this),e),Math.round(ni(ea.r*255,0,255))*65536+Math.round(ni(ea.g*255,0,255))*256+Math.round(ni(ea.b*255,0,255))}getHexString(e=_n){return("000000"+this.getHex(e).toString(16)).slice(-6)}getHSL(e,t=ai.workingColorSpace){ai.fromWorkingColorSpace(ea.copy(this),t);const n=ea.r,r=ea.g,s=ea.b,a=Math.max(n,r,s),l=Math.min(n,r,s);let u,h;const g=(l+a)/2;if(l===a)u=0,h=0;else{const v=a-l;switch(h=g<=.5?v/(a+l):v/(2-a-l),a){case n:u=(r-s)/v+(r0!=e>0&&this.version++,this._alphaTest=e}onBeforeRender(){}onBeforeCompile(){}customProgramCacheKey(){return this.onBeforeCompile.toString()}setValues(e){if(e!==void 0)for(const t in e){const n=e[t];if(n===void 0){console.warn(`THREE.Material: parameter '${t}' has value of undefined.`);continue}const r=this[t];if(r===void 0){console.warn(`THREE.Material: '${t}' is not a property of THREE.${this.type}.`);continue}r&&r.isColor?r.set(n):r&&r.isVector3&&n&&n.isVector3?r.copy(n):this[t]=n}}toJSON(e){const t=e===void 0||typeof e=="string";t&&(e={textures:{},images:{}});const n={metadata:{version:4.6,type:"Material",generator:"Material.toJSON"}};n.uuid=this.uuid,n.type=this.type,this.name!==""&&(n.name=this.name),this.color&&this.color.isColor&&(n.color=this.color.getHex()),this.roughness!==void 0&&(n.roughness=this.roughness),this.metalness!==void 0&&(n.metalness=this.metalness),this.sheen!==void 0&&(n.sheen=this.sheen),this.sheenColor&&this.sheenColor.isColor&&(n.sheenColor=this.sheenColor.getHex()),this.sheenRoughness!==void 0&&(n.sheenRoughness=this.sheenRoughness),this.emissive&&this.emissive.isColor&&(n.emissive=this.emissive.getHex()),this.emissiveIntensity!==void 0&&this.emissiveIntensity!==1&&(n.emissiveIntensity=this.emissiveIntensity),this.specular&&this.specular.isColor&&(n.specular=this.specular.getHex()),this.specularIntensity!==void 0&&(n.specularIntensity=this.specularIntensity),this.specularColor&&this.specularColor.isColor&&(n.specularColor=this.specularColor.getHex()),this.shininess!==void 0&&(n.shininess=this.shininess),this.clearcoat!==void 0&&(n.clearcoat=this.clearcoat),this.clearcoatRoughness!==void 0&&(n.clearcoatRoughness=this.clearcoatRoughness),this.clearcoatMap&&this.clearcoatMap.isTexture&&(n.clearcoatMap=this.clearcoatMap.toJSON(e).uuid),this.clearcoatRoughnessMap&&this.clearcoatRoughnessMap.isTexture&&(n.clearcoatRoughnessMap=this.clearcoatRoughnessMap.toJSON(e).uuid),this.clearcoatNormalMap&&this.clearcoatNormalMap.isTexture&&(n.clearcoatNormalMap=this.clearcoatNormalMap.toJSON(e).uuid,n.clearcoatNormalScale=this.clearcoatNormalScale.toArray()),this.dispersion!==void 0&&(n.dispersion=this.dispersion),this.iridescence!==void 0&&(n.iridescence=this.iridescence),this.iridescenceIOR!==void 0&&(n.iridescenceIOR=this.iridescenceIOR),this.iridescenceThicknessRange!==void 0&&(n.iridescenceThicknessRange=this.iridescenceThicknessRange),this.iridescenceMap&&this.iridescenceMap.isTexture&&(n.iridescenceMap=this.iridescenceMap.toJSON(e).uuid),this.iridescenceThicknessMap&&this.iridescenceThicknessMap.isTexture&&(n.iridescenceThicknessMap=this.iridescenceThicknessMap.toJSON(e).uuid),this.anisotropy!==void 0&&(n.anisotropy=this.anisotropy),this.anisotropyRotation!==void 0&&(n.anisotropyRotation=this.anisotropyRotation),this.anisotropyMap&&this.anisotropyMap.isTexture&&(n.anisotropyMap=this.anisotropyMap.toJSON(e).uuid),this.map&&this.map.isTexture&&(n.map=this.map.toJSON(e).uuid),this.matcap&&this.matcap.isTexture&&(n.matcap=this.matcap.toJSON(e).uuid),this.alphaMap&&this.alphaMap.isTexture&&(n.alphaMap=this.alphaMap.toJSON(e).uuid),this.lightMap&&this.lightMap.isTexture&&(n.lightMap=this.lightMap.toJSON(e).uuid,n.lightMapIntensity=this.lightMapIntensity),this.aoMap&&this.aoMap.isTexture&&(n.aoMap=this.aoMap.toJSON(e).uuid,n.aoMapIntensity=this.aoMapIntensity),this.bumpMap&&this.bumpMap.isTexture&&(n.bumpMap=this.bumpMap.toJSON(e).uuid,n.bumpScale=this.bumpScale),this.normalMap&&this.normalMap.isTexture&&(n.normalMap=this.normalMap.toJSON(e).uuid,n.normalMapType=this.normalMapType,n.normalScale=this.normalScale.toArray()),this.displacementMap&&this.displacementMap.isTexture&&(n.displacementMap=this.displacementMap.toJSON(e).uuid,n.displacementScale=this.displacementScale,n.displacementBias=this.displacementBias),this.roughnessMap&&this.roughnessMap.isTexture&&(n.roughnessMap=this.roughnessMap.toJSON(e).uuid),this.metalnessMap&&this.metalnessMap.isTexture&&(n.metalnessMap=this.metalnessMap.toJSON(e).uuid),this.emissiveMap&&this.emissiveMap.isTexture&&(n.emissiveMap=this.emissiveMap.toJSON(e).uuid),this.specularMap&&this.specularMap.isTexture&&(n.specularMap=this.specularMap.toJSON(e).uuid),this.specularIntensityMap&&this.specularIntensityMap.isTexture&&(n.specularIntensityMap=this.specularIntensityMap.toJSON(e).uuid),this.specularColorMap&&this.specularColorMap.isTexture&&(n.specularColorMap=this.specularColorMap.toJSON(e).uuid),this.envMap&&this.envMap.isTexture&&(n.envMap=this.envMap.toJSON(e).uuid,this.combine!==void 0&&(n.combine=this.combine)),this.envMapRotation!==void 0&&(n.envMapRotation=this.envMapRotation.toArray()),this.envMapIntensity!==void 0&&(n.envMapIntensity=this.envMapIntensity),this.reflectivity!==void 0&&(n.reflectivity=this.reflectivity),this.refractionRatio!==void 0&&(n.refractionRatio=this.refractionRatio),this.gradientMap&&this.gradientMap.isTexture&&(n.gradientMap=this.gradientMap.toJSON(e).uuid),this.transmission!==void 0&&(n.transmission=this.transmission),this.transmissionMap&&this.transmissionMap.isTexture&&(n.transmissionMap=this.transmissionMap.toJSON(e).uuid),this.thickness!==void 0&&(n.thickness=this.thickness),this.thicknessMap&&this.thicknessMap.isTexture&&(n.thicknessMap=this.thicknessMap.toJSON(e).uuid),this.attenuationDistance!==void 0&&this.attenuationDistance!==1/0&&(n.attenuationDistance=this.attenuationDistance),this.attenuationColor!==void 0&&(n.attenuationColor=this.attenuationColor.getHex()),this.size!==void 0&&(n.size=this.size),this.shadowSide!==null&&(n.shadowSide=this.shadowSide),this.sizeAttenuation!==void 0&&(n.sizeAttenuation=this.sizeAttenuation),this.blending!==Ka&&(n.blending=this.blending),this.side!==Nl&&(n.side=this.side),this.vertexColors===!0&&(n.vertexColors=!0),this.opacity<1&&(n.opacity=this.opacity),this.transparent===!0&&(n.transparent=!0),this.blendSrc!==qm&&(n.blendSrc=this.blendSrc),this.blendDst!==Vm&&(n.blendDst=this.blendDst),this.blendEquation!==Eo&&(n.blendEquation=this.blendEquation),this.blendSrcAlpha!==null&&(n.blendSrcAlpha=this.blendSrcAlpha),this.blendDstAlpha!==null&&(n.blendDstAlpha=this.blendDstAlpha),this.blendEquationAlpha!==null&&(n.blendEquationAlpha=this.blendEquationAlpha),this.blendColor&&this.blendColor.isColor&&(n.blendColor=this.blendColor.getHex()),this.blendAlpha!==0&&(n.blendAlpha=this.blendAlpha),this.depthFunc!==kh&&(n.depthFunc=this.depthFunc),this.depthTest===!1&&(n.depthTest=this.depthTest),this.depthWrite===!1&&(n.depthWrite=this.depthWrite),this.colorWrite===!1&&(n.colorWrite=this.colorWrite),this.stencilWriteMask!==255&&(n.stencilWriteMask=this.stencilWriteMask),this.stencilFunc!==WS&&(n.stencilFunc=this.stencilFunc),this.stencilRef!==0&&(n.stencilRef=this.stencilRef),this.stencilFuncMask!==255&&(n.stencilFuncMask=this.stencilFuncMask),this.stencilFail!==Uf&&(n.stencilFail=this.stencilFail),this.stencilZFail!==Uf&&(n.stencilZFail=this.stencilZFail),this.stencilZPass!==Uf&&(n.stencilZPass=this.stencilZPass),this.stencilWrite===!0&&(n.stencilWrite=this.stencilWrite),this.rotation!==void 0&&this.rotation!==0&&(n.rotation=this.rotation),this.polygonOffset===!0&&(n.polygonOffset=!0),this.polygonOffsetFactor!==0&&(n.polygonOffsetFactor=this.polygonOffsetFactor),this.polygonOffsetUnits!==0&&(n.polygonOffsetUnits=this.polygonOffsetUnits),this.linewidth!==void 0&&this.linewidth!==1&&(n.linewidth=this.linewidth),this.dashSize!==void 0&&(n.dashSize=this.dashSize),this.gapSize!==void 0&&(n.gapSize=this.gapSize),this.scale!==void 0&&(n.scale=this.scale),this.dithering===!0&&(n.dithering=!0),this.alphaTest>0&&(n.alphaTest=this.alphaTest),this.alphaHash===!0&&(n.alphaHash=!0),this.alphaToCoverage===!0&&(n.alphaToCoverage=!0),this.premultipliedAlpha===!0&&(n.premultipliedAlpha=!0),this.forceSinglePass===!0&&(n.forceSinglePass=!0),this.wireframe===!0&&(n.wireframe=!0),this.wireframeLinewidth>1&&(n.wireframeLinewidth=this.wireframeLinewidth),this.wireframeLinecap!=="round"&&(n.wireframeLinecap=this.wireframeLinecap),this.wireframeLinejoin!=="round"&&(n.wireframeLinejoin=this.wireframeLinejoin),this.flatShading===!0&&(n.flatShading=!0),this.visible===!1&&(n.visible=!1),this.toneMapped===!1&&(n.toneMapped=!1),this.fog===!1&&(n.fog=!1),Object.keys(this.userData).length>0&&(n.userData=this.userData);function r(s){const a=[];for(const l in s){const u=s[l];delete u.metadata,a.push(u)}return a}if(t){const s=r(e.textures),a=r(e.images);s.length>0&&(n.textures=s),a.length>0&&(n.images=a)}return n}clone(){return new this.constructor().copy(this)}copy(e){this.name=e.name,this.blending=e.blending,this.side=e.side,this.vertexColors=e.vertexColors,this.opacity=e.opacity,this.transparent=e.transparent,this.blendSrc=e.blendSrc,this.blendDst=e.blendDst,this.blendEquation=e.blendEquation,this.blendSrcAlpha=e.blendSrcAlpha,this.blendDstAlpha=e.blendDstAlpha,this.blendEquationAlpha=e.blendEquationAlpha,this.blendColor.copy(e.blendColor),this.blendAlpha=e.blendAlpha,this.depthFunc=e.depthFunc,this.depthTest=e.depthTest,this.depthWrite=e.depthWrite,this.stencilWriteMask=e.stencilWriteMask,this.stencilFunc=e.stencilFunc,this.stencilRef=e.stencilRef,this.stencilFuncMask=e.stencilFuncMask,this.stencilFail=e.stencilFail,this.stencilZFail=e.stencilZFail,this.stencilZPass=e.stencilZPass,this.stencilWrite=e.stencilWrite;const t=e.clippingPlanes;let n=null;if(t!==null){const r=t.length;n=new Array(r);for(let s=0;s!==r;++s)n[s]=t[s].clone()}return this.clippingPlanes=n,this.clipIntersection=e.clipIntersection,this.clipShadows=e.clipShadows,this.shadowSide=e.shadowSide,this.colorWrite=e.colorWrite,this.precision=e.precision,this.polygonOffset=e.polygonOffset,this.polygonOffsetFactor=e.polygonOffsetFactor,this.polygonOffsetUnits=e.polygonOffsetUnits,this.dithering=e.dithering,this.alphaTest=e.alphaTest,this.alphaHash=e.alphaHash,this.alphaToCoverage=e.alphaToCoverage,this.premultipliedAlpha=e.premultipliedAlpha,this.forceSinglePass=e.forceSinglePass,this.visible=e.visible,this.toneMapped=e.toneMapped,this.userData=JSON.parse(JSON.stringify(e.userData)),this}dispose(){this.dispatchEvent({type:"dispose"})}set needsUpdate(e){e===!0&&this.version++}onBuild(){console.warn("Material: onBuild() has been removed.")}}class pA extends ua{constructor(e){super(),this.isMeshBasicMaterial=!0,this.type="MeshBasicMaterial",this.color=new an(16777215),this.map=null,this.lightMap=null,this.lightMapIntensity=1,this.aoMap=null,this.aoMapIntensity=1,this.specularMap=null,this.alphaMap=null,this.envMap=null,this.envMapRotation=new la,this.combine=Lg,this.reflectivity=1,this.refractionRatio=.98,this.wireframe=!1,this.wireframeLinewidth=1,this.wireframeLinecap="round",this.wireframeLinejoin="round",this.fog=!0,this.setValues(e)}copy(e){return super.copy(e),this.color.copy(e.color),this.map=e.map,this.lightMap=e.lightMap,this.lightMapIntensity=e.lightMapIntensity,this.aoMap=e.aoMap,this.aoMapIntensity=e.aoMapIntensity,this.specularMap=e.specularMap,this.alphaMap=e.alphaMap,this.envMap=e.envMap,this.envMapRotation.copy(e.envMapRotation),this.combine=e.combine,this.reflectivity=e.reflectivity,this.refractionRatio=e.refractionRatio,this.wireframe=e.wireframe,this.wireframeLinewidth=e.wireframeLinewidth,this.wireframeLinecap=e.wireframeLinecap,this.wireframeLinejoin=e.wireframeLinejoin,this.fog=e.fog,this}}const bc=kk();function kk(){const i=new ArrayBuffer(4),e=new Float32Array(i),t=new Uint32Array(i),n=new Uint32Array(512),r=new Uint32Array(512);for(let u=0;u<256;++u){const h=u-127;h<-27?(n[u]=0,n[u|256]=32768,r[u]=24,r[u|256]=24):h<-14?(n[u]=1024>>-h-14,n[u|256]=1024>>-h-14|32768,r[u]=-h-1,r[u|256]=-h-1):h<=15?(n[u]=h+15<<10,n[u|256]=h+15<<10|32768,r[u]=13,r[u|256]=13):h<128?(n[u]=31744,n[u|256]=64512,r[u]=24,r[u|256]=24):(n[u]=31744,n[u|256]=64512,r[u]=13,r[u|256]=13)}const s=new Uint32Array(2048),a=new Uint32Array(64),l=new Uint32Array(64);for(let u=1;u<1024;++u){let h=u<<13,g=0;for(;(h&8388608)===0;)h<<=1,g-=8388608;h&=-8388609,g+=947912704,s[u]=h|g}for(let u=1024;u<2048;++u)s[u]=939524096+(u-1024<<13);for(let u=1;u<31;++u)a[u]=u<<23;a[31]=1199570944,a[32]=2147483648;for(let u=33;u<63;++u)a[u]=2147483648+(u-32<<23);a[63]=3347054592;for(let u=1;u<64;++u)u!==32&&(l[u]=1024);return{floatView:e,uint32View:t,baseTable:n,shiftTable:r,mantissaTable:s,exponentTable:a,offsetTable:l}}function mo(i){Math.abs(i)>65504&&console.warn("THREE.DataUtils.toHalfFloat(): Value out of range."),i=ni(i,-65504,65504),bc.floatView[0]=i;const e=bc.uint32View[0],t=e>>23&511;return bc.baseTable[t]+((e&8388607)>>bc.shiftTable[t])}function E2(i){const e=i>>10;return bc.uint32View[0]=bc.mantissaTable[bc.offsetTable[e]+(i&1023)]+bc.exponentTable[e],bc.floatView[0]}const is=new ce,C2=new ft;class wr{constructor(e,t,n=!1){if(Array.isArray(e))throw new TypeError("THREE.BufferAttribute: array should be a Typed Array.");this.isBufferAttribute=!0,this.name="",this.array=e,this.itemSize=t,this.count=e!==void 0?e.length/t:0,this.normalized=n,this.usage=o_,this.updateRanges=[],this.gpuType=$r,this.version=0}onUploadCallback(){}set needsUpdate(e){e===!0&&this.version++}setUsage(e){return this.usage=e,this}addUpdateRange(e,t){this.updateRanges.push({start:e,count:t})}clearUpdateRanges(){this.updateRanges.length=0}copy(e){return this.name=e.name,this.array=new e.array.constructor(e.array),this.itemSize=e.itemSize,this.count=e.count,this.normalized=e.normalized,this.usage=e.usage,this.gpuType=e.gpuType,this}copyAt(e,t,n){e*=this.itemSize,n*=t.itemSize;for(let r=0,s=this.itemSize;rt.count&&console.warn("THREE.BufferGeometry: Buffer size too small for points data. Use .dispose() and create a new geometry."),t.needsUpdate=!0}return this}computeBoundingBox(){this.boundingBox===null&&(this.boundingBox=new Gc);const e=this.attributes.position,t=this.morphAttributes.position;if(e&&e.isGLBufferAttribute){console.error("THREE.BufferGeometry.computeBoundingBox(): GLBufferAttribute requires a manual bounding box.",this),this.boundingBox.set(new ce(-1/0,-1/0,-1/0),new ce(1/0,1/0,1/0));return}if(e!==void 0){if(this.boundingBox.setFromBufferAttribute(e),t)for(let n=0,r=t.length;n0&&(e.userData=this.userData),this.parameters!==void 0){const u=this.parameters;for(const h in u)u[h]!==void 0&&(e[h]=u[h]);return e}e.data={attributes:{}};const t=this.index;t!==null&&(e.data.index={type:t.array.constructor.name,array:Array.prototype.slice.call(t.array)});const n=this.attributes;for(const u in n){const h=n[u];e.data.attributes[u]=h.toJSON(e.data)}const r={};let s=!1;for(const u in this.morphAttributes){const h=this.morphAttributes[u],g=[];for(let v=0,x=h.length;v0&&(r[u]=g,s=!0)}s&&(e.data.morphAttributes=r,e.data.morphTargetsRelative=this.morphTargetsRelative);const a=this.groups;a.length>0&&(e.data.groups=JSON.parse(JSON.stringify(a)));const l=this.boundingSphere;return l!==null&&(e.data.boundingSphere={center:l.center.toArray(),radius:l.radius}),e}clone(){return new this.constructor().copy(this)}copy(e){this.index=null,this.attributes={},this.morphAttributes={},this.groups=[],this.boundingBox=null,this.boundingSphere=null;const t={};this.name=e.name;const n=e.index;n!==null&&this.setIndex(n.clone(t));const r=e.attributes;for(const h in r){const g=r[h];this.setAttribute(h,g.clone(t))}const s=e.morphAttributes;for(const h in s){const g=[],v=s[h];for(let x=0,S=v.length;x0){const r=t[n[0]];if(r!==void 0){this.morphTargetInfluences=[],this.morphTargetDictionary={};for(let s=0,a=r.length;s(e.far-e.near)**2))&&(a5.copy(s).invert(),bf.copy(e.ray).applyMatrix4(a5),!(n.boundingBox!==null&&bf.intersectsBox(n.boundingBox)===!1)&&this._computeIntersections(e,t,bf)))}_computeIntersections(e,t,n){let r;const s=this.geometry,a=this.material,l=s.index,u=s.attributes.position,h=s.attributes.uv,g=s.attributes.uv1,v=s.attributes.normal,x=s.groups,S=s.drawRange;if(l!==null)if(Array.isArray(a))for(let w=0,R=x.length;wt.far?null:{distance:h,point:U2.clone(),object:i}}function B2(i,e,t,n,r,s,a,l,u,h){i.getVertexPosition(l,N2),i.getVertexPosition(u,D2),i.getVertexPosition(h,P2);const g=Gk(i,e,t,n,N2,D2,P2,l5);if(g){const v=new ce;Sl.getBarycoord(l5,N2,D2,P2,v),r&&(g.uv=Sl.getInterpolatedAttribute(r,l,u,h,v,new ft)),s&&(g.uv1=Sl.getInterpolatedAttribute(s,l,u,h,v,new ft)),a&&(g.normal=Sl.getInterpolatedAttribute(a,l,u,h,v,new ce),g.normal.dot(n.direction)>0&&g.normal.multiplyScalar(-1));const x={a:l,b:u,c:h,normal:new ce,materialIndex:0};Sl.getNormal(N2,D2,P2,x.normal),g.face=x,g.barycoord=v}return g}class $h extends Ki{constructor(e=1,t=1,n=1,r=1,s=1,a=1){super(),this.type="BoxGeometry",this.parameters={width:e,height:t,depth:n,widthSegments:r,heightSegments:s,depthSegments:a};const l=this;r=Math.floor(r),s=Math.floor(s),a=Math.floor(a);const u=[],h=[],g=[],v=[];let x=0,S=0;w("z","y","x",-1,-1,n,t,e,a,s,0),w("z","y","x",1,-1,n,t,-e,a,s,1),w("x","z","y",1,1,e,n,t,r,a,2),w("x","z","y",1,-1,e,n,-t,r,a,3),w("x","y","z",1,-1,e,t,n,r,s,4),w("x","y","z",-1,-1,e,t,-n,r,s,5),this.setIndex(u),this.setAttribute("position",new wi(h,3)),this.setAttribute("normal",new wi(g,3)),this.setAttribute("uv",new wi(v,2));function w(R,C,E,B,L,O,z,G,k,H,F){const V=O/k,Y=z/H,ee=O/2,ne=z/2,se=G/2,te=k+1,Q=H+1;let le=0,de=0;const Te=new ce;for(let Se=0;Se0?1:-1,g.push(Te.x,Te.y,Te.z),v.push(be/k),v.push(1-Se/H),le+=1}}for(let Se=0;Se0&&(t.defines=this.defines),t.vertexShader=this.vertexShader,t.fragmentShader=this.fragmentShader,t.lights=this.lights,t.clipping=this.clipping;const n={};for(const r in this.extensions)this.extensions[r]===!0&&(n[r]=!0);return Object.keys(n).length>0&&(t.extensions=n),t}}class _y extends vr{constructor(){super(),this.isCamera=!0,this.type="Camera",this.matrixWorldInverse=new kn,this.projectionMatrix=new kn,this.projectionMatrixInverse=new kn,this.coordinateSystem=Ha}copy(e,t){return super.copy(e,t),this.matrixWorldInverse.copy(e.matrixWorldInverse),this.projectionMatrix.copy(e.projectionMatrix),this.projectionMatrixInverse.copy(e.projectionMatrixInverse),this.coordinateSystem=e.coordinateSystem,this}getWorldDirection(e){return super.getWorldDirection(e).negate()}updateMatrixWorld(e){super.updateMatrixWorld(e),this.matrixWorldInverse.copy(this.matrixWorld).invert()}updateWorldMatrix(e,t){super.updateWorldMatrix(e,t),this.matrixWorldInverse.copy(this.matrixWorld).invert()}clone(){return new this.constructor().copy(this)}}const yh=new ce,u5=new ft,c5=new ft;class ya extends _y{constructor(e=50,t=1,n=.1,r=2e3){super(),this.isPerspectiveCamera=!0,this.type="PerspectiveCamera",this.fov=e,this.zoom=1,this.near=n,this.far=r,this.focus=10,this.aspect=t,this.view=null,this.filmGauge=35,this.filmOffset=0,this.updateProjectionMatrix()}copy(e,t){return super.copy(e,t),this.fov=e.fov,this.zoom=e.zoom,this.near=e.near,this.far=e.far,this.focus=e.focus,this.aspect=e.aspect,this.view=e.view===null?null:Object.assign({},e.view),this.filmGauge=e.filmGauge,this.filmOffset=e.filmOffset,this}setFocalLength(e){const t=.5*this.getFilmHeight()/e;this.fov=w0*2*Math.atan(t),this.updateProjectionMatrix()}getFocalLength(){const e=Math.tan(Em*.5*this.fov);return .5*this.getFilmHeight()/e}getEffectiveFOV(){return w0*2*Math.atan(Math.tan(Em*.5*this.fov)/this.zoom)}getFilmWidth(){return this.filmGauge*Math.min(this.aspect,1)}getFilmHeight(){return this.filmGauge/Math.max(this.aspect,1)}getViewBounds(e,t,n){yh.set(-1,-1,.5).applyMatrix4(this.projectionMatrixInverse),t.set(yh.x,yh.y).multiplyScalar(-e/yh.z),yh.set(1,1,.5).applyMatrix4(this.projectionMatrixInverse),n.set(yh.x,yh.y).multiplyScalar(-e/yh.z)}getViewSize(e,t){return this.getViewBounds(e,u5,c5),t.subVectors(c5,u5)}setViewOffset(e,t,n,r,s,a){this.aspect=e/t,this.view===null&&(this.view={enabled:!0,fullWidth:1,fullHeight:1,offsetX:0,offsetY:0,width:1,height:1}),this.view.enabled=!0,this.view.fullWidth=e,this.view.fullHeight=t,this.view.offsetX=n,this.view.offsetY=r,this.view.width=s,this.view.height=a,this.updateProjectionMatrix()}clearViewOffset(){this.view!==null&&(this.view.enabled=!1),this.updateProjectionMatrix()}updateProjectionMatrix(){const e=this.near;let t=e*Math.tan(Em*.5*this.fov)/this.zoom,n=2*t,r=this.aspect*n,s=-.5*r;const a=this.view;if(this.view!==null&&this.view.enabled){const u=a.fullWidth,h=a.fullHeight;s+=a.offsetX*r/u,t-=a.offsetY*n/h,r*=a.width/u,n*=a.height/h}const l=this.filmOffset;l!==0&&(s+=e*l/this.getFilmWidth()),this.projectionMatrix.makePerspective(s,s+r,t,t-n,e,this.far,this.coordinateSystem),this.projectionMatrixInverse.copy(this.projectionMatrix).invert()}toJSON(e){const t=super.toJSON(e);return t.object.fov=this.fov,t.object.zoom=this.zoom,t.object.near=this.near,t.object.far=this.far,t.object.focus=this.focus,t.object.aspect=this.aspect,this.view!==null&&(t.object.view=Object.assign({},this.view)),t.object.filmGauge=this.filmGauge,t.object.filmOffset=this.filmOffset,t}}const md=-90,gd=1;class q7 extends vr{constructor(e,t,n){super(),this.type="CubeCamera",this.renderTarget=n,this.coordinateSystem=null,this.activeMipmapLevel=0;const r=new ya(md,gd,e,t);r.layers=this.layers,this.add(r);const s=new ya(md,gd,e,t);s.layers=this.layers,this.add(s);const a=new ya(md,gd,e,t);a.layers=this.layers,this.add(a);const l=new ya(md,gd,e,t);l.layers=this.layers,this.add(l);const u=new ya(md,gd,e,t);u.layers=this.layers,this.add(u);const h=new ya(md,gd,e,t);h.layers=this.layers,this.add(h)}updateCoordinateSystem(){const e=this.coordinateSystem,t=this.children.concat(),[n,r,s,a,l,u]=t;for(const h of t)this.remove(h);if(e===Ha)n.up.set(0,1,0),n.lookAt(1,0,0),r.up.set(0,1,0),r.lookAt(-1,0,0),s.up.set(0,0,-1),s.lookAt(0,1,0),a.up.set(0,0,1),a.lookAt(0,-1,0),l.up.set(0,1,0),l.lookAt(0,0,1),u.up.set(0,1,0),u.lookAt(0,0,-1);else if(e===pu)n.up.set(0,-1,0),n.lookAt(-1,0,0),r.up.set(0,-1,0),r.lookAt(1,0,0),s.up.set(0,0,1),s.lookAt(0,1,0),a.up.set(0,0,-1),a.lookAt(0,-1,0),l.up.set(0,-1,0),l.lookAt(0,0,1),u.up.set(0,-1,0),u.lookAt(0,0,-1);else throw new Error("THREE.CubeCamera.updateCoordinateSystem(): Invalid coordinate system: "+e);for(const h of t)this.add(h),h.updateMatrixWorld()}update(e,t){this.parent===null&&this.updateMatrixWorld();const{renderTarget:n,activeMipmapLevel:r}=this;this.coordinateSystem!==e.coordinateSystem&&(this.coordinateSystem=e.coordinateSystem,this.updateCoordinateSystem());const[s,a,l,u,h,g]=this.children,v=e.getRenderTarget(),x=e.getActiveCubeFace(),S=e.getActiveMipmapLevel(),w=e.xr.enabled;e.xr.enabled=!1;const R=n.texture.generateMipmaps;n.texture.generateMipmaps=!1,e.setRenderTarget(n,0,r),e.render(t,s),e.setRenderTarget(n,1,r),e.render(t,a),e.setRenderTarget(n,2,r),e.render(t,l),e.setRenderTarget(n,3,r),e.render(t,u),e.setRenderTarget(n,4,r),e.render(t,h),n.texture.generateMipmaps=R,e.setRenderTarget(n,5,r),e.render(t,g),e.setRenderTarget(v,x,S),e.xr.enabled=w,n.texture.needsPMREMUpdate=!0}}class yy extends vs{constructor(e,t,n,r,s,a,l,u,h,g){e=e!==void 0?e:[],t=t!==void 0?t:Qo,super(e,t,n,r,s,a,l,u,h,g),this.isCubeTexture=!0,this.flipY=!1}get images(){return this.image}set images(e){this.image=e}}class V7 extends qh{constructor(e=1,t={}){super(e,e,t),this.isWebGLCubeRenderTarget=!0;const n={width:e,height:e,depth:1},r=[n,n,n,n,n,n];this.texture=new yy(r,t.mapping,t.wrapS,t.wrapT,t.magFilter,t.minFilter,t.format,t.type,t.anisotropy,t.colorSpace),this.texture.isRenderTargetTexture=!0,this.texture.generateMipmaps=t.generateMipmaps!==void 0?t.generateMipmaps:!1,this.texture.minFilter=t.minFilter!==void 0?t.minFilter:gs}fromEquirectangularTexture(e,t){this.texture.type=t.type,this.texture.colorSpace=t.colorSpace,this.texture.generateMipmaps=t.generateMipmaps,this.texture.minFilter=t.minFilter,this.texture.magFilter=t.magFilter;const n={uniforms:{tEquirect:{value:null}},vertexShader:` - - varying vec3 vWorldDirection; - - vec3 transformDirection( in vec3 dir, in mat4 matrix ) { - - return normalize( ( matrix * vec4( dir, 0.0 ) ).xyz ); - - } - - void main() { - - vWorldDirection = transformDirection( position, modelMatrix ); - - #include - #include - - } - `,fragmentShader:` - - uniform sampler2D tEquirect; - - varying vec3 vWorldDirection; - - #include - - void main() { - - vec3 direction = normalize( vWorldDirection ); - - vec2 sampleUV = equirectUv( direction ); - - gl_FragColor = texture2D( tEquirect, sampleUV ); - - } - `},r=new $h(5,5,5),s=new Ja({name:"CubemapFromEquirect",uniforms:E0(n.uniforms),vertexShader:n.vertexShader,fragmentShader:n.fragmentShader,side:hr,blending:Qa});s.uniforms.tEquirect.value=t;const a=new zi(r,s),l=t.minFilter;return t.minFilter===Va&&(t.minFilter=gs),new q7(1,10,this).update(e,a),t.minFilter=l,a.geometry.dispose(),a.material.dispose(),this}clear(e,t,n,r){const s=e.getRenderTarget();for(let a=0;a<6;a++)e.setRenderTarget(this,a),e.clear(t,n,r);e.setRenderTarget(s)}}class Yw extends vr{constructor(){super(),this.isScene=!0,this.type="Scene",this.background=null,this.environment=null,this.fog=null,this.backgroundBlurriness=0,this.backgroundIntensity=1,this.backgroundRotation=new la,this.environmentIntensity=1,this.environmentRotation=new la,this.overrideMaterial=null,typeof __THREE_DEVTOOLS__<"u"&&__THREE_DEVTOOLS__.dispatchEvent(new CustomEvent("observe",{detail:this}))}copy(e,t){return super.copy(e,t),e.background!==null&&(this.background=e.background.clone()),e.environment!==null&&(this.environment=e.environment.clone()),e.fog!==null&&(this.fog=e.fog.clone()),this.backgroundBlurriness=e.backgroundBlurriness,this.backgroundIntensity=e.backgroundIntensity,this.backgroundRotation.copy(e.backgroundRotation),this.environmentIntensity=e.environmentIntensity,this.environmentRotation.copy(e.environmentRotation),e.overrideMaterial!==null&&(this.overrideMaterial=e.overrideMaterial.clone()),this.matrixAutoUpdate=e.matrixAutoUpdate,this}toJSON(e){const t=super.toJSON(e);return this.fog!==null&&(t.object.fog=this.fog.toJSON()),this.backgroundBlurriness>0&&(t.object.backgroundBlurriness=this.backgroundBlurriness),this.backgroundIntensity!==1&&(t.object.backgroundIntensity=this.backgroundIntensity),t.object.backgroundRotation=this.backgroundRotation.toArray(),this.environmentIntensity!==1&&(t.object.environmentIntensity=this.environmentIntensity),t.object.environmentRotation=this.environmentRotation.toArray(),t}}class Qw{constructor(e,t){this.isInterleavedBuffer=!0,this.array=e,this.stride=t,this.count=e!==void 0?e.length/t:0,this.usage=o_,this.updateRanges=[],this.version=0,this.uuid=ou()}onUploadCallback(){}set needsUpdate(e){e===!0&&this.version++}setUsage(e){return this.usage=e,this}addUpdateRange(e,t){this.updateRanges.push({start:e,count:t})}clearUpdateRanges(){this.updateRanges.length=0}copy(e){return this.array=new e.array.constructor(e.array),this.count=e.count,this.stride=e.stride,this.usage=e.usage,this}copyAt(e,t,n){e*=this.stride,n*=t.stride;for(let r=0,s=this.stride;r1?null:t.copy(e.start).addScaledVector(n,s)}intersectsLine(e){const t=this.distanceToPoint(e.start),n=this.distanceToPoint(e.end);return t<0&&n>0||n<0&&t>0}intersectsBox(e){return e.intersectsPlane(this)}intersectsSphere(e){return e.intersectsPlane(this)}coplanarPoint(e){return e.copy(this.normal).multiplyScalar(-this.constant)}applyMatrix4(e,t){const n=t||Xk.getNormalMatrix(e),r=this.coplanarPoint(v3).applyMatrix4(e),s=this.normal.applyMatrix3(n).normalize();return this.constant=-r.dot(s),this}translate(e){return this.constant-=e.dot(this.normal),this}equals(e){return e.normal.equals(this.normal)&&e.constant===this.constant}clone(){return new this.constructor().copy(this)}}const Sf=new dA,O2=new ce;class Fg{constructor(e=new Yl,t=new Yl,n=new Yl,r=new Yl,s=new Yl,a=new Yl){this.planes=[e,t,n,r,s,a]}set(e,t,n,r,s,a){const l=this.planes;return l[0].copy(e),l[1].copy(t),l[2].copy(n),l[3].copy(r),l[4].copy(s),l[5].copy(a),this}copy(e){const t=this.planes;for(let n=0;n<6;n++)t[n].copy(e.planes[n]);return this}setFromProjectionMatrix(e,t=Ha){const n=this.planes,r=e.elements,s=r[0],a=r[1],l=r[2],u=r[3],h=r[4],g=r[5],v=r[6],x=r[7],S=r[8],w=r[9],R=r[10],C=r[11],E=r[12],B=r[13],L=r[14],O=r[15];if(n[0].setComponents(u-s,x-h,C-S,O-E).normalize(),n[1].setComponents(u+s,x+h,C+S,O+E).normalize(),n[2].setComponents(u+a,x+g,C+w,O+B).normalize(),n[3].setComponents(u-a,x-g,C-w,O-B).normalize(),n[4].setComponents(u-l,x-v,C-R,O-L).normalize(),t===Ha)n[5].setComponents(u+l,x+v,C+R,O+L).normalize();else if(t===pu)n[5].setComponents(l,v,R,L).normalize();else throw new Error("THREE.Frustum.setFromProjectionMatrix(): Invalid coordinate system: "+t);return this}intersectsObject(e){if(e.boundingSphere!==void 0)e.boundingSphere===null&&e.computeBoundingSphere(),Sf.copy(e.boundingSphere).applyMatrix4(e.matrixWorld);else{const t=e.geometry;t.boundingSphere===null&&t.computeBoundingSphere(),Sf.copy(t.boundingSphere).applyMatrix4(e.matrixWorld)}return this.intersectsSphere(Sf)}intersectsSprite(e){return Sf.center.set(0,0,0),Sf.radius=.7071067811865476,Sf.applyMatrix4(e.matrixWorld),this.intersectsSphere(Sf)}intersectsSphere(e){const t=this.planes,n=e.center,r=-e.radius;for(let s=0;s<6;s++)if(t[s].distanceToPoint(n)0?e.max.x:e.min.x,O2.y=r.normal.y>0?e.max.y:e.min.y,O2.z=r.normal.z>0?e.max.z:e.min.z,r.distanceToPoint(O2)<0)return!1}return!0}containsPoint(e){const t=this.planes;for(let n=0;n<6;n++)if(t[n].distanceToPoint(e)<0)return!1;return!0}clone(){return new this.constructor().copy(this)}}class $0 extends ua{constructor(e){super(),this.isLineBasicMaterial=!0,this.type="LineBasicMaterial",this.color=new an(16777215),this.map=null,this.linewidth=1,this.linecap="round",this.linejoin="round",this.fog=!0,this.setValues(e)}copy(e){return super.copy(e),this.color.copy(e.color),this.map=e.map,this.linewidth=e.linewidth,this.linecap=e.linecap,this.linejoin=e.linejoin,this.fog=e.fog,this}}const l_=new ce,u_=new ce,h5=new kn,Jp=new Og,I2=new dA,_3=new ce,f5=new ce;class xy extends vr{constructor(e=new Ki,t=new $0){super(),this.isLine=!0,this.type="Line",this.geometry=e,this.material=t,this.updateMorphTargets()}copy(e,t){return super.copy(e,t),this.material=Array.isArray(e.material)?e.material.slice():e.material,this.geometry=e.geometry,this}computeLineDistances(){const e=this.geometry;if(e.index===null){const t=e.attributes.position,n=[0];for(let r=1,s=t.count;r0){const r=t[n[0]];if(r!==void 0){this.morphTargetInfluences=[],this.morphTargetDictionary={};for(let s=0,a=r.length;sn)return;_3.applyMatrix4(i.matrixWorld);const u=e.ray.origin.distanceTo(_3);if(!(ue.far))return{distance:u,point:f5.clone().applyMatrix4(i.matrixWorld),index:r,face:null,faceIndex:null,barycoord:null,object:i}}const A5=new ce,d5=new ce;class H7 extends xy{constructor(e,t){super(e,t),this.isLineSegments=!0,this.type="LineSegments"}computeLineDistances(){const e=this.geometry;if(e.index===null){const t=e.attributes.position,n=[];for(let r=0,s=t.count;r0){const r=t[n[0]];if(r!==void 0){this.morphTargetInfluences=[],this.morphTargetDictionary={};for(let s=0,a=r.length;sr.far)return;s.push({distance:h,distanceToRay:Math.sqrt(l),point:u,index:e,face:null,faceIndex:null,barycoord:null,object:a})}}let ja=class extends vr{constructor(){super(),this.isGroup=!0,this.type="Group"}};class j7 extends vs{constructor(e,t){super({width:e,height:t}),this.isFramebufferTexture=!0,this.magFilter=mr,this.minFilter=mr,this.generateMipmaps=!1,this.needsUpdate=!0}}class qc extends vs{constructor(e,t,n,r,s,a,l,u,h,g=au){if(g!==au&&g!==du)throw new Error("DepthTexture format must be either THREE.DepthFormat or THREE.DepthStencilFormat");n===void 0&&g===au&&(n=Rr),n===void 0&&g===du&&(n=Au),super(null,r,s,a,l,u,g,n,h),this.isDepthTexture=!0,this.image={width:e,height:t},this.magFilter=l!==void 0?l:mr,this.minFilter=u!==void 0?u:mr,this.flipY=!1,this.generateMipmaps=!1,this.compareFunction=null}copy(e){return super.copy(e),this.compareFunction=e.compareFunction,this}toJSON(e){const t=super.toJSON(e);return this.compareFunction!==null&&(t.compareFunction=this.compareFunction),t}}class Pl{constructor(){this.type="Curve",this.arcLengthDivisions=200}getPoint(){return console.warn("THREE.Curve: .getPoint() not implemented."),null}getPointAt(e,t){const n=this.getUtoTmapping(e);return this.getPoint(n,t)}getPoints(e=5){const t=[];for(let n=0;n<=e;n++)t.push(this.getPoint(n/e));return t}getSpacedPoints(e=5){const t=[];for(let n=0;n<=e;n++)t.push(this.getPointAt(n/e));return t}getLength(){const e=this.getLengths();return e[e.length-1]}getLengths(e=this.arcLengthDivisions){if(this.cacheArcLengths&&this.cacheArcLengths.length===e+1&&!this.needsUpdate)return this.cacheArcLengths;this.needsUpdate=!1;const t=[];let n,r=this.getPoint(0),s=0;t.push(0);for(let a=1;a<=e;a++)n=this.getPoint(a/e),s+=n.distanceTo(r),t.push(s),r=n;return this.cacheArcLengths=t,t}updateArcLengths(){this.needsUpdate=!0,this.getLengths()}getUtoTmapping(e,t){const n=this.getLengths();let r=0;const s=n.length;let a;t?a=t:a=e*n[s-1];let l=0,u=s-1,h;for(;l<=u;)if(r=Math.floor(l+(u-l)/2),h=n[r]-a,h<0)l=r+1;else if(h>0)u=r-1;else{u=r;break}if(r=u,n[r]===a)return r/(s-1);const g=n[r],x=n[r+1]-g,S=(a-g)/x;return(r+S)/(s-1)}getTangent(e,t){let r=e-1e-4,s=e+1e-4;r<0&&(r=0),s>1&&(s=1);const a=this.getPoint(r),l=this.getPoint(s),u=t||(a.isVector2?new ft:new ce);return u.copy(l).sub(a).normalize(),u}getTangentAt(e,t){const n=this.getUtoTmapping(e);return this.getTangent(n,t)}computeFrenetFrames(e,t){const n=new ce,r=[],s=[],a=[],l=new ce,u=new kn;for(let S=0;S<=e;S++){const w=S/e;r[S]=this.getTangentAt(w,new ce)}s[0]=new ce,a[0]=new ce;let h=Number.MAX_VALUE;const g=Math.abs(r[0].x),v=Math.abs(r[0].y),x=Math.abs(r[0].z);g<=h&&(h=g,n.set(1,0,0)),v<=h&&(h=v,n.set(0,1,0)),x<=h&&n.set(0,0,1),l.crossVectors(r[0],n).normalize(),s[0].crossVectors(r[0],l),a[0].crossVectors(r[0],s[0]);for(let S=1;S<=e;S++){if(s[S]=s[S-1].clone(),a[S]=a[S-1].clone(),l.crossVectors(r[S-1],r[S]),l.length()>Number.EPSILON){l.normalize();const w=Math.acos(ni(r[S-1].dot(r[S]),-1,1));s[S].applyMatrix4(u.makeRotationAxis(l,w))}a[S].crossVectors(r[S],s[S])}if(t===!0){let S=Math.acos(ni(s[0].dot(s[e]),-1,1));S/=e,r[0].dot(l.crossVectors(s[0],s[e]))>0&&(S=-S);for(let w=1;w<=e;w++)s[w].applyMatrix4(u.makeRotationAxis(r[w],S*w)),a[w].crossVectors(r[w],s[w])}return{tangents:r,normals:s,binormals:a}}clone(){return new this.constructor().copy(this)}copy(e){return this.arcLengthDivisions=e.arcLengthDivisions,this}toJSON(){const e={metadata:{version:4.6,type:"Curve",generator:"Curve.toJSON"}};return e.arcLengthDivisions=this.arcLengthDivisions,e.type=this.type,e}fromJSON(e){return this.arcLengthDivisions=e.arcLengthDivisions,this}}class Zw extends Pl{constructor(e=0,t=0,n=1,r=1,s=0,a=Math.PI*2,l=!1,u=0){super(),this.isEllipseCurve=!0,this.type="EllipseCurve",this.aX=e,this.aY=t,this.xRadius=n,this.yRadius=r,this.aStartAngle=s,this.aEndAngle=a,this.aClockwise=l,this.aRotation=u}getPoint(e,t=new ft){const n=t,r=Math.PI*2;let s=this.aEndAngle-this.aStartAngle;const a=Math.abs(s)r;)s-=r;s0?0:(Math.floor(Math.abs(l)/s)+1)*s:u===0&&l===s-1&&(l=s-2,u=1);let h,g;this.closed||l>0?h=r[(l-1)%s]:(G2.subVectors(r[0],r[1]).add(r[0]),h=G2);const v=r[l%s],x=r[(l+1)%s];if(this.closed||l+2r.length-2?r.length-1:a+1],v=r[a>r.length-3?r.length-1:a+2];return n.set(g5(l,u.x,h.x,g.x,v.x),g5(l,u.y,h.y,g.y,v.y)),n}copy(e){super.copy(e),this.points=[];for(let t=0,n=e.points.length;t=n){const a=r[s]-n,l=this.curves[s],u=l.getLength(),h=u===0?0:1-a/u;return l.getPointAt(h,t)}s++}return null}getLength(){const e=this.getCurveLengths();return e[e.length-1]}updateArcLengths(){this.needsUpdate=!0,this.cacheLengths=null,this.getCurveLengths()}getCurveLengths(){if(this.cacheLengths&&this.cacheLengths.length===this.curves.length)return this.cacheLengths;const e=[];let t=0;for(let n=0,r=this.curves.length;n1&&!t[t.length-1].equals(t[0])&&t.push(t[0]),t}copy(e){super.copy(e),this.curves=[];for(let t=0,n=e.curves.length;t0){const v=h.getPoint(0);v.equals(this.currentPoint)||this.lineTo(v.x,v.y)}this.curves.push(h);const g=h.getPoint(1);return this.currentPoint.copy(g),this}copy(e){return super.copy(e),this.currentPoint.copy(e.currentPoint),this}toJSON(){const e=super.toJSON();return e.currentPoint=this.currentPoint.toArray(),e}fromJSON(e){return super.fromJSON(e),this.currentPoint.fromArray(e.currentPoint),this}};class by extends Ki{constructor(e=1,t=32,n=0,r=Math.PI*2){super(),this.type="CircleGeometry",this.parameters={radius:e,segments:t,thetaStart:n,thetaLength:r},t=Math.max(3,t);const s=[],a=[],l=[],u=[],h=new ce,g=new ft;a.push(0,0,0),l.push(0,0,1),u.push(.5,.5);for(let v=0,x=3;v<=t;v++,x+=3){const S=n+v/t*r;h.x=e*Math.cos(S),h.y=e*Math.sin(S),a.push(h.x,h.y,h.z),l.push(0,0,1),g.x=(a[x]/e+1)/2,g.y=(a[x+1]/e+1)/2,u.push(g.x,g.y)}for(let v=1;v<=t;v++)s.push(v,v+1,0);this.setIndex(s),this.setAttribute("position",new wi(a,3)),this.setAttribute("normal",new wi(l,3)),this.setAttribute("uv",new wi(u,2))}copy(e){return super.copy(e),this.parameters=Object.assign({},e.parameters),this}static fromJSON(e){return new by(e.radius,e.segments,e.thetaStart,e.thetaLength)}}class eM extends Ki{constructor(e=1,t=1,n=1,r=32,s=1,a=!1,l=0,u=Math.PI*2){super(),this.type="CylinderGeometry",this.parameters={radiusTop:e,radiusBottom:t,height:n,radialSegments:r,heightSegments:s,openEnded:a,thetaStart:l,thetaLength:u};const h=this;r=Math.floor(r),s=Math.floor(s);const g=[],v=[],x=[],S=[];let w=0;const R=[],C=n/2;let E=0;B(),a===!1&&(e>0&&L(!0),t>0&&L(!1)),this.setIndex(g),this.setAttribute("position",new wi(v,3)),this.setAttribute("normal",new wi(x,3)),this.setAttribute("uv",new wi(S,2));function B(){const O=new ce,z=new ce;let G=0;const k=(t-e)/n;for(let H=0;H<=s;H++){const F=[],V=H/s,Y=V*(t-e)+e;for(let ee=0;ee<=r;ee++){const ne=ee/r,se=ne*u+l,te=Math.sin(se),Q=Math.cos(se);z.x=Y*te,z.y=-V*n+C,z.z=Y*Q,v.push(z.x,z.y,z.z),O.set(te,k,Q).normalize(),x.push(O.x,O.y,O.z),S.push(ne,1-V),F.push(w++)}R.push(F)}for(let H=0;H0||F!==0)&&(g.push(V,Y,ne),G+=3),(t>0||F!==s-1)&&(g.push(Y,ee,ne),G+=3)}h.addGroup(E,G,0),E+=G}function L(O){const z=w,G=new ft,k=new ce;let H=0;const F=O===!0?e:t,V=O===!0?1:-1;for(let ee=1;ee<=r;ee++)v.push(0,C*V,0),x.push(0,V,0),S.push(.5,.5),w++;const Y=w;for(let ee=0;ee<=r;ee++){const se=ee/r*u+l,te=Math.cos(se),Q=Math.sin(se);k.x=F*Q,k.y=C*V,k.z=F*te,v.push(k.x,k.y,k.z),x.push(0,V,0),G.x=te*.5+.5,G.y=Q*.5*V+.5,S.push(G.x,G.y),w++}for(let ee=0;ee80*t){l=h=i[0],u=g=i[1];for(let w=t;wh&&(h=v),x>g&&(g=x);S=Math.max(h-l,g-u),S=S!==0?32767/S:0}return ag(s,a,t,l,u,S,0),a}};function Z7(i,e,t,n,r){let s,a;if(r===Sz(i,e,t,n)>0)for(s=e;s=e;s-=n)a=v5(s,i[s],i[s+1],a);return a&&Sy(a,a.next)&&(lg(a),a=a.next),a}function uA(i,e){if(!i)return i;e||(e=i);let t=i,n;do if(n=!1,!t.steiner&&(Sy(t,t.next)||Nr(t.prev,t,t.next)===0)){if(lg(t),t=e=t.prev,t===t.next)break;n=!0}else t=t.next;while(n||t!==e);return e}function ag(i,e,t,n,r,s,a){if(!i)return;!a&&s&&gz(i,n,r,s);let l=i,u,h;for(;i.prev!==i.next;){if(u=i.prev,h=i.next,s?uz(i,n,r,s):lz(i)){e.push(u.i/t|0),e.push(i.i/t|0),e.push(h.i/t|0),lg(i),i=h.next,l=h.next;continue}if(i=h,i===l){a?a===1?(i=cz(uA(i),e,t),ag(i,e,t,n,r,s,2)):a===2&&hz(i,e,t,n,r,s):ag(uA(i),e,t,n,r,s,1);break}}}function lz(i){const e=i.prev,t=i,n=i.next;if(Nr(e,t,n)>=0)return!1;const r=e.x,s=t.x,a=n.x,l=e.y,u=t.y,h=n.y,g=rs?r>a?r:a:s>a?s:a,S=l>u?l>h?l:h:u>h?u:h;let w=n.next;for(;w!==e;){if(w.x>=g&&w.x<=x&&w.y>=v&&w.y<=S&&Vd(r,l,s,u,a,h,w.x,w.y)&&Nr(w.prev,w,w.next)>=0)return!1;w=w.next}return!0}function uz(i,e,t,n){const r=i.prev,s=i,a=i.next;if(Nr(r,s,a)>=0)return!1;const l=r.x,u=s.x,h=a.x,g=r.y,v=s.y,x=a.y,S=lu?l>h?l:h:u>h?u:h,C=g>v?g>x?g:x:v>x?v:x,E=YS(S,w,e,t,n),B=YS(R,C,e,t,n);let L=i.prevZ,O=i.nextZ;for(;L&&L.z>=E&&O&&O.z<=B;){if(L.x>=S&&L.x<=R&&L.y>=w&&L.y<=C&&L!==r&&L!==a&&Vd(l,g,u,v,h,x,L.x,L.y)&&Nr(L.prev,L,L.next)>=0||(L=L.prevZ,O.x>=S&&O.x<=R&&O.y>=w&&O.y<=C&&O!==r&&O!==a&&Vd(l,g,u,v,h,x,O.x,O.y)&&Nr(O.prev,O,O.next)>=0))return!1;O=O.nextZ}for(;L&&L.z>=E;){if(L.x>=S&&L.x<=R&&L.y>=w&&L.y<=C&&L!==r&&L!==a&&Vd(l,g,u,v,h,x,L.x,L.y)&&Nr(L.prev,L,L.next)>=0)return!1;L=L.prevZ}for(;O&&O.z<=B;){if(O.x>=S&&O.x<=R&&O.y>=w&&O.y<=C&&O!==r&&O!==a&&Vd(l,g,u,v,h,x,O.x,O.y)&&Nr(O.prev,O,O.next)>=0)return!1;O=O.nextZ}return!0}function cz(i,e,t){let n=i;do{const r=n.prev,s=n.next.next;!Sy(r,s)&&J7(r,n,n.next,s)&&og(r,s)&&og(s,r)&&(e.push(r.i/t|0),e.push(n.i/t|0),e.push(s.i/t|0),lg(n),lg(n.next),n=i=s),n=n.next}while(n!==i);return uA(n)}function hz(i,e,t,n,r,s){let a=i;do{let l=a.next.next;for(;l!==a.prev;){if(a.i!==l.i&&yz(a,l)){let u=eD(a,l);a=uA(a,a.next),u=uA(u,u.next),ag(a,e,t,n,r,s,0),ag(u,e,t,n,r,s,0);return}l=l.next}a=a.next}while(a!==i)}function fz(i,e,t,n){const r=[];let s,a,l,u,h;for(s=0,a=e.length;s=t.next.y&&t.next.y!==t.y){const x=t.x+(a-t.y)*(t.next.x-t.x)/(t.next.y-t.y);if(x<=s&&x>n&&(n=x,r=t.x=t.x&&t.x>=u&&s!==t.x&&Vd(ar.x||t.x===r.x&&mz(r,t)))&&(r=t,g=v)),t=t.next;while(t!==l);return r}function mz(i,e){return Nr(i.prev,i,e.prev)<0&&Nr(e.next,i,i.next)<0}function gz(i,e,t,n){let r=i;do r.z===0&&(r.z=YS(r.x,r.y,e,t,n)),r.prevZ=r.prev,r.nextZ=r.next,r=r.next;while(r!==i);r.prevZ.nextZ=null,r.prevZ=null,vz(r)}function vz(i){let e,t,n,r,s,a,l,u,h=1;do{for(t=i,i=null,s=null,a=0;t;){for(a++,n=t,l=0,e=0;e0||u>0&&n;)l!==0&&(u===0||!n||t.z<=n.z)?(r=t,t=t.nextZ,l--):(r=n,n=n.nextZ,u--),s?s.nextZ=r:i=r,r.prevZ=s,s=r;t=n}s.nextZ=null,h*=2}while(a>1);return i}function YS(i,e,t,n,r){return i=(i-t)*r|0,e=(e-n)*r|0,i=(i|i<<8)&16711935,i=(i|i<<4)&252645135,i=(i|i<<2)&858993459,i=(i|i<<1)&1431655765,e=(e|e<<8)&16711935,e=(e|e<<4)&252645135,e=(e|e<<2)&858993459,e=(e|e<<1)&1431655765,i|e<<1}function _z(i){let e=i,t=i;do(e.x=(i-a)*(s-l)&&(i-a)*(n-l)>=(t-a)*(e-l)&&(t-a)*(s-l)>=(r-a)*(n-l)}function yz(i,e){return i.next.i!==e.i&&i.prev.i!==e.i&&!xz(i,e)&&(og(i,e)&&og(e,i)&&bz(i,e)&&(Nr(i.prev,i,e.prev)||Nr(i,e.prev,e))||Sy(i,e)&&Nr(i.prev,i,i.next)>0&&Nr(e.prev,e,e.next)>0)}function Nr(i,e,t){return(e.y-i.y)*(t.x-e.x)-(e.x-i.x)*(t.y-e.y)}function Sy(i,e){return i.x===e.x&&i.y===e.y}function J7(i,e,t,n){const r=V2(Nr(i,e,t)),s=V2(Nr(i,e,n)),a=V2(Nr(t,n,i)),l=V2(Nr(t,n,e));return!!(r!==s&&a!==l||r===0&&q2(i,t,e)||s===0&&q2(i,n,e)||a===0&&q2(t,i,n)||l===0&&q2(t,e,n))}function q2(i,e,t){return e.x<=Math.max(i.x,t.x)&&e.x>=Math.min(i.x,t.x)&&e.y<=Math.max(i.y,t.y)&&e.y>=Math.min(i.y,t.y)}function V2(i){return i>0?1:i<0?-1:0}function xz(i,e){let t=i;do{if(t.i!==i.i&&t.next.i!==i.i&&t.i!==e.i&&t.next.i!==e.i&&J7(t,t.next,i,e))return!0;t=t.next}while(t!==i);return!1}function og(i,e){return Nr(i.prev,i,i.next)<0?Nr(i,e,i.next)>=0&&Nr(i,i.prev,e)>=0:Nr(i,e,i.prev)<0||Nr(i,i.next,e)<0}function bz(i,e){let t=i,n=!1;const r=(i.x+e.x)/2,s=(i.y+e.y)/2;do t.y>s!=t.next.y>s&&t.next.y!==t.y&&r<(t.next.x-t.x)*(s-t.y)/(t.next.y-t.y)+t.x&&(n=!n),t=t.next;while(t!==i);return n}function eD(i,e){const t=new QS(i.i,i.x,i.y),n=new QS(e.i,e.x,e.y),r=i.next,s=e.prev;return i.next=e,e.prev=i,t.next=r,r.prev=t,n.next=t,t.prev=n,s.next=n,n.prev=s,n}function v5(i,e,t,n){const r=new QS(i,e,t);return n?(r.next=n.next,r.prev=n,n.next.prev=r,n.next=r):(r.prev=r,r.next=r),r}function lg(i){i.next.prev=i.prev,i.prev.next=i.next,i.prevZ&&(i.prevZ.nextZ=i.nextZ),i.nextZ&&(i.nextZ.prevZ=i.prevZ)}function QS(i,e,t){this.i=i,this.x=e,this.y=t,this.prev=null,this.next=null,this.z=0,this.prevZ=null,this.nextZ=null,this.steiner=!1}function Sz(i,e,t,n){let r=0;for(let s=e,a=t-n;s2&&i[e-1].equals(i[0])&&i.pop()}function y5(i,e){for(let t=0;tNumber.EPSILON){const Me=Math.sqrt(X),Fe=Math.sqrt(_t*_t+fe*fe),ze=it.x-tn/Me,Et=it.y+gt/Me,Rt=he.x-fe/Fe,Ht=he.y+_t/Fe,Xt=((Rt-ze)*fe-(Ht-Et)*_t)/(gt*fe-tn*_t);Ft=ze+gt*Xt-Qe.x,ct=Et+tn*Xt-Qe.y;const yt=Ft*Ft+ct*ct;if(yt<=2)return new ft(Ft,ct);Dt=Math.sqrt(yt/2)}else{let Me=!1;gt>Number.EPSILON?_t>Number.EPSILON&&(Me=!0):gt<-Number.EPSILON?_t<-Number.EPSILON&&(Me=!0):Math.sign(tn)===Math.sign(fe)&&(Me=!0),Me?(Ft=-tn,ct=gt,Dt=Math.sqrt(X)):(Ft=gt,ct=tn,Dt=Math.sqrt(X/2))}return new ft(Ft/Dt,ct/Dt)}const Te=[];for(let Qe=0,it=se.length,he=it-1,Ft=Qe+1;Qe=0;Qe--){const it=Qe/C,he=S*Math.cos(it*Math.PI/2),Ft=w*Math.sin(it*Math.PI/2)+R;for(let ct=0,Dt=se.length;ct=0;){const Ft=he;let ct=he-1;ct<0&&(ct=Qe.length-1);for(let Dt=0,gt=g+C*2;Dt0)&&S.push(L,O,G),(E!==n-1||u0!=e>0&&this.version++,this._anisotropy=e}get clearcoat(){return this._clearcoat}set clearcoat(e){this._clearcoat>0!=e>0&&this.version++,this._clearcoat=e}get iridescence(){return this._iridescence}set iridescence(e){this._iridescence>0!=e>0&&this.version++,this._iridescence=e}get dispersion(){return this._dispersion}set dispersion(e){this._dispersion>0!=e>0&&this.version++,this._dispersion=e}get sheen(){return this._sheen}set sheen(e){this._sheen>0!=e>0&&this.version++,this._sheen=e}get transmission(){return this._transmission}set transmission(e){this._transmission>0!=e>0&&this.version++,this._transmission=e}copy(e){return super.copy(e),this.defines={STANDARD:"",PHYSICAL:""},this.anisotropy=e.anisotropy,this.anisotropyRotation=e.anisotropyRotation,this.anisotropyMap=e.anisotropyMap,this.clearcoat=e.clearcoat,this.clearcoatMap=e.clearcoatMap,this.clearcoatRoughness=e.clearcoatRoughness,this.clearcoatRoughnessMap=e.clearcoatRoughnessMap,this.clearcoatNormalMap=e.clearcoatNormalMap,this.clearcoatNormalScale.copy(e.clearcoatNormalScale),this.dispersion=e.dispersion,this.ior=e.ior,this.iridescence=e.iridescence,this.iridescenceMap=e.iridescenceMap,this.iridescenceIOR=e.iridescenceIOR,this.iridescenceThicknessRange=[...e.iridescenceThicknessRange],this.iridescenceThicknessMap=e.iridescenceThicknessMap,this.sheen=e.sheen,this.sheenColor.copy(e.sheenColor),this.sheenColorMap=e.sheenColorMap,this.sheenRoughness=e.sheenRoughness,this.sheenRoughnessMap=e.sheenRoughnessMap,this.transmission=e.transmission,this.transmissionMap=e.transmissionMap,this.thickness=e.thickness,this.thicknessMap=e.thicknessMap,this.attenuationDistance=e.attenuationDistance,this.attenuationColor.copy(e.attenuationColor),this.specularIntensity=e.specularIntensity,this.specularIntensityMap=e.specularIntensityMap,this.specularColor.copy(e.specularColor),this.specularColorMap=e.specularColorMap,this}}class nD extends ua{constructor(e){super(),this.isMeshPhongMaterial=!0,this.type="MeshPhongMaterial",this.color=new an(16777215),this.specular=new an(1118481),this.shininess=30,this.map=null,this.lightMap=null,this.lightMapIntensity=1,this.aoMap=null,this.aoMapIntensity=1,this.emissive=new an(0),this.emissiveIntensity=1,this.emissiveMap=null,this.bumpMap=null,this.bumpScale=1,this.normalMap=null,this.normalMapType=Dc,this.normalScale=new ft(1,1),this.displacementMap=null,this.displacementScale=1,this.displacementBias=0,this.specularMap=null,this.alphaMap=null,this.envMap=null,this.envMapRotation=new la,this.combine=Lg,this.reflectivity=1,this.refractionRatio=.98,this.wireframe=!1,this.wireframeLinewidth=1,this.wireframeLinecap="round",this.wireframeLinejoin="round",this.flatShading=!1,this.fog=!0,this.setValues(e)}copy(e){return super.copy(e),this.color.copy(e.color),this.specular.copy(e.specular),this.shininess=e.shininess,this.map=e.map,this.lightMap=e.lightMap,this.lightMapIntensity=e.lightMapIntensity,this.aoMap=e.aoMap,this.aoMapIntensity=e.aoMapIntensity,this.emissive.copy(e.emissive),this.emissiveMap=e.emissiveMap,this.emissiveIntensity=e.emissiveIntensity,this.bumpMap=e.bumpMap,this.bumpScale=e.bumpScale,this.normalMap=e.normalMap,this.normalMapType=e.normalMapType,this.normalScale.copy(e.normalScale),this.displacementMap=e.displacementMap,this.displacementScale=e.displacementScale,this.displacementBias=e.displacementBias,this.specularMap=e.specularMap,this.alphaMap=e.alphaMap,this.envMap=e.envMap,this.envMapRotation.copy(e.envMapRotation),this.combine=e.combine,this.reflectivity=e.reflectivity,this.refractionRatio=e.refractionRatio,this.wireframe=e.wireframe,this.wireframeLinewidth=e.wireframeLinewidth,this.wireframeLinecap=e.wireframeLinecap,this.wireframeLinejoin=e.wireframeLinejoin,this.flatShading=e.flatShading,this.fog=e.fog,this}}class Rz extends ua{constructor(e){super(),this.isMeshToonMaterial=!0,this.defines={TOON:""},this.type="MeshToonMaterial",this.color=new an(16777215),this.map=null,this.gradientMap=null,this.lightMap=null,this.lightMapIntensity=1,this.aoMap=null,this.aoMapIntensity=1,this.emissive=new an(0),this.emissiveIntensity=1,this.emissiveMap=null,this.bumpMap=null,this.bumpScale=1,this.normalMap=null,this.normalMapType=Dc,this.normalScale=new ft(1,1),this.displacementMap=null,this.displacementScale=1,this.displacementBias=0,this.alphaMap=null,this.wireframe=!1,this.wireframeLinewidth=1,this.wireframeLinecap="round",this.wireframeLinejoin="round",this.fog=!0,this.setValues(e)}copy(e){return super.copy(e),this.color.copy(e.color),this.map=e.map,this.gradientMap=e.gradientMap,this.lightMap=e.lightMap,this.lightMapIntensity=e.lightMapIntensity,this.aoMap=e.aoMap,this.aoMapIntensity=e.aoMapIntensity,this.emissive.copy(e.emissive),this.emissiveMap=e.emissiveMap,this.emissiveIntensity=e.emissiveIntensity,this.bumpMap=e.bumpMap,this.bumpScale=e.bumpScale,this.normalMap=e.normalMap,this.normalMapType=e.normalMapType,this.normalScale.copy(e.normalScale),this.displacementMap=e.displacementMap,this.displacementScale=e.displacementScale,this.displacementBias=e.displacementBias,this.alphaMap=e.alphaMap,this.wireframe=e.wireframe,this.wireframeLinewidth=e.wireframeLinewidth,this.wireframeLinecap=e.wireframeLinecap,this.wireframeLinejoin=e.wireframeLinejoin,this.fog=e.fog,this}}class Nz extends ua{constructor(e){super(),this.isMeshNormalMaterial=!0,this.type="MeshNormalMaterial",this.bumpMap=null,this.bumpScale=1,this.normalMap=null,this.normalMapType=Dc,this.normalScale=new ft(1,1),this.displacementMap=null,this.displacementScale=1,this.displacementBias=0,this.wireframe=!1,this.wireframeLinewidth=1,this.flatShading=!1,this.setValues(e)}copy(e){return super.copy(e),this.bumpMap=e.bumpMap,this.bumpScale=e.bumpScale,this.normalMap=e.normalMap,this.normalMapType=e.normalMapType,this.normalScale.copy(e.normalScale),this.displacementMap=e.displacementMap,this.displacementScale=e.displacementScale,this.displacementBias=e.displacementBias,this.wireframe=e.wireframe,this.wireframeLinewidth=e.wireframeLinewidth,this.flatShading=e.flatShading,this}}class Vc extends ua{constructor(e){super(),this.isMeshLambertMaterial=!0,this.type="MeshLambertMaterial",this.color=new an(16777215),this.map=null,this.lightMap=null,this.lightMapIntensity=1,this.aoMap=null,this.aoMapIntensity=1,this.emissive=new an(0),this.emissiveIntensity=1,this.emissiveMap=null,this.bumpMap=null,this.bumpScale=1,this.normalMap=null,this.normalMapType=Dc,this.normalScale=new ft(1,1),this.displacementMap=null,this.displacementScale=1,this.displacementBias=0,this.specularMap=null,this.alphaMap=null,this.envMap=null,this.envMapRotation=new la,this.combine=Lg,this.reflectivity=1,this.refractionRatio=.98,this.wireframe=!1,this.wireframeLinewidth=1,this.wireframeLinecap="round",this.wireframeLinejoin="round",this.flatShading=!1,this.fog=!0,this.setValues(e)}copy(e){return super.copy(e),this.color.copy(e.color),this.map=e.map,this.lightMap=e.lightMap,this.lightMapIntensity=e.lightMapIntensity,this.aoMap=e.aoMap,this.aoMapIntensity=e.aoMapIntensity,this.emissive.copy(e.emissive),this.emissiveMap=e.emissiveMap,this.emissiveIntensity=e.emissiveIntensity,this.bumpMap=e.bumpMap,this.bumpScale=e.bumpScale,this.normalMap=e.normalMap,this.normalMapType=e.normalMapType,this.normalScale.copy(e.normalScale),this.displacementMap=e.displacementMap,this.displacementScale=e.displacementScale,this.displacementBias=e.displacementBias,this.specularMap=e.specularMap,this.alphaMap=e.alphaMap,this.envMap=e.envMap,this.envMapRotation.copy(e.envMapRotation),this.combine=e.combine,this.reflectivity=e.reflectivity,this.refractionRatio=e.refractionRatio,this.wireframe=e.wireframe,this.wireframeLinewidth=e.wireframeLinewidth,this.wireframeLinecap=e.wireframeLinecap,this.wireframeLinejoin=e.wireframeLinejoin,this.flatShading=e.flatShading,this.fog=e.fog,this}}class Dz extends ua{constructor(e){super(),this.isMeshDepthMaterial=!0,this.type="MeshDepthMaterial",this.depthPacking=jF,this.map=null,this.alphaMap=null,this.displacementMap=null,this.displacementScale=1,this.displacementBias=0,this.wireframe=!1,this.wireframeLinewidth=1,this.setValues(e)}copy(e){return super.copy(e),this.depthPacking=e.depthPacking,this.map=e.map,this.alphaMap=e.alphaMap,this.displacementMap=e.displacementMap,this.displacementScale=e.displacementScale,this.displacementBias=e.displacementBias,this.wireframe=e.wireframe,this.wireframeLinewidth=e.wireframeLinewidth,this}}class Pz extends ua{constructor(e){super(),this.isMeshDistanceMaterial=!0,this.type="MeshDistanceMaterial",this.map=null,this.alphaMap=null,this.displacementMap=null,this.displacementScale=1,this.displacementBias=0,this.setValues(e)}copy(e){return super.copy(e),this.map=e.map,this.alphaMap=e.alphaMap,this.displacementMap=e.displacementMap,this.displacementScale=e.displacementScale,this.displacementBias=e.displacementBias,this}}class Lz extends ua{constructor(e){super(),this.isMeshMatcapMaterial=!0,this.defines={MATCAP:""},this.type="MeshMatcapMaterial",this.color=new an(16777215),this.matcap=null,this.map=null,this.bumpMap=null,this.bumpScale=1,this.normalMap=null,this.normalMapType=Dc,this.normalScale=new ft(1,1),this.displacementMap=null,this.displacementScale=1,this.displacementBias=0,this.alphaMap=null,this.flatShading=!1,this.fog=!0,this.setValues(e)}copy(e){return super.copy(e),this.defines={MATCAP:""},this.color.copy(e.color),this.matcap=e.matcap,this.map=e.map,this.bumpMap=e.bumpMap,this.bumpScale=e.bumpScale,this.normalMap=e.normalMap,this.normalMapType=e.normalMapType,this.normalScale.copy(e.normalScale),this.displacementMap=e.displacementMap,this.displacementScale=e.displacementScale,this.displacementBias=e.displacementBias,this.alphaMap=e.alphaMap,this.flatShading=e.flatShading,this.fog=e.fog,this}}class Uz extends $0{constructor(e){super(),this.isLineDashedMaterial=!0,this.type="LineDashedMaterial",this.scale=1,this.dashSize=3,this.gapSize=1,this.setValues(e)}copy(e){return super.copy(e),this.scale=e.scale,this.dashSize=e.dashSize,this.gapSize=e.gapSize,this}}const b5={enabled:!1,files:{},add:function(i,e){this.enabled!==!1&&(this.files[i]=e)},get:function(i){if(this.enabled!==!1)return this.files[i]},remove:function(i){delete this.files[i]},clear:function(){this.files={}}};class Bz{constructor(e,t,n){const r=this;let s=!1,a=0,l=0,u;const h=[];this.onStart=void 0,this.onLoad=e,this.onProgress=t,this.onError=n,this.itemStart=function(g){l++,s===!1&&r.onStart!==void 0&&r.onStart(g,a,l),s=!0},this.itemEnd=function(g){a++,r.onProgress!==void 0&&r.onProgress(g,a,l),a===l&&(s=!1,r.onLoad!==void 0&&r.onLoad())},this.itemError=function(g){r.onError!==void 0&&r.onError(g)},this.resolveURL=function(g){return u?u(g):g},this.setURLModifier=function(g){return u=g,this},this.addHandler=function(g,v){return h.push(g,v),this},this.removeHandler=function(g){const v=h.indexOf(g);return v!==-1&&h.splice(v,2),this},this.getHandler=function(g){for(let v=0,x=h.length;vNumber.EPSILON){if(V<0&&(k=B[G],F=-F,H=B[z],V=-V),E.yH.y)continue;if(E.y===k.y){if(E.x===k.x)return!0}else{const Y=V*(E.x-k.x)-F*(E.y-k.y);if(Y===0)return!0;if(Y<0)continue;O=!O}}else{if(E.y!==k.y)continue;if(H.x<=E.x&&E.x<=k.x||k.x<=E.x&&E.x<=H.x)return!0}}return O}const r=t0.isClockWise,s=this.subPaths;if(s.length===0)return[];let a,l,u;const h=[];if(s.length===1)return l=s[0],u=new Gv,u.curves=l.curves,h.push(u),h;let g=!r(s[0].getPoints());g=e?!g:g;const v=[],x=[];let S=[],w=0,R;x[w]=void 0,S[w]=[];for(let E=0,B=s.length;E1){let E=!1,B=0;for(let L=0,O=x.length;L0&&E===!1&&(S=v)}let C;for(let E=0,B=x.length;ES.start-w.start);let x=0;for(let S=1;S 0 - vec4 plane; - #ifdef ALPHA_TO_COVERAGE - float distanceToPlane, distanceGradient; - float clipOpacity = 1.0; - #pragma unroll_loop_start - for ( int i = 0; i < UNION_CLIPPING_PLANES; i ++ ) { - plane = clippingPlanes[ i ]; - distanceToPlane = - dot( vClipPosition, plane.xyz ) + plane.w; - distanceGradient = fwidth( distanceToPlane ) / 2.0; - clipOpacity *= smoothstep( - distanceGradient, distanceGradient, distanceToPlane ); - if ( clipOpacity == 0.0 ) discard; - } - #pragma unroll_loop_end - #if UNION_CLIPPING_PLANES < NUM_CLIPPING_PLANES - float unionClipOpacity = 1.0; - #pragma unroll_loop_start - for ( int i = UNION_CLIPPING_PLANES; i < NUM_CLIPPING_PLANES; i ++ ) { - plane = clippingPlanes[ i ]; - distanceToPlane = - dot( vClipPosition, plane.xyz ) + plane.w; - distanceGradient = fwidth( distanceToPlane ) / 2.0; - unionClipOpacity *= 1.0 - smoothstep( - distanceGradient, distanceGradient, distanceToPlane ); - } - #pragma unroll_loop_end - clipOpacity *= 1.0 - unionClipOpacity; - #endif - diffuseColor.a *= clipOpacity; - if ( diffuseColor.a == 0.0 ) discard; - #else - #pragma unroll_loop_start - for ( int i = 0; i < UNION_CLIPPING_PLANES; i ++ ) { - plane = clippingPlanes[ i ]; - if ( dot( vClipPosition, plane.xyz ) > plane.w ) discard; - } - #pragma unroll_loop_end - #if UNION_CLIPPING_PLANES < NUM_CLIPPING_PLANES - bool clipped = true; - #pragma unroll_loop_start - for ( int i = UNION_CLIPPING_PLANES; i < NUM_CLIPPING_PLANES; i ++ ) { - plane = clippingPlanes[ i ]; - clipped = ( dot( vClipPosition, plane.xyz ) > plane.w ) && clipped; - } - #pragma unroll_loop_end - if ( clipped ) discard; - #endif - #endif -#endif`,pG=`#if NUM_CLIPPING_PLANES > 0 - varying vec3 vClipPosition; - uniform vec4 clippingPlanes[ NUM_CLIPPING_PLANES ]; -#endif`,mG=`#if NUM_CLIPPING_PLANES > 0 - varying vec3 vClipPosition; -#endif`,gG=`#if NUM_CLIPPING_PLANES > 0 - vClipPosition = - mvPosition.xyz; -#endif`,vG=`#if defined( USE_COLOR_ALPHA ) - diffuseColor *= vColor; -#elif defined( USE_COLOR ) - diffuseColor.rgb *= vColor; -#endif`,_G=`#if defined( USE_COLOR_ALPHA ) - varying vec4 vColor; -#elif defined( USE_COLOR ) - varying vec3 vColor; -#endif`,yG=`#if defined( USE_COLOR_ALPHA ) - varying vec4 vColor; -#elif defined( USE_COLOR ) || defined( USE_INSTANCING_COLOR ) || defined( USE_BATCHING_COLOR ) - varying vec3 vColor; -#endif`,xG=`#if defined( USE_COLOR_ALPHA ) - vColor = vec4( 1.0 ); -#elif defined( USE_COLOR ) || defined( USE_INSTANCING_COLOR ) || defined( USE_BATCHING_COLOR ) - vColor = vec3( 1.0 ); -#endif -#ifdef USE_COLOR - vColor *= color; -#endif -#ifdef USE_INSTANCING_COLOR - vColor.xyz *= instanceColor.xyz; -#endif -#ifdef USE_BATCHING_COLOR - vec3 batchingColor = getBatchingColor( getIndirectIndex( gl_DrawID ) ); - vColor.xyz *= batchingColor.xyz; -#endif`,bG=`#define PI 3.141592653589793 -#define PI2 6.283185307179586 -#define PI_HALF 1.5707963267948966 -#define RECIPROCAL_PI 0.3183098861837907 -#define RECIPROCAL_PI2 0.15915494309189535 -#define EPSILON 1e-6 -#ifndef saturate -#define saturate( a ) clamp( a, 0.0, 1.0 ) -#endif -#define whiteComplement( a ) ( 1.0 - saturate( a ) ) -float pow2( const in float x ) { return x*x; } -vec3 pow2( const in vec3 x ) { return x*x; } -float pow3( const in float x ) { return x*x*x; } -float pow4( const in float x ) { float x2 = x*x; return x2*x2; } -float max3( const in vec3 v ) { return max( max( v.x, v.y ), v.z ); } -float average( const in vec3 v ) { return dot( v, vec3( 0.3333333 ) ); } -highp float rand( const in vec2 uv ) { - const highp float a = 12.9898, b = 78.233, c = 43758.5453; - highp float dt = dot( uv.xy, vec2( a,b ) ), sn = mod( dt, PI ); - return fract( sin( sn ) * c ); -} -#ifdef HIGH_PRECISION - float precisionSafeLength( vec3 v ) { return length( v ); } -#else - float precisionSafeLength( vec3 v ) { - float maxComponent = max3( abs( v ) ); - return length( v / maxComponent ) * maxComponent; - } -#endif -struct IncidentLight { - vec3 color; - vec3 direction; - bool visible; -}; -struct ReflectedLight { - vec3 directDiffuse; - vec3 directSpecular; - vec3 indirectDiffuse; - vec3 indirectSpecular; -}; -#ifdef USE_ALPHAHASH - varying vec3 vPosition; -#endif -vec3 transformDirection( in vec3 dir, in mat4 matrix ) { - return normalize( ( matrix * vec4( dir, 0.0 ) ).xyz ); -} -vec3 inverseTransformDirection( in vec3 dir, in mat4 matrix ) { - return normalize( ( vec4( dir, 0.0 ) * matrix ).xyz ); -} -mat3 transposeMat3( const in mat3 m ) { - mat3 tmp; - tmp[ 0 ] = vec3( m[ 0 ].x, m[ 1 ].x, m[ 2 ].x ); - tmp[ 1 ] = vec3( m[ 0 ].y, m[ 1 ].y, m[ 2 ].y ); - tmp[ 2 ] = vec3( m[ 0 ].z, m[ 1 ].z, m[ 2 ].z ); - return tmp; -} -bool isPerspectiveMatrix( mat4 m ) { - return m[ 2 ][ 3 ] == - 1.0; -} -vec2 equirectUv( in vec3 dir ) { - float u = atan( dir.z, dir.x ) * RECIPROCAL_PI2 + 0.5; - float v = asin( clamp( dir.y, - 1.0, 1.0 ) ) * RECIPROCAL_PI + 0.5; - return vec2( u, v ); -} -vec3 BRDF_Lambert( const in vec3 diffuseColor ) { - return RECIPROCAL_PI * diffuseColor; -} -vec3 F_Schlick( const in vec3 f0, const in float f90, const in float dotVH ) { - float fresnel = exp2( ( - 5.55473 * dotVH - 6.98316 ) * dotVH ); - return f0 * ( 1.0 - fresnel ) + ( f90 * fresnel ); -} -float F_Schlick( const in float f0, const in float f90, const in float dotVH ) { - float fresnel = exp2( ( - 5.55473 * dotVH - 6.98316 ) * dotVH ); - return f0 * ( 1.0 - fresnel ) + ( f90 * fresnel ); -} // validated`,SG=`#ifdef ENVMAP_TYPE_CUBE_UV - #define cubeUV_minMipLevel 4.0 - #define cubeUV_minTileSize 16.0 - float getFace( vec3 direction ) { - vec3 absDirection = abs( direction ); - float face = - 1.0; - if ( absDirection.x > absDirection.z ) { - if ( absDirection.x > absDirection.y ) - face = direction.x > 0.0 ? 0.0 : 3.0; - else - face = direction.y > 0.0 ? 1.0 : 4.0; - } else { - if ( absDirection.z > absDirection.y ) - face = direction.z > 0.0 ? 2.0 : 5.0; - else - face = direction.y > 0.0 ? 1.0 : 4.0; - } - return face; - } - vec2 getUV( vec3 direction, float face ) { - vec2 uv; - if ( face == 0.0 ) { - uv = vec2( direction.z, direction.y ) / abs( direction.x ); - } else if ( face == 1.0 ) { - uv = vec2( - direction.x, - direction.z ) / abs( direction.y ); - } else if ( face == 2.0 ) { - uv = vec2( - direction.x, direction.y ) / abs( direction.z ); - } else if ( face == 3.0 ) { - uv = vec2( - direction.z, direction.y ) / abs( direction.x ); - } else if ( face == 4.0 ) { - uv = vec2( - direction.x, direction.z ) / abs( direction.y ); - } else { - uv = vec2( direction.x, direction.y ) / abs( direction.z ); - } - return 0.5 * ( uv + 1.0 ); - } - vec3 bilinearCubeUV( sampler2D envMap, vec3 direction, float mipInt ) { - float face = getFace( direction ); - float filterInt = max( cubeUV_minMipLevel - mipInt, 0.0 ); - mipInt = max( mipInt, cubeUV_minMipLevel ); - float faceSize = exp2( mipInt ); - highp vec2 uv = getUV( direction, face ) * ( faceSize - 2.0 ) + 1.0; - if ( face > 2.0 ) { - uv.y += faceSize; - face -= 3.0; - } - uv.x += face * faceSize; - uv.x += filterInt * 3.0 * cubeUV_minTileSize; - uv.y += 4.0 * ( exp2( CUBEUV_MAX_MIP ) - faceSize ); - uv.x *= CUBEUV_TEXEL_WIDTH; - uv.y *= CUBEUV_TEXEL_HEIGHT; - #ifdef texture2DGradEXT - return texture2DGradEXT( envMap, uv, vec2( 0.0 ), vec2( 0.0 ) ).rgb; - #else - return texture2D( envMap, uv ).rgb; - #endif - } - #define cubeUV_r0 1.0 - #define cubeUV_m0 - 2.0 - #define cubeUV_r1 0.8 - #define cubeUV_m1 - 1.0 - #define cubeUV_r4 0.4 - #define cubeUV_m4 2.0 - #define cubeUV_r5 0.305 - #define cubeUV_m5 3.0 - #define cubeUV_r6 0.21 - #define cubeUV_m6 4.0 - float roughnessToMip( float roughness ) { - float mip = 0.0; - if ( roughness >= cubeUV_r1 ) { - mip = ( cubeUV_r0 - roughness ) * ( cubeUV_m1 - cubeUV_m0 ) / ( cubeUV_r0 - cubeUV_r1 ) + cubeUV_m0; - } else if ( roughness >= cubeUV_r4 ) { - mip = ( cubeUV_r1 - roughness ) * ( cubeUV_m4 - cubeUV_m1 ) / ( cubeUV_r1 - cubeUV_r4 ) + cubeUV_m1; - } else if ( roughness >= cubeUV_r5 ) { - mip = ( cubeUV_r4 - roughness ) * ( cubeUV_m5 - cubeUV_m4 ) / ( cubeUV_r4 - cubeUV_r5 ) + cubeUV_m4; - } else if ( roughness >= cubeUV_r6 ) { - mip = ( cubeUV_r5 - roughness ) * ( cubeUV_m6 - cubeUV_m5 ) / ( cubeUV_r5 - cubeUV_r6 ) + cubeUV_m5; - } else { - mip = - 2.0 * log2( 1.16 * roughness ); } - return mip; - } - vec4 textureCubeUV( sampler2D envMap, vec3 sampleDir, float roughness ) { - float mip = clamp( roughnessToMip( roughness ), cubeUV_m0, CUBEUV_MAX_MIP ); - float mipF = fract( mip ); - float mipInt = floor( mip ); - vec3 color0 = bilinearCubeUV( envMap, sampleDir, mipInt ); - if ( mipF == 0.0 ) { - return vec4( color0, 1.0 ); - } else { - vec3 color1 = bilinearCubeUV( envMap, sampleDir, mipInt + 1.0 ); - return vec4( mix( color0, color1, mipF ), 1.0 ); - } - } -#endif`,TG=`vec3 transformedNormal = objectNormal; -#ifdef USE_TANGENT - vec3 transformedTangent = objectTangent; -#endif -#ifdef USE_BATCHING - mat3 bm = mat3( batchingMatrix ); - transformedNormal /= vec3( dot( bm[ 0 ], bm[ 0 ] ), dot( bm[ 1 ], bm[ 1 ] ), dot( bm[ 2 ], bm[ 2 ] ) ); - transformedNormal = bm * transformedNormal; - #ifdef USE_TANGENT - transformedTangent = bm * transformedTangent; - #endif -#endif -#ifdef USE_INSTANCING - mat3 im = mat3( instanceMatrix ); - transformedNormal /= vec3( dot( im[ 0 ], im[ 0 ] ), dot( im[ 1 ], im[ 1 ] ), dot( im[ 2 ], im[ 2 ] ) ); - transformedNormal = im * transformedNormal; - #ifdef USE_TANGENT - transformedTangent = im * transformedTangent; - #endif -#endif -transformedNormal = normalMatrix * transformedNormal; -#ifdef FLIP_SIDED - transformedNormal = - transformedNormal; -#endif -#ifdef USE_TANGENT - transformedTangent = ( modelViewMatrix * vec4( transformedTangent, 0.0 ) ).xyz; - #ifdef FLIP_SIDED - transformedTangent = - transformedTangent; - #endif -#endif`,wG=`#ifdef USE_DISPLACEMENTMAP - uniform sampler2D displacementMap; - uniform float displacementScale; - uniform float displacementBias; -#endif`,MG=`#ifdef USE_DISPLACEMENTMAP - transformed += normalize( objectNormal ) * ( texture2D( displacementMap, vDisplacementMapUv ).x * displacementScale + displacementBias ); -#endif`,EG=`#ifdef USE_EMISSIVEMAP - vec4 emissiveColor = texture2D( emissiveMap, vEmissiveMapUv ); - #ifdef DECODE_VIDEO_TEXTURE_EMISSIVE - emissiveColor = sRGBTransferEOTF( emissiveColor ); - #endif - totalEmissiveRadiance *= emissiveColor.rgb; -#endif`,CG=`#ifdef USE_EMISSIVEMAP - uniform sampler2D emissiveMap; -#endif`,RG="gl_FragColor = linearToOutputTexel( gl_FragColor );",NG=`vec4 LinearTransferOETF( in vec4 value ) { - return value; -} -vec4 sRGBTransferEOTF( in vec4 value ) { - return vec4( mix( pow( value.rgb * 0.9478672986 + vec3( 0.0521327014 ), vec3( 2.4 ) ), value.rgb * 0.0773993808, vec3( lessThanEqual( value.rgb, vec3( 0.04045 ) ) ) ), value.a ); -} -vec4 sRGBTransferOETF( in vec4 value ) { - return vec4( mix( pow( value.rgb, vec3( 0.41666 ) ) * 1.055 - vec3( 0.055 ), value.rgb * 12.92, vec3( lessThanEqual( value.rgb, vec3( 0.0031308 ) ) ) ), value.a ); -}`,DG=`#ifdef USE_ENVMAP - #ifdef ENV_WORLDPOS - vec3 cameraToFrag; - if ( isOrthographic ) { - cameraToFrag = normalize( vec3( - viewMatrix[ 0 ][ 2 ], - viewMatrix[ 1 ][ 2 ], - viewMatrix[ 2 ][ 2 ] ) ); - } else { - cameraToFrag = normalize( vWorldPosition - cameraPosition ); - } - vec3 worldNormal = inverseTransformDirection( normal, viewMatrix ); - #ifdef ENVMAP_MODE_REFLECTION - vec3 reflectVec = reflect( cameraToFrag, worldNormal ); - #else - vec3 reflectVec = refract( cameraToFrag, worldNormal, refractionRatio ); - #endif - #else - vec3 reflectVec = vReflect; - #endif - #ifdef ENVMAP_TYPE_CUBE - vec4 envColor = textureCube( envMap, envMapRotation * vec3( flipEnvMap * reflectVec.x, reflectVec.yz ) ); - #else - vec4 envColor = vec4( 0.0 ); - #endif - #ifdef ENVMAP_BLENDING_MULTIPLY - outgoingLight = mix( outgoingLight, outgoingLight * envColor.xyz, specularStrength * reflectivity ); - #elif defined( ENVMAP_BLENDING_MIX ) - outgoingLight = mix( outgoingLight, envColor.xyz, specularStrength * reflectivity ); - #elif defined( ENVMAP_BLENDING_ADD ) - outgoingLight += envColor.xyz * specularStrength * reflectivity; - #endif -#endif`,PG=`#ifdef USE_ENVMAP - uniform float envMapIntensity; - uniform float flipEnvMap; - uniform mat3 envMapRotation; - #ifdef ENVMAP_TYPE_CUBE - uniform samplerCube envMap; - #else - uniform sampler2D envMap; - #endif - -#endif`,LG=`#ifdef USE_ENVMAP - uniform float reflectivity; - #if defined( USE_BUMPMAP ) || defined( USE_NORMALMAP ) || defined( PHONG ) || defined( LAMBERT ) - #define ENV_WORLDPOS - #endif - #ifdef ENV_WORLDPOS - varying vec3 vWorldPosition; - uniform float refractionRatio; - #else - varying vec3 vReflect; - #endif -#endif`,UG=`#ifdef USE_ENVMAP - #if defined( USE_BUMPMAP ) || defined( USE_NORMALMAP ) || defined( PHONG ) || defined( LAMBERT ) - #define ENV_WORLDPOS - #endif - #ifdef ENV_WORLDPOS - - varying vec3 vWorldPosition; - #else - varying vec3 vReflect; - uniform float refractionRatio; - #endif -#endif`,BG=`#ifdef USE_ENVMAP - #ifdef ENV_WORLDPOS - vWorldPosition = worldPosition.xyz; - #else - vec3 cameraToVertex; - if ( isOrthographic ) { - cameraToVertex = normalize( vec3( - viewMatrix[ 0 ][ 2 ], - viewMatrix[ 1 ][ 2 ], - viewMatrix[ 2 ][ 2 ] ) ); - } else { - cameraToVertex = normalize( worldPosition.xyz - cameraPosition ); - } - vec3 worldNormal = inverseTransformDirection( transformedNormal, viewMatrix ); - #ifdef ENVMAP_MODE_REFLECTION - vReflect = reflect( cameraToVertex, worldNormal ); - #else - vReflect = refract( cameraToVertex, worldNormal, refractionRatio ); - #endif - #endif -#endif`,OG=`#ifdef USE_FOG - vFogDepth = - mvPosition.z; -#endif`,IG=`#ifdef USE_FOG - varying float vFogDepth; -#endif`,FG=`#ifdef USE_FOG - #ifdef FOG_EXP2 - float fogFactor = 1.0 - exp( - fogDensity * fogDensity * vFogDepth * vFogDepth ); - #else - float fogFactor = smoothstep( fogNear, fogFar, vFogDepth ); - #endif - gl_FragColor.rgb = mix( gl_FragColor.rgb, fogColor, fogFactor ); -#endif`,kG=`#ifdef USE_FOG - uniform vec3 fogColor; - varying float vFogDepth; - #ifdef FOG_EXP2 - uniform float fogDensity; - #else - uniform float fogNear; - uniform float fogFar; - #endif -#endif`,zG=`#ifdef USE_GRADIENTMAP - uniform sampler2D gradientMap; -#endif -vec3 getGradientIrradiance( vec3 normal, vec3 lightDirection ) { - float dotNL = dot( normal, lightDirection ); - vec2 coord = vec2( dotNL * 0.5 + 0.5, 0.0 ); - #ifdef USE_GRADIENTMAP - return vec3( texture2D( gradientMap, coord ).r ); - #else - vec2 fw = fwidth( coord ) * 0.5; - return mix( vec3( 0.7 ), vec3( 1.0 ), smoothstep( 0.7 - fw.x, 0.7 + fw.x, coord.x ) ); - #endif -}`,GG=`#ifdef USE_LIGHTMAP - uniform sampler2D lightMap; - uniform float lightMapIntensity; -#endif`,qG=`LambertMaterial material; -material.diffuseColor = diffuseColor.rgb; -material.specularStrength = specularStrength;`,VG=`varying vec3 vViewPosition; -struct LambertMaterial { - vec3 diffuseColor; - float specularStrength; -}; -void RE_Direct_Lambert( const in IncidentLight directLight, const in vec3 geometryPosition, const in vec3 geometryNormal, const in vec3 geometryViewDir, const in vec3 geometryClearcoatNormal, const in LambertMaterial material, inout ReflectedLight reflectedLight ) { - float dotNL = saturate( dot( geometryNormal, directLight.direction ) ); - vec3 irradiance = dotNL * directLight.color; - reflectedLight.directDiffuse += irradiance * BRDF_Lambert( material.diffuseColor ); -} -void RE_IndirectDiffuse_Lambert( const in vec3 irradiance, const in vec3 geometryPosition, const in vec3 geometryNormal, const in vec3 geometryViewDir, const in vec3 geometryClearcoatNormal, const in LambertMaterial material, inout ReflectedLight reflectedLight ) { - reflectedLight.indirectDiffuse += irradiance * BRDF_Lambert( material.diffuseColor ); -} -#define RE_Direct RE_Direct_Lambert -#define RE_IndirectDiffuse RE_IndirectDiffuse_Lambert`,HG=`uniform bool receiveShadow; -uniform vec3 ambientLightColor; -#if defined( USE_LIGHT_PROBES ) - uniform vec3 lightProbe[ 9 ]; -#endif -vec3 shGetIrradianceAt( in vec3 normal, in vec3 shCoefficients[ 9 ] ) { - float x = normal.x, y = normal.y, z = normal.z; - vec3 result = shCoefficients[ 0 ] * 0.886227; - result += shCoefficients[ 1 ] * 2.0 * 0.511664 * y; - result += shCoefficients[ 2 ] * 2.0 * 0.511664 * z; - result += shCoefficients[ 3 ] * 2.0 * 0.511664 * x; - result += shCoefficients[ 4 ] * 2.0 * 0.429043 * x * y; - result += shCoefficients[ 5 ] * 2.0 * 0.429043 * y * z; - result += shCoefficients[ 6 ] * ( 0.743125 * z * z - 0.247708 ); - result += shCoefficients[ 7 ] * 2.0 * 0.429043 * x * z; - result += shCoefficients[ 8 ] * 0.429043 * ( x * x - y * y ); - return result; -} -vec3 getLightProbeIrradiance( const in vec3 lightProbe[ 9 ], const in vec3 normal ) { - vec3 worldNormal = inverseTransformDirection( normal, viewMatrix ); - vec3 irradiance = shGetIrradianceAt( worldNormal, lightProbe ); - return irradiance; -} -vec3 getAmbientLightIrradiance( const in vec3 ambientLightColor ) { - vec3 irradiance = ambientLightColor; - return irradiance; -} -float getDistanceAttenuation( const in float lightDistance, const in float cutoffDistance, const in float decayExponent ) { - float distanceFalloff = 1.0 / max( pow( lightDistance, decayExponent ), 0.01 ); - if ( cutoffDistance > 0.0 ) { - distanceFalloff *= pow2( saturate( 1.0 - pow4( lightDistance / cutoffDistance ) ) ); - } - return distanceFalloff; -} -float getSpotAttenuation( const in float coneCosine, const in float penumbraCosine, const in float angleCosine ) { - return smoothstep( coneCosine, penumbraCosine, angleCosine ); -} -#if NUM_DIR_LIGHTS > 0 - struct DirectionalLight { - vec3 direction; - vec3 color; - }; - uniform DirectionalLight directionalLights[ NUM_DIR_LIGHTS ]; - void getDirectionalLightInfo( const in DirectionalLight directionalLight, out IncidentLight light ) { - light.color = directionalLight.color; - light.direction = directionalLight.direction; - light.visible = true; - } -#endif -#if NUM_POINT_LIGHTS > 0 - struct PointLight { - vec3 position; - vec3 color; - float distance; - float decay; - }; - uniform PointLight pointLights[ NUM_POINT_LIGHTS ]; - void getPointLightInfo( const in PointLight pointLight, const in vec3 geometryPosition, out IncidentLight light ) { - vec3 lVector = pointLight.position - geometryPosition; - light.direction = normalize( lVector ); - float lightDistance = length( lVector ); - light.color = pointLight.color; - light.color *= getDistanceAttenuation( lightDistance, pointLight.distance, pointLight.decay ); - light.visible = ( light.color != vec3( 0.0 ) ); - } -#endif -#if NUM_SPOT_LIGHTS > 0 - struct SpotLight { - vec3 position; - vec3 direction; - vec3 color; - float distance; - float decay; - float coneCos; - float penumbraCos; - }; - uniform SpotLight spotLights[ NUM_SPOT_LIGHTS ]; - void getSpotLightInfo( const in SpotLight spotLight, const in vec3 geometryPosition, out IncidentLight light ) { - vec3 lVector = spotLight.position - geometryPosition; - light.direction = normalize( lVector ); - float angleCos = dot( light.direction, spotLight.direction ); - float spotAttenuation = getSpotAttenuation( spotLight.coneCos, spotLight.penumbraCos, angleCos ); - if ( spotAttenuation > 0.0 ) { - float lightDistance = length( lVector ); - light.color = spotLight.color * spotAttenuation; - light.color *= getDistanceAttenuation( lightDistance, spotLight.distance, spotLight.decay ); - light.visible = ( light.color != vec3( 0.0 ) ); - } else { - light.color = vec3( 0.0 ); - light.visible = false; - } - } -#endif -#if NUM_RECT_AREA_LIGHTS > 0 - struct RectAreaLight { - vec3 color; - vec3 position; - vec3 halfWidth; - vec3 halfHeight; - }; - uniform sampler2D ltc_1; uniform sampler2D ltc_2; - uniform RectAreaLight rectAreaLights[ NUM_RECT_AREA_LIGHTS ]; -#endif -#if NUM_HEMI_LIGHTS > 0 - struct HemisphereLight { - vec3 direction; - vec3 skyColor; - vec3 groundColor; - }; - uniform HemisphereLight hemisphereLights[ NUM_HEMI_LIGHTS ]; - vec3 getHemisphereLightIrradiance( const in HemisphereLight hemiLight, const in vec3 normal ) { - float dotNL = dot( normal, hemiLight.direction ); - float hemiDiffuseWeight = 0.5 * dotNL + 0.5; - vec3 irradiance = mix( hemiLight.groundColor, hemiLight.skyColor, hemiDiffuseWeight ); - return irradiance; - } -#endif`,jG=`#ifdef USE_ENVMAP - vec3 getIBLIrradiance( const in vec3 normal ) { - #ifdef ENVMAP_TYPE_CUBE_UV - vec3 worldNormal = inverseTransformDirection( normal, viewMatrix ); - vec4 envMapColor = textureCubeUV( envMap, envMapRotation * worldNormal, 1.0 ); - return PI * envMapColor.rgb * envMapIntensity; - #else - return vec3( 0.0 ); - #endif - } - vec3 getIBLRadiance( const in vec3 viewDir, const in vec3 normal, const in float roughness ) { - #ifdef ENVMAP_TYPE_CUBE_UV - vec3 reflectVec = reflect( - viewDir, normal ); - reflectVec = normalize( mix( reflectVec, normal, roughness * roughness) ); - reflectVec = inverseTransformDirection( reflectVec, viewMatrix ); - vec4 envMapColor = textureCubeUV( envMap, envMapRotation * reflectVec, roughness ); - return envMapColor.rgb * envMapIntensity; - #else - return vec3( 0.0 ); - #endif - } - #ifdef USE_ANISOTROPY - vec3 getIBLAnisotropyRadiance( const in vec3 viewDir, const in vec3 normal, const in float roughness, const in vec3 bitangent, const in float anisotropy ) { - #ifdef ENVMAP_TYPE_CUBE_UV - vec3 bentNormal = cross( bitangent, viewDir ); - bentNormal = normalize( cross( bentNormal, bitangent ) ); - bentNormal = normalize( mix( bentNormal, normal, pow2( pow2( 1.0 - anisotropy * ( 1.0 - roughness ) ) ) ) ); - return getIBLRadiance( viewDir, bentNormal, roughness ); - #else - return vec3( 0.0 ); - #endif - } - #endif -#endif`,WG=`ToonMaterial material; -material.diffuseColor = diffuseColor.rgb;`,$G=`varying vec3 vViewPosition; -struct ToonMaterial { - vec3 diffuseColor; -}; -void RE_Direct_Toon( const in IncidentLight directLight, const in vec3 geometryPosition, const in vec3 geometryNormal, const in vec3 geometryViewDir, const in vec3 geometryClearcoatNormal, const in ToonMaterial material, inout ReflectedLight reflectedLight ) { - vec3 irradiance = getGradientIrradiance( geometryNormal, directLight.direction ) * directLight.color; - reflectedLight.directDiffuse += irradiance * BRDF_Lambert( material.diffuseColor ); -} -void RE_IndirectDiffuse_Toon( const in vec3 irradiance, const in vec3 geometryPosition, const in vec3 geometryNormal, const in vec3 geometryViewDir, const in vec3 geometryClearcoatNormal, const in ToonMaterial material, inout ReflectedLight reflectedLight ) { - reflectedLight.indirectDiffuse += irradiance * BRDF_Lambert( material.diffuseColor ); -} -#define RE_Direct RE_Direct_Toon -#define RE_IndirectDiffuse RE_IndirectDiffuse_Toon`,XG=`BlinnPhongMaterial material; -material.diffuseColor = diffuseColor.rgb; -material.specularColor = specular; -material.specularShininess = shininess; -material.specularStrength = specularStrength;`,YG=`varying vec3 vViewPosition; -struct BlinnPhongMaterial { - vec3 diffuseColor; - vec3 specularColor; - float specularShininess; - float specularStrength; -}; -void RE_Direct_BlinnPhong( const in IncidentLight directLight, const in vec3 geometryPosition, const in vec3 geometryNormal, const in vec3 geometryViewDir, const in vec3 geometryClearcoatNormal, const in BlinnPhongMaterial material, inout ReflectedLight reflectedLight ) { - float dotNL = saturate( dot( geometryNormal, directLight.direction ) ); - vec3 irradiance = dotNL * directLight.color; - reflectedLight.directDiffuse += irradiance * BRDF_Lambert( material.diffuseColor ); - reflectedLight.directSpecular += irradiance * BRDF_BlinnPhong( directLight.direction, geometryViewDir, geometryNormal, material.specularColor, material.specularShininess ) * material.specularStrength; -} -void RE_IndirectDiffuse_BlinnPhong( const in vec3 irradiance, const in vec3 geometryPosition, const in vec3 geometryNormal, const in vec3 geometryViewDir, const in vec3 geometryClearcoatNormal, const in BlinnPhongMaterial material, inout ReflectedLight reflectedLight ) { - reflectedLight.indirectDiffuse += irradiance * BRDF_Lambert( material.diffuseColor ); -} -#define RE_Direct RE_Direct_BlinnPhong -#define RE_IndirectDiffuse RE_IndirectDiffuse_BlinnPhong`,QG=`PhysicalMaterial material; -material.diffuseColor = diffuseColor.rgb * ( 1.0 - metalnessFactor ); -vec3 dxy = max( abs( dFdx( nonPerturbedNormal ) ), abs( dFdy( nonPerturbedNormal ) ) ); -float geometryRoughness = max( max( dxy.x, dxy.y ), dxy.z ); -material.roughness = max( roughnessFactor, 0.0525 );material.roughness += geometryRoughness; -material.roughness = min( material.roughness, 1.0 ); -#ifdef IOR - material.ior = ior; - #ifdef USE_SPECULAR - float specularIntensityFactor = specularIntensity; - vec3 specularColorFactor = specularColor; - #ifdef USE_SPECULAR_COLORMAP - specularColorFactor *= texture2D( specularColorMap, vSpecularColorMapUv ).rgb; - #endif - #ifdef USE_SPECULAR_INTENSITYMAP - specularIntensityFactor *= texture2D( specularIntensityMap, vSpecularIntensityMapUv ).a; - #endif - material.specularF90 = mix( specularIntensityFactor, 1.0, metalnessFactor ); - #else - float specularIntensityFactor = 1.0; - vec3 specularColorFactor = vec3( 1.0 ); - material.specularF90 = 1.0; - #endif - material.specularColor = mix( min( pow2( ( material.ior - 1.0 ) / ( material.ior + 1.0 ) ) * specularColorFactor, vec3( 1.0 ) ) * specularIntensityFactor, diffuseColor.rgb, metalnessFactor ); -#else - material.specularColor = mix( vec3( 0.04 ), diffuseColor.rgb, metalnessFactor ); - material.specularF90 = 1.0; -#endif -#ifdef USE_CLEARCOAT - material.clearcoat = clearcoat; - material.clearcoatRoughness = clearcoatRoughness; - material.clearcoatF0 = vec3( 0.04 ); - material.clearcoatF90 = 1.0; - #ifdef USE_CLEARCOATMAP - material.clearcoat *= texture2D( clearcoatMap, vClearcoatMapUv ).x; - #endif - #ifdef USE_CLEARCOAT_ROUGHNESSMAP - material.clearcoatRoughness *= texture2D( clearcoatRoughnessMap, vClearcoatRoughnessMapUv ).y; - #endif - material.clearcoat = saturate( material.clearcoat ); material.clearcoatRoughness = max( material.clearcoatRoughness, 0.0525 ); - material.clearcoatRoughness += geometryRoughness; - material.clearcoatRoughness = min( material.clearcoatRoughness, 1.0 ); -#endif -#ifdef USE_DISPERSION - material.dispersion = dispersion; -#endif -#ifdef USE_IRIDESCENCE - material.iridescence = iridescence; - material.iridescenceIOR = iridescenceIOR; - #ifdef USE_IRIDESCENCEMAP - material.iridescence *= texture2D( iridescenceMap, vIridescenceMapUv ).r; - #endif - #ifdef USE_IRIDESCENCE_THICKNESSMAP - material.iridescenceThickness = (iridescenceThicknessMaximum - iridescenceThicknessMinimum) * texture2D( iridescenceThicknessMap, vIridescenceThicknessMapUv ).g + iridescenceThicknessMinimum; - #else - material.iridescenceThickness = iridescenceThicknessMaximum; - #endif -#endif -#ifdef USE_SHEEN - material.sheenColor = sheenColor; - #ifdef USE_SHEEN_COLORMAP - material.sheenColor *= texture2D( sheenColorMap, vSheenColorMapUv ).rgb; - #endif - material.sheenRoughness = clamp( sheenRoughness, 0.07, 1.0 ); - #ifdef USE_SHEEN_ROUGHNESSMAP - material.sheenRoughness *= texture2D( sheenRoughnessMap, vSheenRoughnessMapUv ).a; - #endif -#endif -#ifdef USE_ANISOTROPY - #ifdef USE_ANISOTROPYMAP - mat2 anisotropyMat = mat2( anisotropyVector.x, anisotropyVector.y, - anisotropyVector.y, anisotropyVector.x ); - vec3 anisotropyPolar = texture2D( anisotropyMap, vAnisotropyMapUv ).rgb; - vec2 anisotropyV = anisotropyMat * normalize( 2.0 * anisotropyPolar.rg - vec2( 1.0 ) ) * anisotropyPolar.b; - #else - vec2 anisotropyV = anisotropyVector; - #endif - material.anisotropy = length( anisotropyV ); - if( material.anisotropy == 0.0 ) { - anisotropyV = vec2( 1.0, 0.0 ); - } else { - anisotropyV /= material.anisotropy; - material.anisotropy = saturate( material.anisotropy ); - } - material.alphaT = mix( pow2( material.roughness ), 1.0, pow2( material.anisotropy ) ); - material.anisotropyT = tbn[ 0 ] * anisotropyV.x + tbn[ 1 ] * anisotropyV.y; - material.anisotropyB = tbn[ 1 ] * anisotropyV.x - tbn[ 0 ] * anisotropyV.y; -#endif`,KG=`struct PhysicalMaterial { - vec3 diffuseColor; - float roughness; - vec3 specularColor; - float specularF90; - float dispersion; - #ifdef USE_CLEARCOAT - float clearcoat; - float clearcoatRoughness; - vec3 clearcoatF0; - float clearcoatF90; - #endif - #ifdef USE_IRIDESCENCE - float iridescence; - float iridescenceIOR; - float iridescenceThickness; - vec3 iridescenceFresnel; - vec3 iridescenceF0; - #endif - #ifdef USE_SHEEN - vec3 sheenColor; - float sheenRoughness; - #endif - #ifdef IOR - float ior; - #endif - #ifdef USE_TRANSMISSION - float transmission; - float transmissionAlpha; - float thickness; - float attenuationDistance; - vec3 attenuationColor; - #endif - #ifdef USE_ANISOTROPY - float anisotropy; - float alphaT; - vec3 anisotropyT; - vec3 anisotropyB; - #endif -}; -vec3 clearcoatSpecularDirect = vec3( 0.0 ); -vec3 clearcoatSpecularIndirect = vec3( 0.0 ); -vec3 sheenSpecularDirect = vec3( 0.0 ); -vec3 sheenSpecularIndirect = vec3(0.0 ); -vec3 Schlick_to_F0( const in vec3 f, const in float f90, const in float dotVH ) { - float x = clamp( 1.0 - dotVH, 0.0, 1.0 ); - float x2 = x * x; - float x5 = clamp( x * x2 * x2, 0.0, 0.9999 ); - return ( f - vec3( f90 ) * x5 ) / ( 1.0 - x5 ); -} -float V_GGX_SmithCorrelated( const in float alpha, const in float dotNL, const in float dotNV ) { - float a2 = pow2( alpha ); - float gv = dotNL * sqrt( a2 + ( 1.0 - a2 ) * pow2( dotNV ) ); - float gl = dotNV * sqrt( a2 + ( 1.0 - a2 ) * pow2( dotNL ) ); - return 0.5 / max( gv + gl, EPSILON ); -} -float D_GGX( const in float alpha, const in float dotNH ) { - float a2 = pow2( alpha ); - float denom = pow2( dotNH ) * ( a2 - 1.0 ) + 1.0; - return RECIPROCAL_PI * a2 / pow2( denom ); -} -#ifdef USE_ANISOTROPY - float V_GGX_SmithCorrelated_Anisotropic( const in float alphaT, const in float alphaB, const in float dotTV, const in float dotBV, const in float dotTL, const in float dotBL, const in float dotNV, const in float dotNL ) { - float gv = dotNL * length( vec3( alphaT * dotTV, alphaB * dotBV, dotNV ) ); - float gl = dotNV * length( vec3( alphaT * dotTL, alphaB * dotBL, dotNL ) ); - float v = 0.5 / ( gv + gl ); - return saturate(v); - } - float D_GGX_Anisotropic( const in float alphaT, const in float alphaB, const in float dotNH, const in float dotTH, const in float dotBH ) { - float a2 = alphaT * alphaB; - highp vec3 v = vec3( alphaB * dotTH, alphaT * dotBH, a2 * dotNH ); - highp float v2 = dot( v, v ); - float w2 = a2 / v2; - return RECIPROCAL_PI * a2 * pow2 ( w2 ); - } -#endif -#ifdef USE_CLEARCOAT - vec3 BRDF_GGX_Clearcoat( const in vec3 lightDir, const in vec3 viewDir, const in vec3 normal, const in PhysicalMaterial material) { - vec3 f0 = material.clearcoatF0; - float f90 = material.clearcoatF90; - float roughness = material.clearcoatRoughness; - float alpha = pow2( roughness ); - vec3 halfDir = normalize( lightDir + viewDir ); - float dotNL = saturate( dot( normal, lightDir ) ); - float dotNV = saturate( dot( normal, viewDir ) ); - float dotNH = saturate( dot( normal, halfDir ) ); - float dotVH = saturate( dot( viewDir, halfDir ) ); - vec3 F = F_Schlick( f0, f90, dotVH ); - float V = V_GGX_SmithCorrelated( alpha, dotNL, dotNV ); - float D = D_GGX( alpha, dotNH ); - return F * ( V * D ); - } -#endif -vec3 BRDF_GGX( const in vec3 lightDir, const in vec3 viewDir, const in vec3 normal, const in PhysicalMaterial material ) { - vec3 f0 = material.specularColor; - float f90 = material.specularF90; - float roughness = material.roughness; - float alpha = pow2( roughness ); - vec3 halfDir = normalize( lightDir + viewDir ); - float dotNL = saturate( dot( normal, lightDir ) ); - float dotNV = saturate( dot( normal, viewDir ) ); - float dotNH = saturate( dot( normal, halfDir ) ); - float dotVH = saturate( dot( viewDir, halfDir ) ); - vec3 F = F_Schlick( f0, f90, dotVH ); - #ifdef USE_IRIDESCENCE - F = mix( F, material.iridescenceFresnel, material.iridescence ); - #endif - #ifdef USE_ANISOTROPY - float dotTL = dot( material.anisotropyT, lightDir ); - float dotTV = dot( material.anisotropyT, viewDir ); - float dotTH = dot( material.anisotropyT, halfDir ); - float dotBL = dot( material.anisotropyB, lightDir ); - float dotBV = dot( material.anisotropyB, viewDir ); - float dotBH = dot( material.anisotropyB, halfDir ); - float V = V_GGX_SmithCorrelated_Anisotropic( material.alphaT, alpha, dotTV, dotBV, dotTL, dotBL, dotNV, dotNL ); - float D = D_GGX_Anisotropic( material.alphaT, alpha, dotNH, dotTH, dotBH ); - #else - float V = V_GGX_SmithCorrelated( alpha, dotNL, dotNV ); - float D = D_GGX( alpha, dotNH ); - #endif - return F * ( V * D ); -} -vec2 LTC_Uv( const in vec3 N, const in vec3 V, const in float roughness ) { - const float LUT_SIZE = 64.0; - const float LUT_SCALE = ( LUT_SIZE - 1.0 ) / LUT_SIZE; - const float LUT_BIAS = 0.5 / LUT_SIZE; - float dotNV = saturate( dot( N, V ) ); - vec2 uv = vec2( roughness, sqrt( 1.0 - dotNV ) ); - uv = uv * LUT_SCALE + LUT_BIAS; - return uv; -} -float LTC_ClippedSphereFormFactor( const in vec3 f ) { - float l = length( f ); - return max( ( l * l + f.z ) / ( l + 1.0 ), 0.0 ); -} -vec3 LTC_EdgeVectorFormFactor( const in vec3 v1, const in vec3 v2 ) { - float x = dot( v1, v2 ); - float y = abs( x ); - float a = 0.8543985 + ( 0.4965155 + 0.0145206 * y ) * y; - float b = 3.4175940 + ( 4.1616724 + y ) * y; - float v = a / b; - float theta_sintheta = ( x > 0.0 ) ? v : 0.5 * inversesqrt( max( 1.0 - x * x, 1e-7 ) ) - v; - return cross( v1, v2 ) * theta_sintheta; -} -vec3 LTC_Evaluate( const in vec3 N, const in vec3 V, const in vec3 P, const in mat3 mInv, const in vec3 rectCoords[ 4 ] ) { - vec3 v1 = rectCoords[ 1 ] - rectCoords[ 0 ]; - vec3 v2 = rectCoords[ 3 ] - rectCoords[ 0 ]; - vec3 lightNormal = cross( v1, v2 ); - if( dot( lightNormal, P - rectCoords[ 0 ] ) < 0.0 ) return vec3( 0.0 ); - vec3 T1, T2; - T1 = normalize( V - N * dot( V, N ) ); - T2 = - cross( N, T1 ); - mat3 mat = mInv * transposeMat3( mat3( T1, T2, N ) ); - vec3 coords[ 4 ]; - coords[ 0 ] = mat * ( rectCoords[ 0 ] - P ); - coords[ 1 ] = mat * ( rectCoords[ 1 ] - P ); - coords[ 2 ] = mat * ( rectCoords[ 2 ] - P ); - coords[ 3 ] = mat * ( rectCoords[ 3 ] - P ); - coords[ 0 ] = normalize( coords[ 0 ] ); - coords[ 1 ] = normalize( coords[ 1 ] ); - coords[ 2 ] = normalize( coords[ 2 ] ); - coords[ 3 ] = normalize( coords[ 3 ] ); - vec3 vectorFormFactor = vec3( 0.0 ); - vectorFormFactor += LTC_EdgeVectorFormFactor( coords[ 0 ], coords[ 1 ] ); - vectorFormFactor += LTC_EdgeVectorFormFactor( coords[ 1 ], coords[ 2 ] ); - vectorFormFactor += LTC_EdgeVectorFormFactor( coords[ 2 ], coords[ 3 ] ); - vectorFormFactor += LTC_EdgeVectorFormFactor( coords[ 3 ], coords[ 0 ] ); - float result = LTC_ClippedSphereFormFactor( vectorFormFactor ); - return vec3( result ); -} -#if defined( USE_SHEEN ) -float D_Charlie( float roughness, float dotNH ) { - float alpha = pow2( roughness ); - float invAlpha = 1.0 / alpha; - float cos2h = dotNH * dotNH; - float sin2h = max( 1.0 - cos2h, 0.0078125 ); - return ( 2.0 + invAlpha ) * pow( sin2h, invAlpha * 0.5 ) / ( 2.0 * PI ); -} -float V_Neubelt( float dotNV, float dotNL ) { - return saturate( 1.0 / ( 4.0 * ( dotNL + dotNV - dotNL * dotNV ) ) ); -} -vec3 BRDF_Sheen( const in vec3 lightDir, const in vec3 viewDir, const in vec3 normal, vec3 sheenColor, const in float sheenRoughness ) { - vec3 halfDir = normalize( lightDir + viewDir ); - float dotNL = saturate( dot( normal, lightDir ) ); - float dotNV = saturate( dot( normal, viewDir ) ); - float dotNH = saturate( dot( normal, halfDir ) ); - float D = D_Charlie( sheenRoughness, dotNH ); - float V = V_Neubelt( dotNV, dotNL ); - return sheenColor * ( D * V ); -} -#endif -float IBLSheenBRDF( const in vec3 normal, const in vec3 viewDir, const in float roughness ) { - float dotNV = saturate( dot( normal, viewDir ) ); - float r2 = roughness * roughness; - float a = roughness < 0.25 ? -339.2 * r2 + 161.4 * roughness - 25.9 : -8.48 * r2 + 14.3 * roughness - 9.95; - float b = roughness < 0.25 ? 44.0 * r2 - 23.7 * roughness + 3.26 : 1.97 * r2 - 3.27 * roughness + 0.72; - float DG = exp( a * dotNV + b ) + ( roughness < 0.25 ? 0.0 : 0.1 * ( roughness - 0.25 ) ); - return saturate( DG * RECIPROCAL_PI ); -} -vec2 DFGApprox( const in vec3 normal, const in vec3 viewDir, const in float roughness ) { - float dotNV = saturate( dot( normal, viewDir ) ); - const vec4 c0 = vec4( - 1, - 0.0275, - 0.572, 0.022 ); - const vec4 c1 = vec4( 1, 0.0425, 1.04, - 0.04 ); - vec4 r = roughness * c0 + c1; - float a004 = min( r.x * r.x, exp2( - 9.28 * dotNV ) ) * r.x + r.y; - vec2 fab = vec2( - 1.04, 1.04 ) * a004 + r.zw; - return fab; -} -vec3 EnvironmentBRDF( const in vec3 normal, const in vec3 viewDir, const in vec3 specularColor, const in float specularF90, const in float roughness ) { - vec2 fab = DFGApprox( normal, viewDir, roughness ); - return specularColor * fab.x + specularF90 * fab.y; -} -#ifdef USE_IRIDESCENCE -void computeMultiscatteringIridescence( const in vec3 normal, const in vec3 viewDir, const in vec3 specularColor, const in float specularF90, const in float iridescence, const in vec3 iridescenceF0, const in float roughness, inout vec3 singleScatter, inout vec3 multiScatter ) { -#else -void computeMultiscattering( const in vec3 normal, const in vec3 viewDir, const in vec3 specularColor, const in float specularF90, const in float roughness, inout vec3 singleScatter, inout vec3 multiScatter ) { -#endif - vec2 fab = DFGApprox( normal, viewDir, roughness ); - #ifdef USE_IRIDESCENCE - vec3 Fr = mix( specularColor, iridescenceF0, iridescence ); - #else - vec3 Fr = specularColor; - #endif - vec3 FssEss = Fr * fab.x + specularF90 * fab.y; - float Ess = fab.x + fab.y; - float Ems = 1.0 - Ess; - vec3 Favg = Fr + ( 1.0 - Fr ) * 0.047619; vec3 Fms = FssEss * Favg / ( 1.0 - Ems * Favg ); - singleScatter += FssEss; - multiScatter += Fms * Ems; -} -#if NUM_RECT_AREA_LIGHTS > 0 - void RE_Direct_RectArea_Physical( const in RectAreaLight rectAreaLight, const in vec3 geometryPosition, const in vec3 geometryNormal, const in vec3 geometryViewDir, const in vec3 geometryClearcoatNormal, const in PhysicalMaterial material, inout ReflectedLight reflectedLight ) { - vec3 normal = geometryNormal; - vec3 viewDir = geometryViewDir; - vec3 position = geometryPosition; - vec3 lightPos = rectAreaLight.position; - vec3 halfWidth = rectAreaLight.halfWidth; - vec3 halfHeight = rectAreaLight.halfHeight; - vec3 lightColor = rectAreaLight.color; - float roughness = material.roughness; - vec3 rectCoords[ 4 ]; - rectCoords[ 0 ] = lightPos + halfWidth - halfHeight; rectCoords[ 1 ] = lightPos - halfWidth - halfHeight; - rectCoords[ 2 ] = lightPos - halfWidth + halfHeight; - rectCoords[ 3 ] = lightPos + halfWidth + halfHeight; - vec2 uv = LTC_Uv( normal, viewDir, roughness ); - vec4 t1 = texture2D( ltc_1, uv ); - vec4 t2 = texture2D( ltc_2, uv ); - mat3 mInv = mat3( - vec3( t1.x, 0, t1.y ), - vec3( 0, 1, 0 ), - vec3( t1.z, 0, t1.w ) - ); - vec3 fresnel = ( material.specularColor * t2.x + ( vec3( 1.0 ) - material.specularColor ) * t2.y ); - reflectedLight.directSpecular += lightColor * fresnel * LTC_Evaluate( normal, viewDir, position, mInv, rectCoords ); - reflectedLight.directDiffuse += lightColor * material.diffuseColor * LTC_Evaluate( normal, viewDir, position, mat3( 1.0 ), rectCoords ); - } -#endif -void RE_Direct_Physical( const in IncidentLight directLight, const in vec3 geometryPosition, const in vec3 geometryNormal, const in vec3 geometryViewDir, const in vec3 geometryClearcoatNormal, const in PhysicalMaterial material, inout ReflectedLight reflectedLight ) { - float dotNL = saturate( dot( geometryNormal, directLight.direction ) ); - vec3 irradiance = dotNL * directLight.color; - #ifdef USE_CLEARCOAT - float dotNLcc = saturate( dot( geometryClearcoatNormal, directLight.direction ) ); - vec3 ccIrradiance = dotNLcc * directLight.color; - clearcoatSpecularDirect += ccIrradiance * BRDF_GGX_Clearcoat( directLight.direction, geometryViewDir, geometryClearcoatNormal, material ); - #endif - #ifdef USE_SHEEN - sheenSpecularDirect += irradiance * BRDF_Sheen( directLight.direction, geometryViewDir, geometryNormal, material.sheenColor, material.sheenRoughness ); - #endif - reflectedLight.directSpecular += irradiance * BRDF_GGX( directLight.direction, geometryViewDir, geometryNormal, material ); - reflectedLight.directDiffuse += irradiance * BRDF_Lambert( material.diffuseColor ); -} -void RE_IndirectDiffuse_Physical( const in vec3 irradiance, const in vec3 geometryPosition, const in vec3 geometryNormal, const in vec3 geometryViewDir, const in vec3 geometryClearcoatNormal, const in PhysicalMaterial material, inout ReflectedLight reflectedLight ) { - reflectedLight.indirectDiffuse += irradiance * BRDF_Lambert( material.diffuseColor ); -} -void RE_IndirectSpecular_Physical( const in vec3 radiance, const in vec3 irradiance, const in vec3 clearcoatRadiance, const in vec3 geometryPosition, const in vec3 geometryNormal, const in vec3 geometryViewDir, const in vec3 geometryClearcoatNormal, const in PhysicalMaterial material, inout ReflectedLight reflectedLight) { - #ifdef USE_CLEARCOAT - clearcoatSpecularIndirect += clearcoatRadiance * EnvironmentBRDF( geometryClearcoatNormal, geometryViewDir, material.clearcoatF0, material.clearcoatF90, material.clearcoatRoughness ); - #endif - #ifdef USE_SHEEN - sheenSpecularIndirect += irradiance * material.sheenColor * IBLSheenBRDF( geometryNormal, geometryViewDir, material.sheenRoughness ); - #endif - vec3 singleScattering = vec3( 0.0 ); - vec3 multiScattering = vec3( 0.0 ); - vec3 cosineWeightedIrradiance = irradiance * RECIPROCAL_PI; - #ifdef USE_IRIDESCENCE - computeMultiscatteringIridescence( geometryNormal, geometryViewDir, material.specularColor, material.specularF90, material.iridescence, material.iridescenceFresnel, material.roughness, singleScattering, multiScattering ); - #else - computeMultiscattering( geometryNormal, geometryViewDir, material.specularColor, material.specularF90, material.roughness, singleScattering, multiScattering ); - #endif - vec3 totalScattering = singleScattering + multiScattering; - vec3 diffuse = material.diffuseColor * ( 1.0 - max( max( totalScattering.r, totalScattering.g ), totalScattering.b ) ); - reflectedLight.indirectSpecular += radiance * singleScattering; - reflectedLight.indirectSpecular += multiScattering * cosineWeightedIrradiance; - reflectedLight.indirectDiffuse += diffuse * cosineWeightedIrradiance; -} -#define RE_Direct RE_Direct_Physical -#define RE_Direct_RectArea RE_Direct_RectArea_Physical -#define RE_IndirectDiffuse RE_IndirectDiffuse_Physical -#define RE_IndirectSpecular RE_IndirectSpecular_Physical -float computeSpecularOcclusion( const in float dotNV, const in float ambientOcclusion, const in float roughness ) { - return saturate( pow( dotNV + ambientOcclusion, exp2( - 16.0 * roughness - 1.0 ) ) - 1.0 + ambientOcclusion ); -}`,ZG=` -vec3 geometryPosition = - vViewPosition; -vec3 geometryNormal = normal; -vec3 geometryViewDir = ( isOrthographic ) ? vec3( 0, 0, 1 ) : normalize( vViewPosition ); -vec3 geometryClearcoatNormal = vec3( 0.0 ); -#ifdef USE_CLEARCOAT - geometryClearcoatNormal = clearcoatNormal; -#endif -#ifdef USE_IRIDESCENCE - float dotNVi = saturate( dot( normal, geometryViewDir ) ); - if ( material.iridescenceThickness == 0.0 ) { - material.iridescence = 0.0; - } else { - material.iridescence = saturate( material.iridescence ); - } - if ( material.iridescence > 0.0 ) { - material.iridescenceFresnel = evalIridescence( 1.0, material.iridescenceIOR, dotNVi, material.iridescenceThickness, material.specularColor ); - material.iridescenceF0 = Schlick_to_F0( material.iridescenceFresnel, 1.0, dotNVi ); - } -#endif -IncidentLight directLight; -#if ( NUM_POINT_LIGHTS > 0 ) && defined( RE_Direct ) - PointLight pointLight; - #if defined( USE_SHADOWMAP ) && NUM_POINT_LIGHT_SHADOWS > 0 - PointLightShadow pointLightShadow; - #endif - #pragma unroll_loop_start - for ( int i = 0; i < NUM_POINT_LIGHTS; i ++ ) { - pointLight = pointLights[ i ]; - getPointLightInfo( pointLight, geometryPosition, directLight ); - #if defined( USE_SHADOWMAP ) && ( UNROLLED_LOOP_INDEX < NUM_POINT_LIGHT_SHADOWS ) - pointLightShadow = pointLightShadows[ i ]; - directLight.color *= ( directLight.visible && receiveShadow ) ? getPointShadow( pointShadowMap[ i ], pointLightShadow.shadowMapSize, pointLightShadow.shadowIntensity, pointLightShadow.shadowBias, pointLightShadow.shadowRadius, vPointShadowCoord[ i ], pointLightShadow.shadowCameraNear, pointLightShadow.shadowCameraFar ) : 1.0; - #endif - RE_Direct( directLight, geometryPosition, geometryNormal, geometryViewDir, geometryClearcoatNormal, material, reflectedLight ); - } - #pragma unroll_loop_end -#endif -#if ( NUM_SPOT_LIGHTS > 0 ) && defined( RE_Direct ) - SpotLight spotLight; - vec4 spotColor; - vec3 spotLightCoord; - bool inSpotLightMap; - #if defined( USE_SHADOWMAP ) && NUM_SPOT_LIGHT_SHADOWS > 0 - SpotLightShadow spotLightShadow; - #endif - #pragma unroll_loop_start - for ( int i = 0; i < NUM_SPOT_LIGHTS; i ++ ) { - spotLight = spotLights[ i ]; - getSpotLightInfo( spotLight, geometryPosition, directLight ); - #if ( UNROLLED_LOOP_INDEX < NUM_SPOT_LIGHT_SHADOWS_WITH_MAPS ) - #define SPOT_LIGHT_MAP_INDEX UNROLLED_LOOP_INDEX - #elif ( UNROLLED_LOOP_INDEX < NUM_SPOT_LIGHT_SHADOWS ) - #define SPOT_LIGHT_MAP_INDEX NUM_SPOT_LIGHT_MAPS - #else - #define SPOT_LIGHT_MAP_INDEX ( UNROLLED_LOOP_INDEX - NUM_SPOT_LIGHT_SHADOWS + NUM_SPOT_LIGHT_SHADOWS_WITH_MAPS ) - #endif - #if ( SPOT_LIGHT_MAP_INDEX < NUM_SPOT_LIGHT_MAPS ) - spotLightCoord = vSpotLightCoord[ i ].xyz / vSpotLightCoord[ i ].w; - inSpotLightMap = all( lessThan( abs( spotLightCoord * 2. - 1. ), vec3( 1.0 ) ) ); - spotColor = texture2D( spotLightMap[ SPOT_LIGHT_MAP_INDEX ], spotLightCoord.xy ); - directLight.color = inSpotLightMap ? directLight.color * spotColor.rgb : directLight.color; - #endif - #undef SPOT_LIGHT_MAP_INDEX - #if defined( USE_SHADOWMAP ) && ( UNROLLED_LOOP_INDEX < NUM_SPOT_LIGHT_SHADOWS ) - spotLightShadow = spotLightShadows[ i ]; - directLight.color *= ( directLight.visible && receiveShadow ) ? getShadow( spotShadowMap[ i ], spotLightShadow.shadowMapSize, spotLightShadow.shadowIntensity, spotLightShadow.shadowBias, spotLightShadow.shadowRadius, vSpotLightCoord[ i ] ) : 1.0; - #endif - RE_Direct( directLight, geometryPosition, geometryNormal, geometryViewDir, geometryClearcoatNormal, material, reflectedLight ); - } - #pragma unroll_loop_end -#endif -#if ( NUM_DIR_LIGHTS > 0 ) && defined( RE_Direct ) - DirectionalLight directionalLight; - #if defined( USE_SHADOWMAP ) && NUM_DIR_LIGHT_SHADOWS > 0 - DirectionalLightShadow directionalLightShadow; - #endif - #pragma unroll_loop_start - for ( int i = 0; i < NUM_DIR_LIGHTS; i ++ ) { - directionalLight = directionalLights[ i ]; - getDirectionalLightInfo( directionalLight, directLight ); - #if defined( USE_SHADOWMAP ) && ( UNROLLED_LOOP_INDEX < NUM_DIR_LIGHT_SHADOWS ) - directionalLightShadow = directionalLightShadows[ i ]; - directLight.color *= ( directLight.visible && receiveShadow ) ? getShadow( directionalShadowMap[ i ], directionalLightShadow.shadowMapSize, directionalLightShadow.shadowIntensity, directionalLightShadow.shadowBias, directionalLightShadow.shadowRadius, vDirectionalShadowCoord[ i ] ) : 1.0; - #endif - RE_Direct( directLight, geometryPosition, geometryNormal, geometryViewDir, geometryClearcoatNormal, material, reflectedLight ); - } - #pragma unroll_loop_end -#endif -#if ( NUM_RECT_AREA_LIGHTS > 0 ) && defined( RE_Direct_RectArea ) - RectAreaLight rectAreaLight; - #pragma unroll_loop_start - for ( int i = 0; i < NUM_RECT_AREA_LIGHTS; i ++ ) { - rectAreaLight = rectAreaLights[ i ]; - RE_Direct_RectArea( rectAreaLight, geometryPosition, geometryNormal, geometryViewDir, geometryClearcoatNormal, material, reflectedLight ); - } - #pragma unroll_loop_end -#endif -#if defined( RE_IndirectDiffuse ) - vec3 iblIrradiance = vec3( 0.0 ); - vec3 irradiance = getAmbientLightIrradiance( ambientLightColor ); - #if defined( USE_LIGHT_PROBES ) - irradiance += getLightProbeIrradiance( lightProbe, geometryNormal ); - #endif - #if ( NUM_HEMI_LIGHTS > 0 ) - #pragma unroll_loop_start - for ( int i = 0; i < NUM_HEMI_LIGHTS; i ++ ) { - irradiance += getHemisphereLightIrradiance( hemisphereLights[ i ], geometryNormal ); - } - #pragma unroll_loop_end - #endif -#endif -#if defined( RE_IndirectSpecular ) - vec3 radiance = vec3( 0.0 ); - vec3 clearcoatRadiance = vec3( 0.0 ); -#endif`,JG=`#if defined( RE_IndirectDiffuse ) - #ifdef USE_LIGHTMAP - vec4 lightMapTexel = texture2D( lightMap, vLightMapUv ); - vec3 lightMapIrradiance = lightMapTexel.rgb * lightMapIntensity; - irradiance += lightMapIrradiance; - #endif - #if defined( USE_ENVMAP ) && defined( STANDARD ) && defined( ENVMAP_TYPE_CUBE_UV ) - iblIrradiance += getIBLIrradiance( geometryNormal ); - #endif -#endif -#if defined( USE_ENVMAP ) && defined( RE_IndirectSpecular ) - #ifdef USE_ANISOTROPY - radiance += getIBLAnisotropyRadiance( geometryViewDir, geometryNormal, material.roughness, material.anisotropyB, material.anisotropy ); - #else - radiance += getIBLRadiance( geometryViewDir, geometryNormal, material.roughness ); - #endif - #ifdef USE_CLEARCOAT - clearcoatRadiance += getIBLRadiance( geometryViewDir, geometryClearcoatNormal, material.clearcoatRoughness ); - #endif -#endif`,eq=`#if defined( RE_IndirectDiffuse ) - RE_IndirectDiffuse( irradiance, geometryPosition, geometryNormal, geometryViewDir, geometryClearcoatNormal, material, reflectedLight ); -#endif -#if defined( RE_IndirectSpecular ) - RE_IndirectSpecular( radiance, iblIrradiance, clearcoatRadiance, geometryPosition, geometryNormal, geometryViewDir, geometryClearcoatNormal, material, reflectedLight ); -#endif`,tq=`#if defined( USE_LOGDEPTHBUF ) - gl_FragDepth = vIsPerspective == 0.0 ? gl_FragCoord.z : log2( vFragDepth ) * logDepthBufFC * 0.5; -#endif`,nq=`#if defined( USE_LOGDEPTHBUF ) - uniform float logDepthBufFC; - varying float vFragDepth; - varying float vIsPerspective; -#endif`,iq=`#ifdef USE_LOGDEPTHBUF - varying float vFragDepth; - varying float vIsPerspective; -#endif`,rq=`#ifdef USE_LOGDEPTHBUF - vFragDepth = 1.0 + gl_Position.w; - vIsPerspective = float( isPerspectiveMatrix( projectionMatrix ) ); -#endif`,sq=`#ifdef USE_MAP - vec4 sampledDiffuseColor = texture2D( map, vMapUv ); - #ifdef DECODE_VIDEO_TEXTURE - sampledDiffuseColor = sRGBTransferEOTF( sampledDiffuseColor ); - #endif - diffuseColor *= sampledDiffuseColor; -#endif`,aq=`#ifdef USE_MAP - uniform sampler2D map; -#endif`,oq=`#if defined( USE_MAP ) || defined( USE_ALPHAMAP ) - #if defined( USE_POINTS_UV ) - vec2 uv = vUv; - #else - vec2 uv = ( uvTransform * vec3( gl_PointCoord.x, 1.0 - gl_PointCoord.y, 1 ) ).xy; - #endif -#endif -#ifdef USE_MAP - diffuseColor *= texture2D( map, uv ); -#endif -#ifdef USE_ALPHAMAP - diffuseColor.a *= texture2D( alphaMap, uv ).g; -#endif`,lq=`#if defined( USE_POINTS_UV ) - varying vec2 vUv; -#else - #if defined( USE_MAP ) || defined( USE_ALPHAMAP ) - uniform mat3 uvTransform; - #endif -#endif -#ifdef USE_MAP - uniform sampler2D map; -#endif -#ifdef USE_ALPHAMAP - uniform sampler2D alphaMap; -#endif`,uq=`float metalnessFactor = metalness; -#ifdef USE_METALNESSMAP - vec4 texelMetalness = texture2D( metalnessMap, vMetalnessMapUv ); - metalnessFactor *= texelMetalness.b; -#endif`,cq=`#ifdef USE_METALNESSMAP - uniform sampler2D metalnessMap; -#endif`,hq=`#ifdef USE_INSTANCING_MORPH - float morphTargetInfluences[ MORPHTARGETS_COUNT ]; - float morphTargetBaseInfluence = texelFetch( morphTexture, ivec2( 0, gl_InstanceID ), 0 ).r; - for ( int i = 0; i < MORPHTARGETS_COUNT; i ++ ) { - morphTargetInfluences[i] = texelFetch( morphTexture, ivec2( i + 1, gl_InstanceID ), 0 ).r; - } -#endif`,fq=`#if defined( USE_MORPHCOLORS ) - vColor *= morphTargetBaseInfluence; - for ( int i = 0; i < MORPHTARGETS_COUNT; i ++ ) { - #if defined( USE_COLOR_ALPHA ) - if ( morphTargetInfluences[ i ] != 0.0 ) vColor += getMorph( gl_VertexID, i, 2 ) * morphTargetInfluences[ i ]; - #elif defined( USE_COLOR ) - if ( morphTargetInfluences[ i ] != 0.0 ) vColor += getMorph( gl_VertexID, i, 2 ).rgb * morphTargetInfluences[ i ]; - #endif - } -#endif`,Aq=`#ifdef USE_MORPHNORMALS - objectNormal *= morphTargetBaseInfluence; - for ( int i = 0; i < MORPHTARGETS_COUNT; i ++ ) { - if ( morphTargetInfluences[ i ] != 0.0 ) objectNormal += getMorph( gl_VertexID, i, 1 ).xyz * morphTargetInfluences[ i ]; - } -#endif`,dq=`#ifdef USE_MORPHTARGETS - #ifndef USE_INSTANCING_MORPH - uniform float morphTargetBaseInfluence; - uniform float morphTargetInfluences[ MORPHTARGETS_COUNT ]; - #endif - uniform sampler2DArray morphTargetsTexture; - uniform ivec2 morphTargetsTextureSize; - vec4 getMorph( const in int vertexIndex, const in int morphTargetIndex, const in int offset ) { - int texelIndex = vertexIndex * MORPHTARGETS_TEXTURE_STRIDE + offset; - int y = texelIndex / morphTargetsTextureSize.x; - int x = texelIndex - y * morphTargetsTextureSize.x; - ivec3 morphUV = ivec3( x, y, morphTargetIndex ); - return texelFetch( morphTargetsTexture, morphUV, 0 ); - } -#endif`,pq=`#ifdef USE_MORPHTARGETS - transformed *= morphTargetBaseInfluence; - for ( int i = 0; i < MORPHTARGETS_COUNT; i ++ ) { - if ( morphTargetInfluences[ i ] != 0.0 ) transformed += getMorph( gl_VertexID, i, 0 ).xyz * morphTargetInfluences[ i ]; - } -#endif`,mq=`float faceDirection = gl_FrontFacing ? 1.0 : - 1.0; -#ifdef FLAT_SHADED - vec3 fdx = dFdx( vViewPosition ); - vec3 fdy = dFdy( vViewPosition ); - vec3 normal = normalize( cross( fdx, fdy ) ); -#else - vec3 normal = normalize( vNormal ); - #ifdef DOUBLE_SIDED - normal *= faceDirection; - #endif -#endif -#if defined( USE_NORMALMAP_TANGENTSPACE ) || defined( USE_CLEARCOAT_NORMALMAP ) || defined( USE_ANISOTROPY ) - #ifdef USE_TANGENT - mat3 tbn = mat3( normalize( vTangent ), normalize( vBitangent ), normal ); - #else - mat3 tbn = getTangentFrame( - vViewPosition, normal, - #if defined( USE_NORMALMAP ) - vNormalMapUv - #elif defined( USE_CLEARCOAT_NORMALMAP ) - vClearcoatNormalMapUv - #else - vUv - #endif - ); - #endif - #if defined( DOUBLE_SIDED ) && ! defined( FLAT_SHADED ) - tbn[0] *= faceDirection; - tbn[1] *= faceDirection; - #endif -#endif -#ifdef USE_CLEARCOAT_NORMALMAP - #ifdef USE_TANGENT - mat3 tbn2 = mat3( normalize( vTangent ), normalize( vBitangent ), normal ); - #else - mat3 tbn2 = getTangentFrame( - vViewPosition, normal, vClearcoatNormalMapUv ); - #endif - #if defined( DOUBLE_SIDED ) && ! defined( FLAT_SHADED ) - tbn2[0] *= faceDirection; - tbn2[1] *= faceDirection; - #endif -#endif -vec3 nonPerturbedNormal = normal;`,gq=`#ifdef USE_NORMALMAP_OBJECTSPACE - normal = texture2D( normalMap, vNormalMapUv ).xyz * 2.0 - 1.0; - #ifdef FLIP_SIDED - normal = - normal; - #endif - #ifdef DOUBLE_SIDED - normal = normal * faceDirection; - #endif - normal = normalize( normalMatrix * normal ); -#elif defined( USE_NORMALMAP_TANGENTSPACE ) - vec3 mapN = texture2D( normalMap, vNormalMapUv ).xyz * 2.0 - 1.0; - mapN.xy *= normalScale; - normal = normalize( tbn * mapN ); -#elif defined( USE_BUMPMAP ) - normal = perturbNormalArb( - vViewPosition, normal, dHdxy_fwd(), faceDirection ); -#endif`,vq=`#ifndef FLAT_SHADED - varying vec3 vNormal; - #ifdef USE_TANGENT - varying vec3 vTangent; - varying vec3 vBitangent; - #endif -#endif`,_q=`#ifndef FLAT_SHADED - varying vec3 vNormal; - #ifdef USE_TANGENT - varying vec3 vTangent; - varying vec3 vBitangent; - #endif -#endif`,yq=`#ifndef FLAT_SHADED - vNormal = normalize( transformedNormal ); - #ifdef USE_TANGENT - vTangent = normalize( transformedTangent ); - vBitangent = normalize( cross( vNormal, vTangent ) * tangent.w ); - #endif -#endif`,xq=`#ifdef USE_NORMALMAP - uniform sampler2D normalMap; - uniform vec2 normalScale; -#endif -#ifdef USE_NORMALMAP_OBJECTSPACE - uniform mat3 normalMatrix; -#endif -#if ! defined ( USE_TANGENT ) && ( defined ( USE_NORMALMAP_TANGENTSPACE ) || defined ( USE_CLEARCOAT_NORMALMAP ) || defined( USE_ANISOTROPY ) ) - mat3 getTangentFrame( vec3 eye_pos, vec3 surf_norm, vec2 uv ) { - vec3 q0 = dFdx( eye_pos.xyz ); - vec3 q1 = dFdy( eye_pos.xyz ); - vec2 st0 = dFdx( uv.st ); - vec2 st1 = dFdy( uv.st ); - vec3 N = surf_norm; - vec3 q1perp = cross( q1, N ); - vec3 q0perp = cross( N, q0 ); - vec3 T = q1perp * st0.x + q0perp * st1.x; - vec3 B = q1perp * st0.y + q0perp * st1.y; - float det = max( dot( T, T ), dot( B, B ) ); - float scale = ( det == 0.0 ) ? 0.0 : inversesqrt( det ); - return mat3( T * scale, B * scale, N ); - } -#endif`,bq=`#ifdef USE_CLEARCOAT - vec3 clearcoatNormal = nonPerturbedNormal; -#endif`,Sq=`#ifdef USE_CLEARCOAT_NORMALMAP - vec3 clearcoatMapN = texture2D( clearcoatNormalMap, vClearcoatNormalMapUv ).xyz * 2.0 - 1.0; - clearcoatMapN.xy *= clearcoatNormalScale; - clearcoatNormal = normalize( tbn2 * clearcoatMapN ); -#endif`,Tq=`#ifdef USE_CLEARCOATMAP - uniform sampler2D clearcoatMap; -#endif -#ifdef USE_CLEARCOAT_NORMALMAP - uniform sampler2D clearcoatNormalMap; - uniform vec2 clearcoatNormalScale; -#endif -#ifdef USE_CLEARCOAT_ROUGHNESSMAP - uniform sampler2D clearcoatRoughnessMap; -#endif`,wq=`#ifdef USE_IRIDESCENCEMAP - uniform sampler2D iridescenceMap; -#endif -#ifdef USE_IRIDESCENCE_THICKNESSMAP - uniform sampler2D iridescenceThicknessMap; -#endif`,Mq=`#ifdef OPAQUE -diffuseColor.a = 1.0; -#endif -#ifdef USE_TRANSMISSION -diffuseColor.a *= material.transmissionAlpha; -#endif -gl_FragColor = vec4( outgoingLight, diffuseColor.a );`,Eq=`vec3 packNormalToRGB( const in vec3 normal ) { - return normalize( normal ) * 0.5 + 0.5; -} -vec3 unpackRGBToNormal( const in vec3 rgb ) { - return 2.0 * rgb.xyz - 1.0; -} -const float PackUpscale = 256. / 255.;const float UnpackDownscale = 255. / 256.;const float ShiftRight8 = 1. / 256.; -const float Inv255 = 1. / 255.; -const vec4 PackFactors = vec4( 1.0, 256.0, 256.0 * 256.0, 256.0 * 256.0 * 256.0 ); -const vec2 UnpackFactors2 = vec2( UnpackDownscale, 1.0 / PackFactors.g ); -const vec3 UnpackFactors3 = vec3( UnpackDownscale / PackFactors.rg, 1.0 / PackFactors.b ); -const vec4 UnpackFactors4 = vec4( UnpackDownscale / PackFactors.rgb, 1.0 / PackFactors.a ); -vec4 packDepthToRGBA( const in float v ) { - if( v <= 0.0 ) - return vec4( 0., 0., 0., 0. ); - if( v >= 1.0 ) - return vec4( 1., 1., 1., 1. ); - float vuf; - float af = modf( v * PackFactors.a, vuf ); - float bf = modf( vuf * ShiftRight8, vuf ); - float gf = modf( vuf * ShiftRight8, vuf ); - return vec4( vuf * Inv255, gf * PackUpscale, bf * PackUpscale, af ); -} -vec3 packDepthToRGB( const in float v ) { - if( v <= 0.0 ) - return vec3( 0., 0., 0. ); - if( v >= 1.0 ) - return vec3( 1., 1., 1. ); - float vuf; - float bf = modf( v * PackFactors.b, vuf ); - float gf = modf( vuf * ShiftRight8, vuf ); - return vec3( vuf * Inv255, gf * PackUpscale, bf ); -} -vec2 packDepthToRG( const in float v ) { - if( v <= 0.0 ) - return vec2( 0., 0. ); - if( v >= 1.0 ) - return vec2( 1., 1. ); - float vuf; - float gf = modf( v * 256., vuf ); - return vec2( vuf * Inv255, gf ); -} -float unpackRGBAToDepth( const in vec4 v ) { - return dot( v, UnpackFactors4 ); -} -float unpackRGBToDepth( const in vec3 v ) { - return dot( v, UnpackFactors3 ); -} -float unpackRGToDepth( const in vec2 v ) { - return v.r * UnpackFactors2.r + v.g * UnpackFactors2.g; -} -vec4 pack2HalfToRGBA( const in vec2 v ) { - vec4 r = vec4( v.x, fract( v.x * 255.0 ), v.y, fract( v.y * 255.0 ) ); - return vec4( r.x - r.y / 255.0, r.y, r.z - r.w / 255.0, r.w ); -} -vec2 unpackRGBATo2Half( const in vec4 v ) { - return vec2( v.x + ( v.y / 255.0 ), v.z + ( v.w / 255.0 ) ); -} -float viewZToOrthographicDepth( const in float viewZ, const in float near, const in float far ) { - return ( viewZ + near ) / ( near - far ); -} -float orthographicDepthToViewZ( const in float depth, const in float near, const in float far ) { - return depth * ( near - far ) - near; -} -float viewZToPerspectiveDepth( const in float viewZ, const in float near, const in float far ) { - return ( ( near + viewZ ) * far ) / ( ( far - near ) * viewZ ); -} -float perspectiveDepthToViewZ( const in float depth, const in float near, const in float far ) { - return ( near * far ) / ( ( far - near ) * depth - far ); -}`,Cq=`#ifdef PREMULTIPLIED_ALPHA - gl_FragColor.rgb *= gl_FragColor.a; -#endif`,Rq=`vec4 mvPosition = vec4( transformed, 1.0 ); -#ifdef USE_BATCHING - mvPosition = batchingMatrix * mvPosition; -#endif -#ifdef USE_INSTANCING - mvPosition = instanceMatrix * mvPosition; -#endif -mvPosition = modelViewMatrix * mvPosition; -gl_Position = projectionMatrix * mvPosition;`,Nq=`#ifdef DITHERING - gl_FragColor.rgb = dithering( gl_FragColor.rgb ); -#endif`,Dq=`#ifdef DITHERING - vec3 dithering( vec3 color ) { - float grid_position = rand( gl_FragCoord.xy ); - vec3 dither_shift_RGB = vec3( 0.25 / 255.0, -0.25 / 255.0, 0.25 / 255.0 ); - dither_shift_RGB = mix( 2.0 * dither_shift_RGB, -2.0 * dither_shift_RGB, grid_position ); - return color + dither_shift_RGB; - } -#endif`,Pq=`float roughnessFactor = roughness; -#ifdef USE_ROUGHNESSMAP - vec4 texelRoughness = texture2D( roughnessMap, vRoughnessMapUv ); - roughnessFactor *= texelRoughness.g; -#endif`,Lq=`#ifdef USE_ROUGHNESSMAP - uniform sampler2D roughnessMap; -#endif`,Uq=`#if NUM_SPOT_LIGHT_COORDS > 0 - varying vec4 vSpotLightCoord[ NUM_SPOT_LIGHT_COORDS ]; -#endif -#if NUM_SPOT_LIGHT_MAPS > 0 - uniform sampler2D spotLightMap[ NUM_SPOT_LIGHT_MAPS ]; -#endif -#ifdef USE_SHADOWMAP - #if NUM_DIR_LIGHT_SHADOWS > 0 - uniform sampler2D directionalShadowMap[ NUM_DIR_LIGHT_SHADOWS ]; - varying vec4 vDirectionalShadowCoord[ NUM_DIR_LIGHT_SHADOWS ]; - struct DirectionalLightShadow { - float shadowIntensity; - float shadowBias; - float shadowNormalBias; - float shadowRadius; - vec2 shadowMapSize; - }; - uniform DirectionalLightShadow directionalLightShadows[ NUM_DIR_LIGHT_SHADOWS ]; - #endif - #if NUM_SPOT_LIGHT_SHADOWS > 0 - uniform sampler2D spotShadowMap[ NUM_SPOT_LIGHT_SHADOWS ]; - struct SpotLightShadow { - float shadowIntensity; - float shadowBias; - float shadowNormalBias; - float shadowRadius; - vec2 shadowMapSize; - }; - uniform SpotLightShadow spotLightShadows[ NUM_SPOT_LIGHT_SHADOWS ]; - #endif - #if NUM_POINT_LIGHT_SHADOWS > 0 - uniform sampler2D pointShadowMap[ NUM_POINT_LIGHT_SHADOWS ]; - varying vec4 vPointShadowCoord[ NUM_POINT_LIGHT_SHADOWS ]; - struct PointLightShadow { - float shadowIntensity; - float shadowBias; - float shadowNormalBias; - float shadowRadius; - vec2 shadowMapSize; - float shadowCameraNear; - float shadowCameraFar; - }; - uniform PointLightShadow pointLightShadows[ NUM_POINT_LIGHT_SHADOWS ]; - #endif - float texture2DCompare( sampler2D depths, vec2 uv, float compare ) { - return step( compare, unpackRGBAToDepth( texture2D( depths, uv ) ) ); - } - vec2 texture2DDistribution( sampler2D shadow, vec2 uv ) { - return unpackRGBATo2Half( texture2D( shadow, uv ) ); - } - float VSMShadow (sampler2D shadow, vec2 uv, float compare ){ - float occlusion = 1.0; - vec2 distribution = texture2DDistribution( shadow, uv ); - float hard_shadow = step( compare , distribution.x ); - if (hard_shadow != 1.0 ) { - float distance = compare - distribution.x ; - float variance = max( 0.00000, distribution.y * distribution.y ); - float softness_probability = variance / (variance + distance * distance ); softness_probability = clamp( ( softness_probability - 0.3 ) / ( 0.95 - 0.3 ), 0.0, 1.0 ); occlusion = clamp( max( hard_shadow, softness_probability ), 0.0, 1.0 ); - } - return occlusion; - } - float getShadow( sampler2D shadowMap, vec2 shadowMapSize, float shadowIntensity, float shadowBias, float shadowRadius, vec4 shadowCoord ) { - float shadow = 1.0; - shadowCoord.xyz /= shadowCoord.w; - shadowCoord.z += shadowBias; - bool inFrustum = shadowCoord.x >= 0.0 && shadowCoord.x <= 1.0 && shadowCoord.y >= 0.0 && shadowCoord.y <= 1.0; - bool frustumTest = inFrustum && shadowCoord.z <= 1.0; - if ( frustumTest ) { - #if defined( SHADOWMAP_TYPE_PCF ) - vec2 texelSize = vec2( 1.0 ) / shadowMapSize; - float dx0 = - texelSize.x * shadowRadius; - float dy0 = - texelSize.y * shadowRadius; - float dx1 = + texelSize.x * shadowRadius; - float dy1 = + texelSize.y * shadowRadius; - float dx2 = dx0 / 2.0; - float dy2 = dy0 / 2.0; - float dx3 = dx1 / 2.0; - float dy3 = dy1 / 2.0; - shadow = ( - texture2DCompare( shadowMap, shadowCoord.xy + vec2( dx0, dy0 ), shadowCoord.z ) + - texture2DCompare( shadowMap, shadowCoord.xy + vec2( 0.0, dy0 ), shadowCoord.z ) + - texture2DCompare( shadowMap, shadowCoord.xy + vec2( dx1, dy0 ), shadowCoord.z ) + - texture2DCompare( shadowMap, shadowCoord.xy + vec2( dx2, dy2 ), shadowCoord.z ) + - texture2DCompare( shadowMap, shadowCoord.xy + vec2( 0.0, dy2 ), shadowCoord.z ) + - texture2DCompare( shadowMap, shadowCoord.xy + vec2( dx3, dy2 ), shadowCoord.z ) + - texture2DCompare( shadowMap, shadowCoord.xy + vec2( dx0, 0.0 ), shadowCoord.z ) + - texture2DCompare( shadowMap, shadowCoord.xy + vec2( dx2, 0.0 ), shadowCoord.z ) + - texture2DCompare( shadowMap, shadowCoord.xy, shadowCoord.z ) + - texture2DCompare( shadowMap, shadowCoord.xy + vec2( dx3, 0.0 ), shadowCoord.z ) + - texture2DCompare( shadowMap, shadowCoord.xy + vec2( dx1, 0.0 ), shadowCoord.z ) + - texture2DCompare( shadowMap, shadowCoord.xy + vec2( dx2, dy3 ), shadowCoord.z ) + - texture2DCompare( shadowMap, shadowCoord.xy + vec2( 0.0, dy3 ), shadowCoord.z ) + - texture2DCompare( shadowMap, shadowCoord.xy + vec2( dx3, dy3 ), shadowCoord.z ) + - texture2DCompare( shadowMap, shadowCoord.xy + vec2( dx0, dy1 ), shadowCoord.z ) + - texture2DCompare( shadowMap, shadowCoord.xy + vec2( 0.0, dy1 ), shadowCoord.z ) + - texture2DCompare( shadowMap, shadowCoord.xy + vec2( dx1, dy1 ), shadowCoord.z ) - ) * ( 1.0 / 17.0 ); - #elif defined( SHADOWMAP_TYPE_PCF_SOFT ) - vec2 texelSize = vec2( 1.0 ) / shadowMapSize; - float dx = texelSize.x; - float dy = texelSize.y; - vec2 uv = shadowCoord.xy; - vec2 f = fract( uv * shadowMapSize + 0.5 ); - uv -= f * texelSize; - shadow = ( - texture2DCompare( shadowMap, uv, shadowCoord.z ) + - texture2DCompare( shadowMap, uv + vec2( dx, 0.0 ), shadowCoord.z ) + - texture2DCompare( shadowMap, uv + vec2( 0.0, dy ), shadowCoord.z ) + - texture2DCompare( shadowMap, uv + texelSize, shadowCoord.z ) + - mix( texture2DCompare( shadowMap, uv + vec2( -dx, 0.0 ), shadowCoord.z ), - texture2DCompare( shadowMap, uv + vec2( 2.0 * dx, 0.0 ), shadowCoord.z ), - f.x ) + - mix( texture2DCompare( shadowMap, uv + vec2( -dx, dy ), shadowCoord.z ), - texture2DCompare( shadowMap, uv + vec2( 2.0 * dx, dy ), shadowCoord.z ), - f.x ) + - mix( texture2DCompare( shadowMap, uv + vec2( 0.0, -dy ), shadowCoord.z ), - texture2DCompare( shadowMap, uv + vec2( 0.0, 2.0 * dy ), shadowCoord.z ), - f.y ) + - mix( texture2DCompare( shadowMap, uv + vec2( dx, -dy ), shadowCoord.z ), - texture2DCompare( shadowMap, uv + vec2( dx, 2.0 * dy ), shadowCoord.z ), - f.y ) + - mix( mix( texture2DCompare( shadowMap, uv + vec2( -dx, -dy ), shadowCoord.z ), - texture2DCompare( shadowMap, uv + vec2( 2.0 * dx, -dy ), shadowCoord.z ), - f.x ), - mix( texture2DCompare( shadowMap, uv + vec2( -dx, 2.0 * dy ), shadowCoord.z ), - texture2DCompare( shadowMap, uv + vec2( 2.0 * dx, 2.0 * dy ), shadowCoord.z ), - f.x ), - f.y ) - ) * ( 1.0 / 9.0 ); - #elif defined( SHADOWMAP_TYPE_VSM ) - shadow = VSMShadow( shadowMap, shadowCoord.xy, shadowCoord.z ); - #else - shadow = texture2DCompare( shadowMap, shadowCoord.xy, shadowCoord.z ); - #endif - } - return mix( 1.0, shadow, shadowIntensity ); - } - vec2 cubeToUV( vec3 v, float texelSizeY ) { - vec3 absV = abs( v ); - float scaleToCube = 1.0 / max( absV.x, max( absV.y, absV.z ) ); - absV *= scaleToCube; - v *= scaleToCube * ( 1.0 - 2.0 * texelSizeY ); - vec2 planar = v.xy; - float almostATexel = 1.5 * texelSizeY; - float almostOne = 1.0 - almostATexel; - if ( absV.z >= almostOne ) { - if ( v.z > 0.0 ) - planar.x = 4.0 - v.x; - } else if ( absV.x >= almostOne ) { - float signX = sign( v.x ); - planar.x = v.z * signX + 2.0 * signX; - } else if ( absV.y >= almostOne ) { - float signY = sign( v.y ); - planar.x = v.x + 2.0 * signY + 2.0; - planar.y = v.z * signY - 2.0; - } - return vec2( 0.125, 0.25 ) * planar + vec2( 0.375, 0.75 ); - } - float getPointShadow( sampler2D shadowMap, vec2 shadowMapSize, float shadowIntensity, float shadowBias, float shadowRadius, vec4 shadowCoord, float shadowCameraNear, float shadowCameraFar ) { - float shadow = 1.0; - vec3 lightToPosition = shadowCoord.xyz; - - float lightToPositionLength = length( lightToPosition ); - if ( lightToPositionLength - shadowCameraFar <= 0.0 && lightToPositionLength - shadowCameraNear >= 0.0 ) { - float dp = ( lightToPositionLength - shadowCameraNear ) / ( shadowCameraFar - shadowCameraNear ); dp += shadowBias; - vec3 bd3D = normalize( lightToPosition ); - vec2 texelSize = vec2( 1.0 ) / ( shadowMapSize * vec2( 4.0, 2.0 ) ); - #if defined( SHADOWMAP_TYPE_PCF ) || defined( SHADOWMAP_TYPE_PCF_SOFT ) || defined( SHADOWMAP_TYPE_VSM ) - vec2 offset = vec2( - 1, 1 ) * shadowRadius * texelSize.y; - shadow = ( - texture2DCompare( shadowMap, cubeToUV( bd3D + offset.xyy, texelSize.y ), dp ) + - texture2DCompare( shadowMap, cubeToUV( bd3D + offset.yyy, texelSize.y ), dp ) + - texture2DCompare( shadowMap, cubeToUV( bd3D + offset.xyx, texelSize.y ), dp ) + - texture2DCompare( shadowMap, cubeToUV( bd3D + offset.yyx, texelSize.y ), dp ) + - texture2DCompare( shadowMap, cubeToUV( bd3D, texelSize.y ), dp ) + - texture2DCompare( shadowMap, cubeToUV( bd3D + offset.xxy, texelSize.y ), dp ) + - texture2DCompare( shadowMap, cubeToUV( bd3D + offset.yxy, texelSize.y ), dp ) + - texture2DCompare( shadowMap, cubeToUV( bd3D + offset.xxx, texelSize.y ), dp ) + - texture2DCompare( shadowMap, cubeToUV( bd3D + offset.yxx, texelSize.y ), dp ) - ) * ( 1.0 / 9.0 ); - #else - shadow = texture2DCompare( shadowMap, cubeToUV( bd3D, texelSize.y ), dp ); - #endif - } - return mix( 1.0, shadow, shadowIntensity ); - } -#endif`,Bq=`#if NUM_SPOT_LIGHT_COORDS > 0 - uniform mat4 spotLightMatrix[ NUM_SPOT_LIGHT_COORDS ]; - varying vec4 vSpotLightCoord[ NUM_SPOT_LIGHT_COORDS ]; -#endif -#ifdef USE_SHADOWMAP - #if NUM_DIR_LIGHT_SHADOWS > 0 - uniform mat4 directionalShadowMatrix[ NUM_DIR_LIGHT_SHADOWS ]; - varying vec4 vDirectionalShadowCoord[ NUM_DIR_LIGHT_SHADOWS ]; - struct DirectionalLightShadow { - float shadowIntensity; - float shadowBias; - float shadowNormalBias; - float shadowRadius; - vec2 shadowMapSize; - }; - uniform DirectionalLightShadow directionalLightShadows[ NUM_DIR_LIGHT_SHADOWS ]; - #endif - #if NUM_SPOT_LIGHT_SHADOWS > 0 - struct SpotLightShadow { - float shadowIntensity; - float shadowBias; - float shadowNormalBias; - float shadowRadius; - vec2 shadowMapSize; - }; - uniform SpotLightShadow spotLightShadows[ NUM_SPOT_LIGHT_SHADOWS ]; - #endif - #if NUM_POINT_LIGHT_SHADOWS > 0 - uniform mat4 pointShadowMatrix[ NUM_POINT_LIGHT_SHADOWS ]; - varying vec4 vPointShadowCoord[ NUM_POINT_LIGHT_SHADOWS ]; - struct PointLightShadow { - float shadowIntensity; - float shadowBias; - float shadowNormalBias; - float shadowRadius; - vec2 shadowMapSize; - float shadowCameraNear; - float shadowCameraFar; - }; - uniform PointLightShadow pointLightShadows[ NUM_POINT_LIGHT_SHADOWS ]; - #endif -#endif`,Oq=`#if ( defined( USE_SHADOWMAP ) && ( NUM_DIR_LIGHT_SHADOWS > 0 || NUM_POINT_LIGHT_SHADOWS > 0 ) ) || ( NUM_SPOT_LIGHT_COORDS > 0 ) - vec3 shadowWorldNormal = inverseTransformDirection( transformedNormal, viewMatrix ); - vec4 shadowWorldPosition; -#endif -#if defined( USE_SHADOWMAP ) - #if NUM_DIR_LIGHT_SHADOWS > 0 - #pragma unroll_loop_start - for ( int i = 0; i < NUM_DIR_LIGHT_SHADOWS; i ++ ) { - shadowWorldPosition = worldPosition + vec4( shadowWorldNormal * directionalLightShadows[ i ].shadowNormalBias, 0 ); - vDirectionalShadowCoord[ i ] = directionalShadowMatrix[ i ] * shadowWorldPosition; - } - #pragma unroll_loop_end - #endif - #if NUM_POINT_LIGHT_SHADOWS > 0 - #pragma unroll_loop_start - for ( int i = 0; i < NUM_POINT_LIGHT_SHADOWS; i ++ ) { - shadowWorldPosition = worldPosition + vec4( shadowWorldNormal * pointLightShadows[ i ].shadowNormalBias, 0 ); - vPointShadowCoord[ i ] = pointShadowMatrix[ i ] * shadowWorldPosition; - } - #pragma unroll_loop_end - #endif -#endif -#if NUM_SPOT_LIGHT_COORDS > 0 - #pragma unroll_loop_start - for ( int i = 0; i < NUM_SPOT_LIGHT_COORDS; i ++ ) { - shadowWorldPosition = worldPosition; - #if ( defined( USE_SHADOWMAP ) && UNROLLED_LOOP_INDEX < NUM_SPOT_LIGHT_SHADOWS ) - shadowWorldPosition.xyz += shadowWorldNormal * spotLightShadows[ i ].shadowNormalBias; - #endif - vSpotLightCoord[ i ] = spotLightMatrix[ i ] * shadowWorldPosition; - } - #pragma unroll_loop_end -#endif`,Iq=`float getShadowMask() { - float shadow = 1.0; - #ifdef USE_SHADOWMAP - #if NUM_DIR_LIGHT_SHADOWS > 0 - DirectionalLightShadow directionalLight; - #pragma unroll_loop_start - for ( int i = 0; i < NUM_DIR_LIGHT_SHADOWS; i ++ ) { - directionalLight = directionalLightShadows[ i ]; - shadow *= receiveShadow ? getShadow( directionalShadowMap[ i ], directionalLight.shadowMapSize, directionalLight.shadowIntensity, directionalLight.shadowBias, directionalLight.shadowRadius, vDirectionalShadowCoord[ i ] ) : 1.0; - } - #pragma unroll_loop_end - #endif - #if NUM_SPOT_LIGHT_SHADOWS > 0 - SpotLightShadow spotLight; - #pragma unroll_loop_start - for ( int i = 0; i < NUM_SPOT_LIGHT_SHADOWS; i ++ ) { - spotLight = spotLightShadows[ i ]; - shadow *= receiveShadow ? getShadow( spotShadowMap[ i ], spotLight.shadowMapSize, spotLight.shadowIntensity, spotLight.shadowBias, spotLight.shadowRadius, vSpotLightCoord[ i ] ) : 1.0; - } - #pragma unroll_loop_end - #endif - #if NUM_POINT_LIGHT_SHADOWS > 0 - PointLightShadow pointLight; - #pragma unroll_loop_start - for ( int i = 0; i < NUM_POINT_LIGHT_SHADOWS; i ++ ) { - pointLight = pointLightShadows[ i ]; - shadow *= receiveShadow ? getPointShadow( pointShadowMap[ i ], pointLight.shadowMapSize, pointLight.shadowIntensity, pointLight.shadowBias, pointLight.shadowRadius, vPointShadowCoord[ i ], pointLight.shadowCameraNear, pointLight.shadowCameraFar ) : 1.0; - } - #pragma unroll_loop_end - #endif - #endif - return shadow; -}`,Fq=`#ifdef USE_SKINNING - mat4 boneMatX = getBoneMatrix( skinIndex.x ); - mat4 boneMatY = getBoneMatrix( skinIndex.y ); - mat4 boneMatZ = getBoneMatrix( skinIndex.z ); - mat4 boneMatW = getBoneMatrix( skinIndex.w ); -#endif`,kq=`#ifdef USE_SKINNING - uniform mat4 bindMatrix; - uniform mat4 bindMatrixInverse; - uniform highp sampler2D boneTexture; - mat4 getBoneMatrix( const in float i ) { - int size = textureSize( boneTexture, 0 ).x; - int j = int( i ) * 4; - int x = j % size; - int y = j / size; - vec4 v1 = texelFetch( boneTexture, ivec2( x, y ), 0 ); - vec4 v2 = texelFetch( boneTexture, ivec2( x + 1, y ), 0 ); - vec4 v3 = texelFetch( boneTexture, ivec2( x + 2, y ), 0 ); - vec4 v4 = texelFetch( boneTexture, ivec2( x + 3, y ), 0 ); - return mat4( v1, v2, v3, v4 ); - } -#endif`,zq=`#ifdef USE_SKINNING - vec4 skinVertex = bindMatrix * vec4( transformed, 1.0 ); - vec4 skinned = vec4( 0.0 ); - skinned += boneMatX * skinVertex * skinWeight.x; - skinned += boneMatY * skinVertex * skinWeight.y; - skinned += boneMatZ * skinVertex * skinWeight.z; - skinned += boneMatW * skinVertex * skinWeight.w; - transformed = ( bindMatrixInverse * skinned ).xyz; -#endif`,Gq=`#ifdef USE_SKINNING - mat4 skinMatrix = mat4( 0.0 ); - skinMatrix += skinWeight.x * boneMatX; - skinMatrix += skinWeight.y * boneMatY; - skinMatrix += skinWeight.z * boneMatZ; - skinMatrix += skinWeight.w * boneMatW; - skinMatrix = bindMatrixInverse * skinMatrix * bindMatrix; - objectNormal = vec4( skinMatrix * vec4( objectNormal, 0.0 ) ).xyz; - #ifdef USE_TANGENT - objectTangent = vec4( skinMatrix * vec4( objectTangent, 0.0 ) ).xyz; - #endif -#endif`,qq=`float specularStrength; -#ifdef USE_SPECULARMAP - vec4 texelSpecular = texture2D( specularMap, vSpecularMapUv ); - specularStrength = texelSpecular.r; -#else - specularStrength = 1.0; -#endif`,Vq=`#ifdef USE_SPECULARMAP - uniform sampler2D specularMap; -#endif`,Hq=`#if defined( TONE_MAPPING ) - gl_FragColor.rgb = toneMapping( gl_FragColor.rgb ); -#endif`,jq=`#ifndef saturate -#define saturate( a ) clamp( a, 0.0, 1.0 ) -#endif -uniform float toneMappingExposure; -vec3 LinearToneMapping( vec3 color ) { - return saturate( toneMappingExposure * color ); -} -vec3 ReinhardToneMapping( vec3 color ) { - color *= toneMappingExposure; - return saturate( color / ( vec3( 1.0 ) + color ) ); -} -vec3 CineonToneMapping( vec3 color ) { - color *= toneMappingExposure; - color = max( vec3( 0.0 ), color - 0.004 ); - return pow( ( color * ( 6.2 * color + 0.5 ) ) / ( color * ( 6.2 * color + 1.7 ) + 0.06 ), vec3( 2.2 ) ); -} -vec3 RRTAndODTFit( vec3 v ) { - vec3 a = v * ( v + 0.0245786 ) - 0.000090537; - vec3 b = v * ( 0.983729 * v + 0.4329510 ) + 0.238081; - return a / b; -} -vec3 ACESFilmicToneMapping( vec3 color ) { - const mat3 ACESInputMat = mat3( - vec3( 0.59719, 0.07600, 0.02840 ), vec3( 0.35458, 0.90834, 0.13383 ), - vec3( 0.04823, 0.01566, 0.83777 ) - ); - const mat3 ACESOutputMat = mat3( - vec3( 1.60475, -0.10208, -0.00327 ), vec3( -0.53108, 1.10813, -0.07276 ), - vec3( -0.07367, -0.00605, 1.07602 ) - ); - color *= toneMappingExposure / 0.6; - color = ACESInputMat * color; - color = RRTAndODTFit( color ); - color = ACESOutputMat * color; - return saturate( color ); -} -const mat3 LINEAR_REC2020_TO_LINEAR_SRGB = mat3( - vec3( 1.6605, - 0.1246, - 0.0182 ), - vec3( - 0.5876, 1.1329, - 0.1006 ), - vec3( - 0.0728, - 0.0083, 1.1187 ) -); -const mat3 LINEAR_SRGB_TO_LINEAR_REC2020 = mat3( - vec3( 0.6274, 0.0691, 0.0164 ), - vec3( 0.3293, 0.9195, 0.0880 ), - vec3( 0.0433, 0.0113, 0.8956 ) -); -vec3 agxDefaultContrastApprox( vec3 x ) { - vec3 x2 = x * x; - vec3 x4 = x2 * x2; - return + 15.5 * x4 * x2 - - 40.14 * x4 * x - + 31.96 * x4 - - 6.868 * x2 * x - + 0.4298 * x2 - + 0.1191 * x - - 0.00232; -} -vec3 AgXToneMapping( vec3 color ) { - const mat3 AgXInsetMatrix = mat3( - vec3( 0.856627153315983, 0.137318972929847, 0.11189821299995 ), - vec3( 0.0951212405381588, 0.761241990602591, 0.0767994186031903 ), - vec3( 0.0482516061458583, 0.101439036467562, 0.811302368396859 ) - ); - const mat3 AgXOutsetMatrix = mat3( - vec3( 1.1271005818144368, - 0.1413297634984383, - 0.14132976349843826 ), - vec3( - 0.11060664309660323, 1.157823702216272, - 0.11060664309660294 ), - vec3( - 0.016493938717834573, - 0.016493938717834257, 1.2519364065950405 ) - ); - const float AgxMinEv = - 12.47393; const float AgxMaxEv = 4.026069; - color *= toneMappingExposure; - color = LINEAR_SRGB_TO_LINEAR_REC2020 * color; - color = AgXInsetMatrix * color; - color = max( color, 1e-10 ); color = log2( color ); - color = ( color - AgxMinEv ) / ( AgxMaxEv - AgxMinEv ); - color = clamp( color, 0.0, 1.0 ); - color = agxDefaultContrastApprox( color ); - color = AgXOutsetMatrix * color; - color = pow( max( vec3( 0.0 ), color ), vec3( 2.2 ) ); - color = LINEAR_REC2020_TO_LINEAR_SRGB * color; - color = clamp( color, 0.0, 1.0 ); - return color; -} -vec3 NeutralToneMapping( vec3 color ) { - const float StartCompression = 0.8 - 0.04; - const float Desaturation = 0.15; - color *= toneMappingExposure; - float x = min( color.r, min( color.g, color.b ) ); - float offset = x < 0.08 ? x - 6.25 * x * x : 0.04; - color -= offset; - float peak = max( color.r, max( color.g, color.b ) ); - if ( peak < StartCompression ) return color; - float d = 1. - StartCompression; - float newPeak = 1. - d * d / ( peak + d - StartCompression ); - color *= newPeak / peak; - float g = 1. - 1. / ( Desaturation * ( peak - newPeak ) + 1. ); - return mix( color, vec3( newPeak ), g ); -} -vec3 CustomToneMapping( vec3 color ) { return color; }`,Wq=`#ifdef USE_TRANSMISSION - material.transmission = transmission; - material.transmissionAlpha = 1.0; - material.thickness = thickness; - material.attenuationDistance = attenuationDistance; - material.attenuationColor = attenuationColor; - #ifdef USE_TRANSMISSIONMAP - material.transmission *= texture2D( transmissionMap, vTransmissionMapUv ).r; - #endif - #ifdef USE_THICKNESSMAP - material.thickness *= texture2D( thicknessMap, vThicknessMapUv ).g; - #endif - vec3 pos = vWorldPosition; - vec3 v = normalize( cameraPosition - pos ); - vec3 n = inverseTransformDirection( normal, viewMatrix ); - vec4 transmitted = getIBLVolumeRefraction( - n, v, material.roughness, material.diffuseColor, material.specularColor, material.specularF90, - pos, modelMatrix, viewMatrix, projectionMatrix, material.dispersion, material.ior, material.thickness, - material.attenuationColor, material.attenuationDistance ); - material.transmissionAlpha = mix( material.transmissionAlpha, transmitted.a, material.transmission ); - totalDiffuse = mix( totalDiffuse, transmitted.rgb, material.transmission ); -#endif`,$q=`#ifdef USE_TRANSMISSION - uniform float transmission; - uniform float thickness; - uniform float attenuationDistance; - uniform vec3 attenuationColor; - #ifdef USE_TRANSMISSIONMAP - uniform sampler2D transmissionMap; - #endif - #ifdef USE_THICKNESSMAP - uniform sampler2D thicknessMap; - #endif - uniform vec2 transmissionSamplerSize; - uniform sampler2D transmissionSamplerMap; - uniform mat4 modelMatrix; - uniform mat4 projectionMatrix; - varying vec3 vWorldPosition; - float w0( float a ) { - return ( 1.0 / 6.0 ) * ( a * ( a * ( - a + 3.0 ) - 3.0 ) + 1.0 ); - } - float w1( float a ) { - return ( 1.0 / 6.0 ) * ( a * a * ( 3.0 * a - 6.0 ) + 4.0 ); - } - float w2( float a ){ - return ( 1.0 / 6.0 ) * ( a * ( a * ( - 3.0 * a + 3.0 ) + 3.0 ) + 1.0 ); - } - float w3( float a ) { - return ( 1.0 / 6.0 ) * ( a * a * a ); - } - float g0( float a ) { - return w0( a ) + w1( a ); - } - float g1( float a ) { - return w2( a ) + w3( a ); - } - float h0( float a ) { - return - 1.0 + w1( a ) / ( w0( a ) + w1( a ) ); - } - float h1( float a ) { - return 1.0 + w3( a ) / ( w2( a ) + w3( a ) ); - } - vec4 bicubic( sampler2D tex, vec2 uv, vec4 texelSize, float lod ) { - uv = uv * texelSize.zw + 0.5; - vec2 iuv = floor( uv ); - vec2 fuv = fract( uv ); - float g0x = g0( fuv.x ); - float g1x = g1( fuv.x ); - float h0x = h0( fuv.x ); - float h1x = h1( fuv.x ); - float h0y = h0( fuv.y ); - float h1y = h1( fuv.y ); - vec2 p0 = ( vec2( iuv.x + h0x, iuv.y + h0y ) - 0.5 ) * texelSize.xy; - vec2 p1 = ( vec2( iuv.x + h1x, iuv.y + h0y ) - 0.5 ) * texelSize.xy; - vec2 p2 = ( vec2( iuv.x + h0x, iuv.y + h1y ) - 0.5 ) * texelSize.xy; - vec2 p3 = ( vec2( iuv.x + h1x, iuv.y + h1y ) - 0.5 ) * texelSize.xy; - return g0( fuv.y ) * ( g0x * textureLod( tex, p0, lod ) + g1x * textureLod( tex, p1, lod ) ) + - g1( fuv.y ) * ( g0x * textureLod( tex, p2, lod ) + g1x * textureLod( tex, p3, lod ) ); - } - vec4 textureBicubic( sampler2D sampler, vec2 uv, float lod ) { - vec2 fLodSize = vec2( textureSize( sampler, int( lod ) ) ); - vec2 cLodSize = vec2( textureSize( sampler, int( lod + 1.0 ) ) ); - vec2 fLodSizeInv = 1.0 / fLodSize; - vec2 cLodSizeInv = 1.0 / cLodSize; - vec4 fSample = bicubic( sampler, uv, vec4( fLodSizeInv, fLodSize ), floor( lod ) ); - vec4 cSample = bicubic( sampler, uv, vec4( cLodSizeInv, cLodSize ), ceil( lod ) ); - return mix( fSample, cSample, fract( lod ) ); - } - vec3 getVolumeTransmissionRay( const in vec3 n, const in vec3 v, const in float thickness, const in float ior, const in mat4 modelMatrix ) { - vec3 refractionVector = refract( - v, normalize( n ), 1.0 / ior ); - vec3 modelScale; - modelScale.x = length( vec3( modelMatrix[ 0 ].xyz ) ); - modelScale.y = length( vec3( modelMatrix[ 1 ].xyz ) ); - modelScale.z = length( vec3( modelMatrix[ 2 ].xyz ) ); - return normalize( refractionVector ) * thickness * modelScale; - } - float applyIorToRoughness( const in float roughness, const in float ior ) { - return roughness * clamp( ior * 2.0 - 2.0, 0.0, 1.0 ); - } - vec4 getTransmissionSample( const in vec2 fragCoord, const in float roughness, const in float ior ) { - float lod = log2( transmissionSamplerSize.x ) * applyIorToRoughness( roughness, ior ); - return textureBicubic( transmissionSamplerMap, fragCoord.xy, lod ); - } - vec3 volumeAttenuation( const in float transmissionDistance, const in vec3 attenuationColor, const in float attenuationDistance ) { - if ( isinf( attenuationDistance ) ) { - return vec3( 1.0 ); - } else { - vec3 attenuationCoefficient = -log( attenuationColor ) / attenuationDistance; - vec3 transmittance = exp( - attenuationCoefficient * transmissionDistance ); return transmittance; - } - } - vec4 getIBLVolumeRefraction( const in vec3 n, const in vec3 v, const in float roughness, const in vec3 diffuseColor, - const in vec3 specularColor, const in float specularF90, const in vec3 position, const in mat4 modelMatrix, - const in mat4 viewMatrix, const in mat4 projMatrix, const in float dispersion, const in float ior, const in float thickness, - const in vec3 attenuationColor, const in float attenuationDistance ) { - vec4 transmittedLight; - vec3 transmittance; - #ifdef USE_DISPERSION - float halfSpread = ( ior - 1.0 ) * 0.025 * dispersion; - vec3 iors = vec3( ior - halfSpread, ior, ior + halfSpread ); - for ( int i = 0; i < 3; i ++ ) { - vec3 transmissionRay = getVolumeTransmissionRay( n, v, thickness, iors[ i ], modelMatrix ); - vec3 refractedRayExit = position + transmissionRay; - vec4 ndcPos = projMatrix * viewMatrix * vec4( refractedRayExit, 1.0 ); - vec2 refractionCoords = ndcPos.xy / ndcPos.w; - refractionCoords += 1.0; - refractionCoords /= 2.0; - vec4 transmissionSample = getTransmissionSample( refractionCoords, roughness, iors[ i ] ); - transmittedLight[ i ] = transmissionSample[ i ]; - transmittedLight.a += transmissionSample.a; - transmittance[ i ] = diffuseColor[ i ] * volumeAttenuation( length( transmissionRay ), attenuationColor, attenuationDistance )[ i ]; - } - transmittedLight.a /= 3.0; - #else - vec3 transmissionRay = getVolumeTransmissionRay( n, v, thickness, ior, modelMatrix ); - vec3 refractedRayExit = position + transmissionRay; - vec4 ndcPos = projMatrix * viewMatrix * vec4( refractedRayExit, 1.0 ); - vec2 refractionCoords = ndcPos.xy / ndcPos.w; - refractionCoords += 1.0; - refractionCoords /= 2.0; - transmittedLight = getTransmissionSample( refractionCoords, roughness, ior ); - transmittance = diffuseColor * volumeAttenuation( length( transmissionRay ), attenuationColor, attenuationDistance ); - #endif - vec3 attenuatedColor = transmittance * transmittedLight.rgb; - vec3 F = EnvironmentBRDF( n, v, specularColor, specularF90, roughness ); - float transmittanceFactor = ( transmittance.r + transmittance.g + transmittance.b ) / 3.0; - return vec4( ( 1.0 - F ) * attenuatedColor, 1.0 - ( 1.0 - transmittedLight.a ) * transmittanceFactor ); - } -#endif`,Xq=`#if defined( USE_UV ) || defined( USE_ANISOTROPY ) - varying vec2 vUv; -#endif -#ifdef USE_MAP - varying vec2 vMapUv; -#endif -#ifdef USE_ALPHAMAP - varying vec2 vAlphaMapUv; -#endif -#ifdef USE_LIGHTMAP - varying vec2 vLightMapUv; -#endif -#ifdef USE_AOMAP - varying vec2 vAoMapUv; -#endif -#ifdef USE_BUMPMAP - varying vec2 vBumpMapUv; -#endif -#ifdef USE_NORMALMAP - varying vec2 vNormalMapUv; -#endif -#ifdef USE_EMISSIVEMAP - varying vec2 vEmissiveMapUv; -#endif -#ifdef USE_METALNESSMAP - varying vec2 vMetalnessMapUv; -#endif -#ifdef USE_ROUGHNESSMAP - varying vec2 vRoughnessMapUv; -#endif -#ifdef USE_ANISOTROPYMAP - varying vec2 vAnisotropyMapUv; -#endif -#ifdef USE_CLEARCOATMAP - varying vec2 vClearcoatMapUv; -#endif -#ifdef USE_CLEARCOAT_NORMALMAP - varying vec2 vClearcoatNormalMapUv; -#endif -#ifdef USE_CLEARCOAT_ROUGHNESSMAP - varying vec2 vClearcoatRoughnessMapUv; -#endif -#ifdef USE_IRIDESCENCEMAP - varying vec2 vIridescenceMapUv; -#endif -#ifdef USE_IRIDESCENCE_THICKNESSMAP - varying vec2 vIridescenceThicknessMapUv; -#endif -#ifdef USE_SHEEN_COLORMAP - varying vec2 vSheenColorMapUv; -#endif -#ifdef USE_SHEEN_ROUGHNESSMAP - varying vec2 vSheenRoughnessMapUv; -#endif -#ifdef USE_SPECULARMAP - varying vec2 vSpecularMapUv; -#endif -#ifdef USE_SPECULAR_COLORMAP - varying vec2 vSpecularColorMapUv; -#endif -#ifdef USE_SPECULAR_INTENSITYMAP - varying vec2 vSpecularIntensityMapUv; -#endif -#ifdef USE_TRANSMISSIONMAP - uniform mat3 transmissionMapTransform; - varying vec2 vTransmissionMapUv; -#endif -#ifdef USE_THICKNESSMAP - uniform mat3 thicknessMapTransform; - varying vec2 vThicknessMapUv; -#endif`,Yq=`#if defined( USE_UV ) || defined( USE_ANISOTROPY ) - varying vec2 vUv; -#endif -#ifdef USE_MAP - uniform mat3 mapTransform; - varying vec2 vMapUv; -#endif -#ifdef USE_ALPHAMAP - uniform mat3 alphaMapTransform; - varying vec2 vAlphaMapUv; -#endif -#ifdef USE_LIGHTMAP - uniform mat3 lightMapTransform; - varying vec2 vLightMapUv; -#endif -#ifdef USE_AOMAP - uniform mat3 aoMapTransform; - varying vec2 vAoMapUv; -#endif -#ifdef USE_BUMPMAP - uniform mat3 bumpMapTransform; - varying vec2 vBumpMapUv; -#endif -#ifdef USE_NORMALMAP - uniform mat3 normalMapTransform; - varying vec2 vNormalMapUv; -#endif -#ifdef USE_DISPLACEMENTMAP - uniform mat3 displacementMapTransform; - varying vec2 vDisplacementMapUv; -#endif -#ifdef USE_EMISSIVEMAP - uniform mat3 emissiveMapTransform; - varying vec2 vEmissiveMapUv; -#endif -#ifdef USE_METALNESSMAP - uniform mat3 metalnessMapTransform; - varying vec2 vMetalnessMapUv; -#endif -#ifdef USE_ROUGHNESSMAP - uniform mat3 roughnessMapTransform; - varying vec2 vRoughnessMapUv; -#endif -#ifdef USE_ANISOTROPYMAP - uniform mat3 anisotropyMapTransform; - varying vec2 vAnisotropyMapUv; -#endif -#ifdef USE_CLEARCOATMAP - uniform mat3 clearcoatMapTransform; - varying vec2 vClearcoatMapUv; -#endif -#ifdef USE_CLEARCOAT_NORMALMAP - uniform mat3 clearcoatNormalMapTransform; - varying vec2 vClearcoatNormalMapUv; -#endif -#ifdef USE_CLEARCOAT_ROUGHNESSMAP - uniform mat3 clearcoatRoughnessMapTransform; - varying vec2 vClearcoatRoughnessMapUv; -#endif -#ifdef USE_SHEEN_COLORMAP - uniform mat3 sheenColorMapTransform; - varying vec2 vSheenColorMapUv; -#endif -#ifdef USE_SHEEN_ROUGHNESSMAP - uniform mat3 sheenRoughnessMapTransform; - varying vec2 vSheenRoughnessMapUv; -#endif -#ifdef USE_IRIDESCENCEMAP - uniform mat3 iridescenceMapTransform; - varying vec2 vIridescenceMapUv; -#endif -#ifdef USE_IRIDESCENCE_THICKNESSMAP - uniform mat3 iridescenceThicknessMapTransform; - varying vec2 vIridescenceThicknessMapUv; -#endif -#ifdef USE_SPECULARMAP - uniform mat3 specularMapTransform; - varying vec2 vSpecularMapUv; -#endif -#ifdef USE_SPECULAR_COLORMAP - uniform mat3 specularColorMapTransform; - varying vec2 vSpecularColorMapUv; -#endif -#ifdef USE_SPECULAR_INTENSITYMAP - uniform mat3 specularIntensityMapTransform; - varying vec2 vSpecularIntensityMapUv; -#endif -#ifdef USE_TRANSMISSIONMAP - uniform mat3 transmissionMapTransform; - varying vec2 vTransmissionMapUv; -#endif -#ifdef USE_THICKNESSMAP - uniform mat3 thicknessMapTransform; - varying vec2 vThicknessMapUv; -#endif`,Qq=`#if defined( USE_UV ) || defined( USE_ANISOTROPY ) - vUv = vec3( uv, 1 ).xy; -#endif -#ifdef USE_MAP - vMapUv = ( mapTransform * vec3( MAP_UV, 1 ) ).xy; -#endif -#ifdef USE_ALPHAMAP - vAlphaMapUv = ( alphaMapTransform * vec3( ALPHAMAP_UV, 1 ) ).xy; -#endif -#ifdef USE_LIGHTMAP - vLightMapUv = ( lightMapTransform * vec3( LIGHTMAP_UV, 1 ) ).xy; -#endif -#ifdef USE_AOMAP - vAoMapUv = ( aoMapTransform * vec3( AOMAP_UV, 1 ) ).xy; -#endif -#ifdef USE_BUMPMAP - vBumpMapUv = ( bumpMapTransform * vec3( BUMPMAP_UV, 1 ) ).xy; -#endif -#ifdef USE_NORMALMAP - vNormalMapUv = ( normalMapTransform * vec3( NORMALMAP_UV, 1 ) ).xy; -#endif -#ifdef USE_DISPLACEMENTMAP - vDisplacementMapUv = ( displacementMapTransform * vec3( DISPLACEMENTMAP_UV, 1 ) ).xy; -#endif -#ifdef USE_EMISSIVEMAP - vEmissiveMapUv = ( emissiveMapTransform * vec3( EMISSIVEMAP_UV, 1 ) ).xy; -#endif -#ifdef USE_METALNESSMAP - vMetalnessMapUv = ( metalnessMapTransform * vec3( METALNESSMAP_UV, 1 ) ).xy; -#endif -#ifdef USE_ROUGHNESSMAP - vRoughnessMapUv = ( roughnessMapTransform * vec3( ROUGHNESSMAP_UV, 1 ) ).xy; -#endif -#ifdef USE_ANISOTROPYMAP - vAnisotropyMapUv = ( anisotropyMapTransform * vec3( ANISOTROPYMAP_UV, 1 ) ).xy; -#endif -#ifdef USE_CLEARCOATMAP - vClearcoatMapUv = ( clearcoatMapTransform * vec3( CLEARCOATMAP_UV, 1 ) ).xy; -#endif -#ifdef USE_CLEARCOAT_NORMALMAP - vClearcoatNormalMapUv = ( clearcoatNormalMapTransform * vec3( CLEARCOAT_NORMALMAP_UV, 1 ) ).xy; -#endif -#ifdef USE_CLEARCOAT_ROUGHNESSMAP - vClearcoatRoughnessMapUv = ( clearcoatRoughnessMapTransform * vec3( CLEARCOAT_ROUGHNESSMAP_UV, 1 ) ).xy; -#endif -#ifdef USE_IRIDESCENCEMAP - vIridescenceMapUv = ( iridescenceMapTransform * vec3( IRIDESCENCEMAP_UV, 1 ) ).xy; -#endif -#ifdef USE_IRIDESCENCE_THICKNESSMAP - vIridescenceThicknessMapUv = ( iridescenceThicknessMapTransform * vec3( IRIDESCENCE_THICKNESSMAP_UV, 1 ) ).xy; -#endif -#ifdef USE_SHEEN_COLORMAP - vSheenColorMapUv = ( sheenColorMapTransform * vec3( SHEEN_COLORMAP_UV, 1 ) ).xy; -#endif -#ifdef USE_SHEEN_ROUGHNESSMAP - vSheenRoughnessMapUv = ( sheenRoughnessMapTransform * vec3( SHEEN_ROUGHNESSMAP_UV, 1 ) ).xy; -#endif -#ifdef USE_SPECULARMAP - vSpecularMapUv = ( specularMapTransform * vec3( SPECULARMAP_UV, 1 ) ).xy; -#endif -#ifdef USE_SPECULAR_COLORMAP - vSpecularColorMapUv = ( specularColorMapTransform * vec3( SPECULAR_COLORMAP_UV, 1 ) ).xy; -#endif -#ifdef USE_SPECULAR_INTENSITYMAP - vSpecularIntensityMapUv = ( specularIntensityMapTransform * vec3( SPECULAR_INTENSITYMAP_UV, 1 ) ).xy; -#endif -#ifdef USE_TRANSMISSIONMAP - vTransmissionMapUv = ( transmissionMapTransform * vec3( TRANSMISSIONMAP_UV, 1 ) ).xy; -#endif -#ifdef USE_THICKNESSMAP - vThicknessMapUv = ( thicknessMapTransform * vec3( THICKNESSMAP_UV, 1 ) ).xy; -#endif`,Kq=`#if defined( USE_ENVMAP ) || defined( DISTANCE ) || defined ( USE_SHADOWMAP ) || defined ( USE_TRANSMISSION ) || NUM_SPOT_LIGHT_COORDS > 0 - vec4 worldPosition = vec4( transformed, 1.0 ); - #ifdef USE_BATCHING - worldPosition = batchingMatrix * worldPosition; - #endif - #ifdef USE_INSTANCING - worldPosition = instanceMatrix * worldPosition; - #endif - worldPosition = modelMatrix * worldPosition; -#endif`;const Zq=`varying vec2 vUv; -uniform mat3 uvTransform; -void main() { - vUv = ( uvTransform * vec3( uv, 1 ) ).xy; - gl_Position = vec4( position.xy, 1.0, 1.0 ); -}`,Jq=`uniform sampler2D t2D; -uniform float backgroundIntensity; -varying vec2 vUv; -void main() { - vec4 texColor = texture2D( t2D, vUv ); - #ifdef DECODE_VIDEO_TEXTURE - texColor = vec4( mix( pow( texColor.rgb * 0.9478672986 + vec3( 0.0521327014 ), vec3( 2.4 ) ), texColor.rgb * 0.0773993808, vec3( lessThanEqual( texColor.rgb, vec3( 0.04045 ) ) ) ), texColor.w ); - #endif - texColor.rgb *= backgroundIntensity; - gl_FragColor = texColor; - #include - #include -}`,eV=`varying vec3 vWorldDirection; -#include -void main() { - vWorldDirection = transformDirection( position, modelMatrix ); - #include - #include - gl_Position.z = gl_Position.w; -}`,tV=`#ifdef ENVMAP_TYPE_CUBE - uniform samplerCube envMap; -#elif defined( ENVMAP_TYPE_CUBE_UV ) - uniform sampler2D envMap; -#endif -uniform float flipEnvMap; -uniform float backgroundBlurriness; -uniform float backgroundIntensity; -uniform mat3 backgroundRotation; -varying vec3 vWorldDirection; -#include -void main() { - #ifdef ENVMAP_TYPE_CUBE - vec4 texColor = textureCube( envMap, backgroundRotation * vec3( flipEnvMap * vWorldDirection.x, vWorldDirection.yz ) ); - #elif defined( ENVMAP_TYPE_CUBE_UV ) - vec4 texColor = textureCubeUV( envMap, backgroundRotation * vWorldDirection, backgroundBlurriness ); - #else - vec4 texColor = vec4( 0.0, 0.0, 0.0, 1.0 ); - #endif - texColor.rgb *= backgroundIntensity; - gl_FragColor = texColor; - #include - #include -}`,nV=`varying vec3 vWorldDirection; -#include -void main() { - vWorldDirection = transformDirection( position, modelMatrix ); - #include - #include - gl_Position.z = gl_Position.w; -}`,iV=`uniform samplerCube tCube; -uniform float tFlip; -uniform float opacity; -varying vec3 vWorldDirection; -void main() { - vec4 texColor = textureCube( tCube, vec3( tFlip * vWorldDirection.x, vWorldDirection.yz ) ); - gl_FragColor = texColor; - gl_FragColor.a *= opacity; - #include - #include -}`,rV=`#include -#include -#include -#include -#include -#include -#include -#include -varying vec2 vHighPrecisionZW; -void main() { - #include - #include - #include - #include - #ifdef USE_DISPLACEMENTMAP - #include - #include - #include - #endif - #include - #include - #include - #include - #include - #include - #include - vHighPrecisionZW = gl_Position.zw; -}`,sV=`#if DEPTH_PACKING == 3200 - uniform float opacity; -#endif -#include -#include -#include -#include -#include -#include -#include -#include -#include -varying vec2 vHighPrecisionZW; -void main() { - vec4 diffuseColor = vec4( 1.0 ); - #include - #if DEPTH_PACKING == 3200 - diffuseColor.a = opacity; - #endif - #include - #include - #include - #include - #include - float fragCoordZ = 0.5 * vHighPrecisionZW[0] / vHighPrecisionZW[1] + 0.5; - #if DEPTH_PACKING == 3200 - gl_FragColor = vec4( vec3( 1.0 - fragCoordZ ), opacity ); - #elif DEPTH_PACKING == 3201 - gl_FragColor = packDepthToRGBA( fragCoordZ ); - #elif DEPTH_PACKING == 3202 - gl_FragColor = vec4( packDepthToRGB( fragCoordZ ), 1.0 ); - #elif DEPTH_PACKING == 3203 - gl_FragColor = vec4( packDepthToRG( fragCoordZ ), 0.0, 1.0 ); - #endif -}`,aV=`#define DISTANCE -varying vec3 vWorldPosition; -#include -#include -#include -#include -#include -#include -#include -void main() { - #include - #include - #include - #include - #ifdef USE_DISPLACEMENTMAP - #include - #include - #include - #endif - #include - #include - #include - #include - #include - #include - #include - vWorldPosition = worldPosition.xyz; -}`,oV=`#define DISTANCE -uniform vec3 referencePosition; -uniform float nearDistance; -uniform float farDistance; -varying vec3 vWorldPosition; -#include -#include -#include -#include -#include -#include -#include -#include -void main () { - vec4 diffuseColor = vec4( 1.0 ); - #include - #include - #include - #include - #include - float dist = length( vWorldPosition - referencePosition ); - dist = ( dist - nearDistance ) / ( farDistance - nearDistance ); - dist = saturate( dist ); - gl_FragColor = packDepthToRGBA( dist ); -}`,lV=`varying vec3 vWorldDirection; -#include -void main() { - vWorldDirection = transformDirection( position, modelMatrix ); - #include - #include -}`,uV=`uniform sampler2D tEquirect; -varying vec3 vWorldDirection; -#include -void main() { - vec3 direction = normalize( vWorldDirection ); - vec2 sampleUV = equirectUv( direction ); - gl_FragColor = texture2D( tEquirect, sampleUV ); - #include - #include -}`,cV=`uniform float scale; -attribute float lineDistance; -varying float vLineDistance; -#include -#include -#include -#include -#include -#include -#include -void main() { - vLineDistance = scale * lineDistance; - #include - #include - #include - #include - #include - #include - #include - #include - #include - #include -}`,hV=`uniform vec3 diffuse; -uniform float opacity; -uniform float dashSize; -uniform float totalSize; -varying float vLineDistance; -#include -#include -#include -#include -#include -#include -#include -void main() { - vec4 diffuseColor = vec4( diffuse, opacity ); - #include - if ( mod( vLineDistance, totalSize ) > dashSize ) { - discard; - } - vec3 outgoingLight = vec3( 0.0 ); - #include - #include - #include - outgoingLight = diffuseColor.rgb; - #include - #include - #include - #include - #include -}`,fV=`#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -void main() { - #include - #include - #include - #include - #include - #if defined ( USE_ENVMAP ) || defined ( USE_SKINNING ) - #include - #include - #include - #include - #include - #endif - #include - #include - #include - #include - #include - #include - #include - #include - #include -}`,AV=`uniform vec3 diffuse; -uniform float opacity; -#ifndef FLAT_SHADED - varying vec3 vNormal; -#endif -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -void main() { - vec4 diffuseColor = vec4( diffuse, opacity ); - #include - #include - #include - #include - #include - #include - #include - #include - ReflectedLight reflectedLight = ReflectedLight( vec3( 0.0 ), vec3( 0.0 ), vec3( 0.0 ), vec3( 0.0 ) ); - #ifdef USE_LIGHTMAP - vec4 lightMapTexel = texture2D( lightMap, vLightMapUv ); - reflectedLight.indirectDiffuse += lightMapTexel.rgb * lightMapIntensity * RECIPROCAL_PI; - #else - reflectedLight.indirectDiffuse += vec3( 1.0 ); - #endif - #include - reflectedLight.indirectDiffuse *= diffuseColor.rgb; - vec3 outgoingLight = reflectedLight.indirectDiffuse; - #include - #include - #include - #include - #include - #include - #include -}`,dV=`#define LAMBERT -varying vec3 vViewPosition; -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -void main() { - #include - #include - #include - #include - #include - #include - #include - #include - #include - #include - #include - #include - #include - #include - #include - #include - #include - #include - vViewPosition = - mvPosition.xyz; - #include - #include - #include - #include -}`,pV=`#define LAMBERT -uniform vec3 diffuse; -uniform vec3 emissive; -uniform float opacity; -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -void main() { - vec4 diffuseColor = vec4( diffuse, opacity ); - #include - ReflectedLight reflectedLight = ReflectedLight( vec3( 0.0 ), vec3( 0.0 ), vec3( 0.0 ), vec3( 0.0 ) ); - vec3 totalEmissiveRadiance = emissive; - #include - #include - #include - #include - #include - #include - #include - #include - #include - #include - #include - #include - #include - #include - #include - vec3 outgoingLight = reflectedLight.directDiffuse + reflectedLight.indirectDiffuse + totalEmissiveRadiance; - #include - #include - #include - #include - #include - #include - #include -}`,mV=`#define MATCAP -varying vec3 vViewPosition; -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -void main() { - #include - #include - #include - #include - #include - #include - #include - #include - #include - #include - #include - #include - #include - #include - #include - #include - #include - #include - #include - vViewPosition = - mvPosition.xyz; -}`,gV=`#define MATCAP -uniform vec3 diffuse; -uniform float opacity; -uniform sampler2D matcap; -varying vec3 vViewPosition; -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -void main() { - vec4 diffuseColor = vec4( diffuse, opacity ); - #include - #include - #include - #include - #include - #include - #include - #include - #include - vec3 viewDir = normalize( vViewPosition ); - vec3 x = normalize( vec3( viewDir.z, 0.0, - viewDir.x ) ); - vec3 y = cross( viewDir, x ); - vec2 uv = vec2( dot( x, normal ), dot( y, normal ) ) * 0.495 + 0.5; - #ifdef USE_MATCAP - vec4 matcapColor = texture2D( matcap, uv ); - #else - vec4 matcapColor = vec4( vec3( mix( 0.2, 0.8, uv.y ) ), 1.0 ); - #endif - vec3 outgoingLight = diffuseColor.rgb * matcapColor.rgb; - #include - #include - #include - #include - #include - #include -}`,vV=`#define NORMAL -#if defined( FLAT_SHADED ) || defined( USE_BUMPMAP ) || defined( USE_NORMALMAP_TANGENTSPACE ) - varying vec3 vViewPosition; -#endif -#include -#include -#include -#include -#include -#include -#include -#include -#include -void main() { - #include - #include - #include - #include - #include - #include - #include - #include - #include - #include - #include - #include - #include - #include - #include - #include -#if defined( FLAT_SHADED ) || defined( USE_BUMPMAP ) || defined( USE_NORMALMAP_TANGENTSPACE ) - vViewPosition = - mvPosition.xyz; -#endif -}`,_V=`#define NORMAL -uniform float opacity; -#if defined( FLAT_SHADED ) || defined( USE_BUMPMAP ) || defined( USE_NORMALMAP_TANGENTSPACE ) - varying vec3 vViewPosition; -#endif -#include -#include -#include -#include -#include -#include -#include -void main() { - vec4 diffuseColor = vec4( 0.0, 0.0, 0.0, opacity ); - #include - #include - #include - #include - gl_FragColor = vec4( packNormalToRGB( normal ), diffuseColor.a ); - #ifdef OPAQUE - gl_FragColor.a = 1.0; - #endif -}`,yV=`#define PHONG -varying vec3 vViewPosition; -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -void main() { - #include - #include - #include - #include - #include - #include - #include - #include - #include - #include - #include - #include - #include - #include - #include - #include - #include - #include - vViewPosition = - mvPosition.xyz; - #include - #include - #include - #include -}`,xV=`#define PHONG -uniform vec3 diffuse; -uniform vec3 emissive; -uniform vec3 specular; -uniform float shininess; -uniform float opacity; -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -void main() { - vec4 diffuseColor = vec4( diffuse, opacity ); - #include - ReflectedLight reflectedLight = ReflectedLight( vec3( 0.0 ), vec3( 0.0 ), vec3( 0.0 ), vec3( 0.0 ) ); - vec3 totalEmissiveRadiance = emissive; - #include - #include - #include - #include - #include - #include - #include - #include - #include - #include - #include - #include - #include - #include - #include - vec3 outgoingLight = reflectedLight.directDiffuse + reflectedLight.indirectDiffuse + reflectedLight.directSpecular + reflectedLight.indirectSpecular + totalEmissiveRadiance; - #include - #include - #include - #include - #include - #include - #include -}`,bV=`#define STANDARD -varying vec3 vViewPosition; -#ifdef USE_TRANSMISSION - varying vec3 vWorldPosition; -#endif -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -void main() { - #include - #include - #include - #include - #include - #include - #include - #include - #include - #include - #include - #include - #include - #include - #include - #include - #include - #include - vViewPosition = - mvPosition.xyz; - #include - #include - #include -#ifdef USE_TRANSMISSION - vWorldPosition = worldPosition.xyz; -#endif -}`,SV=`#define STANDARD -#ifdef PHYSICAL - #define IOR - #define USE_SPECULAR -#endif -uniform vec3 diffuse; -uniform vec3 emissive; -uniform float roughness; -uniform float metalness; -uniform float opacity; -#ifdef IOR - uniform float ior; -#endif -#ifdef USE_SPECULAR - uniform float specularIntensity; - uniform vec3 specularColor; - #ifdef USE_SPECULAR_COLORMAP - uniform sampler2D specularColorMap; - #endif - #ifdef USE_SPECULAR_INTENSITYMAP - uniform sampler2D specularIntensityMap; - #endif -#endif -#ifdef USE_CLEARCOAT - uniform float clearcoat; - uniform float clearcoatRoughness; -#endif -#ifdef USE_DISPERSION - uniform float dispersion; -#endif -#ifdef USE_IRIDESCENCE - uniform float iridescence; - uniform float iridescenceIOR; - uniform float iridescenceThicknessMinimum; - uniform float iridescenceThicknessMaximum; -#endif -#ifdef USE_SHEEN - uniform vec3 sheenColor; - uniform float sheenRoughness; - #ifdef USE_SHEEN_COLORMAP - uniform sampler2D sheenColorMap; - #endif - #ifdef USE_SHEEN_ROUGHNESSMAP - uniform sampler2D sheenRoughnessMap; - #endif -#endif -#ifdef USE_ANISOTROPY - uniform vec2 anisotropyVector; - #ifdef USE_ANISOTROPYMAP - uniform sampler2D anisotropyMap; - #endif -#endif -varying vec3 vViewPosition; -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -void main() { - vec4 diffuseColor = vec4( diffuse, opacity ); - #include - ReflectedLight reflectedLight = ReflectedLight( vec3( 0.0 ), vec3( 0.0 ), vec3( 0.0 ), vec3( 0.0 ) ); - vec3 totalEmissiveRadiance = emissive; - #include - #include - #include - #include - #include - #include - #include - #include - #include - #include - #include - #include - #include - #include - #include - #include - #include - #include - vec3 totalDiffuse = reflectedLight.directDiffuse + reflectedLight.indirectDiffuse; - vec3 totalSpecular = reflectedLight.directSpecular + reflectedLight.indirectSpecular; - #include - vec3 outgoingLight = totalDiffuse + totalSpecular + totalEmissiveRadiance; - #ifdef USE_SHEEN - float sheenEnergyComp = 1.0 - 0.157 * max3( material.sheenColor ); - outgoingLight = outgoingLight * sheenEnergyComp + sheenSpecularDirect + sheenSpecularIndirect; - #endif - #ifdef USE_CLEARCOAT - float dotNVcc = saturate( dot( geometryClearcoatNormal, geometryViewDir ) ); - vec3 Fcc = F_Schlick( material.clearcoatF0, material.clearcoatF90, dotNVcc ); - outgoingLight = outgoingLight * ( 1.0 - material.clearcoat * Fcc ) + ( clearcoatSpecularDirect + clearcoatSpecularIndirect ) * material.clearcoat; - #endif - #include - #include - #include - #include - #include - #include -}`,TV=`#define TOON -varying vec3 vViewPosition; -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -void main() { - #include - #include - #include - #include - #include - #include - #include - #include - #include - #include - #include - #include - #include - #include - #include - #include - #include - #include - vViewPosition = - mvPosition.xyz; - #include - #include - #include -}`,wV=`#define TOON -uniform vec3 diffuse; -uniform vec3 emissive; -uniform float opacity; -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -void main() { - vec4 diffuseColor = vec4( diffuse, opacity ); - #include - ReflectedLight reflectedLight = ReflectedLight( vec3( 0.0 ), vec3( 0.0 ), vec3( 0.0 ), vec3( 0.0 ) ); - vec3 totalEmissiveRadiance = emissive; - #include - #include - #include - #include - #include - #include - #include - #include - #include - #include - #include - #include - #include - #include - vec3 outgoingLight = reflectedLight.directDiffuse + reflectedLight.indirectDiffuse + totalEmissiveRadiance; - #include - #include - #include - #include - #include - #include -}`,MV=`uniform float size; -uniform float scale; -#include -#include -#include -#include -#include -#include -#ifdef USE_POINTS_UV - varying vec2 vUv; - uniform mat3 uvTransform; -#endif -void main() { - #ifdef USE_POINTS_UV - vUv = ( uvTransform * vec3( uv, 1 ) ).xy; - #endif - #include - #include - #include - #include - #include - #include - gl_PointSize = size; - #ifdef USE_SIZEATTENUATION - bool isPerspective = isPerspectiveMatrix( projectionMatrix ); - if ( isPerspective ) gl_PointSize *= ( scale / - mvPosition.z ); - #endif - #include - #include - #include - #include -}`,EV=`uniform vec3 diffuse; -uniform float opacity; -#include -#include -#include -#include -#include -#include -#include -#include -void main() { - vec4 diffuseColor = vec4( diffuse, opacity ); - #include - vec3 outgoingLight = vec3( 0.0 ); - #include - #include - #include - #include - #include - outgoingLight = diffuseColor.rgb; - #include - #include - #include - #include - #include -}`,CV=`#include -#include -#include -#include -#include -#include -#include -void main() { - #include - #include - #include - #include - #include - #include - #include - #include - #include - #include - #include - #include - #include - #include - #include -}`,RV=`uniform vec3 color; -uniform float opacity; -#include -#include -#include -#include -#include -#include -#include -#include -void main() { - #include - gl_FragColor = vec4( color, opacity * ( 1.0 - getShadowMask() ) ); - #include - #include - #include -}`,NV=`uniform float rotation; -uniform vec2 center; -#include -#include -#include -#include -#include -void main() { - #include - vec4 mvPosition = modelViewMatrix[ 3 ]; - vec2 scale = vec2( length( modelMatrix[ 0 ].xyz ), length( modelMatrix[ 1 ].xyz ) ); - #ifndef USE_SIZEATTENUATION - bool isPerspective = isPerspectiveMatrix( projectionMatrix ); - if ( isPerspective ) scale *= - mvPosition.z; - #endif - vec2 alignedPosition = ( position.xy - ( center - vec2( 0.5 ) ) ) * scale; - vec2 rotatedPosition; - rotatedPosition.x = cos( rotation ) * alignedPosition.x - sin( rotation ) * alignedPosition.y; - rotatedPosition.y = sin( rotation ) * alignedPosition.x + cos( rotation ) * alignedPosition.y; - mvPosition.xy += rotatedPosition; - gl_Position = projectionMatrix * mvPosition; - #include - #include - #include -}`,DV=`uniform vec3 diffuse; -uniform float opacity; -#include -#include -#include -#include -#include -#include -#include -#include -#include -void main() { - vec4 diffuseColor = vec4( diffuse, opacity ); - #include - vec3 outgoingLight = vec3( 0.0 ); - #include - #include - #include - #include - #include - outgoingLight = diffuseColor.rgb; - #include - #include - #include - #include -}`,Zn={alphahash_fragment:Jz,alphahash_pars_fragment:eG,alphamap_fragment:tG,alphamap_pars_fragment:nG,alphatest_fragment:iG,alphatest_pars_fragment:rG,aomap_fragment:sG,aomap_pars_fragment:aG,batching_pars_vertex:oG,batching_vertex:lG,begin_vertex:uG,beginnormal_vertex:cG,bsdfs:hG,iridescence_fragment:fG,bumpmap_pars_fragment:AG,clipping_planes_fragment:dG,clipping_planes_pars_fragment:pG,clipping_planes_pars_vertex:mG,clipping_planes_vertex:gG,color_fragment:vG,color_pars_fragment:_G,color_pars_vertex:yG,color_vertex:xG,common:bG,cube_uv_reflection_fragment:SG,defaultnormal_vertex:TG,displacementmap_pars_vertex:wG,displacementmap_vertex:MG,emissivemap_fragment:EG,emissivemap_pars_fragment:CG,colorspace_fragment:RG,colorspace_pars_fragment:NG,envmap_fragment:DG,envmap_common_pars_fragment:PG,envmap_pars_fragment:LG,envmap_pars_vertex:UG,envmap_physical_pars_fragment:jG,envmap_vertex:BG,fog_vertex:OG,fog_pars_vertex:IG,fog_fragment:FG,fog_pars_fragment:kG,gradientmap_pars_fragment:zG,lightmap_pars_fragment:GG,lights_lambert_fragment:qG,lights_lambert_pars_fragment:VG,lights_pars_begin:HG,lights_toon_fragment:WG,lights_toon_pars_fragment:$G,lights_phong_fragment:XG,lights_phong_pars_fragment:YG,lights_physical_fragment:QG,lights_physical_pars_fragment:KG,lights_fragment_begin:ZG,lights_fragment_maps:JG,lights_fragment_end:eq,logdepthbuf_fragment:tq,logdepthbuf_pars_fragment:nq,logdepthbuf_pars_vertex:iq,logdepthbuf_vertex:rq,map_fragment:sq,map_pars_fragment:aq,map_particle_fragment:oq,map_particle_pars_fragment:lq,metalnessmap_fragment:uq,metalnessmap_pars_fragment:cq,morphinstance_vertex:hq,morphcolor_vertex:fq,morphnormal_vertex:Aq,morphtarget_pars_vertex:dq,morphtarget_vertex:pq,normal_fragment_begin:mq,normal_fragment_maps:gq,normal_pars_fragment:vq,normal_pars_vertex:_q,normal_vertex:yq,normalmap_pars_fragment:xq,clearcoat_normal_fragment_begin:bq,clearcoat_normal_fragment_maps:Sq,clearcoat_pars_fragment:Tq,iridescence_pars_fragment:wq,opaque_fragment:Mq,packing:Eq,premultiplied_alpha_fragment:Cq,project_vertex:Rq,dithering_fragment:Nq,dithering_pars_fragment:Dq,roughnessmap_fragment:Pq,roughnessmap_pars_fragment:Lq,shadowmap_pars_fragment:Uq,shadowmap_pars_vertex:Bq,shadowmap_vertex:Oq,shadowmask_pars_fragment:Iq,skinbase_vertex:Fq,skinning_pars_vertex:kq,skinning_vertex:zq,skinnormal_vertex:Gq,specularmap_fragment:qq,specularmap_pars_fragment:Vq,tonemapping_fragment:Hq,tonemapping_pars_fragment:jq,transmission_fragment:Wq,transmission_pars_fragment:$q,uv_pars_fragment:Xq,uv_pars_vertex:Yq,uv_vertex:Qq,worldpos_vertex:Kq,background_vert:Zq,background_frag:Jq,backgroundCube_vert:eV,backgroundCube_frag:tV,cube_vert:nV,cube_frag:iV,depth_vert:rV,depth_frag:sV,distanceRGBA_vert:aV,distanceRGBA_frag:oV,equirect_vert:lV,equirect_frag:uV,linedashed_vert:cV,linedashed_frag:hV,meshbasic_vert:fV,meshbasic_frag:AV,meshlambert_vert:dV,meshlambert_frag:pV,meshmatcap_vert:mV,meshmatcap_frag:gV,meshnormal_vert:vV,meshnormal_frag:_V,meshphong_vert:yV,meshphong_frag:xV,meshphysical_vert:bV,meshphysical_frag:SV,meshtoon_vert:TV,meshtoon_frag:wV,points_vert:MV,points_frag:EV,shadow_vert:CV,shadow_frag:RV,sprite_vert:NV,sprite_frag:DV},Qt={common:{diffuse:{value:new an(16777215)},opacity:{value:1},map:{value:null},mapTransform:{value:new Vn},alphaMap:{value:null},alphaMapTransform:{value:new Vn},alphaTest:{value:0}},specularmap:{specularMap:{value:null},specularMapTransform:{value:new Vn}},envmap:{envMap:{value:null},envMapRotation:{value:new Vn},flipEnvMap:{value:-1},reflectivity:{value:1},ior:{value:1.5},refractionRatio:{value:.98}},aomap:{aoMap:{value:null},aoMapIntensity:{value:1},aoMapTransform:{value:new Vn}},lightmap:{lightMap:{value:null},lightMapIntensity:{value:1},lightMapTransform:{value:new Vn}},bumpmap:{bumpMap:{value:null},bumpMapTransform:{value:new Vn},bumpScale:{value:1}},normalmap:{normalMap:{value:null},normalMapTransform:{value:new Vn},normalScale:{value:new ft(1,1)}},displacementmap:{displacementMap:{value:null},displacementMapTransform:{value:new Vn},displacementScale:{value:1},displacementBias:{value:0}},emissivemap:{emissiveMap:{value:null},emissiveMapTransform:{value:new Vn}},metalnessmap:{metalnessMap:{value:null},metalnessMapTransform:{value:new Vn}},roughnessmap:{roughnessMap:{value:null},roughnessMapTransform:{value:new Vn}},gradientmap:{gradientMap:{value:null}},fog:{fogDensity:{value:25e-5},fogNear:{value:1},fogFar:{value:2e3},fogColor:{value:new an(16777215)}},lights:{ambientLightColor:{value:[]},lightProbe:{value:[]},directionalLights:{value:[],properties:{direction:{},color:{}}},directionalLightShadows:{value:[],properties:{shadowIntensity:1,shadowBias:{},shadowNormalBias:{},shadowRadius:{},shadowMapSize:{}}},directionalShadowMap:{value:[]},directionalShadowMatrix:{value:[]},spotLights:{value:[],properties:{color:{},position:{},direction:{},distance:{},coneCos:{},penumbraCos:{},decay:{}}},spotLightShadows:{value:[],properties:{shadowIntensity:1,shadowBias:{},shadowNormalBias:{},shadowRadius:{},shadowMapSize:{}}},spotLightMap:{value:[]},spotShadowMap:{value:[]},spotLightMatrix:{value:[]},pointLights:{value:[],properties:{color:{},position:{},decay:{},distance:{}}},pointLightShadows:{value:[],properties:{shadowIntensity:1,shadowBias:{},shadowNormalBias:{},shadowRadius:{},shadowMapSize:{},shadowCameraNear:{},shadowCameraFar:{}}},pointShadowMap:{value:[]},pointShadowMatrix:{value:[]},hemisphereLights:{value:[],properties:{direction:{},skyColor:{},groundColor:{}}},rectAreaLights:{value:[],properties:{color:{},position:{},width:{},height:{}}},ltc_1:{value:null},ltc_2:{value:null}},points:{diffuse:{value:new an(16777215)},opacity:{value:1},size:{value:1},scale:{value:1},map:{value:null},alphaMap:{value:null},alphaMapTransform:{value:new Vn},alphaTest:{value:0},uvTransform:{value:new Vn}},sprite:{diffuse:{value:new an(16777215)},opacity:{value:1},center:{value:new ft(.5,.5)},rotation:{value:0},map:{value:null},mapTransform:{value:new Vn},alphaMap:{value:null},alphaMapTransform:{value:new Vn},alphaTest:{value:0}}},Ga={basic:{uniforms:_a([Qt.common,Qt.specularmap,Qt.envmap,Qt.aomap,Qt.lightmap,Qt.fog]),vertexShader:Zn.meshbasic_vert,fragmentShader:Zn.meshbasic_frag},lambert:{uniforms:_a([Qt.common,Qt.specularmap,Qt.envmap,Qt.aomap,Qt.lightmap,Qt.emissivemap,Qt.bumpmap,Qt.normalmap,Qt.displacementmap,Qt.fog,Qt.lights,{emissive:{value:new an(0)}}]),vertexShader:Zn.meshlambert_vert,fragmentShader:Zn.meshlambert_frag},phong:{uniforms:_a([Qt.common,Qt.specularmap,Qt.envmap,Qt.aomap,Qt.lightmap,Qt.emissivemap,Qt.bumpmap,Qt.normalmap,Qt.displacementmap,Qt.fog,Qt.lights,{emissive:{value:new an(0)},specular:{value:new an(1118481)},shininess:{value:30}}]),vertexShader:Zn.meshphong_vert,fragmentShader:Zn.meshphong_frag},standard:{uniforms:_a([Qt.common,Qt.envmap,Qt.aomap,Qt.lightmap,Qt.emissivemap,Qt.bumpmap,Qt.normalmap,Qt.displacementmap,Qt.roughnessmap,Qt.metalnessmap,Qt.fog,Qt.lights,{emissive:{value:new an(0)},roughness:{value:1},metalness:{value:0},envMapIntensity:{value:1}}]),vertexShader:Zn.meshphysical_vert,fragmentShader:Zn.meshphysical_frag},toon:{uniforms:_a([Qt.common,Qt.aomap,Qt.lightmap,Qt.emissivemap,Qt.bumpmap,Qt.normalmap,Qt.displacementmap,Qt.gradientmap,Qt.fog,Qt.lights,{emissive:{value:new an(0)}}]),vertexShader:Zn.meshtoon_vert,fragmentShader:Zn.meshtoon_frag},matcap:{uniforms:_a([Qt.common,Qt.bumpmap,Qt.normalmap,Qt.displacementmap,Qt.fog,{matcap:{value:null}}]),vertexShader:Zn.meshmatcap_vert,fragmentShader:Zn.meshmatcap_frag},points:{uniforms:_a([Qt.points,Qt.fog]),vertexShader:Zn.points_vert,fragmentShader:Zn.points_frag},dashed:{uniforms:_a([Qt.common,Qt.fog,{scale:{value:1},dashSize:{value:1},totalSize:{value:2}}]),vertexShader:Zn.linedashed_vert,fragmentShader:Zn.linedashed_frag},depth:{uniforms:_a([Qt.common,Qt.displacementmap]),vertexShader:Zn.depth_vert,fragmentShader:Zn.depth_frag},normal:{uniforms:_a([Qt.common,Qt.bumpmap,Qt.normalmap,Qt.displacementmap,{opacity:{value:1}}]),vertexShader:Zn.meshnormal_vert,fragmentShader:Zn.meshnormal_frag},sprite:{uniforms:_a([Qt.sprite,Qt.fog]),vertexShader:Zn.sprite_vert,fragmentShader:Zn.sprite_frag},background:{uniforms:{uvTransform:{value:new Vn},t2D:{value:null},backgroundIntensity:{value:1}},vertexShader:Zn.background_vert,fragmentShader:Zn.background_frag},backgroundCube:{uniforms:{envMap:{value:null},flipEnvMap:{value:-1},backgroundBlurriness:{value:0},backgroundIntensity:{value:1},backgroundRotation:{value:new Vn}},vertexShader:Zn.backgroundCube_vert,fragmentShader:Zn.backgroundCube_frag},cube:{uniforms:{tCube:{value:null},tFlip:{value:-1},opacity:{value:1}},vertexShader:Zn.cube_vert,fragmentShader:Zn.cube_frag},equirect:{uniforms:{tEquirect:{value:null}},vertexShader:Zn.equirect_vert,fragmentShader:Zn.equirect_frag},distanceRGBA:{uniforms:_a([Qt.common,Qt.displacementmap,{referencePosition:{value:new ce},nearDistance:{value:1},farDistance:{value:1e3}}]),vertexShader:Zn.distanceRGBA_vert,fragmentShader:Zn.distanceRGBA_frag},shadow:{uniforms:_a([Qt.lights,Qt.fog,{color:{value:new an(0)},opacity:{value:1}}]),vertexShader:Zn.shadow_vert,fragmentShader:Zn.shadow_frag}};Ga.physical={uniforms:_a([Ga.standard.uniforms,{clearcoat:{value:0},clearcoatMap:{value:null},clearcoatMapTransform:{value:new Vn},clearcoatNormalMap:{value:null},clearcoatNormalMapTransform:{value:new Vn},clearcoatNormalScale:{value:new ft(1,1)},clearcoatRoughness:{value:0},clearcoatRoughnessMap:{value:null},clearcoatRoughnessMapTransform:{value:new Vn},dispersion:{value:0},iridescence:{value:0},iridescenceMap:{value:null},iridescenceMapTransform:{value:new Vn},iridescenceIOR:{value:1.3},iridescenceThicknessMinimum:{value:100},iridescenceThicknessMaximum:{value:400},iridescenceThicknessMap:{value:null},iridescenceThicknessMapTransform:{value:new Vn},sheen:{value:0},sheenColor:{value:new an(0)},sheenColorMap:{value:null},sheenColorMapTransform:{value:new Vn},sheenRoughness:{value:1},sheenRoughnessMap:{value:null},sheenRoughnessMapTransform:{value:new Vn},transmission:{value:0},transmissionMap:{value:null},transmissionMapTransform:{value:new Vn},transmissionSamplerSize:{value:new ft},transmissionSamplerMap:{value:null},thickness:{value:0},thicknessMap:{value:null},thicknessMapTransform:{value:new Vn},attenuationDistance:{value:0},attenuationColor:{value:new an(0)},specularColor:{value:new an(1,1,1)},specularColorMap:{value:null},specularColorMapTransform:{value:new Vn},specularIntensity:{value:1},specularIntensityMap:{value:null},specularIntensityMapTransform:{value:new Vn},anisotropyVector:{value:new ft},anisotropyMap:{value:null},anisotropyMapTransform:{value:new Vn}}]),vertexShader:Zn.meshphysical_vert,fragmentShader:Zn.meshphysical_frag};const j2={r:0,b:0,g:0},Tf=new la,PV=new kn;function LV(i,e,t,n,r,s,a){const l=new an(0);let u=s===!0?0:1,h,g,v=null,x=0,S=null;function w(L){let O=L.isScene===!0?L.background:null;return O&&O.isTexture&&(O=(L.backgroundBlurriness>0?t:e).get(O)),O}function R(L){let O=!1;const z=w(L);z===null?E(l,u):z&&z.isColor&&(E(z,1),O=!0);const G=i.xr.getEnvironmentBlendMode();G==="additive"?n.buffers.color.setClear(0,0,0,1,a):G==="alpha-blend"&&n.buffers.color.setClear(0,0,0,0,a),(i.autoClear||O)&&(n.buffers.depth.setTest(!0),n.buffers.depth.setMask(!0),n.buffers.color.setMask(!0),i.clear(i.autoClearColor,i.autoClearDepth,i.autoClearStencil))}function C(L,O){const z=w(O);z&&(z.isCubeTexture||z.mapping===sA)?(g===void 0&&(g=new zi(new $h(1,1,1),new Ja({name:"BackgroundCubeMaterial",uniforms:E0(Ga.backgroundCube.uniforms),vertexShader:Ga.backgroundCube.vertexShader,fragmentShader:Ga.backgroundCube.fragmentShader,side:hr,depthTest:!1,depthWrite:!1,fog:!1})),g.geometry.deleteAttribute("normal"),g.geometry.deleteAttribute("uv"),g.onBeforeRender=function(G,k,H){this.matrixWorld.copyPosition(H.matrixWorld)},Object.defineProperty(g.material,"envMap",{get:function(){return this.uniforms.envMap.value}}),r.update(g)),Tf.copy(O.backgroundRotation),Tf.x*=-1,Tf.y*=-1,Tf.z*=-1,z.isCubeTexture&&z.isRenderTargetTexture===!1&&(Tf.y*=-1,Tf.z*=-1),g.material.uniforms.envMap.value=z,g.material.uniforms.flipEnvMap.value=z.isCubeTexture&&z.isRenderTargetTexture===!1?-1:1,g.material.uniforms.backgroundBlurriness.value=O.backgroundBlurriness,g.material.uniforms.backgroundIntensity.value=O.backgroundIntensity,g.material.uniforms.backgroundRotation.value.setFromMatrix4(PV.makeRotationFromEuler(Tf)),g.material.toneMapped=ai.getTransfer(z.colorSpace)!==Vi,(v!==z||x!==z.version||S!==i.toneMapping)&&(g.material.needsUpdate=!0,v=z,x=z.version,S=i.toneMapping),g.layers.enableAll(),L.unshift(g,g.geometry,g.material,0,0,null)):z&&z.isTexture&&(h===void 0&&(h=new zi(new Ty(2,2),new Ja({name:"BackgroundMaterial",uniforms:E0(Ga.background.uniforms),vertexShader:Ga.background.vertexShader,fragmentShader:Ga.background.fragmentShader,side:Nl,depthTest:!1,depthWrite:!1,fog:!1})),h.geometry.deleteAttribute("normal"),Object.defineProperty(h.material,"map",{get:function(){return this.uniforms.t2D.value}}),r.update(h)),h.material.uniforms.t2D.value=z,h.material.uniforms.backgroundIntensity.value=O.backgroundIntensity,h.material.toneMapped=ai.getTransfer(z.colorSpace)!==Vi,z.matrixAutoUpdate===!0&&z.updateMatrix(),h.material.uniforms.uvTransform.value.copy(z.matrix),(v!==z||x!==z.version||S!==i.toneMapping)&&(h.material.needsUpdate=!0,v=z,x=z.version,S=i.toneMapping),h.layers.enableAll(),L.unshift(h,h.geometry,h.material,0,0,null))}function E(L,O){L.getRGB(j2,G7(i)),n.buffers.color.setClear(j2.r,j2.g,j2.b,O,a)}function B(){g!==void 0&&(g.geometry.dispose(),g.material.dispose()),h!==void 0&&(h.geometry.dispose(),h.material.dispose())}return{getClearColor:function(){return l},setClearColor:function(L,O=1){l.set(L),u=O,E(l,u)},getClearAlpha:function(){return u},setClearAlpha:function(L){u=L,E(l,u)},render:R,addToRenderList:C,dispose:B}}function UV(i,e){const t=i.getParameter(i.MAX_VERTEX_ATTRIBS),n={},r=x(null);let s=r,a=!1;function l(V,Y,ee,ne,se){let te=!1;const Q=v(ne,ee,Y);s!==Q&&(s=Q,h(s.object)),te=S(V,ne,ee,se),te&&w(V,ne,ee,se),se!==null&&e.update(se,i.ELEMENT_ARRAY_BUFFER),(te||a)&&(a=!1,O(V,Y,ee,ne),se!==null&&i.bindBuffer(i.ELEMENT_ARRAY_BUFFER,e.get(se).buffer))}function u(){return i.createVertexArray()}function h(V){return i.bindVertexArray(V)}function g(V){return i.deleteVertexArray(V)}function v(V,Y,ee){const ne=ee.wireframe===!0;let se=n[V.id];se===void 0&&(se={},n[V.id]=se);let te=se[Y.id];te===void 0&&(te={},se[Y.id]=te);let Q=te[ne];return Q===void 0&&(Q=x(u()),te[ne]=Q),Q}function x(V){const Y=[],ee=[],ne=[];for(let se=0;se=0){const Se=se[de];let ue=te[de];if(ue===void 0&&(de==="instanceMatrix"&&V.instanceMatrix&&(ue=V.instanceMatrix),de==="instanceColor"&&V.instanceColor&&(ue=V.instanceColor)),Se===void 0||Se.attribute!==ue||ue&&Se.data!==ue.data)return!0;Q++}return s.attributesNum!==Q||s.index!==ne}function w(V,Y,ee,ne){const se={},te=Y.attributes;let Q=0;const le=ee.getAttributes();for(const de in le)if(le[de].location>=0){let Se=te[de];Se===void 0&&(de==="instanceMatrix"&&V.instanceMatrix&&(Se=V.instanceMatrix),de==="instanceColor"&&V.instanceColor&&(Se=V.instanceColor));const ue={};ue.attribute=Se,Se&&Se.data&&(ue.data=Se.data),se[de]=ue,Q++}s.attributes=se,s.attributesNum=Q,s.index=ne}function R(){const V=s.newAttributes;for(let Y=0,ee=V.length;Y=0){let Te=se[le];if(Te===void 0&&(le==="instanceMatrix"&&V.instanceMatrix&&(Te=V.instanceMatrix),le==="instanceColor"&&V.instanceColor&&(Te=V.instanceColor)),Te!==void 0){const Se=Te.normalized,ue=Te.itemSize,be=e.get(Te);if(be===void 0)continue;const We=be.buffer,Ee=be.type,Ge=be.bytesPerElement,ye=Ee===i.INT||Ee===i.UNSIGNED_INT||Te.gpuType===Ns;if(Te.isInterleavedBufferAttribute){const Pe=Te.data,pt=Pe.stride,vt=Te.offset;if(Pe.isInstancedInterleavedBuffer){for(let Tt=0;Tt0&&i.getShaderPrecisionFormat(i.FRAGMENT_SHADER,i.HIGH_FLOAT).precision>0)return"highp";k="mediump"}return k==="mediump"&&i.getShaderPrecisionFormat(i.VERTEX_SHADER,i.MEDIUM_FLOAT).precision>0&&i.getShaderPrecisionFormat(i.FRAGMENT_SHADER,i.MEDIUM_FLOAT).precision>0?"mediump":"lowp"}let h=t.precision!==void 0?t.precision:"highp";const g=u(h);g!==h&&(console.warn("THREE.WebGLRenderer:",h,"not supported, using",g,"instead."),h=g);const v=t.logarithmicDepthBuffer===!0,x=t.reverseDepthBuffer===!0&&e.has("EXT_clip_control"),S=i.getParameter(i.MAX_TEXTURE_IMAGE_UNITS),w=i.getParameter(i.MAX_VERTEX_TEXTURE_IMAGE_UNITS),R=i.getParameter(i.MAX_TEXTURE_SIZE),C=i.getParameter(i.MAX_CUBE_MAP_TEXTURE_SIZE),E=i.getParameter(i.MAX_VERTEX_ATTRIBS),B=i.getParameter(i.MAX_VERTEX_UNIFORM_VECTORS),L=i.getParameter(i.MAX_VARYING_VECTORS),O=i.getParameter(i.MAX_FRAGMENT_UNIFORM_VECTORS),z=w>0,G=i.getParameter(i.MAX_SAMPLES);return{isWebGL2:!0,getMaxAnisotropy:s,getMaxPrecision:u,textureFormatReadable:a,textureTypeReadable:l,precision:h,logarithmicDepthBuffer:v,reverseDepthBuffer:x,maxTextures:S,maxVertexTextures:w,maxTextureSize:R,maxCubemapSize:C,maxAttributes:E,maxVertexUniforms:B,maxVaryings:L,maxFragmentUniforms:O,vertexTextures:z,maxSamples:G}}function IV(i){const e=this;let t=null,n=0,r=!1,s=!1;const a=new Yl,l=new Vn,u={value:null,needsUpdate:!1};this.uniform=u,this.numPlanes=0,this.numIntersection=0,this.init=function(v,x){const S=v.length!==0||x||n!==0||r;return r=x,n=v.length,S},this.beginShadows=function(){s=!0,g(null)},this.endShadows=function(){s=!1},this.setGlobalState=function(v,x){t=g(v,x,0)},this.setState=function(v,x,S){const w=v.clippingPlanes,R=v.clipIntersection,C=v.clipShadows,E=i.get(v);if(!r||w===null||w.length===0||s&&!C)s?g(null):h();else{const B=s?0:n,L=B*4;let O=E.clippingState||null;u.value=O,O=g(w,x,L,S);for(let z=0;z!==L;++z)O[z]=t[z];E.clippingState=O,this.numIntersection=R?this.numPlanes:0,this.numPlanes+=B}};function h(){u.value!==t&&(u.value=t,u.needsUpdate=n>0),e.numPlanes=n,e.numIntersection=0}function g(v,x,S,w){const R=v!==null?v.length:0;let C=null;if(R!==0){if(C=u.value,w!==!0||C===null){const E=S+R*4,B=x.matrixWorldInverse;l.getNormalMatrix(B),(C===null||C.length0){const h=new V7(u.height);return h.fromEquirectangularTexture(i,a),e.set(a,h),a.addEventListener("dispose",r),t(h.texture,a.mapping)}else return null}}return a}function r(a){const l=a.target;l.removeEventListener("dispose",r);const u=e.get(l);u!==void 0&&(e.delete(l),u.dispose())}function s(){e=new WeakMap}return{get:n,dispose:s}}const Hd=4,P5=[.125,.215,.35,.446,.526,.582],zf=20,w3=new kg,L5=new an;let M3=null,E3=0,C3=0,R3=!1;const Bf=(1+Math.sqrt(5))/2,vd=1/Bf,U5=[new ce(-Bf,vd,0),new ce(Bf,vd,0),new ce(-vd,0,Bf),new ce(vd,0,Bf),new ce(0,Bf,-vd),new ce(0,Bf,vd),new ce(-1,1,-1),new ce(1,1,-1),new ce(-1,1,1),new ce(1,1,1)];let B5=class{constructor(e){this._renderer=e,this._pingPongRenderTarget=null,this._lodMax=0,this._cubeSize=0,this._lodPlanes=[],this._sizeLods=[],this._sigmas=[],this._blurMaterial=null,this._cubemapMaterial=null,this._equirectMaterial=null,this._compileMaterial(this._blurMaterial)}fromScene(e,t=0,n=.1,r=100){M3=this._renderer.getRenderTarget(),E3=this._renderer.getActiveCubeFace(),C3=this._renderer.getActiveMipmapLevel(),R3=this._renderer.xr.enabled,this._renderer.xr.enabled=!1,this._setSize(256);const s=this._allocateTargets();return s.depthBuffer=!0,this._sceneToCubeUV(e,n,r,s),t>0&&this._blur(s,0,0,t),this._applyPMREM(s),this._cleanup(s),s}fromEquirectangular(e,t=null){return this._fromTexture(e,t)}fromCubemap(e,t=null){return this._fromTexture(e,t)}compileCubemapShader(){this._cubemapMaterial===null&&(this._cubemapMaterial=F5(),this._compileMaterial(this._cubemapMaterial))}compileEquirectangularShader(){this._equirectMaterial===null&&(this._equirectMaterial=I5(),this._compileMaterial(this._equirectMaterial))}dispose(){this._dispose(),this._cubemapMaterial!==null&&this._cubemapMaterial.dispose(),this._equirectMaterial!==null&&this._equirectMaterial.dispose()}_setSize(e){this._lodMax=Math.floor(Math.log2(e)),this._cubeSize=Math.pow(2,this._lodMax)}_dispose(){this._blurMaterial!==null&&this._blurMaterial.dispose(),this._pingPongRenderTarget!==null&&this._pingPongRenderTarget.dispose();for(let e=0;e2?L:0,L,L),g.setRenderTarget(r),R&&g.render(w,l),g.render(e,l)}w.geometry.dispose(),w.material.dispose(),g.toneMapping=x,g.autoClear=v,e.background=C}_textureToCubeUV(e,t){const n=this._renderer,r=e.mapping===Qo||e.mapping===Ko;r?(this._cubemapMaterial===null&&(this._cubemapMaterial=F5()),this._cubemapMaterial.uniforms.flipEnvMap.value=e.isRenderTargetTexture===!1?-1:1):this._equirectMaterial===null&&(this._equirectMaterial=I5());const s=r?this._cubemapMaterial:this._equirectMaterial,a=new zi(this._lodPlanes[0],s),l=s.uniforms;l.envMap.value=e;const u=this._cubeSize;W2(t,0,0,3*u,2*u),n.setRenderTarget(t),n.render(a,w3)}_applyPMREM(e){const t=this._renderer,n=t.autoClear;t.autoClear=!1;const r=this._lodPlanes.length;for(let s=1;szf&&console.warn(`sigmaRadians, ${s}, is too large and will clip, as it requested ${C} samples when the maximum is set to ${zf}`);const E=[];let B=0;for(let k=0;kL-Hd?r-L+Hd:0),G=4*(this._cubeSize-O);W2(t,z,G,3*O,2*O),u.setRenderTarget(t),u.render(v,w3)}};function kV(i){const e=[],t=[],n=[];let r=i;const s=i-Hd+1+P5.length;for(let a=0;ai-Hd?u=P5[a-i+Hd-1]:a===0&&(u=0),n.push(u);const h=1/(l-2),g=-h,v=1+h,x=[g,g,v,g,v,v,g,g,v,v,g,v],S=6,w=6,R=3,C=2,E=1,B=new Float32Array(R*w*S),L=new Float32Array(C*w*S),O=new Float32Array(E*w*S);for(let G=0;G2?0:-1,F=[k,H,0,k+2/3,H,0,k+2/3,H+1,0,k,H,0,k+2/3,H+1,0,k,H+1,0];B.set(F,R*w*G),L.set(x,C*w*G);const V=[G,G,G,G,G,G];O.set(V,E*w*G)}const z=new Ki;z.setAttribute("position",new wr(B,R)),z.setAttribute("uv",new wr(L,C)),z.setAttribute("faceIndex",new wr(O,E)),e.push(z),r>Hd&&r--}return{lodPlanes:e,sizeLods:t,sigmas:n}}function O5(i,e,t){const n=new qh(i,e,t);return n.texture.mapping=sA,n.texture.name="PMREM.cubeUv",n.scissorTest=!0,n}function W2(i,e,t,n,r){i.viewport.set(e,t,n,r),i.scissor.set(e,t,n,r)}function zV(i,e,t){const n=new Float32Array(zf),r=new ce(0,1,0);return new Ja({name:"SphericalGaussianBlur",defines:{n:zf,CUBEUV_TEXEL_WIDTH:1/e,CUBEUV_TEXEL_HEIGHT:1/t,CUBEUV_MAX_MIP:`${i}.0`},uniforms:{envMap:{value:null},samples:{value:1},weights:{value:n},latitudinal:{value:!1},dTheta:{value:0},mipInt:{value:0},poleAxis:{value:r}},vertexShader:oM(),fragmentShader:` - - precision mediump float; - precision mediump int; - - varying vec3 vOutputDirection; - - uniform sampler2D envMap; - uniform int samples; - uniform float weights[ n ]; - uniform bool latitudinal; - uniform float dTheta; - uniform float mipInt; - uniform vec3 poleAxis; - - #define ENVMAP_TYPE_CUBE_UV - #include - - vec3 getSample( float theta, vec3 axis ) { - - float cosTheta = cos( theta ); - // Rodrigues' axis-angle rotation - vec3 sampleDirection = vOutputDirection * cosTheta - + cross( axis, vOutputDirection ) * sin( theta ) - + axis * dot( axis, vOutputDirection ) * ( 1.0 - cosTheta ); - - return bilinearCubeUV( envMap, sampleDirection, mipInt ); - - } - - void main() { - - vec3 axis = latitudinal ? poleAxis : cross( poleAxis, vOutputDirection ); - - if ( all( equal( axis, vec3( 0.0 ) ) ) ) { - - axis = vec3( vOutputDirection.z, 0.0, - vOutputDirection.x ); - - } - - axis = normalize( axis ); - - gl_FragColor = vec4( 0.0, 0.0, 0.0, 1.0 ); - gl_FragColor.rgb += weights[ 0 ] * getSample( 0.0, axis ); - - for ( int i = 1; i < n; i++ ) { - - if ( i >= samples ) { - - break; - - } - - float theta = dTheta * float( i ); - gl_FragColor.rgb += weights[ i ] * getSample( -1.0 * theta, axis ); - gl_FragColor.rgb += weights[ i ] * getSample( theta, axis ); - - } - - } - `,blending:Qa,depthTest:!1,depthWrite:!1})}function I5(){return new Ja({name:"EquirectangularToCubeUV",uniforms:{envMap:{value:null}},vertexShader:oM(),fragmentShader:` - - precision mediump float; - precision mediump int; - - varying vec3 vOutputDirection; - - uniform sampler2D envMap; - - #include - - void main() { - - vec3 outputDirection = normalize( vOutputDirection ); - vec2 uv = equirectUv( outputDirection ); - - gl_FragColor = vec4( texture2D ( envMap, uv ).rgb, 1.0 ); - - } - `,blending:Qa,depthTest:!1,depthWrite:!1})}function F5(){return new Ja({name:"CubemapToCubeUV",uniforms:{envMap:{value:null},flipEnvMap:{value:-1}},vertexShader:oM(),fragmentShader:` - - precision mediump float; - precision mediump int; - - uniform float flipEnvMap; - - varying vec3 vOutputDirection; - - uniform samplerCube envMap; - - void main() { - - gl_FragColor = textureCube( envMap, vec3( flipEnvMap * vOutputDirection.x, vOutputDirection.yz ) ); - - } - `,blending:Qa,depthTest:!1,depthWrite:!1})}function oM(){return` - - precision mediump float; - precision mediump int; - - attribute float faceIndex; - - varying vec3 vOutputDirection; - - // RH coordinate system; PMREM face-indexing convention - vec3 getDirection( vec2 uv, float face ) { - - uv = 2.0 * uv - 1.0; - - vec3 direction = vec3( uv, 1.0 ); - - if ( face == 0.0 ) { - - direction = direction.zyx; // ( 1, v, u ) pos x - - } else if ( face == 1.0 ) { - - direction = direction.xzy; - direction.xz *= -1.0; // ( -u, 1, -v ) pos y - - } else if ( face == 2.0 ) { - - direction.x *= -1.0; // ( -u, v, 1 ) pos z - - } else if ( face == 3.0 ) { - - direction = direction.zyx; - direction.xz *= -1.0; // ( -1, v, -u ) neg x - - } else if ( face == 4.0 ) { - - direction = direction.xzy; - direction.xy *= -1.0; // ( -u, -1, v ) neg y - - } else if ( face == 5.0 ) { - - direction.z *= -1.0; // ( u, v, -1 ) neg z - - } - - return direction; - - } - - void main() { - - vOutputDirection = getDirection( uv, faceIndex ); - gl_Position = vec4( position, 1.0 ); - - } - `}function GV(i){let e=new WeakMap,t=null;function n(l){if(l&&l.isTexture){const u=l.mapping,h=u===zh||u===Gh,g=u===Qo||u===Ko;if(h||g){let v=e.get(l);const x=v!==void 0?v.texture.pmremVersion:0;if(l.isRenderTargetTexture&&l.pmremVersion!==x)return t===null&&(t=new B5(i)),v=h?t.fromEquirectangular(l,v):t.fromCubemap(l,v),v.texture.pmremVersion=l.pmremVersion,e.set(l,v),v.texture;if(v!==void 0)return v.texture;{const S=l.image;return h&&S&&S.height>0||g&&S&&r(S)?(t===null&&(t=new B5(i)),v=h?t.fromEquirectangular(l):t.fromCubemap(l),v.texture.pmremVersion=l.pmremVersion,e.set(l,v),l.addEventListener("dispose",s),v.texture):null}}}return l}function r(l){let u=0;const h=6;for(let g=0;ge.maxTextureSize&&(G=Math.ceil(z/e.maxTextureSize),z=e.maxTextureSize);const k=new Float32Array(z*G*4*v),H=new jw(k,z,G,v);H.type=$r,H.needsUpdate=!0;const F=O*4;for(let Y=0;Y0)return i;const r=e*t;let s=z5[r];if(s===void 0&&(s=new Float32Array(r),z5[r]=s),e!==0){n.toArray(s,0);for(let a=1,l=0;a!==e;++a)l+=t,i[a].toArray(s,l)}return s}function _s(i,e){if(i.length!==e.length)return!1;for(let t=0,n=i.length;t":" "} ${l}: ${t[a]}`)}return n.join(` -`)}const $5=new Vn;function GH(i){ai._getMatrix($5,ai.workingColorSpace,i);const e=`mat3( ${$5.elements.map(t=>t.toFixed(4))} )`;switch(ai.getTransfer(i)){case a_:return[e,"LinearTransferOETF"];case Vi:return[e,"sRGBTransferOETF"];default:return console.warn("THREE.WebGLProgram: Unsupported color space: ",i),[e,"LinearTransferOETF"]}}function X5(i,e,t){const n=i.getShaderParameter(e,i.COMPILE_STATUS),r=i.getShaderInfoLog(e).trim();if(n&&r==="")return"";const s=/ERROR: 0:(\d+)/.exec(r);if(s){const a=parseInt(s[1]);return t.toUpperCase()+` - -`+r+` - -`+zH(i.getShaderSource(e),a)}else return r}function qH(i,e){const t=GH(e);return[`vec4 ${i}( vec4 value ) {`,` return ${t[1]}( vec4( value.rgb * ${t[0]}, value.a ) );`,"}"].join(` -`)}function VH(i,e){let t;switch(e){case R7:t="Linear";break;case N7:t="Reinhard";break;case D7:t="Cineon";break;case P7:t="ACESFilmic";break;case L7:t="AgX";break;case U7:t="Neutral";break;case zF:t="Custom";break;default:console.warn("THREE.WebGLProgram: Unsupported toneMapping:",e),t="Linear"}return"vec3 "+i+"( vec3 color ) { return "+t+"ToneMapping( color ); }"}const $2=new ce;function HH(){ai.getLuminanceCoefficients($2);const i=$2.x.toFixed(4),e=$2.y.toFixed(4),t=$2.z.toFixed(4);return["float luminance( const in vec3 rgb ) {",` const vec3 weights = vec3( ${i}, ${e}, ${t} );`," return dot( weights, rgb );","}"].join(` -`)}function jH(i){return[i.extensionClipCullDistance?"#extension GL_ANGLE_clip_cull_distance : require":"",i.extensionMultiDraw?"#extension GL_ANGLE_multi_draw : require":""].filter(_m).join(` -`)}function WH(i){const e=[];for(const t in i){const n=i[t];n!==!1&&e.push("#define "+t+" "+n)}return e.join(` -`)}function $H(i,e){const t={},n=i.getProgramParameter(e,i.ACTIVE_ATTRIBUTES);for(let r=0;r/gm;function ZS(i){return i.replace(XH,QH)}const YH=new Map;function QH(i,e){let t=Zn[e];if(t===void 0){const n=YH.get(e);if(n!==void 0)t=Zn[n],console.warn('THREE.WebGLRenderer: Shader chunk "%s" has been deprecated. Use "%s" instead.',e,n);else throw new Error("Can not resolve #include <"+e+">")}return ZS(t)}const KH=/#pragma unroll_loop_start\s+for\s*\(\s*int\s+i\s*=\s*(\d+)\s*;\s*i\s*<\s*(\d+)\s*;\s*i\s*\+\+\s*\)\s*{([\s\S]+?)}\s+#pragma unroll_loop_end/g;function K5(i){return i.replace(KH,ZH)}function ZH(i,e,t,n){let r="";for(let s=parseInt(e);s0&&(C+=` -`),E=["#define SHADER_TYPE "+t.shaderType,"#define SHADER_NAME "+t.shaderName,w].filter(_m).join(` -`),E.length>0&&(E+=` -`)):(C=[Z5(t),"#define SHADER_TYPE "+t.shaderType,"#define SHADER_NAME "+t.shaderName,w,t.extensionClipCullDistance?"#define USE_CLIP_DISTANCE":"",t.batching?"#define USE_BATCHING":"",t.batchingColor?"#define USE_BATCHING_COLOR":"",t.instancing?"#define USE_INSTANCING":"",t.instancingColor?"#define USE_INSTANCING_COLOR":"",t.instancingMorph?"#define USE_INSTANCING_MORPH":"",t.useFog&&t.fog?"#define USE_FOG":"",t.useFog&&t.fogExp2?"#define FOG_EXP2":"",t.map?"#define USE_MAP":"",t.envMap?"#define USE_ENVMAP":"",t.envMap?"#define "+g:"",t.lightMap?"#define USE_LIGHTMAP":"",t.aoMap?"#define USE_AOMAP":"",t.bumpMap?"#define USE_BUMPMAP":"",t.normalMap?"#define USE_NORMALMAP":"",t.normalMapObjectSpace?"#define USE_NORMALMAP_OBJECTSPACE":"",t.normalMapTangentSpace?"#define USE_NORMALMAP_TANGENTSPACE":"",t.displacementMap?"#define USE_DISPLACEMENTMAP":"",t.emissiveMap?"#define USE_EMISSIVEMAP":"",t.anisotropy?"#define USE_ANISOTROPY":"",t.anisotropyMap?"#define USE_ANISOTROPYMAP":"",t.clearcoatMap?"#define USE_CLEARCOATMAP":"",t.clearcoatRoughnessMap?"#define USE_CLEARCOAT_ROUGHNESSMAP":"",t.clearcoatNormalMap?"#define USE_CLEARCOAT_NORMALMAP":"",t.iridescenceMap?"#define USE_IRIDESCENCEMAP":"",t.iridescenceThicknessMap?"#define USE_IRIDESCENCE_THICKNESSMAP":"",t.specularMap?"#define USE_SPECULARMAP":"",t.specularColorMap?"#define USE_SPECULAR_COLORMAP":"",t.specularIntensityMap?"#define USE_SPECULAR_INTENSITYMAP":"",t.roughnessMap?"#define USE_ROUGHNESSMAP":"",t.metalnessMap?"#define USE_METALNESSMAP":"",t.alphaMap?"#define USE_ALPHAMAP":"",t.alphaHash?"#define USE_ALPHAHASH":"",t.transmission?"#define USE_TRANSMISSION":"",t.transmissionMap?"#define USE_TRANSMISSIONMAP":"",t.thicknessMap?"#define USE_THICKNESSMAP":"",t.sheenColorMap?"#define USE_SHEEN_COLORMAP":"",t.sheenRoughnessMap?"#define USE_SHEEN_ROUGHNESSMAP":"",t.mapUv?"#define MAP_UV "+t.mapUv:"",t.alphaMapUv?"#define ALPHAMAP_UV "+t.alphaMapUv:"",t.lightMapUv?"#define LIGHTMAP_UV "+t.lightMapUv:"",t.aoMapUv?"#define AOMAP_UV "+t.aoMapUv:"",t.emissiveMapUv?"#define EMISSIVEMAP_UV "+t.emissiveMapUv:"",t.bumpMapUv?"#define BUMPMAP_UV "+t.bumpMapUv:"",t.normalMapUv?"#define NORMALMAP_UV "+t.normalMapUv:"",t.displacementMapUv?"#define DISPLACEMENTMAP_UV "+t.displacementMapUv:"",t.metalnessMapUv?"#define METALNESSMAP_UV "+t.metalnessMapUv:"",t.roughnessMapUv?"#define ROUGHNESSMAP_UV "+t.roughnessMapUv:"",t.anisotropyMapUv?"#define ANISOTROPYMAP_UV "+t.anisotropyMapUv:"",t.clearcoatMapUv?"#define CLEARCOATMAP_UV "+t.clearcoatMapUv:"",t.clearcoatNormalMapUv?"#define CLEARCOAT_NORMALMAP_UV "+t.clearcoatNormalMapUv:"",t.clearcoatRoughnessMapUv?"#define CLEARCOAT_ROUGHNESSMAP_UV "+t.clearcoatRoughnessMapUv:"",t.iridescenceMapUv?"#define IRIDESCENCEMAP_UV "+t.iridescenceMapUv:"",t.iridescenceThicknessMapUv?"#define IRIDESCENCE_THICKNESSMAP_UV "+t.iridescenceThicknessMapUv:"",t.sheenColorMapUv?"#define SHEEN_COLORMAP_UV "+t.sheenColorMapUv:"",t.sheenRoughnessMapUv?"#define SHEEN_ROUGHNESSMAP_UV "+t.sheenRoughnessMapUv:"",t.specularMapUv?"#define SPECULARMAP_UV "+t.specularMapUv:"",t.specularColorMapUv?"#define SPECULAR_COLORMAP_UV "+t.specularColorMapUv:"",t.specularIntensityMapUv?"#define SPECULAR_INTENSITYMAP_UV "+t.specularIntensityMapUv:"",t.transmissionMapUv?"#define TRANSMISSIONMAP_UV "+t.transmissionMapUv:"",t.thicknessMapUv?"#define THICKNESSMAP_UV "+t.thicknessMapUv:"",t.vertexTangents&&t.flatShading===!1?"#define USE_TANGENT":"",t.vertexColors?"#define USE_COLOR":"",t.vertexAlphas?"#define USE_COLOR_ALPHA":"",t.vertexUv1s?"#define USE_UV1":"",t.vertexUv2s?"#define USE_UV2":"",t.vertexUv3s?"#define USE_UV3":"",t.pointsUvs?"#define USE_POINTS_UV":"",t.flatShading?"#define FLAT_SHADED":"",t.skinning?"#define USE_SKINNING":"",t.morphTargets?"#define USE_MORPHTARGETS":"",t.morphNormals&&t.flatShading===!1?"#define USE_MORPHNORMALS":"",t.morphColors?"#define USE_MORPHCOLORS":"",t.morphTargetsCount>0?"#define MORPHTARGETS_TEXTURE_STRIDE "+t.morphTextureStride:"",t.morphTargetsCount>0?"#define MORPHTARGETS_COUNT "+t.morphTargetsCount:"",t.doubleSided?"#define DOUBLE_SIDED":"",t.flipSided?"#define FLIP_SIDED":"",t.shadowMapEnabled?"#define USE_SHADOWMAP":"",t.shadowMapEnabled?"#define "+u:"",t.sizeAttenuation?"#define USE_SIZEATTENUATION":"",t.numLightProbes>0?"#define USE_LIGHT_PROBES":"",t.logarithmicDepthBuffer?"#define USE_LOGDEPTHBUF":"",t.reverseDepthBuffer?"#define USE_REVERSEDEPTHBUF":"","uniform mat4 modelMatrix;","uniform mat4 modelViewMatrix;","uniform mat4 projectionMatrix;","uniform mat4 viewMatrix;","uniform mat3 normalMatrix;","uniform vec3 cameraPosition;","uniform bool isOrthographic;","#ifdef USE_INSTANCING"," attribute mat4 instanceMatrix;","#endif","#ifdef USE_INSTANCING_COLOR"," attribute vec3 instanceColor;","#endif","#ifdef USE_INSTANCING_MORPH"," uniform sampler2D morphTexture;","#endif","attribute vec3 position;","attribute vec3 normal;","attribute vec2 uv;","#ifdef USE_UV1"," attribute vec2 uv1;","#endif","#ifdef USE_UV2"," attribute vec2 uv2;","#endif","#ifdef USE_UV3"," attribute vec2 uv3;","#endif","#ifdef USE_TANGENT"," attribute vec4 tangent;","#endif","#if defined( USE_COLOR_ALPHA )"," attribute vec4 color;","#elif defined( USE_COLOR )"," attribute vec3 color;","#endif","#ifdef USE_SKINNING"," attribute vec4 skinIndex;"," attribute vec4 skinWeight;","#endif",` -`].filter(_m).join(` -`),E=[Z5(t),"#define SHADER_TYPE "+t.shaderType,"#define SHADER_NAME "+t.shaderName,w,t.useFog&&t.fog?"#define USE_FOG":"",t.useFog&&t.fogExp2?"#define FOG_EXP2":"",t.alphaToCoverage?"#define ALPHA_TO_COVERAGE":"",t.map?"#define USE_MAP":"",t.matcap?"#define USE_MATCAP":"",t.envMap?"#define USE_ENVMAP":"",t.envMap?"#define "+h:"",t.envMap?"#define "+g:"",t.envMap?"#define "+v:"",x?"#define CUBEUV_TEXEL_WIDTH "+x.texelWidth:"",x?"#define CUBEUV_TEXEL_HEIGHT "+x.texelHeight:"",x?"#define CUBEUV_MAX_MIP "+x.maxMip+".0":"",t.lightMap?"#define USE_LIGHTMAP":"",t.aoMap?"#define USE_AOMAP":"",t.bumpMap?"#define USE_BUMPMAP":"",t.normalMap?"#define USE_NORMALMAP":"",t.normalMapObjectSpace?"#define USE_NORMALMAP_OBJECTSPACE":"",t.normalMapTangentSpace?"#define USE_NORMALMAP_TANGENTSPACE":"",t.emissiveMap?"#define USE_EMISSIVEMAP":"",t.anisotropy?"#define USE_ANISOTROPY":"",t.anisotropyMap?"#define USE_ANISOTROPYMAP":"",t.clearcoat?"#define USE_CLEARCOAT":"",t.clearcoatMap?"#define USE_CLEARCOATMAP":"",t.clearcoatRoughnessMap?"#define USE_CLEARCOAT_ROUGHNESSMAP":"",t.clearcoatNormalMap?"#define USE_CLEARCOAT_NORMALMAP":"",t.dispersion?"#define USE_DISPERSION":"",t.iridescence?"#define USE_IRIDESCENCE":"",t.iridescenceMap?"#define USE_IRIDESCENCEMAP":"",t.iridescenceThicknessMap?"#define USE_IRIDESCENCE_THICKNESSMAP":"",t.specularMap?"#define USE_SPECULARMAP":"",t.specularColorMap?"#define USE_SPECULAR_COLORMAP":"",t.specularIntensityMap?"#define USE_SPECULAR_INTENSITYMAP":"",t.roughnessMap?"#define USE_ROUGHNESSMAP":"",t.metalnessMap?"#define USE_METALNESSMAP":"",t.alphaMap?"#define USE_ALPHAMAP":"",t.alphaTest?"#define USE_ALPHATEST":"",t.alphaHash?"#define USE_ALPHAHASH":"",t.sheen?"#define USE_SHEEN":"",t.sheenColorMap?"#define USE_SHEEN_COLORMAP":"",t.sheenRoughnessMap?"#define USE_SHEEN_ROUGHNESSMAP":"",t.transmission?"#define USE_TRANSMISSION":"",t.transmissionMap?"#define USE_TRANSMISSIONMAP":"",t.thicknessMap?"#define USE_THICKNESSMAP":"",t.vertexTangents&&t.flatShading===!1?"#define USE_TANGENT":"",t.vertexColors||t.instancingColor||t.batchingColor?"#define USE_COLOR":"",t.vertexAlphas?"#define USE_COLOR_ALPHA":"",t.vertexUv1s?"#define USE_UV1":"",t.vertexUv2s?"#define USE_UV2":"",t.vertexUv3s?"#define USE_UV3":"",t.pointsUvs?"#define USE_POINTS_UV":"",t.gradientMap?"#define USE_GRADIENTMAP":"",t.flatShading?"#define FLAT_SHADED":"",t.doubleSided?"#define DOUBLE_SIDED":"",t.flipSided?"#define FLIP_SIDED":"",t.shadowMapEnabled?"#define USE_SHADOWMAP":"",t.shadowMapEnabled?"#define "+u:"",t.premultipliedAlpha?"#define PREMULTIPLIED_ALPHA":"",t.numLightProbes>0?"#define USE_LIGHT_PROBES":"",t.decodeVideoTexture?"#define DECODE_VIDEO_TEXTURE":"",t.decodeVideoTextureEmissive?"#define DECODE_VIDEO_TEXTURE_EMISSIVE":"",t.logarithmicDepthBuffer?"#define USE_LOGDEPTHBUF":"",t.reverseDepthBuffer?"#define USE_REVERSEDEPTHBUF":"","uniform mat4 viewMatrix;","uniform vec3 cameraPosition;","uniform bool isOrthographic;",t.toneMapping!==Za?"#define TONE_MAPPING":"",t.toneMapping!==Za?Zn.tonemapping_pars_fragment:"",t.toneMapping!==Za?VH("toneMapping",t.toneMapping):"",t.dithering?"#define DITHERING":"",t.opaque?"#define OPAQUE":"",Zn.colorspace_pars_fragment,qH("linearToOutputTexel",t.outputColorSpace),HH(),t.useDepthPacking?"#define DEPTH_PACKING "+t.depthPacking:"",` -`].filter(_m).join(` -`)),a=ZS(a),a=Y5(a,t),a=Q5(a,t),l=ZS(l),l=Y5(l,t),l=Q5(l,t),a=K5(a),l=K5(l),t.isRawShaderMaterial!==!0&&(B=`#version 300 es -`,C=[S,"#define attribute in","#define varying out","#define texture2D texture"].join(` -`)+` -`+C,E=["#define varying in",t.glslVersion===WC?"":"layout(location = 0) out highp vec4 pc_fragColor;",t.glslVersion===WC?"":"#define gl_FragColor pc_fragColor","#define gl_FragDepthEXT gl_FragDepth","#define texture2D texture","#define textureCube texture","#define texture2DProj textureProj","#define texture2DLodEXT textureLod","#define texture2DProjLodEXT textureProjLod","#define textureCubeLodEXT textureLod","#define texture2DGradEXT textureGrad","#define texture2DProjGradEXT textureProjGrad","#define textureCubeGradEXT textureGrad"].join(` -`)+` -`+E);const L=B+C+a,O=B+E+l,z=W5(r,r.VERTEX_SHADER,L),G=W5(r,r.FRAGMENT_SHADER,O);r.attachShader(R,z),r.attachShader(R,G),t.index0AttributeName!==void 0?r.bindAttribLocation(R,0,t.index0AttributeName):t.morphTargets===!0&&r.bindAttribLocation(R,0,"position"),r.linkProgram(R);function k(Y){if(i.debug.checkShaderErrors){const ee=r.getProgramInfoLog(R).trim(),ne=r.getShaderInfoLog(z).trim(),se=r.getShaderInfoLog(G).trim();let te=!0,Q=!0;if(r.getProgramParameter(R,r.LINK_STATUS)===!1)if(te=!1,typeof i.debug.onShaderError=="function")i.debug.onShaderError(r,R,z,G);else{const le=X5(r,z,"vertex"),de=X5(r,G,"fragment");console.error("THREE.WebGLProgram: Shader Error "+r.getError()+" - VALIDATE_STATUS "+r.getProgramParameter(R,r.VALIDATE_STATUS)+` - -Material Name: `+Y.name+` -Material Type: `+Y.type+` - -Program Info Log: `+ee+` -`+le+` -`+de)}else ee!==""?console.warn("THREE.WebGLProgram: Program Info Log:",ee):(ne===""||se==="")&&(Q=!1);Q&&(Y.diagnostics={runnable:te,programLog:ee,vertexShader:{log:ne,prefix:C},fragmentShader:{log:se,prefix:E}})}r.deleteShader(z),r.deleteShader(G),H=new qv(r,R),F=$H(r,R)}let H;this.getUniforms=function(){return H===void 0&&k(this),H};let F;this.getAttributes=function(){return F===void 0&&k(this),F};let V=t.rendererExtensionParallelShaderCompile===!1;return this.isReady=function(){return V===!1&&(V=r.getProgramParameter(R,FH)),V},this.destroy=function(){n.releaseStatesOfProgram(this),r.deleteProgram(R),this.program=void 0},this.type=t.shaderType,this.name=t.shaderName,this.id=kH++,this.cacheKey=e,this.usedTimes=1,this.program=R,this.vertexShader=z,this.fragmentShader=G,this}let sj=0;class aj{constructor(){this.shaderCache=new Map,this.materialCache=new Map}update(e){const t=e.vertexShader,n=e.fragmentShader,r=this._getShaderStage(t),s=this._getShaderStage(n),a=this._getShaderCacheForMaterial(e);return a.has(r)===!1&&(a.add(r),r.usedTimes++),a.has(s)===!1&&(a.add(s),s.usedTimes++),this}remove(e){const t=this.materialCache.get(e);for(const n of t)n.usedTimes--,n.usedTimes===0&&this.shaderCache.delete(n.code);return this.materialCache.delete(e),this}getVertexShaderID(e){return this._getShaderStage(e.vertexShader).id}getFragmentShaderID(e){return this._getShaderStage(e.fragmentShader).id}dispose(){this.shaderCache.clear(),this.materialCache.clear()}_getShaderCacheForMaterial(e){const t=this.materialCache;let n=t.get(e);return n===void 0&&(n=new Set,t.set(e,n)),n}_getShaderStage(e){const t=this.shaderCache;let n=t.get(e);return n===void 0&&(n=new oj(e),t.set(e,n)),n}}class oj{constructor(e){this.id=sj++,this.code=e,this.usedTimes=0}}function lj(i,e,t,n,r,s,a){const l=new Ww,u=new aj,h=new Set,g=[],v=r.logarithmicDepthBuffer,x=r.vertexTextures;let S=r.precision;const w={MeshDepthMaterial:"depth",MeshDistanceMaterial:"distanceRGBA",MeshNormalMaterial:"normal",MeshBasicMaterial:"basic",MeshLambertMaterial:"lambert",MeshPhongMaterial:"phong",MeshToonMaterial:"toon",MeshStandardMaterial:"physical",MeshPhysicalMaterial:"physical",MeshMatcapMaterial:"matcap",LineBasicMaterial:"basic",LineDashedMaterial:"dashed",PointsMaterial:"points",ShadowMaterial:"shadow",SpriteMaterial:"sprite"};function R(F){return h.add(F),F===0?"uv":`uv${F}`}function C(F,V,Y,ee,ne){const se=ee.fog,te=ne.geometry,Q=F.isMeshStandardMaterial?ee.environment:null,le=(F.isMeshStandardMaterial?t:e).get(F.envMap||Q),de=le&&le.mapping===sA?le.image.height:null,Te=w[F.type];F.precision!==null&&(S=r.getMaxPrecision(F.precision),S!==F.precision&&console.warn("THREE.WebGLProgram.getParameters:",F.precision,"not supported, using",S,"instead."));const Se=te.morphAttributes.position||te.morphAttributes.normal||te.morphAttributes.color,ue=Se!==void 0?Se.length:0;let be=0;te.morphAttributes.position!==void 0&&(be=1),te.morphAttributes.normal!==void 0&&(be=2),te.morphAttributes.color!==void 0&&(be=3);let We,Ee,Ge,ye;if(Te){const pn=Ga[Te];We=pn.vertexShader,Ee=pn.fragmentShader}else We=F.vertexShader,Ee=F.fragmentShader,u.update(F),Ge=u.getVertexShaderID(F),ye=u.getFragmentShaderID(F);const Pe=i.getRenderTarget(),pt=i.state.buffers.depth.getReversed(),vt=ne.isInstancedMesh===!0,Tt=ne.isBatchedMesh===!0,It=!!F.map,Qe=!!F.matcap,it=!!le,he=!!F.aoMap,Ft=!!F.lightMap,ct=!!F.bumpMap,Dt=!!F.normalMap,gt=!!F.displacementMap,tn=!!F.emissiveMap,_t=!!F.metalnessMap,fe=!!F.roughnessMap,X=F.anisotropy>0,oe=F.clearcoat>0,Me=F.dispersion>0,Fe=F.iridescence>0,ze=F.sheen>0,Et=F.transmission>0,Rt=X&&!!F.anisotropyMap,Ht=oe&&!!F.clearcoatMap,Xt=oe&&!!F.clearcoatNormalMap,yt=oe&&!!F.clearcoatRoughnessMap,Zt=Fe&&!!F.iridescenceMap,sn=Fe&&!!F.iridescenceThicknessMap,jt=ze&&!!F.sheenColorMap,kt=ze&&!!F.sheenRoughnessMap,qt=!!F.specularMap,In=!!F.specularColorMap,Mi=!!F.specularIntensityMap,ge=Et&&!!F.transmissionMap,Wt=Et&&!!F.thicknessMap,nt=!!F.gradientMap,xt=!!F.alphaMap,$t=F.alphaTest>0,zt=!!F.alphaHash,xn=!!F.extensions;let qi=Za;F.toneMapped&&(Pe===null||Pe.isXRRenderTarget===!0)&&(qi=i.toneMapping);const rr={shaderID:Te,shaderType:F.type,shaderName:F.name,vertexShader:We,fragmentShader:Ee,defines:F.defines,customVertexShaderID:Ge,customFragmentShaderID:ye,isRawShaderMaterial:F.isRawShaderMaterial===!0,glslVersion:F.glslVersion,precision:S,batching:Tt,batchingColor:Tt&&ne._colorsTexture!==null,instancing:vt,instancingColor:vt&&ne.instanceColor!==null,instancingMorph:vt&&ne.morphTexture!==null,supportsVertexTextures:x,outputColorSpace:Pe===null?i.outputColorSpace:Pe.isXRRenderTarget===!0?Pe.texture.colorSpace:Ro,alphaToCoverage:!!F.alphaToCoverage,map:It,matcap:Qe,envMap:it,envMapMode:it&&le.mapping,envMapCubeUVHeight:de,aoMap:he,lightMap:Ft,bumpMap:ct,normalMap:Dt,displacementMap:x&>,emissiveMap:tn,normalMapObjectSpace:Dt&&F.normalMapType===B7,normalMapTangentSpace:Dt&&F.normalMapType===Dc,metalnessMap:_t,roughnessMap:fe,anisotropy:X,anisotropyMap:Rt,clearcoat:oe,clearcoatMap:Ht,clearcoatNormalMap:Xt,clearcoatRoughnessMap:yt,dispersion:Me,iridescence:Fe,iridescenceMap:Zt,iridescenceThicknessMap:sn,sheen:ze,sheenColorMap:jt,sheenRoughnessMap:kt,specularMap:qt,specularColorMap:In,specularIntensityMap:Mi,transmission:Et,transmissionMap:ge,thicknessMap:Wt,gradientMap:nt,opaque:F.transparent===!1&&F.blending===Ka&&F.alphaToCoverage===!1,alphaMap:xt,alphaTest:$t,alphaHash:zt,combine:F.combine,mapUv:It&&R(F.map.channel),aoMapUv:he&&R(F.aoMap.channel),lightMapUv:Ft&&R(F.lightMap.channel),bumpMapUv:ct&&R(F.bumpMap.channel),normalMapUv:Dt&&R(F.normalMap.channel),displacementMapUv:gt&&R(F.displacementMap.channel),emissiveMapUv:tn&&R(F.emissiveMap.channel),metalnessMapUv:_t&&R(F.metalnessMap.channel),roughnessMapUv:fe&&R(F.roughnessMap.channel),anisotropyMapUv:Rt&&R(F.anisotropyMap.channel),clearcoatMapUv:Ht&&R(F.clearcoatMap.channel),clearcoatNormalMapUv:Xt&&R(F.clearcoatNormalMap.channel),clearcoatRoughnessMapUv:yt&&R(F.clearcoatRoughnessMap.channel),iridescenceMapUv:Zt&&R(F.iridescenceMap.channel),iridescenceThicknessMapUv:sn&&R(F.iridescenceThicknessMap.channel),sheenColorMapUv:jt&&R(F.sheenColorMap.channel),sheenRoughnessMapUv:kt&&R(F.sheenRoughnessMap.channel),specularMapUv:qt&&R(F.specularMap.channel),specularColorMapUv:In&&R(F.specularColorMap.channel),specularIntensityMapUv:Mi&&R(F.specularIntensityMap.channel),transmissionMapUv:ge&&R(F.transmissionMap.channel),thicknessMapUv:Wt&&R(F.thicknessMap.channel),alphaMapUv:xt&&R(F.alphaMap.channel),vertexTangents:!!te.attributes.tangent&&(Dt||X),vertexColors:F.vertexColors,vertexAlphas:F.vertexColors===!0&&!!te.attributes.color&&te.attributes.color.itemSize===4,pointsUvs:ne.isPoints===!0&&!!te.attributes.uv&&(It||xt),fog:!!se,useFog:F.fog===!0,fogExp2:!!se&&se.isFogExp2,flatShading:F.flatShading===!0,sizeAttenuation:F.sizeAttenuation===!0,logarithmicDepthBuffer:v,reverseDepthBuffer:pt,skinning:ne.isSkinnedMesh===!0,morphTargets:te.morphAttributes.position!==void 0,morphNormals:te.morphAttributes.normal!==void 0,morphColors:te.morphAttributes.color!==void 0,morphTargetsCount:ue,morphTextureStride:be,numDirLights:V.directional.length,numPointLights:V.point.length,numSpotLights:V.spot.length,numSpotLightMaps:V.spotLightMap.length,numRectAreaLights:V.rectArea.length,numHemiLights:V.hemi.length,numDirLightShadows:V.directionalShadowMap.length,numPointLightShadows:V.pointShadowMap.length,numSpotLightShadows:V.spotShadowMap.length,numSpotLightShadowsWithMaps:V.numSpotLightShadowsWithMaps,numLightProbes:V.numLightProbes,numClippingPlanes:a.numPlanes,numClipIntersection:a.numIntersection,dithering:F.dithering,shadowMapEnabled:i.shadowMap.enabled&&Y.length>0,shadowMapType:i.shadowMap.type,toneMapping:qi,decodeVideoTexture:It&&F.map.isVideoTexture===!0&&ai.getTransfer(F.map.colorSpace)===Vi,decodeVideoTextureEmissive:tn&&F.emissiveMap.isVideoTexture===!0&&ai.getTransfer(F.emissiveMap.colorSpace)===Vi,premultipliedAlpha:F.premultipliedAlpha,doubleSided:F.side===as,flipSided:F.side===hr,useDepthPacking:F.depthPacking>=0,depthPacking:F.depthPacking||0,index0AttributeName:F.index0AttributeName,extensionClipCullDistance:xn&&F.extensions.clipCullDistance===!0&&n.has("WEBGL_clip_cull_distance"),extensionMultiDraw:(xn&&F.extensions.multiDraw===!0||Tt)&&n.has("WEBGL_multi_draw"),rendererExtensionParallelShaderCompile:n.has("KHR_parallel_shader_compile"),customProgramCacheKey:F.customProgramCacheKey()};return rr.vertexUv1s=h.has(1),rr.vertexUv2s=h.has(2),rr.vertexUv3s=h.has(3),h.clear(),rr}function E(F){const V=[];if(F.shaderID?V.push(F.shaderID):(V.push(F.customVertexShaderID),V.push(F.customFragmentShaderID)),F.defines!==void 0)for(const Y in F.defines)V.push(Y),V.push(F.defines[Y]);return F.isRawShaderMaterial===!1&&(B(V,F),L(V,F),V.push(i.outputColorSpace)),V.push(F.customProgramCacheKey),V.join()}function B(F,V){F.push(V.precision),F.push(V.outputColorSpace),F.push(V.envMapMode),F.push(V.envMapCubeUVHeight),F.push(V.mapUv),F.push(V.alphaMapUv),F.push(V.lightMapUv),F.push(V.aoMapUv),F.push(V.bumpMapUv),F.push(V.normalMapUv),F.push(V.displacementMapUv),F.push(V.emissiveMapUv),F.push(V.metalnessMapUv),F.push(V.roughnessMapUv),F.push(V.anisotropyMapUv),F.push(V.clearcoatMapUv),F.push(V.clearcoatNormalMapUv),F.push(V.clearcoatRoughnessMapUv),F.push(V.iridescenceMapUv),F.push(V.iridescenceThicknessMapUv),F.push(V.sheenColorMapUv),F.push(V.sheenRoughnessMapUv),F.push(V.specularMapUv),F.push(V.specularColorMapUv),F.push(V.specularIntensityMapUv),F.push(V.transmissionMapUv),F.push(V.thicknessMapUv),F.push(V.combine),F.push(V.fogExp2),F.push(V.sizeAttenuation),F.push(V.morphTargetsCount),F.push(V.morphAttributeCount),F.push(V.numDirLights),F.push(V.numPointLights),F.push(V.numSpotLights),F.push(V.numSpotLightMaps),F.push(V.numHemiLights),F.push(V.numRectAreaLights),F.push(V.numDirLightShadows),F.push(V.numPointLightShadows),F.push(V.numSpotLightShadows),F.push(V.numSpotLightShadowsWithMaps),F.push(V.numLightProbes),F.push(V.shadowMapType),F.push(V.toneMapping),F.push(V.numClippingPlanes),F.push(V.numClipIntersection),F.push(V.depthPacking)}function L(F,V){l.disableAll(),V.supportsVertexTextures&&l.enable(0),V.instancing&&l.enable(1),V.instancingColor&&l.enable(2),V.instancingMorph&&l.enable(3),V.matcap&&l.enable(4),V.envMap&&l.enable(5),V.normalMapObjectSpace&&l.enable(6),V.normalMapTangentSpace&&l.enable(7),V.clearcoat&&l.enable(8),V.iridescence&&l.enable(9),V.alphaTest&&l.enable(10),V.vertexColors&&l.enable(11),V.vertexAlphas&&l.enable(12),V.vertexUv1s&&l.enable(13),V.vertexUv2s&&l.enable(14),V.vertexUv3s&&l.enable(15),V.vertexTangents&&l.enable(16),V.anisotropy&&l.enable(17),V.alphaHash&&l.enable(18),V.batching&&l.enable(19),V.dispersion&&l.enable(20),V.batchingColor&&l.enable(21),F.push(l.mask),l.disableAll(),V.fog&&l.enable(0),V.useFog&&l.enable(1),V.flatShading&&l.enable(2),V.logarithmicDepthBuffer&&l.enable(3),V.reverseDepthBuffer&&l.enable(4),V.skinning&&l.enable(5),V.morphTargets&&l.enable(6),V.morphNormals&&l.enable(7),V.morphColors&&l.enable(8),V.premultipliedAlpha&&l.enable(9),V.shadowMapEnabled&&l.enable(10),V.doubleSided&&l.enable(11),V.flipSided&&l.enable(12),V.useDepthPacking&&l.enable(13),V.dithering&&l.enable(14),V.transmission&&l.enable(15),V.sheen&&l.enable(16),V.opaque&&l.enable(17),V.pointsUvs&&l.enable(18),V.decodeVideoTexture&&l.enable(19),V.decodeVideoTextureEmissive&&l.enable(20),V.alphaToCoverage&&l.enable(21),F.push(l.mask)}function O(F){const V=w[F.type];let Y;if(V){const ee=Ga[V];Y=vy.clone(ee.uniforms)}else Y=F.uniforms;return Y}function z(F,V){let Y;for(let ee=0,ne=g.length;ee0?n.push(E):S.transparent===!0?r.push(E):t.push(E)}function u(v,x,S,w,R,C){const E=a(v,x,S,w,R,C);S.transmission>0?n.unshift(E):S.transparent===!0?r.unshift(E):t.unshift(E)}function h(v,x){t.length>1&&t.sort(v||cj),n.length>1&&n.sort(x||J5),r.length>1&&r.sort(x||J5)}function g(){for(let v=e,x=i.length;v=s.length?(a=new e6,s.push(a)):a=s[r],a}function t(){i=new WeakMap}return{get:e,dispose:t}}function fj(){const i={};return{get:function(e){if(i[e.id]!==void 0)return i[e.id];let t;switch(e.type){case"DirectionalLight":t={direction:new ce,color:new an};break;case"SpotLight":t={position:new ce,direction:new ce,color:new an,distance:0,coneCos:0,penumbraCos:0,decay:0};break;case"PointLight":t={position:new ce,color:new an,distance:0,decay:0};break;case"HemisphereLight":t={direction:new ce,skyColor:new an,groundColor:new an};break;case"RectAreaLight":t={color:new an,position:new ce,halfWidth:new ce,halfHeight:new ce};break}return i[e.id]=t,t}}}function Aj(){const i={};return{get:function(e){if(i[e.id]!==void 0)return i[e.id];let t;switch(e.type){case"DirectionalLight":t={shadowIntensity:1,shadowBias:0,shadowNormalBias:0,shadowRadius:1,shadowMapSize:new ft};break;case"SpotLight":t={shadowIntensity:1,shadowBias:0,shadowNormalBias:0,shadowRadius:1,shadowMapSize:new ft};break;case"PointLight":t={shadowIntensity:1,shadowBias:0,shadowNormalBias:0,shadowRadius:1,shadowMapSize:new ft,shadowCameraNear:1,shadowCameraFar:1e3};break}return i[e.id]=t,t}}}let dj=0;function pj(i,e){return(e.castShadow?2:0)-(i.castShadow?2:0)+(e.map?1:0)-(i.map?1:0)}function mj(i){const e=new fj,t=Aj(),n={version:0,hash:{directionalLength:-1,pointLength:-1,spotLength:-1,rectAreaLength:-1,hemiLength:-1,numDirectionalShadows:-1,numPointShadows:-1,numSpotShadows:-1,numSpotMaps:-1,numLightProbes:-1},ambient:[0,0,0],probe:[],directional:[],directionalShadow:[],directionalShadowMap:[],directionalShadowMatrix:[],spot:[],spotLightMap:[],spotShadow:[],spotShadowMap:[],spotLightMatrix:[],rectArea:[],rectAreaLTC1:null,rectAreaLTC2:null,point:[],pointShadow:[],pointShadowMap:[],pointShadowMatrix:[],hemi:[],numSpotLightShadowsWithMaps:0,numLightProbes:0};for(let h=0;h<9;h++)n.probe.push(new ce);const r=new ce,s=new kn,a=new kn;function l(h){let g=0,v=0,x=0;for(let F=0;F<9;F++)n.probe[F].set(0,0,0);let S=0,w=0,R=0,C=0,E=0,B=0,L=0,O=0,z=0,G=0,k=0;h.sort(pj);for(let F=0,V=h.length;F0&&(i.has("OES_texture_float_linear")===!0?(n.rectAreaLTC1=Qt.LTC_FLOAT_1,n.rectAreaLTC2=Qt.LTC_FLOAT_2):(n.rectAreaLTC1=Qt.LTC_HALF_1,n.rectAreaLTC2=Qt.LTC_HALF_2)),n.ambient[0]=g,n.ambient[1]=v,n.ambient[2]=x;const H=n.hash;(H.directionalLength!==S||H.pointLength!==w||H.spotLength!==R||H.rectAreaLength!==C||H.hemiLength!==E||H.numDirectionalShadows!==B||H.numPointShadows!==L||H.numSpotShadows!==O||H.numSpotMaps!==z||H.numLightProbes!==k)&&(n.directional.length=S,n.spot.length=R,n.rectArea.length=C,n.point.length=w,n.hemi.length=E,n.directionalShadow.length=B,n.directionalShadowMap.length=B,n.pointShadow.length=L,n.pointShadowMap.length=L,n.spotShadow.length=O,n.spotShadowMap.length=O,n.directionalShadowMatrix.length=B,n.pointShadowMatrix.length=L,n.spotLightMatrix.length=O+z-G,n.spotLightMap.length=z,n.numSpotLightShadowsWithMaps=G,n.numLightProbes=k,H.directionalLength=S,H.pointLength=w,H.spotLength=R,H.rectAreaLength=C,H.hemiLength=E,H.numDirectionalShadows=B,H.numPointShadows=L,H.numSpotShadows=O,H.numSpotMaps=z,H.numLightProbes=k,n.version=dj++)}function u(h,g){let v=0,x=0,S=0,w=0,R=0;const C=g.matrixWorldInverse;for(let E=0,B=h.length;E=a.length?(l=new t6(i),a.push(l)):l=a[s],l}function n(){e=new WeakMap}return{get:t,dispose:n}}const vj=`void main() { - gl_Position = vec4( position, 1.0 ); -}`,_j=`uniform sampler2D shadow_pass; -uniform vec2 resolution; -uniform float radius; -#include -void main() { - const float samples = float( VSM_SAMPLES ); - float mean = 0.0; - float squared_mean = 0.0; - float uvStride = samples <= 1.0 ? 0.0 : 2.0 / ( samples - 1.0 ); - float uvStart = samples <= 1.0 ? 0.0 : - 1.0; - for ( float i = 0.0; i < samples; i ++ ) { - float uvOffset = uvStart + i * uvStride; - #ifdef HORIZONTAL_PASS - vec2 distribution = unpackRGBATo2Half( texture2D( shadow_pass, ( gl_FragCoord.xy + vec2( uvOffset, 0.0 ) * radius ) / resolution ) ); - mean += distribution.x; - squared_mean += distribution.y * distribution.y + distribution.x * distribution.x; - #else - float depth = unpackRGBAToDepth( texture2D( shadow_pass, ( gl_FragCoord.xy + vec2( 0.0, uvOffset ) * radius ) / resolution ) ); - mean += depth; - squared_mean += depth * depth; - #endif - } - mean = mean / samples; - squared_mean = squared_mean / samples; - float std_dev = sqrt( squared_mean - mean * mean ); - gl_FragColor = pack2HalfToRGBA( vec2( mean, std_dev ) ); -}`;function yj(i,e,t){let n=new Fg;const r=new ft,s=new ft,a=new Pn,l=new Dz({depthPacking:WF}),u=new Pz,h={},g=t.maxTextureSize,v={[Nl]:hr,[hr]:Nl,[as]:as},x=new Ja({defines:{VSM_SAMPLES:8},uniforms:{shadow_pass:{value:null},resolution:{value:new ft},radius:{value:4}},vertexShader:vj,fragmentShader:_j}),S=x.clone();S.defines.HORIZONTAL_PASS=1;const w=new Ki;w.setAttribute("position",new wr(new Float32Array([-1,-1,.5,3,-1,.5,-1,3,.5]),3));const R=new zi(w,x),C=this;this.enabled=!1,this.autoUpdate=!0,this.needsUpdate=!1,this.type=yw;let E=this.type;this.render=function(G,k,H){if(C.enabled===!1||C.autoUpdate===!1&&C.needsUpdate===!1||G.length===0)return;const F=i.getRenderTarget(),V=i.getActiveCubeFace(),Y=i.getActiveMipmapLevel(),ee=i.state;ee.setBlending(Qa),ee.buffers.color.setClear(1,1,1,1),ee.buffers.depth.setTest(!0),ee.setScissorTest(!1);const ne=E!==xo&&this.type===xo,se=E===xo&&this.type!==xo;for(let te=0,Q=G.length;teg||r.y>g)&&(r.x>g&&(s.x=Math.floor(g/Te.x),r.x=s.x*Te.x,de.mapSize.x=s.x),r.y>g&&(s.y=Math.floor(g/Te.y),r.y=s.y*Te.y,de.mapSize.y=s.y)),de.map===null||ne===!0||se===!0){const ue=this.type!==xo?{minFilter:mr,magFilter:mr}:{};de.map!==null&&de.map.dispose(),de.map=new qh(r.x,r.y,ue),de.map.texture.name=le.name+".shadowMap",de.camera.updateProjectionMatrix()}i.setRenderTarget(de.map),i.clear();const Se=de.getViewportCount();for(let ue=0;ue0||k.map&&k.alphaTest>0){const ee=V.uuid,ne=k.uuid;let se=h[ee];se===void 0&&(se={},h[ee]=se);let te=se[ne];te===void 0&&(te=V.clone(),se[ne]=te,k.addEventListener("dispose",z)),V=te}if(V.visible=k.visible,V.wireframe=k.wireframe,F===xo?V.side=k.shadowSide!==null?k.shadowSide:k.side:V.side=k.shadowSide!==null?k.shadowSide:v[k.side],V.alphaMap=k.alphaMap,V.alphaTest=k.alphaTest,V.map=k.map,V.clipShadows=k.clipShadows,V.clippingPlanes=k.clippingPlanes,V.clipIntersection=k.clipIntersection,V.displacementMap=k.displacementMap,V.displacementScale=k.displacementScale,V.displacementBias=k.displacementBias,V.wireframeLinewidth=k.wireframeLinewidth,V.linewidth=k.linewidth,H.isPointLight===!0&&V.isMeshDistanceMaterial===!0){const ee=i.properties.get(V);ee.light=H}return V}function O(G,k,H,F,V){if(G.visible===!1)return;if(G.layers.test(k.layers)&&(G.isMesh||G.isLine||G.isPoints)&&(G.castShadow||G.receiveShadow&&V===xo)&&(!G.frustumCulled||n.intersectsObject(G))){G.modelViewMatrix.multiplyMatrices(H.matrixWorldInverse,G.matrixWorld);const ne=e.update(G),se=G.material;if(Array.isArray(se)){const te=ne.groups;for(let Q=0,le=te.length;Q=1):de.indexOf("OpenGL ES")!==-1&&(le=parseFloat(/^OpenGL ES (\d)/.exec(de)[1]),Q=le>=2);let Te=null,Se={};const ue=i.getParameter(i.SCISSOR_BOX),be=i.getParameter(i.VIEWPORT),We=new Pn().fromArray(ue),Ee=new Pn().fromArray(be);function Ge(ge,Wt,nt,xt){const $t=new Uint8Array(4),zt=i.createTexture();i.bindTexture(ge,zt),i.texParameteri(ge,i.TEXTURE_MIN_FILTER,i.NEAREST),i.texParameteri(ge,i.TEXTURE_MAG_FILTER,i.NEAREST);for(let xn=0;xn"u"?!1:/OculusBrowser/g.test(navigator.userAgent),h=new ft,g=new WeakMap;let v;const x=new WeakMap;let S=!1;try{S=typeof OffscreenCanvas<"u"&&new OffscreenCanvas(1,1).getContext("2d")!==null}catch{}function w(fe,X){return S?new OffscreenCanvas(fe,X):sg("canvas")}function R(fe,X,oe){let Me=1;const Fe=_t(fe);if((Fe.width>oe||Fe.height>oe)&&(Me=oe/Math.max(Fe.width,Fe.height)),Me<1)if(typeof HTMLImageElement<"u"&&fe instanceof HTMLImageElement||typeof HTMLCanvasElement<"u"&&fe instanceof HTMLCanvasElement||typeof ImageBitmap<"u"&&fe instanceof ImageBitmap||typeof VideoFrame<"u"&&fe instanceof VideoFrame){const ze=Math.floor(Me*Fe.width),Et=Math.floor(Me*Fe.height);v===void 0&&(v=w(ze,Et));const Rt=X?w(ze,Et):v;return Rt.width=ze,Rt.height=Et,Rt.getContext("2d").drawImage(fe,0,0,ze,Et),console.warn("THREE.WebGLRenderer: Texture has been resized from ("+Fe.width+"x"+Fe.height+") to ("+ze+"x"+Et+")."),Rt}else return"data"in fe&&console.warn("THREE.WebGLRenderer: Image in DataTexture is too big ("+Fe.width+"x"+Fe.height+")."),fe;return fe}function C(fe){return fe.generateMipmaps}function E(fe){i.generateMipmap(fe)}function B(fe){return fe.isWebGLCubeRenderTarget?i.TEXTURE_CUBE_MAP:fe.isWebGL3DRenderTarget?i.TEXTURE_3D:fe.isWebGLArrayRenderTarget||fe.isCompressedArrayTexture?i.TEXTURE_2D_ARRAY:i.TEXTURE_2D}function L(fe,X,oe,Me,Fe=!1){if(fe!==null){if(i[fe]!==void 0)return i[fe];console.warn("THREE.WebGLRenderer: Attempt to use non-existing WebGL internal format '"+fe+"'")}let ze=X;if(X===i.RED&&(oe===i.FLOAT&&(ze=i.R32F),oe===i.HALF_FLOAT&&(ze=i.R16F),oe===i.UNSIGNED_BYTE&&(ze=i.R8)),X===i.RED_INTEGER&&(oe===i.UNSIGNED_BYTE&&(ze=i.R8UI),oe===i.UNSIGNED_SHORT&&(ze=i.R16UI),oe===i.UNSIGNED_INT&&(ze=i.R32UI),oe===i.BYTE&&(ze=i.R8I),oe===i.SHORT&&(ze=i.R16I),oe===i.INT&&(ze=i.R32I)),X===i.RG&&(oe===i.FLOAT&&(ze=i.RG32F),oe===i.HALF_FLOAT&&(ze=i.RG16F),oe===i.UNSIGNED_BYTE&&(ze=i.RG8)),X===i.RG_INTEGER&&(oe===i.UNSIGNED_BYTE&&(ze=i.RG8UI),oe===i.UNSIGNED_SHORT&&(ze=i.RG16UI),oe===i.UNSIGNED_INT&&(ze=i.RG32UI),oe===i.BYTE&&(ze=i.RG8I),oe===i.SHORT&&(ze=i.RG16I),oe===i.INT&&(ze=i.RG32I)),X===i.RGB_INTEGER&&(oe===i.UNSIGNED_BYTE&&(ze=i.RGB8UI),oe===i.UNSIGNED_SHORT&&(ze=i.RGB16UI),oe===i.UNSIGNED_INT&&(ze=i.RGB32UI),oe===i.BYTE&&(ze=i.RGB8I),oe===i.SHORT&&(ze=i.RGB16I),oe===i.INT&&(ze=i.RGB32I)),X===i.RGBA_INTEGER&&(oe===i.UNSIGNED_BYTE&&(ze=i.RGBA8UI),oe===i.UNSIGNED_SHORT&&(ze=i.RGBA16UI),oe===i.UNSIGNED_INT&&(ze=i.RGBA32UI),oe===i.BYTE&&(ze=i.RGBA8I),oe===i.SHORT&&(ze=i.RGBA16I),oe===i.INT&&(ze=i.RGBA32I)),X===i.RGB&&oe===i.UNSIGNED_INT_5_9_9_9_REV&&(ze=i.RGB9_E5),X===i.RGBA){const Et=Fe?a_:ai.getTransfer(Me);oe===i.FLOAT&&(ze=i.RGBA32F),oe===i.HALF_FLOAT&&(ze=i.RGBA16F),oe===i.UNSIGNED_BYTE&&(ze=Et===Vi?i.SRGB8_ALPHA8:i.RGBA8),oe===i.UNSIGNED_SHORT_4_4_4_4&&(ze=i.RGBA4),oe===i.UNSIGNED_SHORT_5_5_5_1&&(ze=i.RGB5_A1)}return(ze===i.R16F||ze===i.R32F||ze===i.RG16F||ze===i.RG32F||ze===i.RGBA16F||ze===i.RGBA32F)&&e.get("EXT_color_buffer_float"),ze}function O(fe,X){let oe;return fe?X===null||X===Rr||X===Au?oe=i.DEPTH24_STENCIL8:X===$r?oe=i.DEPTH32F_STENCIL8:X===wl&&(oe=i.DEPTH24_STENCIL8,console.warn("DepthTexture: 16 bit depth attachment is not supported with stencil. Using 24-bit attachment.")):X===null||X===Rr||X===Au?oe=i.DEPTH_COMPONENT24:X===$r?oe=i.DEPTH_COMPONENT32F:X===wl&&(oe=i.DEPTH_COMPONENT16),oe}function z(fe,X){return C(fe)===!0||fe.isFramebufferTexture&&fe.minFilter!==mr&&fe.minFilter!==gs?Math.log2(Math.max(X.width,X.height))+1:fe.mipmaps!==void 0&&fe.mipmaps.length>0?fe.mipmaps.length:fe.isCompressedTexture&&Array.isArray(fe.image)?X.mipmaps.length:1}function G(fe){const X=fe.target;X.removeEventListener("dispose",G),H(X),X.isVideoTexture&&g.delete(X)}function k(fe){const X=fe.target;X.removeEventListener("dispose",k),V(X)}function H(fe){const X=n.get(fe);if(X.__webglInit===void 0)return;const oe=fe.source,Me=x.get(oe);if(Me){const Fe=Me[X.__cacheKey];Fe.usedTimes--,Fe.usedTimes===0&&F(fe),Object.keys(Me).length===0&&x.delete(oe)}n.remove(fe)}function F(fe){const X=n.get(fe);i.deleteTexture(X.__webglTexture);const oe=fe.source,Me=x.get(oe);delete Me[X.__cacheKey],a.memory.textures--}function V(fe){const X=n.get(fe);if(fe.depthTexture&&(fe.depthTexture.dispose(),n.remove(fe.depthTexture)),fe.isWebGLCubeRenderTarget)for(let Me=0;Me<6;Me++){if(Array.isArray(X.__webglFramebuffer[Me]))for(let Fe=0;Fe=r.maxTextures&&console.warn("THREE.WebGLTextures: Trying to use "+fe+" texture units while this GPU supports only "+r.maxTextures),Y+=1,fe}function se(fe){const X=[];return X.push(fe.wrapS),X.push(fe.wrapT),X.push(fe.wrapR||0),X.push(fe.magFilter),X.push(fe.minFilter),X.push(fe.anisotropy),X.push(fe.internalFormat),X.push(fe.format),X.push(fe.type),X.push(fe.generateMipmaps),X.push(fe.premultiplyAlpha),X.push(fe.flipY),X.push(fe.unpackAlignment),X.push(fe.colorSpace),X.join()}function te(fe,X){const oe=n.get(fe);if(fe.isVideoTexture&>(fe),fe.isRenderTargetTexture===!1&&fe.version>0&&oe.__version!==fe.version){const Me=fe.image;if(Me===null)console.warn("THREE.WebGLRenderer: Texture marked for update but no image data found.");else if(Me.complete===!1)console.warn("THREE.WebGLRenderer: Texture marked for update but image is incomplete");else{Ee(oe,fe,X);return}}t.bindTexture(i.TEXTURE_2D,oe.__webglTexture,i.TEXTURE0+X)}function Q(fe,X){const oe=n.get(fe);if(fe.version>0&&oe.__version!==fe.version){Ee(oe,fe,X);return}t.bindTexture(i.TEXTURE_2D_ARRAY,oe.__webglTexture,i.TEXTURE0+X)}function le(fe,X){const oe=n.get(fe);if(fe.version>0&&oe.__version!==fe.version){Ee(oe,fe,X);return}t.bindTexture(i.TEXTURE_3D,oe.__webglTexture,i.TEXTURE0+X)}function de(fe,X){const oe=n.get(fe);if(fe.version>0&&oe.__version!==fe.version){Ge(oe,fe,X);return}t.bindTexture(i.TEXTURE_CUBE_MAP,oe.__webglTexture,i.TEXTURE0+X)}const Te={[aA]:i.REPEAT,[eu]:i.CLAMP_TO_EDGE,[oA]:i.MIRRORED_REPEAT},Se={[mr]:i.NEAREST,[s_]:i.NEAREST_MIPMAP_NEAREST,[tu]:i.NEAREST_MIPMAP_LINEAR,[gs]:i.LINEAR,[Jd]:i.LINEAR_MIPMAP_NEAREST,[Va]:i.LINEAR_MIPMAP_LINEAR},ue={[Fw]:i.NEVER,[Vw]:i.ALWAYS,[my]:i.LESS,[gy]:i.LEQUAL,[kw]:i.EQUAL,[qw]:i.GEQUAL,[zw]:i.GREATER,[Gw]:i.NOTEQUAL};function be(fe,X){if(X.type===$r&&e.has("OES_texture_float_linear")===!1&&(X.magFilter===gs||X.magFilter===Jd||X.magFilter===tu||X.magFilter===Va||X.minFilter===gs||X.minFilter===Jd||X.minFilter===tu||X.minFilter===Va)&&console.warn("THREE.WebGLRenderer: Unable to use linear filtering with floating point textures. OES_texture_float_linear not supported on this device."),i.texParameteri(fe,i.TEXTURE_WRAP_S,Te[X.wrapS]),i.texParameteri(fe,i.TEXTURE_WRAP_T,Te[X.wrapT]),(fe===i.TEXTURE_3D||fe===i.TEXTURE_2D_ARRAY)&&i.texParameteri(fe,i.TEXTURE_WRAP_R,Te[X.wrapR]),i.texParameteri(fe,i.TEXTURE_MAG_FILTER,Se[X.magFilter]),i.texParameteri(fe,i.TEXTURE_MIN_FILTER,Se[X.minFilter]),X.compareFunction&&(i.texParameteri(fe,i.TEXTURE_COMPARE_MODE,i.COMPARE_REF_TO_TEXTURE),i.texParameteri(fe,i.TEXTURE_COMPARE_FUNC,ue[X.compareFunction])),e.has("EXT_texture_filter_anisotropic")===!0){if(X.magFilter===mr||X.minFilter!==tu&&X.minFilter!==Va||X.type===$r&&e.has("OES_texture_float_linear")===!1)return;if(X.anisotropy>1||n.get(X).__currentAnisotropy){const oe=e.get("EXT_texture_filter_anisotropic");i.texParameterf(fe,oe.TEXTURE_MAX_ANISOTROPY_EXT,Math.min(X.anisotropy,r.getMaxAnisotropy())),n.get(X).__currentAnisotropy=X.anisotropy}}}function We(fe,X){let oe=!1;fe.__webglInit===void 0&&(fe.__webglInit=!0,X.addEventListener("dispose",G));const Me=X.source;let Fe=x.get(Me);Fe===void 0&&(Fe={},x.set(Me,Fe));const ze=se(X);if(ze!==fe.__cacheKey){Fe[ze]===void 0&&(Fe[ze]={texture:i.createTexture(),usedTimes:0},a.memory.textures++,oe=!0),Fe[ze].usedTimes++;const Et=Fe[fe.__cacheKey];Et!==void 0&&(Fe[fe.__cacheKey].usedTimes--,Et.usedTimes===0&&F(X)),fe.__cacheKey=ze,fe.__webglTexture=Fe[ze].texture}return oe}function Ee(fe,X,oe){let Me=i.TEXTURE_2D;(X.isDataArrayTexture||X.isCompressedArrayTexture)&&(Me=i.TEXTURE_2D_ARRAY),X.isData3DTexture&&(Me=i.TEXTURE_3D);const Fe=We(fe,X),ze=X.source;t.bindTexture(Me,fe.__webglTexture,i.TEXTURE0+oe);const Et=n.get(ze);if(ze.version!==Et.__version||Fe===!0){t.activeTexture(i.TEXTURE0+oe);const Rt=ai.getPrimaries(ai.workingColorSpace),Ht=X.colorSpace===Co?null:ai.getPrimaries(X.colorSpace),Xt=X.colorSpace===Co||Rt===Ht?i.NONE:i.BROWSER_DEFAULT_WEBGL;i.pixelStorei(i.UNPACK_FLIP_Y_WEBGL,X.flipY),i.pixelStorei(i.UNPACK_PREMULTIPLY_ALPHA_WEBGL,X.premultiplyAlpha),i.pixelStorei(i.UNPACK_ALIGNMENT,X.unpackAlignment),i.pixelStorei(i.UNPACK_COLORSPACE_CONVERSION_WEBGL,Xt);let yt=R(X.image,!1,r.maxTextureSize);yt=tn(X,yt);const Zt=s.convert(X.format,X.colorSpace),sn=s.convert(X.type);let jt=L(X.internalFormat,Zt,sn,X.colorSpace,X.isVideoTexture);be(Me,X);let kt;const qt=X.mipmaps,In=X.isVideoTexture!==!0,Mi=Et.__version===void 0||Fe===!0,ge=ze.dataReady,Wt=z(X,yt);if(X.isDepthTexture)jt=O(X.format===du,X.type),Mi&&(In?t.texStorage2D(i.TEXTURE_2D,1,jt,yt.width,yt.height):t.texImage2D(i.TEXTURE_2D,0,jt,yt.width,yt.height,0,Zt,sn,null));else if(X.isDataTexture)if(qt.length>0){In&&Mi&&t.texStorage2D(i.TEXTURE_2D,Wt,jt,qt[0].width,qt[0].height);for(let nt=0,xt=qt.length;nt0){const $t=D5(kt.width,kt.height,X.format,X.type);for(const zt of X.layerUpdates){const xn=kt.data.subarray(zt*$t/kt.data.BYTES_PER_ELEMENT,(zt+1)*$t/kt.data.BYTES_PER_ELEMENT);t.compressedTexSubImage3D(i.TEXTURE_2D_ARRAY,nt,0,0,zt,kt.width,kt.height,1,Zt,xn)}X.clearLayerUpdates()}else t.compressedTexSubImage3D(i.TEXTURE_2D_ARRAY,nt,0,0,0,kt.width,kt.height,yt.depth,Zt,kt.data)}else t.compressedTexImage3D(i.TEXTURE_2D_ARRAY,nt,jt,kt.width,kt.height,yt.depth,0,kt.data,0,0);else console.warn("THREE.WebGLRenderer: Attempt to load unsupported compressed texture format in .uploadTexture()");else In?ge&&t.texSubImage3D(i.TEXTURE_2D_ARRAY,nt,0,0,0,kt.width,kt.height,yt.depth,Zt,sn,kt.data):t.texImage3D(i.TEXTURE_2D_ARRAY,nt,jt,kt.width,kt.height,yt.depth,0,Zt,sn,kt.data)}else{In&&Mi&&t.texStorage2D(i.TEXTURE_2D,Wt,jt,qt[0].width,qt[0].height);for(let nt=0,xt=qt.length;nt0){const nt=D5(yt.width,yt.height,X.format,X.type);for(const xt of X.layerUpdates){const $t=yt.data.subarray(xt*nt/yt.data.BYTES_PER_ELEMENT,(xt+1)*nt/yt.data.BYTES_PER_ELEMENT);t.texSubImage3D(i.TEXTURE_2D_ARRAY,0,0,0,xt,yt.width,yt.height,1,Zt,sn,$t)}X.clearLayerUpdates()}else t.texSubImage3D(i.TEXTURE_2D_ARRAY,0,0,0,0,yt.width,yt.height,yt.depth,Zt,sn,yt.data)}else t.texImage3D(i.TEXTURE_2D_ARRAY,0,jt,yt.width,yt.height,yt.depth,0,Zt,sn,yt.data);else if(X.isData3DTexture)In?(Mi&&t.texStorage3D(i.TEXTURE_3D,Wt,jt,yt.width,yt.height,yt.depth),ge&&t.texSubImage3D(i.TEXTURE_3D,0,0,0,0,yt.width,yt.height,yt.depth,Zt,sn,yt.data)):t.texImage3D(i.TEXTURE_3D,0,jt,yt.width,yt.height,yt.depth,0,Zt,sn,yt.data);else if(X.isFramebufferTexture){if(Mi)if(In)t.texStorage2D(i.TEXTURE_2D,Wt,jt,yt.width,yt.height);else{let nt=yt.width,xt=yt.height;for(let $t=0;$t>=1,xt>>=1}}else if(qt.length>0){if(In&&Mi){const nt=_t(qt[0]);t.texStorage2D(i.TEXTURE_2D,Wt,jt,nt.width,nt.height)}for(let nt=0,xt=qt.length;nt0&&Wt++;const xt=_t(Zt[0]);t.texStorage2D(i.TEXTURE_CUBE_MAP,Wt,qt,xt.width,xt.height)}for(let xt=0;xt<6;xt++)if(yt){In?ge&&t.texSubImage2D(i.TEXTURE_CUBE_MAP_POSITIVE_X+xt,0,0,0,Zt[xt].width,Zt[xt].height,jt,kt,Zt[xt].data):t.texImage2D(i.TEXTURE_CUBE_MAP_POSITIVE_X+xt,0,qt,Zt[xt].width,Zt[xt].height,0,jt,kt,Zt[xt].data);for(let $t=0;$t>ze),sn=Math.max(1,X.height>>ze);Fe===i.TEXTURE_3D||Fe===i.TEXTURE_2D_ARRAY?t.texImage3D(Fe,ze,Ht,Zt,sn,X.depth,0,Et,Rt,null):t.texImage2D(Fe,ze,Ht,Zt,sn,0,Et,Rt,null)}t.bindFramebuffer(i.FRAMEBUFFER,fe),Dt(X)?l.framebufferTexture2DMultisampleEXT(i.FRAMEBUFFER,Me,Fe,yt.__webglTexture,0,ct(X)):(Fe===i.TEXTURE_2D||Fe>=i.TEXTURE_CUBE_MAP_POSITIVE_X&&Fe<=i.TEXTURE_CUBE_MAP_NEGATIVE_Z)&&i.framebufferTexture2D(i.FRAMEBUFFER,Me,Fe,yt.__webglTexture,ze),t.bindFramebuffer(i.FRAMEBUFFER,null)}function Pe(fe,X,oe){if(i.bindRenderbuffer(i.RENDERBUFFER,fe),X.depthBuffer){const Me=X.depthTexture,Fe=Me&&Me.isDepthTexture?Me.type:null,ze=O(X.stencilBuffer,Fe),Et=X.stencilBuffer?i.DEPTH_STENCIL_ATTACHMENT:i.DEPTH_ATTACHMENT,Rt=ct(X);Dt(X)?l.renderbufferStorageMultisampleEXT(i.RENDERBUFFER,Rt,ze,X.width,X.height):oe?i.renderbufferStorageMultisample(i.RENDERBUFFER,Rt,ze,X.width,X.height):i.renderbufferStorage(i.RENDERBUFFER,ze,X.width,X.height),i.framebufferRenderbuffer(i.FRAMEBUFFER,Et,i.RENDERBUFFER,fe)}else{const Me=X.textures;for(let Fe=0;Fe{delete X.__boundDepthTexture,delete X.__depthDisposeCallback,Me.removeEventListener("dispose",Fe)};Me.addEventListener("dispose",Fe),X.__depthDisposeCallback=Fe}X.__boundDepthTexture=Me}if(fe.depthTexture&&!X.__autoAllocateDepthBuffer){if(oe)throw new Error("target.depthTexture not supported in Cube render targets");pt(X.__webglFramebuffer,fe)}else if(oe){X.__webglDepthbuffer=[];for(let Me=0;Me<6;Me++)if(t.bindFramebuffer(i.FRAMEBUFFER,X.__webglFramebuffer[Me]),X.__webglDepthbuffer[Me]===void 0)X.__webglDepthbuffer[Me]=i.createRenderbuffer(),Pe(X.__webglDepthbuffer[Me],fe,!1);else{const Fe=fe.stencilBuffer?i.DEPTH_STENCIL_ATTACHMENT:i.DEPTH_ATTACHMENT,ze=X.__webglDepthbuffer[Me];i.bindRenderbuffer(i.RENDERBUFFER,ze),i.framebufferRenderbuffer(i.FRAMEBUFFER,Fe,i.RENDERBUFFER,ze)}}else if(t.bindFramebuffer(i.FRAMEBUFFER,X.__webglFramebuffer),X.__webglDepthbuffer===void 0)X.__webglDepthbuffer=i.createRenderbuffer(),Pe(X.__webglDepthbuffer,fe,!1);else{const Me=fe.stencilBuffer?i.DEPTH_STENCIL_ATTACHMENT:i.DEPTH_ATTACHMENT,Fe=X.__webglDepthbuffer;i.bindRenderbuffer(i.RENDERBUFFER,Fe),i.framebufferRenderbuffer(i.FRAMEBUFFER,Me,i.RENDERBUFFER,Fe)}t.bindFramebuffer(i.FRAMEBUFFER,null)}function Tt(fe,X,oe){const Me=n.get(fe);X!==void 0&&ye(Me.__webglFramebuffer,fe,fe.texture,i.COLOR_ATTACHMENT0,i.TEXTURE_2D,0),oe!==void 0&&vt(fe)}function It(fe){const X=fe.texture,oe=n.get(fe),Me=n.get(X);fe.addEventListener("dispose",k);const Fe=fe.textures,ze=fe.isWebGLCubeRenderTarget===!0,Et=Fe.length>1;if(Et||(Me.__webglTexture===void 0&&(Me.__webglTexture=i.createTexture()),Me.__version=X.version,a.memory.textures++),ze){oe.__webglFramebuffer=[];for(let Rt=0;Rt<6;Rt++)if(X.mipmaps&&X.mipmaps.length>0){oe.__webglFramebuffer[Rt]=[];for(let Ht=0;Ht0){oe.__webglFramebuffer=[];for(let Rt=0;Rt0&&Dt(fe)===!1){oe.__webglMultisampledFramebuffer=i.createFramebuffer(),oe.__webglColorRenderbuffer=[],t.bindFramebuffer(i.FRAMEBUFFER,oe.__webglMultisampledFramebuffer);for(let Rt=0;Rt0)for(let Ht=0;Ht0)for(let Ht=0;Ht0){if(Dt(fe)===!1){const X=fe.textures,oe=fe.width,Me=fe.height;let Fe=i.COLOR_BUFFER_BIT;const ze=fe.stencilBuffer?i.DEPTH_STENCIL_ATTACHMENT:i.DEPTH_ATTACHMENT,Et=n.get(fe),Rt=X.length>1;if(Rt)for(let Ht=0;Ht0&&e.has("WEBGL_multisampled_render_to_texture")===!0&&X.__useRenderToTexture!==!1}function gt(fe){const X=a.render.frame;g.get(fe)!==X&&(g.set(fe,X),fe.update())}function tn(fe,X){const oe=fe.colorSpace,Me=fe.format,Fe=fe.type;return fe.isCompressedTexture===!0||fe.isVideoTexture===!0||oe!==Ro&&oe!==Co&&(ai.getTransfer(oe)===Vi?(Me!==ks||Fe!==aa)&&console.warn("THREE.WebGLTextures: sRGB encoded textures have to use RGBAFormat and UnsignedByteType."):console.error("THREE.WebGLTextures: Unsupported texture color space:",oe)),X}function _t(fe){return typeof HTMLImageElement<"u"&&fe instanceof HTMLImageElement?(h.width=fe.naturalWidth||fe.width,h.height=fe.naturalHeight||fe.height):typeof VideoFrame<"u"&&fe instanceof VideoFrame?(h.width=fe.displayWidth,h.height=fe.displayHeight):(h.width=fe.width,h.height=fe.height),h}this.allocateTextureUnit=ne,this.resetTextureUnits=ee,this.setTexture2D=te,this.setTexture2DArray=Q,this.setTexture3D=le,this.setTextureCube=de,this.rebindTextures=Tt,this.setupRenderTarget=It,this.updateRenderTargetMipmap=Qe,this.updateMultisampleRenderTarget=Ft,this.setupDepthRenderbuffer=vt,this.setupFrameBufferTexture=ye,this.useMultisampledRTT=Dt}function Tj(i,e){function t(n,r=Co){let s;const a=ai.getTransfer(r);if(n===aa)return i.UNSIGNED_BYTE;if(n===Ay)return i.UNSIGNED_SHORT_4_4_4_4;if(n===dy)return i.UNSIGNED_SHORT_5_5_5_1;if(n===py)return i.UNSIGNED_INT_5_9_9_9_REV;if(n===Qf)return i.BYTE;if(n===Kf)return i.SHORT;if(n===wl)return i.UNSIGNED_SHORT;if(n===Ns)return i.INT;if(n===Rr)return i.UNSIGNED_INT;if(n===$r)return i.FLOAT;if(n===Gs)return i.HALF_FLOAT;if(n===Uw)return i.ALPHA;if(n===Ug)return i.RGB;if(n===ks)return i.RGBA;if(n===Bw)return i.LUMINANCE;if(n===Ow)return i.LUMINANCE_ALPHA;if(n===au)return i.DEPTH_COMPONENT;if(n===du)return i.DEPTH_STENCIL;if(n===Bg)return i.RED;if(n===H0)return i.RED_INTEGER;if(n===lA)return i.RG;if(n===j0)return i.RG_INTEGER;if(n===W0)return i.RGBA_INTEGER;if(n===Zf||n===Bh||n===Oh||n===Ih)if(a===Vi)if(s=e.get("WEBGL_compressed_texture_s3tc_srgb"),s!==null){if(n===Zf)return s.COMPRESSED_SRGB_S3TC_DXT1_EXT;if(n===Bh)return s.COMPRESSED_SRGB_ALPHA_S3TC_DXT1_EXT;if(n===Oh)return s.COMPRESSED_SRGB_ALPHA_S3TC_DXT3_EXT;if(n===Ih)return s.COMPRESSED_SRGB_ALPHA_S3TC_DXT5_EXT}else return null;else if(s=e.get("WEBGL_compressed_texture_s3tc"),s!==null){if(n===Zf)return s.COMPRESSED_RGB_S3TC_DXT1_EXT;if(n===Bh)return s.COMPRESSED_RGBA_S3TC_DXT1_EXT;if(n===Oh)return s.COMPRESSED_RGBA_S3TC_DXT3_EXT;if(n===Ih)return s.COMPRESSED_RGBA_S3TC_DXT5_EXT}else return null;if(n===Km||n===Zm||n===Jm||n===eg)if(s=e.get("WEBGL_compressed_texture_pvrtc"),s!==null){if(n===Km)return s.COMPRESSED_RGB_PVRTC_4BPPV1_IMG;if(n===Zm)return s.COMPRESSED_RGB_PVRTC_2BPPV1_IMG;if(n===Jm)return s.COMPRESSED_RGBA_PVRTC_4BPPV1_IMG;if(n===eg)return s.COMPRESSED_RGBA_PVRTC_2BPPV1_IMG}else return null;if(n===tg||n===u0||n===c0)if(s=e.get("WEBGL_compressed_texture_etc"),s!==null){if(n===tg||n===u0)return a===Vi?s.COMPRESSED_SRGB8_ETC2:s.COMPRESSED_RGB8_ETC2;if(n===c0)return a===Vi?s.COMPRESSED_SRGB8_ALPHA8_ETC2_EAC:s.COMPRESSED_RGBA8_ETC2_EAC}else return null;if(n===h0||n===f0||n===A0||n===d0||n===p0||n===m0||n===g0||n===v0||n===_0||n===y0||n===x0||n===b0||n===S0||n===T0)if(s=e.get("WEBGL_compressed_texture_astc"),s!==null){if(n===h0)return a===Vi?s.COMPRESSED_SRGB8_ALPHA8_ASTC_4x4_KHR:s.COMPRESSED_RGBA_ASTC_4x4_KHR;if(n===f0)return a===Vi?s.COMPRESSED_SRGB8_ALPHA8_ASTC_5x4_KHR:s.COMPRESSED_RGBA_ASTC_5x4_KHR;if(n===A0)return a===Vi?s.COMPRESSED_SRGB8_ALPHA8_ASTC_5x5_KHR:s.COMPRESSED_RGBA_ASTC_5x5_KHR;if(n===d0)return a===Vi?s.COMPRESSED_SRGB8_ALPHA8_ASTC_6x5_KHR:s.COMPRESSED_RGBA_ASTC_6x5_KHR;if(n===p0)return a===Vi?s.COMPRESSED_SRGB8_ALPHA8_ASTC_6x6_KHR:s.COMPRESSED_RGBA_ASTC_6x6_KHR;if(n===m0)return a===Vi?s.COMPRESSED_SRGB8_ALPHA8_ASTC_8x5_KHR:s.COMPRESSED_RGBA_ASTC_8x5_KHR;if(n===g0)return a===Vi?s.COMPRESSED_SRGB8_ALPHA8_ASTC_8x6_KHR:s.COMPRESSED_RGBA_ASTC_8x6_KHR;if(n===v0)return a===Vi?s.COMPRESSED_SRGB8_ALPHA8_ASTC_8x8_KHR:s.COMPRESSED_RGBA_ASTC_8x8_KHR;if(n===_0)return a===Vi?s.COMPRESSED_SRGB8_ALPHA8_ASTC_10x5_KHR:s.COMPRESSED_RGBA_ASTC_10x5_KHR;if(n===y0)return a===Vi?s.COMPRESSED_SRGB8_ALPHA8_ASTC_10x6_KHR:s.COMPRESSED_RGBA_ASTC_10x6_KHR;if(n===x0)return a===Vi?s.COMPRESSED_SRGB8_ALPHA8_ASTC_10x8_KHR:s.COMPRESSED_RGBA_ASTC_10x8_KHR;if(n===b0)return a===Vi?s.COMPRESSED_SRGB8_ALPHA8_ASTC_10x10_KHR:s.COMPRESSED_RGBA_ASTC_10x10_KHR;if(n===S0)return a===Vi?s.COMPRESSED_SRGB8_ALPHA8_ASTC_12x10_KHR:s.COMPRESSED_RGBA_ASTC_12x10_KHR;if(n===T0)return a===Vi?s.COMPRESSED_SRGB8_ALPHA8_ASTC_12x12_KHR:s.COMPRESSED_RGBA_ASTC_12x12_KHR}else return null;if(n===Jf||n===HS||n===jS)if(s=e.get("EXT_texture_compression_bptc"),s!==null){if(n===Jf)return a===Vi?s.COMPRESSED_SRGB_ALPHA_BPTC_UNORM_EXT:s.COMPRESSED_RGBA_BPTC_UNORM_EXT;if(n===HS)return s.COMPRESSED_RGB_BPTC_SIGNED_FLOAT_EXT;if(n===jS)return s.COMPRESSED_RGB_BPTC_UNSIGNED_FLOAT_EXT}else return null;if(n===Iw||n===ng||n===ig||n===rg)if(s=e.get("EXT_texture_compression_rgtc"),s!==null){if(n===Jf)return s.COMPRESSED_RED_RGTC1_EXT;if(n===ng)return s.COMPRESSED_SIGNED_RED_RGTC1_EXT;if(n===ig)return s.COMPRESSED_RED_GREEN_RGTC2_EXT;if(n===rg)return s.COMPRESSED_SIGNED_RED_GREEN_RGTC2_EXT}else return null;return n===Au?i.UNSIGNED_INT_24_8:i[n]!==void 0?i[n]:null}return{convert:t}}const wj={type:"move"};class D3{constructor(){this._targetRay=null,this._grip=null,this._hand=null}getHandSpace(){return this._hand===null&&(this._hand=new ja,this._hand.matrixAutoUpdate=!1,this._hand.visible=!1,this._hand.joints={},this._hand.inputState={pinching:!1}),this._hand}getTargetRaySpace(){return this._targetRay===null&&(this._targetRay=new ja,this._targetRay.matrixAutoUpdate=!1,this._targetRay.visible=!1,this._targetRay.hasLinearVelocity=!1,this._targetRay.linearVelocity=new ce,this._targetRay.hasAngularVelocity=!1,this._targetRay.angularVelocity=new ce),this._targetRay}getGripSpace(){return this._grip===null&&(this._grip=new ja,this._grip.matrixAutoUpdate=!1,this._grip.visible=!1,this._grip.hasLinearVelocity=!1,this._grip.linearVelocity=new ce,this._grip.hasAngularVelocity=!1,this._grip.angularVelocity=new ce),this._grip}dispatchEvent(e){return this._targetRay!==null&&this._targetRay.dispatchEvent(e),this._grip!==null&&this._grip.dispatchEvent(e),this._hand!==null&&this._hand.dispatchEvent(e),this}connect(e){if(e&&e.hand){const t=this._hand;if(t)for(const n of e.hand.values())this._getHandJoint(t,n)}return this.dispatchEvent({type:"connected",data:e}),this}disconnect(e){return this.dispatchEvent({type:"disconnected",data:e}),this._targetRay!==null&&(this._targetRay.visible=!1),this._grip!==null&&(this._grip.visible=!1),this._hand!==null&&(this._hand.visible=!1),this}update(e,t,n){let r=null,s=null,a=null;const l=this._targetRay,u=this._grip,h=this._hand;if(e&&t.session.visibilityState!=="visible-blurred"){if(h&&e.hand){a=!0;for(const R of e.hand.values()){const C=t.getJointPose(R,n),E=this._getHandJoint(h,R);C!==null&&(E.matrix.fromArray(C.transform.matrix),E.matrix.decompose(E.position,E.rotation,E.scale),E.matrixWorldNeedsUpdate=!0,E.jointRadius=C.radius),E.visible=C!==null}const g=h.joints["index-finger-tip"],v=h.joints["thumb-tip"],x=g.position.distanceTo(v.position),S=.02,w=.005;h.inputState.pinching&&x>S+w?(h.inputState.pinching=!1,this.dispatchEvent({type:"pinchend",handedness:e.handedness,target:this})):!h.inputState.pinching&&x<=S-w&&(h.inputState.pinching=!0,this.dispatchEvent({type:"pinchstart",handedness:e.handedness,target:this}))}else u!==null&&e.gripSpace&&(s=t.getPose(e.gripSpace,n),s!==null&&(u.matrix.fromArray(s.transform.matrix),u.matrix.decompose(u.position,u.rotation,u.scale),u.matrixWorldNeedsUpdate=!0,s.linearVelocity?(u.hasLinearVelocity=!0,u.linearVelocity.copy(s.linearVelocity)):u.hasLinearVelocity=!1,s.angularVelocity?(u.hasAngularVelocity=!0,u.angularVelocity.copy(s.angularVelocity)):u.hasAngularVelocity=!1));l!==null&&(r=t.getPose(e.targetRaySpace,n),r===null&&s!==null&&(r=s),r!==null&&(l.matrix.fromArray(r.transform.matrix),l.matrix.decompose(l.position,l.rotation,l.scale),l.matrixWorldNeedsUpdate=!0,r.linearVelocity?(l.hasLinearVelocity=!0,l.linearVelocity.copy(r.linearVelocity)):l.hasLinearVelocity=!1,r.angularVelocity?(l.hasAngularVelocity=!0,l.angularVelocity.copy(r.angularVelocity)):l.hasAngularVelocity=!1,this.dispatchEvent(wj)))}return l!==null&&(l.visible=r!==null),u!==null&&(u.visible=s!==null),h!==null&&(h.visible=a!==null),this}_getHandJoint(e,t){if(e.joints[t.jointName]===void 0){const n=new ja;n.matrixAutoUpdate=!1,n.visible=!1,e.joints[t.jointName]=n,e.add(n)}return e.joints[t.jointName]}}const Mj=` -void main() { - - gl_Position = vec4( position, 1.0 ); - -}`,Ej=` -uniform sampler2DArray depthColor; -uniform float depthWidth; -uniform float depthHeight; - -void main() { - - vec2 coord = vec2( gl_FragCoord.x / depthWidth, gl_FragCoord.y / depthHeight ); - - if ( coord.x >= 1.0 ) { - - gl_FragDepth = texture( depthColor, vec3( coord.x - 1.0, coord.y, 1 ) ).r; - - } else { - - gl_FragDepth = texture( depthColor, vec3( coord.x, coord.y, 0 ) ).r; - - } - -}`;class Cj{constructor(){this.texture=null,this.mesh=null,this.depthNear=0,this.depthFar=0}init(e,t,n){if(this.texture===null){const r=new vs,s=e.properties.get(r);s.__webglTexture=t.texture,(t.depthNear!==n.depthNear||t.depthFar!==n.depthFar)&&(this.depthNear=t.depthNear,this.depthFar=t.depthFar),this.texture=r}}getMesh(e){if(this.texture!==null&&this.mesh===null){const t=e.cameras[0].viewport,n=new Ja({vertexShader:Mj,fragmentShader:Ej,uniforms:{depthColor:{value:this.texture},depthWidth:{value:t.z},depthHeight:{value:t.w}}});this.mesh=new zi(new Ty(20,20),n)}return this.mesh}reset(){this.texture=null,this.mesh=null}getDepthTexture(){return this.texture}}class Rj extends zc{constructor(e,t){super();const n=this;let r=null,s=1,a=null,l="local-floor",u=1,h=null,g=null,v=null,x=null,S=null,w=null;const R=new Cj,C=t.getContextAttributes();let E=null,B=null;const L=[],O=[],z=new ft;let G=null;const k=new ya;k.viewport=new Pn;const H=new ya;H.viewport=new Pn;const F=[k,H],V=new $z;let Y=null,ee=null;this.cameraAutoUpdate=!0,this.enabled=!1,this.isPresenting=!1,this.getController=function(Ee){let Ge=L[Ee];return Ge===void 0&&(Ge=new D3,L[Ee]=Ge),Ge.getTargetRaySpace()},this.getControllerGrip=function(Ee){let Ge=L[Ee];return Ge===void 0&&(Ge=new D3,L[Ee]=Ge),Ge.getGripSpace()},this.getHand=function(Ee){let Ge=L[Ee];return Ge===void 0&&(Ge=new D3,L[Ee]=Ge),Ge.getHandSpace()};function ne(Ee){const Ge=O.indexOf(Ee.inputSource);if(Ge===-1)return;const ye=L[Ge];ye!==void 0&&(ye.update(Ee.inputSource,Ee.frame,h||a),ye.dispatchEvent({type:Ee.type,data:Ee.inputSource}))}function se(){r.removeEventListener("select",ne),r.removeEventListener("selectstart",ne),r.removeEventListener("selectend",ne),r.removeEventListener("squeeze",ne),r.removeEventListener("squeezestart",ne),r.removeEventListener("squeezeend",ne),r.removeEventListener("end",se),r.removeEventListener("inputsourceschange",te);for(let Ee=0;Ee=0&&(O[Pe]=null,L[Pe].disconnect(ye))}for(let Ge=0;Ge=O.length){O.push(ye),Pe=vt;break}else if(O[vt]===null){O[vt]=ye,Pe=vt;break}if(Pe===-1)break}const pt=L[Pe];pt&&pt.connect(ye)}}const Q=new ce,le=new ce;function de(Ee,Ge,ye){Q.setFromMatrixPosition(Ge.matrixWorld),le.setFromMatrixPosition(ye.matrixWorld);const Pe=Q.distanceTo(le),pt=Ge.projectionMatrix.elements,vt=ye.projectionMatrix.elements,Tt=pt[14]/(pt[10]-1),It=pt[14]/(pt[10]+1),Qe=(pt[9]+1)/pt[5],it=(pt[9]-1)/pt[5],he=(pt[8]-1)/pt[0],Ft=(vt[8]+1)/vt[0],ct=Tt*he,Dt=Tt*Ft,gt=Pe/(-he+Ft),tn=gt*-he;if(Ge.matrixWorld.decompose(Ee.position,Ee.quaternion,Ee.scale),Ee.translateX(tn),Ee.translateZ(gt),Ee.matrixWorld.compose(Ee.position,Ee.quaternion,Ee.scale),Ee.matrixWorldInverse.copy(Ee.matrixWorld).invert(),pt[10]===-1)Ee.projectionMatrix.copy(Ge.projectionMatrix),Ee.projectionMatrixInverse.copy(Ge.projectionMatrixInverse);else{const _t=Tt+gt,fe=It+gt,X=ct-tn,oe=Dt+(Pe-tn),Me=Qe*It/fe*_t,Fe=it*It/fe*_t;Ee.projectionMatrix.makePerspective(X,oe,Me,Fe,_t,fe),Ee.projectionMatrixInverse.copy(Ee.projectionMatrix).invert()}}function Te(Ee,Ge){Ge===null?Ee.matrixWorld.copy(Ee.matrix):Ee.matrixWorld.multiplyMatrices(Ge.matrixWorld,Ee.matrix),Ee.matrixWorldInverse.copy(Ee.matrixWorld).invert()}this.updateCamera=function(Ee){if(r===null)return;let Ge=Ee.near,ye=Ee.far;R.texture!==null&&(R.depthNear>0&&(Ge=R.depthNear),R.depthFar>0&&(ye=R.depthFar)),V.near=H.near=k.near=Ge,V.far=H.far=k.far=ye,(Y!==V.near||ee!==V.far)&&(r.updateRenderState({depthNear:V.near,depthFar:V.far}),Y=V.near,ee=V.far),k.layers.mask=Ee.layers.mask|2,H.layers.mask=Ee.layers.mask|4,V.layers.mask=k.layers.mask|H.layers.mask;const Pe=Ee.parent,pt=V.cameras;Te(V,Pe);for(let vt=0;vt0&&(C.alphaTest.value=E.alphaTest);const B=e.get(E),L=B.envMap,O=B.envMapRotation;L&&(C.envMap.value=L,wf.copy(O),wf.x*=-1,wf.y*=-1,wf.z*=-1,L.isCubeTexture&&L.isRenderTargetTexture===!1&&(wf.y*=-1,wf.z*=-1),C.envMapRotation.value.setFromMatrix4(Nj.makeRotationFromEuler(wf)),C.flipEnvMap.value=L.isCubeTexture&&L.isRenderTargetTexture===!1?-1:1,C.reflectivity.value=E.reflectivity,C.ior.value=E.ior,C.refractionRatio.value=E.refractionRatio),E.lightMap&&(C.lightMap.value=E.lightMap,C.lightMapIntensity.value=E.lightMapIntensity,t(E.lightMap,C.lightMapTransform)),E.aoMap&&(C.aoMap.value=E.aoMap,C.aoMapIntensity.value=E.aoMapIntensity,t(E.aoMap,C.aoMapTransform))}function a(C,E){C.diffuse.value.copy(E.color),C.opacity.value=E.opacity,E.map&&(C.map.value=E.map,t(E.map,C.mapTransform))}function l(C,E){C.dashSize.value=E.dashSize,C.totalSize.value=E.dashSize+E.gapSize,C.scale.value=E.scale}function u(C,E,B,L){C.diffuse.value.copy(E.color),C.opacity.value=E.opacity,C.size.value=E.size*B,C.scale.value=L*.5,E.map&&(C.map.value=E.map,t(E.map,C.uvTransform)),E.alphaMap&&(C.alphaMap.value=E.alphaMap,t(E.alphaMap,C.alphaMapTransform)),E.alphaTest>0&&(C.alphaTest.value=E.alphaTest)}function h(C,E){C.diffuse.value.copy(E.color),C.opacity.value=E.opacity,C.rotation.value=E.rotation,E.map&&(C.map.value=E.map,t(E.map,C.mapTransform)),E.alphaMap&&(C.alphaMap.value=E.alphaMap,t(E.alphaMap,C.alphaMapTransform)),E.alphaTest>0&&(C.alphaTest.value=E.alphaTest)}function g(C,E){C.specular.value.copy(E.specular),C.shininess.value=Math.max(E.shininess,1e-4)}function v(C,E){E.gradientMap&&(C.gradientMap.value=E.gradientMap)}function x(C,E){C.metalness.value=E.metalness,E.metalnessMap&&(C.metalnessMap.value=E.metalnessMap,t(E.metalnessMap,C.metalnessMapTransform)),C.roughness.value=E.roughness,E.roughnessMap&&(C.roughnessMap.value=E.roughnessMap,t(E.roughnessMap,C.roughnessMapTransform)),E.envMap&&(C.envMapIntensity.value=E.envMapIntensity)}function S(C,E,B){C.ior.value=E.ior,E.sheen>0&&(C.sheenColor.value.copy(E.sheenColor).multiplyScalar(E.sheen),C.sheenRoughness.value=E.sheenRoughness,E.sheenColorMap&&(C.sheenColorMap.value=E.sheenColorMap,t(E.sheenColorMap,C.sheenColorMapTransform)),E.sheenRoughnessMap&&(C.sheenRoughnessMap.value=E.sheenRoughnessMap,t(E.sheenRoughnessMap,C.sheenRoughnessMapTransform))),E.clearcoat>0&&(C.clearcoat.value=E.clearcoat,C.clearcoatRoughness.value=E.clearcoatRoughness,E.clearcoatMap&&(C.clearcoatMap.value=E.clearcoatMap,t(E.clearcoatMap,C.clearcoatMapTransform)),E.clearcoatRoughnessMap&&(C.clearcoatRoughnessMap.value=E.clearcoatRoughnessMap,t(E.clearcoatRoughnessMap,C.clearcoatRoughnessMapTransform)),E.clearcoatNormalMap&&(C.clearcoatNormalMap.value=E.clearcoatNormalMap,t(E.clearcoatNormalMap,C.clearcoatNormalMapTransform),C.clearcoatNormalScale.value.copy(E.clearcoatNormalScale),E.side===hr&&C.clearcoatNormalScale.value.negate())),E.dispersion>0&&(C.dispersion.value=E.dispersion),E.iridescence>0&&(C.iridescence.value=E.iridescence,C.iridescenceIOR.value=E.iridescenceIOR,C.iridescenceThicknessMinimum.value=E.iridescenceThicknessRange[0],C.iridescenceThicknessMaximum.value=E.iridescenceThicknessRange[1],E.iridescenceMap&&(C.iridescenceMap.value=E.iridescenceMap,t(E.iridescenceMap,C.iridescenceMapTransform)),E.iridescenceThicknessMap&&(C.iridescenceThicknessMap.value=E.iridescenceThicknessMap,t(E.iridescenceThicknessMap,C.iridescenceThicknessMapTransform))),E.transmission>0&&(C.transmission.value=E.transmission,C.transmissionSamplerMap.value=B.texture,C.transmissionSamplerSize.value.set(B.width,B.height),E.transmissionMap&&(C.transmissionMap.value=E.transmissionMap,t(E.transmissionMap,C.transmissionMapTransform)),C.thickness.value=E.thickness,E.thicknessMap&&(C.thicknessMap.value=E.thicknessMap,t(E.thicknessMap,C.thicknessMapTransform)),C.attenuationDistance.value=E.attenuationDistance,C.attenuationColor.value.copy(E.attenuationColor)),E.anisotropy>0&&(C.anisotropyVector.value.set(E.anisotropy*Math.cos(E.anisotropyRotation),E.anisotropy*Math.sin(E.anisotropyRotation)),E.anisotropyMap&&(C.anisotropyMap.value=E.anisotropyMap,t(E.anisotropyMap,C.anisotropyMapTransform))),C.specularIntensity.value=E.specularIntensity,C.specularColor.value.copy(E.specularColor),E.specularColorMap&&(C.specularColorMap.value=E.specularColorMap,t(E.specularColorMap,C.specularColorMapTransform)),E.specularIntensityMap&&(C.specularIntensityMap.value=E.specularIntensityMap,t(E.specularIntensityMap,C.specularIntensityMapTransform))}function w(C,E){E.matcap&&(C.matcap.value=E.matcap)}function R(C,E){const B=e.get(E).light;C.referencePosition.value.setFromMatrixPosition(B.matrixWorld),C.nearDistance.value=B.shadow.camera.near,C.farDistance.value=B.shadow.camera.far}return{refreshFogUniforms:n,refreshMaterialUniforms:r}}function Pj(i,e,t,n){let r={},s={},a=[];const l=i.getParameter(i.MAX_UNIFORM_BUFFER_BINDINGS);function u(B,L){const O=L.program;n.uniformBlockBinding(B,O)}function h(B,L){let O=r[B.id];O===void 0&&(w(B),O=g(B),r[B.id]=O,B.addEventListener("dispose",C));const z=L.program;n.updateUBOMapping(B,z);const G=e.render.frame;s[B.id]!==G&&(x(B),s[B.id]=G)}function g(B){const L=v();B.__bindingPointIndex=L;const O=i.createBuffer(),z=B.__size,G=B.usage;return i.bindBuffer(i.UNIFORM_BUFFER,O),i.bufferData(i.UNIFORM_BUFFER,z,G),i.bindBuffer(i.UNIFORM_BUFFER,null),i.bindBufferBase(i.UNIFORM_BUFFER,L,O),O}function v(){for(let B=0;B0&&(O+=z-G),B.__size=O,B.__cache={},this}function R(B){const L={boundary:0,storage:0};return typeof B=="number"||typeof B=="boolean"?(L.boundary=4,L.storage=4):B.isVector2?(L.boundary=8,L.storage=8):B.isVector3||B.isColor?(L.boundary=16,L.storage=12):B.isVector4?(L.boundary=16,L.storage=16):B.isMatrix3?(L.boundary=48,L.storage=48):B.isMatrix4?(L.boundary=64,L.storage=64):B.isTexture?console.warn("THREE.WebGLRenderer: Texture samplers can not be part of an uniforms group."):console.warn("THREE.WebGLRenderer: Unsupported uniform value type.",B),L}function C(B){const L=B.target;L.removeEventListener("dispose",C);const O=a.indexOf(L.__bindingPointIndex);a.splice(O,1),i.deleteBuffer(r[L.id]),delete r[L.id],delete s[L.id]}function E(){for(const B in r)i.deleteBuffer(r[B]);a=[],r={},s={}}return{bind:u,update:h,dispose:E}}class Lj{constructor(e={}){const{canvas:t=I7(),context:n=null,depth:r=!0,stencil:s=!1,alpha:a=!1,antialias:l=!1,premultipliedAlpha:u=!0,preserveDrawingBuffer:h=!1,powerPreference:g="default",failIfMajorPerformanceCaveat:v=!1,reverseDepthBuffer:x=!1}=e;this.isWebGLRenderer=!0;let S;if(n!==null){if(typeof WebGLRenderingContext<"u"&&n instanceof WebGLRenderingContext)throw new Error("THREE.WebGLRenderer: WebGL 1 is not supported since r163.");S=n.getContextAttributes().alpha}else S=a;const w=new Uint32Array(4),R=new Int32Array(4);let C=null,E=null;const B=[],L=[];this.domElement=t,this.debug={checkShaderErrors:!0,onShaderError:null},this.autoClear=!0,this.autoClearColor=!0,this.autoClearDepth=!0,this.autoClearStencil=!0,this.sortObjects=!0,this.clippingPlanes=[],this.localClippingEnabled=!1,this._outputColorSpace=_n,this.toneMapping=Za,this.toneMappingExposure=1;const O=this;let z=!1,G=0,k=0,H=null,F=-1,V=null;const Y=new Pn,ee=new Pn;let ne=null;const se=new an(0);let te=0,Q=t.width,le=t.height,de=1,Te=null,Se=null;const ue=new Pn(0,0,Q,le),be=new Pn(0,0,Q,le);let We=!1;const Ee=new Fg;let Ge=!1,ye=!1;this.transmissionResolutionScale=1;const Pe=new kn,pt=new kn,vt=new ce,Tt=new Pn,It={background:null,fog:null,environment:null,overrideMaterial:null,isScene:!0};let Qe=!1;function it(){return H===null?de:1}let he=n;function Ft(ae,Oe){return t.getContext(ae,Oe)}try{const ae={alpha:!0,depth:r,stencil:s,antialias:l,premultipliedAlpha:u,preserveDrawingBuffer:h,powerPreference:g,failIfMajorPerformanceCaveat:v};if("setAttribute"in t&&t.setAttribute("data-engine",`three.js r${V0}`),t.addEventListener("webglcontextlost",xt,!1),t.addEventListener("webglcontextrestored",$t,!1),t.addEventListener("webglcontextcreationerror",zt,!1),he===null){const Oe="webgl2";if(he=Ft(Oe,ae),he===null)throw Ft(Oe)?new Error("Error creating WebGL context with your selected attributes."):new Error("Error creating WebGL context.")}}catch(ae){throw console.error("THREE.WebGLRenderer: "+ae.message),ae}let ct,Dt,gt,tn,_t,fe,X,oe,Me,Fe,ze,Et,Rt,Ht,Xt,yt,Zt,sn,jt,kt,qt,In,Mi,ge;function Wt(){ct=new qV(he),ct.init(),In=new Tj(he,ct),Dt=new OV(he,ct,e,In),gt=new bj(he,ct),Dt.reverseDepthBuffer&&x&>.buffers.depth.setReversed(!0),tn=new jV(he),_t=new uj,fe=new Sj(he,ct,gt,_t,Dt,In,tn),X=new FV(O),oe=new GV(O),Me=new Zz(he),Mi=new UV(he,Me),Fe=new VV(he,Me,tn,Mi),ze=new $V(he,Fe,Me,tn),jt=new WV(he,Dt,fe),yt=new IV(_t),Et=new lj(O,X,oe,ct,Dt,Mi,yt),Rt=new Dj(O,_t),Ht=new hj,Xt=new gj(ct),sn=new LV(O,X,oe,gt,ze,S,u),Zt=new yj(O,ze,Dt),ge=new Pj(he,tn,Dt,gt),kt=new BV(he,ct,tn),qt=new HV(he,ct,tn),tn.programs=Et.programs,O.capabilities=Dt,O.extensions=ct,O.properties=_t,O.renderLists=Ht,O.shadowMap=Zt,O.state=gt,O.info=tn}Wt();const nt=new Rj(O,he);this.xr=nt,this.getContext=function(){return he},this.getContextAttributes=function(){return he.getContextAttributes()},this.forceContextLoss=function(){const ae=ct.get("WEBGL_lose_context");ae&&ae.loseContext()},this.forceContextRestore=function(){const ae=ct.get("WEBGL_lose_context");ae&&ae.restoreContext()},this.getPixelRatio=function(){return de},this.setPixelRatio=function(ae){ae!==void 0&&(de=ae,this.setSize(Q,le,!1))},this.getSize=function(ae){return ae.set(Q,le)},this.setSize=function(ae,Oe,Ye=!0){if(nt.isPresenting){console.warn("THREE.WebGLRenderer: Can't change size while VR device is presenting.");return}Q=ae,le=Oe,t.width=Math.floor(ae*de),t.height=Math.floor(Oe*de),Ye===!0&&(t.style.width=ae+"px",t.style.height=Oe+"px"),this.setViewport(0,0,ae,Oe)},this.getDrawingBufferSize=function(ae){return ae.set(Q*de,le*de).floor()},this.setDrawingBufferSize=function(ae,Oe,Ye){Q=ae,le=Oe,de=Ye,t.width=Math.floor(ae*Ye),t.height=Math.floor(Oe*Ye),this.setViewport(0,0,ae,Oe)},this.getCurrentViewport=function(ae){return ae.copy(Y)},this.getViewport=function(ae){return ae.copy(ue)},this.setViewport=function(ae,Oe,Ye,$e){ae.isVector4?ue.set(ae.x,ae.y,ae.z,ae.w):ue.set(ae,Oe,Ye,$e),gt.viewport(Y.copy(ue).multiplyScalar(de).round())},this.getScissor=function(ae){return ae.copy(be)},this.setScissor=function(ae,Oe,Ye,$e){ae.isVector4?be.set(ae.x,ae.y,ae.z,ae.w):be.set(ae,Oe,Ye,$e),gt.scissor(ee.copy(be).multiplyScalar(de).round())},this.getScissorTest=function(){return We},this.setScissorTest=function(ae){gt.setScissorTest(We=ae)},this.setOpaqueSort=function(ae){Te=ae},this.setTransparentSort=function(ae){Se=ae},this.getClearColor=function(ae){return ae.copy(sn.getClearColor())},this.setClearColor=function(){sn.setClearColor.apply(sn,arguments)},this.getClearAlpha=function(){return sn.getClearAlpha()},this.setClearAlpha=function(){sn.setClearAlpha.apply(sn,arguments)},this.clear=function(ae=!0,Oe=!0,Ye=!0){let $e=0;if(ae){let Ie=!1;if(H!==null){const Bt=H.texture.format;Ie=Bt===W0||Bt===j0||Bt===H0}if(Ie){const Bt=H.texture.type,Vt=Bt===aa||Bt===Rr||Bt===wl||Bt===Au||Bt===Ay||Bt===dy,ht=sn.getClearColor(),Z=sn.getClearAlpha(),Ut=ht.r,bn=ht.g,fn=ht.b;Vt?(w[0]=Ut,w[1]=bn,w[2]=fn,w[3]=Z,he.clearBufferuiv(he.COLOR,0,w)):(R[0]=Ut,R[1]=bn,R[2]=fn,R[3]=Z,he.clearBufferiv(he.COLOR,0,R))}else $e|=he.COLOR_BUFFER_BIT}Oe&&($e|=he.DEPTH_BUFFER_BIT),Ye&&($e|=he.STENCIL_BUFFER_BIT,this.state.buffers.stencil.setMask(4294967295)),he.clear($e)},this.clearColor=function(){this.clear(!0,!1,!1)},this.clearDepth=function(){this.clear(!1,!0,!1)},this.clearStencil=function(){this.clear(!1,!1,!0)},this.dispose=function(){t.removeEventListener("webglcontextlost",xt,!1),t.removeEventListener("webglcontextrestored",$t,!1),t.removeEventListener("webglcontextcreationerror",zt,!1),sn.dispose(),Ht.dispose(),Xt.dispose(),_t.dispose(),X.dispose(),oe.dispose(),ze.dispose(),Mi.dispose(),ge.dispose(),Et.dispose(),nt.dispose(),nt.removeEventListener("sessionstart",Ze),nt.removeEventListener("sessionend",At),Ot.stop()};function xt(ae){ae.preventDefault(),console.log("THREE.WebGLRenderer: Context Lost."),z=!0}function $t(){console.log("THREE.WebGLRenderer: Context Restored."),z=!1;const ae=tn.autoReset,Oe=Zt.enabled,Ye=Zt.autoUpdate,$e=Zt.needsUpdate,Ie=Zt.type;Wt(),tn.autoReset=ae,Zt.enabled=Oe,Zt.autoUpdate=Ye,Zt.needsUpdate=$e,Zt.type=Ie}function zt(ae){console.error("THREE.WebGLRenderer: A WebGL context could not be created. Reason: ",ae.statusMessage)}function xn(ae){const Oe=ae.target;Oe.removeEventListener("dispose",xn),qi(Oe)}function qi(ae){rr(ae),_t.remove(ae)}function rr(ae){const Oe=_t.get(ae).programs;Oe!==void 0&&(Oe.forEach(function(Ye){Et.releaseProgram(Ye)}),ae.isShaderMaterial&&Et.releaseShaderCache(ae))}this.renderBufferDirect=function(ae,Oe,Ye,$e,Ie,Bt){Oe===null&&(Oe=It);const Vt=Ie.isMesh&&Ie.matrixWorld.determinant()<0,ht=Hs(ae,Oe,Ye,$e,Ie);gt.setMaterial($e,Vt);let Z=Ye.index,Ut=1;if($e.wireframe===!0){if(Z=Fe.getWireframeAttribute(Ye),Z===void 0)return;Ut=2}const bn=Ye.drawRange,fn=Ye.attributes.position;let ui=bn.start*Ut,ci=(bn.start+bn.count)*Ut;Bt!==null&&(ui=Math.max(ui,Bt.start*Ut),ci=Math.min(ci,(Bt.start+Bt.count)*Ut)),Z!==null?(ui=Math.max(ui,0),ci=Math.min(ci,Z.count)):fn!=null&&(ui=Math.max(ui,0),ci=Math.min(ci,fn.count));const _i=ci-ui;if(_i<0||_i===1/0)return;Mi.setup(Ie,$e,ht,Ye,Z);let K,Ln=kt;if(Z!==null&&(K=Me.get(Z),Ln=qt,Ln.setIndex(K)),Ie.isMesh)$e.wireframe===!0?(gt.setLineWidth($e.wireframeLinewidth*it()),Ln.setMode(he.LINES)):Ln.setMode(he.TRIANGLES);else if(Ie.isLine){let mn=$e.linewidth;mn===void 0&&(mn=1),gt.setLineWidth(mn*it()),Ie.isLineSegments?Ln.setMode(he.LINES):Ie.isLineLoop?Ln.setMode(he.LINE_LOOP):Ln.setMode(he.LINE_STRIP)}else Ie.isPoints?Ln.setMode(he.POINTS):Ie.isSprite&&Ln.setMode(he.TRIANGLES);if(Ie.isBatchedMesh)if(Ie._multiDrawInstances!==null)Ln.renderMultiDrawInstances(Ie._multiDrawStarts,Ie._multiDrawCounts,Ie._multiDrawCount,Ie._multiDrawInstances);else if(ct.get("WEBGL_multi_draw"))Ln.renderMultiDraw(Ie._multiDrawStarts,Ie._multiDrawCounts,Ie._multiDrawCount);else{const mn=Ie._multiDrawStarts,yr=Ie._multiDrawCounts,hi=Ie._multiDrawCount,bs=Z?Me.get(Z).bytesPerElement:1,fa=_t.get($e).currentProgram.getUniforms();for(let _e=0;_e{function Bt(){if($e.forEach(function(Vt){_t.get(Vt).currentProgram.isReady()&&$e.delete(Vt)}),$e.size===0){Ie(ae);return}setTimeout(Bt,10)}ct.get("KHR_parallel_shader_compile")!==null?Bt():setTimeout(Bt,10)})};let $i=null;function Jr(ae){$i&&$i(ae)}function Ze(){Ot.stop()}function At(){Ot.start()}const Ot=new oD;Ot.setAnimationLoop(Jr),typeof self<"u"&&Ot.setContext(self),this.setAnimationLoop=function(ae){$i=ae,nt.setAnimationLoop(ae),ae===null?Ot.stop():Ot.start()},nt.addEventListener("sessionstart",Ze),nt.addEventListener("sessionend",At),this.render=function(ae,Oe){if(Oe!==void 0&&Oe.isCamera!==!0){console.error("THREE.WebGLRenderer.render: camera is not an instance of THREE.Camera.");return}if(z===!0)return;if(ae.matrixWorldAutoUpdate===!0&&ae.updateMatrixWorld(),Oe.parent===null&&Oe.matrixWorldAutoUpdate===!0&&Oe.updateMatrixWorld(),nt.enabled===!0&&nt.isPresenting===!0&&(nt.cameraAutoUpdate===!0&&nt.updateCamera(Oe),Oe=nt.getCamera()),ae.isScene===!0&&ae.onBeforeRender(O,ae,Oe,H),E=Xt.get(ae,L.length),E.init(Oe),L.push(E),pt.multiplyMatrices(Oe.projectionMatrix,Oe.matrixWorldInverse),Ee.setFromProjectionMatrix(pt),ye=this.localClippingEnabled,Ge=yt.init(this.clippingPlanes,ye),C=Ht.get(ae,B.length),C.init(),B.push(C),nt.enabled===!0&&nt.isPresenting===!0){const Bt=O.xr.getDepthSensingMesh();Bt!==null&&st(Bt,Oe,-1/0,O.sortObjects)}st(ae,Oe,0,O.sortObjects),C.finish(),O.sortObjects===!0&&C.sort(Te,Se),Qe=nt.enabled===!1||nt.isPresenting===!1||nt.hasDepthSensing()===!1,Qe&&sn.addToRenderList(C,ae),this.info.render.frame++,Ge===!0&&yt.beginShadows();const Ye=E.state.shadowsArray;Zt.render(Ye,ae,Oe),Ge===!0&&yt.endShadows(),this.info.autoReset===!0&&this.info.reset();const $e=C.opaque,Ie=C.transmissive;if(E.setupLights(),Oe.isArrayCamera){const Bt=Oe.cameras;if(Ie.length>0)for(let Vt=0,ht=Bt.length;Vt0&&J($e,Ie,ae,Oe),Qe&&sn.render(ae),d(C,ae,Oe);H!==null&&k===0&&(fe.updateMultisampleRenderTarget(H),fe.updateRenderTargetMipmap(H)),ae.isScene===!0&&ae.onAfterRender(O,ae,Oe),Mi.resetDefaultState(),F=-1,V=null,L.pop(),L.length>0?(E=L[L.length-1],Ge===!0&&yt.setGlobalState(O.clippingPlanes,E.state.camera)):E=null,B.pop(),B.length>0?C=B[B.length-1]:C=null};function st(ae,Oe,Ye,$e){if(ae.visible===!1)return;if(ae.layers.test(Oe.layers)){if(ae.isGroup)Ye=ae.renderOrder;else if(ae.isLOD)ae.autoUpdate===!0&&ae.update(Oe);else if(ae.isLight)E.pushLight(ae),ae.castShadow&&E.pushShadow(ae);else if(ae.isSprite){if(!ae.frustumCulled||Ee.intersectsSprite(ae)){$e&&Tt.setFromMatrixPosition(ae.matrixWorld).applyMatrix4(pt);const Vt=ze.update(ae),ht=ae.material;ht.visible&&C.push(ae,Vt,ht,Ye,Tt.z,null)}}else if((ae.isMesh||ae.isLine||ae.isPoints)&&(!ae.frustumCulled||Ee.intersectsObject(ae))){const Vt=ze.update(ae),ht=ae.material;if($e&&(ae.boundingSphere!==void 0?(ae.boundingSphere===null&&ae.computeBoundingSphere(),Tt.copy(ae.boundingSphere.center)):(Vt.boundingSphere===null&&Vt.computeBoundingSphere(),Tt.copy(Vt.boundingSphere.center)),Tt.applyMatrix4(ae.matrixWorld).applyMatrix4(pt)),Array.isArray(ht)){const Z=Vt.groups;for(let Ut=0,bn=Z.length;Ut0&&$n(Ie,Oe,Ye),Bt.length>0&&$n(Bt,Oe,Ye),Vt.length>0&&$n(Vt,Oe,Ye),gt.buffers.depth.setTest(!0),gt.buffers.depth.setMask(!0),gt.buffers.color.setMask(!0),gt.setPolygonOffset(!1)}function J(ae,Oe,Ye,$e){if((Ye.isScene===!0?Ye.overrideMaterial:null)!==null)return;E.state.transmissionRenderTarget[$e.id]===void 0&&(E.state.transmissionRenderTarget[$e.id]=new qh(1,1,{generateMipmaps:!0,type:ct.has("EXT_color_buffer_half_float")||ct.has("EXT_color_buffer_float")?Gs:aa,minFilter:Va,samples:4,stencilBuffer:s,resolveDepthBuffer:!1,resolveStencilBuffer:!1,colorSpace:ai.workingColorSpace}));const Bt=E.state.transmissionRenderTarget[$e.id],Vt=$e.viewport||Y;Bt.setSize(Vt.z*O.transmissionResolutionScale,Vt.w*O.transmissionResolutionScale);const ht=O.getRenderTarget();O.setRenderTarget(Bt),O.getClearColor(se),te=O.getClearAlpha(),te<1&&O.setClearColor(16777215,.5),O.clear(),Qe&&sn.render(Ye);const Z=O.toneMapping;O.toneMapping=Za;const Ut=$e.viewport;if($e.viewport!==void 0&&($e.viewport=void 0),E.setupLightsView($e),Ge===!0&&yt.setGlobalState(O.clippingPlanes,$e),$n(ae,Ye,$e),fe.updateMultisampleRenderTarget(Bt),fe.updateRenderTargetMipmap(Bt),ct.has("WEBGL_multisampled_render_to_texture")===!1){let bn=!1;for(let fn=0,ui=Oe.length;fn0),fn=!!Ye.morphAttributes.position,ui=!!Ye.morphAttributes.normal,ci=!!Ye.morphAttributes.color;let _i=Za;$e.toneMapped&&(H===null||H.isXRRenderTarget===!0)&&(_i=O.toneMapping);const K=Ye.morphAttributes.position||Ye.morphAttributes.normal||Ye.morphAttributes.color,Ln=K!==void 0?K.length:0,mn=_t.get($e),yr=E.state.lights;if(Ge===!0&&(ye===!0||ae!==V)){const Yn=ae===V&&$e.id===F;yt.setState($e,ae,Yn)}let hi=!1;$e.version===mn.__version?(mn.needsLights&&mn.lightsStateVersion!==yr.state.version||mn.outputColorSpace!==ht||Ie.isBatchedMesh&&mn.batching===!1||!Ie.isBatchedMesh&&mn.batching===!0||Ie.isBatchedMesh&&mn.batchingColor===!0&&Ie.colorTexture===null||Ie.isBatchedMesh&&mn.batchingColor===!1&&Ie.colorTexture!==null||Ie.isInstancedMesh&&mn.instancing===!1||!Ie.isInstancedMesh&&mn.instancing===!0||Ie.isSkinnedMesh&&mn.skinning===!1||!Ie.isSkinnedMesh&&mn.skinning===!0||Ie.isInstancedMesh&&mn.instancingColor===!0&&Ie.instanceColor===null||Ie.isInstancedMesh&&mn.instancingColor===!1&&Ie.instanceColor!==null||Ie.isInstancedMesh&&mn.instancingMorph===!0&&Ie.morphTexture===null||Ie.isInstancedMesh&&mn.instancingMorph===!1&&Ie.morphTexture!==null||mn.envMap!==Z||$e.fog===!0&&mn.fog!==Bt||mn.numClippingPlanes!==void 0&&(mn.numClippingPlanes!==yt.numPlanes||mn.numIntersection!==yt.numIntersection)||mn.vertexAlphas!==Ut||mn.vertexTangents!==bn||mn.morphTargets!==fn||mn.morphNormals!==ui||mn.morphColors!==ci||mn.toneMapping!==_i||mn.morphTargetsCount!==Ln)&&(hi=!0):(hi=!0,mn.__version=$e.version);let bs=mn.currentProgram;hi===!0&&(bs=Xn($e,Oe,Ie));let fa=!1,_e=!1,at=!1;const Ct=bs.getUniforms(),Jt=mn.uniforms;if(gt.useProgram(bs.program)&&(fa=!0,_e=!0,at=!0),$e.id!==F&&(F=$e.id,_e=!0),fa||V!==ae){gt.buffers.depth.getReversed()?(Pe.copy(ae.projectionMatrix),Tk(Pe),wk(Pe),Ct.setValue(he,"projectionMatrix",Pe)):Ct.setValue(he,"projectionMatrix",ae.projectionMatrix),Ct.setValue(he,"viewMatrix",ae.matrixWorldInverse);const yi=Ct.map.cameraPosition;yi!==void 0&&yi.setValue(he,vt.setFromMatrixPosition(ae.matrixWorld)),Dt.logarithmicDepthBuffer&&Ct.setValue(he,"logDepthBufFC",2/(Math.log(ae.far+1)/Math.LN2)),($e.isMeshPhongMaterial||$e.isMeshToonMaterial||$e.isMeshLambertMaterial||$e.isMeshBasicMaterial||$e.isMeshStandardMaterial||$e.isShaderMaterial)&&Ct.setValue(he,"isOrthographic",ae.isOrthographicCamera===!0),V!==ae&&(V=ae,_e=!0,at=!0)}if(Ie.isSkinnedMesh){Ct.setOptional(he,Ie,"bindMatrix"),Ct.setOptional(he,Ie,"bindMatrixInverse");const Yn=Ie.skeleton;Yn&&(Yn.boneTexture===null&&Yn.computeBoneTexture(),Ct.setValue(he,"boneTexture",Yn.boneTexture,fe))}Ie.isBatchedMesh&&(Ct.setOptional(he,Ie,"batchingTexture"),Ct.setValue(he,"batchingTexture",Ie._matricesTexture,fe),Ct.setOptional(he,Ie,"batchingIdTexture"),Ct.setValue(he,"batchingIdTexture",Ie._indirectTexture,fe),Ct.setOptional(he,Ie,"batchingColorTexture"),Ie._colorsTexture!==null&&Ct.setValue(he,"batchingColorTexture",Ie._colorsTexture,fe));const cn=Ye.morphAttributes;if((cn.position!==void 0||cn.normal!==void 0||cn.color!==void 0)&&jt.update(Ie,Ye,bs),(_e||mn.receiveShadow!==Ie.receiveShadow)&&(mn.receiveShadow=Ie.receiveShadow,Ct.setValue(he,"receiveShadow",Ie.receiveShadow)),$e.isMeshGouraudMaterial&&$e.envMap!==null&&(Jt.envMap.value=Z,Jt.flipEnvMap.value=Z.isCubeTexture&&Z.isRenderTargetTexture===!1?-1:1),$e.isMeshStandardMaterial&&$e.envMap===null&&Oe.environment!==null&&(Jt.envMapIntensity.value=Oe.environmentIntensity),_e&&(Ct.setValue(he,"toneMappingExposure",O.toneMappingExposure),mn.needsLights&&li(Jt,at),Bt&&$e.fog===!0&&Rt.refreshFogUniforms(Jt,Bt),Rt.refreshMaterialUniforms(Jt,$e,de,le,E.state.transmissionRenderTarget[ae.id]),qv.upload(he,un(mn),Jt,fe)),$e.isShaderMaterial&&$e.uniformsNeedUpdate===!0&&(qv.upload(he,un(mn),Jt,fe),$e.uniformsNeedUpdate=!1),$e.isSpriteMaterial&&Ct.setValue(he,"center",Ie.center),Ct.setValue(he,"modelViewMatrix",Ie.modelViewMatrix),Ct.setValue(he,"normalMatrix",Ie.normalMatrix),Ct.setValue(he,"modelMatrix",Ie.matrixWorld),$e.isShaderMaterial||$e.isRawShaderMaterial){const Yn=$e.uniformsGroups;for(let yi=0,js=Yn.length;yi0&&fe.useMultisampledRTT(ae)===!1?Ie=_t.get(ae).__webglMultisampledFramebuffer:Array.isArray(bn)?Ie=bn[Ye]:Ie=bn,Y.copy(ae.viewport),ee.copy(ae.scissor),ne=ae.scissorTest}else Y.copy(ue).multiplyScalar(de).floor(),ee.copy(be).multiplyScalar(de).floor(),ne=We;if(Ye!==0&&(Ie=cs),gt.bindFramebuffer(he.FRAMEBUFFER,Ie)&&$e&>.drawBuffers(ae,Ie),gt.viewport(Y),gt.scissor(ee),gt.setScissorTest(ne),Bt){const Z=_t.get(ae.texture);he.framebufferTexture2D(he.FRAMEBUFFER,he.COLOR_ATTACHMENT0,he.TEXTURE_CUBE_MAP_POSITIVE_X+Oe,Z.__webglTexture,Ye)}else if(Vt){const Z=_t.get(ae.texture),Ut=Oe;he.framebufferTextureLayer(he.FRAMEBUFFER,he.COLOR_ATTACHMENT0,Z.__webglTexture,Ye,Ut)}else if(ae!==null&&Ye!==0){const Z=_t.get(ae.texture);he.framebufferTexture2D(he.FRAMEBUFFER,he.COLOR_ATTACHMENT0,he.TEXTURE_2D,Z.__webglTexture,Ye)}F=-1},this.readRenderTargetPixels=function(ae,Oe,Ye,$e,Ie,Bt,Vt){if(!(ae&&ae.isWebGLRenderTarget)){console.error("THREE.WebGLRenderer.readRenderTargetPixels: renderTarget is not THREE.WebGLRenderTarget.");return}let ht=_t.get(ae).__webglFramebuffer;if(ae.isWebGLCubeRenderTarget&&Vt!==void 0&&(ht=ht[Vt]),ht){gt.bindFramebuffer(he.FRAMEBUFFER,ht);try{const Z=ae.texture,Ut=Z.format,bn=Z.type;if(!Dt.textureFormatReadable(Ut)){console.error("THREE.WebGLRenderer.readRenderTargetPixels: renderTarget is not in RGBA or implementation defined format.");return}if(!Dt.textureTypeReadable(bn)){console.error("THREE.WebGLRenderer.readRenderTargetPixels: renderTarget is not in UnsignedByteType or implementation defined type.");return}Oe>=0&&Oe<=ae.width-$e&&Ye>=0&&Ye<=ae.height-Ie&&he.readPixels(Oe,Ye,$e,Ie,In.convert(Ut),In.convert(bn),Bt)}finally{const Z=H!==null?_t.get(H).__webglFramebuffer:null;gt.bindFramebuffer(he.FRAMEBUFFER,Z)}}},this.readRenderTargetPixelsAsync=async function(ae,Oe,Ye,$e,Ie,Bt,Vt){if(!(ae&&ae.isWebGLRenderTarget))throw new Error("THREE.WebGLRenderer.readRenderTargetPixels: renderTarget is not THREE.WebGLRenderTarget.");let ht=_t.get(ae).__webglFramebuffer;if(ae.isWebGLCubeRenderTarget&&Vt!==void 0&&(ht=ht[Vt]),ht){const Z=ae.texture,Ut=Z.format,bn=Z.type;if(!Dt.textureFormatReadable(Ut))throw new Error("THREE.WebGLRenderer.readRenderTargetPixelsAsync: renderTarget is not in RGBA or implementation defined format.");if(!Dt.textureTypeReadable(bn))throw new Error("THREE.WebGLRenderer.readRenderTargetPixelsAsync: renderTarget is not in UnsignedByteType or implementation defined type.");if(Oe>=0&&Oe<=ae.width-$e&&Ye>=0&&Ye<=ae.height-Ie){gt.bindFramebuffer(he.FRAMEBUFFER,ht);const fn=he.createBuffer();he.bindBuffer(he.PIXEL_PACK_BUFFER,fn),he.bufferData(he.PIXEL_PACK_BUFFER,Bt.byteLength,he.STREAM_READ),he.readPixels(Oe,Ye,$e,Ie,In.convert(Ut),In.convert(bn),0);const ui=H!==null?_t.get(H).__webglFramebuffer:null;gt.bindFramebuffer(he.FRAMEBUFFER,ui);const ci=he.fenceSync(he.SYNC_GPU_COMMANDS_COMPLETE,0);return he.flush(),await Sk(he,ci,4),he.bindBuffer(he.PIXEL_PACK_BUFFER,fn),he.getBufferSubData(he.PIXEL_PACK_BUFFER,0,Bt),he.deleteBuffer(fn),he.deleteSync(ci),Bt}else throw new Error("THREE.WebGLRenderer.readRenderTargetPixelsAsync: requested read bounds are out of range.")}},this.copyFramebufferToTexture=function(ae,Oe=null,Ye=0){ae.isTexture!==!0&&(kf("WebGLRenderer: copyFramebufferToTexture function signature has changed."),Oe=arguments[0]||null,ae=arguments[1]);const $e=Math.pow(2,-Ye),Ie=Math.floor(ae.image.width*$e),Bt=Math.floor(ae.image.height*$e),Vt=Oe!==null?Oe.x:0,ht=Oe!==null?Oe.y:0;fe.setTexture2D(ae,0),he.copyTexSubImage2D(he.TEXTURE_2D,Ye,0,0,Vt,ht,Ie,Bt),gt.unbindTexture()};const Ma=he.createFramebuffer(),Ul=he.createFramebuffer();this.copyTextureToTexture=function(ae,Oe,Ye=null,$e=null,Ie=0,Bt=null){ae.isTexture!==!0&&(kf("WebGLRenderer: copyTextureToTexture function signature has changed."),$e=arguments[0]||null,ae=arguments[1],Oe=arguments[2],Bt=arguments[3]||0,Ye=null),Bt===null&&(Ie!==0?(kf("WebGLRenderer: copyTextureToTexture function signature has changed to support src and dst mipmap levels."),Bt=Ie,Ie=0):Bt=0);let Vt,ht,Z,Ut,bn,fn,ui,ci,_i;const K=ae.isCompressedTexture?ae.mipmaps[Bt]:ae.image;if(Ye!==null)Vt=Ye.max.x-Ye.min.x,ht=Ye.max.y-Ye.min.y,Z=Ye.isBox3?Ye.max.z-Ye.min.z:1,Ut=Ye.min.x,bn=Ye.min.y,fn=Ye.isBox3?Ye.min.z:0;else{const cn=Math.pow(2,-Ie);Vt=Math.floor(K.width*cn),ht=Math.floor(K.height*cn),ae.isDataArrayTexture?Z=K.depth:ae.isData3DTexture?Z=Math.floor(K.depth*cn):Z=1,Ut=0,bn=0,fn=0}$e!==null?(ui=$e.x,ci=$e.y,_i=$e.z):(ui=0,ci=0,_i=0);const Ln=In.convert(Oe.format),mn=In.convert(Oe.type);let yr;Oe.isData3DTexture?(fe.setTexture3D(Oe,0),yr=he.TEXTURE_3D):Oe.isDataArrayTexture||Oe.isCompressedArrayTexture?(fe.setTexture2DArray(Oe,0),yr=he.TEXTURE_2D_ARRAY):(fe.setTexture2D(Oe,0),yr=he.TEXTURE_2D),he.pixelStorei(he.UNPACK_FLIP_Y_WEBGL,Oe.flipY),he.pixelStorei(he.UNPACK_PREMULTIPLY_ALPHA_WEBGL,Oe.premultiplyAlpha),he.pixelStorei(he.UNPACK_ALIGNMENT,Oe.unpackAlignment);const hi=he.getParameter(he.UNPACK_ROW_LENGTH),bs=he.getParameter(he.UNPACK_IMAGE_HEIGHT),fa=he.getParameter(he.UNPACK_SKIP_PIXELS),_e=he.getParameter(he.UNPACK_SKIP_ROWS),at=he.getParameter(he.UNPACK_SKIP_IMAGES);he.pixelStorei(he.UNPACK_ROW_LENGTH,K.width),he.pixelStorei(he.UNPACK_IMAGE_HEIGHT,K.height),he.pixelStorei(he.UNPACK_SKIP_PIXELS,Ut),he.pixelStorei(he.UNPACK_SKIP_ROWS,bn),he.pixelStorei(he.UNPACK_SKIP_IMAGES,fn);const Ct=ae.isDataArrayTexture||ae.isData3DTexture,Jt=Oe.isDataArrayTexture||Oe.isData3DTexture;if(ae.isDepthTexture){const cn=_t.get(ae),Yn=_t.get(Oe),yi=_t.get(cn.__renderTarget),js=_t.get(Yn.__renderTarget);gt.bindFramebuffer(he.READ_FRAMEBUFFER,yi.__webglFramebuffer),gt.bindFramebuffer(he.DRAW_FRAMEBUFFER,js.__webglFramebuffer);for(let pi=0;pi=-1&&_d.z<=1&&w.layers.test(C.layers)===!0,B=w.element;B.style.display=E===!0?"":"none",E===!0&&(w.onBeforeRender(t,R,C),B.style.transform="translate("+-100*w.center.x+"%,"+-100*w.center.y+"%)translate("+(_d.x*s+s)+"px,"+(-_d.y*a+a)+"px)",B.parentNode!==u&&u.appendChild(B),w.onAfterRender(t,R,C));const L={distanceToCameraSquared:v(C,w)};l.objects.set(w,L)}for(let E=0,B=w.children.length;E=e||k<0||v&&H>=s}function E(){var G=P3();if(C(G))return B(G);l=setTimeout(E,R(G))}function B(G){return l=void 0,x&&n?S(G):(n=r=void 0,a)}function L(){l!==void 0&&clearTimeout(l),h=0,n=u=r=l=void 0}function O(){return l===void 0?a:B(P3())}function z(){var G=P3(),k=C(G);if(n=arguments,r=this,u=G,k){if(l===void 0)return w(u);if(v)return clearTimeout(l),l=setTimeout(E,e),S(u)}return l===void 0&&(l=setTimeout(E,e)),a}return z.cancel=L,z.flush=O,z}function u6(i,e){(e==null||e>i.length)&&(e=i.length);for(var t=0,n=Array(e);t1e4?1e4:i,{In:function(e){return Math.pow(e,i)},Out:function(e){return 1-Math.pow(1-e,i)},InOut:function(e){return e<.5?Math.pow(e*2,i)/2:(1-Math.pow(2-e*2,i))/2+.5}}}}),ym=function(){return performance.now()},My=(function(){function i(){this._tweens={},this._tweensAddedDuringUpdate={}}return i.prototype.getAll=function(){var e=this;return Object.keys(this._tweens).map(function(t){return e._tweens[t]})},i.prototype.removeAll=function(){this._tweens={}},i.prototype.add=function(e){this._tweens[e.getId()]=e,this._tweensAddedDuringUpdate[e.getId()]=e},i.prototype.remove=function(e){delete this._tweens[e.getId()],delete this._tweensAddedDuringUpdate[e.getId()]},i.prototype.update=function(e,t){e===void 0&&(e=ym()),t===void 0&&(t=!1);var n=Object.keys(this._tweens);if(n.length===0)return!1;for(;n.length>0;){this._tweensAddedDuringUpdate={};for(var r=0;r1?s(i[t],i[t-1],t-n):s(i[r],i[r+1>t?t:r+1],n-r)},Utils:{Linear:function(i,e,t){return(e-i)*t+i}}},dD=(function(){function i(){}return i.nextId=function(){return i._nextId++},i._nextId=0,i})(),tT=new My,ca=(function(){function i(e,t){t===void 0&&(t=tT),this._object=e,this._group=t,this._isPaused=!1,this._pauseStart=0,this._valuesStart={},this._valuesEnd={},this._valuesStartRepeat={},this._duration=1e3,this._isDynamic=!1,this._initialRepeat=0,this._repeat=0,this._yoyo=!1,this._isPlaying=!1,this._reversed=!1,this._delayTime=0,this._startTime=0,this._easingFunction=os.Linear.None,this._interpolationFunction=eT.Linear,this._chainedTweens=[],this._onStartCallbackFired=!1,this._onEveryStartCallbackFired=!1,this._id=dD.nextId(),this._isChainStopped=!1,this._propertiesAreSetUp=!1,this._goToEnd=!1}return i.prototype.getId=function(){return this._id},i.prototype.isPlaying=function(){return this._isPlaying},i.prototype.isPaused=function(){return this._isPaused},i.prototype.getDuration=function(){return this._duration},i.prototype.to=function(e,t){if(t===void 0&&(t=1e3),this._isPlaying)throw new Error("Can not call Tween.to() while Tween is already started or paused. Stop the Tween first.");return this._valuesEnd=e,this._propertiesAreSetUp=!1,this._duration=t<0?0:t,this},i.prototype.duration=function(e){return e===void 0&&(e=1e3),this._duration=e<0?0:e,this},i.prototype.dynamic=function(e){return e===void 0&&(e=!1),this._isDynamic=e,this},i.prototype.start=function(e,t){if(e===void 0&&(e=ym()),t===void 0&&(t=!1),this._isPlaying)return this;if(this._group&&this._group.add(this),this._repeat=this._initialRepeat,this._reversed){this._reversed=!1;for(var n in this._valuesStartRepeat)this._swapEndStartRepeatValues(n),this._valuesStart[n]=this._valuesStartRepeat[n]}if(this._isPlaying=!0,this._isPaused=!1,this._onStartCallbackFired=!1,this._onEveryStartCallbackFired=!1,this._isChainStopped=!1,this._startTime=e,this._startTime+=this._delayTime,!this._propertiesAreSetUp||t){if(this._propertiesAreSetUp=!0,!this._isDynamic){var r={};for(var s in this._valuesEnd)r[s]=this._valuesEnd[s];this._valuesEnd=r}this._setupProperties(this._object,this._valuesStart,this._valuesEnd,this._valuesStartRepeat,t)}return this},i.prototype.startFromCurrentValues=function(e){return this.start(e,!0)},i.prototype._setupProperties=function(e,t,n,r,s){for(var a in n){var l=e[a],u=Array.isArray(l),h=u?"array":typeof l,g=!u&&Array.isArray(n[a]);if(!(h==="undefined"||h==="function")){if(g){var v=n[a];if(v.length===0)continue;for(var x=[l],S=0,w=v.length;S"u"||s)&&(t[a]=l),u||(t[a]*=1),g?r[a]=n[a].slice().reverse():r[a]=t[a]||0}}},i.prototype.stop=function(){return this._isChainStopped||(this._isChainStopped=!0,this.stopChainedTweens()),this._isPlaying?(this._group&&this._group.remove(this),this._isPlaying=!1,this._isPaused=!1,this._onStopCallback&&this._onStopCallback(this._object),this):this},i.prototype.end=function(){return this._goToEnd=!0,this.update(1/0),this},i.prototype.pause=function(e){return e===void 0&&(e=ym()),this._isPaused||!this._isPlaying?this:(this._isPaused=!0,this._pauseStart=e,this._group&&this._group.remove(this),this)},i.prototype.resume=function(e){return e===void 0&&(e=ym()),!this._isPaused||!this._isPlaying?this:(this._isPaused=!1,this._startTime+=e-this._pauseStart,this._pauseStart=0,this._group&&this._group.add(this),this)},i.prototype.stopChainedTweens=function(){for(var e=0,t=this._chainedTweens.length;ea)return!1;t&&this.start(e,!0)}if(this._goToEnd=!1,eh)return 1;var C=Math.trunc(l/u),E=l-C*u,B=Math.min(E/n._duration,1);return B===0&&l===n._duration?1:B},v=g(),x=this._easingFunction(v);if(this._updateProperties(this._object,this._valuesStart,this._valuesEnd,x),this._onUpdateCallback&&this._onUpdateCallback(this._object,v),this._duration===0||l>=this._duration)if(this._repeat>0){var S=Math.min(Math.trunc((l-this._duration)/u)+1,this._repeat);isFinite(this._repeat)&&(this._repeat-=S);for(s in this._valuesStartRepeat)!this._yoyo&&typeof this._valuesEnd[s]=="string"&&(this._valuesStartRepeat[s]=this._valuesStartRepeat[s]+parseFloat(this._valuesEnd[s])),this._yoyo&&this._swapEndStartRepeatValues(s),this._valuesStart[s]=this._valuesStartRepeat[s];return this._yoyo&&(this._reversed=!this._reversed),this._startTime+=u*S,this._onRepeatCallback&&this._onRepeatCallback(this._object),this._onEveryStartCallbackFired=!1,!0}else{this._onCompleteCallback&&this._onCompleteCallback(this._object);for(var w=0,R=this._chainedTweens.length;w=(w=(u+v)/2))?u=w:v=w,(z=t>=(R=(h+x)/2))?h=R:x=R,(G=n>=(C=(g+S)/2))?g=C:S=C,s=a,!(a=a[k=G<<2|z<<1|O]))return s[k]=l,i;if(E=+i._x.call(null,a.data),B=+i._y.call(null,a.data),L=+i._z.call(null,a.data),e===E&&t===B&&n===L)return l.next=a,s?s[k]=l:i._root=l,i;do s=s?s[k]=new Array(8):i._root=new Array(8),(O=e>=(w=(u+v)/2))?u=w:v=w,(z=t>=(R=(h+x)/2))?h=R:x=R,(G=n>=(C=(g+S)/2))?g=C:S=C;while((k=G<<2|z<<1|O)===(H=(L>=C)<<2|(B>=R)<<1|E>=w));return s[H]=a,s[k]=l,i}function gW(i){Array.isArray(i)||(i=Array.from(i));const e=i.length,t=new Float64Array(e),n=new Float64Array(e),r=new Float64Array(e);let s=1/0,a=1/0,l=1/0,u=-1/0,h=-1/0,g=-1/0;for(let v=0,x,S,w,R;vu&&(u=S),wh&&(h=w),Rg&&(g=R));if(s>u||a>h||l>g)return this;this.cover(s,a,l).cover(u,h,g);for(let v=0;vi||i>=a||r>e||e>=l||s>t||t>=u;)switch(x=(tw||(h=L.y0)>R||(g=L.z0)>C||(v=L.x1)=k)<<2|(e>=G)<<1|i>=z)&&(L=E[E.length-1],E[E.length-1]=E[E.length-1-O],E[E.length-1-O]=L)}else{var H=i-+this._x.call(null,B.data),F=e-+this._y.call(null,B.data),V=t-+this._z.call(null,B.data),Y=H*H+F*F+V*V;if(YMath.sqrt((i-n)**2+(e-r)**2+(t-s)**2);function SW(i,e,t,n){const r=[],s=i-n,a=e-n,l=t-n,u=i+n,h=e+n,g=t+n;return this.visit((v,x,S,w,R,C,E)=>{if(!v.length)do{const B=v.data;bW(i,e,t,this._x(B),this._y(B),this._z(B))<=n&&r.push(B)}while(v=v.next);return x>u||S>h||w>g||R=(R=(a+h)/2))?a=R:h=R,(L=S>=(C=(l+g)/2))?l=C:g=C,(O=w>=(E=(u+v)/2))?u=E:v=E,e=t,!(t=t[z=O<<2|L<<1|B]))return this;if(!t.length)break;(e[z+1&7]||e[z+2&7]||e[z+3&7]||e[z+4&7]||e[z+5&7]||e[z+6&7]||e[z+7&7])&&(n=e,G=z)}for(;t.data!==i;)if(r=t,!(t=t.next))return this;return(s=t.next)&&delete t.next,r?(s?r.next=s:delete r.next,this):e?(s?e[z]=s:delete e[z],(t=e[0]||e[1]||e[2]||e[3]||e[4]||e[5]||e[6]||e[7])&&t===(e[7]||e[6]||e[5]||e[4]||e[3]||e[2]||e[1]||e[0])&&!t.length&&(n?n[G]=t:this._root=t),this):(this._root=s,this)}function wW(i){for(var e=0,t=i.length;ee?1:i>=e?0:NaN}function OW(i,e){return i==null||e==null?NaN:ei?1:e>=i?0:NaN}function gD(i){let e,t,n;i.length!==2?(e=Vv,t=(l,u)=>Vv(i(l),u),n=(l,u)=>i(l)-u):(e=i===Vv||i===OW?i:IW,t=i,n=i);function r(l,u,h=0,g=l.length){if(h>>1;t(l[v],u)<0?h=v+1:g=v}while(h>>1;t(l[v],u)<=0?h=v+1:g=v}while(hh&&n(l[v-1],u)>-n(l[v],u)?v-1:v}return{left:r,center:a,right:s}}function IW(){return 0}function FW(i){return i===null?NaN:+i}const kW=gD(Vv),vD=kW.right;gD(FW).center;function A_(i,e){let t,n;if(e===void 0)for(const r of i)r!=null&&(t===void 0?r>=r&&(t=n=r):(t>r&&(t=r),n=s&&(t=n=s):(t>s&&(t=s),n0){for(a=e[--t];t>0&&(n=a,r=e[--t],a=n+r,s=r-(a-n),!s););t>0&&(s<0&&e[t-1]<0||s>0&&e[t-1]>0)&&(r=s*2,n=a+r,r==n-a&&(a=n))}return a}}const zW=Math.sqrt(50),GW=Math.sqrt(10),qW=Math.sqrt(2);function d_(i,e,t){const n=(e-i)/Math.max(0,t),r=Math.floor(Math.log10(n)),s=n/Math.pow(10,r),a=s>=zW?10:s>=GW?5:s>=qW?2:1;let l,u,h;return r<0?(h=Math.pow(10,-r)/a,l=Math.round(i*h),u=Math.round(e*h),l/he&&--u,h=-h):(h=Math.pow(10,r)*a,l=Math.round(i/h),u=Math.round(e/h),l*he&&--u),u0))return[];if(i===e)return[i];const n=e=r))return[];const l=s-r+1,u=new Array(l);if(n)if(a<0)for(let h=0;h=n)&&(t=n);return t}function WW(i,e){let t=0,n=0;if(e===void 0)for(let r of i)r!=null&&(r=+r)>=r&&(++t,n+=r);else{let r=-1;for(let s of i)(s=e(s,++r,i))!=null&&(s=+s)>=s&&(++t,n+=s)}if(t)return n/t}function*$W(i){for(const e of i)yield*e}function ug(i){return Array.from($W(i))}function jd(i,e,t){i=+i,e=+e,t=(r=arguments.length)<2?(e=i,i=0,1):r<3?1:+t;for(var n=-1,r=Math.max(0,Math.ceil((e-i)/t))|0,s=new Array(r);++n>8&15|e>>4&240,e>>4&15|e&240,(e&15)<<4|e&15,1):t===8?X2(e>>24&255,e>>16&255,e>>8&255,(e&255)/255):t===4?X2(e>>12&15|e>>8&240,e>>8&15|e>>4&240,e>>4&15|e&240,((e&15)<<4|e&15)/255):null):(e=QW.exec(i))?new Wa(e[1],e[2],e[3],1):(e=KW.exec(i))?new Wa(e[1]*255/100,e[2]*255/100,e[3]*255/100,1):(e=ZW.exec(i))?X2(e[1],e[2],e[3],e[4]):(e=JW.exec(i))?X2(e[1]*255/100,e[2]*255/100,e[3]*255/100,e[4]):(e=e$.exec(i))?g6(e[1],e[2]/100,e[3]/100,1):(e=t$.exec(i))?g6(e[1],e[2]/100,e[3]/100,e[4]):h6.hasOwnProperty(i)?d6(h6[i]):i==="transparent"?new Wa(NaN,NaN,NaN,0):null}function d6(i){return new Wa(i>>16&255,i>>8&255,i&255,1)}function X2(i,e,t,n){return n<=0&&(i=e=t=NaN),new Wa(i,e,t,n)}function r$(i){return i instanceof zg||(i=cA(i)),i?(i=i.rgb(),new Wa(i.r,i.g,i.b,i.opacity)):new Wa}function iT(i,e,t,n){return arguments.length===1?r$(i):new Wa(i,e,t,n??1)}function Wa(i,e,t,n){this.r=+i,this.g=+e,this.b=+t,this.opacity=+n}uM(Wa,iT,yD(zg,{brighter(i){return i=i==null?p_:Math.pow(p_,i),new Wa(this.r*i,this.g*i,this.b*i,this.opacity)},darker(i){return i=i==null?cg:Math.pow(cg,i),new Wa(this.r*i,this.g*i,this.b*i,this.opacity)},rgb(){return this},clamp(){return new Wa(eA(this.r),eA(this.g),eA(this.b),m_(this.opacity))},displayable(){return-.5<=this.r&&this.r<255.5&&-.5<=this.g&&this.g<255.5&&-.5<=this.b&&this.b<255.5&&0<=this.opacity&&this.opacity<=1},hex:p6,formatHex:p6,formatHex8:s$,formatRgb:m6,toString:m6}));function p6(){return`#${Wf(this.r)}${Wf(this.g)}${Wf(this.b)}`}function s$(){return`#${Wf(this.r)}${Wf(this.g)}${Wf(this.b)}${Wf((isNaN(this.opacity)?1:this.opacity)*255)}`}function m6(){const i=m_(this.opacity);return`${i===1?"rgb(":"rgba("}${eA(this.r)}, ${eA(this.g)}, ${eA(this.b)}${i===1?")":`, ${i})`}`}function m_(i){return isNaN(i)?1:Math.max(0,Math.min(1,i))}function eA(i){return Math.max(0,Math.min(255,Math.round(i)||0))}function Wf(i){return i=eA(i),(i<16?"0":"")+i.toString(16)}function g6(i,e,t,n){return n<=0?i=e=t=NaN:t<=0||t>=1?i=e=NaN:e<=0&&(i=NaN),new Tl(i,e,t,n)}function xD(i){if(i instanceof Tl)return new Tl(i.h,i.s,i.l,i.opacity);if(i instanceof zg||(i=cA(i)),!i)return new Tl;if(i instanceof Tl)return i;i=i.rgb();var e=i.r/255,t=i.g/255,n=i.b/255,r=Math.min(e,t,n),s=Math.max(e,t,n),a=NaN,l=s-r,u=(s+r)/2;return l?(e===s?a=(t-n)/l+(t0&&u<1?0:a,new Tl(a,l,u,i.opacity)}function a$(i,e,t,n){return arguments.length===1?xD(i):new Tl(i,e,t,n??1)}function Tl(i,e,t,n){this.h=+i,this.s=+e,this.l=+t,this.opacity=+n}uM(Tl,a$,yD(zg,{brighter(i){return i=i==null?p_:Math.pow(p_,i),new Tl(this.h,this.s,this.l*i,this.opacity)},darker(i){return i=i==null?cg:Math.pow(cg,i),new Tl(this.h,this.s,this.l*i,this.opacity)},rgb(){var i=this.h%360+(this.h<0)*360,e=isNaN(i)||isNaN(this.s)?0:this.s,t=this.l,n=t+(t<.5?t:1-t)*e,r=2*t-n;return new Wa(L3(i>=240?i-240:i+120,r,n),L3(i,r,n),L3(i<120?i+240:i-120,r,n),this.opacity)},clamp(){return new Tl(v6(this.h),Y2(this.s),Y2(this.l),m_(this.opacity))},displayable(){return(0<=this.s&&this.s<=1||isNaN(this.s))&&0<=this.l&&this.l<=1&&0<=this.opacity&&this.opacity<=1},formatHsl(){const i=m_(this.opacity);return`${i===1?"hsl(":"hsla("}${v6(this.h)}, ${Y2(this.s)*100}%, ${Y2(this.l)*100}%${i===1?")":`, ${i})`}`}}));function v6(i){return i=(i||0)%360,i<0?i+360:i}function Y2(i){return Math.max(0,Math.min(1,i||0))}function L3(i,e,t){return(i<60?e+(t-e)*i/60:i<180?t:i<240?e+(t-e)*(240-i)/60:e)*255}const cM=i=>()=>i;function o$(i,e){return function(t){return i+t*e}}function l$(i,e,t){return i=Math.pow(i,t),e=Math.pow(e,t)-i,t=1/t,function(n){return Math.pow(i+n*e,t)}}function u$(i){return(i=+i)==1?bD:function(e,t){return t-e?l$(e,t,i):cM(isNaN(e)?t:e)}}function bD(i,e){var t=e-i;return t?o$(i,t):cM(isNaN(i)?e:i)}const _6=(function i(e){var t=u$(e);function n(r,s){var a=t((r=iT(r)).r,(s=iT(s)).r),l=t(r.g,s.g),u=t(r.b,s.b),h=bD(r.opacity,s.opacity);return function(g){return r.r=a(g),r.g=l(g),r.b=u(g),r.opacity=h(g),r+""}}return n.gamma=i,n})(1);function SD(i,e){e||(e=[]);var t=i?Math.min(e.length,i.length):0,n=e.slice(),r;return function(s){for(r=0;rt&&(s=e.slice(t,s),l[a]?l[a]+=s:l[++a]=s),(n=n[0])===(r=r[0])?l[a]?l[a]+=r:l[++a]=r:(l[++a]=null,u.push({i:a,x:fg(n,r)})),t=U3.lastIndex;return te&&(t=i,i=e,e=t),function(n){return Math.max(i,Math.min(e,n))}}function y$(i,e,t){var n=i[0],r=i[1],s=e[0],a=e[1];return r2?x$:y$,u=h=null,v}function v(x){return x==null||isNaN(x=+x)?s:(u||(u=l(i.map(n),e,t)))(n(a(x)))}return v.invert=function(x){return a(r((h||(h=l(e,i.map(n),fg)))(x)))},v.domain=function(x){return arguments.length?(i=Array.from(x,v$),g()):i.slice()},v.range=function(x){return arguments.length?(e=Array.from(x),g()):e.slice()},v.rangeRound=function(x){return e=Array.from(x),t=m$,g()},v.clamp=function(x){return arguments.length?(a=x?!0:Wd,g()):a!==Wd},v.interpolate=function(x){return arguments.length?(t=x,g()):t},v.unknown=function(x){return arguments.length?(s=x,v):s},function(x,S){return n=x,r=S,g()}}function T$(){return S$()(Wd,Wd)}function w$(i){return Math.abs(i=Math.round(i))>=1e21?i.toLocaleString("en").replace(/,/g,""):i.toString(10)}function g_(i,e){if(!isFinite(i)||i===0)return null;var t=(i=e?i.toExponential(e-1):i.toExponential()).indexOf("e"),n=i.slice(0,t);return[n.length>1?n[0]+n.slice(2):n,+i.slice(t+1)]}function C0(i){return i=g_(Math.abs(i)),i?i[1]:NaN}function M$(i,e){return function(t,n){for(var r=t.length,s=[],a=0,l=i[0],u=0;r>0&&l>0&&(u+l+1>n&&(l=Math.max(1,n-u)),s.push(t.substring(r-=l,r+l)),!((u+=l+1)>n));)l=i[a=(a+1)%i.length];return s.reverse().join(e)}}function E$(i){return function(e){return e.replace(/[0-9]/g,function(t){return i[+t]})}}var C$=/^(?:(.)?([<>=^]))?([+\-( ])?([$#])?(0)?(\d+)?(,)?(\.\d+)?(~)?([a-z%])?$/i;function v_(i){if(!(e=C$.exec(i)))throw new Error("invalid format: "+i);var e;return new fM({fill:e[1],align:e[2],sign:e[3],symbol:e[4],zero:e[5],width:e[6],comma:e[7],precision:e[8]&&e[8].slice(1),trim:e[9],type:e[10]})}v_.prototype=fM.prototype;function fM(i){this.fill=i.fill===void 0?" ":i.fill+"",this.align=i.align===void 0?">":i.align+"",this.sign=i.sign===void 0?"-":i.sign+"",this.symbol=i.symbol===void 0?"":i.symbol+"",this.zero=!!i.zero,this.width=i.width===void 0?void 0:+i.width,this.comma=!!i.comma,this.precision=i.precision===void 0?void 0:+i.precision,this.trim=!!i.trim,this.type=i.type===void 0?"":i.type+""}fM.prototype.toString=function(){return this.fill+this.align+this.sign+this.symbol+(this.zero?"0":"")+(this.width===void 0?"":Math.max(1,this.width|0))+(this.comma?",":"")+(this.precision===void 0?"":"."+Math.max(0,this.precision|0))+(this.trim?"~":"")+this.type};function R$(i){e:for(var e=i.length,t=1,n=-1,r;t0&&(n=0);break}return n>0?i.slice(0,n)+i.slice(r+1):i}var __;function N$(i,e){var t=g_(i,e);if(!t)return __=void 0,i.toPrecision(e);var n=t[0],r=t[1],s=r-(__=Math.max(-8,Math.min(8,Math.floor(r/3)))*3)+1,a=n.length;return s===a?n:s>a?n+new Array(s-a+1).join("0"):s>0?n.slice(0,s)+"."+n.slice(s):"0."+new Array(1-s).join("0")+g_(i,Math.max(0,e+s-1))[0]}function x6(i,e){var t=g_(i,e);if(!t)return i+"";var n=t[0],r=t[1];return r<0?"0."+new Array(-r).join("0")+n:n.length>r+1?n.slice(0,r+1)+"."+n.slice(r+1):n+new Array(r-n.length+2).join("0")}const b6={"%":(i,e)=>(i*100).toFixed(e),b:i=>Math.round(i).toString(2),c:i=>i+"",d:w$,e:(i,e)=>i.toExponential(e),f:(i,e)=>i.toFixed(e),g:(i,e)=>i.toPrecision(e),o:i=>Math.round(i).toString(8),p:(i,e)=>x6(i*100,e),r:x6,s:N$,X:i=>Math.round(i).toString(16).toUpperCase(),x:i=>Math.round(i).toString(16)};function S6(i){return i}var T6=Array.prototype.map,w6=["y","z","a","f","p","n","µ","m","","k","M","G","T","P","E","Z","Y"];function D$(i){var e=i.grouping===void 0||i.thousands===void 0?S6:M$(T6.call(i.grouping,Number),i.thousands+""),t=i.currency===void 0?"":i.currency[0]+"",n=i.currency===void 0?"":i.currency[1]+"",r=i.decimal===void 0?".":i.decimal+"",s=i.numerals===void 0?S6:E$(T6.call(i.numerals,String)),a=i.percent===void 0?"%":i.percent+"",l=i.minus===void 0?"−":i.minus+"",u=i.nan===void 0?"NaN":i.nan+"";function h(v,x){v=v_(v);var S=v.fill,w=v.align,R=v.sign,C=v.symbol,E=v.zero,B=v.width,L=v.comma,O=v.precision,z=v.trim,G=v.type;G==="n"?(L=!0,G="g"):b6[G]||(O===void 0&&(O=12),z=!0,G="g"),(E||S==="0"&&w==="=")&&(E=!0,S="0",w="=");var k=(x&&x.prefix!==void 0?x.prefix:"")+(C==="$"?t:C==="#"&&/[boxX]/.test(G)?"0"+G.toLowerCase():""),H=(C==="$"?n:/[%p]/.test(G)?a:"")+(x&&x.suffix!==void 0?x.suffix:""),F=b6[G],V=/[defgprs%]/.test(G);O=O===void 0?6:/[gprs]/.test(G)?Math.max(1,Math.min(21,O)):Math.max(0,Math.min(20,O));function Y(ee){var ne=k,se=H,te,Q,le;if(G==="c")se=F(ee)+se,ee="";else{ee=+ee;var de=ee<0||1/ee<0;if(ee=isNaN(ee)?u:F(Math.abs(ee),O),z&&(ee=R$(ee)),de&&+ee==0&&R!=="+"&&(de=!1),ne=(de?R==="("?R:l:R==="-"||R==="("?"":R)+ne,se=(G==="s"&&!isNaN(ee)&&__!==void 0?w6[8+__/3]:"")+se+(de&&R==="("?")":""),V){for(te=-1,Q=ee.length;++tele||le>57){se=(le===46?r+ee.slice(te+1):ee.slice(te))+se,ee=ee.slice(0,te);break}}}L&&!E&&(ee=e(ee,1/0));var Te=ne.length+ee.length+se.length,Se=Te>1)+ne+ee+se+Se.slice(Te);break;default:ee=Se+ne+ee+se;break}return s(ee)}return Y.toString=function(){return v+""},Y}function g(v,x){var S=Math.max(-8,Math.min(8,Math.floor(C0(x)/3)))*3,w=Math.pow(10,-S),R=h((v=v_(v),v.type="f",v),{suffix:w6[8+S/3]});return function(C){return R(w*C)}}return{format:h,formatPrefix:g}}var Q2,MD,ED;P$({thousands:",",grouping:[3],currency:["$",""]});function P$(i){return Q2=D$(i),MD=Q2.format,ED=Q2.formatPrefix,Q2}function L$(i){return Math.max(0,-C0(Math.abs(i)))}function U$(i,e){return Math.max(0,Math.max(-8,Math.min(8,Math.floor(C0(e)/3)))*3-C0(Math.abs(i)))}function B$(i,e){return i=Math.abs(i),e=Math.abs(e)-i,Math.max(0,C0(e)-C0(i))+1}function O$(i,e,t,n){var r=HW(i,e,t),s;switch(n=v_(n??",f"),n.type){case"s":{var a=Math.max(Math.abs(i),Math.abs(e));return n.precision==null&&!isNaN(s=U$(r,a))&&(n.precision=s),ED(n,a)}case"":case"e":case"g":case"p":case"r":{n.precision==null&&!isNaN(s=B$(r,Math.max(Math.abs(i),Math.abs(e))))&&(n.precision=s-(n.type==="e"));break}case"f":case"%":{n.precision==null&&!isNaN(s=L$(r))&&(n.precision=s-(n.type==="%")*2);break}}return MD(n)}function CD(i){var e=i.domain;return i.ticks=function(t){var n=e();return VW(n[0],n[n.length-1],t??10)},i.tickFormat=function(t,n){var r=e();return O$(r[0],r[r.length-1],t??10,n)},i.nice=function(t){t==null&&(t=10);var n=e(),r=0,s=n.length-1,a=n[r],l=n[s],u,h,g=10;for(l0;){if(h=nT(a,l,t),h===u)return n[r]=a,n[s]=l,e(n);if(h>0)a=Math.floor(a/h)*h,l=Math.ceil(l/h)*h;else if(h<0)a=Math.ceil(a*h)/h,l=Math.floor(l*h)/h;else break;u=h}return i},i}function Pc(){var i=T$();return i.copy=function(){return b$(i,Pc())},_D.apply(i,arguments),CD(i)}function RD(){var i=0,e=1,t=1,n=[.5],r=[0,1],s;function a(u){return u!=null&&u<=u?r[vD(n,u,0,t)]:s}function l(){var u=-1;for(n=new Array(t);++u=t?[n[t-1],e]:[n[h-1],n[h]]},a.unknown=function(u){return arguments.length&&(s=u),a},a.thresholds=function(){return n.slice()},a.copy=function(){return RD().domain([i,e]).range(r).unknown(s)},_D.apply(CD(a),arguments)}var di=1e-6,y_=1e-12,Ni=Math.PI,$a=Ni/2,x_=Ni/4,No=Ni*2,kr=180/Ni,Hn=Ni/180,ir=Math.abs,AM=Math.atan,Zo=Math.atan2,ei=Math.cos,K2=Math.ceil,I$=Math.exp,aT=Math.hypot,F$=Math.log,zn=Math.sin,k$=Math.sign||function(i){return i>0?1:i<0?-1:0},Lc=Math.sqrt,z$=Math.tan;function G$(i){return i>1?0:i<-1?Ni:Math.acos(i)}function Uc(i){return i>1?$a:i<-1?-$a:Math.asin(i)}function M6(i){return(i=zn(i/2))*i}function ra(){}function b_(i,e){i&&C6.hasOwnProperty(i.type)&&C6[i.type](i,e)}var E6={Feature:function(i,e){b_(i.geometry,e)},FeatureCollection:function(i,e){for(var t=i.features,n=-1,r=t.length;++n=0?1:-1,r=n*t,s=ei(e),a=zn(e),l=cT*a,u=uT*s+l*ei(r),h=l*n*zn(r);S_.add(Zo(h,u)),lT=i,uT=s,cT=a}function T_(i){return[Zo(i[1],i[0]),Uc(i[2])]}function hA(i){var e=i[0],t=i[1],n=ei(t);return[n*ei(e),n*zn(e),zn(t)]}function Z2(i,e){return i[0]*e[0]+i[1]*e[1]+i[2]*e[2]}function R0(i,e){return[i[1]*e[2]-i[2]*e[1],i[2]*e[0]-i[0]*e[2],i[0]*e[1]-i[1]*e[0]]}function B3(i,e){i[0]+=e[0],i[1]+=e[1],i[2]+=e[2]}function J2(i,e){return[i[0]*e,i[1]*e,i[2]*e]}function w_(i){var e=Lc(i[0]*i[0]+i[1]*i[1]+i[2]*i[2]);i[0]/=e,i[1]/=e,i[2]/=e}var Cr,qa,Ir,wo,Of,LD,UD,i0,Dm,Ch,Oc,_c={point:hT,lineStart:D6,lineEnd:P6,polygonStart:function(){_c.point=OD,_c.lineStart=j$,_c.lineEnd=W$,Dm=new Ec,Bc.polygonStart()},polygonEnd:function(){Bc.polygonEnd(),_c.point=hT,_c.lineStart=D6,_c.lineEnd=P6,S_<0?(Cr=-(Ir=180),qa=-(wo=90)):Dm>di?wo=90:Dm<-di&&(qa=-90),Oc[0]=Cr,Oc[1]=Ir},sphere:function(){Cr=-(Ir=180),qa=-(wo=90)}};function hT(i,e){Ch.push(Oc=[Cr=i,Ir=i]),ewo&&(wo=e)}function BD(i,e){var t=hA([i*Hn,e*Hn]);if(i0){var n=R0(i0,t),r=[n[1],-n[0],0],s=R0(r,n);w_(s),s=T_(s);var a=i-Of,l=a>0?1:-1,u=s[0]*kr*l,h,g=ir(a)>180;g^(l*Ofwo&&(wo=h)):(u=(u+360)%360-180,g^(l*Ofwo&&(wo=e))),g?ibo(Cr,Ir)&&(Ir=i):bo(i,Ir)>bo(Cr,Ir)&&(Cr=i):Ir>=Cr?(iIr&&(Ir=i)):i>Of?bo(Cr,i)>bo(Cr,Ir)&&(Ir=i):bo(i,Ir)>bo(Cr,Ir)&&(Cr=i)}else Ch.push(Oc=[Cr=i,Ir=i]);ewo&&(wo=e),i0=t,Of=i}function D6(){_c.point=BD}function P6(){Oc[0]=Cr,Oc[1]=Ir,_c.point=hT,i0=null}function OD(i,e){if(i0){var t=i-Of;Dm.add(ir(t)>180?t+(t>0?360:-360):t)}else LD=i,UD=e;Bc.point(i,e),BD(i,e)}function j$(){Bc.lineStart()}function W$(){OD(LD,UD),Bc.lineEnd(),ir(Dm)>di&&(Cr=-(Ir=180)),Oc[0]=Cr,Oc[1]=Ir,i0=null}function bo(i,e){return(e-=i)<0?e+360:e}function $$(i,e){return i[0]-e[0]}function L6(i,e){return i[0]<=i[1]?i[0]<=e&&e<=i[1]:ebo(n[0],n[1])&&(n[1]=r[1]),bo(r[0],n[1])>bo(n[0],n[1])&&(n[0]=r[0])):s.push(n=r);for(a=-1/0,t=s.length-1,e=0,n=s[t];e<=t;n=r,++e)r=s[e],(l=bo(n[1],r[0]))>a&&(a=l,Cr=r[0],Ir=n[1])}return Ch=Oc=null,Cr===1/0||qa===1/0?[[NaN,NaN],[NaN,NaN]]:[[Cr,qa],[Ir,wo]]}var xm,M_,E_,C_,R_,N_,D_,P_,fT,AT,dT,FD,kD,xa,ba,Sa,Ml={sphere:ra,point:dM,lineStart:U6,lineEnd:B6,polygonStart:function(){Ml.lineStart=Q$,Ml.lineEnd=K$},polygonEnd:function(){Ml.lineStart=U6,Ml.lineEnd=B6}};function dM(i,e){i*=Hn,e*=Hn;var t=ei(e);Gg(t*ei(i),t*zn(i),zn(e))}function Gg(i,e,t){++xm,E_+=(i-E_)/xm,C_+=(e-C_)/xm,R_+=(t-R_)/xm}function U6(){Ml.point=X$}function X$(i,e){i*=Hn,e*=Hn;var t=ei(e);xa=t*ei(i),ba=t*zn(i),Sa=zn(e),Ml.point=Y$,Gg(xa,ba,Sa)}function Y$(i,e){i*=Hn,e*=Hn;var t=ei(e),n=t*ei(i),r=t*zn(i),s=zn(e),a=Zo(Lc((a=ba*s-Sa*r)*a+(a=Sa*n-xa*s)*a+(a=xa*r-ba*n)*a),xa*n+ba*r+Sa*s);M_+=a,N_+=a*(xa+(xa=n)),D_+=a*(ba+(ba=r)),P_+=a*(Sa+(Sa=s)),Gg(xa,ba,Sa)}function B6(){Ml.point=dM}function Q$(){Ml.point=Z$}function K$(){zD(FD,kD),Ml.point=dM}function Z$(i,e){FD=i,kD=e,i*=Hn,e*=Hn,Ml.point=zD;var t=ei(e);xa=t*ei(i),ba=t*zn(i),Sa=zn(e),Gg(xa,ba,Sa)}function zD(i,e){i*=Hn,e*=Hn;var t=ei(e),n=t*ei(i),r=t*zn(i),s=zn(e),a=ba*s-Sa*r,l=Sa*n-xa*s,u=xa*r-ba*n,h=aT(a,l,u),g=Uc(h),v=h&&-g/h;fT.add(v*a),AT.add(v*l),dT.add(v*u),M_+=g,N_+=g*(xa+(xa=n)),D_+=g*(ba+(ba=r)),P_+=g*(Sa+(Sa=s)),Gg(xa,ba,Sa)}function O6(i){xm=M_=E_=C_=R_=N_=D_=P_=0,fT=new Ec,AT=new Ec,dT=new Ec,Ey(i,Ml);var e=+fT,t=+AT,n=+dT,r=aT(e,t,n);return rNi&&(i-=Math.round(i/No)*No),[i,e]}mT.invert=mT;function GD(i,e,t){return(i%=No)?e||t?pT(F6(i),k6(e,t)):F6(i):e||t?k6(e,t):mT}function I6(i){return function(e,t){return e+=i,ir(e)>Ni&&(e-=Math.round(e/No)*No),[e,t]}}function F6(i){var e=I6(i);return e.invert=I6(-i),e}function k6(i,e){var t=ei(i),n=zn(i),r=ei(e),s=zn(e);function a(l,u){var h=ei(u),g=ei(l)*h,v=zn(l)*h,x=zn(u),S=x*t+g*n;return[Zo(v*r-S*s,g*t-x*n),Uc(S*r+v*s)]}return a.invert=function(l,u){var h=ei(u),g=ei(l)*h,v=zn(l)*h,x=zn(u),S=x*r-v*s;return[Zo(v*r+x*s,g*t+S*n),Uc(S*t-g*n)]},a}function J$(i){i=GD(i[0]*Hn,i[1]*Hn,i.length>2?i[2]*Hn:0);function e(t){return t=i(t[0]*Hn,t[1]*Hn),t[0]*=kr,t[1]*=kr,t}return e.invert=function(t){return t=i.invert(t[0]*Hn,t[1]*Hn),t[0]*=kr,t[1]*=kr,t},e}function eX(i,e,t,n,r,s){if(t){var a=ei(e),l=zn(e),u=n*t;r==null?(r=e+n*No,s=e-u/2):(r=z6(a,r),s=z6(a,s),(n>0?rs)&&(r+=n*No));for(var h,g=r;n>0?g>s:g1&&i.push(i.pop().concat(i.shift()))},result:function(){var t=i;return i=[],e=null,t}}}function Hv(i,e){return ir(i[0]-e[0])=0;--l)r.point((v=g[l])[0],v[1]);else n(x.x,x.p.x,-1,r);x=x.p}x=x.o,g=x.z,S=!S}while(!x.v);r.lineEnd()}}}function G6(i){if(e=i.length){for(var e,t=0,n=i[0],r;++t=0?1:-1,V=F*H,Y=V>Ni,ee=C*G;if(u.add(Zo(ee*F*zn(V),E*k+ee*ei(V))),a+=Y?H+F*No:H,Y^w>=t^O>=t){var ne=R0(hA(S),hA(L));w_(ne);var se=R0(s,ne);w_(se);var te=(Y^H>=0?-1:1)*Uc(se[2]);(n>te||n===te&&(ne[0]||ne[1]))&&(l+=Y^H>=0?1:-1)}}return(a<-di||a0){for(u||(r.polygonStart(),u=!0),r.lineStart(),G=0;G1&&O&2&&z.push(z.pop().concat(z.shift())),g.push(z.filter(tX))}}return x}}function tX(i){return i.length>1}function nX(i,e){return((i=i.x)[0]<0?i[1]-$a-di:$a-i[1])-((e=e.x)[0]<0?e[1]-$a-di:$a-e[1])}const q6=jD(function(){return!0},iX,sX,[-Ni,-$a]);function iX(i){var e=NaN,t=NaN,n=NaN,r;return{lineStart:function(){i.lineStart(),r=1},point:function(s,a){var l=s>0?Ni:-Ni,u=ir(s-e);ir(u-Ni)0?$a:-$a),i.point(n,t),i.lineEnd(),i.lineStart(),i.point(l,t),i.point(s,t),r=0):n!==l&&u>=Ni&&(ir(e-n)di?AM((zn(e)*(s=ei(n))*zn(t)-zn(n)*(r=ei(e))*zn(i))/(r*s*a)):(e+n)/2}function sX(i,e,t,n){var r;if(i==null)r=t*$a,n.point(-Ni,r),n.point(0,r),n.point(Ni,r),n.point(Ni,0),n.point(Ni,-r),n.point(0,-r),n.point(-Ni,-r),n.point(-Ni,0),n.point(-Ni,r);else if(ir(i[0]-e[0])>di){var s=i[0]0,r=ir(e)>di;function s(g,v,x,S){eX(S,i,t,x,g,v)}function a(g,v){return ei(g)*ei(v)>e}function l(g){var v,x,S,w,R;return{lineStart:function(){w=S=!1,R=1},point:function(C,E){var B=[C,E],L,O=a(C,E),z=n?O?0:h(C,E):O?h(C+(C<0?Ni:-Ni),E):0;if(!v&&(w=S=O)&&g.lineStart(),O!==S&&(L=u(v,B),(!L||Hv(v,L)||Hv(B,L))&&(B[2]=1)),O!==S)R=0,O?(g.lineStart(),L=u(B,v),g.point(L[0],L[1])):(L=u(v,B),g.point(L[0],L[1],2),g.lineEnd()),v=L;else if(r&&v&&n^O){var G;!(z&x)&&(G=u(B,v,!0))&&(R=0,n?(g.lineStart(),g.point(G[0][0],G[0][1]),g.point(G[1][0],G[1][1]),g.lineEnd()):(g.point(G[1][0],G[1][1]),g.lineEnd(),g.lineStart(),g.point(G[0][0],G[0][1],3)))}O&&(!v||!Hv(v,B))&&g.point(B[0],B[1]),v=B,S=O,x=z},lineEnd:function(){S&&g.lineEnd(),v=null},clean:function(){return R|(w&&S)<<1}}}function u(g,v,x){var S=hA(g),w=hA(v),R=[1,0,0],C=R0(S,w),E=Z2(C,C),B=C[0],L=E-B*B;if(!L)return!x&&g;var O=e*E/L,z=-e*B/L,G=R0(R,C),k=J2(R,O),H=J2(C,z);B3(k,H);var F=G,V=Z2(k,F),Y=Z2(F,F),ee=V*V-Y*(Z2(k,k)-1);if(!(ee<0)){var ne=Lc(ee),se=J2(F,(-V-ne)/Y);if(B3(se,k),se=T_(se),!x)return se;var te=g[0],Q=v[0],le=g[1],de=v[1],Te;Q0^se[1]<(ir(se[0]-te)Ni^(te<=se[0]&&se[0]<=Q)){var We=J2(F,(-V+ne)/Y);return B3(We,k),[se,T_(We)]}}}function h(g,v){var x=n?i:Ni-i,S=0;return g<-x?S|=1:g>x&&(S|=2),v<-x?S|=4:v>x&&(S|=8),S}return jD(a,l,s,n?[0,-i]:[-Ni,i-Ni])}function oX(i,e,t,n,r,s){var a=i[0],l=i[1],u=e[0],h=e[1],g=0,v=1,x=u-a,S=h-l,w;if(w=t-a,!(!x&&w>0)){if(w/=x,x<0){if(w0){if(w>v)return;w>g&&(g=w)}if(w=r-a,!(!x&&w<0)){if(w/=x,x<0){if(w>v)return;w>g&&(g=w)}else if(x>0){if(w0)){if(w/=S,S<0){if(w0){if(w>v)return;w>g&&(g=w)}if(w=s-l,!(!S&&w<0)){if(w/=S,S<0){if(w>v)return;w>g&&(g=w)}else if(S>0){if(w0&&(i[0]=a+g*x,i[1]=l+g*S),v<1&&(e[0]=a+v*x,e[1]=l+v*S),!0}}}}}var bm=1e9,tv=-bm;function lX(i,e,t,n){function r(h,g){return i<=h&&h<=t&&e<=g&&g<=n}function s(h,g,v,x){var S=0,w=0;if(h==null||(S=a(h,v))!==(w=a(g,v))||u(h,g)<0^v>0)do x.point(S===0||S===3?i:t,S>1?n:e);while((S=(S+v+4)%4)!==w);else x.point(g[0],g[1])}function a(h,g){return ir(h[0]-i)0?0:3:ir(h[0]-t)0?2:1:ir(h[1]-e)0?1:0:g>0?3:2}function l(h,g){return u(h.x,g.x)}function u(h,g){var v=a(h,1),x=a(g,1);return v!==x?v-x:v===0?g[1]-h[1]:v===1?h[0]-g[0]:v===2?h[1]-g[1]:g[0]-h[0]}return function(h){var g=h,v=qD(),x,S,w,R,C,E,B,L,O,z,G,k={point:H,lineStart:ee,lineEnd:ne,polygonStart:V,polygonEnd:Y};function H(te,Q){r(te,Q)&&g.point(te,Q)}function F(){for(var te=0,Q=0,le=S.length;Qn&&(Ee-be)*(n-We)>(Ge-We)*(i-be)&&++te:Ge<=n&&(Ee-be)*(n-We)<(Ge-We)*(i-be)&&--te;return te}function V(){g=v,x=[],S=[],G=!0}function Y(){var te=F(),Q=G&&te,le=(x=ug(x)).length;(Q||le)&&(h.polygonStart(),Q&&(h.lineStart(),s(null,null,1,h),h.lineEnd()),le&&VD(x,l,te,s,h),h.polygonEnd()),g=h,x=S=w=null}function ee(){k.point=se,S&&S.push(w=[]),z=!0,O=!1,B=L=NaN}function ne(){x&&(se(R,C),E&&O&&v.rejoin(),x.push(v.result())),k.point=H,O&&g.lineEnd()}function se(te,Q){var le=r(te,Q);if(S&&w.push([te,Q]),z)R=te,C=Q,E=le,z=!1,le&&(g.lineStart(),g.point(te,Q));else if(le&&O)g.point(te,Q);else{var de=[B=Math.max(tv,Math.min(bm,B)),L=Math.max(tv,Math.min(bm,L))],Te=[te=Math.max(tv,Math.min(bm,te)),Q=Math.max(tv,Math.min(bm,Q))];oX(de,Te,i,e,t,n)?(O||(g.lineStart(),g.point(de[0],de[1])),g.point(Te[0],Te[1]),le||g.lineEnd(),G=!1):le&&(g.lineStart(),g.point(te,Q),G=!1)}B=te,L=Q,O=le}return k}}var gT,vT,jv,Wv,N0={sphere:ra,point:ra,lineStart:uX,lineEnd:ra,polygonStart:ra,polygonEnd:ra};function uX(){N0.point=hX,N0.lineEnd=cX}function cX(){N0.point=N0.lineEnd=ra}function hX(i,e){i*=Hn,e*=Hn,vT=i,jv=zn(e),Wv=ei(e),N0.point=fX}function fX(i,e){i*=Hn,e*=Hn;var t=zn(e),n=ei(e),r=ir(i-vT),s=ei(r),a=zn(r),l=n*a,u=Wv*t-jv*n*s,h=jv*t+Wv*n*s;gT.add(Zo(Lc(l*l+u*u),h)),vT=i,jv=t,Wv=n}function AX(i){return gT=new Ec,Ey(i,N0),+gT}var _T=[null,null],dX={type:"LineString",coordinates:_T};function Vh(i,e){return _T[0]=i,_T[1]=e,AX(dX)}var V6={Feature:function(i,e){return L_(i.geometry,e)},FeatureCollection:function(i,e){for(var t=i.features,n=-1,r=t.length;++n0&&(r=Vh(i[s],i[s-1]),r>0&&t<=r&&n<=r&&(t+n-r)*(1-Math.pow((t-n)/r,2))di}).map(x)).concat(jd(K2(s/h)*h,r,h).filter(function(L){return ir(L%v)>di}).map(S))}return E.lines=function(){return B().map(function(L){return{type:"LineString",coordinates:L}})},E.outline=function(){return{type:"Polygon",coordinates:[w(n).concat(R(a).slice(1),w(t).reverse().slice(1),R(l).reverse().slice(1))]}},E.extent=function(L){return arguments.length?E.extentMajor(L).extentMinor(L):E.extentMinor()},E.extentMajor=function(L){return arguments.length?(n=+L[0][0],t=+L[1][0],l=+L[0][1],a=+L[1][1],n>t&&(L=n,n=t,t=L),l>a&&(L=l,l=a,a=L),E.precision(C)):[[n,l],[t,a]]},E.extentMinor=function(L){return arguments.length?(e=+L[0][0],i=+L[1][0],s=+L[0][1],r=+L[1][1],e>i&&(L=e,e=i,i=L),s>r&&(L=s,s=r,r=L),E.precision(C)):[[e,s],[i,r]]},E.step=function(L){return arguments.length?E.stepMajor(L).stepMinor(L):E.stepMinor()},E.stepMajor=function(L){return arguments.length?(g=+L[0],v=+L[1],E):[g,v]},E.stepMinor=function(L){return arguments.length?(u=+L[0],h=+L[1],E):[u,h]},E.precision=function(L){return arguments.length?(C=+L,x=X6(s,r,90),S=Y6(e,i,C),w=X6(l,a,90),R=Y6(n,t,C),E):C},E.extentMajor([[-180,-90+di],[180,90-di]]).extentMinor([[-180,-80-di],[180,80+di]])}function vX(){return gX()()}function pM(i,e){var t=i[0]*Hn,n=i[1]*Hn,r=e[0]*Hn,s=e[1]*Hn,a=ei(n),l=zn(n),u=ei(s),h=zn(s),g=a*ei(t),v=a*zn(t),x=u*ei(r),S=u*zn(r),w=2*Uc(Lc(M6(s-n)+a*u*M6(r-t))),R=zn(w),C=w?function(E){var B=zn(E*=w)/R,L=zn(w-E)/R,O=L*g+B*x,z=L*v+B*S,G=L*l+B*h;return[Zo(z,O)*kr,Zo(G,Lc(O*O+z*z))*kr]}:function(){return[t*kr,n*kr]};return C.distance=w,C}const Q6=i=>i;var D0=1/0,U_=D0,Ag=-D0,B_=Ag,K6={point:_X,lineStart:ra,lineEnd:ra,polygonStart:ra,polygonEnd:ra,result:function(){var i=[[D0,U_],[Ag,B_]];return Ag=B_=-(U_=D0=1/0),i}};function _X(i,e){iAg&&(Ag=i),eB_&&(B_=e)}function mM(i){return function(e){var t=new yT;for(var n in i)t[n]=i[n];return t.stream=e,t}}function yT(){}yT.prototype={constructor:yT,point:function(i,e){this.stream.point(i,e)},sphere:function(){this.stream.sphere()},lineStart:function(){this.stream.lineStart()},lineEnd:function(){this.stream.lineEnd()},polygonStart:function(){this.stream.polygonStart()},polygonEnd:function(){this.stream.polygonEnd()}};function gM(i,e,t){var n=i.clipExtent&&i.clipExtent();return i.scale(150).translate([0,0]),n!=null&&i.clipExtent(null),Ey(t,i.stream(K6)),e(K6.result()),n!=null&&i.clipExtent(n),i}function $D(i,e,t){return gM(i,function(n){var r=e[1][0]-e[0][0],s=e[1][1]-e[0][1],a=Math.min(r/(n[1][0]-n[0][0]),s/(n[1][1]-n[0][1])),l=+e[0][0]+(r-a*(n[1][0]+n[0][0]))/2,u=+e[0][1]+(s-a*(n[1][1]+n[0][1]))/2;i.scale(150*a).translate([l,u])},t)}function yX(i,e,t){return $D(i,[[0,0],e],t)}function xX(i,e,t){return gM(i,function(n){var r=+e,s=r/(n[1][0]-n[0][0]),a=(r-s*(n[1][0]+n[0][0]))/2,l=-s*n[0][1];i.scale(150*s).translate([a,l])},t)}function bX(i,e,t){return gM(i,function(n){var r=+e,s=r/(n[1][1]-n[0][1]),a=-s*n[0][0],l=(r-s*(n[1][1]+n[0][1]))/2;i.scale(150*s).translate([a,l])},t)}var Z6=16,SX=ei(30*Hn);function J6(i,e){return+e?wX(i,e):TX(i)}function TX(i){return mM({point:function(e,t){e=i(e,t),this.stream.point(e[0],e[1])}})}function wX(i,e){function t(n,r,s,a,l,u,h,g,v,x,S,w,R,C){var E=h-n,B=g-r,L=E*E+B*B;if(L>4*e&&R--){var O=a+x,z=l+S,G=u+w,k=Lc(O*O+z*z+G*G),H=Uc(G/=k),F=ir(ir(G)-1)e||ir((E*ne+B*se)/L-.5)>.3||a*x+l*S+u*w2?te[2]%360*Hn:0,ne()):[l*kr,u*kr,h*kr]},Y.angle=function(te){return arguments.length?(v=te%360*Hn,ne()):v*kr},Y.reflectX=function(te){return arguments.length?(x=te?-1:1,ne()):x<0},Y.reflectY=function(te){return arguments.length?(S=te?-1:1,ne()):S<0},Y.precision=function(te){return arguments.length?(G=J6(k,z=te*te),se()):Lc(z)},Y.fitExtent=function(te,Q){return $D(Y,te,Q)},Y.fitSize=function(te,Q){return yX(Y,te,Q)},Y.fitWidth=function(te,Q){return xX(Y,te,Q)},Y.fitHeight=function(te,Q){return bX(Y,te,Q)};function ne(){var te=eR(t,0,0,x,S,v).apply(null,e(s,a)),Q=eR(t,n-te[0],r-te[1],x,S,v);return g=GD(l,u,h),k=pT(e,Q),H=pT(g,k),G=J6(k,z),se()}function se(){return F=V=null,Y}return function(){return e=i.apply(this,arguments),Y.invert=e.invert&&ee,ne()}}function DX(i){return function(e,t){var n=Lc(e*e+t*t),r=i(n),s=zn(r),a=ei(r);return[Zo(e*s,n*a),Uc(n&&t*s/n)]}}function vM(i,e){return[i,F$(z$(($a+e)/2))]}vM.invert=function(i,e){return[i,2*AM(I$(e))-$a]};function XD(i,e){var t=ei(e),n=1+ei(i)*t;return[t*zn(i)/n,zn(e)/n]}XD.invert=DX(function(i){return 2*AM(i)});function PX(){return RX(XD).scale(250).clipAngle(142)}function xT(i,e){(e==null||e>i.length)&&(e=i.length);for(var t=0,n=Array(e);t1&&arguments[1]!==void 0?arguments[1]:0,n=arguments.length>2&&arguments[2]!==void 0?arguments[2]:1,r=Pc().domain([1,0]).range([t,n]).clamp(!0),s=Pc().domain([I3(t),I3(n)]).range([1,0]).clamp(!0),a=function(v){return s(I3(r(v)))},l=e.array,u=0,h=l.length;u2&&arguments[2]!==void 0?arguments[2]:0,r=arguments.length>3&&arguments[3]!==void 0?arguments[3]:0,s=arguments.length>4?arguments[4]:void 0,a=arguments.length>5?arguments[5]:void 0,l=[],u=Math.pow(2,e),h=360/u,g=180/u,v=s===void 0?u-1:s,x=a===void 0?u-1:a,S=n,w=Math.min(u-1,v);S<=w;S++)for(var R=r,C=Math.min(u-1,x);R<=C;R++){var E=R,B=g;if(t){E=R===0?R:nR(R/u)*u;var L=R+1===u?R+1:nR((R+1)/u)*u;B=(L-E)*180/u}var O=-180+(S+.5)*h,z=90-(E*180/u+B/2),G=B;l.push({x:S,y:R,lng:O,lat:z,latLen:G})}return l},QX=6,KX=7,ZX=3,JX=90,Ql=new WeakMap,Nh=new WeakMap,F3=new WeakMap,nv=new WeakMap,Vo=new WeakMap,I_=new WeakMap,r0=new WeakMap,Ef=new WeakMap,iv=new WeakSet,eY=(function(i){function e(t){var n,r=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},s=r.tileUrl,a=r.minLevel,l=a===void 0?0:a,u=r.maxLevel,h=u===void 0?17:u,g=r.mercatorProjection,v=g===void 0?!0:g;return IX(this,e),n=OX(this,e),FX(n,iv),xh(n,Ql,void 0),xh(n,Nh,void 0),xh(n,F3,void 0),xh(n,nv,void 0),xh(n,Vo,{}),xh(n,I_,void 0),xh(n,r0,void 0),xh(n,Ef,void 0),yd(n,"minLevel",void 0),yd(n,"maxLevel",void 0),yd(n,"thresholds",KD(new Array(30)).map(function(x,S){return 8/Math.pow(2,S)})),yd(n,"curvatureResolution",5),yd(n,"tileMargin",0),yd(n,"clearTiles",function(){Object.values(fi(Vo,n)).forEach(function(x){x.forEach(function(S){S.obj&&(n.remove(S.obj),tR(S.obj),delete S.obj)})}),bh(Vo,n,{})}),bh(Ql,n,t),n.tileUrl=s,bh(Nh,n,v),n.minLevel=l,n.maxLevel=h,n.level=0,n.add(bh(Ef,n,new zi(new Eu(fi(Ql,n)*.99,180,90),new pA({color:0})))),fi(Ef,n).visible=!1,fi(Ef,n).material.polygonOffset=!0,fi(Ef,n).material.polygonOffsetUnits=3,fi(Ef,n).material.polygonOffsetFactor=1,n}return GX(e,i),zX(e,[{key:"tileUrl",get:function(){return fi(F3,this)},set:function(n){bh(F3,this,n),this.updatePov(fi(r0,this))}},{key:"level",get:function(){return fi(nv,this)},set:function(n){var r,s=this;fi(Vo,this)[n]||Pm(iv,this,tY).call(this,n);var a=fi(nv,this);if(bh(nv,this,n),!(n===a||a===void 0)){if(fi(Ef,this).visible=n>0,fi(Vo,this)[n].forEach(function(u){return u.obj&&(u.obj.material.depthWrite=!0)}),an)for(var l=n+1;l<=a;l++)fi(Vo,this)[l]&&fi(Vo,this)[l].forEach(function(u){u.obj&&(s.remove(u.obj),tR(u.obj),delete u.obj)});Pm(iv,this,rR).call(this)}}},{key:"updatePov",value:function(n){var r=this;if(!(!n||!(n instanceof _y))){bh(r0,this,n);var s;if(bh(I_,this,function(g){if(!g.hullPnts){var v=360/Math.pow(2,r.level),x=g.lng,S=g.lat,w=g.latLen,R=x-v/2,C=x+v/2,E=S-w/2,B=S+w/2;g.hullPnts=[[S,x],[E,R],[B,R],[E,C],[B,C]].map(function(L){var O=$v(L,2),z=O[0],G=O[1];return nP(z,G,fi(Ql,r))}).map(function(L){var O=L.x,z=L.y,G=L.z;return new ce(O,z,G)})}return s||(s=new Fg,n.updateMatrix(),n.updateMatrixWorld(),s.setFromProjectionMatrix(new kn().multiplyMatrices(n.projectionMatrix,n.matrixWorldInverse))),g.hullPnts.some(function(L){return s.containsPoint(L.clone().applyMatrix4(r.matrixWorld))})}),this.tileUrl){var a=n.position.clone(),l=a.distanceTo(this.getWorldPosition(new ce)),u=(l-fi(Ql,this))/fi(Ql,this),h=this.thresholds.findIndex(function(g){return g&&g<=u});this.level=Math.min(this.maxLevel,Math.max(this.minLevel,h<0?this.thresholds.length:h)),Pm(iv,this,rR).call(this)}}}}])})(ja);function tY(i){var e=this;if(i>KX){fi(Vo,this)[i]=[];return}var t=fi(Vo,this)[i]=ST(i,fi(Nh,this));t.forEach(function(n){return n.centroid=nP(n.lat,n.lng,fi(Ql,e))}),t.octree=mD().x(function(n){return n.centroid.x}).y(function(n){return n.centroid.y}).z(function(n){return n.centroid.z}).addAll(t)}function rR(){var i=this;if(!(!this.tileUrl||this.level===void 0||!fi(Vo,this).hasOwnProperty(this.level))&&!(!fi(I_,this)&&this.level>QX)){var e=fi(Vo,this)[this.level];if(fi(r0,this)){var t=this.worldToLocal(fi(r0,this).position.clone());if(e.octree){var n,r=this.worldToLocal(fi(r0,this).position.clone()),s=(r.length()-fi(Ql,this))*ZX;e=(n=e.octree).findAllWithinRadius.apply(n,KD(r).concat([s]))}else{var a=XX(t),l=(a.r/fi(Ql,this)-1)*JX,u=l/Math.cos(Mf(a.lat)),h=[a.lng-u,a.lng+u],g=[a.lat+l,a.lat-l],v=iR(this.level,fi(Nh,this),h[0],g[0]),x=$v(v,2),S=x[0],w=x[1],R=iR(this.level,fi(Nh,this),h[1],g[1]),C=$v(R,2),E=C[0],B=C[1];!e.record&&(e.record={});var L=e.record;if(!L.hasOwnProperty("".concat(Math.round((S+E)/2),"_").concat(Math.round((w+B)/2))))e=ST(this.level,fi(Nh,this),S,w,E,B).map(function(H){var F="".concat(H.x,"_").concat(H.y);return L.hasOwnProperty(F)?L[F]:(L[F]=H,e.push(H),H)});else{for(var O=[],z=S;z<=E;z++)for(var G=w;G<=B;G++){var k="".concat(z,"_").concat(G);L.hasOwnProperty(k)||(L[k]=ST(this.level,fi(Nh,this),z,G,z,G)[0],e.push(L[k])),O.push(L[k])}e=O}}}e.filter(function(H){return!H.obj}).filter(fi(I_,this)||function(){return!0}).forEach(function(H){var F=H.x,V=H.y,Y=H.lng,ee=H.lat,ne=H.latLen,se=360/Math.pow(2,i.level);if(!H.obj){var te=se*(1-i.tileMargin),Q=ne*(1-i.tileMargin),le=Mf(Y),de=Mf(-ee),Te=new zi(new Eu(fi(Ql,i),Math.ceil(te/i.curvatureResolution),Math.ceil(Q/i.curvatureResolution),Mf(90-te/2)+le,Mf(te),Mf(90-Q/2)+de,Mf(Q)),new Vc);if(fi(Nh,i)){var Se=[ee+ne/2,ee-ne/2].map(function(Ee){return .5-Ee/180}),ue=$v(Se,2),be=ue[0],We=ue[1];YX(Te.geometry.attributes.uv,be,We)}H.obj=Te}H.loading||(H.loading=!0,new rM().load(i.tileUrl(F,V,i.level),function(Ee){var Ge=H.obj;Ge&&(Ee.colorSpace=_n,Ge.material.map=Ee,Ge.material.color=null,Ge.material.needsUpdate=!0,i.add(Ge)),H.loading=!1}))})}}function nY(i,e,t=2){const n=e&&e.length,r=n?e[0]*t:i.length;let s=rP(i,0,r,t,!0);const a=[];if(!s||s.next===s.prev)return a;let l,u,h;if(n&&(s=oY(i,e,s,t)),i.length>80*t){l=i[0],u=i[1];let g=l,v=u;for(let x=t;xg&&(g=S),w>v&&(v=w)}h=Math.max(g-l,v-u),h=h!==0?32767/h:0}return dg(s,a,t,l,u,h,0),a}function rP(i,e,t,n,r){let s;if(r===vY(i,e,t,n)>0)for(let a=e;a=e;a-=n)s=sR(a/n|0,i[a],i[a+1],s);return s&&P0(s,s.next)&&(mg(s),s=s.next),s}function fA(i,e){if(!i)return i;e||(e=i);let t=i,n;do if(n=!1,!t.steiner&&(P0(t,t.next)||Dr(t.prev,t,t.next)===0)){if(mg(t),t=e=t.prev,t===t.next)break;n=!0}else t=t.next;while(n||t!==e);return e}function dg(i,e,t,n,r,s,a){if(!i)return;!a&&s&&fY(i,n,r,s);let l=i;for(;i.prev!==i.next;){const u=i.prev,h=i.next;if(s?rY(i,n,r,s):iY(i)){e.push(u.i,i.i,h.i),mg(i),i=h.next,l=h.next;continue}if(i=h,i===l){a?a===1?(i=sY(fA(i),e),dg(i,e,t,n,r,s,2)):a===2&&aY(i,e,t,n,r,s):dg(fA(i),e,t,n,r,s,1);break}}}function iY(i){const e=i.prev,t=i,n=i.next;if(Dr(e,t,n)>=0)return!1;const r=e.x,s=t.x,a=n.x,l=e.y,u=t.y,h=n.y,g=Math.min(r,s,a),v=Math.min(l,u,h),x=Math.max(r,s,a),S=Math.max(l,u,h);let w=n.next;for(;w!==e;){if(w.x>=g&&w.x<=x&&w.y>=v&&w.y<=S&&Sm(r,l,s,u,a,h,w.x,w.y)&&Dr(w.prev,w,w.next)>=0)return!1;w=w.next}return!0}function rY(i,e,t,n){const r=i.prev,s=i,a=i.next;if(Dr(r,s,a)>=0)return!1;const l=r.x,u=s.x,h=a.x,g=r.y,v=s.y,x=a.y,S=Math.min(l,u,h),w=Math.min(g,v,x),R=Math.max(l,u,h),C=Math.max(g,v,x),E=TT(S,w,e,t,n),B=TT(R,C,e,t,n);let L=i.prevZ,O=i.nextZ;for(;L&&L.z>=E&&O&&O.z<=B;){if(L.x>=S&&L.x<=R&&L.y>=w&&L.y<=C&&L!==r&&L!==a&&Sm(l,g,u,v,h,x,L.x,L.y)&&Dr(L.prev,L,L.next)>=0||(L=L.prevZ,O.x>=S&&O.x<=R&&O.y>=w&&O.y<=C&&O!==r&&O!==a&&Sm(l,g,u,v,h,x,O.x,O.y)&&Dr(O.prev,O,O.next)>=0))return!1;O=O.nextZ}for(;L&&L.z>=E;){if(L.x>=S&&L.x<=R&&L.y>=w&&L.y<=C&&L!==r&&L!==a&&Sm(l,g,u,v,h,x,L.x,L.y)&&Dr(L.prev,L,L.next)>=0)return!1;L=L.prevZ}for(;O&&O.z<=B;){if(O.x>=S&&O.x<=R&&O.y>=w&&O.y<=C&&O!==r&&O!==a&&Sm(l,g,u,v,h,x,O.x,O.y)&&Dr(O.prev,O,O.next)>=0)return!1;O=O.nextZ}return!0}function sY(i,e){let t=i;do{const n=t.prev,r=t.next.next;!P0(n,r)&&aP(n,t,t.next,r)&&pg(n,r)&&pg(r,n)&&(e.push(n.i,t.i,r.i),mg(t),mg(t.next),t=i=r),t=t.next}while(t!==i);return fA(t)}function aY(i,e,t,n,r,s){let a=i;do{let l=a.next.next;for(;l!==a.prev;){if(a.i!==l.i&&pY(a,l)){let u=oP(a,l);a=fA(a,a.next),u=fA(u,u.next),dg(a,e,t,n,r,s,0),dg(u,e,t,n,r,s,0);return}l=l.next}a=a.next}while(a!==i)}function oY(i,e,t,n){const r=[];for(let s=0,a=e.length;s=t.next.y&&t.next.y!==t.y){const v=t.x+(r-t.y)*(t.next.x-t.x)/(t.next.y-t.y);if(v<=n&&v>s&&(s=v,a=t.x=t.x&&t.x>=u&&n!==t.x&&sP(ra.x||t.x===a.x&&hY(a,t)))&&(a=t,g=v)}t=t.next}while(t!==l);return a}function hY(i,e){return Dr(i.prev,i,e.prev)<0&&Dr(e.next,i,i.next)<0}function fY(i,e,t,n){let r=i;do r.z===0&&(r.z=TT(r.x,r.y,e,t,n)),r.prevZ=r.prev,r.nextZ=r.next,r=r.next;while(r!==i);r.prevZ.nextZ=null,r.prevZ=null,AY(r)}function AY(i){let e,t=1;do{let n=i,r;i=null;let s=null;for(e=0;n;){e++;let a=n,l=0;for(let h=0;h0||u>0&&a;)l!==0&&(u===0||!a||n.z<=a.z)?(r=n,n=n.nextZ,l--):(r=a,a=a.nextZ,u--),s?s.nextZ=r:i=r,r.prevZ=s,s=r;n=a}s.nextZ=null,t*=2}while(e>1);return i}function TT(i,e,t,n,r){return i=(i-t)*r|0,e=(e-n)*r|0,i=(i|i<<8)&16711935,i=(i|i<<4)&252645135,i=(i|i<<2)&858993459,i=(i|i<<1)&1431655765,e=(e|e<<8)&16711935,e=(e|e<<4)&252645135,e=(e|e<<2)&858993459,e=(e|e<<1)&1431655765,i|e<<1}function dY(i){let e=i,t=i;do(e.x=(i-a)*(s-l)&&(i-a)*(n-l)>=(t-a)*(e-l)&&(t-a)*(s-l)>=(r-a)*(n-l)}function Sm(i,e,t,n,r,s,a,l){return!(i===a&&e===l)&&sP(i,e,t,n,r,s,a,l)}function pY(i,e){return i.next.i!==e.i&&i.prev.i!==e.i&&!mY(i,e)&&(pg(i,e)&&pg(e,i)&&gY(i,e)&&(Dr(i.prev,i,e.prev)||Dr(i,e.prev,e))||P0(i,e)&&Dr(i.prev,i,i.next)>0&&Dr(e.prev,e,e.next)>0)}function Dr(i,e,t){return(e.y-i.y)*(t.x-e.x)-(e.x-i.x)*(t.y-e.y)}function P0(i,e){return i.x===e.x&&i.y===e.y}function aP(i,e,t,n){const r=sv(Dr(i,e,t)),s=sv(Dr(i,e,n)),a=sv(Dr(t,n,i)),l=sv(Dr(t,n,e));return!!(r!==s&&a!==l||r===0&&rv(i,t,e)||s===0&&rv(i,n,e)||a===0&&rv(t,i,n)||l===0&&rv(t,e,n))}function rv(i,e,t){return e.x<=Math.max(i.x,t.x)&&e.x>=Math.min(i.x,t.x)&&e.y<=Math.max(i.y,t.y)&&e.y>=Math.min(i.y,t.y)}function sv(i){return i>0?1:i<0?-1:0}function mY(i,e){let t=i;do{if(t.i!==i.i&&t.next.i!==i.i&&t.i!==e.i&&t.next.i!==e.i&&aP(t,t.next,i,e))return!0;t=t.next}while(t!==i);return!1}function pg(i,e){return Dr(i.prev,i,i.next)<0?Dr(i,e,i.next)>=0&&Dr(i,i.prev,e)>=0:Dr(i,e,i.prev)<0||Dr(i,i.next,e)<0}function gY(i,e){let t=i,n=!1;const r=(i.x+e.x)/2,s=(i.y+e.y)/2;do t.y>s!=t.next.y>s&&t.next.y!==t.y&&r<(t.next.x-t.x)*(s-t.y)/(t.next.y-t.y)+t.x&&(n=!n),t=t.next;while(t!==i);return n}function oP(i,e){const t=wT(i.i,i.x,i.y),n=wT(e.i,e.x,e.y),r=i.next,s=e.prev;return i.next=e,e.prev=i,t.next=r,r.prev=t,n.next=t,t.prev=n,s.next=n,n.prev=s,n}function sR(i,e,t,n){const r=wT(i,e,t);return n?(r.next=n.next,r.prev=n,n.next.prev=r,n.next=r):(r.prev=r,r.next=r),r}function mg(i){i.next.prev=i.prev,i.prev.next=i.next,i.prevZ&&(i.prevZ.nextZ=i.nextZ),i.nextZ&&(i.nextZ.prevZ=i.prevZ)}function wT(i,e,t){return{i,x:e,y:t,prev:null,next:null,z:0,prevZ:null,nextZ:null,steiner:!1}}function vY(i,e,t,n){let r=0;for(let s=e,a=t-n;si.length)&&(e=i.length);for(var t=0,n=Array(e);t=i.length?{done:!0}:{done:!1,value:i[n++]}},e:function(u){throw u},f:r}}throw new TypeError(`Invalid attempt to iterate non-iterable instance. -In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}var s,a=!0,l=!1;return{s:function(){t=t.call(i)},n:function(){var u=t.next();return a=u.done,u},e:function(u){l=!0,s=u},f:function(){try{a||t.return==null||t.return()}finally{if(l)throw s}}}}function k_(i){return k_=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(e){return e.__proto__||Object.getPrototypeOf(e)},k_(i)}function MY(i,e){if(typeof e!="function"&&e!==null)throw new TypeError("Super expression must either be null or a function");i.prototype=Object.create(e&&e.prototype,{constructor:{value:i,writable:!0,configurable:!0}}),Object.defineProperty(i,"prototype",{writable:!1}),e&&ET(i,e)}function lP(){try{var i=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){}))}catch{}return(lP=function(){return!!i})()}function EY(i){if(typeof Symbol<"u"&&i[Symbol.iterator]!=null||i["@@iterator"]!=null)return Array.from(i)}function CY(i,e){var t=i==null?null:typeof Symbol<"u"&&i[Symbol.iterator]||i["@@iterator"];if(t!=null){var n,r,s,a,l=[],u=!0,h=!1;try{if(s=(t=t.call(i)).next,e===0){if(Object(t)!==t)return;u=!1}else for(;!(u=(n=s.call(t)).done)&&(l.push(n.value),l.length!==e);u=!0);}catch(g){h=!0,r=g}finally{try{if(!u&&t.return!=null&&(a=t.return(),Object(a)!==a))return}finally{if(h)throw r}}return l}}function RY(){throw new TypeError(`Invalid attempt to destructure non-iterable instance. -In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}function NY(){throw new TypeError(`Invalid attempt to spread non-iterable instance. -In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}function DY(i,e){if(e&&(typeof e=="object"||typeof e=="function"))return e;if(e!==void 0)throw new TypeError("Derived constructors may only return object or undefined");return xY(i)}function ET(i,e){return ET=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,n){return t.__proto__=n,t},ET(i,e)}function nm(i,e){return _Y(i)||CY(i,e)||_M(i,e)||RY()}function PY(i){return yY(i)||EY(i)||_M(i)||NY()}function _M(i,e){if(i){if(typeof i=="string")return MT(i,e);var t={}.toString.call(i).slice(8,-1);return t==="Object"&&i.constructor&&(t=i.constructor.name),t==="Map"||t==="Set"?Array.from(i):t==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t)?MT(i,e):void 0}}var aR=function(){var e=arguments.length>0&&arguments[0]!==void 0?arguments[0]:[],t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:1,n=[],r=null;return e.forEach(function(s){if(r){var a=Vh(s,r)*180/Math.PI;if(a>t)for(var l=pM(r,s),u=r.length>2||s.length>2?fg(r[2]||0,s[2]||0):null,h=u?function(x){return[].concat(PY(l(x)),[u(x)])}:l,g=1/Math.ceil(a/t),v=g;v<1;)n.push(h(v)),v+=g}n.push(r=s)}),n},CT=typeof window<"u"&&window.THREE?window.THREE:{BufferGeometry:Ki,Float32BufferAttribute:wi},LY=new CT.BufferGeometry().setAttribute?"setAttribute":"addAttribute",uP=(function(i){function e(t){var n,r=arguments.length>1&&arguments[1]!==void 0?arguments[1]:1,s=arguments.length>2&&arguments[2]!==void 0?arguments[2]:5;SY(this,e),n=bY(this,e),n.type="GeoJsonGeometry",n.parameters={geoJson:t,radius:r,resolution:s};var a=({Point:g,MultiPoint:v,LineString:x,MultiLineString:S,Polygon:w,MultiPolygon:R}[t.type]||function(){return[]})(t.coordinates,r),l=[],u=[],h=0;a.forEach(function(C){var E=l.length;im({indices:l,vertices:u},C),n.addGroup(E,l.length-E,h++)}),l.length&&n.setIndex(l),u.length&&n[LY]("position",new CT.Float32BufferAttribute(u,3));function g(C,E){var B=k3(C[1],C[0],E+(C[2]||0)),L=[];return[{vertices:B,indices:L}]}function v(C,E){var B={vertices:[],indices:[]};return C.map(function(L){return g(L,E)}).forEach(function(L){var O=nm(L,1),z=O[0];im(B,z)}),[B]}function x(C,E){for(var B=aR(C,s).map(function(H){var F=nm(H,3),V=F[0],Y=F[1],ee=F[2],ne=ee===void 0?0:ee;return k3(Y,V,E+ne)}),L=F_([B]),O=L.vertices,z=Math.round(O.length/3),G=[],k=1;k2&&arguments[2]!==void 0?arguments[2]:0,n=(90-i)*Math.PI/180,r=(90-e)*Math.PI/180;return[t*Math.sin(n)*Math.cos(r),t*Math.cos(n),t*Math.sin(n)*Math.sin(r)]}function UY(i,e,t=!0){if(!e||!e.isReady)throw new Error("BufferGeometryUtils: Initialized MikkTSpace library required.");if(!i.hasAttribute("position")||!i.hasAttribute("normal")||!i.hasAttribute("uv"))throw new Error('BufferGeometryUtils: Tangents require "position", "normal", and "uv" attributes.');function n(a){if(a.normalized||a.isInterleavedBufferAttribute){const l=new Float32Array(a.count*a.itemSize);for(let u=0,h=0;u2&&(l[h++]=a.getZ(u));return l}return a.array instanceof Float32Array?a.array:new Float32Array(a.array)}const r=i.index?i.toNonIndexed():i,s=e.generateTangents(n(r.attributes.position),n(r.attributes.normal),n(r.attributes.uv));if(t)for(let a=3;a=2&&a.setY(l,i.getY(l)),n>=3&&a.setZ(l,i.getZ(l)),n>=4&&a.setW(l,i.getW(l));return a}function FY(i){const e=i.attributes,t=i.morphTargets,n=new Map;for(const r in e){const s=e[r];s.isInterleavedBufferAttribute&&(n.has(s)||n.set(s,z_(s)),e[r]=n.get(s))}for(const r in t){const s=t[r];s.isInterleavedBufferAttribute&&(n.has(s)||n.set(s,z_(s)),t[r]=n.get(s))}}function kY(i){let e=0;for(const n in i.attributes){const r=i.getAttribute(n);e+=r.count*r.itemSize*r.array.BYTES_PER_ELEMENT}const t=i.getIndex();return e+=t?t.count*t.itemSize*t.array.BYTES_PER_ELEMENT:0,e}function zY(i,e=1e-4){e=Math.max(e,Number.EPSILON);const t={},n=i.getIndex(),r=i.getAttribute("position"),s=n?n.count:r.count;let a=0;const l=Object.keys(i.attributes),u={},h={},g=[],v=["getX","getY","getZ","getW"],x=["setX","setY","setZ","setW"];for(let B=0,L=l.length;B{const F=new k.array.constructor(k.count*k.itemSize);h[O][H]=new k.constructor(F,k.itemSize,k.normalized)}))}const S=e*.5,w=Math.log10(1/e),R=Math.pow(10,w),C=S*R;for(let B=0;Ba.materialIndex!==l.materialIndex?a.materialIndex-l.materialIndex:a.start-l.start),i.getIndex()===null){const a=i.getAttribute("position"),l=[];for(let u=0;ut&&u.add(Y)}u.normalize(),w.setXYZ(E+z,u.x,u.y,u.z)}}return g.setAttribute("normal",w),g}const yM=Object.freeze(Object.defineProperty({__proto__:null,computeMikkTSpaceTangents:UY,computeMorphedAttributes:qY,deepCloneAttribute:OY,deinterleaveAttribute:z_,deinterleaveGeometry:FY,estimateBytesUsed:kY,interleaveAttributes:IY,mergeAttributes:RT,mergeGeometries:BY,mergeGroups:VY,mergeVertices:zY,toCreasedNormals:HY,toTrianglesDrawMode:GY},Symbol.toStringTag,{value:"Module"}));var Mt=(function(i){return typeof i=="function"?i:typeof i=="string"?function(e){return e[i]}:function(e){return i}});function G_(i){"@babel/helpers - typeof";return G_=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(e){return typeof e}:function(e){return e&&typeof Symbol=="function"&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},G_(i)}var jY=/^\s+/,WY=/\s+$/;function yn(i,e){if(i=i||"",e=e||{},i instanceof yn)return i;if(!(this instanceof yn))return new yn(i,e);var t=$Y(i);this._originalInput=i,this._r=t.r,this._g=t.g,this._b=t.b,this._a=t.a,this._roundA=Math.round(100*this._a)/100,this._format=e.format||t.format,this._gradientType=e.gradientType,this._r<1&&(this._r=Math.round(this._r)),this._g<1&&(this._g=Math.round(this._g)),this._b<1&&(this._b=Math.round(this._b)),this._ok=t.ok}yn.prototype={isDark:function(){return this.getBrightness()<128},isLight:function(){return!this.isDark()},isValid:function(){return this._ok},getOriginalInput:function(){return this._originalInput},getFormat:function(){return this._format},getAlpha:function(){return this._a},getBrightness:function(){var e=this.toRgb();return(e.r*299+e.g*587+e.b*114)/1e3},getLuminance:function(){var e=this.toRgb(),t,n,r,s,a,l;return t=e.r/255,n=e.g/255,r=e.b/255,t<=.03928?s=t/12.92:s=Math.pow((t+.055)/1.055,2.4),n<=.03928?a=n/12.92:a=Math.pow((n+.055)/1.055,2.4),r<=.03928?l=r/12.92:l=Math.pow((r+.055)/1.055,2.4),.2126*s+.7152*a+.0722*l},setAlpha:function(e){return this._a=cP(e),this._roundA=Math.round(100*this._a)/100,this},toHsv:function(){var e=uR(this._r,this._g,this._b);return{h:e.h*360,s:e.s,v:e.v,a:this._a}},toHsvString:function(){var e=uR(this._r,this._g,this._b),t=Math.round(e.h*360),n=Math.round(e.s*100),r=Math.round(e.v*100);return this._a==1?"hsv("+t+", "+n+"%, "+r+"%)":"hsva("+t+", "+n+"%, "+r+"%, "+this._roundA+")"},toHsl:function(){var e=lR(this._r,this._g,this._b);return{h:e.h*360,s:e.s,l:e.l,a:this._a}},toHslString:function(){var e=lR(this._r,this._g,this._b),t=Math.round(e.h*360),n=Math.round(e.s*100),r=Math.round(e.l*100);return this._a==1?"hsl("+t+", "+n+"%, "+r+"%)":"hsla("+t+", "+n+"%, "+r+"%, "+this._roundA+")"},toHex:function(e){return cR(this._r,this._g,this._b,e)},toHexString:function(e){return"#"+this.toHex(e)},toHex8:function(e){return KY(this._r,this._g,this._b,this._a,e)},toHex8String:function(e){return"#"+this.toHex8(e)},toRgb:function(){return{r:Math.round(this._r),g:Math.round(this._g),b:Math.round(this._b),a:this._a}},toRgbString:function(){return this._a==1?"rgb("+Math.round(this._r)+", "+Math.round(this._g)+", "+Math.round(this._b)+")":"rgba("+Math.round(this._r)+", "+Math.round(this._g)+", "+Math.round(this._b)+", "+this._roundA+")"},toPercentageRgb:function(){return{r:Math.round(Sr(this._r,255)*100)+"%",g:Math.round(Sr(this._g,255)*100)+"%",b:Math.round(Sr(this._b,255)*100)+"%",a:this._a}},toPercentageRgbString:function(){return this._a==1?"rgb("+Math.round(Sr(this._r,255)*100)+"%, "+Math.round(Sr(this._g,255)*100)+"%, "+Math.round(Sr(this._b,255)*100)+"%)":"rgba("+Math.round(Sr(this._r,255)*100)+"%, "+Math.round(Sr(this._g,255)*100)+"%, "+Math.round(Sr(this._b,255)*100)+"%, "+this._roundA+")"},toName:function(){return this._a===0?"transparent":this._a<1?!1:uQ[cR(this._r,this._g,this._b,!0)]||!1},toFilter:function(e){var t="#"+hR(this._r,this._g,this._b,this._a),n=t,r=this._gradientType?"GradientType = 1, ":"";if(e){var s=yn(e);n="#"+hR(s._r,s._g,s._b,s._a)}return"progid:DXImageTransform.Microsoft.gradient("+r+"startColorstr="+t+",endColorstr="+n+")"},toString:function(e){var t=!!e;e=e||this._format;var n=!1,r=this._a<1&&this._a>=0,s=!t&&r&&(e==="hex"||e==="hex6"||e==="hex3"||e==="hex4"||e==="hex8"||e==="name");return s?e==="name"&&this._a===0?this.toName():this.toRgbString():(e==="rgb"&&(n=this.toRgbString()),e==="prgb"&&(n=this.toPercentageRgbString()),(e==="hex"||e==="hex6")&&(n=this.toHexString()),e==="hex3"&&(n=this.toHexString(!0)),e==="hex4"&&(n=this.toHex8String(!0)),e==="hex8"&&(n=this.toHex8String()),e==="name"&&(n=this.toName()),e==="hsl"&&(n=this.toHslString()),e==="hsv"&&(n=this.toHsvString()),n||this.toHexString())},clone:function(){return yn(this.toString())},_applyModification:function(e,t){var n=e.apply(null,[this].concat([].slice.call(t)));return this._r=n._r,this._g=n._g,this._b=n._b,this.setAlpha(n._a),this},lighten:function(){return this._applyModification(tQ,arguments)},brighten:function(){return this._applyModification(nQ,arguments)},darken:function(){return this._applyModification(iQ,arguments)},desaturate:function(){return this._applyModification(ZY,arguments)},saturate:function(){return this._applyModification(JY,arguments)},greyscale:function(){return this._applyModification(eQ,arguments)},spin:function(){return this._applyModification(rQ,arguments)},_applyCombination:function(e,t){return e.apply(null,[this].concat([].slice.call(t)))},analogous:function(){return this._applyCombination(oQ,arguments)},complement:function(){return this._applyCombination(sQ,arguments)},monochromatic:function(){return this._applyCombination(lQ,arguments)},splitcomplement:function(){return this._applyCombination(aQ,arguments)},triad:function(){return this._applyCombination(fR,[3])},tetrad:function(){return this._applyCombination(fR,[4])}};yn.fromRatio=function(i,e){if(G_(i)=="object"){var t={};for(var n in i)i.hasOwnProperty(n)&&(n==="a"?t[n]=i[n]:t[n]=Tm(i[n]));i=t}return yn(i,e)};function $Y(i){var e={r:0,g:0,b:0},t=1,n=null,r=null,s=null,a=!1,l=!1;return typeof i=="string"&&(i=AQ(i)),G_(i)=="object"&&(gc(i.r)&&gc(i.g)&&gc(i.b)?(e=XY(i.r,i.g,i.b),a=!0,l=String(i.r).substr(-1)==="%"?"prgb":"rgb"):gc(i.h)&&gc(i.s)&&gc(i.v)?(n=Tm(i.s),r=Tm(i.v),e=QY(i.h,n,r),a=!0,l="hsv"):gc(i.h)&&gc(i.s)&&gc(i.l)&&(n=Tm(i.s),s=Tm(i.l),e=YY(i.h,n,s),a=!0,l="hsl"),i.hasOwnProperty("a")&&(t=i.a)),t=cP(t),{ok:a,format:i.format||l,r:Math.min(255,Math.max(e.r,0)),g:Math.min(255,Math.max(e.g,0)),b:Math.min(255,Math.max(e.b,0)),a:t}}function XY(i,e,t){return{r:Sr(i,255)*255,g:Sr(e,255)*255,b:Sr(t,255)*255}}function lR(i,e,t){i=Sr(i,255),e=Sr(e,255),t=Sr(t,255);var n=Math.max(i,e,t),r=Math.min(i,e,t),s,a,l=(n+r)/2;if(n==r)s=a=0;else{var u=n-r;switch(a=l>.5?u/(2-n-r):u/(n+r),n){case i:s=(e-t)/u+(e1&&(v-=1),v<1/6?h+(g-h)*6*v:v<1/2?g:v<2/3?h+(g-h)*(2/3-v)*6:h}if(e===0)n=r=s=t;else{var l=t<.5?t*(1+e):t+e-t*e,u=2*t-l;n=a(u,l,i+1/3),r=a(u,l,i),s=a(u,l,i-1/3)}return{r:n*255,g:r*255,b:s*255}}function uR(i,e,t){i=Sr(i,255),e=Sr(e,255),t=Sr(t,255);var n=Math.max(i,e,t),r=Math.min(i,e,t),s,a,l=n,u=n-r;if(a=n===0?0:u/n,n==r)s=0;else{switch(n){case i:s=(e-t)/u+(e>1)+720)%360;--e;)n.h=(n.h+r)%360,s.push(yn(n));return s}function lQ(i,e){e=e||6;for(var t=yn(i).toHsv(),n=t.h,r=t.s,s=t.v,a=[],l=1/e;e--;)a.push(yn({h:n,s:r,v:s})),s=(s+l)%1;return a}yn.mix=function(i,e,t){t=t===0?0:t||50;var n=yn(i).toRgb(),r=yn(e).toRgb(),s=t/100,a={r:(r.r-n.r)*s+n.r,g:(r.g-n.g)*s+n.g,b:(r.b-n.b)*s+n.b,a:(r.a-n.a)*s+n.a};return yn(a)};yn.readability=function(i,e){var t=yn(i),n=yn(e);return(Math.max(t.getLuminance(),n.getLuminance())+.05)/(Math.min(t.getLuminance(),n.getLuminance())+.05)};yn.isReadable=function(i,e,t){var n=yn.readability(i,e),r,s;switch(s=!1,r=dQ(t),r.level+r.size){case"AAsmall":case"AAAlarge":s=n>=4.5;break;case"AAlarge":s=n>=3;break;case"AAAsmall":s=n>=7;break}return s};yn.mostReadable=function(i,e,t){var n=null,r=0,s,a,l,u;t=t||{},a=t.includeFallbackColors,l=t.level,u=t.size;for(var h=0;hr&&(r=s,n=yn(e[h]));return yn.isReadable(i,n,{level:l,size:u})||!a?n:(t.includeFallbackColors=!1,yn.mostReadable(i,["#fff","#000"],t))};var NT=yn.names={aliceblue:"f0f8ff",antiquewhite:"faebd7",aqua:"0ff",aquamarine:"7fffd4",azure:"f0ffff",beige:"f5f5dc",bisque:"ffe4c4",black:"000",blanchedalmond:"ffebcd",blue:"00f",blueviolet:"8a2be2",brown:"a52a2a",burlywood:"deb887",burntsienna:"ea7e5d",cadetblue:"5f9ea0",chartreuse:"7fff00",chocolate:"d2691e",coral:"ff7f50",cornflowerblue:"6495ed",cornsilk:"fff8dc",crimson:"dc143c",cyan:"0ff",darkblue:"00008b",darkcyan:"008b8b",darkgoldenrod:"b8860b",darkgray:"a9a9a9",darkgreen:"006400",darkgrey:"a9a9a9",darkkhaki:"bdb76b",darkmagenta:"8b008b",darkolivegreen:"556b2f",darkorange:"ff8c00",darkorchid:"9932cc",darkred:"8b0000",darksalmon:"e9967a",darkseagreen:"8fbc8f",darkslateblue:"483d8b",darkslategray:"2f4f4f",darkslategrey:"2f4f4f",darkturquoise:"00ced1",darkviolet:"9400d3",deeppink:"ff1493",deepskyblue:"00bfff",dimgray:"696969",dimgrey:"696969",dodgerblue:"1e90ff",firebrick:"b22222",floralwhite:"fffaf0",forestgreen:"228b22",fuchsia:"f0f",gainsboro:"dcdcdc",ghostwhite:"f8f8ff",gold:"ffd700",goldenrod:"daa520",gray:"808080",green:"008000",greenyellow:"adff2f",grey:"808080",honeydew:"f0fff0",hotpink:"ff69b4",indianred:"cd5c5c",indigo:"4b0082",ivory:"fffff0",khaki:"f0e68c",lavender:"e6e6fa",lavenderblush:"fff0f5",lawngreen:"7cfc00",lemonchiffon:"fffacd",lightblue:"add8e6",lightcoral:"f08080",lightcyan:"e0ffff",lightgoldenrodyellow:"fafad2",lightgray:"d3d3d3",lightgreen:"90ee90",lightgrey:"d3d3d3",lightpink:"ffb6c1",lightsalmon:"ffa07a",lightseagreen:"20b2aa",lightskyblue:"87cefa",lightslategray:"789",lightslategrey:"789",lightsteelblue:"b0c4de",lightyellow:"ffffe0",lime:"0f0",limegreen:"32cd32",linen:"faf0e6",magenta:"f0f",maroon:"800000",mediumaquamarine:"66cdaa",mediumblue:"0000cd",mediumorchid:"ba55d3",mediumpurple:"9370db",mediumseagreen:"3cb371",mediumslateblue:"7b68ee",mediumspringgreen:"00fa9a",mediumturquoise:"48d1cc",mediumvioletred:"c71585",midnightblue:"191970",mintcream:"f5fffa",mistyrose:"ffe4e1",moccasin:"ffe4b5",navajowhite:"ffdead",navy:"000080",oldlace:"fdf5e6",olive:"808000",olivedrab:"6b8e23",orange:"ffa500",orangered:"ff4500",orchid:"da70d6",palegoldenrod:"eee8aa",palegreen:"98fb98",paleturquoise:"afeeee",palevioletred:"db7093",papayawhip:"ffefd5",peachpuff:"ffdab9",peru:"cd853f",pink:"ffc0cb",plum:"dda0dd",powderblue:"b0e0e6",purple:"800080",rebeccapurple:"663399",red:"f00",rosybrown:"bc8f8f",royalblue:"4169e1",saddlebrown:"8b4513",salmon:"fa8072",sandybrown:"f4a460",seagreen:"2e8b57",seashell:"fff5ee",sienna:"a0522d",silver:"c0c0c0",skyblue:"87ceeb",slateblue:"6a5acd",slategray:"708090",slategrey:"708090",snow:"fffafa",springgreen:"00ff7f",steelblue:"4682b4",tan:"d2b48c",teal:"008080",thistle:"d8bfd8",tomato:"ff6347",turquoise:"40e0d0",violet:"ee82ee",wheat:"f5deb3",white:"fff",whitesmoke:"f5f5f5",yellow:"ff0",yellowgreen:"9acd32"},uQ=yn.hexNames=cQ(NT);function cQ(i){var e={};for(var t in i)i.hasOwnProperty(t)&&(e[i[t]]=t);return e}function cP(i){return i=parseFloat(i),(isNaN(i)||i<0||i>1)&&(i=1),i}function Sr(i,e){hQ(i)&&(i="100%");var t=fQ(i);return i=Math.min(e,Math.max(0,parseFloat(i))),t&&(i=parseInt(i*e,10)/100),Math.abs(i-e)<1e-6?1:i%e/parseFloat(e)}function Cy(i){return Math.min(1,Math.max(0,i))}function _o(i){return parseInt(i,16)}function hQ(i){return typeof i=="string"&&i.indexOf(".")!=-1&&parseFloat(i)===1}function fQ(i){return typeof i=="string"&&i.indexOf("%")!=-1}function El(i){return i.length==1?"0"+i:""+i}function Tm(i){return i<=1&&(i=i*100+"%"),i}function hP(i){return Math.round(parseFloat(i)*255).toString(16)}function AR(i){return _o(i)/255}var bl=(function(){var i="[-\\+]?\\d+%?",e="[-\\+]?\\d*\\.\\d+%?",t="(?:"+e+")|(?:"+i+")",n="[\\s|\\(]+("+t+")[,|\\s]+("+t+")[,|\\s]+("+t+")\\s*\\)?",r="[\\s|\\(]+("+t+")[,|\\s]+("+t+")[,|\\s]+("+t+")[,|\\s]+("+t+")\\s*\\)?";return{CSS_UNIT:new RegExp(t),rgb:new RegExp("rgb"+n),rgba:new RegExp("rgba"+r),hsl:new RegExp("hsl"+n),hsla:new RegExp("hsla"+r),hsv:new RegExp("hsv"+n),hsva:new RegExp("hsva"+r),hex3:/^#?([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/,hex6:/^#?([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})$/,hex4:/^#?([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/,hex8:/^#?([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})$/}})();function gc(i){return!!bl.CSS_UNIT.exec(i)}function AQ(i){i=i.replace(jY,"").replace(WY,"").toLowerCase();var e=!1;if(NT[i])i=NT[i],e=!0;else if(i=="transparent")return{r:0,g:0,b:0,a:0,format:"name"};var t;return(t=bl.rgb.exec(i))?{r:t[1],g:t[2],b:t[3]}:(t=bl.rgba.exec(i))?{r:t[1],g:t[2],b:t[3],a:t[4]}:(t=bl.hsl.exec(i))?{h:t[1],s:t[2],l:t[3]}:(t=bl.hsla.exec(i))?{h:t[1],s:t[2],l:t[3],a:t[4]}:(t=bl.hsv.exec(i))?{h:t[1],s:t[2],v:t[3]}:(t=bl.hsva.exec(i))?{h:t[1],s:t[2],v:t[3],a:t[4]}:(t=bl.hex8.exec(i))?{r:_o(t[1]),g:_o(t[2]),b:_o(t[3]),a:AR(t[4]),format:e?"name":"hex8"}:(t=bl.hex6.exec(i))?{r:_o(t[1]),g:_o(t[2]),b:_o(t[3]),format:e?"name":"hex"}:(t=bl.hex4.exec(i))?{r:_o(t[1]+""+t[1]),g:_o(t[2]+""+t[2]),b:_o(t[3]+""+t[3]),a:AR(t[4]+""+t[4]),format:e?"name":"hex8"}:(t=bl.hex3.exec(i))?{r:_o(t[1]+""+t[1]),g:_o(t[2]+""+t[2]),b:_o(t[3]+""+t[3]),format:e?"name":"hex"}:!1}function dQ(i){var e,t;return i=i||{level:"AA",size:"small"},e=(i.level||"AA").toUpperCase(),t=(i.size||"small").toLowerCase(),e!=="AA"&&e!=="AAA"&&(e="AA"),t!=="small"&&t!=="large"&&(t="small"),{level:e,size:t}}function DT(i,e){(e==null||e>i.length)&&(e=i.length);for(var t=0,n=Array(e);t=this._minInterval)if(isNaN(this._maxInterval))this.update(this._frameDeltaTime*this._timeScale,!0),this._lastTimeUpdated=this._now;else for(this._interval=Math.min(this._frameDeltaTime,this._maxInterval);this._now>=this._lastTimeUpdated+this._interval;)this.update(this._interval*this._timeScale,this._now<=this._lastTimeUpdated+2*this._maxInterval),this._lastTimeUpdated+=this._interval;this._isRunning&&this.animateOnce()},l.prototype.update=function(u,h){h===void 0&&(h=!0),this._currentTick++,this._currentTime+=u,this._tickDeltaTime=u,this._onTick.dispatch(this.currentTimeSeconds,this.tickDeltaTimeSeconds,this.currentTick),h&&this._onTickOncePerFrame.dispatch(this.currentTimeSeconds,this.tickDeltaTimeSeconds,this.currentTick)},l.prototype.getTimer=function(){return Date.now()},l})();Object.defineProperty(n,"__esModule",{value:!0}),n.default=a},function(t,n,r){(function(s,a){t.exports=a()})(this,function(){return(function(s){function a(u){if(l[u])return l[u].exports;var h=l[u]={exports:{},id:u,loaded:!1};return s[u].call(h.exports,h,h.exports,a),h.loaded=!0,h.exports}var l={};return a.m=s,a.c=l,a.p="",a(0)})([function(s,a){var l=(function(){function u(){this.functions=[]}return u.prototype.add=function(h){return this.functions.indexOf(h)===-1&&(this.functions.push(h),!0)},u.prototype.remove=function(h){var g=this.functions.indexOf(h);return g>-1&&(this.functions.splice(g,1),!0)},u.prototype.removeAll=function(){return this.functions.length>0&&(this.functions.length=0,!0)},u.prototype.dispatch=function(){for(var h=[],g=0;gh==g>-h?(s=h,h=e[++v]):(s=g,g=n[++x]);let S=0;if(vh==g>-h?(a=h+s,l=s-(a-h),h=e[++v]):(a=g+s,l=s-(a-g),g=n[++x]),s=a,l!==0&&(r[S++]=l);vh==g>-h?(a=s+h,u=a-s,l=s-(a-u)+(h-u),h=e[++v]):(a=s+g,u=a-s,l=s-(a-u)+(g-u),g=n[++x]),s=a,l!==0&&(r[S++]=l);for(;v=se||-ne>=se||(v=i-F,l=i-(F+v)+(v-r),v=t-V,h=t-(V+v)+(v-r),v=e-Y,u=e-(Y+v)+(v-s),v=n-ee,g=n-(ee+v)+(v-s),l===0&&u===0&&h===0&&g===0)||(se=IQ*a+LQ*Math.abs(ne),ne+=F*g+ee*l-(Y*h+V*u),ne>=se||-ne>=se))return ne;O=l*ee,x=na*l,S=x-(x-l),w=l-S,x=na*ee,R=x-(x-ee),C=ee-R,z=w*C-(O-S*R-w*R-S*C),G=u*V,x=na*u,S=x-(x-u),w=u-S,x=na*V,R=x-(x-V),C=V-R,k=w*C-(G-S*R-w*R-S*C),E=z-k,v=z-E,va[0]=z-(E+v)+(v-k),B=O+E,v=B-O,L=O-(B-v)+(E-v),E=L-G,v=L-E,va[1]=L-(E+v)+(v-G),H=B+E,v=H-B,va[2]=B-(H-v)+(E-v),va[3]=H;const te=V3(4,Td,4,va,pR);O=F*g,x=na*F,S=x-(x-F),w=F-S,x=na*g,R=x-(x-g),C=g-R,z=w*C-(O-S*R-w*R-S*C),G=Y*h,x=na*Y,S=x-(x-Y),w=Y-S,x=na*h,R=x-(x-h),C=h-R,k=w*C-(G-S*R-w*R-S*C),E=z-k,v=z-E,va[0]=z-(E+v)+(v-k),B=O+E,v=B-O,L=O-(B-v)+(E-v),E=L-G,v=L-E,va[1]=L-(E+v)+(v-G),H=B+E,v=H-B,va[2]=B-(H-v)+(E-v),va[3]=H;const Q=V3(te,pR,4,va,mR);O=l*g,x=na*l,S=x-(x-l),w=l-S,x=na*g,R=x-(x-g),C=g-R,z=w*C-(O-S*R-w*R-S*C),G=u*h,x=na*u,S=x-(x-u),w=u-S,x=na*h,R=x-(x-h),C=h-R,k=w*C-(G-S*R-w*R-S*C),E=z-k,v=z-E,va[0]=z-(E+v)+(v-k),B=O+E,v=B-O,L=O-(B-v)+(E-v),E=L-G,v=L-E,va[1]=L-(E+v)+(v-G),H=B+E,v=H-B,va[2]=B-(H-v)+(E-v),va[3]=H;const le=V3(Q,mR,4,va,gR);return gR[le-1]}function wm(i,e,t,n,r,s){const a=(e-s)*(t-r),l=(i-r)*(n-s),u=a-l,h=Math.abs(a+l);return Math.abs(u)>=BQ*h?u:-FQ(i,e,t,n,r,s,h)}const vR=Math.pow(2,-52),ov=new Uint32Array(512);class gg{static from(e,t=VQ,n=HQ){const r=e.length,s=new Float64Array(r*2);for(let a=0;a>1;if(t>0&&typeof e[0]!="number")throw new Error("Expected coords to contain numbers.");this.coords=e;const n=Math.max(2*t-5,0);this._triangles=new Uint32Array(n*3),this._halfedges=new Int32Array(n*3),this._hashSize=Math.ceil(Math.sqrt(t)),this._hullPrev=new Uint32Array(t),this._hullNext=new Uint32Array(t),this._hullTri=new Uint32Array(t),this._hullHash=new Int32Array(this._hashSize),this._ids=new Uint32Array(t),this._dists=new Float64Array(t),this.update()}update(){const{coords:e,_hullPrev:t,_hullNext:n,_hullTri:r,_hullHash:s}=this,a=e.length>>1;let l=1/0,u=1/0,h=-1/0,g=-1/0;for(let F=0;Fh&&(h=V),Y>g&&(g=Y),this._ids[F]=F}const v=(l+h)/2,x=(u+g)/2;let S,w,R;for(let F=0,V=1/0;F0&&(w=F,V=Y)}let B=e[2*w],L=e[2*w+1],O=1/0;for(let F=0;Fee&&(F[V++]=ne,ee=se)}this.hull=F.subarray(0,V),this.triangles=new Uint32Array(0),this.halfedges=new Uint32Array(0);return}if(wm(C,E,B,L,z,G)<0){const F=w,V=B,Y=L;w=R,B=z,L=G,R=F,z=V,G=Y}const k=qQ(C,E,B,L,z,G);this._cx=k.x,this._cy=k.y;for(let F=0;F0&&Math.abs(ne-V)<=vR&&Math.abs(se-Y)<=vR||(V=ne,Y=se,ee===S||ee===w||ee===R))continue;let te=0;for(let Se=0,ue=this._hashKey(ne,se);Se=0;)if(Q=le,Q===te){Q=-1;break}if(Q===-1)continue;let de=this._addTriangle(Q,ee,n[Q],-1,-1,r[Q]);r[ee]=this._legalize(de+2),r[Q]=de,H++;let Te=n[Q];for(;le=n[Te],wm(ne,se,e[2*Te],e[2*Te+1],e[2*le],e[2*le+1])<0;)de=this._addTriangle(Te,ee,le,r[ee],-1,r[Te]),r[ee]=this._legalize(de+2),n[Te]=Te,H--,Te=le;if(Q===te)for(;le=t[Q],wm(ne,se,e[2*le],e[2*le+1],e[2*Q],e[2*Q+1])<0;)de=this._addTriangle(le,ee,Q,-1,r[Q],r[le]),this._legalize(de+2),r[le]=de,n[Q]=Q,H--,Q=le;this._hullStart=t[ee]=Q,n[Q]=t[Te]=ee,n[ee]=Te,s[this._hashKey(ne,se)]=ee,s[this._hashKey(e[2*Q],e[2*Q+1])]=Q}this.hull=new Uint32Array(H);for(let F=0,V=this._hullStart;F0?3-t:1+t)/4}function H3(i,e,t,n){const r=i-t,s=e-n;return r*r+s*s}function zQ(i,e,t,n,r,s,a,l){const u=i-a,h=e-l,g=t-a,v=n-l,x=r-a,S=s-l,w=u*u+h*h,R=g*g+v*v,C=x*x+S*S;return u*(v*C-R*S)-h*(g*C-R*x)+w*(g*S-v*x)<0}function GQ(i,e,t,n,r,s){const a=t-i,l=n-e,u=r-i,h=s-e,g=a*a+l*l,v=u*u+h*h,x=.5/(a*h-l*u),S=(h*g-l*v)*x,w=(a*v-u*g)*x;return S*S+w*w}function qQ(i,e,t,n,r,s){const a=t-i,l=n-e,u=r-i,h=s-e,g=a*a+l*l,v=u*u+h*h,x=.5/(a*h-l*u),S=i+(h*g-l*v)*x,w=e+(a*v-u*g)*x;return{x:S,y:w}}function $d(i,e,t,n){if(n-t<=20)for(let r=t+1;r<=n;r++){const s=i[r],a=e[s];let l=r-1;for(;l>=t&&e[i[l]]>a;)i[l+1]=i[l--];i[l+1]=s}else{const r=t+n>>1;let s=t+1,a=n;sm(i,r,s),e[i[t]]>e[i[n]]&&sm(i,t,n),e[i[s]]>e[i[n]]&&sm(i,s,n),e[i[t]]>e[i[s]]&&sm(i,t,s);const l=i[s],u=e[l];for(;;){do s++;while(e[i[s]]u);if(a=a-t?($d(i,e,s,n),$d(i,e,t,a-1)):($d(i,e,t,a-1),$d(i,e,s,n))}}function sm(i,e,t){const n=i[e];i[e]=i[t],i[t]=n}function VQ(i){return i[0]}function HQ(i){return i[1]}function jQ(i,e){var t,n,r=0,s,a,l,u,h,g,v,x=i[0],S=i[1],w=e.length;for(t=0;t=0||a<=0&&u>=0)return 0}else if(h>=0&&l<=0||h<=0&&l>=0){if(s=wm(a,u,l,h,0,0),s===0)return 0;(s>0&&h>0&&l<=0||s<0&&h<=0&&l>0)&&r++}g=v,l=h,a=u}}return r%2!==0}function WQ(i){if(!i)throw new Error("coord is required");if(!Array.isArray(i)){if(i.type==="Feature"&&i.geometry!==null&&i.geometry.type==="Point")return[...i.geometry.coordinates];if(i.type==="Point")return[...i.coordinates]}if(Array.isArray(i)&&i.length>=2&&!Array.isArray(i[0])&&!Array.isArray(i[1]))return[...i];throw new Error("coord must be GeoJSON Point or an Array of numbers")}function $Q(i){return i.type==="Feature"?i.geometry:i}function XQ(i,e,t={}){if(!i)throw new Error("point is required");if(!e)throw new Error("polygon is required");const n=WQ(i),r=$Q(e),s=r.type,a=e.bbox;let l=r.coordinates;if(a&&YQ(n,a)===!1)return!1;s==="Polygon"&&(l=[l]);let u=!1;for(var h=0;h=i[0]&&e[3]>=i[1]}var QQ=XQ;const _R=1e-6;class $f{constructor(){this._x0=this._y0=this._x1=this._y1=null,this._=""}moveTo(e,t){this._+=`M${this._x0=this._x1=+e},${this._y0=this._y1=+t}`}closePath(){this._x1!==null&&(this._x1=this._x0,this._y1=this._y0,this._+="Z")}lineTo(e,t){this._+=`L${this._x1=+e},${this._y1=+t}`}arc(e,t,n){e=+e,t=+t,n=+n;const r=e+n,s=t;if(n<0)throw new Error("negative radius");this._x1===null?this._+=`M${r},${s}`:(Math.abs(this._x1-r)>_R||Math.abs(this._y1-s)>_R)&&(this._+="L"+r+","+s),n&&(this._+=`A${n},${n},0,1,1,${e-n},${t}A${n},${n},0,1,1,${this._x1=r},${this._y1=s}`)}rect(e,t,n,r){this._+=`M${this._x0=this._x1=+e},${this._y0=this._y1=+t}h${+n}v${+r}h${-n}Z`}value(){return this._||null}}class PT{constructor(){this._=[]}moveTo(e,t){this._.push([e,t])}closePath(){this._.push(this._[0].slice())}lineTo(e,t){this._.push([e,t])}value(){return this._.length?this._:null}}class KQ{constructor(e,[t,n,r,s]=[0,0,960,500]){if(!((r=+r)>=(t=+t))||!((s=+s)>=(n=+n)))throw new Error("invalid bounds");this.delaunay=e,this._circumcenters=new Float64Array(e.points.length*2),this.vectors=new Float64Array(e.points.length*2),this.xmax=r,this.xmin=t,this.ymax=s,this.ymin=n,this._init()}update(){return this.delaunay.update(),this._init(),this}_init(){const{delaunay:{points:e,hull:t,triangles:n},vectors:r}=this;let s,a;const l=this.circumcenters=this._circumcenters.subarray(0,n.length/3*2);for(let R=0,C=0,E=n.length,B,L;R1;)s-=2;for(let a=2;a0){if(t>=this.ymax)return null;(a=(this.ymax-t)/r)0){if(e>=this.xmax)return null;(a=(this.xmax-e)/n)this.xmax?2:0)|(tthis.ymax?8:0)}_simplify(e){if(e&&e.length>4){for(let t=0;t1e-10)return!1}return!0}function nK(i,e,t){return[i+Math.sin(i+e)*t,e+Math.cos(i-e)*t]}class xM{static from(e,t=JQ,n=eK,r){return new xM("length"in e?iK(e,t,n,r):Float64Array.from(rK(e,t,n,r)))}constructor(e){this._delaunator=new gg(e),this.inedges=new Int32Array(e.length/2),this._hullIndex=new Int32Array(e.length/2),this.points=this._delaunator.coords,this._init()}update(){return this._delaunator.update(),this._init(),this}_init(){const e=this._delaunator,t=this.points;if(e.hull&&e.hull.length>2&&tK(e)){this.collinear=Int32Array.from({length:t.length/2},(x,S)=>S).sort((x,S)=>t[2*x]-t[2*S]||t[2*x+1]-t[2*S+1]);const u=this.collinear[0],h=this.collinear[this.collinear.length-1],g=[t[2*u],t[2*u+1],t[2*h],t[2*h+1]],v=1e-8*Math.hypot(g[3]-g[1],g[2]-g[0]);for(let x=0,S=t.length/2;x0&&(this.triangles=new Int32Array(3).fill(-1),this.halfedges=new Int32Array(3).fill(-1),this.triangles[0]=r[0],a[r[0]]=1,r.length===2&&(a[r[1]]=0,this.triangles[1]=r[1],this.triangles[2]=r[1]))}voronoi(e){return new KQ(this,e)}*neighbors(e){const{inedges:t,hull:n,_hullIndex:r,halfedges:s,triangles:a,collinear:l}=this;if(l){const v=l.indexOf(e);v>0&&(yield l[v-1]),v=0&&s!==n&&s!==r;)n=s;return s}_step(e,t,n){const{inedges:r,hull:s,_hullIndex:a,halfedges:l,triangles:u,points:h}=this;if(r[e]===-1||!h.length)return(e+1)%(h.length>>1);let g=e,v=wd(t-h[e*2],2)+wd(n-h[e*2+1],2);const x=r[e];let S=x;do{let w=u[S];const R=wd(t-h[w*2],2)+wd(n-h[w*2+1],2);if(R0?1:i<0?-1:0},dP=Math.sqrt;function uK(i){return i>1?yR:i<-1?-yR:Math.asin(i)}function pP(i,e){return i[0]*e[0]+i[1]*e[1]+i[2]*e[2]}function So(i,e){return[i[1]*e[2]-i[2]*e[1],i[2]*e[0]-i[0]*e[2],i[0]*e[1]-i[1]*e[0]]}function q_(i,e){return[i[0]+e[0],i[1]+e[1],i[2]+e[2]]}function V_(i){var e=dP(i[0]*i[0]+i[1]*i[1]+i[2]*i[2]);return[i[0]/e,i[1]/e,i[2]/e]}function SM(i){return[sK(i[1],i[0])*xR,uK(aK(-1,oK(1,i[2])))*xR]}function uu(i){const e=i[0]*bR,t=i[1]*bR,n=SR(t);return[n*SR(e),n*TR(e),TR(t)]}function TM(i){return i=i.map(e=>uu(e)),pP(i[0],So(i[2],i[1]))}function cK(i){const e=fK(i),t=dK(e),n=AK(t,i),r=mK(t,i.length),s=hK(r,i),a=pK(t,i),{polygons:l,centers:u}=gK(a,t,i),h=vK(l),g=yK(t,i),v=_K(n,t);return{delaunay:e,edges:n,triangles:t,centers:u,neighbors:r,polygons:l,mesh:h,hull:g,urquhart:v,find:s}}function hK(i,e){function t(n,r){let s=n[0]-r[0],a=n[1]-r[1],l=n[2]-r[2];return s*s+a*a+l*l}return function(r,s,a){a===void 0&&(a=0);let l,u,h=a;const g=uu([r,s]);do l=a,a=null,u=t(g,uu(e[l])),i[l].forEach(v=>{let x=t(g,uu(e[v]));if(x1e32?r.push(v):S>s&&(s=S)}const a=1e6*dP(s);r.forEach(v=>i[v]=[a,0]),i.push([0,a]),i.push([-a,0]),i.push([0,-a]);const l=xM.from(i);l.projection=n;const{triangles:u,halfedges:h,inedges:g}=l;for(let v=0,x=h.length;vi.length-3-1&&(u[v]=e);return l}function AK(i,e){const t=new Set;return e.length===2?[[0,1]]:(i.forEach(n=>{if(n[0]!==n[1]&&!(TM(n.map(r=>e[r]))<0))for(let r=0,s;r<3;r++)s=(r+1)%3,t.add(A_([n[r],n[s]]).join("-"))}),Array.from(t,n=>n.split("-").map(Number)))}function dK(i){const{triangles:e}=i;if(!e)return[];const t=[];for(let n=0,r=e.length/3;n{const n=t.map(s=>e[s]).map(uu),r=q_(q_(So(n[1],n[0]),So(n[2],n[1])),So(n[0],n[2]));return SM(V_(r))})}function mK(i,e){const t=[];return i.forEach(n=>{for(let r=0;r<3;r++){const s=n[r],a=n[(r+1)%3];t[s]=t[s]||[],t[s].push(a)}}),i.length===0&&(e===2?(t[0]=[1],t[1]=[0]):e===1&&(t[0]=[])),t}function gK(i,e,t){const n=[],r=i.slice();if(e.length===0){if(t.length<2)return{polygons:n,centers:r};if(t.length===2){const l=uu(t[0]),u=uu(t[1]),h=V_(q_(l,u)),g=V_(So(l,u)),v=So(h,g),x=[h,So(h,v),So(So(h,v),v),So(So(So(h,v),v),v)].map(SM).map(a);return n.push(x),n.push(x.slice().reverse()),{polygons:n,centers:r}}}e.forEach((l,u)=>{for(let h=0;h<3;h++){const g=l[h],v=l[(h+1)%3],x=l[(h+2)%3];n[g]=n[g]||[],n[g].push([v,x,u,[g,v,x]])}});const s=n.map(l=>{const u=[l[0][2]];let h=l[0][1];for(let g=1;g2)return u;if(u.length==2){const g=wR(t[l[0][3][0]],t[l[0][3][1]],r[u[0]]),v=wR(t[l[0][3][2]],t[l[0][3][0]],r[u[0]]),x=a(g),S=a(v);return[u[0],S,u[1],x]}});function a(l){let u=-1;return r.slice(e.length,1/0).forEach((h,g)=>{h[0]===l[0]&&h[1]===l[1]&&(u=g+e.length)}),u<0&&(u=r.length,r.push(l)),u}return{polygons:s,centers:r}}function wR(i,e,t){i=uu(i),e=uu(e),t=uu(t);const n=lK(pP(So(e,i),t));return SM(V_(q_(i,e)).map(r=>n*r))}function vK(i){const e=[];return i.forEach(t=>{if(!t)return;let n=t[t.length-1];for(let r of t)r>n&&e.push([n,r]),n=r}),e}function _K(i,e){return function(t){const n=new Map,r=new Map;return i.forEach((s,a)=>{const l=s.join("-");n.set(l,t[a]),r.set(l,!0)}),e.forEach(s=>{let a=0,l=-1;for(let u=0;u<3;u++){let h=A_([s[u],s[(u+1)%3]]).join("-");n.get(h)>a&&(a=n.get(h),l=h)}r.set(l,!1)}),i.map(s=>r.get(s.join("-")))}}function yK(i,e){const t=new Set,n=[];i.map(l=>{if(!(TM(l.map(u=>e[u>e.length?0:u]))>1e-12))for(let u=0;u<3;u++){let h=[l[u],l[(u+1)%3]],g=`${h[0]}-${h[1]}`;t.has(g)?t.delete(g):t.add(`${h[1]}-${h[0]}`)}});const r=new Map;let s;if(t.forEach(l=>{l=l.split("-").map(Number),r.set(l[0],l[1]),s=l[0]}),s===void 0)return n;let a=s;do{n.push(a);let l=r.get(a);r.set(a,-1),a=l}while(a>-1&&a!==s);return n}function xK(i){const e=function(t){if(e.delaunay=null,e._data=t,typeof e._data=="object"&&e._data.type==="FeatureCollection"&&(e._data=e._data.features),typeof e._data=="object"){const n=e._data.map(r=>[e._vx(r),e._vy(r),r]).filter(r=>isFinite(r[0]+r[1]));e.points=n.map(r=>[r[0],r[1]]),e.valid=n.map(r=>r[2]),e.delaunay=cK(e.points)}return e};return e._vx=function(t){if(typeof t=="object"&&"type"in t)return O6(t)[0];if(0 in t)return t[0]},e._vy=function(t){if(typeof t=="object"&&"type"in t)return O6(t)[1];if(1 in t)return t[1]},e.x=function(t){return t?(e._vx=t,e):e._vx},e.y=function(t){return t?(e._vy=t,e):e._vy},e.polygons=function(t){if(t!==void 0&&e(t),!e.delaunay)return!1;const n={type:"FeatureCollection",features:[]};return e.valid.length===0||(e.delaunay.polygons.forEach((r,s)=>n.features.push({type:"Feature",geometry:r?{type:"Polygon",coordinates:[[...r,r[0]].map(a=>e.delaunay.centers[a])]}:null,properties:{site:e.valid[s],sitecoordinates:e.points[s],neighbours:e.delaunay.neighbors[s]}})),e.valid.length===1&&n.features.push({type:"Feature",geometry:{type:"Sphere"},properties:{site:e.valid[0],sitecoordinates:e.points[0],neighbours:[]}})),n},e.triangles=function(t){return t!==void 0&&e(t),e.delaunay?{type:"FeatureCollection",features:e.delaunay.triangles.map((n,r)=>(n=n.map(s=>e.points[s]),n.center=e.delaunay.centers[r],n)).filter(n=>TM(n)>0).map(n=>({type:"Feature",properties:{circumcenter:n.center},geometry:{type:"Polygon",coordinates:[[...n,n[0]]]}}))}:!1},e.links=function(t){if(t!==void 0&&e(t),!e.delaunay)return!1;const n=e.delaunay.edges.map(s=>Vh(e.points[s[0]],e.points[s[1]])),r=e.delaunay.urquhart(n);return{type:"FeatureCollection",features:e.delaunay.edges.map((s,a)=>({type:"Feature",properties:{source:e.valid[s[0]],target:e.valid[s[1]],length:n[a],urquhart:!!r[a]},geometry:{type:"LineString",coordinates:[e.points[s[0]],e.points[s[1]]]}}))}},e.mesh=function(t){return t!==void 0&&e(t),e.delaunay?{type:"MultiLineString",coordinates:e.delaunay.edges.map(n=>[e.points[n[0]],e.points[n[1]]])}:!1},e.cellMesh=function(t){if(t!==void 0&&e(t),!e.delaunay)return!1;const{centers:n,polygons:r}=e.delaunay,s=[];for(const a of r)if(a)for(let l=a.length,u=a[l-1],h=a[0],g=0;gu&&s.push([n[u],n[h]]);return{type:"MultiLineString",coordinates:s}},e._found=void 0,e.find=function(t,n,r){if(e._found=e.delaunay.find(t,n,e._found),!r||Vh([t,n],e.points[e._found])r[s]),r[n[0]]]]}},i?e(i):e}function LT(i,e){(e==null||e>i.length)&&(e=i.length);for(var t=0,n=Array(e);t1&&arguments[1]!==void 0?arguments[1]:{},t=e.resolution,n=t===void 0?1/0:t,r=BK(i,n),s=ug(r),a=OK(i,n),l=[].concat(j3(s),j3(a)),u={type:"Polygon",coordinates:i},h=ID(u),g=Kl(h,2),v=Kl(g[0],2),x=v[0],S=v[1],w=Kl(g[1],2),R=w[0],C=w[1],E=x>R||C>=89||S<=-89,B=[];if(E){var L=xK(l).triangles(),O=new Map(l.map(function(le,de){var Te=Kl(le,2),Se=Te[0],ue=Te[1];return["".concat(Se,"-").concat(ue),de]}));L.features.forEach(function(le){var de,Te=le.geometry.coordinates[0].slice(0,3).reverse(),Se=[];if(Te.forEach(function(be){var We=Kl(be,2),Ee=We[0],Ge=We[1],ye="".concat(Ee,"-").concat(Ge);O.has(ye)&&Se.push(O.get(ye))}),Se.length===3){if(Se.some(function(be){return bee)for(var l=pM(r,s),u=1/Math.ceil(a/e),h=u;h<1;)n.push(l(h)),h+=u}n.push(r=s)}),n})}function OK(i,e){var t={type:"Polygon",coordinates:i},n=ID(t),r=Kl(n,2),s=Kl(r[0],2),a=s[0],l=s[1],u=Kl(r[1],2),h=u[0],g=u[1];if(Math.min(Math.abs(h-a),Math.abs(g-l))h||g>=89||l<=-89;return IK(e,{minLng:a,maxLng:h,minLat:l,maxLat:g}).filter(function(x){return BT(x,t,v)})}function IK(i){for(var e=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},t=e.minLng,n=e.maxLng,r=e.minLat,s=e.maxLat,a=Math.round(Math.pow(360/i,2)/Math.PI),l=(1+Math.sqrt(5))/2,u=function(E){return E/l*360%360-180},h=function(E){return Math.acos(2*E/a-1)/Math.PI*180-90},g=function(E){return a*(Math.cos((E+90)*Math.PI/180)+1)/2},v=[s!==void 0?Math.ceil(g(s)):0,r!==void 0?Math.floor(g(r)):a-1],x=t===void 0&&n===void 0?function(){return!0}:t===void 0?function(C){return C<=n}:n===void 0?function(C){return C>=t}:n>=t?function(C){return C>=t&&C<=n}:function(C){return C>=t||C<=n},S=[],w=v[0];w<=v[1];w++){var R=u(w);x(R)&&S.push([R,h(w)])}return S}function BT(i,e){var t=arguments.length>2&&arguments[2]!==void 0?arguments[2]:!1;return t?mX(e,i):QQ(i,e)}var Yv=window.THREE?window.THREE:{BufferGeometry:Ki,Float32BufferAttribute:wi},MR=new Yv.BufferGeometry().setAttribute?"setAttribute":"addAttribute",wM=(function(i){function e(t,n,r,s,a,l,u){var h;MK(this,e),h=wK(this,e),h.type="ConicPolygonGeometry",h.parameters={polygonGeoJson:t,bottomHeight:n,topHeight:r,closedBottom:s,closedTop:a,includeSides:l,curvatureResolution:u},n=n||0,r=r||1,s=s!==void 0?s:!0,a=a!==void 0?a:!0,l=l!==void 0?l:!0,u=u||5;var g=UK(t,{resolution:u}),v=g.contour,x=g.triangles,S=ug(x.uvs),w=[],R=[],C=[],E=0,B=function(k){var H=Math.round(w.length/3),F=C.length;w=w.concat(k.vertices),R=R.concat(k.uvs),C=C.concat(H?k.indices.map(function(V){return V+H}):k.indices),h.addGroup(F,C.length-F,E++)};l&&B(O()),s&&B(z(n,!1)),a&&B(z(r,!0)),h.setIndex(C),h[MR]("position",new Yv.Float32BufferAttribute(w,3)),h[MR]("uv",new Yv.Float32BufferAttribute(R,2)),h.computeVertexNormals();function L(G,k){var H=typeof k=="function"?k:function(){return k},F=G.map(function(V){return V.map(function(Y){var ee=Kl(Y,2),ne=ee[0],se=ee[1];return FK(se,ne,H(ne,se))})});return F_(F)}function O(){for(var G=L(v,n),k=G.vertices,H=G.holes,F=L(v,r),V=F.vertices,Y=ug([V,k]),ee=Math.round(V.length/3),ne=new Set(H),se=0,te=[],Q=0;Q=0;Se--)for(var ue=0;ue1&&arguments[1]!==void 0?arguments[1]:!0;return{indices:k?x.indices:x.indices.slice().reverse(),vertices:L([x.points],G).vertices,uvs:S}}return h}return CK(e,i),EK(e)})(Yv.BufferGeometry);function FK(i,e){var t=arguments.length>2&&arguments[2]!==void 0?arguments[2]:0,n=(90-i)*Math.PI/180,r=(90-e)*Math.PI/180;return[t*Math.sin(n)*Math.cos(r),t*Math.cos(n),t*Math.sin(n)*Math.sin(r)]}function OT(i,e){(e==null||e>i.length)&&(e=i.length);for(var t=0,n=Array(e);t0&&arguments[0]!==void 0?arguments[0]:[],e=arguments.length>1&&arguments[1]!==void 0?arguments[1]:[],t=arguments.length>2&&arguments[2]!==void 0?arguments[2]:!0,n=arguments.length>3&&arguments[3]!==void 0?arguments[3]:!1,r=(e instanceof Array?e.length?e:[void 0]:[e]).map(function(l){return{keyAccessor:l,isProp:!(l instanceof Function)}}),s=i.reduce(function(l,u){var h=l,g=u;return r.forEach(function(v,x){var S=v.keyAccessor,w=v.isProp,R;if(w){var C=g,E=C[S],B=jK(C,[S].map(QK));R=E,g=B}else R=S(g,x);x+11&&arguments[1]!==void 0?arguments[1]:1;h===r.length?Object.keys(u).forEach(function(g){return u[g]=t(u[g])}):Object.values(u).forEach(function(g){return l(g,h+1)})})(s);var a=s;return n&&(a=[],(function l(u){var h=arguments.length>1&&arguments[1]!==void 0?arguments[1]:[];h.length===r.length?a.push({keys:h,vals:u}):Object.entries(u).forEach(function(g){var v=$K(g,2),x=v[0],S=v[1];return l(S,[].concat(XK(h),[x]))})})(s),e instanceof Array&&e.length===0&&a.length===1&&(a[0].keys=[])),a}),Si=(function(i){i=i||{};var e=typeof i<"u"?i:{},t={},n;for(n in e)e.hasOwnProperty(n)&&(t[n]=e[n]);var r="";function s(Ze){return e.locateFile?e.locateFile(Ze,r):r+Ze}var a;typeof document<"u"&&document.currentScript&&(r=document.currentScript.src),r.indexOf("blob:")!==0?r=r.substr(0,r.lastIndexOf("/")+1):r="",a=function(At,Ot,st){var d=new XMLHttpRequest;d.open("GET",At,!0),d.responseType="arraybuffer",d.onload=function(){if(d.status==200||d.status==0&&d.response){Ot(d.response);return}var $n=qt(At);if($n){Ot($n.buffer);return}st()},d.onerror=st,d.send(null)};var l=e.print||console.log.bind(console),u=e.printErr||console.warn.bind(console);for(n in t)t.hasOwnProperty(n)&&(e[n]=t[n]);t=null,e.arguments&&e.arguments;var h=0,g=function(Ze){h=Ze},v=function(){return h},x=8;function S(Ze,At,Ot,st){switch(Ot=Ot||"i8",Ot.charAt(Ot.length-1)==="*"&&(Ot="i32"),Ot){case"i1":ee[Ze>>0]=At;break;case"i8":ee[Ze>>0]=At;break;case"i16":se[Ze>>1]=At;break;case"i32":te[Ze>>2]=At;break;case"i64":Fe=[At>>>0,(Me=At,+it(Me)>=1?Me>0?(ct(+Ft(Me/4294967296),4294967295)|0)>>>0:~~+he((Me-+(~~Me>>>0))/4294967296)>>>0:0)],te[Ze>>2]=Fe[0],te[Ze+4>>2]=Fe[1];break;case"float":Q[Ze>>2]=At;break;case"double":le[Ze>>3]=At;break;default:Jr("invalid type for setValue: "+Ot)}}function w(Ze,At,Ot){switch(At=At||"i8",At.charAt(At.length-1)==="*"&&(At="i32"),At){case"i1":return ee[Ze>>0];case"i8":return ee[Ze>>0];case"i16":return se[Ze>>1];case"i32":return te[Ze>>2];case"i64":return te[Ze>>2];case"float":return Q[Ze>>2];case"double":return le[Ze>>3];default:Jr("invalid type for getValue: "+At)}return null}var R=!1;function C(Ze,At){Ze||Jr("Assertion failed: "+At)}function E(Ze){var At=e["_"+Ze];return C(At,"Cannot call unknown function "+Ze+", make sure it is exported"),At}function B(Ze,At,Ot,st,d){var J={string:function(Fn){var cs=0;if(Fn!=null&&Fn!==0){var Ma=(Fn.length<<2)+1;cs=nt(Ma),H(Fn,cs,Ma)}return cs},array:function(Fn){var cs=nt(Fn.length);return F(Fn,cs),cs}};function $n(Fn){return At==="string"?G(Fn):At==="boolean"?!!Fn:Fn}var Gn=E(Ze),Xn=[],un=0;if(st)for(var qn=0;qn=st);)++d;if(d-At>16&&Ze.subarray&&O)return O.decode(Ze.subarray(At,d));for(var J="";At>10,56320|un&1023)}}return J}function G(Ze,At){return Ze?z(ne,Ze,At):""}function k(Ze,At,Ot,st){if(!(st>0))return 0;for(var d=Ot,J=Ot+st-1,$n=0;$n=55296&&Gn<=57343){var Xn=Ze.charCodeAt(++$n);Gn=65536+((Gn&1023)<<10)|Xn&1023}if(Gn<=127){if(Ot>=J)break;At[Ot++]=Gn}else if(Gn<=2047){if(Ot+1>=J)break;At[Ot++]=192|Gn>>6,At[Ot++]=128|Gn&63}else if(Gn<=65535){if(Ot+2>=J)break;At[Ot++]=224|Gn>>12,At[Ot++]=128|Gn>>6&63,At[Ot++]=128|Gn&63}else{if(Ot+3>=J)break;At[Ot++]=240|Gn>>18,At[Ot++]=128|Gn>>12&63,At[Ot++]=128|Gn>>6&63,At[Ot++]=128|Gn&63}}return At[Ot]=0,Ot-d}function H(Ze,At,Ot){return k(Ze,ne,At,Ot)}typeof TextDecoder<"u"&&new TextDecoder("utf-16le");function F(Ze,At){ee.set(Ze,At)}function V(Ze,At){return Ze%At>0&&(Ze+=At-Ze%At),Ze}var Y,ee,ne,se,te,Q,le;function de(Ze){Y=Ze,e.HEAP8=ee=new Int8Array(Ze),e.HEAP16=se=new Int16Array(Ze),e.HEAP32=te=new Int32Array(Ze),e.HEAPU8=ne=new Uint8Array(Ze),e.HEAPU16=new Uint16Array(Ze),e.HEAPU32=new Uint32Array(Ze),e.HEAPF32=Q=new Float32Array(Ze),e.HEAPF64=le=new Float64Array(Ze)}var Te=5271536,Se=28624,ue=e.TOTAL_MEMORY||33554432;e.buffer?Y=e.buffer:Y=new ArrayBuffer(ue),ue=Y.byteLength,de(Y),te[Se>>2]=Te;function be(Ze){for(;Ze.length>0;){var At=Ze.shift();if(typeof At=="function"){At();continue}var Ot=At.func;typeof Ot=="number"?At.arg===void 0?e.dynCall_v(Ot):e.dynCall_vi(Ot,At.arg):Ot(At.arg===void 0?null:At.arg)}}var We=[],Ee=[],Ge=[],ye=[];function Pe(){if(e.preRun)for(typeof e.preRun=="function"&&(e.preRun=[e.preRun]);e.preRun.length;)It(e.preRun.shift());be(We)}function pt(){be(Ee)}function vt(){be(Ge)}function Tt(){if(e.postRun)for(typeof e.postRun=="function"&&(e.postRun=[e.postRun]);e.postRun.length;)Qe(e.postRun.shift());be(ye)}function It(Ze){We.unshift(Ze)}function Qe(Ze){ye.unshift(Ze)}var it=Math.abs,he=Math.ceil,Ft=Math.floor,ct=Math.min,Dt=0,gt=null;function tn(Ze){Dt++,e.monitorRunDependencies&&e.monitorRunDependencies(Dt)}function _t(Ze){if(Dt--,e.monitorRunDependencies&&e.monitorRunDependencies(Dt),Dt==0&>){var At=gt;gt=null,At()}}e.preloadedImages={},e.preloadedAudios={};var fe=null,X="data:application/octet-stream;base64,";function oe(Ze){return String.prototype.startsWith?Ze.startsWith(X):Ze.indexOf(X)===0}var Me,Fe;fe="data:application/octet-stream;base64,AAAAAAAAAAAAAAAAAQAAAAIAAAADAAAABAAAAAUAAAAGAAAAAQAAAAQAAAADAAAABgAAAAUAAAACAAAAAAAAAAIAAAADAAAAAQAAAAQAAAAGAAAAAAAAAAUAAAADAAAABgAAAAQAAAAFAAAAAAAAAAEAAAACAAAABAAAAAUAAAAGAAAAAAAAAAIAAAADAAAAAQAAAAUAAAACAAAAAAAAAAEAAAADAAAABgAAAAQAAAAGAAAAAAAAAAUAAAACAAAAAQAAAAQAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAEAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAIAAAADAAAAAAAAAAAAAAACAAAAAAAAAAEAAAADAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAYAAAAAAAAABQAAAAAAAAAAAAAABAAAAAUAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAYAAAAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAgAAAAMAAAAEAAAABQAAAAYAAAABAAAAAgAAAAMAAAAEAAAABQAAAAYAAAAAAAAAAgAAAAMAAAAEAAAABQAAAAYAAAAAAAAAAQAAAAMAAAAEAAAABQAAAAYAAAAAAAAAAQAAAAIAAAAEAAAABQAAAAYAAAAAAAAAAQAAAAIAAAADAAAABQAAAAYAAAAAAAAAAQAAAAIAAAADAAAABAAAAAYAAAAAAAAAAQAAAAIAAAADAAAABAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAwAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAgAAAAIAAAAAAAAAAAAAAAYAAAAAAAAAAwAAAAIAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAFAAAABAAAAAAAAAABAAAAAAAAAAAAAAAFAAAABQAAAAAAAAAAAAAAAAAAAAYAAAAAAAAABAAAAAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAFAAAAAgAAAAQAAAADAAAACAAAAAEAAAAHAAAABgAAAAkAAAAAAAAAAwAAAAIAAAACAAAABgAAAAoAAAALAAAAAAAAAAEAAAAFAAAAAwAAAA0AAAABAAAABwAAAAQAAAAMAAAAAAAAAAQAAAB/AAAADwAAAAgAAAADAAAAAAAAAAwAAAAFAAAAAgAAABIAAAAKAAAACAAAAAAAAAAQAAAABgAAAA4AAAALAAAAEQAAAAEAAAAJAAAAAgAAAAcAAAAVAAAACQAAABMAAAADAAAADQAAAAEAAAAIAAAABQAAABYAAAAQAAAABAAAAAAAAAAPAAAACQAAABMAAAAOAAAAFAAAAAEAAAAHAAAABgAAAAoAAAALAAAAGAAAABcAAAAFAAAAAgAAABIAAAALAAAAEQAAABcAAAAZAAAAAgAAAAYAAAAKAAAADAAAABwAAAANAAAAGgAAAAQAAAAPAAAAAwAAAA0AAAAaAAAAFQAAAB0AAAADAAAADAAAAAcAAAAOAAAAfwAAABEAAAAbAAAACQAAABQAAAAGAAAADwAAABYAAAAcAAAAHwAAAAQAAAAIAAAADAAAABAAAAASAAAAIQAAAB4AAAAIAAAABQAAABYAAAARAAAACwAAAA4AAAAGAAAAIwAAABkAAAAbAAAAEgAAABgAAAAeAAAAIAAAAAUAAAAKAAAAEAAAABMAAAAiAAAAFAAAACQAAAAHAAAAFQAAAAkAAAAUAAAADgAAABMAAAAJAAAAKAAAABsAAAAkAAAAFQAAACYAAAATAAAAIgAAAA0AAAAdAAAABwAAABYAAAAQAAAAKQAAACEAAAAPAAAACAAAAB8AAAAXAAAAGAAAAAsAAAAKAAAAJwAAACUAAAAZAAAAGAAAAH8AAAAgAAAAJQAAAAoAAAAXAAAAEgAAABkAAAAXAAAAEQAAAAsAAAAtAAAAJwAAACMAAAAaAAAAKgAAAB0AAAArAAAADAAAABwAAAANAAAAGwAAACgAAAAjAAAALgAAAA4AAAAUAAAAEQAAABwAAAAfAAAAKgAAACwAAAAMAAAADwAAABoAAAAdAAAAKwAAACYAAAAvAAAADQAAABoAAAAVAAAAHgAAACAAAAAwAAAAMgAAABAAAAASAAAAIQAAAB8AAAApAAAALAAAADUAAAAPAAAAFgAAABwAAAAgAAAAHgAAABgAAAASAAAANAAAADIAAAAlAAAAIQAAAB4AAAAxAAAAMAAAABYAAAAQAAAAKQAAACIAAAATAAAAJgAAABUAAAA2AAAAJAAAADMAAAAjAAAALgAAAC0AAAA4AAAAEQAAABsAAAAZAAAAJAAAABQAAAAiAAAAEwAAADcAAAAoAAAANgAAACUAAAAnAAAANAAAADkAAAAYAAAAFwAAACAAAAAmAAAAfwAAACIAAAAzAAAAHQAAAC8AAAAVAAAAJwAAACUAAAAZAAAAFwAAADsAAAA5AAAALQAAACgAAAAbAAAAJAAAABQAAAA8AAAALgAAADcAAAApAAAAMQAAADUAAAA9AAAAFgAAACEAAAAfAAAAKgAAADoAAAArAAAAPgAAABwAAAAsAAAAGgAAACsAAAA+AAAALwAAAEAAAAAaAAAAKgAAAB0AAAAsAAAANQAAADoAAABBAAAAHAAAAB8AAAAqAAAALQAAACcAAAAjAAAAGQAAAD8AAAA7AAAAOAAAAC4AAAA8AAAAOAAAAEQAAAAbAAAAKAAAACMAAAAvAAAAJgAAACsAAAAdAAAARQAAADMAAABAAAAAMAAAADEAAAAeAAAAIQAAAEMAAABCAAAAMgAAADEAAAB/AAAAPQAAAEIAAAAhAAAAMAAAACkAAAAyAAAAMAAAACAAAAAeAAAARgAAAEMAAAA0AAAAMwAAAEUAAAA2AAAARwAAACYAAAAvAAAAIgAAADQAAAA5AAAARgAAAEoAAAAgAAAAJQAAADIAAAA1AAAAPQAAAEEAAABLAAAAHwAAACkAAAAsAAAANgAAAEcAAAA3AAAASQAAACIAAAAzAAAAJAAAADcAAAAoAAAANgAAACQAAABIAAAAPAAAAEkAAAA4AAAARAAAAD8AAABNAAAAIwAAAC4AAAAtAAAAOQAAADsAAABKAAAATgAAACUAAAAnAAAANAAAADoAAAB/AAAAPgAAAEwAAAAsAAAAQQAAACoAAAA7AAAAPwAAAE4AAABPAAAAJwAAAC0AAAA5AAAAPAAAAEgAAABEAAAAUAAAACgAAAA3AAAALgAAAD0AAAA1AAAAMQAAACkAAABRAAAASwAAAEIAAAA+AAAAKwAAADoAAAAqAAAAUgAAAEAAAABMAAAAPwAAAH8AAAA4AAAALQAAAE8AAAA7AAAATQAAAEAAAAAvAAAAPgAAACsAAABUAAAARQAAAFIAAABBAAAAOgAAADUAAAAsAAAAVgAAAEwAAABLAAAAQgAAAEMAAABRAAAAVQAAADEAAAAwAAAAPQAAAEMAAABCAAAAMgAAADAAAABXAAAAVQAAAEYAAABEAAAAOAAAADwAAAAuAAAAWgAAAE0AAABQAAAARQAAADMAAABAAAAALwAAAFkAAABHAAAAVAAAAEYAAABDAAAANAAAADIAAABTAAAAVwAAAEoAAABHAAAAWQAAAEkAAABbAAAAMwAAAEUAAAA2AAAASAAAAH8AAABJAAAANwAAAFAAAAA8AAAAWAAAAEkAAABbAAAASAAAAFgAAAA2AAAARwAAADcAAABKAAAATgAAAFMAAABcAAAANAAAADkAAABGAAAASwAAAEEAAAA9AAAANQAAAF4AAABWAAAAUQAAAEwAAABWAAAAUgAAAGAAAAA6AAAAQQAAAD4AAABNAAAAPwAAAEQAAAA4AAAAXQAAAE8AAABaAAAATgAAAEoAAAA7AAAAOQAAAF8AAABcAAAATwAAAE8AAABOAAAAPwAAADsAAABdAAAAXwAAAE0AAABQAAAARAAAAEgAAAA8AAAAYwAAAFoAAABYAAAAUQAAAFUAAABeAAAAZQAAAD0AAABCAAAASwAAAFIAAABgAAAAVAAAAGIAAAA+AAAATAAAAEAAAABTAAAAfwAAAEoAAABGAAAAZAAAAFcAAABcAAAAVAAAAEUAAABSAAAAQAAAAGEAAABZAAAAYgAAAFUAAABXAAAAZQAAAGYAAABCAAAAQwAAAFEAAABWAAAATAAAAEsAAABBAAAAaAAAAGAAAABeAAAAVwAAAFMAAABmAAAAZAAAAEMAAABGAAAAVQAAAFgAAABIAAAAWwAAAEkAAABjAAAAUAAAAGkAAABZAAAAYQAAAFsAAABnAAAARQAAAFQAAABHAAAAWgAAAE0AAABQAAAARAAAAGoAAABdAAAAYwAAAFsAAABJAAAAWQAAAEcAAABpAAAAWAAAAGcAAABcAAAAUwAAAE4AAABKAAAAbAAAAGQAAABfAAAAXQAAAE8AAABaAAAATQAAAG0AAABfAAAAagAAAF4AAABWAAAAUQAAAEsAAABrAAAAaAAAAGUAAABfAAAAXAAAAE8AAABOAAAAbQAAAGwAAABdAAAAYAAAAGgAAABiAAAAbgAAAEwAAABWAAAAUgAAAGEAAAB/AAAAYgAAAFQAAABnAAAAWQAAAG8AAABiAAAAbgAAAGEAAABvAAAAUgAAAGAAAABUAAAAYwAAAFAAAABpAAAAWAAAAGoAAABaAAAAcQAAAGQAAABmAAAAUwAAAFcAAABsAAAAcgAAAFwAAABlAAAAZgAAAGsAAABwAAAAUQAAAFUAAABeAAAAZgAAAGUAAABXAAAAVQAAAHIAAABwAAAAZAAAAGcAAABbAAAAYQAAAFkAAAB0AAAAaQAAAG8AAABoAAAAawAAAG4AAABzAAAAVgAAAF4AAABgAAAAaQAAAFgAAABnAAAAWwAAAHEAAABjAAAAdAAAAGoAAABdAAAAYwAAAFoAAAB1AAAAbQAAAHEAAABrAAAAfwAAAGUAAABeAAAAcwAAAGgAAABwAAAAbAAAAGQAAABfAAAAXAAAAHYAAAByAAAAbQAAAG0AAABsAAAAXQAAAF8AAAB1AAAAdgAAAGoAAABuAAAAYgAAAGgAAABgAAAAdwAAAG8AAABzAAAAbwAAAGEAAABuAAAAYgAAAHQAAABnAAAAdwAAAHAAAABrAAAAZgAAAGUAAAB4AAAAcwAAAHIAAABxAAAAYwAAAHQAAABpAAAAdQAAAGoAAAB5AAAAcgAAAHAAAABkAAAAZgAAAHYAAAB4AAAAbAAAAHMAAABuAAAAawAAAGgAAAB4AAAAdwAAAHAAAAB0AAAAZwAAAHcAAABvAAAAcQAAAGkAAAB5AAAAdQAAAH8AAABtAAAAdgAAAHEAAAB5AAAAagAAAHYAAAB4AAAAbAAAAHIAAAB1AAAAeQAAAG0AAAB3AAAAbwAAAHMAAABuAAAAeQAAAHQAAAB4AAAAeAAAAHMAAAByAAAAcAAAAHkAAAB3AAAAdgAAAHkAAAB0AAAAeAAAAHcAAAB1AAAAcQAAAHYAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAABAAAABQAAAAEAAAAAAAAAAAAAAAEAAAAAAAAAAQAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAACAAAABQAAAAEAAAAAAAAA/////wEAAAAAAAAAAwAAAAQAAAACAAAAAAAAAAAAAAABAAAAAAAAAAEAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAMAAAAFAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAAAAAAFAAAAAQAAAAAAAAAAAAAAAQAAAAMAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAEAAAADAAAAAAAAAAAAAAABAAAAAAAAAAMAAAADAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAADAAAABQAAAAEAAAAAAAAAAAAAAAEAAAAAAAAAAQAAAAAAAAABAAAAAAAAAP////8DAAAAAAAAAAUAAAACAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAEAAAABQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAMAAAADAAAAAwAAAAMAAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAMAAAAFAAAABQAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAADAAAAAwAAAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAFAAAABQAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAQAAAAAAAAABAAAAAAAAAAMAAAADAAAAAwAAAAAAAAADAAAAAAAAAAAAAAD/////AwAAAAAAAAAFAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAADAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAAAAAAAAAAAAAEAAAAAAAAAAQAAAAAAAAABAAAAAAAAAAAAAAABAAAAAwAAAAAAAAAAAAAAAQAAAAAAAAADAAAAAwAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAMAAAADAAAAAwAAAAMAAAAAAAAAAwAAAAAAAAAAAAAAAQAAAAMAAAAAAAAAAAAAAAEAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAADAAAAAAAAAAAAAAADAAAAAAAAAAMAAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAMAAAAAAAAAAAAAAAMAAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAMAAAADAAAAAAAAAP////8DAAAAAAAAAAUAAAACAAAAAAAAAAAAAAADAAAAAAAAAAAAAAADAAAAAwAAAAAAAAAAAAAAAwAAAAAAAAAAAAAAAwAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAUAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAFAAAABQAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAwAAAAAAAAAAAAAAAwAAAAMAAAAAAAAAAAAAAAAAAAADAAAAAAAAAAMAAAAAAAAAAAAAAAMAAAADAAAAAwAAAAAAAAADAAAAAAAAAAAAAAADAAAAAwAAAAMAAAAAAAAAAwAAAAAAAAAAAAAA/////wMAAAAAAAAABQAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAAAAAAAAwAAAAAAAAADAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAAAAAAAAAAAAAMAAAAAAAAAAwAAAAAAAAADAAAAAAAAAAMAAAADAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAADAAAAAAAAAAMAAAAAAAAAAAAAAAMAAAAAAAAAAAAAAAMAAAADAAAAAAAAAAMAAAADAAAAAwAAAAAAAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAMAAAAAAAAAAwAAAAAAAAAAAAAA/////wMAAAAAAAAABQAAAAIAAAAAAAAAAAAAAAMAAAADAAAAAwAAAAMAAAADAAAAAAAAAAAAAAADAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAADAAAAAAAAAAMAAAADAAAAAwAAAAMAAAAAAAAAAwAAAAAAAAD/////AwAAAAAAAAAFAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAAAAAAAADAAAAAAAAAAMAAAADAAAAAwAAAAAAAAADAAAAAAAAAAAAAAADAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAAAAAAAAwAAAAAAAAAAAAAAAwAAAAMAAAAAAAAAAAAAAAMAAAADAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAAAAAAAADAAAAAwAAAAAAAAAAAAAAAAAAAAMAAAAAAAAAAAAAAAMAAAADAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAADAAAAAAAAAAAAAAD/////AwAAAAAAAAAFAAAAAgAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAAAAAAAAAAADAAAAAAAAAAMAAAADAAAAAwAAAAAAAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAMAAAAAAAAAAAAAAAMAAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAMAAAADAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAAFAAAAAAAAAAAAAAADAAAAAwAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAADAAAAAQAAAAAAAAABAAAAAAAAAAAAAAABAAAAAwAAAAEAAAAAAAAAAQAAAAAAAAAAAAAAAwAAAAAAAAADAAAAAAAAAAMAAAAAAAAAAAAAAAMAAAAAAAAAAwAAAAAAAAADAAAAAAAAAP////8DAAAAAAAAAAUAAAACAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAAAAAAAAwAAAAMAAAAAAAAAAAAAAAAAAAADAAAAAAAAAAMAAAAAAAAAAAAAAAMAAAAAAAAAAAAAAAMAAAADAAAAAAAAAAAAAAADAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAAAUAAAAAAAAAAAAAAAMAAAADAAAAAwAAAAMAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAwAAAAMAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAAFAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAFAAAABQAAAAAAAAAAAAAAAAAAAAMAAAAAAAAAAAAAAAMAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAMAAAAAAAAAAwAAAAAAAAAAAAAA/////wMAAAAAAAAABQAAAAIAAAAAAAAAAAAAAAMAAAADAAAAAwAAAAAAAAAAAAAAAwAAAAAAAAAFAAAAAAAAAAAAAAAFAAAABQAAAAAAAAAAAAAAAAAAAAEAAAADAAAAAQAAAAAAAAABAAAAAAAAAAMAAAADAAAAAwAAAAAAAAAAAAAAAwAAAAAAAAADAAAAAwAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAADAAAAAQAAAAAAAAABAAAAAAAAAAMAAAADAAAAAwAAAAMAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAEAAAAAAAAAAwAAAAUAAAABAAAAAAAAAP////8DAAAAAAAAAAUAAAACAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAFAAAABQAAAAAAAAAAAAAAAAAAAAEAAAAAAAAABAAAAAUAAAABAAAAAAAAAAMAAAADAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAAAUAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAIAAAAFAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAEAAAADAAAAAQAAAAAAAAABAAAAAAAAAAUAAAAAAAAAAAAAAAUAAAAFAAAAAAAAAAAAAAD/////AQAAAAAAAAADAAAABAAAAAIAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAUAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAFAAAAAAAAAAAAAAAFAAAABQAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAQAAAAUAAAABAAAAAAAAAAAAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAEAAAD//////////wEAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAADAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAsAAAACAAAAAAAAAAAAAAABAAAAAgAAAAYAAAAEAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAKAAAAAgAAAAAAAAAAAAAAAQAAAAEAAAAFAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAsAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAACAAAAAAAAAAAAAAABAAAAAwAAAAcAAAAGAAAAAQAAAAAAAAABAAAAAAAAAAAAAAAAAAAABwAAAAEAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAADAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAADgAAAAIAAAAAAAAAAAAAAAEAAAAAAAAACQAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAMAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAsAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAIAAAAAAAAAAAAAAAEAAAAEAAAACAAAAAoAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAALAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAACQAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAgAAAAAAAAAAAAAAAQAAAAsAAAAPAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAOAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAEAAAAAAAAAAQAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAIAAAAAQAAAAAAAAABAAAAAAAAAAAAAAAAAAAABQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAgAAAAAAAAAAAAAAAQAAAAwAAAAQAAAADAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAPAAAAAAAAAAEAAAABAAAAAAAAAAAAAAAAAAAADwAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAACAAAAAAAAAAAAAAABAAAACgAAABMAAAAIAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkAAAABAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAEQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAwAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAAAABAAAAAQAAAAAAAAAAAAAAAAAAAA8AAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAQAAAAAQAAAAAAAAABAAAAAAAAAAAAAAAAAAAACQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAIAAAAAAAAAAAAAAAEAAAANAAAAEQAAAA0AAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAARAAAAAQAAAAAAAAABAAAAAAAAAAAAAAAAAAAAEwAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAA4AAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAAAAAAEAAAABAAAAAAAAAAAAAAAAAAAAEQAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAA0AAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkAAAACAAAAAAAAAAAAAAABAAAADgAAABIAAAAPAAAAAQAAAAAAAAABAAAAAAAAAAAAAAAAAAAADwAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABIAAAAAAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAASAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAEwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAABEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEgAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAABIAAAABAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAATAAAAAgAAAAAAAAAAAAAAAQAAAP//////////EwAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAQAAAAAAAAABAAAAAAAAAAAAAAAAAAAAEgAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAASAAAAAAAAABgAAAAAAAAAIQAAAAAAAAAeAAAAAAAAACAAAAADAAAAMQAAAAEAAAAwAAAAAwAAADIAAAADAAAACAAAAAAAAAAFAAAABQAAAAoAAAAFAAAAFgAAAAAAAAAQAAAAAAAAABIAAAAAAAAAKQAAAAEAAAAhAAAAAAAAAB4AAAAAAAAABAAAAAAAAAAAAAAABQAAAAIAAAAFAAAADwAAAAEAAAAIAAAAAAAAAAUAAAAFAAAAHwAAAAEAAAAWAAAAAAAAABAAAAAAAAAAAgAAAAAAAAAGAAAAAAAAAA4AAAAAAAAACgAAAAAAAAALAAAAAAAAABEAAAADAAAAGAAAAAEAAAAXAAAAAwAAABkAAAADAAAAAAAAAAAAAAABAAAABQAAAAkAAAAFAAAABQAAAAAAAAACAAAAAAAAAAYAAAAAAAAAEgAAAAEAAAAKAAAAAAAAAAsAAAAAAAAABAAAAAEAAAADAAAABQAAAAcAAAAFAAAACAAAAAEAAAAAAAAAAAAAAAEAAAAFAAAAEAAAAAEAAAAFAAAAAAAAAAIAAAAAAAAABwAAAAAAAAAVAAAAAAAAACYAAAAAAAAACQAAAAAAAAATAAAAAAAAACIAAAADAAAADgAAAAEAAAAUAAAAAwAAACQAAAADAAAAAwAAAAAAAAANAAAABQAAAB0AAAAFAAAAAQAAAAAAAAAHAAAAAAAAABUAAAAAAAAABgAAAAEAAAAJAAAAAAAAABMAAAAAAAAABAAAAAIAAAAMAAAABQAAABoAAAAFAAAAAAAAAAEAAAADAAAAAAAAAA0AAAAFAAAAAgAAAAEAAAABAAAAAAAAAAcAAAAAAAAAGgAAAAAAAAAqAAAAAAAAADoAAAAAAAAAHQAAAAAAAAArAAAAAAAAAD4AAAADAAAAJgAAAAEAAAAvAAAAAwAAAEAAAAADAAAADAAAAAAAAAAcAAAABQAAACwAAAAFAAAADQAAAAAAAAAaAAAAAAAAACoAAAAAAAAAFQAAAAEAAAAdAAAAAAAAACsAAAAAAAAABAAAAAMAAAAPAAAABQAAAB8AAAAFAAAAAwAAAAEAAAAMAAAAAAAAABwAAAAFAAAABwAAAAEAAAANAAAAAAAAABoAAAAAAAAAHwAAAAAAAAApAAAAAAAAADEAAAAAAAAALAAAAAAAAAA1AAAAAAAAAD0AAAADAAAAOgAAAAEAAABBAAAAAwAAAEsAAAADAAAADwAAAAAAAAAWAAAABQAAACEAAAAFAAAAHAAAAAAAAAAfAAAAAAAAACkAAAAAAAAAKgAAAAEAAAAsAAAAAAAAADUAAAAAAAAABAAAAAQAAAAIAAAABQAAABAAAAAFAAAADAAAAAEAAAAPAAAAAAAAABYAAAAFAAAAGgAAAAEAAAAcAAAAAAAAAB8AAAAAAAAAMgAAAAAAAAAwAAAAAAAAADEAAAADAAAAIAAAAAAAAAAeAAAAAwAAACEAAAADAAAAGAAAAAMAAAASAAAAAwAAABAAAAADAAAARgAAAAAAAABDAAAAAAAAAEIAAAADAAAANAAAAAMAAAAyAAAAAAAAADAAAAAAAAAAJQAAAAMAAAAgAAAAAAAAAB4AAAADAAAAUwAAAAAAAABXAAAAAwAAAFUAAAADAAAASgAAAAMAAABGAAAAAAAAAEMAAAAAAAAAOQAAAAEAAAA0AAAAAwAAADIAAAAAAAAAGQAAAAAAAAAXAAAAAAAAABgAAAADAAAAEQAAAAAAAAALAAAAAwAAAAoAAAADAAAADgAAAAMAAAAGAAAAAwAAAAIAAAADAAAALQAAAAAAAAAnAAAAAAAAACUAAAADAAAAIwAAAAMAAAAZAAAAAAAAABcAAAAAAAAAGwAAAAMAAAARAAAAAAAAAAsAAAADAAAAPwAAAAAAAAA7AAAAAwAAADkAAAADAAAAOAAAAAMAAAAtAAAAAAAAACcAAAAAAAAALgAAAAMAAAAjAAAAAwAAABkAAAAAAAAAJAAAAAAAAAAUAAAAAAAAAA4AAAADAAAAIgAAAAAAAAATAAAAAwAAAAkAAAADAAAAJgAAAAMAAAAVAAAAAwAAAAcAAAADAAAANwAAAAAAAAAoAAAAAAAAABsAAAADAAAANgAAAAMAAAAkAAAAAAAAABQAAAAAAAAAMwAAAAMAAAAiAAAAAAAAABMAAAADAAAASAAAAAAAAAA8AAAAAwAAAC4AAAADAAAASQAAAAMAAAA3AAAAAAAAACgAAAAAAAAARwAAAAMAAAA2AAAAAwAAACQAAAAAAAAAQAAAAAAAAAAvAAAAAAAAACYAAAADAAAAPgAAAAAAAAArAAAAAwAAAB0AAAADAAAAOgAAAAMAAAAqAAAAAwAAABoAAAADAAAAVAAAAAAAAABFAAAAAAAAADMAAAADAAAAUgAAAAMAAABAAAAAAAAAAC8AAAAAAAAATAAAAAMAAAA+AAAAAAAAACsAAAADAAAAYQAAAAAAAABZAAAAAwAAAEcAAAADAAAAYgAAAAMAAABUAAAAAAAAAEUAAAAAAAAAYAAAAAMAAABSAAAAAwAAAEAAAAAAAAAASwAAAAAAAABBAAAAAAAAADoAAAADAAAAPQAAAAAAAAA1AAAAAwAAACwAAAADAAAAMQAAAAMAAAApAAAAAwAAAB8AAAADAAAAXgAAAAAAAABWAAAAAAAAAEwAAAADAAAAUQAAAAMAAABLAAAAAAAAAEEAAAAAAAAAQgAAAAMAAAA9AAAAAAAAADUAAAADAAAAawAAAAAAAABoAAAAAwAAAGAAAAADAAAAZQAAAAMAAABeAAAAAAAAAFYAAAAAAAAAVQAAAAMAAABRAAAAAwAAAEsAAAAAAAAAOQAAAAAAAAA7AAAAAAAAAD8AAAADAAAASgAAAAAAAABOAAAAAwAAAE8AAAADAAAAUwAAAAMAAABcAAAAAwAAAF8AAAADAAAAJQAAAAAAAAAnAAAAAwAAAC0AAAADAAAANAAAAAAAAAA5AAAAAAAAADsAAAAAAAAARgAAAAMAAABKAAAAAAAAAE4AAAADAAAAGAAAAAAAAAAXAAAAAwAAABkAAAADAAAAIAAAAAMAAAAlAAAAAAAAACcAAAADAAAAMgAAAAMAAAA0AAAAAAAAADkAAAAAAAAALgAAAAAAAAA8AAAAAAAAAEgAAAADAAAAOAAAAAAAAABEAAAAAwAAAFAAAAADAAAAPwAAAAMAAABNAAAAAwAAAFoAAAADAAAAGwAAAAAAAAAoAAAAAwAAADcAAAADAAAAIwAAAAAAAAAuAAAAAAAAADwAAAAAAAAALQAAAAMAAAA4AAAAAAAAAEQAAAADAAAADgAAAAAAAAAUAAAAAwAAACQAAAADAAAAEQAAAAMAAAAbAAAAAAAAACgAAAADAAAAGQAAAAMAAAAjAAAAAAAAAC4AAAAAAAAARwAAAAAAAABZAAAAAAAAAGEAAAADAAAASQAAAAAAAABbAAAAAwAAAGcAAAADAAAASAAAAAMAAABYAAAAAwAAAGkAAAADAAAAMwAAAAAAAABFAAAAAwAAAFQAAAADAAAANgAAAAAAAABHAAAAAAAAAFkAAAAAAAAANwAAAAMAAABJAAAAAAAAAFsAAAADAAAAJgAAAAAAAAAvAAAAAwAAAEAAAAADAAAAIgAAAAMAAAAzAAAAAAAAAEUAAAADAAAAJAAAAAMAAAA2AAAAAAAAAEcAAAAAAAAAYAAAAAAAAABoAAAAAAAAAGsAAAADAAAAYgAAAAAAAABuAAAAAwAAAHMAAAADAAAAYQAAAAMAAABvAAAAAwAAAHcAAAADAAAATAAAAAAAAABWAAAAAwAAAF4AAAADAAAAUgAAAAAAAABgAAAAAAAAAGgAAAAAAAAAVAAAAAMAAABiAAAAAAAAAG4AAAADAAAAOgAAAAAAAABBAAAAAwAAAEsAAAADAAAAPgAAAAMAAABMAAAAAAAAAFYAAAADAAAAQAAAAAMAAABSAAAAAAAAAGAAAAAAAAAAVQAAAAAAAABXAAAAAAAAAFMAAAADAAAAZQAAAAAAAABmAAAAAwAAAGQAAAADAAAAawAAAAMAAABwAAAAAwAAAHIAAAADAAAAQgAAAAAAAABDAAAAAwAAAEYAAAADAAAAUQAAAAAAAABVAAAAAAAAAFcAAAAAAAAAXgAAAAMAAABlAAAAAAAAAGYAAAADAAAAMQAAAAAAAAAwAAAAAwAAADIAAAADAAAAPQAAAAMAAABCAAAAAAAAAEMAAAADAAAASwAAAAMAAABRAAAAAAAAAFUAAAAAAAAAXwAAAAAAAABcAAAAAAAAAFMAAAAAAAAATwAAAAAAAABOAAAAAAAAAEoAAAADAAAAPwAAAAEAAAA7AAAAAwAAADkAAAADAAAAbQAAAAAAAABsAAAAAAAAAGQAAAAFAAAAXQAAAAEAAABfAAAAAAAAAFwAAAAAAAAATQAAAAEAAABPAAAAAAAAAE4AAAAAAAAAdQAAAAQAAAB2AAAABQAAAHIAAAAFAAAAagAAAAEAAABtAAAAAAAAAGwAAAAAAAAAWgAAAAEAAABdAAAAAQAAAF8AAAAAAAAAWgAAAAAAAABNAAAAAAAAAD8AAAAAAAAAUAAAAAAAAABEAAAAAAAAADgAAAADAAAASAAAAAEAAAA8AAAAAwAAAC4AAAADAAAAagAAAAAAAABdAAAAAAAAAE8AAAAFAAAAYwAAAAEAAABaAAAAAAAAAE0AAAAAAAAAWAAAAAEAAABQAAAAAAAAAEQAAAAAAAAAdQAAAAMAAABtAAAABQAAAF8AAAAFAAAAcQAAAAEAAABqAAAAAAAAAF0AAAAAAAAAaQAAAAEAAABjAAAAAQAAAFoAAAAAAAAAaQAAAAAAAABYAAAAAAAAAEgAAAAAAAAAZwAAAAAAAABbAAAAAAAAAEkAAAADAAAAYQAAAAEAAABZAAAAAwAAAEcAAAADAAAAcQAAAAAAAABjAAAAAAAAAFAAAAAFAAAAdAAAAAEAAABpAAAAAAAAAFgAAAAAAAAAbwAAAAEAAABnAAAAAAAAAFsAAAAAAAAAdQAAAAIAAABqAAAABQAAAFoAAAAFAAAAeQAAAAEAAABxAAAAAAAAAGMAAAAAAAAAdwAAAAEAAAB0AAAAAQAAAGkAAAAAAAAAdwAAAAAAAABvAAAAAAAAAGEAAAAAAAAAcwAAAAAAAABuAAAAAAAAAGIAAAADAAAAawAAAAEAAABoAAAAAwAAAGAAAAADAAAAeQAAAAAAAAB0AAAAAAAAAGcAAAAFAAAAeAAAAAEAAAB3AAAAAAAAAG8AAAAAAAAAcAAAAAEAAABzAAAAAAAAAG4AAAAAAAAAdQAAAAEAAABxAAAABQAAAGkAAAAFAAAAdgAAAAEAAAB5AAAAAAAAAHQAAAAAAAAAcgAAAAEAAAB4AAAAAQAAAHcAAAAAAAAAcgAAAAAAAABwAAAAAAAAAGsAAAAAAAAAZAAAAAAAAABmAAAAAAAAAGUAAAADAAAAUwAAAAEAAABXAAAAAwAAAFUAAAADAAAAdgAAAAAAAAB4AAAAAAAAAHMAAAAFAAAAbAAAAAEAAAByAAAAAAAAAHAAAAAAAAAAXAAAAAEAAABkAAAAAAAAAGYAAAAAAAAAdQAAAAAAAAB5AAAABQAAAHcAAAAFAAAAbQAAAAEAAAB2AAAAAAAAAHgAAAAAAAAAXwAAAAEAAABsAAAAAQAAAHIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAEAAAAAAAAAAAAAAAEAAAABAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAABAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAGAAAAAgAAAAUAAAABAAAABAAAAAAAAAAAAAAABQAAAAMAAAABAAAABgAAAAQAAAACAAAAAAAAAH6iBfbytuk/Gq6akm/58z/Xrm0Liez0P5doSdOpSwRAWs602ULg8D/dT7Rcbo/1v1N1RQHFNOM/g9Snx7HW3L8HWsP8Q3jfP6VwOLosutk/9rjk1YQcxj+gnmKMsNn6P/HDeuPFY+M/YHwDjqKhB0Ci19/fCVrbP4UxKkDWOP6/pvljWa09tL9wi7wrQXjnv/Z6yLImkM2/3yTlOzY14D+m+WNZrT20PzwKVQnrQwNA9nrIsiaQzT/g40rFrRQFwPa45NWEHMa/kbslHEZq97/xw3rjxWPjv4cLC2SMBci/otff3wla27+rKF5oIAv0P1N1RQHFNOO/iDJPGyWHBUAHWsP8Q3jfvwQf/by16gXAfqIF9vK26b8XrO0Vh0r+v9eubQuJ7PS/BxLrA0ZZ479azrTZQuDwv1MK1EuItPw/yscgV9Z6FkAwHBR2WjQMQJNRzXsQ5vY/GlUHVJYKF0DONuFv2lMNQNCGZ28QJfk/0WUwoIL36D8ggDOMQuATQNqMOeAy/wZAWFYOYM+M2z/LWC4uH3oSQDE+LyTsMgRAkJzhRGWFGEDd4soovCQQQKqk0DJMEP8/rGmNdwOLBUAW2X/9xCbjP4hu3dcqJhNAzuYItRvdB0CgzW3zJW/sPxotm/Y2TxRAQAk9XmdDDEC1Kx9MKgT3P1M+NctcghZAFVqcLlb0C0Bgzd3sB2b2P77mZDPUWhZAFROHJpUGCEDAfma5CxXtPz1DWq/zYxRAmhYY5824F0DOuQKWSbAOQNCMqrvu3fs/L6DR22K2wT9nAAxPBU8RQGiN6mW43AFAZhu25b633D8c1YgmzowSQNM25BRKWARArGS08/lNxD+LFssHwmMRQLC5aNcxBgJABL9HT0WRF0CjCmJmOGEOQHsuaVzMP/s/TWJCaGGwBUCeu1PAPLzjP9nqN9DZOBNAKE4JcydbCkCGtbd1qjPzP8dgm9U8jhVAtPeKTkVwDkCeCLss5l37P401XMPLmBdAFd29VMVQDUBg0yA55h75Pz6odcYLCRdApBM4rBrkAkDyAVWgQxbRP4XDMnK20hFAymLlF7EmzD8GUgo9XBHlP3lbK7T9COc/k+OhPthhy7+YGEpnrOvCPzBFhLs15u4/epbqB6H4uz9IuuLF5svev6lzLKY31es/CaQ0envF5z8ZY0xlUADXv7zaz7HYEuI/CfbK1sn16T8uAQfWwxLWPzKn/YuFN94/5KdbC1AFu793fyCSnlfvPzK2y4doAMY/NRg5t1/X6b/shq4QJaHDP5yNIAKPOeI/vpn7BSE30r/X4YQrO6nrv78Ziv/Thto/DqJ1Y6+y5z9l51NaxFrlv8QlA65HOLS/86dxiEc96z+Hj0+LFjneP6LzBZ8LTc2/DaJ1Y6+y579l51NaxFrlP8QlA65HOLQ/8qdxiEc967+Jj0+LFjnev6LzBZ8LTc0/1qdbC1AFuz93fyCSnlfvvzK2y4doAMa/NRg5t1/X6T/vhq4QJaHDv5yNIAKPOeK/wJn7BSE30j/W4YQrO6nrP78Ziv/Thtq/CaQ0envF578XY0xlUADXP7zaz7HYEuK/CvbK1sn16b8rAQfWwxLWvzKn/YuFN96/zWLlF7EmzL8GUgo9XBHlv3lbK7T9COe/kOOhPthhyz+cGEpnrOvCvzBFhLs15u6/c5bqB6H4u79IuuLF5sveP6lzLKY31eu/AQAAAP////8HAAAA/////zEAAAD/////VwEAAP////9hCQAA/////6dBAAD/////kcsBAP/////3kAwA/////8H2VwAAAAAAAAAAAAAAAAACAAAA/////w4AAAD/////YgAAAP////+uAgAA/////8ISAAD/////ToMAAP////8ilwMA/////+4hGQD/////gu2vAAAAAAAAAAAAAAAAAAAAAAACAAAA//////////8BAAAAAwAAAP//////////////////////////////////////////////////////////////////////////AQAAAAAAAAACAAAA////////////////AwAAAP//////////////////////////////////////////////////////////////////////////AQAAAAAAAAACAAAA////////////////AwAAAP//////////////////////////////////////////////////////////////////////////AQAAAAAAAAACAAAA////////////////AwAAAP//////////////////////////////////////////////////////////AgAAAP//////////AQAAAAAAAAD/////////////////////AwAAAP////////////////////////////////////////////////////8DAAAA/////////////////////wAAAAD/////////////////////AQAAAP///////////////wIAAAD///////////////////////////////8DAAAA/////////////////////wAAAAD///////////////8CAAAAAQAAAP////////////////////////////////////////////////////8DAAAA/////////////////////wAAAAD///////////////8CAAAAAQAAAP////////////////////////////////////////////////////8DAAAA/////////////////////wAAAAD///////////////8CAAAAAQAAAP////////////////////////////////////////////////////8DAAAA/////////////////////wAAAAD///////////////8CAAAAAQAAAP////////////////////////////////////////////////////8BAAAAAgAAAP///////////////wAAAAD/////////////////////AwAAAP////////////////////////////////////////////////////8BAAAAAgAAAP///////////////wAAAAD/////////////////////AwAAAP////////////////////////////////////////////////////8BAAAAAgAAAP///////////////wAAAAD/////////////////////AwAAAP////////////////////////////////////////////////////8BAAAAAgAAAP///////////////wAAAAD/////////////////////AwAAAP///////////////////////////////wIAAAD///////////////8BAAAA/////////////////////wAAAAD/////////////////////AwAAAP////////////////////////////////////////////////////8DAAAA/////////////////////wAAAAABAAAA//////////8CAAAA//////////////////////////////////////////////////////////8DAAAA////////////////AgAAAAAAAAABAAAA//////////////////////////////////////////////////////////////////////////8DAAAA////////////////AgAAAAAAAAABAAAA//////////////////////////////////////////////////////////////////////////8DAAAA////////////////AgAAAAAAAAABAAAA//////////////////////////////////////////////////////////////////////////8DAAAAAQAAAP//////////AgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAACAAAAAAAAAAIAAAABAAAAAQAAAAIAAAACAAAAAAAAAAUAAAAFAAAAAAAAAAIAAAACAAAAAwAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAgAAAAEAAAACAAAAAgAAAAIAAAAAAAAABQAAAAYAAAAAAAAAAgAAAAIAAAADAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAgAAAAAAAAACAAAAAQAAAAMAAAACAAAAAgAAAAAAAAAFAAAABwAAAAAAAAACAAAAAgAAAAMAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAACAAAAAAAAAAIAAAABAAAABAAAAAIAAAACAAAAAAAAAAUAAAAIAAAAAAAAAAIAAAACAAAAAwAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAIAAAAAAAAAAgAAAAEAAAAAAAAAAgAAAAIAAAAAAAAABQAAAAkAAAAAAAAAAgAAAAIAAAADAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAgAAAAIAAAAAAAAAAwAAAA4AAAACAAAAAAAAAAIAAAADAAAAAAAAAAAAAAACAAAAAgAAAAMAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAsAAAACAAAAAgAAAAAAAAADAAAACgAAAAIAAAAAAAAAAgAAAAMAAAABAAAAAAAAAAIAAAACAAAAAwAAAAcAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAIAAAACAAAAAAAAAAMAAAALAAAAAgAAAAAAAAACAAAAAwAAAAIAAAAAAAAAAgAAAAIAAAADAAAACAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAgAAAAIAAAAAAAAAAwAAAAwAAAACAAAAAAAAAAIAAAADAAAAAwAAAAAAAAACAAAAAgAAAAMAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAA4AAAACAAAAAgAAAAAAAAADAAAADQAAAAIAAAAAAAAAAgAAAAMAAAAEAAAAAAAAAAIAAAACAAAAAwAAAAoAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAIAAAACAAAAAAAAAAMAAAAGAAAAAgAAAAAAAAACAAAAAwAAAA8AAAAAAAAAAgAAAAIAAAADAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAgAAAAIAAAAAAAAAAwAAAAcAAAACAAAAAAAAAAIAAAADAAAAEAAAAAAAAAACAAAAAgAAAAMAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAACAAAAAgAAAAAAAAADAAAACAAAAAIAAAAAAAAAAgAAAAMAAAARAAAAAAAAAAIAAAACAAAAAwAAAA0AAAAAAAAAAAAAAAAAAAAAAAAACAAAAAIAAAACAAAAAAAAAAMAAAAJAAAAAgAAAAAAAAACAAAAAwAAABIAAAAAAAAAAgAAAAIAAAADAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAJAAAAAgAAAAIAAAAAAAAAAwAAAAUAAAACAAAAAAAAAAIAAAADAAAAEwAAAAAAAAACAAAAAgAAAAMAAAAPAAAAAAAAAAAAAAAAAAAAAAAAABAAAAACAAAAAAAAAAIAAAABAAAAEwAAAAIAAAACAAAAAAAAAAUAAAAKAAAAAAAAAAIAAAACAAAAAwAAABAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAIAAAAAAAAAAgAAAAEAAAAPAAAAAgAAAAIAAAAAAAAABQAAAAsAAAAAAAAAAgAAAAIAAAADAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAgAAAAAAAAACAAAAAQAAABAAAAACAAAAAgAAAAAAAAAFAAAADAAAAAAAAAACAAAAAgAAAAMAAAASAAAAAAAAAAAAAAAAAAAAAAAAABMAAAACAAAAAAAAAAIAAAABAAAAEQAAAAIAAAACAAAAAAAAAAUAAAANAAAAAAAAAAIAAAACAAAAAwAAABMAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAIAAAAAAAAAAgAAAAEAAAASAAAAAgAAAAIAAAAAAAAABQAAAA4AAAAAAAAAAgAAAAIAAAADAAAAAgAAAAEAAAAAAAAAAQAAAAIAAAAAAAAAAAAAAAIAAAABAAAAAAAAAAEAAAACAAAAAQAAAAAAAAACAAAAAAAAAAUAAAAEAAAAAAAAAAEAAAAFAAAAAAAAAAAAAAAFAAAABAAAAAAAAAABAAAABQAAAAQAAAAAAAAABQAAAAAAAAACAAAAAQAAAAAAAAABAAAAAgAAAAAAAAAAAAAAAgAAAAEAAAAAAAAAAQAAAAIAAAABAAAAAAAAAAIAAAACAAAAAAAAAAEAAAAAAAAAAAAAAAUAAAAEAAAAAAAAAAEAAAAFAAAAAAAAAAAAAAAFAAAABAAAAAAAAAABAAAABQAAAAQAAAAAAAAABQAAAAUAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAABAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAEAAAAAAAAAAAEAAAAAAQAAAAAAAAAAAQAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAABAAAAAAAAAAAAAQAAAAAAAAAAAAA6B6FaUp9QQTPXMuL4myJBraiDfBwx9UBYJseitzTIQOL5if9jqZtAnXX+Z+ycb0C3pucbhRBCQG8wJBYqpRRAlWbDCzCY5z/eFWBUEve6P/+qo4Q50Y4/D9YM3iCcYT8fcA2QJSA0P4ADxu0qAAc/BNcGolVJ2j5d9FACqwquPh9z7MthtI9CSUSYJke/YUJQ/64OyjU0Qpi0+HCmFQdCm3GfIVdh2kHsJ11kAyauQYC3UDFJOoFBSJsFV1OwU0FK5fcxX4AmQWhy/zZIt/lACqaCPsBjzUDbdUNIScugQMYQlVJ4MXNANiuq8GTvRUDxTXnulxEZQFZ8QX5kpuw/qmG/JwYFlEAluh3Q6DB+QKn4vyNq0GZAKOXekas+UUB8xabXXhI6QG63C2pLtSNAdDBtyNfLDUDyOcu67ID2P0rCMvRXAeE/Ki2TSVyzyT9Dk+8Sz2uzP5J+w5ARWp0/NQAoOiMuhj9YnP+RyMJwPxgW7TvQVFk/KgsLYF0kQz9g5dAC6IwzQcgHPVvDex1B1XjppodHBkHJq3OMM9fwQNvcmJ7wddlAInGPpQs/w0BRobq5EBmtQJZ2ai7n+ZVAtv2G5E+bgECG+gIfKBlpQK5f8jdI91JAL39sL/WpPEB8rGxhDqklQK6yUf43XhBAxL9y/tK8+D86XyZpgrHiPwAAAAD/////AAAAAAAAAAAAAAAAAAAAAAAAAAD/////////////////////////////////////AAAAAP////8AAAAAAAAAAAAAAAABAAAAAAAAAAAAAAD/////AAAAAAAAAAABAAAAAQAAAAAAAAAAAAAA/////wAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAP////8FAAAABQAAAAAAAAAAAAAAAAAAAAAAAAD/////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////////////////////////////////wAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////////////////////////////////8AAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAFAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////////////////////////////////AAAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAEAAAABAAAAAAAAAAEAAAAAAAAABQAAAAEAAAABAAAAAAAAAAAAAAABAAAAAQAAAAAAAAABAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAQAAAAAAAQABAAABAQAAAAAAAQAAAAEAAAABAAEAAAAAAAAAAAAAAAAAAAAAquJYWJZl+D9jaeZNtj/zPwwdI9KqaeO/qGefXwdHdz+q4lhYlmX4P+OrlPMN3PI/DB0j0qpp47+7SQLV4VIEQKriWFiWZfg/r2kma3tz8T82eQmLqNIGwMRIWXMqSvo/fcCszPux9j+jara6ozTwP6hnn18HR3c/MSoKLequ8r+SabgA2nj0P7jBLbDOHO8/1Ym/ICfH4T+6lxjvlFXHv73m373LRPU/0vXyDVxo7T+ToKRHJXMAQF/33578aPE/pAyy64tD9T8+U/hCvyruPwxv8Y7YYwLAuXYr8NAiCEB4+LDK0Sn0P1Qeuy4j+eo/OMx50n7K7L+TrGB/nyf8v5ehC2fbYPM/aXMKexiT6z8mFRIMjg/zP7yUVwGGBNw/E6opHERf8z/z0wR2g9DqPw4pBpcOhvu/NbA29uWAA8DMaTExyXzyP02biiQ+Ruk/S8jz2/FKBEB1pzZnpbb9P7pQU4wLfPI//7ZcQXeG6D9CqEQvAYoIwDB2VB6sSgRAVyv8H5We8T+EHWF8XNPmPzB2wT8Nrrg/SEi+cX+w4L8of+GtdSDxP1sjk5AdouU/6ZjOVru13r8K0obqI6bxvwVbdNXyhfA/w5GG024n5z+rwmtMzP8BwLw9pSX49QXABe/2uQxP8D+b6wCzCvXkP7uGT87fK+Q/pz/JWw4coj+qoBf2J0nwP/yE3PUo0+I/vFJeHcaC+D96luSIqvntP/bf8sHUYu8/gZNN41mL4z9bhOqVOF4FwO6lmAh1hQhAbCVxbdhk7z+1C8NdDcfiPwG36x/0OQBAx0WJ76c2+D9nlSHXANfuP2HlfZ3gqOE/EwnVlVPg9r96+oHzEH//v5bXzdT1Auw/DM3GwLsA4D9p/8uoKcr+v+U9x5DQVAPAehjSdghb7D9sc1IetODgP8MVwwB1pu6/azPk6OGe978W8t/TUc3rP+0QMvYfP+A/RsG/QpSE8D+l3uwScxzgPwQaifgujuw/k1Vti1I43z8MAwLnSh0GQH5nYnwwZgJAiGUzWC5s6j8WyyI/BbLgPw4iUapGeQJAB3W+imnp/j9BLWR4ssrpP2t+gG5Pstk/cpBsfm6DCMCOpU9dOZsFQEv8nFypHeo/ehJ6i+6S2D9jqlGEmarLv7STC5TRiOa/bC+x8WZD6D9H3yUkWpDZP8gZvmCMuQLAreY19/eRBsCoPOc8UzzpP6KI/QV+y9g/t/MoboyWzT+Hv5q3Zu3Mvy2xROCT4uY/9gQitMMg1T9abAqhWMDkv1oLTavoUfG/PMUJP9CD5j+fHRX3t6fSPz7W2gk6bvs/WRnuHwqN9D8YFturGCTmP1EZczv0b9I/5t4exabB5D/1ESLh5fTEP9X2z6SYweQ/6lv3I2zT0D9zkRGNUNMAQKoSvc4EIfs/Xggt8wQI5T+mJHHg/w/SP4lhT/9t8vQ/DrZ/DbwH7D+XlhbYZrjkP34LIpFt6c4/lwfp8fLX9L+j96CTTf76v3WdNhEv9uM/d8c3o4lV0D/vFdCHVcsFwAHeDq0F1QhApbYqcZiN5D9KoilqByXLPwX0/diA0vq/0fo0GxnxAMBbaTkvlCzjP/RrFrWXrMs/UYTrky7jA0DB9f4FiZYAQEGAk/3QzeE/r/TeqE8t0D/OqjlsnPbvvz8RKU8JOfW/smSEbK/O4T8MzuyPm3DDP/rFtctq9gZAfb1EVEaSA0Dts5dVInnhP18SFMc79MM/7y34cw6LAMDFrRJsZO0DwC2KLvLSYuA/hx5wcUHewz+49SnK/4ruPyeS0PX9a+E/ZxaaLvvZ3z8WPu5T2QS8Pygo4RIvMqa/BJ0Kqsd0279cKW4ay8jdP3b05bmZ364/10/qtdxk2r+Bcz6CDMvpv54qOw+Amdw/qLV71pW7sT/YKc80nIPUP8OfIaBJ77G/LyTuD1un2z+diYu8efWzP1wU7ACkfwjAZroyPL1yBkAmv3lKJJbbPysKSE4W+p0/dIgqY79TA8ATLTOQ3tsGwJ2zweD/Xdg/XO/jXeFUaL8VW2qLFKfov1cA9Aa6XfK/tIa7YGgI2T+f3hu/sxqPv2nXdPpf3Pc/jkw8Jbda8j+tT/z8tGPVP1yBHpJd35k/KYvYOy1s8j/yz+kCQjPrP9+agH7x59g/PZfJ9aBhpr/rDKzvYBb+PwtkiaGCt/c/vb1mVr+f1T/JIHwHc8Govw7aeF6+9vG/Xv7kD6fp979isYioQYHVP7AIQZuSFrG/3z1AdUTnAUDN3XY9O7f9P0AdQ9ljYNQ/dJANJPTOrb8kLECUiiPlP4yF7UgmStA/9xGmXxCG1T9qZzix4W2zv2SGJRJVrPe/Fh9a2M/B/b8IexzFCoPSP9y1QFD2bLe/Q86cWLJe/b+mOOfYm78BwOTjkPAGE9E/8aPCUKu/ub9pPZyLCiUGwBA7Mev/BQlALOmrlRi+0j+AMJ/dKULBv7iLtL6a6QRAEMDV/yajAUDa62dE3crJP1P70RgBUbq/38hVnR6esT/s1tG10Z/Ov/zLwalHPss/dTS9NKTXx78nMcRzCIEHQAabxDsAmQRA0tyLK3gSyT+Aui7nOhDGv5Gs58z3WgHATN3forJuBMCAui7nOhDGP9Lciyt4Esm/WAJyHQ4c7z8UP5HFIs3iP3U0vTSk18c//MvBqUc+y7+cvv8HLg/Kvy1I/mHsI+K/U/vRGAFRuj/a62dE3crJv8p+WV8KlQjAuQ/nOP43B0CAMJ/dKULBPyzpq5UYvtK/ZoU+VoLh4L9etLlRUfvtv/GjwlCrv7k/5OOQ8AYT0b9DfT9FhufXPwUX8hJp+4u/3LVAUPZstz8IexzFCoPSv9+L609E5fQ/q9Fz7X2J7T9qZzix4W2zP/cRpl8QhtW/vtNilqGX+j8MOy7QJoL0P3SQDST0zq0/QB1D2WNg1L8IIjSvGNkDwGB8Jou2GAfAsAhBm5IWsT9isYioQYHVvyS9D3zb6uy/gnwRa7uM9L/JIHwHc8GoP729Zla/n9W/CsAHJZwmAEDEW6OYT1r6Pz2XyfWgYaY/35qAfvHn2L83Tdy4lS30vxf2/gZ0jPq/XIEekl3fmb+tT/z8tGPVvybPr2zJ1/+/K7mJ0ypVAsCf3hu/sxqPPwCGu2BoCNm/5oITrpZn+r+UDUyDP+n/v1zv413hVGg/nbPB4P9d2L9MlmkxNvgCQMtZlKE85v8/KwpIThb6nb8mv3lKJJbbv8+SZsTvOOc/pQCIIOYw0j+diYu8efWzvy8k7g9bp9u/kxYDa+pKtD9XlYvA8HnVv6i1e9aVu7G/nio7D4CZ3L/WR6rNh5EGwCkgQweBkghAdvTluZnfrr9cKW4ay8jdvxbjhr1f1QVAR5C0MzivAkAWPu5T2QS8v2cWmi772d+/cKj4lzLJCEBx2QJfYrMFQIcecHFB3sO/LYou8tJi4L+jr7lhO38BwIcI0Nb7xgTAXxIUxzv0w7/ts5dVInnhv0T+l8DZLfE/MP3FoFvS5D8MzuyPm3DDv7JkhGyvzuG/tzhzRIRc0b9Ovv3/0z7mv6/03qhPLdC/m4CT/dDN4b9dwjU5VCQBQBBJX1ntCv0/9GsWtZesy79baTkvlCzjv1mjYgEz++S/oW6KnOQW8b9KoilqByXLv6W2KnGYjeS/SmaKz3Vx9z+BZB5yxGHwP3fHN6OJVdC/dZ02ES/2478PuaBjLrXaP4/JU81pPaO/fgsikW3pzr+XlhbYZrjkv4tSn7YDbP0/f2LnFKlF9z+mJHHg/w/Sv14ILfMECOW/mfg4qYhR/b+OP+RQDCACwOpb9yNs09C/1fbPpJjB5L9pN2WOVZ3wv3hHy9nxIve/URlzO/Rv0r8YFturGCTmv1d1/KKR8QPA8gsy9qzSB8CfHRX3t6fSvzzFCT/Qg+a/EYStnrzV9r/2QJqI7Lb9v/YEIrTDINW/LbFE4JPi5r/7kQEs5fEDQHunnf4GeQBAooj9BX7L2L+oPOc8Uzzpv+ydYY2SSAfAL4HK6CRTB0BH3yUkWpDZv2wvsfFmQ+i/Ik0Yzruh6T8fM3LoGoDUP3oSeovukti/S/ycXKkd6r9rEv+7UWcHQCRIQe/GfwNAa36Abk+y2b9BLWR4ssrpv9KT87qa0bM/FTyktw823L8WyyI/BbLgv4hlM1gubOq/DizMp9Ki6r8b5ckdjVrzv5NVbYtSON+/BBqJ+C6O7L/dUBFqgyXYv00Wh18r7+q/7RAy9h8/4L8W8t/TUc3rv4RM5DKx3wDAfvWIj94aBcBsc1IetODgv3oY0nYIW+y/oGcTFF54AUDkJqS/FKX6PwzNxsC7AOC/ltfN1PUC7L+5Wrz/zHnzP6688w2rNOc/YeV9neCo4b9nlSHXANfuvw9RsxKjY/s/1V8GteXE8j+1C8NdDcfiv2wlcW3YZO+/IOywaA7Q8b9bFP+4Tg36v4GTTeNZi+O/9t/ywdRi77+tRc3yFR7eP2bkcHXJkLO//ITc9SjT4r+qoBf2J0nwv2YHKoswwfm/iQcLspCjAcCb6wCzCvXkvwXv9rkMT/C/YkuwYAMXBMApCNUai9kIwMORhtNuJ+e/BVt01fKF8L+ZqWEfvIjsP6h693QZYNk/WyOTkB2i5b8of+GtdSDxvwpaaulDSwVADMQAX+lOAECEHWF8XNPmv1cr/B+VnvG/XyFG6opcCMD/mtR32/UEQP+2XEF3hui/ulBTjAt88r/imfCfRP+yP9zbvtc8XeO/TZuKJD5G6b/MaTExyXzyvxiTQeElXOO/rbJRQVGN9L/z0wR2g9DqvxOqKRxEX/O/FDGCEei99j9x8zV4VYTmP2lzCnsYk+u/l6ELZ9tg878pRXacaDT/v3k6GZRqoQXAVB67LiP56r94+LDK0Sn0vwO6pZ9b7wFAvK0nKVcc9j8+U/hCvyruv6QMsuuLQ/W/FPhKFYv46j8MyxaDTOW/v9L18g1caO2/vebfvctE9b/7GD8ZrF3xv3gx1AR9bQDAuMEtsM4c77+SabgA2nj0v5xKFIwxsATArKNSBaKsB0Cjara6ozTwv33ArMz7sfa/dF2U0FcWCcDxL357DJX/P69pJmt7c/G/quJYWJZl+L/YntVJlnrSP4sRLzXM+fe/46uU8w3c8r+q4lhYlmX4v85lu5+QRwRAsI0H/WU8479jaeZNtj/zv6riWFiWZfi/sI0H/WU847/OZbufkEcEQHAoPUBrnss/9exKzDtFtT88wM8kax+gP9OqeKeAYog/MW0ItiZvcj+ph+smvt5bP2lCaV5dEUU/StaUmQDaLz+kK9y22BMYP0O3whZuMwI/IIbgZGWE6z7UkjYaEM3UPuezxwa9cr8+LybxRMnFpz6E1N8DbPiRPsYjySMvK3s+//////8fAAj//////zMQCP////9/MiAI/////28yMAj/////YzJACP///z9iMlAI////N2IyYAj///8zYjJwCP//vzNiMoAI//+rM2IykAj/f6szYjKgCP8PqzNiMrAI/wOrM2IywAi/A6szYjLQCJ8DqzNiMuAImQOrM2Iy8Aj//////z8PCP//////Kx8I/////38pLwj/////Pyk/CP////85KU8I////PzgpXwj///8POClvCP///w44KX8I//8fDjgpjwj//w8OOCmfCP9/DQ44Ka8I/w8NDjgpvwj/DQ0OOCnPCP8MDQ44Kd8IxwwNDjgp7wjEDA0OOCn/CAcAAAAHAAAAAQAAAAIAAAAEAAAAAwAAAAAAAAAAAAAABwAAAAMAAAABAAAAAgAAAAUAAAAEAAAAAAAAAAAAAAAEAAAABAAAAAAAAAACAAAAAQAAAAMAAAAOAAAABgAAAAsAAAACAAAABwAAAAEAAAAYAAAABQAAAAoAAAABAAAABgAAAAAAAAAmAAAABwAAAAwAAAADAAAACAAAAAIAAAAxAAAACQAAAA4AAAAAAAAABQAAAAQAAAA6AAAACAAAAA0AAAAEAAAACQAAAAMAAAA/AAAACwAAAAYAAAAPAAAACgAAABAAAABIAAAADAAAAAcAAAAQAAAACwAAABEAAABTAAAACgAAAAUAAAATAAAADgAAAA8AAABhAAAADQAAAAgAAAARAAAADAAAABIAAABrAAAADgAAAAkAAAASAAAADQAAABMAAAB1AAAADwAAABMAAAARAAAAEgAAABAAAAAGAAAAAgAAAAMAAAAFAAAABAAAAAAAAAAAAAAAAAAAAAYAAAACAAAAAwAAAAEAAAAFAAAABAAAAAAAAAAAAAAABwAAAAUAAAADAAAABAAAAAEAAAAAAAAAAgAAAAAAAAACAAAAAwAAAAEAAAAFAAAABAAAAAYAAAAAAAAAAAAAABgtRFT7Ifk/GC1EVPsh+b8YLURU+yEJQBgtRFT7IQnAYWxnb3MuYwBoM05laWdoYm9yUm90YXRpb25zAGNvb3JkaWprLmMAX3VwQXA3Q2hlY2tlZABfdXBBcDdyQ2hlY2tlZABkaXJlY3RlZEVkZ2UuYwBkaXJlY3RlZEVkZ2VUb0JvdW5kYXJ5AGFkamFjZW50RmFjZURpclt0bXBGaWprLmZhY2VdW2ZpamsuZmFjZV0gPT0gS0kAZmFjZWlqay5jAF9mYWNlSWprUGVudFRvQ2VsbEJvdW5kYXJ5AGFkamFjZW50RmFjZURpcltjZW50ZXJJSksuZmFjZV1bZmFjZTJdID09IEtJAF9mYWNlSWprVG9DZWxsQm91bmRhcnkAaDNJbmRleC5jAGNvbXBhY3RDZWxscwBsYXRMbmdUb0NlbGwAY2VsbFRvQ2hpbGRQb3MAdmFsaWRhdGVDaGlsZFBvcwBsYXRMbmcuYwBjZWxsQXJlYVJhZHMyAHBvbHlnb24tPm5leHQgPT0gTlVMTABsaW5rZWRHZW8uYwBhZGROZXdMaW5rZWRQb2x5Z29uAG5leHQgIT0gTlVMTABsb29wICE9IE5VTEwAYWRkTmV3TGlua2VkTG9vcABwb2x5Z29uLT5maXJzdCA9PSBOVUxMAGFkZExpbmtlZExvb3AAY29vcmQgIT0gTlVMTABhZGRMaW5rZWRDb29yZABsb29wLT5maXJzdCA9PSBOVUxMAGlubmVyTG9vcHMgIT0gTlVMTABub3JtYWxpemVNdWx0aVBvbHlnb24AYmJveGVzICE9IE5VTEwAY2FuZGlkYXRlcyAhPSBOVUxMAGZpbmRQb2x5Z29uRm9ySG9sZQBjYW5kaWRhdGVCQm94ZXMgIT0gTlVMTAByZXZEaXIgIT0gSU5WQUxJRF9ESUdJVABsb2NhbGlqLmMAY2VsbFRvTG9jYWxJamsAYmFzZUNlbGwgIT0gb3JpZ2luQmFzZUNlbGwAIShvcmlnaW5PblBlbnQgJiYgaW5kZXhPblBlbnQpAGJhc2VDZWxsID09IG9yaWdpbkJhc2VDZWxsAGJhc2VDZWxsICE9IElOVkFMSURfQkFTRV9DRUxMAGxvY2FsSWprVG9DZWxsACFfaXNCYXNlQ2VsbFBlbnRhZ29uKGJhc2VDZWxsKQBiYXNlQ2VsbFJvdGF0aW9ucyA+PSAwAGdyaWRQYXRoQ2VsbHMAcG9seWZpbGwuYwBpdGVyU3RlcFBvbHlnb25Db21wYWN0ADAAdmVydGV4LmMAdmVydGV4Um90YXRpb25zAGNlbGxUb1ZlcnRleABncmFwaC0+YnVja2V0cyAhPSBOVUxMAHZlcnRleEdyYXBoLmMAaW5pdFZlcnRleEdyYXBoAG5vZGUgIT0gTlVMTABhZGRWZXJ0ZXhOb2Rl";var ze=28640;function Et(Ze,At,Ot,st){Jr("Assertion failed: "+G(Ze)+", at: "+[At?G(At):"unknown filename",Ot,st?G(st):"unknown function"])}function Rt(){return ee.length}function Ht(Ze,At,Ot){ne.set(ne.subarray(At,At+Ot),Ze)}function Xt(Ze){return e.___errno_location&&(te[e.___errno_location()>>2]=Ze),Ze}function yt(Ze){Jr("OOM")}function Zt(Ze){try{var At=new ArrayBuffer(Ze);return At.byteLength!=Ze?void 0:(new Int8Array(At).set(ee),Wt(At),de(At),1)}catch{}}function sn(Ze){var At=Rt(),Ot=16777216,st=2147483648-Ot;if(Ze>st)return!1;for(var d=16777216,J=Math.max(At,d);J>4,d=(Gn&15)<<4|Xn>>2,J=(Xn&3)<<6|un,Ot=Ot+String.fromCharCode(st),Xn!==64&&(Ot=Ot+String.fromCharCode(d)),un!==64&&(Ot=Ot+String.fromCharCode(J));while(qn13780509?(f=Hu(15,f)|0,f|0):(p=((A|0)<0)<<31>>31,y=fr(A|0,p|0,3,0)|0,_=Z()|0,p=Yt(A|0,p|0,1,0)|0,p=fr(y|0,_|0,p|0,Z()|0)|0,p=Yt(p|0,Z()|0,1,0)|0,A=Z()|0,d[f>>2]=p,d[f+4>>2]=A,f=0,f|0)}function _e(A,f,p,_){return A=A|0,f=f|0,p=p|0,_=_|0,at(A,f,p,_,0)|0}function at(A,f,p,_,y){A=A|0,f=f|0,p=p|0,_=_|0,y=y|0;var T=0,M=0,N=0,U=0,I=0;if(U=K,K=K+16|0,M=U,!(Ct(A,f,p,_,y)|0))return _=0,K=U,_|0;do if((p|0)>=0){if((p|0)>13780509){if(T=Hu(15,M)|0,T|0)break;N=M,M=d[N>>2]|0,N=d[N+4>>2]|0}else T=((p|0)<0)<<31>>31,I=fr(p|0,T|0,3,0)|0,N=Z()|0,T=Yt(p|0,T|0,1,0)|0,T=fr(I|0,N|0,T|0,Z()|0)|0,T=Yt(T|0,Z()|0,1,0)|0,N=Z()|0,d[M>>2]=T,d[M+4>>2]=N,M=T;if(uo(_|0,0,M<<3|0)|0,y|0){uo(y|0,0,M<<2|0)|0,T=Jt(A,f,p,_,y,M,N,0)|0;break}T=Ks(M,4)|0,T?(I=Jt(A,f,p,_,T,M,N,0)|0,An(T),T=I):T=13}else T=2;while(!1);return I=T,K=U,I|0}function Ct(A,f,p,_,y){A=A|0,f=f|0,p=p|0,_=_|0,y=y|0;var T=0,M=0,N=0,U=0,I=0,q=0,ie=0,pe=0,Ae=0,me=0,Ce=0;if(Ce=K,K=K+16|0,Ae=Ce,me=Ce+8|0,pe=Ae,d[pe>>2]=A,d[pe+4>>2]=f,(p|0)<0)return me=2,K=Ce,me|0;if(T=_,d[T>>2]=A,d[T+4>>2]=f,T=(y|0)!=0,T&&(d[y>>2]=0),Ci(A,f)|0)return me=9,K=Ce,me|0;d[me>>2]=0;e:do if((p|0)>=1)if(T)for(q=1,I=0,ie=0,pe=1,T=A;;){if(!(I|ie)){if(T=cn(T,f,4,me,Ae)|0,T|0)break e;if(f=Ae,T=d[f>>2]|0,f=d[f+4>>2]|0,Ci(T,f)|0){T=9;break e}}if(T=cn(T,f,d[26800+(ie<<2)>>2]|0,me,Ae)|0,T|0)break e;if(f=Ae,T=d[f>>2]|0,f=d[f+4>>2]|0,A=_+(q<<3)|0,d[A>>2]=T,d[A+4>>2]=f,d[y+(q<<2)>>2]=pe,A=I+1|0,M=(A|0)==(pe|0),N=ie+1|0,U=(N|0)==6,Ci(T,f)|0){T=9;break e}if(pe=pe+(U&M&1)|0,(pe|0)>(p|0)){T=0;break}else q=q+1|0,I=M?0:A,ie=M?U?0:N:ie}else for(q=1,I=0,ie=0,pe=1,T=A;;){if(!(I|ie)){if(T=cn(T,f,4,me,Ae)|0,T|0)break e;if(f=Ae,T=d[f>>2]|0,f=d[f+4>>2]|0,Ci(T,f)|0){T=9;break e}}if(T=cn(T,f,d[26800+(ie<<2)>>2]|0,me,Ae)|0,T|0)break e;if(f=Ae,T=d[f>>2]|0,f=d[f+4>>2]|0,A=_+(q<<3)|0,d[A>>2]=T,d[A+4>>2]=f,A=I+1|0,M=(A|0)==(pe|0),N=ie+1|0,U=(N|0)==6,Ci(T,f)|0){T=9;break e}if(pe=pe+(U&M&1)|0,(pe|0)>(p|0)){T=0;break}else q=q+1|0,I=M?0:A,ie=M?U?0:N:ie}else T=0;while(!1);return me=T,K=Ce,me|0}function Jt(A,f,p,_,y,T,M,N){A=A|0,f=f|0,p=p|0,_=_|0,y=y|0,T=T|0,M=M|0,N=N|0;var U=0,I=0,q=0,ie=0,pe=0,Ae=0,me=0,Ce=0,Be=0,Xe=0;if(Ce=K,K=K+16|0,Ae=Ce+8|0,me=Ce,U=ec(A|0,f|0,T|0,M|0)|0,q=Z()|0,ie=_+(U<<3)|0,Be=ie,Xe=d[Be>>2]|0,Be=d[Be+4>>2]|0,I=(Xe|0)==(A|0)&(Be|0)==(f|0),!((Xe|0)==0&(Be|0)==0|I))do U=Yt(U|0,q|0,1,0)|0,U=th(U|0,Z()|0,T|0,M|0)|0,q=Z()|0,ie=_+(U<<3)|0,Xe=ie,Be=d[Xe>>2]|0,Xe=d[Xe+4>>2]|0,I=(Be|0)==(A|0)&(Xe|0)==(f|0);while(!((Be|0)==0&(Xe|0)==0|I));if(U=y+(U<<2)|0,I&&(d[U>>2]|0)<=(N|0)||(Xe=ie,d[Xe>>2]=A,d[Xe+4>>2]=f,d[U>>2]=N,(N|0)>=(p|0)))return Xe=0,K=Ce,Xe|0;switch(I=N+1|0,d[Ae>>2]=0,U=cn(A,f,2,Ae,me)|0,U|0){case 9:{pe=9;break}case 0:{U=me,U=Jt(d[U>>2]|0,d[U+4>>2]|0,p,_,y,T,M,I)|0,U||(pe=9);break}}e:do if((pe|0)==9){switch(d[Ae>>2]=0,U=cn(A,f,3,Ae,me)|0,U|0){case 9:break;case 0:{if(U=me,U=Jt(d[U>>2]|0,d[U+4>>2]|0,p,_,y,T,M,I)|0,U|0)break e;break}default:break e}switch(d[Ae>>2]=0,U=cn(A,f,1,Ae,me)|0,U|0){case 9:break;case 0:{if(U=me,U=Jt(d[U>>2]|0,d[U+4>>2]|0,p,_,y,T,M,I)|0,U|0)break e;break}default:break e}switch(d[Ae>>2]=0,U=cn(A,f,5,Ae,me)|0,U|0){case 9:break;case 0:{if(U=me,U=Jt(d[U>>2]|0,d[U+4>>2]|0,p,_,y,T,M,I)|0,U|0)break e;break}default:break e}switch(d[Ae>>2]=0,U=cn(A,f,4,Ae,me)|0,U|0){case 9:break;case 0:{if(U=me,U=Jt(d[U>>2]|0,d[U+4>>2]|0,p,_,y,T,M,I)|0,U|0)break e;break}default:break e}switch(d[Ae>>2]=0,U=cn(A,f,6,Ae,me)|0,U|0){case 9:break;case 0:{if(U=me,U=Jt(d[U>>2]|0,d[U+4>>2]|0,p,_,y,T,M,I)|0,U|0)break e;break}default:break e}return Xe=0,K=Ce,Xe|0}while(!1);return Xe=U,K=Ce,Xe|0}function cn(A,f,p,_,y){A=A|0,f=f|0,p=p|0,_=_|0,y=y|0;var T=0,M=0,N=0,U=0,I=0,q=0,ie=0,pe=0,Ae=0,me=0;if(p>>>0>6)return y=1,y|0;if(ie=(d[_>>2]|0)%6|0,d[_>>2]=ie,(ie|0)>0){T=0;do p=Uu(p)|0,T=T+1|0;while((T|0)<(d[_>>2]|0))}if(ie=bt(A|0,f|0,45)|0,Z()|0,q=ie&127,q>>>0>121)return y=5,y|0;U=$s(A,f)|0,T=bt(A|0,f|0,52)|0,Z()|0,T=T&15;e:do if(!T)I=8;else{for(;;){if(M=(15-T|0)*3|0,N=bt(A|0,f|0,M|0)|0,Z()|0,N=N&7,(N|0)==7){f=5;break}if(me=(Ss(T)|0)==0,T=T+-1|0,pe=Nt(7,0,M|0)|0,f=f&~(Z()|0),Ae=Nt(d[(me?432:16)+(N*28|0)+(p<<2)>>2]|0,0,M|0)|0,M=Z()|0,p=d[(me?640:224)+(N*28|0)+(p<<2)>>2]|0,A=Ae|A&~pe,f=M|f,!p){p=0;break e}if(!T){I=8;break e}}return f|0}while(!1);(I|0)==8&&(me=d[848+(q*28|0)+(p<<2)>>2]|0,Ae=Nt(me|0,0,45)|0,A=Ae|A,f=Z()|0|f&-1040385,p=d[4272+(q*28|0)+(p<<2)>>2]|0,(me&127|0)==127&&(me=Nt(d[848+(q*28|0)+20>>2]|0,0,45)|0,f=Z()|0|f&-1040385,p=d[4272+(q*28|0)+20>>2]|0,A=ku(me|A,f)|0,f=Z()|0,d[_>>2]=(d[_>>2]|0)+1)),N=bt(A|0,f|0,45)|0,Z()|0,N=N&127;e:do if(Bi(N)|0){t:do if(($s(A,f)|0)==1){if((q|0)!=(N|0))if(Ru(N,d[7696+(q*28|0)>>2]|0)|0){A=hp(A,f)|0,M=1,f=Z()|0;break}else Ut(27795,26864,533,26872);switch(U|0){case 3:{A=ku(A,f)|0,f=Z()|0,d[_>>2]=(d[_>>2]|0)+1,M=0;break t}case 5:{A=hp(A,f)|0,f=Z()|0,d[_>>2]=(d[_>>2]|0)+5,M=0;break t}case 0:return me=9,me|0;default:return me=1,me|0}}else M=0;while(!1);if((p|0)>0){T=0;do A=cp(A,f)|0,f=Z()|0,T=T+1|0;while((T|0)!=(p|0))}if((q|0)!=(N|0)){if(!(Wc(N)|0)){if((M|0)!=0|($s(A,f)|0)!=5)break;d[_>>2]=(d[_>>2]|0)+1;break}switch(ie&127){case 8:case 118:break e}($s(A,f)|0)!=3&&(d[_>>2]=(d[_>>2]|0)+1)}}else if((p|0)>0){T=0;do A=ku(A,f)|0,f=Z()|0,T=T+1|0;while((T|0)!=(p|0))}while(!1);return d[_>>2]=((d[_>>2]|0)+p|0)%6|0,me=y,d[me>>2]=A,d[me+4>>2]=f,me=0,me|0}function Yn(A,f,p,_){return A=A|0,f=f|0,p=p|0,_=_|0,yi(A,f,p,_)|0?(uo(_|0,0,p*48|0)|0,_=js(A,f,p,_)|0,_|0):(_=0,_|0)}function yi(A,f,p,_){A=A|0,f=f|0,p=p|0,_=_|0;var y=0,T=0,M=0,N=0,U=0,I=0,q=0,ie=0,pe=0,Ae=0,me=0;if(me=K,K=K+16|0,pe=me,Ae=me+8|0,ie=pe,d[ie>>2]=A,d[ie+4>>2]=f,(p|0)<0)return Ae=2,K=me,Ae|0;if(!p)return Ae=_,d[Ae>>2]=A,d[Ae+4>>2]=f,Ae=0,K=me,Ae|0;d[Ae>>2]=0;e:do if(Ci(A,f)|0)A=9;else{y=0,ie=A;do{if(A=cn(ie,f,4,Ae,pe)|0,A|0)break e;if(f=pe,ie=d[f>>2]|0,f=d[f+4>>2]|0,y=y+1|0,Ci(ie,f)|0){A=9;break e}}while((y|0)<(p|0));q=_,d[q>>2]=ie,d[q+4>>2]=f,q=p+-1|0,I=0,A=1;do{if(y=26800+(I<<2)|0,(I|0)==5)for(M=d[y>>2]|0,T=0,y=A;;){if(A=pe,A=cn(d[A>>2]|0,d[A+4>>2]|0,M,Ae,pe)|0,A|0)break e;if((T|0)!=(q|0))if(U=pe,N=d[U>>2]|0,U=d[U+4>>2]|0,A=_+(y<<3)|0,d[A>>2]=N,d[A+4>>2]=U,!(Ci(N,U)|0))A=y+1|0;else{A=9;break e}else A=y;if(T=T+1|0,(T|0)>=(p|0))break;y=A}else for(M=pe,U=d[y>>2]|0,N=0,y=A,T=d[M>>2]|0,M=d[M+4>>2]|0;;){if(A=cn(T,M,U,Ae,pe)|0,A|0)break e;if(M=pe,T=d[M>>2]|0,M=d[M+4>>2]|0,A=_+(y<<3)|0,d[A>>2]=T,d[A+4>>2]=M,A=y+1|0,Ci(T,M)|0){A=9;break e}if(N=N+1|0,(N|0)>=(p|0))break;y=A}I=I+1|0}while(I>>>0<6);A=pe,A=(ie|0)==(d[A>>2]|0)&&(f|0)==(d[A+4>>2]|0)?0:9}while(!1);return Ae=A,K=me,Ae|0}function js(A,f,p,_){A=A|0,f=f|0,p=p|0,_=_|0;var y=0,T=0,M=0,N=0,U=0,I=0,q=0,ie=0,pe=0;if(ie=K,K=K+16|0,M=ie,!p)return d[_>>2]=A,d[_+4>>2]=f,_=0,K=ie,_|0;do if((p|0)>=0){if((p|0)>13780509){if(y=Hu(15,M)|0,y|0)break;T=M,y=d[T>>2]|0,T=d[T+4>>2]|0}else y=((p|0)<0)<<31>>31,q=fr(p|0,y|0,3,0)|0,T=Z()|0,y=Yt(p|0,y|0,1,0)|0,y=fr(q|0,T|0,y|0,Z()|0)|0,y=Yt(y|0,Z()|0,1,0)|0,T=Z()|0,q=M,d[q>>2]=y,d[q+4>>2]=T;if(I=Ks(y,8)|0,!I)y=13;else{if(q=Ks(y,4)|0,!q){An(I),y=13;break}if(y=Jt(A,f,p,I,q,y,T,0)|0,y|0){An(I),An(q);break}if(f=d[M>>2]|0,M=d[M+4>>2]|0,(M|0)>0|(M|0)==0&f>>>0>0){y=0,N=0,U=0;do A=I+(N<<3)|0,T=d[A>>2]|0,A=d[A+4>>2]|0,!((T|0)==0&(A|0)==0)&&(d[q+(N<<2)>>2]|0)==(p|0)&&(pe=_+(y<<3)|0,d[pe>>2]=T,d[pe+4>>2]=A,y=y+1|0),N=Yt(N|0,U|0,1,0)|0,U=Z()|0;while((U|0)<(M|0)|(U|0)==(M|0)&N>>>0>>0)}An(I),An(q),y=0}}else y=2;while(!1);return pe=y,K=ie,pe|0}function pi(A,f,p,_){A=A|0,f=f|0,p=p|0,_=_|0;var y=0,T=0,M=0,N=0,U=0,I=0;for(N=K,K=K+16|0,T=N,M=N+8|0,y=(Ci(A,f)|0)==0,y=y?1:2;;){if(d[M>>2]=0,I=(cn(A,f,y,M,T)|0)==0,U=T,I&((d[U>>2]|0)==(p|0)?(d[U+4>>2]|0)==(_|0):0)){A=4;break}if(y=y+1|0,y>>>0>=7){y=7,A=4;break}}return(A|0)==4?(K=N,y|0):0}function Pr(A,f,p,_){A=A|0,f=f|0,p=p|0,_=_|0;var y=0,T=0,M=0,N=0,U=0,I=0;if(N=K,K=K+48|0,y=N+16|0,T=N+8|0,M=N,p=Ra(p)|0,p|0)return M=p,K=N,M|0;if(I=A,U=d[I+4>>2]|0,p=T,d[p>>2]=d[I>>2],d[p+4>>2]=U,pa(T,y),p=sf(y,f,M)|0,!p){if(f=d[T>>2]|0,T=d[A+8>>2]|0,(T|0)>0){y=d[A+12>>2]|0,p=0;do f=(d[y+(p<<3)>>2]|0)+f|0,p=p+1|0;while((p|0)<(T|0))}p=M,y=d[p>>2]|0,p=d[p+4>>2]|0,T=((f|0)<0)<<31>>31,(p|0)<(T|0)|(p|0)==(T|0)&y>>>0>>0?(p=M,d[p>>2]=f,d[p+4>>2]=T,p=T):f=y,U=Yt(f|0,p|0,12,0)|0,I=Z()|0,p=M,d[p>>2]=U,d[p+4>>2]=I,p=_,d[p>>2]=U,d[p+4>>2]=I,p=0}return I=p,K=N,I|0}function Ei(A,f,p,_,y,T,M){A=A|0,f=f|0,p=p|0,_=_|0,y=y|0,T=T|0,M=M|0;var N=0,U=0,I=0,q=0,ie=0,pe=0,Ae=0,me=0,Ce=0,Be=0,Xe=0,qe=0,ke=0,Re=0,Pt=0,rn=0,en=0,Un=0,En=0,Qn=0,Tn=0,on=0,Lt=0,vn=0,ii=0,wn=0,Ri=0,ws=0,Al=0;if(ii=K,K=K+64|0,Tn=ii+48|0,on=ii+32|0,Lt=ii+24|0,Pt=ii+8|0,rn=ii,U=d[A>>2]|0,(U|0)<=0)return vn=0,K=ii,vn|0;for(en=A+4|0,Un=Tn+8|0,En=on+8|0,Qn=Pt+8|0,N=0,ke=0;;){I=d[en>>2]|0,qe=I+(ke<<4)|0,d[Tn>>2]=d[qe>>2],d[Tn+4>>2]=d[qe+4>>2],d[Tn+8>>2]=d[qe+8>>2],d[Tn+12>>2]=d[qe+12>>2],(ke|0)==(U+-1|0)?(d[on>>2]=d[I>>2],d[on+4>>2]=d[I+4>>2],d[on+8>>2]=d[I+8>>2],d[on+12>>2]=d[I+12>>2]):(qe=I+(ke+1<<4)|0,d[on>>2]=d[qe>>2],d[on+4>>2]=d[qe+4>>2],d[on+8>>2]=d[qe+8>>2],d[on+12>>2]=d[qe+12>>2]),U=a1(Tn,on,_,Lt)|0;e:do if(U)I=0,N=U;else if(U=Lt,I=d[U>>2]|0,U=d[U+4>>2]|0,(U|0)>0|(U|0)==0&I>>>0>0){Xe=0,qe=0;t:for(;;){if(Ri=1/(+(I>>>0)+4294967296*+(U|0)),Al=+J[Tn>>3],U=Ur(I|0,U|0,Xe|0,qe|0)|0,ws=+(U>>>0)+4294967296*+(Z()|0),wn=+(Xe>>>0)+4294967296*+(qe|0),J[Pt>>3]=Ri*(Al*ws)+Ri*(+J[on>>3]*wn),J[Qn>>3]=Ri*(+J[Un>>3]*ws)+Ri*(+J[En>>3]*wn),U=PA(Pt,_,rn)|0,U|0){N=U;break}Be=rn,Ce=d[Be>>2]|0,Be=d[Be+4>>2]|0,pe=ec(Ce|0,Be|0,f|0,p|0)|0,q=Z()|0,U=M+(pe<<3)|0,ie=U,I=d[ie>>2]|0,ie=d[ie+4>>2]|0;n:do if((I|0)==0&(ie|0)==0)Re=U,vn=16;else for(Ae=0,me=0;;){if((Ae|0)>(p|0)|(Ae|0)==(p|0)&me>>>0>f>>>0){N=1;break t}if((I|0)==(Ce|0)&(ie|0)==(Be|0))break n;if(U=Yt(pe|0,q|0,1,0)|0,pe=th(U|0,Z()|0,f|0,p|0)|0,q=Z()|0,me=Yt(me|0,Ae|0,1,0)|0,Ae=Z()|0,U=M+(pe<<3)|0,ie=U,I=d[ie>>2]|0,ie=d[ie+4>>2]|0,(I|0)==0&(ie|0)==0){Re=U,vn=16;break}}while(!1);if((vn|0)==16&&(vn=0,!((Ce|0)==0&(Be|0)==0))&&(me=Re,d[me>>2]=Ce,d[me+4>>2]=Be,me=T+(d[y>>2]<<3)|0,d[me>>2]=Ce,d[me+4>>2]=Be,me=y,me=Yt(d[me>>2]|0,d[me+4>>2]|0,1,0)|0,Ce=Z()|0,Be=y,d[Be>>2]=me,d[Be+4>>2]=Ce),Xe=Yt(Xe|0,qe|0,1,0)|0,qe=Z()|0,U=Lt,I=d[U>>2]|0,U=d[U+4>>2]|0,!((U|0)>(qe|0)|(U|0)==(qe|0)&I>>>0>Xe>>>0)){I=1;break e}}I=0}else I=1;while(!1);if(ke=ke+1|0,!I){vn=21;break}if(U=d[A>>2]|0,(ke|0)>=(U|0)){N=0,vn=21;break}}return(vn|0)==21?(K=ii,N|0):0}function Zh(A,f,p,_){A=A|0,f=f|0,p=p|0,_=_|0;var y=0,T=0,M=0,N=0,U=0,I=0,q=0,ie=0,pe=0,Ae=0,me=0,Ce=0,Be=0,Xe=0,qe=0,ke=0,Re=0,Pt=0,rn=0,en=0,Un=0,En=0,Qn=0,Tn=0,on=0,Lt=0,vn=0,ii=0,wn=0,Ri=0,ws=0;if(ws=K,K=K+112|0,vn=ws+80|0,U=ws+72|0,ii=ws,wn=ws+56|0,y=Ra(p)|0,y|0)return Ri=y,K=ws,Ri|0;if(I=A+8|0,Ri=Fo((d[I>>2]<<5)+32|0)|0,!Ri)return Ri=13,K=ws,Ri|0;if(Na(A,Ri),y=Ra(p)|0,!y){if(on=A,Lt=d[on+4>>2]|0,y=U,d[y>>2]=d[on>>2],d[y+4>>2]=Lt,pa(U,vn),y=sf(vn,f,ii)|0,y)on=0,Lt=0;else{if(y=d[U>>2]|0,T=d[I>>2]|0,(T|0)>0){M=d[A+12>>2]|0,p=0;do y=(d[M+(p<<3)>>2]|0)+y|0,p=p+1|0;while((p|0)!=(T|0));p=y}else p=y;y=ii,T=d[y>>2]|0,y=d[y+4>>2]|0,M=((p|0)<0)<<31>>31,(y|0)<(M|0)|(y|0)==(M|0)&T>>>0

>>0?(y=ii,d[y>>2]=p,d[y+4>>2]=M,y=M):p=T,on=Yt(p|0,y|0,12,0)|0,Lt=Z()|0,y=ii,d[y>>2]=on,d[y+4>>2]=Lt,y=0}if(!y){if(p=Ks(on,8)|0,!p)return An(Ri),Ri=13,K=ws,Ri|0;if(N=Ks(on,8)|0,!N)return An(Ri),An(p),Ri=13,K=ws,Ri|0;Qn=vn,d[Qn>>2]=0,d[Qn+4>>2]=0,Qn=A,Tn=d[Qn+4>>2]|0,y=U,d[y>>2]=d[Qn>>2],d[y+4>>2]=Tn,y=Ei(U,on,Lt,f,vn,p,N)|0;e:do if(y)An(p),An(N),An(Ri);else{t:do if((d[I>>2]|0)>0){for(M=A+12|0,T=0;y=Ei((d[M>>2]|0)+(T<<3)|0,on,Lt,f,vn,p,N)|0,T=T+1|0,!(y|0);)if((T|0)>=(d[I>>2]|0))break t;An(p),An(N),An(Ri);break e}while(!1);(Lt|0)>0|(Lt|0)==0&on>>>0>0&&uo(N|0,0,on<<3|0)|0,Tn=vn,Qn=d[Tn+4>>2]|0;t:do if((Qn|0)>0|(Qn|0)==0&(d[Tn>>2]|0)>>>0>0){en=p,Un=N,En=p,Qn=N,Tn=p,y=p,Re=p,Pt=N,rn=N,p=N;n:for(;;){for(Be=0,Xe=0,qe=0,ke=0,T=0,M=0;;){N=ii,U=N+56|0;do d[N>>2]=0,N=N+4|0;while((N|0)<(U|0));if(f=en+(Be<<3)|0,I=d[f>>2]|0,f=d[f+4>>2]|0,Ct(I,f,1,ii,0)|0){N=ii,U=N+56|0;do d[N>>2]=0,N=N+4|0;while((N|0)<(U|0));N=Ks(7,4)|0,N|0&&(Jt(I,f,1,ii,N,7,0,0)|0,An(N))}for(Ce=0;;){me=ii+(Ce<<3)|0,Ae=d[me>>2]|0,me=d[me+4>>2]|0;i:do if((Ae|0)==0&(me|0)==0)N=T,U=M;else{if(q=ec(Ae|0,me|0,on|0,Lt|0)|0,I=Z()|0,N=_+(q<<3)|0,f=N,U=d[f>>2]|0,f=d[f+4>>2]|0,!((U|0)==0&(f|0)==0)){ie=0,pe=0;do{if((ie|0)>(Lt|0)|(ie|0)==(Lt|0)&pe>>>0>on>>>0)break n;if((U|0)==(Ae|0)&(f|0)==(me|0)){N=T,U=M;break i}N=Yt(q|0,I|0,1,0)|0,q=th(N|0,Z()|0,on|0,Lt|0)|0,I=Z()|0,pe=Yt(pe|0,ie|0,1,0)|0,ie=Z()|0,N=_+(q<<3)|0,f=N,U=d[f>>2]|0,f=d[f+4>>2]|0}while(!((U|0)==0&(f|0)==0))}if((Ae|0)==0&(me|0)==0){N=T,U=M;break}Ol(Ae,me,wn)|0,Da(A,Ri,wn)|0&&(pe=Yt(T|0,M|0,1,0)|0,M=Z()|0,ie=N,d[ie>>2]=Ae,d[ie+4>>2]=me,T=Un+(T<<3)|0,d[T>>2]=Ae,d[T+4>>2]=me,T=pe),N=T,U=M}while(!1);if(Ce=Ce+1|0,Ce>>>0>=7)break;T=N,M=U}if(Be=Yt(Be|0,Xe|0,1,0)|0,Xe=Z()|0,qe=Yt(qe|0,ke|0,1,0)|0,ke=Z()|0,M=vn,T=d[M>>2]|0,M=d[M+4>>2]|0,(ke|0)<(M|0)|(ke|0)==(M|0)&qe>>>0>>0)T=N,M=U;else break}if((M|0)>0|(M|0)==0&T>>>0>0){T=0,M=0;do ke=en+(T<<3)|0,d[ke>>2]=0,d[ke+4>>2]=0,T=Yt(T|0,M|0,1,0)|0,M=Z()|0,ke=vn,qe=d[ke+4>>2]|0;while((M|0)<(qe|0)|((M|0)==(qe|0)?T>>>0<(d[ke>>2]|0)>>>0:0))}if(ke=vn,d[ke>>2]=N,d[ke+4>>2]=U,(U|0)>0|(U|0)==0&N>>>0>0)Ce=p,Be=rn,Xe=Tn,qe=Pt,ke=Un,p=Re,rn=y,Pt=En,Re=Ce,y=Be,Tn=Qn,Qn=Xe,En=qe,Un=en,en=ke;else break t}An(En),An(Qn),An(Ri),y=1;break e}else y=N;while(!1);An(Ri),An(p),An(y),y=0}while(!1);return Ri=y,K=ws,Ri|0}}return An(Ri),Ri=y,K=ws,Ri|0}function Bl(A,f,p){A=A|0,f=f|0,p=p|0;var _=0,y=0,T=0,M=0,N=0,U=0,I=0,q=0;if(q=K,K=K+176|0,U=q,(f|0)<1)return Io(p,0,0),I=0,K=q,I|0;for(N=A,N=bt(d[N>>2]|0,d[N+4>>2]|0,52)|0,Z()|0,Io(p,(f|0)>6?f:6,N&15),N=0;_=A+(N<<3)|0,_=Il(d[_>>2]|0,d[_+4>>2]|0,U)|0,!(_|0);){if(_=d[U>>2]|0,(_|0)>0){M=0;do T=U+8+(M<<4)|0,M=M+1|0,_=U+8+(((M|0)%(_|0)|0)<<4)|0,y=Zu(p,_,T)|0,y?Ku(p,y)|0:VA(p,T,_)|0,_=d[U>>2]|0;while((M|0)<(_|0))}if(N=N+1|0,(N|0)>=(f|0)){_=0,I=13;break}}return(I|0)==13?(K=q,_|0):(GA(p),I=_,K=q,I|0)}function nl(A,f,p){A=A|0,f=f|0,p=p|0;var _=0,y=0,T=0,M=0;if(T=K,K=K+32|0,_=T,y=T+16|0,A=Bl(A,f,y)|0,A|0)return p=A,K=T,p|0;if(d[p>>2]=0,d[p+4>>2]=0,d[p+8>>2]=0,A=qA(y)|0,A|0)do{f=M1(p)|0;do OA(f,A)|0,M=A+16|0,d[_>>2]=d[M>>2],d[_+4>>2]=d[M+4>>2],d[_+8>>2]=d[M+8>>2],d[_+12>>2]=d[M+12>>2],Ku(y,A)|0,A=As(y,_)|0;while((A|0)!=0);A=qA(y)|0}while((A|0)!=0);return GA(y),A=Rx(p)|0,A?(Wu(p),M=A,K=T,M|0):(M=0,K=T,M|0)}function Bi(A){return A=A|0,A>>>0>121?(A=0,A|0):(A=d[7696+(A*28|0)+16>>2]|0,A|0)}function Wc(A){return A=A|0,(A|0)==4|(A|0)==117|0}function Po(A){return A=A|0,d[11120+((d[A>>2]|0)*216|0)+((d[A+4>>2]|0)*72|0)+((d[A+8>>2]|0)*24|0)+(d[A+12>>2]<<3)>>2]|0}function ep(A){return A=A|0,d[11120+((d[A>>2]|0)*216|0)+((d[A+4>>2]|0)*72|0)+((d[A+8>>2]|0)*24|0)+(d[A+12>>2]<<3)+4>>2]|0}function tp(A,f){A=A|0,f=f|0,A=7696+(A*28|0)|0,d[f>>2]=d[A>>2],d[f+4>>2]=d[A+4>>2],d[f+8>>2]=d[A+8>>2],d[f+12>>2]=d[A+12>>2]}function $c(A,f){A=A|0,f=f|0;var p=0,_=0;if(f>>>0>20)return f=-1,f|0;do if((d[11120+(f*216|0)>>2]|0)!=(A|0))if((d[11120+(f*216|0)+8>>2]|0)!=(A|0))if((d[11120+(f*216|0)+16>>2]|0)!=(A|0))if((d[11120+(f*216|0)+24>>2]|0)!=(A|0))if((d[11120+(f*216|0)+32>>2]|0)!=(A|0))if((d[11120+(f*216|0)+40>>2]|0)!=(A|0))if((d[11120+(f*216|0)+48>>2]|0)!=(A|0))if((d[11120+(f*216|0)+56>>2]|0)!=(A|0))if((d[11120+(f*216|0)+64>>2]|0)!=(A|0))if((d[11120+(f*216|0)+72>>2]|0)!=(A|0))if((d[11120+(f*216|0)+80>>2]|0)!=(A|0))if((d[11120+(f*216|0)+88>>2]|0)!=(A|0))if((d[11120+(f*216|0)+96>>2]|0)!=(A|0))if((d[11120+(f*216|0)+104>>2]|0)!=(A|0))if((d[11120+(f*216|0)+112>>2]|0)!=(A|0))if((d[11120+(f*216|0)+120>>2]|0)!=(A|0))if((d[11120+(f*216|0)+128>>2]|0)!=(A|0))if((d[11120+(f*216|0)+136>>2]|0)==(A|0))A=2,p=1,_=2;else{if((d[11120+(f*216|0)+144>>2]|0)==(A|0)){A=0,p=2,_=0;break}if((d[11120+(f*216|0)+152>>2]|0)==(A|0)){A=0,p=2,_=1;break}if((d[11120+(f*216|0)+160>>2]|0)==(A|0)){A=0,p=2,_=2;break}if((d[11120+(f*216|0)+168>>2]|0)==(A|0)){A=1,p=2,_=0;break}if((d[11120+(f*216|0)+176>>2]|0)==(A|0)){A=1,p=2,_=1;break}if((d[11120+(f*216|0)+184>>2]|0)==(A|0)){A=1,p=2,_=2;break}if((d[11120+(f*216|0)+192>>2]|0)==(A|0)){A=2,p=2,_=0;break}if((d[11120+(f*216|0)+200>>2]|0)==(A|0)){A=2,p=2,_=1;break}if((d[11120+(f*216|0)+208>>2]|0)==(A|0)){A=2,p=2,_=2;break}else A=-1;return A|0}else A=2,p=1,_=1;else A=2,p=1,_=0;else A=1,p=1,_=2;else A=1,p=1,_=1;else A=1,p=1,_=0;else A=0,p=1,_=2;else A=0,p=1,_=1;else A=0,p=1,_=0;else A=2,p=0,_=2;else A=2,p=0,_=1;else A=2,p=0,_=0;else A=1,p=0,_=2;else A=1,p=0,_=1;else A=1,p=0,_=0;else A=0,p=0,_=2;else A=0,p=0,_=1;else A=0,p=0,_=0;while(!1);return f=d[11120+(f*216|0)+(p*72|0)+(A*24|0)+(_<<3)+4>>2]|0,f|0}function Ru(A,f){return A=A|0,f=f|0,(d[7696+(A*28|0)+20>>2]|0)==(f|0)?(f=1,f|0):(f=(d[7696+(A*28|0)+24>>2]|0)==(f|0),f|0)}function SA(A,f){return A=A|0,f=f|0,d[848+(A*28|0)+(f<<2)>>2]|0}function Jh(A,f){return A=A|0,f=f|0,(d[848+(A*28|0)>>2]|0)==(f|0)?(f=0,f|0):(d[848+(A*28|0)+4>>2]|0)==(f|0)?(f=1,f|0):(d[848+(A*28|0)+8>>2]|0)==(f|0)?(f=2,f|0):(d[848+(A*28|0)+12>>2]|0)==(f|0)?(f=3,f|0):(d[848+(A*28|0)+16>>2]|0)==(f|0)?(f=4,f|0):(d[848+(A*28|0)+20>>2]|0)==(f|0)?(f=5,f|0):((d[848+(A*28|0)+24>>2]|0)==(f|0)?6:7)|0}function s1(){return 122}function ef(A){A=A|0;var f=0,p=0,_=0;f=0;do Nt(f|0,0,45)|0,_=Z()|0|134225919,p=A+(f<<3)|0,d[p>>2]=-1,d[p+4>>2]=_,f=f+1|0;while((f|0)!=122);return 0}function il(A){A=A|0;var f=0,p=0,_=0;return _=+J[A+16>>3],p=+J[A+24>>3],f=_-p,+(_>3]<+J[A+24>>3]|0}function tf(A){return A=A|0,+(+J[A>>3]-+J[A+8>>3])}function Lo(A,f){A=A|0,f=f|0;var p=0,_=0,y=0;return p=+J[f>>3],!(p>=+J[A+8>>3])||!(p<=+J[A>>3])?(f=0,f|0):(_=+J[A+16>>3],p=+J[A+24>>3],y=+J[f+8>>3],f=y>=p,A=y<=_&1,_>3]<+J[f+8>>3]||+J[A+8>>3]>+J[f>>3]?(_=0,_|0):(T=+J[A+16>>3],p=A+24|0,q=+J[p>>3],M=T>3],y=f+24|0,U=+J[y>>3],N=I>3],f)||(q=+Xs(+J[p>>3],A),q>+Xs(+J[_>>3],f))?(N=0,N|0):(N=1,N|0))}function wA(A,f,p,_){A=A|0,f=f|0,p=p|0,_=_|0;var y=0,T=0,M=0,N=0,U=0;T=+J[A+16>>3],U=+J[A+24>>3],A=T>3],M=+J[f+24>>3],y=N>2]=A?y|f?1:2:0,d[_>>2]=y?A?1:f?2:1:0}function np(A,f){A=A|0,f=f|0;var p=0,_=0,y=0,T=0,M=0,N=0,U=0,I=0,q=0;return+J[A>>3]<+J[f>>3]||+J[A+8>>3]>+J[f+8>>3]?(_=0,_|0):(_=A+16|0,U=+J[_>>3],T=+J[A+24>>3],M=U>3],y=f+24|0,I=+J[y>>3],N=q>3],f)?(q=+Xs(+J[_>>3],A),N=q>=+Xs(+J[p>>3],f),N|0):(N=0,N|0))}function rf(A,f){A=A|0,f=f|0;var p=0,_=0,y=0,T=0,M=0,N=0;y=K,K=K+176|0,_=y,d[_>>2]=4,N=+J[f>>3],J[_+8>>3]=N,T=+J[f+16>>3],J[_+16>>3]=T,J[_+24>>3]=N,N=+J[f+24>>3],J[_+32>>3]=N,M=+J[f+8>>3],J[_+40>>3]=M,J[_+48>>3]=N,J[_+56>>3]=M,J[_+64>>3]=T,f=_+72|0,p=f+96|0;do d[f>>2]=0,f=f+4|0;while((f|0)<(p|0));Gl(A|0,_|0,168)|0,K=y}function sf(A,f,p){A=A|0,f=f|0,p=p|0;var _=0,y=0,T=0,M=0,N=0,U=0,I=0,q=0,ie=0,pe=0,Ae=0,me=0,Ce=0,Be=0;me=K,K=K+288|0,q=me+264|0,ie=me+96|0,I=me,N=I,U=N+96|0;do d[N>>2]=0,N=N+4|0;while((N|0)<(U|0));return f=qu(f,I)|0,f|0?(Ae=f,K=me,Ae|0):(U=I,I=d[U>>2]|0,U=d[U+4>>2]|0,Ol(I,U,q)|0,Il(I,U,ie)|0,M=+Zc(q,ie+8|0),J[q>>3]=+J[A>>3],U=q+8|0,J[U>>3]=+J[A+16>>3],J[ie>>3]=+J[A+8>>3],I=ie+8|0,J[I>>3]=+J[A+24>>3],y=+Zc(q,ie),Be=+J[U>>3]-+J[I>>3],T=+un(+Be),Ce=+J[q>>3]-+J[ie>>3],_=+un(+Ce),!(Be==0|Ce==0)&&(Be=+Af(+T,+_),Be=+Ye(+(y*y/+df(+(Be/+df(+T,+_)),3)/(M*(M*2.59807621135)*.8))),J[$n>>3]=Be,pe=~~Be>>>0,Ae=+un(Be)>=1?Be>0?~~+Ie(+Xn(Be/4294967296),4294967295)>>>0:~~+Ye((Be-+(~~Be>>>0))/4294967296)>>>0:0,(d[$n+4>>2]&2146435072|0)!=2146435072)?(ie=(pe|0)==0&(Ae|0)==0,f=p,d[f>>2]=ie?1:pe,d[f+4>>2]=ie?0:Ae,f=0):f=1,Ae=f,K=me,Ae|0)}function a1(A,f,p,_){A=A|0,f=f|0,p=p|0,_=_|0;var y=0,T=0,M=0,N=0,U=0,I=0,q=0;I=K,K=K+288|0,M=I+264|0,N=I+96|0,U=I,y=U,T=y+96|0;do d[y>>2]=0,y=y+4|0;while((y|0)<(T|0));return p=qu(p,U)|0,p|0?(_=p,K=I,_|0):(p=U,y=d[p>>2]|0,p=d[p+4>>2]|0,Ol(y,p,M)|0,Il(y,p,N)|0,q=+Zc(M,N+8|0),q=+Ye(+(+Zc(A,f)/(q*2))),J[$n>>3]=q,p=~~q>>>0,y=+un(q)>=1?q>0?~~+Ie(+Xn(q/4294967296),4294967295)>>>0:~~+Ye((q-+(~~q>>>0))/4294967296)>>>0:0,(d[$n+4>>2]&2146435072|0)==2146435072?(_=1,K=I,_|0):(U=(p|0)==0&(y|0)==0,d[_>>2]=U?1:p,d[_+4>>2]=U?0:y,_=0,K=I,_|0))}function Ws(A,f){A=A|0,f=+f;var p=0,_=0,y=0,T=0,M=0,N=0,U=0,I=0,q=0;T=A+16|0,M=+J[T>>3],p=A+24|0,y=+J[p>>3],_=M-y,_=M>3],N=A+8|0,U=+J[N>>3],q=I-U,_=(_*f-_)*.5,f=(q*f-q)*.5,I=I+f,J[A>>3]=I>1.5707963267948966?1.5707963267948966:I,f=U-f,J[N>>3]=f<-1.5707963267948966?-1.5707963267948966:f,f=M+_,f=f>3.141592653589793?f+-6.283185307179586:f,J[T>>3]=f<-3.141592653589793?f+6.283185307179586:f,f=y-_,f=f>3.141592653589793?f+-6.283185307179586:f,J[p>>3]=f<-3.141592653589793?f+6.283185307179586:f}function Nu(A,f,p,_){A=A|0,f=f|0,p=p|0,_=_|0,d[A>>2]=f,d[A+4>>2]=p,d[A+8>>2]=_}function MA(A,f){A=A|0,f=f|0;var p=0,_=0,y=0,T=0,M=0,N=0,U=0,I=0,q=0,ie=0,pe=0;ie=f+8|0,d[ie>>2]=0,U=+J[A>>3],M=+un(+U),I=+J[A+8>>3],N=+un(+I)*1.1547005383792515,M=M+N*.5,p=~~M,A=~~N,M=M-+(p|0),N=N-+(A|0);do if(M<.5)if(M<.3333333333333333)if(d[f>>2]=p,N<(M+1)*.5){d[f+4>>2]=A;break}else{A=A+1|0,d[f+4>>2]=A;break}else if(pe=1-M,A=(!(N>2]=A,pe<=N&N>2]=p;break}else{d[f>>2]=p;break}else{if(!(M<.6666666666666666))if(p=p+1|0,d[f>>2]=p,N>2]=A;break}else{A=A+1|0,d[f+4>>2]=A;break}if(N<1-M){if(d[f+4>>2]=A,M*2+-1>2]=p;break}}else A=A+1|0,d[f+4>>2]=A;p=p+1|0,d[f>>2]=p}while(!1);do if(U<0)if(A&1){q=(A+1|0)/2|0,q=Ur(p|0,((p|0)<0)<<31>>31|0,q|0,((q|0)<0)<<31>>31|0)|0,p=~~(+(p|0)-((+(q>>>0)+4294967296*+(Z()|0))*2+1)),d[f>>2]=p;break}else{q=(A|0)/2|0,q=Ur(p|0,((p|0)<0)<<31>>31|0,q|0,((q|0)<0)<<31>>31|0)|0,p=~~(+(p|0)-(+(q>>>0)+4294967296*+(Z()|0))*2),d[f>>2]=p;break}while(!1);q=f+4|0,I<0&&(p=p-((A<<1|1|0)/2|0)|0,d[f>>2]=p,A=0-A|0,d[q>>2]=A),_=A-p|0,(p|0)<0?(y=0-p|0,d[q>>2]=_,d[ie>>2]=y,d[f>>2]=0,A=_,p=0):y=0,(A|0)<0&&(p=p-A|0,d[f>>2]=p,y=y-A|0,d[ie>>2]=y,d[q>>2]=0,A=0),T=p-y|0,_=A-y|0,(y|0)<0&&(d[f>>2]=T,d[q>>2]=_,d[ie>>2]=0,A=_,p=T,y=0),_=(A|0)<(p|0)?A:p,_=(y|0)<(_|0)?y:_,!((_|0)<=0)&&(d[f>>2]=p-_,d[q>>2]=A-_,d[ie>>2]=y-_)}function Lr(A){A=A|0;var f=0,p=0,_=0,y=0,T=0,M=0;f=d[A>>2]|0,M=A+4|0,p=d[M>>2]|0,(f|0)<0&&(p=p-f|0,d[M>>2]=p,T=A+8|0,d[T>>2]=(d[T>>2]|0)-f,d[A>>2]=0,f=0),(p|0)<0?(f=f-p|0,d[A>>2]=f,T=A+8|0,y=(d[T>>2]|0)-p|0,d[T>>2]=y,d[M>>2]=0,p=0):(y=A+8|0,T=y,y=d[y>>2]|0),(y|0)<0&&(f=f-y|0,d[A>>2]=f,p=p-y|0,d[M>>2]=p,d[T>>2]=0,y=0),_=(p|0)<(f|0)?p:f,_=(y|0)<(_|0)?y:_,!((_|0)<=0)&&(d[A>>2]=f-_,d[M>>2]=p-_,d[T>>2]=y-_)}function Du(A,f){A=A|0,f=f|0;var p=0,_=0;_=d[A+8>>2]|0,p=+((d[A+4>>2]|0)-_|0),J[f>>3]=+((d[A>>2]|0)-_|0)-p*.5,J[f+8>>3]=p*.8660254037844386}function hs(A,f,p){A=A|0,f=f|0,p=p|0,d[p>>2]=(d[f>>2]|0)+(d[A>>2]|0),d[p+4>>2]=(d[f+4>>2]|0)+(d[A+4>>2]|0),d[p+8>>2]=(d[f+8>>2]|0)+(d[A+8>>2]|0)}function af(A,f,p){A=A|0,f=f|0,p=p|0,d[p>>2]=(d[A>>2]|0)-(d[f>>2]|0),d[p+4>>2]=(d[A+4>>2]|0)-(d[f+4>>2]|0),d[p+8>>2]=(d[A+8>>2]|0)-(d[f+8>>2]|0)}function Xc(A,f){A=A|0,f=f|0;var p=0,_=0;p=$e(d[A>>2]|0,f)|0,d[A>>2]=p,p=A+4|0,_=$e(d[p>>2]|0,f)|0,d[p>>2]=_,A=A+8|0,f=$e(d[A>>2]|0,f)|0,d[A>>2]=f}function Pu(A){A=A|0;var f=0,p=0,_=0,y=0,T=0,M=0,N=0;M=d[A>>2]|0,N=(M|0)<0,_=(d[A+4>>2]|0)-(N?M:0)|0,T=(_|0)<0,y=(T?0-_|0:0)+((d[A+8>>2]|0)-(N?M:0))|0,p=(y|0)<0,A=p?0:y,f=(T?0:_)-(p?y:0)|0,y=(N?0:M)-(T?_:0)-(p?y:0)|0,p=(f|0)<(y|0)?f:y,p=(A|0)<(p|0)?A:p,_=(p|0)>0,A=A-(_?p:0)|0,f=f-(_?p:0)|0;e:do switch(y-(_?p:0)|0){case 0:switch(f|0){case 0:return N=(A|0)==0?0:(A|0)==1?1:7,N|0;case 1:return N=(A|0)==0?2:(A|0)==1?3:7,N|0;default:break e}case 1:switch(f|0){case 0:return N=(A|0)==0?4:(A|0)==1?5:7,N|0;case 1:{if(!A)A=6;else break e;return A|0}default:break e}}while(!1);return N=7,N|0}function o1(A){A=A|0;var f=0,p=0,_=0,y=0,T=0,M=0,N=0,U=0,I=0;if(U=A+8|0,M=d[U>>2]|0,N=(d[A>>2]|0)-M|0,I=A+4|0,M=(d[I>>2]|0)-M|0,N>>>0>715827881|M>>>0>715827881){if(_=(N|0)>0,y=2147483647-N|0,T=-2147483648-N|0,(_?(y|0)<(N|0):(T|0)>(N|0))||(p=N<<1,_?(2147483647-p|0)<(N|0):(-2147483648-p|0)>(N|0))||((M|0)>0?(2147483647-M|0)<(M|0):(-2147483648-M|0)>(M|0))||(f=N*3|0,p=M<<1,(_?(y|0)<(p|0):(T|0)>(p|0))||((N|0)>-1?(f|-2147483648|0)>=(M|0):(f^-2147483648|0)<(M|0))))return I=1,I|0}else p=M<<1,f=N*3|0;return _=cl(+(f-M|0)*.14285714285714285)|0,d[A>>2]=_,y=cl(+(p+N|0)*.14285714285714285)|0,d[I>>2]=y,d[U>>2]=0,p=(y|0)<(_|0),f=p?_:y,p=p?y:_,(p|0)<0&&(((p|0)==-2147483648||((f|0)>0?(2147483647-f|0)<(p|0):(-2147483648-f|0)>(p|0)))&&Ut(27795,26892,354,26903),((f|0)>-1?(f|-2147483648|0)>=(p|0):(f^-2147483648|0)<(p|0))&&Ut(27795,26892,354,26903)),f=y-_|0,(_|0)<0?(p=0-_|0,d[I>>2]=f,d[U>>2]=p,d[A>>2]=0,_=0):(f=y,p=0),(f|0)<0&&(_=_-f|0,d[A>>2]=_,p=p-f|0,d[U>>2]=p,d[I>>2]=0,f=0),T=_-p|0,y=f-p|0,(p|0)<0?(d[A>>2]=T,d[I>>2]=y,d[U>>2]=0,f=y,y=T,p=0):y=_,_=(f|0)<(y|0)?f:y,_=(p|0)<(_|0)?p:_,(_|0)<=0?(I=0,I|0):(d[A>>2]=y-_,d[I>>2]=f-_,d[U>>2]=p-_,I=0,I|0)}function cx(A){A=A|0;var f=0,p=0,_=0,y=0,T=0,M=0,N=0,U=0;if(M=A+8|0,y=d[M>>2]|0,T=(d[A>>2]|0)-y|0,N=A+4|0,y=(d[N>>2]|0)-y|0,T>>>0>715827881|y>>>0>715827881){if(p=(T|0)>0,(p?(2147483647-T|0)<(T|0):(-2147483648-T|0)>(T|0))||(f=T<<1,_=(y|0)>0,_?(2147483647-y|0)<(y|0):(-2147483648-y|0)>(y|0)))return N=1,N|0;if(U=y<<1,(_?(2147483647-U|0)<(y|0):(-2147483648-U|0)>(y|0))||(p?(2147483647-f|0)<(y|0):(-2147483648-f|0)>(y|0))||(p=y*3|0,(y|0)>-1?(p|-2147483648|0)>=(T|0):(p^-2147483648|0)<(T|0)))return U=1,U|0}else p=y*3|0,f=T<<1;return _=cl(+(f+y|0)*.14285714285714285)|0,d[A>>2]=_,y=cl(+(p-T|0)*.14285714285714285)|0,d[N>>2]=y,d[M>>2]=0,p=(y|0)<(_|0),f=p?_:y,p=p?y:_,(p|0)<0&&(((p|0)==-2147483648||((f|0)>0?(2147483647-f|0)<(p|0):(-2147483648-f|0)>(p|0)))&&Ut(27795,26892,402,26917),((f|0)>-1?(f|-2147483648|0)>=(p|0):(f^-2147483648|0)<(p|0))&&Ut(27795,26892,402,26917)),f=y-_|0,(_|0)<0?(p=0-_|0,d[N>>2]=f,d[M>>2]=p,d[A>>2]=0,_=0):(f=y,p=0),(f|0)<0&&(_=_-f|0,d[A>>2]=_,p=p-f|0,d[M>>2]=p,d[N>>2]=0,f=0),T=_-p|0,y=f-p|0,(p|0)<0?(d[A>>2]=T,d[N>>2]=y,d[M>>2]=0,f=y,y=T,p=0):y=_,_=(f|0)<(y|0)?f:y,_=(p|0)<(_|0)?p:_,(_|0)<=0?(U=0,U|0):(d[A>>2]=y-_,d[N>>2]=f-_,d[M>>2]=p-_,U=0,U|0)}function hx(A){A=A|0;var f=0,p=0,_=0,y=0,T=0,M=0,N=0;M=A+8|0,p=d[M>>2]|0,f=(d[A>>2]|0)-p|0,N=A+4|0,p=(d[N>>2]|0)-p|0,_=cl(+((f*3|0)-p|0)*.14285714285714285)|0,d[A>>2]=_,f=cl(+((p<<1)+f|0)*.14285714285714285)|0,d[N>>2]=f,d[M>>2]=0,p=f-_|0,(_|0)<0?(T=0-_|0,d[N>>2]=p,d[M>>2]=T,d[A>>2]=0,f=p,_=0,p=T):p=0,(f|0)<0&&(_=_-f|0,d[A>>2]=_,p=p-f|0,d[M>>2]=p,d[N>>2]=0,f=0),T=_-p|0,y=f-p|0,(p|0)<0?(d[A>>2]=T,d[N>>2]=y,d[M>>2]=0,f=y,y=T,p=0):y=_,_=(f|0)<(y|0)?f:y,_=(p|0)<(_|0)?p:_,!((_|0)<=0)&&(d[A>>2]=y-_,d[N>>2]=f-_,d[M>>2]=p-_)}function l1(A){A=A|0;var f=0,p=0,_=0,y=0,T=0,M=0,N=0;M=A+8|0,p=d[M>>2]|0,f=(d[A>>2]|0)-p|0,N=A+4|0,p=(d[N>>2]|0)-p|0,_=cl(+((f<<1)+p|0)*.14285714285714285)|0,d[A>>2]=_,f=cl(+((p*3|0)-f|0)*.14285714285714285)|0,d[N>>2]=f,d[M>>2]=0,p=f-_|0,(_|0)<0?(T=0-_|0,d[N>>2]=p,d[M>>2]=T,d[A>>2]=0,f=p,_=0,p=T):p=0,(f|0)<0&&(_=_-f|0,d[A>>2]=_,p=p-f|0,d[M>>2]=p,d[N>>2]=0,f=0),T=_-p|0,y=f-p|0,(p|0)<0?(d[A>>2]=T,d[N>>2]=y,d[M>>2]=0,f=y,y=T,p=0):y=_,_=(f|0)<(y|0)?f:y,_=(p|0)<(_|0)?p:_,!((_|0)<=0)&&(d[A>>2]=y-_,d[N>>2]=f-_,d[M>>2]=p-_)}function Yc(A){A=A|0;var f=0,p=0,_=0,y=0,T=0,M=0,N=0;f=d[A>>2]|0,M=A+4|0,p=d[M>>2]|0,N=A+8|0,_=d[N>>2]|0,y=p+(f*3|0)|0,d[A>>2]=y,p=_+(p*3|0)|0,d[M>>2]=p,f=(_*3|0)+f|0,d[N>>2]=f,_=p-y|0,(y|0)<0?(f=f-y|0,d[M>>2]=_,d[N>>2]=f,d[A>>2]=0,p=_,_=0):_=y,(p|0)<0&&(_=_-p|0,d[A>>2]=_,f=f-p|0,d[N>>2]=f,d[M>>2]=0,p=0),T=_-f|0,y=p-f|0,(f|0)<0?(d[A>>2]=T,d[M>>2]=y,d[N>>2]=0,_=T,f=0):y=p,p=(y|0)<(_|0)?y:_,p=(f|0)<(p|0)?f:p,!((p|0)<=0)&&(d[A>>2]=_-p,d[M>>2]=y-p,d[N>>2]=f-p)}function Lu(A){A=A|0;var f=0,p=0,_=0,y=0,T=0,M=0,N=0;y=d[A>>2]|0,M=A+4|0,f=d[M>>2]|0,N=A+8|0,p=d[N>>2]|0,_=(f*3|0)+y|0,y=p+(y*3|0)|0,d[A>>2]=y,d[M>>2]=_,f=(p*3|0)+f|0,d[N>>2]=f,p=_-y|0,(y|0)<0?(f=f-y|0,d[M>>2]=p,d[N>>2]=f,d[A>>2]=0,y=0):p=_,(p|0)<0&&(y=y-p|0,d[A>>2]=y,f=f-p|0,d[N>>2]=f,d[M>>2]=0,p=0),T=y-f|0,_=p-f|0,(f|0)<0?(d[A>>2]=T,d[M>>2]=_,d[N>>2]=0,y=T,f=0):_=p,p=(_|0)<(y|0)?_:y,p=(f|0)<(p|0)?f:p,!((p|0)<=0)&&(d[A>>2]=y-p,d[M>>2]=_-p,d[N>>2]=f-p)}function u1(A,f){A=A|0,f=f|0;var p=0,_=0,y=0,T=0,M=0,N=0;(f+-1|0)>>>0>=6||(y=(d[15440+(f*12|0)>>2]|0)+(d[A>>2]|0)|0,d[A>>2]=y,N=A+4|0,_=(d[15440+(f*12|0)+4>>2]|0)+(d[N>>2]|0)|0,d[N>>2]=_,M=A+8|0,f=(d[15440+(f*12|0)+8>>2]|0)+(d[M>>2]|0)|0,d[M>>2]=f,p=_-y|0,(y|0)<0?(f=f-y|0,d[N>>2]=p,d[M>>2]=f,d[A>>2]=0,_=0):(p=_,_=y),(p|0)<0&&(_=_-p|0,d[A>>2]=_,f=f-p|0,d[M>>2]=f,d[N>>2]=0,p=0),T=_-f|0,y=p-f|0,(f|0)<0?(d[A>>2]=T,d[N>>2]=y,d[M>>2]=0,_=T,f=0):y=p,p=(y|0)<(_|0)?y:_,p=(f|0)<(p|0)?f:p,!((p|0)<=0)&&(d[A>>2]=_-p,d[N>>2]=y-p,d[M>>2]=f-p))}function c1(A){A=A|0;var f=0,p=0,_=0,y=0,T=0,M=0,N=0;y=d[A>>2]|0,M=A+4|0,f=d[M>>2]|0,N=A+8|0,p=d[N>>2]|0,_=f+y|0,y=p+y|0,d[A>>2]=y,d[M>>2]=_,f=p+f|0,d[N>>2]=f,p=_-y|0,(y|0)<0?(f=f-y|0,d[M>>2]=p,d[N>>2]=f,d[A>>2]=0,_=0):(p=_,_=y),(p|0)<0&&(_=_-p|0,d[A>>2]=_,f=f-p|0,d[N>>2]=f,d[M>>2]=0,p=0),T=_-f|0,y=p-f|0,(f|0)<0?(d[A>>2]=T,d[M>>2]=y,d[N>>2]=0,_=T,f=0):y=p,p=(y|0)<(_|0)?y:_,p=(f|0)<(p|0)?f:p,!((p|0)<=0)&&(d[A>>2]=_-p,d[M>>2]=y-p,d[N>>2]=f-p)}function EA(A){A=A|0;var f=0,p=0,_=0,y=0,T=0,M=0,N=0;f=d[A>>2]|0,M=A+4|0,_=d[M>>2]|0,N=A+8|0,p=d[N>>2]|0,y=_+f|0,d[A>>2]=y,_=p+_|0,d[M>>2]=_,f=p+f|0,d[N>>2]=f,p=_-y|0,(y|0)<0?(f=f-y|0,d[M>>2]=p,d[N>>2]=f,d[A>>2]=0,_=0):(p=_,_=y),(p|0)<0&&(_=_-p|0,d[A>>2]=_,f=f-p|0,d[N>>2]=f,d[M>>2]=0,p=0),T=_-f|0,y=p-f|0,(f|0)<0?(d[A>>2]=T,d[M>>2]=y,d[N>>2]=0,_=T,f=0):y=p,p=(y|0)<(_|0)?y:_,p=(f|0)<(p|0)?f:p,!((p|0)<=0)&&(d[A>>2]=_-p,d[M>>2]=y-p,d[N>>2]=f-p)}function Uu(A){switch(A=A|0,A|0){case 1:{A=5;break}case 5:{A=4;break}case 4:{A=6;break}case 6:{A=2;break}case 2:{A=3;break}case 3:{A=1;break}}return A|0}function rl(A){switch(A=A|0,A|0){case 1:{A=3;break}case 3:{A=2;break}case 2:{A=6;break}case 6:{A=4;break}case 4:{A=5;break}case 5:{A=1;break}}return A|0}function h1(A){A=A|0;var f=0,p=0,_=0,y=0,T=0,M=0,N=0;f=d[A>>2]|0,M=A+4|0,p=d[M>>2]|0,N=A+8|0,_=d[N>>2]|0,y=p+(f<<1)|0,d[A>>2]=y,p=_+(p<<1)|0,d[M>>2]=p,f=(_<<1)+f|0,d[N>>2]=f,_=p-y|0,(y|0)<0?(f=f-y|0,d[M>>2]=_,d[N>>2]=f,d[A>>2]=0,p=_,_=0):_=y,(p|0)<0&&(_=_-p|0,d[A>>2]=_,f=f-p|0,d[N>>2]=f,d[M>>2]=0,p=0),T=_-f|0,y=p-f|0,(f|0)<0?(d[A>>2]=T,d[M>>2]=y,d[N>>2]=0,_=T,f=0):y=p,p=(y|0)<(_|0)?y:_,p=(f|0)<(p|0)?f:p,!((p|0)<=0)&&(d[A>>2]=_-p,d[M>>2]=y-p,d[N>>2]=f-p)}function f1(A){A=A|0;var f=0,p=0,_=0,y=0,T=0,M=0,N=0;y=d[A>>2]|0,M=A+4|0,f=d[M>>2]|0,N=A+8|0,p=d[N>>2]|0,_=(f<<1)+y|0,y=p+(y<<1)|0,d[A>>2]=y,d[M>>2]=_,f=(p<<1)+f|0,d[N>>2]=f,p=_-y|0,(y|0)<0?(f=f-y|0,d[M>>2]=p,d[N>>2]=f,d[A>>2]=0,y=0):p=_,(p|0)<0&&(y=y-p|0,d[A>>2]=y,f=f-p|0,d[N>>2]=f,d[M>>2]=0,p=0),T=y-f|0,_=p-f|0,(f|0)<0?(d[A>>2]=T,d[M>>2]=_,d[N>>2]=0,y=T,f=0):_=p,p=(_|0)<(y|0)?_:y,p=(f|0)<(p|0)?f:p,!((p|0)<=0)&&(d[A>>2]=y-p,d[M>>2]=_-p,d[N>>2]=f-p)}function ip(A,f){A=A|0,f=f|0;var p=0,_=0,y=0,T=0,M=0,N=0;return M=(d[A>>2]|0)-(d[f>>2]|0)|0,N=(M|0)<0,_=(d[A+4>>2]|0)-(d[f+4>>2]|0)-(N?M:0)|0,T=(_|0)<0,y=(N?0-M|0:0)+(d[A+8>>2]|0)-(d[f+8>>2]|0)+(T?0-_|0:0)|0,A=(y|0)<0,f=A?0:y,p=(T?0:_)-(A?y:0)|0,y=(N?0:M)-(T?_:0)-(A?y:0)|0,A=(p|0)<(y|0)?p:y,A=(f|0)<(A|0)?f:A,_=(A|0)>0,f=f-(_?A:0)|0,p=p-(_?A:0)|0,A=y-(_?A:0)|0,A=(A|0)>-1?A:0-A|0,p=(p|0)>-1?p:0-p|0,f=(f|0)>-1?f:0-f|0,f=(p|0)>(f|0)?p:f,((A|0)>(f|0)?A:f)|0}function fx(A,f){A=A|0,f=f|0;var p=0;p=d[A+8>>2]|0,d[f>>2]=(d[A>>2]|0)-p,d[f+4>>2]=(d[A+4>>2]|0)-p}function rp(A,f){A=A|0,f=f|0;var p=0,_=0,y=0,T=0,M=0,N=0;return _=d[A>>2]|0,d[f>>2]=_,y=d[A+4>>2]|0,M=f+4|0,d[M>>2]=y,N=f+8|0,d[N>>2]=0,p=(y|0)<(_|0),A=p?_:y,p=p?y:_,(p|0)<0&&((p|0)==-2147483648||((A|0)>0?(2147483647-A|0)<(p|0):(-2147483648-A|0)>(p|0))||((A|0)>-1?(A|-2147483648|0)>=(p|0):(A^-2147483648|0)<(p|0)))?(f=1,f|0):(A=y-_|0,(_|0)<0?(p=0-_|0,d[M>>2]=A,d[N>>2]=p,d[f>>2]=0,_=0):(A=y,p=0),(A|0)<0&&(_=_-A|0,d[f>>2]=_,p=p-A|0,d[N>>2]=p,d[M>>2]=0,A=0),T=_-p|0,y=A-p|0,(p|0)<0?(d[f>>2]=T,d[M>>2]=y,d[N>>2]=0,A=y,y=T,p=0):y=_,_=(A|0)<(y|0)?A:y,_=(p|0)<(_|0)?p:_,(_|0)<=0?(f=0,f|0):(d[f>>2]=y-_,d[M>>2]=A-_,d[N>>2]=p-_,f=0,f|0))}function A1(A){A=A|0;var f=0,p=0,_=0,y=0;f=A+8|0,y=d[f>>2]|0,p=y-(d[A>>2]|0)|0,d[A>>2]=p,_=A+4|0,A=(d[_>>2]|0)-y|0,d[_>>2]=A,d[f>>2]=0-(A+p)}function Ax(A){A=A|0;var f=0,p=0,_=0,y=0,T=0,M=0,N=0;p=d[A>>2]|0,f=0-p|0,d[A>>2]=f,M=A+8|0,d[M>>2]=0,N=A+4|0,_=d[N>>2]|0,y=_+p|0,(p|0)>0?(d[N>>2]=y,d[M>>2]=p,d[A>>2]=0,f=0,_=y):p=0,(_|0)<0?(T=f-_|0,d[A>>2]=T,p=p-_|0,d[M>>2]=p,d[N>>2]=0,y=T-p|0,f=0-p|0,(p|0)<0?(d[A>>2]=y,d[N>>2]=f,d[M>>2]=0,_=f,p=0):(_=0,y=T)):y=f,f=(_|0)<(y|0)?_:y,f=(p|0)<(f|0)?p:f,!((f|0)<=0)&&(d[A>>2]=y-f,d[N>>2]=_-f,d[M>>2]=p-f)}function dx(A,f,p,_,y){A=A|0,f=f|0,p=p|0,_=_|0,y=y|0;var T=0,M=0,N=0,U=0,I=0,q=0,ie=0;if(ie=K,K=K+64|0,q=ie,N=ie+56|0,!(!0&(f&2013265920|0)==134217728&(!0&(_&2013265920|0)==134217728)))return y=5,K=ie,y|0;if((A|0)==(p|0)&(f|0)==(_|0))return d[y>>2]=0,y=0,K=ie,y|0;if(M=bt(A|0,f|0,52)|0,Z()|0,M=M&15,I=bt(p|0,_|0,52)|0,Z()|0,(M|0)!=(I&15|0))return y=12,K=ie,y|0;if(T=M+-1|0,M>>>0>1){Fu(A,f,T,q)|0,Fu(p,_,T,N)|0,I=q,U=d[I>>2]|0,I=d[I+4>>2]|0;e:do if((U|0)==(d[N>>2]|0)&&(I|0)==(d[N+4>>2]|0)){M=(M^15)*3|0,T=bt(A|0,f|0,M|0)|0,Z()|0,T=T&7,M=bt(p|0,_|0,M|0)|0,Z()|0,M=M&7;do if((T|0)==0|(M|0)==0)d[y>>2]=1,T=0;else if((T|0)==7)T=5;else{if((T|0)==1|(M|0)==1&&Ci(U,I)|0){T=5;break}if((d[15536+(T<<2)>>2]|0)!=(M|0)&&(d[15568+(T<<2)>>2]|0)!=(M|0))break e;d[y>>2]=1,T=0}while(!1);return y=T,K=ie,y|0}while(!1)}T=q,M=T+56|0;do d[T>>2]=0,T=T+4|0;while((T|0)<(M|0));return _e(A,f,1,q)|0,f=q,!((d[f>>2]|0)==(p|0)&&(d[f+4>>2]|0)==(_|0))&&(f=q+8|0,!((d[f>>2]|0)==(p|0)&&(d[f+4>>2]|0)==(_|0)))&&(f=q+16|0,!((d[f>>2]|0)==(p|0)&&(d[f+4>>2]|0)==(_|0)))&&(f=q+24|0,!((d[f>>2]|0)==(p|0)&&(d[f+4>>2]|0)==(_|0)))&&(f=q+32|0,!((d[f>>2]|0)==(p|0)&&(d[f+4>>2]|0)==(_|0)))&&(f=q+40|0,!((d[f>>2]|0)==(p|0)&&(d[f+4>>2]|0)==(_|0)))?(T=q+48|0,T=((d[T>>2]|0)==(p|0)?(d[T+4>>2]|0)==(_|0):0)&1):T=1,d[y>>2]=T,y=0,K=ie,y|0}function d1(A,f,p,_,y){return A=A|0,f=f|0,p=p|0,_=_|0,y=y|0,p=pi(A,f,p,_)|0,(p|0)==7?(y=11,y|0):(_=Nt(p|0,0,56)|0,f=f&-2130706433|(Z()|0)|268435456,d[y>>2]=A|_,d[y+4>>2]=f,y=0,y|0)}function px(A,f,p){return A=A|0,f=f|0,p=p|0,!0&(f&2013265920|0)==268435456?(d[p>>2]=A,d[p+4>>2]=f&-2130706433|134217728,p=0,p|0):(p=6,p|0)}function mx(A,f,p){A=A|0,f=f|0,p=p|0;var _=0,y=0,T=0;return y=K,K=K+16|0,_=y,d[_>>2]=0,!0&(f&2013265920|0)==268435456?(T=bt(A|0,f|0,56)|0,Z()|0,_=cn(A,f&-2130706433|134217728,T&7,_,p)|0,K=y,_|0):(_=6,K=y,_|0)}function p1(A,f){A=A|0,f=f|0;var p=0;switch(p=bt(A|0,f|0,56)|0,Z()|0,p&7){case 0:case 7:return p=0,p|0}return p=f&-2130706433|134217728,!(!0&(f&2013265920|0)==268435456)||!0&(f&117440512|0)==16777216&(Ci(A,p)|0)!=0?(p=0,p|0):(p=NA(A,p)|0,p|0)}function gx(A,f,p){A=A|0,f=f|0,p=p|0;var _=0,y=0,T=0,M=0;return y=K,K=K+16|0,_=y,!0&(f&2013265920|0)==268435456?(T=f&-2130706433|134217728,M=p,d[M>>2]=A,d[M+4>>2]=T,d[_>>2]=0,f=bt(A|0,f|0,56)|0,Z()|0,_=cn(A,T,f&7,_,p+8|0)|0,K=y,_|0):(_=6,K=y,_|0)}function vx(A,f,p){A=A|0,f=f|0,p=p|0;var _=0,y=0;return y=(Ci(A,f)|0)==0,f=f&-2130706433,_=p,d[_>>2]=y?A:0,d[_+4>>2]=y?f|285212672:0,_=p+8|0,d[_>>2]=A,d[_+4>>2]=f|301989888,_=p+16|0,d[_>>2]=A,d[_+4>>2]=f|318767104,_=p+24|0,d[_>>2]=A,d[_+4>>2]=f|335544320,_=p+32|0,d[_>>2]=A,d[_+4>>2]=f|352321536,p=p+40|0,d[p>>2]=A,d[p+4>>2]=f|369098752,0}function CA(A,f,p){A=A|0,f=f|0,p=p|0;var _=0,y=0,T=0,M=0;return M=K,K=K+16|0,y=M,T=f&-2130706433|134217728,!0&(f&2013265920|0)==268435456?(_=bt(A|0,f|0,56)|0,Z()|0,_=Sp(A,T,_&7)|0,(_|0)==-1?(d[p>>2]=0,T=6,K=M,T|0):(zu(A,T,y)|0&&Ut(27795,26932,282,26947),f=bt(A|0,f|0,52)|0,Z()|0,f=f&15,Ci(A,T)|0?sp(y,f,_,2,p):RA(y,f,_,2,p),T=0,K=M,T|0)):(T=6,K=M,T|0)}function _x(A,f,p){A=A|0,f=f|0,p=p|0;var _=0,y=0;_=K,K=K+16|0,y=_,yx(A,f,p,y),MA(y,p+4|0),K=_}function yx(A,f,p,_){A=A|0,f=f|0,p=p|0,_=_|0;var y=0,T=0,M=0,N=0,U=0;if(N=K,K=K+16|0,U=N,xx(A,p,U),T=+Ma(+(1-+J[U>>3]*.5)),T<1e-16){d[_>>2]=0,d[_+4>>2]=0,d[_+8>>2]=0,d[_+12>>2]=0,K=N;return}if(U=d[p>>2]|0,y=+J[15920+(U*24|0)>>3],y=+Kc(y-+Kc(+Ex(15600+(U<<4)|0,A))),Ss(f)|0?M=+Kc(y+-.3334731722518321):M=y,y=+cs(+T)*2.618033988749896,(f|0)>0){A=0;do y=y*2.6457513110645907,A=A+1|0;while((A|0)!=(f|0))}T=+li(+M)*y,J[_>>3]=T,M=+Fn(+M)*y,J[_+8>>3]=M,K=N}function xx(A,f,p){A=A|0,f=f|0,p=p|0;var _=0,y=0,T=0;if(T=K,K=K+32|0,y=T,Yu(A,y),d[f>>2]=0,J[p>>3]=5,_=+ar(16400,y),_<+J[p>>3]&&(d[f>>2]=0,J[p>>3]=_),_=+ar(16424,y),_<+J[p>>3]&&(d[f>>2]=1,J[p>>3]=_),_=+ar(16448,y),_<+J[p>>3]&&(d[f>>2]=2,J[p>>3]=_),_=+ar(16472,y),_<+J[p>>3]&&(d[f>>2]=3,J[p>>3]=_),_=+ar(16496,y),_<+J[p>>3]&&(d[f>>2]=4,J[p>>3]=_),_=+ar(16520,y),_<+J[p>>3]&&(d[f>>2]=5,J[p>>3]=_),_=+ar(16544,y),_<+J[p>>3]&&(d[f>>2]=6,J[p>>3]=_),_=+ar(16568,y),_<+J[p>>3]&&(d[f>>2]=7,J[p>>3]=_),_=+ar(16592,y),_<+J[p>>3]&&(d[f>>2]=8,J[p>>3]=_),_=+ar(16616,y),_<+J[p>>3]&&(d[f>>2]=9,J[p>>3]=_),_=+ar(16640,y),_<+J[p>>3]&&(d[f>>2]=10,J[p>>3]=_),_=+ar(16664,y),_<+J[p>>3]&&(d[f>>2]=11,J[p>>3]=_),_=+ar(16688,y),_<+J[p>>3]&&(d[f>>2]=12,J[p>>3]=_),_=+ar(16712,y),_<+J[p>>3]&&(d[f>>2]=13,J[p>>3]=_),_=+ar(16736,y),_<+J[p>>3]&&(d[f>>2]=14,J[p>>3]=_),_=+ar(16760,y),_<+J[p>>3]&&(d[f>>2]=15,J[p>>3]=_),_=+ar(16784,y),_<+J[p>>3]&&(d[f>>2]=16,J[p>>3]=_),_=+ar(16808,y),_<+J[p>>3]&&(d[f>>2]=17,J[p>>3]=_),_=+ar(16832,y),_<+J[p>>3]&&(d[f>>2]=18,J[p>>3]=_),_=+ar(16856,y),!(_<+J[p>>3])){K=T;return}d[f>>2]=19,J[p>>3]=_,K=T}function Bu(A,f,p,_,y){A=A|0,f=f|0,p=p|0,_=_|0,y=y|0;var T=0,M=0,N=0;if(T=+zl(A),T<1e-16){f=15600+(f<<4)|0,d[y>>2]=d[f>>2],d[y+4>>2]=d[f+4>>2],d[y+8>>2]=d[f+8>>2],d[y+12>>2]=d[f+12>>2];return}if(M=+Oe(+ +J[A+8>>3],+ +J[A>>3]),(p|0)>0){A=0;do T=T*.37796447300922725,A=A+1|0;while((A|0)!=(p|0))}N=T*.3333333333333333,_?(p=(Ss(p)|0)==0,T=+ae(+((p?N:N*.37796447300922725)*.381966011250105))):(T=+ae(+(T*.381966011250105)),Ss(p)|0&&(M=+Kc(M+.3334731722518321))),Cx(15600+(f<<4)|0,+Kc(+J[15920+(f*24|0)>>3]-M),T,y)}function of(A,f,p){A=A|0,f=f|0,p=p|0;var _=0,y=0;_=K,K=K+16|0,y=_,Du(A+4|0,y),Bu(y,d[A>>2]|0,f,0,p),K=_}function sp(A,f,p,_,y){A=A|0,f=f|0,p=p|0,_=_|0,y=y|0;var T=0,M=0,N=0,U=0,I=0,q=0,ie=0,pe=0,Ae=0,me=0,Ce=0,Be=0,Xe=0,qe=0,ke=0,Re=0,Pt=0,rn=0,en=0,Un=0,En=0,Qn=0,Tn=0,on=0,Lt=0,vn=0,ii=0,wn=0;if(vn=K,K=K+272|0,T=vn+256|0,qe=vn+240|0,Tn=vn,on=vn+224|0,Lt=vn+208|0,ke=vn+176|0,Re=vn+160|0,Pt=vn+192|0,rn=vn+144|0,en=vn+128|0,Un=vn+112|0,En=vn+96|0,Qn=vn+80|0,d[T>>2]=f,d[qe>>2]=d[A>>2],d[qe+4>>2]=d[A+4>>2],d[qe+8>>2]=d[A+8>>2],d[qe+12>>2]=d[A+12>>2],ap(qe,T,Tn),d[y>>2]=0,qe=_+p+((_|0)==5&1)|0,(qe|0)<=(p|0)){K=vn;return}U=d[T>>2]|0,I=on+4|0,q=ke+4|0,ie=p+5|0,pe=16880+(U<<2)|0,Ae=16960+(U<<2)|0,me=en+8|0,Ce=Un+8|0,Be=En+8|0,Xe=Lt+4|0,N=p;e:for(;;){M=Tn+(((N|0)%5|0)<<4)|0,d[Lt>>2]=d[M>>2],d[Lt+4>>2]=d[M+4>>2],d[Lt+8>>2]=d[M+8>>2],d[Lt+12>>2]=d[M+12>>2];do;while((Ou(Lt,U,0,1)|0)==2);if((N|0)>(p|0)&(Ss(f)|0)!=0){if(d[ke>>2]=d[Lt>>2],d[ke+4>>2]=d[Lt+4>>2],d[ke+8>>2]=d[Lt+8>>2],d[ke+12>>2]=d[Lt+12>>2],Du(I,Re),_=d[ke>>2]|0,T=d[17040+(_*80|0)+(d[on>>2]<<2)>>2]|0,d[ke>>2]=d[18640+(_*80|0)+(T*20|0)>>2],M=d[18640+(_*80|0)+(T*20|0)+16>>2]|0,(M|0)>0){A=0;do c1(q),A=A+1|0;while((A|0)<(M|0))}switch(M=18640+(_*80|0)+(T*20|0)+4|0,d[Pt>>2]=d[M>>2],d[Pt+4>>2]=d[M+4>>2],d[Pt+8>>2]=d[M+8>>2],Xc(Pt,(d[pe>>2]|0)*3|0),hs(q,Pt,q),Lr(q),Du(q,rn),ii=+(d[Ae>>2]|0),J[en>>3]=ii*3,J[me>>3]=0,wn=ii*-1.5,J[Un>>3]=wn,J[Ce>>3]=ii*2.598076211353316,J[En>>3]=wn,J[Be>>3]=ii*-2.598076211353316,d[17040+((d[ke>>2]|0)*80|0)+(d[Lt>>2]<<2)>>2]|0){case 1:{A=Un,_=en;break}case 3:{A=En,_=Un;break}case 2:{A=en,_=En;break}default:{A=12;break e}}xp(Re,rn,_,A,Qn),Bu(Qn,d[ke>>2]|0,U,1,y+8+(d[y>>2]<<4)|0),d[y>>2]=(d[y>>2]|0)+1}if((N|0)<(ie|0)&&(Du(Xe,ke),Bu(ke,d[Lt>>2]|0,U,1,y+8+(d[y>>2]<<4)|0),d[y>>2]=(d[y>>2]|0)+1),d[on>>2]=d[Lt>>2],d[on+4>>2]=d[Lt+4>>2],d[on+8>>2]=d[Lt+8>>2],d[on+12>>2]=d[Lt+12>>2],N=N+1|0,(N|0)>=(qe|0)){A=3;break}}if((A|0)==3){K=vn;return}else(A|0)==12&&Ut(26970,27017,572,27027)}function ap(A,f,p){A=A|0,f=f|0,p=p|0;var _=0,y=0,T=0,M=0,N=0,U=0;U=K,K=K+128|0,_=U+64|0,y=U,T=_,M=20240,N=T+60|0;do d[T>>2]=d[M>>2],T=T+4|0,M=M+4|0;while((T|0)<(N|0));T=y,M=20304,N=T+60|0;do d[T>>2]=d[M>>2],T=T+4|0,M=M+4|0;while((T|0)<(N|0));N=(Ss(d[f>>2]|0)|0)==0,_=N?_:y,y=A+4|0,h1(y),f1(y),Ss(d[f>>2]|0)|0&&(Lu(y),d[f>>2]=(d[f>>2]|0)+1),d[p>>2]=d[A>>2],f=p+4|0,hs(y,_,f),Lr(f),d[p+16>>2]=d[A>>2],f=p+20|0,hs(y,_+12|0,f),Lr(f),d[p+32>>2]=d[A>>2],f=p+36|0,hs(y,_+24|0,f),Lr(f),d[p+48>>2]=d[A>>2],f=p+52|0,hs(y,_+36|0,f),Lr(f),d[p+64>>2]=d[A>>2],p=p+68|0,hs(y,_+48|0,p),Lr(p),K=U}function Ou(A,f,p,_){A=A|0,f=f|0,p=p|0,_=_|0;var y=0,T=0,M=0,N=0,U=0,I=0,q=0,ie=0,pe=0,Ae=0,me=0;if(me=K,K=K+32|0,pe=me+12|0,N=me,Ae=A+4|0,ie=d[16960+(f<<2)>>2]|0,q=(_|0)!=0,ie=q?ie*3|0:ie,y=d[Ae>>2]|0,I=A+8|0,M=d[I>>2]|0,q){if(T=A+12|0,_=d[T>>2]|0,y=M+y+_|0,(y|0)==(ie|0))return Ae=1,K=me,Ae|0;U=T}else U=A+12|0,_=d[U>>2]|0,y=M+y+_|0;if((y|0)<=(ie|0))return Ae=0,K=me,Ae|0;do if((_|0)>0){if(_=d[A>>2]|0,(M|0)>0){T=18640+(_*80|0)+60|0,_=A;break}_=18640+(_*80|0)+40|0,p?(Nu(pe,ie,0,0),af(Ae,pe,N),EA(N),hs(N,pe,Ae),T=_,_=A):(T=_,_=A)}else T=18640+((d[A>>2]|0)*80|0)+20|0,_=A;while(!1);if(d[_>>2]=d[T>>2],y=T+16|0,(d[y>>2]|0)>0){_=0;do c1(Ae),_=_+1|0;while((_|0)<(d[y>>2]|0))}return A=T+4|0,d[pe>>2]=d[A>>2],d[pe+4>>2]=d[A+4>>2],d[pe+8>>2]=d[A+8>>2],f=d[16880+(f<<2)>>2]|0,Xc(pe,q?f*3|0:f),hs(Ae,pe,Ae),Lr(Ae),q?_=((d[I>>2]|0)+(d[Ae>>2]|0)+(d[U>>2]|0)|0)==(ie|0)?1:2:_=2,Ae=_,K=me,Ae|0}function m1(A,f){A=A|0,f=f|0;var p=0;do p=Ou(A,f,0,1)|0;while((p|0)==2);return p|0}function RA(A,f,p,_,y){A=A|0,f=f|0,p=p|0,_=_|0,y=y|0;var T=0,M=0,N=0,U=0,I=0,q=0,ie=0,pe=0,Ae=0,me=0,Ce=0,Be=0,Xe=0,qe=0,ke=0,Re=0,Pt=0,rn=0,en=0,Un=0,En=0,Qn=0,Tn=0;if(En=K,K=K+240|0,T=En+224|0,Pt=En+208|0,rn=En,en=En+192|0,Un=En+176|0,Be=En+160|0,Xe=En+144|0,qe=En+128|0,ke=En+112|0,Re=En+96|0,d[T>>2]=f,d[Pt>>2]=d[A>>2],d[Pt+4>>2]=d[A+4>>2],d[Pt+8>>2]=d[A+8>>2],d[Pt+12>>2]=d[A+12>>2],op(Pt,T,rn),d[y>>2]=0,Ce=_+p+((_|0)==6&1)|0,(Ce|0)<=(p|0)){K=En;return}U=d[T>>2]|0,I=p+6|0,q=16960+(U<<2)|0,ie=Xe+8|0,pe=qe+8|0,Ae=ke+8|0,me=en+4|0,M=0,N=p,_=-1;e:for(;;){if(T=(N|0)%6|0,A=rn+(T<<4)|0,d[en>>2]=d[A>>2],d[en+4>>2]=d[A+4>>2],d[en+8>>2]=d[A+8>>2],d[en+12>>2]=d[A+12>>2],A=M,M=Ou(en,U,0,1)|0,(N|0)>(p|0)&(Ss(f)|0)!=0&&(A|0)!=1&&(d[en>>2]|0)!=(_|0)){switch(Du(rn+(((T+5|0)%6|0)<<4)+4|0,Un),Du(rn+(T<<4)+4|0,Be),Qn=+(d[q>>2]|0),J[Xe>>3]=Qn*3,J[ie>>3]=0,Tn=Qn*-1.5,J[qe>>3]=Tn,J[pe>>3]=Qn*2.598076211353316,J[ke>>3]=Tn,J[Ae>>3]=Qn*-2.598076211353316,T=d[Pt>>2]|0,d[17040+(T*80|0)+(((_|0)==(T|0)?d[en>>2]|0:_)<<2)>>2]|0){case 1:{A=qe,_=Xe;break}case 3:{A=ke,_=qe;break}case 2:{A=Xe,_=ke;break}default:{A=8;break e}}xp(Un,Be,_,A,Re),!(bp(Un,Re)|0)&&!(bp(Be,Re)|0)&&(Bu(Re,d[Pt>>2]|0,U,1,y+8+(d[y>>2]<<4)|0),d[y>>2]=(d[y>>2]|0)+1)}if((N|0)<(I|0)&&(Du(me,Un),Bu(Un,d[en>>2]|0,U,1,y+8+(d[y>>2]<<4)|0),d[y>>2]=(d[y>>2]|0)+1),N=N+1|0,(N|0)>=(Ce|0)){A=3;break}else _=d[en>>2]|0}if((A|0)==3){K=En;return}else(A|0)==8&&Ut(27054,27017,737,27099)}function op(A,f,p){A=A|0,f=f|0,p=p|0;var _=0,y=0,T=0,M=0,N=0,U=0;U=K,K=K+160|0,_=U+80|0,y=U,T=_,M=20368,N=T+72|0;do d[T>>2]=d[M>>2],T=T+4|0,M=M+4|0;while((T|0)<(N|0));T=y,M=20448,N=T+72|0;do d[T>>2]=d[M>>2],T=T+4|0,M=M+4|0;while((T|0)<(N|0));N=(Ss(d[f>>2]|0)|0)==0,_=N?_:y,y=A+4|0,h1(y),f1(y),Ss(d[f>>2]|0)|0&&(Lu(y),d[f>>2]=(d[f>>2]|0)+1),d[p>>2]=d[A>>2],f=p+4|0,hs(y,_,f),Lr(f),d[p+16>>2]=d[A>>2],f=p+20|0,hs(y,_+12|0,f),Lr(f),d[p+32>>2]=d[A>>2],f=p+36|0,hs(y,_+24|0,f),Lr(f),d[p+48>>2]=d[A>>2],f=p+52|0,hs(y,_+36|0,f),Lr(f),d[p+64>>2]=d[A>>2],f=p+68|0,hs(y,_+48|0,f),Lr(f),d[p+80>>2]=d[A>>2],p=p+84|0,hs(y,_+60|0,p),Lr(p),K=U}function Qc(A,f){return A=A|0,f=f|0,f=bt(A|0,f|0,52)|0,Z()|0,f&15|0}function g1(A,f){return A=A|0,f=f|0,f=bt(A|0,f|0,45)|0,Z()|0,f&127|0}function bx(A,f,p,_){return A=A|0,f=f|0,p=p|0,_=_|0,(p+-1|0)>>>0>14?(_=4,_|0):(p=bt(A|0,f|0,(15-p|0)*3|0)|0,Z()|0,d[_>>2]=p&7,_=0,_|0)}function Sx(A,f,p,_){A=A|0,f=f|0,p=p|0,_=_|0;var y=0,T=0,M=0,N=0,U=0,I=0;if(A>>>0>15)return _=4,_|0;if(f>>>0>121)return _=17,_|0;M=Nt(A|0,0,52)|0,y=Z()|0,N=Nt(f|0,0,45)|0,y=y|(Z()|0)|134225919;e:do if((A|0)>=1){for(N=1,M=(st[20528+f>>0]|0)!=0,T=-1;;){if(f=d[p+(N+-1<<2)>>2]|0,f>>>0>6){y=18,f=10;break}if(!((f|0)==0|M^1))if((f|0)==1){y=19,f=10;break}else M=0;if(I=(15-N|0)*3|0,U=Nt(7,0,I|0)|0,y=y&~(Z()|0),f=Nt(f|0,((f|0)<0)<<31>>31|0,I|0)|0,T=f|T&~U,y=Z()|0|y,(N|0)<(A|0))N=N+1|0;else break e}if((f|0)==10)return y|0}else T=-1;while(!1);return I=_,d[I>>2]=T,d[I+4>>2]=y,I=0,I|0}function NA(A,f){A=A|0,f=f|0;var p=0,_=0,y=0,T=0,M=0;return!(!0&(f&-16777216|0)==134217728)||(_=bt(A|0,f|0,52)|0,Z()|0,_=_&15,p=bt(A|0,f|0,45)|0,Z()|0,p=p&127,p>>>0>121)?(A=0,A|0):(M=(_^15)*3|0,y=bt(A|0,f|0,M|0)|0,M=Nt(y|0,Z()|0,M|0)|0,y=Z()|0,T=Ur(-1227133514,-1171,M|0,y|0)|0,!((M&613566756&T|0)==0&(y&4681&(Z()|0)|0)==0)||(M=(_*3|0)+19|0,T=Nt(~A|0,~f|0,M|0)|0,M=bt(T|0,Z()|0,M|0)|0,!((_|0)==15|(M|0)==0&(Z()|0)==0))?(M=0,M|0):!(st[20528+p>>0]|0)||(f=f&8191,(A|0)==0&(f|0)==0)?(M=1,M|0):(M=ff(A|0,f|0)|0,Z()|0,((63-M|0)%3|0|0)!=0|0))}function v1(A,f){A=A|0,f=f|0;var p=0,_=0,y=0,T=0,M=0;return!0&(f&-16777216|0)==134217728&&(_=bt(A|0,f|0,52)|0,Z()|0,_=_&15,p=bt(A|0,f|0,45)|0,Z()|0,p=p&127,p>>>0<=121)&&(M=(_^15)*3|0,y=bt(A|0,f|0,M|0)|0,M=Nt(y|0,Z()|0,M|0)|0,y=Z()|0,T=Ur(-1227133514,-1171,M|0,y|0)|0,(M&613566756&T|0)==0&(y&4681&(Z()|0)|0)==0)&&(M=(_*3|0)+19|0,T=Nt(~A|0,~f|0,M|0)|0,M=bt(T|0,Z()|0,M|0)|0,(_|0)==15|(M|0)==0&(Z()|0)==0)&&(!(st[20528+p>>0]|0)||(p=f&8191,(A|0)==0&(p|0)==0)||(M=ff(A|0,p|0)|0,Z()|0,(63-M|0)%3|0|0))||p1(A,f)|0?(M=1,M|0):(M=(ul(A,f)|0)!=0&1,M|0)}function Iu(A,f,p,_){A=A|0,f=f|0,p=p|0,_=_|0;var y=0,T=0,M=0,N=0;if(y=Nt(f|0,0,52)|0,T=Z()|0,p=Nt(p|0,0,45)|0,p=T|(Z()|0)|134225919,(f|0)<1){T=-1,_=p,f=A,d[f>>2]=T,A=A+4|0,d[A>>2]=_;return}for(T=1,y=-1;M=(15-T|0)*3|0,N=Nt(7,0,M|0)|0,p=p&~(Z()|0),M=Nt(_|0,0,M|0)|0,y=y&~N|M,p=p|(Z()|0),(T|0)!=(f|0);)T=T+1|0;N=A,M=N,d[M>>2]=y,N=N+4|0,d[N>>2]=p}function Fu(A,f,p,_){A=A|0,f=f|0,p=p|0,_=_|0;var y=0,T=0;if(T=bt(A|0,f|0,52)|0,Z()|0,T=T&15,p>>>0>15)return _=4,_|0;if((T|0)<(p|0))return _=12,_|0;if((T|0)==(p|0))return d[_>>2]=A,d[_+4>>2]=f,_=0,_|0;if(y=Nt(p|0,0,52)|0,y=y|A,A=Z()|0|f&-15728641,(T|0)>(p|0))do f=Nt(7,0,(14-p|0)*3|0)|0,p=p+1|0,y=f|y,A=Z()|0|A;while((p|0)<(T|0));return d[_>>2]=y,d[_+4>>2]=A,_=0,_|0}function lf(A,f,p,_){A=A|0,f=f|0,p=p|0,_=_|0;var y=0,T=0,M=0;if(T=bt(A|0,f|0,52)|0,Z()|0,T=T&15,!((p|0)<16&(T|0)<=(p|0)))return _=4,_|0;y=p-T|0,p=bt(A|0,f|0,45)|0,Z()|0;e:do if(!(Bi(p&127)|0))p=Bo(7,0,y,((y|0)<0)<<31>>31)|0,y=Z()|0;else{t:do if(T|0){for(p=1;M=Nt(7,0,(15-p|0)*3|0)|0,!!((M&A|0)==0&((Z()|0)&f|0)==0);)if(p>>>0>>0)p=p+1|0;else break t;p=Bo(7,0,y,((y|0)<0)<<31>>31)|0,y=Z()|0;break e}while(!1);p=Bo(7,0,y,((y|0)<0)<<31>>31)|0,p=fr(p|0,Z()|0,5,0)|0,p=Yt(p|0,Z()|0,-5,-1)|0,p=ko(p|0,Z()|0,6,0)|0,p=Yt(p|0,Z()|0,1,0)|0,y=Z()|0}while(!1);return M=_,d[M>>2]=p,d[M+4>>2]=y,M=0,M|0}function Ci(A,f){A=A|0,f=f|0;var p=0,_=0,y=0;if(y=bt(A|0,f|0,45)|0,Z()|0,!(Bi(y&127)|0))return y=0,y|0;y=bt(A|0,f|0,52)|0,Z()|0,y=y&15;e:do if(!y)p=0;else for(_=1;;){if(p=bt(A|0,f|0,(15-_|0)*3|0)|0,Z()|0,p=p&7,p|0)break e;if(_>>>0>>0)_=_+1|0;else{p=0;break}}while(!1);return y=(p|0)==0&1,y|0}function _1(A,f,p,_){A=A|0,f=f|0,p=p|0,_=_|0;var y=0,T=0,M=0,N=0;if(M=K,K=K+16|0,T=M,sl(T,A,f,p),f=T,A=d[f>>2]|0,f=d[f+4>>2]|0,(A|0)==0&(f|0)==0)return K=M,0;y=0,p=0;do N=_+(y<<3)|0,d[N>>2]=A,d[N+4>>2]=f,y=Yt(y|0,p|0,1,0)|0,p=Z()|0,uf(T),N=T,A=d[N>>2]|0,f=d[N+4>>2]|0;while(!((A|0)==0&(f|0)==0));return K=M,0}function lp(A,f,p,_){return A=A|0,f=f|0,p=p|0,_=_|0,(_|0)<(p|0)?(p=f,_=A,ht(p|0),_|0):(p=Nt(-1,-1,((_-p|0)*3|0)+3|0)|0,_=Nt(~p|0,~(Z()|0)|0,(15-_|0)*3|0)|0,p=~(Z()|0)&f,_=~_&A,ht(p|0),_|0)}function DA(A,f,p,_){A=A|0,f=f|0,p=p|0,_=_|0;var y=0;return y=bt(A|0,f|0,52)|0,Z()|0,y=y&15,(p|0)<16&(y|0)<=(p|0)?((y|0)<(p|0)&&(y=Nt(-1,-1,((p+-1-y|0)*3|0)+3|0)|0,y=Nt(~y|0,~(Z()|0)|0,(15-p|0)*3|0)|0,f=~(Z()|0)&f,A=~y&A),y=Nt(p|0,0,52)|0,p=f&-15728641|(Z()|0),d[_>>2]=A|y,d[_+4>>2]=p,_=0,_|0):(_=4,_|0)}function up(A,f,p,_){A=A|0,f=f|0,p=p|0,_=_|0;var y=0,T=0,M=0,N=0,U=0,I=0,q=0,ie=0,pe=0,Ae=0,me=0,Ce=0,Be=0,Xe=0,qe=0,ke=0,Re=0,Pt=0,rn=0,en=0,Un=0,En=0,Qn=0,Tn=0,on=0,Lt=0;if((p|0)==0&(_|0)==0)return Lt=0,Lt|0;if(y=A,T=d[y>>2]|0,y=d[y+4>>2]|0,!0&(y&15728640|0)==0){if(!((_|0)>0|(_|0)==0&p>>>0>0)||(Lt=f,d[Lt>>2]=T,d[Lt+4>>2]=y,(p|0)==1&(_|0)==0))return Lt=0,Lt|0;y=1,T=0;do Tn=A+(y<<3)|0,on=d[Tn+4>>2]|0,Lt=f+(y<<3)|0,d[Lt>>2]=d[Tn>>2],d[Lt+4>>2]=on,y=Yt(y|0,T|0,1,0)|0,T=Z()|0;while((T|0)<(_|0)|(T|0)==(_|0)&y>>>0

>>0);return y=0,y|0}if(Qn=p<<3,on=Fo(Qn)|0,!on)return Lt=13,Lt|0;if(Gl(on|0,A|0,Qn|0)|0,Tn=Ks(p,8)|0,!Tn)return An(on),Lt=13,Lt|0;e:for(;;){y=on,I=d[y>>2]|0,y=d[y+4>>2]|0,Un=bt(I|0,y|0,52)|0,Z()|0,Un=Un&15,En=Un+-1|0,en=(Un|0)!=0,rn=(_|0)>0|(_|0)==0&p>>>0>0;t:do if(en&rn){if(qe=Nt(En|0,0,52)|0,ke=Z()|0,En>>>0>15){if(!((I|0)==0&(y|0)==0)){Lt=16;break e}for(T=0,A=0;;){if(T=Yt(T|0,A|0,1,0)|0,A=Z()|0,!((A|0)<(_|0)|(A|0)==(_|0)&T>>>0

>>0))break t;if(M=on+(T<<3)|0,Pt=d[M>>2]|0,M=d[M+4>>2]|0,!((Pt|0)==0&(M|0)==0)){y=M,Lt=16;break e}}}for(N=I,A=y,T=0,M=0;;){if(!((N|0)==0&(A|0)==0)){if(!(!0&(A&117440512|0)==0)){Lt=21;break e}if(q=bt(N|0,A|0,52)|0,Z()|0,q=q&15,(q|0)<(En|0)){y=12,Lt=27;break e}if((q|0)!=(En|0)&&(N=N|qe,A=A&-15728641|ke,q>>>0>=Un>>>0)){U=En;do Pt=Nt(7,0,(14-U|0)*3|0)|0,U=U+1|0,N=Pt|N,A=Z()|0|A;while(U>>>0>>0)}if(pe=ec(N|0,A|0,p|0,_|0)|0,Ae=Z()|0,U=Tn+(pe<<3)|0,q=U,ie=d[q>>2]|0,q=d[q+4>>2]|0,!((ie|0)==0&(q|0)==0)){Be=0,Xe=0;do{if((Be|0)>(_|0)|(Be|0)==(_|0)&Xe>>>0>p>>>0){Lt=31;break e}if((ie|0)==(N|0)&(q&-117440513|0)==(A|0)){me=bt(ie|0,q|0,56)|0,Z()|0,me=me&7,Ce=me+1|0,Pt=bt(ie|0,q|0,45)|0,Z()|0;n:do if(!(Bi(Pt&127)|0))q=7;else{if(ie=bt(ie|0,q|0,52)|0,Z()|0,ie=ie&15,!ie){q=6;break}for(q=1;;){if(Pt=Nt(7,0,(15-q|0)*3|0)|0,!((Pt&N|0)==0&((Z()|0)&A|0)==0)){q=7;break n}if(q>>>0>>0)q=q+1|0;else{q=6;break}}}while(!1);if((me+2|0)>>>0>q>>>0){Lt=41;break e}Pt=Nt(Ce|0,0,56)|0,A=Z()|0|A&-117440513,Re=U,d[Re>>2]=0,d[Re+4>>2]=0,N=Pt|N}else pe=Yt(pe|0,Ae|0,1,0)|0,pe=th(pe|0,Z()|0,p|0,_|0)|0,Ae=Z()|0;Xe=Yt(Xe|0,Be|0,1,0)|0,Be=Z()|0,U=Tn+(pe<<3)|0,q=U,ie=d[q>>2]|0,q=d[q+4>>2]|0}while(!((ie|0)==0&(q|0)==0))}Pt=U,d[Pt>>2]=N,d[Pt+4>>2]=A}if(T=Yt(T|0,M|0,1,0)|0,M=Z()|0,!((M|0)<(_|0)|(M|0)==(_|0)&T>>>0

>>0))break t;A=on+(T<<3)|0,N=d[A>>2]|0,A=d[A+4>>2]|0}}while(!1);if(Pt=Yt(p|0,_|0,5,0)|0,Re=Z()|0,Re>>>0<0|(Re|0)==0&Pt>>>0<11){Lt=85;break}if(Pt=ko(p|0,_|0,6,0)|0,Z()|0,Pt=Ks(Pt,8)|0,!Pt){Lt=48;break}do if(rn){for(Ce=0,A=0,me=0,Be=0;;){if(q=Tn+(Ce<<3)|0,M=q,T=d[M>>2]|0,M=d[M+4>>2]|0,(T|0)==0&(M|0)==0)Re=me;else{ie=bt(T|0,M|0,56)|0,Z()|0,ie=ie&7,N=ie+1|0,pe=M&-117440513,Re=bt(T|0,M|0,45)|0,Z()|0;t:do if(Bi(Re&127)|0){if(Ae=bt(T|0,M|0,52)|0,Z()|0,Ae=Ae&15,Ae|0)for(U=1;;){if(Re=Nt(7,0,(15-U|0)*3|0)|0,!((T&Re|0)==0&(pe&(Z()|0)|0)==0))break t;if(U>>>0>>0)U=U+1|0;else break}M=Nt(N|0,0,56)|0,T=M|T,M=Z()|0|pe,N=q,d[N>>2]=T,d[N+4>>2]=M,N=ie+2|0}while(!1);(N|0)==7?(Re=Pt+(A<<3)|0,d[Re>>2]=T,d[Re+4>>2]=M&-117440513,A=Yt(A|0,me|0,1,0)|0,Re=Z()|0):Re=me}if(Ce=Yt(Ce|0,Be|0,1,0)|0,Be=Z()|0,(Be|0)<(_|0)|(Be|0)==(_|0)&Ce>>>0

>>0)me=Re;else break}if(rn){if(Xe=En>>>0>15,qe=Nt(En|0,0,52)|0,ke=Z()|0,!en){for(T=0,U=0,N=0,M=0;(I|0)==0&(y|0)==0||(En=f+(T<<3)|0,d[En>>2]=I,d[En+4>>2]=y,T=Yt(T|0,U|0,1,0)|0,U=Z()|0),N=Yt(N|0,M|0,1,0)|0,M=Z()|0,!!((M|0)<(_|0)|(M|0)==(_|0)&N>>>0

>>0);)y=on+(N<<3)|0,I=d[y>>2]|0,y=d[y+4>>2]|0;y=Re;break}for(T=0,U=0,M=0,N=0;;){do if(!((I|0)==0&(y|0)==0)){if(Ae=bt(I|0,y|0,52)|0,Z()|0,Ae=Ae&15,Xe|(Ae|0)<(En|0)){Lt=80;break e}if((Ae|0)!=(En|0)){if(q=I|qe,ie=y&-15728641|ke,Ae>>>0>=Un>>>0){pe=En;do en=Nt(7,0,(14-pe|0)*3|0)|0,pe=pe+1|0,q=en|q,ie=Z()|0|ie;while(pe>>>0>>0)}}else q=I,ie=y;me=ec(q|0,ie|0,p|0,_|0)|0,pe=0,Ae=0,Be=Z()|0;do{if((pe|0)>(_|0)|(pe|0)==(_|0)&Ae>>>0>p>>>0){Lt=81;break e}if(en=Tn+(me<<3)|0,Ce=d[en+4>>2]|0,(Ce&-117440513|0)==(ie|0)&&(d[en>>2]|0)==(q|0)){Lt=65;break}en=Yt(me|0,Be|0,1,0)|0,me=th(en|0,Z()|0,p|0,_|0)|0,Be=Z()|0,Ae=Yt(Ae|0,pe|0,1,0)|0,pe=Z()|0,en=Tn+(me<<3)|0}while(!((d[en>>2]|0)==(q|0)&&(d[en+4>>2]|0)==(ie|0)));if((Lt|0)==65&&(Lt=0,!0&(Ce&117440512|0)==100663296))break;en=f+(T<<3)|0,d[en>>2]=I,d[en+4>>2]=y,T=Yt(T|0,U|0,1,0)|0,U=Z()|0}while(!1);if(M=Yt(M|0,N|0,1,0)|0,N=Z()|0,!((N|0)<(_|0)|(N|0)==(_|0)&M>>>0

>>0))break;y=on+(M<<3)|0,I=d[y>>2]|0,y=d[y+4>>2]|0}y=Re}else T=0,y=Re}else T=0,A=0,y=0;while(!1);if(uo(Tn|0,0,Qn|0)|0,Gl(on|0,Pt|0,A<<3|0)|0,An(Pt),(A|0)==0&(y|0)==0){Lt=89;break}else f=f+(T<<3)|0,_=y,p=A}if((Lt|0)==16)!0&(y&117440512|0)==0?(y=4,Lt=27):Lt=21;else if((Lt|0)==31)Ut(27795,27122,620,27132);else{if((Lt|0)==41)return An(on),An(Tn),Lt=10,Lt|0;if((Lt|0)==48)return An(on),An(Tn),Lt=13,Lt|0;(Lt|0)==80?Ut(27795,27122,711,27132):(Lt|0)==81?Ut(27795,27122,723,27132):(Lt|0)==85&&(Gl(f|0,on|0,p<<3|0)|0,Lt=89)}return(Lt|0)==21?(An(on),An(Tn),Lt=5,Lt|0):(Lt|0)==27?(An(on),An(Tn),Lt=y,Lt|0):(Lt|0)==89?(An(on),An(Tn),Lt=0,Lt|0):0}function y1(A,f,p,_,y,T,M){A=A|0,f=f|0,p=p|0,_=_|0,y=y|0,T=T|0,M=M|0;var N=0,U=0,I=0,q=0,ie=0,pe=0,Ae=0,me=0,Ce=0;if(Ce=K,K=K+16|0,me=Ce,!((p|0)>0|(p|0)==0&f>>>0>0))return me=0,K=Ce,me|0;if((M|0)>=16)return me=12,K=Ce,me|0;pe=0,Ae=0,ie=0,N=0;e:for(;;){if(I=A+(pe<<3)|0,U=d[I>>2]|0,I=d[I+4>>2]|0,q=bt(U|0,I|0,52)|0,Z()|0,(q&15|0)>(M|0)){N=12,U=11;break}if(sl(me,U,I,M),q=me,I=d[q>>2]|0,q=d[q+4>>2]|0,(I|0)==0&(q|0)==0)U=ie;else{U=ie;do{if(!((N|0)<(T|0)|(N|0)==(T|0)&U>>>0>>0)){U=10;break e}ie=_+(U<<3)|0,d[ie>>2]=I,d[ie+4>>2]=q,U=Yt(U|0,N|0,1,0)|0,N=Z()|0,uf(me),ie=me,I=d[ie>>2]|0,q=d[ie+4>>2]|0}while(!((I|0)==0&(q|0)==0))}if(pe=Yt(pe|0,Ae|0,1,0)|0,Ae=Z()|0,(Ae|0)<(p|0)|(Ae|0)==(p|0)&pe>>>0>>0)ie=U;else{N=0,U=11;break}}return(U|0)==10?(me=14,K=Ce,me|0):(U|0)==11?(K=Ce,N|0):0}function x1(A,f,p,_,y){A=A|0,f=f|0,p=p|0,_=_|0,y=y|0;var T=0,M=0,N=0,U=0,I=0,q=0,ie=0,pe=0;pe=K,K=K+16|0,ie=pe;e:do if((p|0)>0|(p|0)==0&f>>>0>0){for(I=0,M=0,T=0,q=0;;){if(U=A+(I<<3)|0,N=d[U>>2]|0,U=d[U+4>>2]|0,!((N|0)==0&(U|0)==0)&&(U=(lf(N,U,_,ie)|0)==0,N=ie,M=Yt(d[N>>2]|0,d[N+4>>2]|0,M|0,T|0)|0,T=Z()|0,!U)){T=12;break}if(I=Yt(I|0,q|0,1,0)|0,q=Z()|0,!((q|0)<(p|0)|(q|0)==(p|0)&I>>>0>>0))break e}return K=pe,T|0}else M=0,T=0;while(!1);return d[y>>2]=M,d[y+4>>2]=T,y=0,K=pe,y|0}function b1(A,f){return A=A|0,f=f|0,f=bt(A|0,f|0,52)|0,Z()|0,f&1|0}function $s(A,f){A=A|0,f=f|0;var p=0,_=0,y=0;if(y=bt(A|0,f|0,52)|0,Z()|0,y=y&15,!y)return y=0,y|0;for(_=1;;){if(p=bt(A|0,f|0,(15-_|0)*3|0)|0,Z()|0,p=p&7,p|0){_=5;break}if(_>>>0>>0)_=_+1|0;else{p=0,_=5;break}}return(_|0)==5?p|0:0}function cp(A,f){A=A|0,f=f|0;var p=0,_=0,y=0,T=0,M=0,N=0,U=0;if(U=bt(A|0,f|0,52)|0,Z()|0,U=U&15,!U)return N=f,U=A,ht(N|0),U|0;for(N=1,p=0;;){T=(15-N|0)*3|0,_=Nt(7,0,T|0)|0,y=Z()|0,M=bt(A|0,f|0,T|0)|0,Z()|0,T=Nt(Uu(M&7)|0,0,T|0)|0,M=Z()|0,A=T|A&~_,f=M|f&~y;e:do if(!p)if((T&_|0)==0&(M&y|0)==0)p=0;else if(_=bt(A|0,f|0,52)|0,Z()|0,_=_&15,!_)p=1;else{p=1;t:for(;;){switch(M=bt(A|0,f|0,(15-p|0)*3|0)|0,Z()|0,M&7){case 1:break t;case 0:break;default:{p=1;break e}}if(p>>>0<_>>>0)p=p+1|0;else{p=1;break e}}for(p=1;;)if(M=(15-p|0)*3|0,y=bt(A|0,f|0,M|0)|0,Z()|0,T=Nt(7,0,M|0)|0,f=f&~(Z()|0),M=Nt(Uu(y&7)|0,0,M|0)|0,A=A&~T|M,f=f|(Z()|0),p>>>0<_>>>0)p=p+1|0;else{p=1;break}}while(!1);if(N>>>0>>0)N=N+1|0;else break}return ht(f|0),A|0}function ku(A,f){A=A|0,f=f|0;var p=0,_=0,y=0,T=0,M=0;if(_=bt(A|0,f|0,52)|0,Z()|0,_=_&15,!_)return p=f,_=A,ht(p|0),_|0;for(p=1;T=(15-p|0)*3|0,M=bt(A|0,f|0,T|0)|0,Z()|0,y=Nt(7,0,T|0)|0,f=f&~(Z()|0),T=Nt(Uu(M&7)|0,0,T|0)|0,A=T|A&~y,f=Z()|0|f,p>>>0<_>>>0;)p=p+1|0;return ht(f|0),A|0}function Tx(A,f){A=A|0,f=f|0;var p=0,_=0,y=0,T=0,M=0,N=0,U=0;if(U=bt(A|0,f|0,52)|0,Z()|0,U=U&15,!U)return N=f,U=A,ht(N|0),U|0;for(N=1,p=0;;){T=(15-N|0)*3|0,_=Nt(7,0,T|0)|0,y=Z()|0,M=bt(A|0,f|0,T|0)|0,Z()|0,T=Nt(rl(M&7)|0,0,T|0)|0,M=Z()|0,A=T|A&~_,f=M|f&~y;e:do if(!p)if((T&_|0)==0&(M&y|0)==0)p=0;else if(_=bt(A|0,f|0,52)|0,Z()|0,_=_&15,!_)p=1;else{p=1;t:for(;;){switch(M=bt(A|0,f|0,(15-p|0)*3|0)|0,Z()|0,M&7){case 1:break t;case 0:break;default:{p=1;break e}}if(p>>>0<_>>>0)p=p+1|0;else{p=1;break e}}for(p=1;;)if(y=(15-p|0)*3|0,T=Nt(7,0,y|0)|0,M=f&~(Z()|0),f=bt(A|0,f|0,y|0)|0,Z()|0,f=Nt(rl(f&7)|0,0,y|0)|0,A=A&~T|f,f=M|(Z()|0),p>>>0<_>>>0)p=p+1|0;else{p=1;break}}while(!1);if(N>>>0>>0)N=N+1|0;else break}return ht(f|0),A|0}function hp(A,f){A=A|0,f=f|0;var p=0,_=0,y=0,T=0,M=0;if(_=bt(A|0,f|0,52)|0,Z()|0,_=_&15,!_)return p=f,_=A,ht(p|0),_|0;for(p=1;M=(15-p|0)*3|0,T=Nt(7,0,M|0)|0,y=f&~(Z()|0),f=bt(A|0,f|0,M|0)|0,Z()|0,f=Nt(rl(f&7)|0,0,M|0)|0,A=f|A&~T,f=Z()|0|y,p>>>0<_>>>0;)p=p+1|0;return ht(f|0),A|0}function Aa(A,f){A=A|0,f=f|0;var p=0,_=0,y=0,T=0,M=0,N=0,U=0,I=0,q=0;if(U=K,K=K+64|0,N=U+40|0,_=U+24|0,y=U+12|0,T=U,Nt(f|0,0,52)|0,p=Z()|0|134225919,!f)return(d[A+4>>2]|0)>2||(d[A+8>>2]|0)>2||(d[A+12>>2]|0)>2?(M=0,N=0,ht(M|0),K=U,N|0):(Nt(Po(A)|0,0,45)|0,M=Z()|0|p,N=-1,ht(M|0),K=U,N|0);if(d[N>>2]=d[A>>2],d[N+4>>2]=d[A+4>>2],d[N+8>>2]=d[A+8>>2],d[N+12>>2]=d[A+12>>2],M=N+4|0,(f|0)>0)for(A=-1;d[_>>2]=d[M>>2],d[_+4>>2]=d[M+4>>2],d[_+8>>2]=d[M+8>>2],f&1?(hx(M),d[y>>2]=d[M>>2],d[y+4>>2]=d[M+4>>2],d[y+8>>2]=d[M+8>>2],Yc(y)):(l1(M),d[y>>2]=d[M>>2],d[y+4>>2]=d[M+4>>2],d[y+8>>2]=d[M+8>>2],Lu(y)),af(_,y,T),Lr(T),q=(15-f|0)*3|0,I=Nt(7,0,q|0)|0,p=p&~(Z()|0),q=Nt(Pu(T)|0,0,q|0)|0,A=q|A&~I,p=Z()|0|p,(f|0)>1;)f=f+-1|0;else A=-1;e:do if((d[M>>2]|0)<=2&&(d[N+8>>2]|0)<=2&&(d[N+12>>2]|0)<=2){if(_=Po(N)|0,f=Nt(_|0,0,45)|0,f=f|A,A=Z()|0|p&-1040385,T=ep(N)|0,!(Bi(_)|0)){if((T|0)<=0)break;for(y=0;;){if(_=bt(f|0,A|0,52)|0,Z()|0,_=_&15,_)for(p=1;q=(15-p|0)*3|0,N=bt(f|0,A|0,q|0)|0,Z()|0,I=Nt(7,0,q|0)|0,A=A&~(Z()|0),q=Nt(Uu(N&7)|0,0,q|0)|0,f=f&~I|q,A=A|(Z()|0),p>>>0<_>>>0;)p=p+1|0;if(y=y+1|0,(y|0)==(T|0))break e}}y=bt(f|0,A|0,52)|0,Z()|0,y=y&15;t:do if(y){p=1;n:for(;;){switch(q=bt(f|0,A|0,(15-p|0)*3|0)|0,Z()|0,q&7){case 1:break n;case 0:break;default:break t}if(p>>>0>>0)p=p+1|0;else break t}if(Ru(_,d[N>>2]|0)|0)for(p=1;N=(15-p|0)*3|0,I=Nt(7,0,N|0)|0,q=A&~(Z()|0),A=bt(f|0,A|0,N|0)|0,Z()|0,A=Nt(rl(A&7)|0,0,N|0)|0,f=f&~I|A,A=q|(Z()|0),p>>>0>>0;)p=p+1|0;else for(p=1;q=(15-p|0)*3|0,N=bt(f|0,A|0,q|0)|0,Z()|0,I=Nt(7,0,q|0)|0,A=A&~(Z()|0),q=Nt(Uu(N&7)|0,0,q|0)|0,f=f&~I|q,A=A|(Z()|0),p>>>0>>0;)p=p+1|0}while(!1);if((T|0)>0){p=0;do f=cp(f,A)|0,A=Z()|0,p=p+1|0;while((p|0)!=(T|0))}}else f=0,A=0;while(!1);return I=A,q=f,ht(I|0),K=U,q|0}function Ss(A){return A=A|0,(A|0)%2|0|0}function PA(A,f,p){A=A|0,f=f|0,p=p|0;var _=0,y=0;return y=K,K=K+16|0,_=y,f>>>0>15?(_=4,K=y,_|0):(d[A+4>>2]&2146435072|0)==2146435072||(d[A+8+4>>2]&2146435072|0)==2146435072?(_=3,K=y,_|0):(_x(A,f,_),f=Aa(_,f)|0,_=Z()|0,d[p>>2]=f,d[p+4>>2]=_,(f|0)==0&(_|0)==0&&Ut(27795,27122,1050,27145),_=0,K=y,_|0)}function LA(A,f,p){A=A|0,f=f|0,p=p|0;var _=0,y=0,T=0,M=0;if(y=p+4|0,T=bt(A|0,f|0,52)|0,Z()|0,T=T&15,M=bt(A|0,f|0,45)|0,Z()|0,_=(T|0)==0,Bi(M&127)|0){if(_)return M=1,M|0;_=1}else{if(_)return M=0,M|0;(d[y>>2]|0)==0&&(d[p+8>>2]|0)==0?_=(d[p+12>>2]|0)!=0&1:_=1}for(p=1;p&1?Yc(y):Lu(y),M=bt(A|0,f|0,(15-p|0)*3|0)|0,Z()|0,u1(y,M&7),p>>>0>>0;)p=p+1|0;return _|0}function zu(A,f,p){A=A|0,f=f|0,p=p|0;var _=0,y=0,T=0,M=0,N=0,U=0,I=0,q=0;if(q=K,K=K+16|0,U=q,I=bt(A|0,f|0,45)|0,Z()|0,I=I&127,I>>>0>121)return d[p>>2]=0,d[p+4>>2]=0,d[p+8>>2]=0,d[p+12>>2]=0,I=5,K=q,I|0;e:do if((Bi(I)|0)!=0&&(T=bt(A|0,f|0,52)|0,Z()|0,T=T&15,(T|0)!=0)){_=1;t:for(;;){switch(N=bt(A|0,f|0,(15-_|0)*3|0)|0,Z()|0,N&7){case 5:break t;case 0:break;default:{_=f;break e}}if(_>>>0>>0)_=_+1|0;else{_=f;break e}}for(y=1,_=f;f=(15-y|0)*3|0,M=Nt(7,0,f|0)|0,N=_&~(Z()|0),_=bt(A|0,_|0,f|0)|0,Z()|0,_=Nt(rl(_&7)|0,0,f|0)|0,A=A&~M|_,_=N|(Z()|0),y>>>0>>0;)y=y+1|0}else _=f;while(!1);if(N=7696+(I*28|0)|0,d[p>>2]=d[N>>2],d[p+4>>2]=d[N+4>>2],d[p+8>>2]=d[N+8>>2],d[p+12>>2]=d[N+12>>2],!(LA(A,_,p)|0))return I=0,K=q,I|0;if(M=p+4|0,d[U>>2]=d[M>>2],d[U+4>>2]=d[M+4>>2],d[U+8>>2]=d[M+8>>2],T=bt(A|0,_|0,52)|0,Z()|0,N=T&15,T&1?(Lu(M),T=N+1|0):T=N,!(Bi(I)|0))_=0;else{e:do if(!N)_=0;else for(f=1;;){if(y=bt(A|0,_|0,(15-f|0)*3|0)|0,Z()|0,y=y&7,y|0){_=y;break e}if(f>>>0>>0)f=f+1|0;else{_=0;break}}while(!1);_=(_|0)==4&1}if(!(Ou(p,T,_,0)|0))(T|0)!=(N|0)&&(d[M>>2]=d[U>>2],d[M+4>>2]=d[U+4>>2],d[M+8>>2]=d[U+8>>2]);else{if(Bi(I)|0)do;while((Ou(p,T,0,0)|0)!=0);(T|0)!=(N|0)&&l1(M)}return I=0,K=q,I|0}function Ol(A,f,p){A=A|0,f=f|0,p=p|0;var _=0,y=0,T=0;return T=K,K=K+16|0,_=T,y=zu(A,f,_)|0,y|0?(K=T,y|0):(y=bt(A|0,f|0,52)|0,Z()|0,of(_,y&15,p),y=0,K=T,y|0)}function Il(A,f,p){A=A|0,f=f|0,p=p|0;var _=0,y=0,T=0,M=0,N=0;if(M=K,K=K+16|0,T=M,_=zu(A,f,T)|0,_|0)return T=_,K=M,T|0;_=bt(A|0,f|0,45)|0,Z()|0,_=(Bi(_&127)|0)==0,y=bt(A|0,f|0,52)|0,Z()|0,y=y&15;e:do if(!_){if(y|0)for(_=1;;){if(N=Nt(7,0,(15-_|0)*3|0)|0,!((N&A|0)==0&((Z()|0)&f|0)==0))break e;if(_>>>0>>0)_=_+1|0;else break}return sp(T,y,0,5,p),N=0,K=M,N|0}while(!1);return RA(T,y,0,6,p),N=0,K=M,N|0}function wx(A,f,p){A=A|0,f=f|0,p=p|0;var _=0,y=0,T=0;if(y=bt(A|0,f|0,45)|0,Z()|0,!(Bi(y&127)|0))return y=2,d[p>>2]=y,0;if(y=bt(A|0,f|0,52)|0,Z()|0,y=y&15,!y)return y=5,d[p>>2]=y,0;for(_=1;;){if(T=Nt(7,0,(15-_|0)*3|0)|0,!((T&A|0)==0&((Z()|0)&f|0)==0)){_=2,A=6;break}if(_>>>0>>0)_=_+1|0;else{_=5,A=6;break}}return(A|0)==6&&(d[p>>2]=_),0}function Gu(A,f,p){A=A|0,f=f|0,p=p|0;var _=0,y=0,T=0,M=0,N=0,U=0,I=0,q=0,ie=0;ie=K,K=K+128|0,I=ie+112|0,T=ie+96|0,q=ie,y=bt(A|0,f|0,52)|0,Z()|0,N=y&15,d[I>>2]=N,M=bt(A|0,f|0,45)|0,Z()|0,M=M&127;e:do if(Bi(M)|0){if(N|0)for(_=1;;){if(U=Nt(7,0,(15-_|0)*3|0)|0,!((U&A|0)==0&((Z()|0)&f|0)==0)){y=0;break e}if(_>>>0>>0)_=_+1|0;else break}if(y&1)y=1;else return U=Nt(N+1|0,0,52)|0,q=Z()|0|f&-15728641,I=Nt(7,0,(14-N|0)*3|0)|0,q=Gu((U|A)&~I,q&~(Z()|0),p)|0,K=ie,q|0}else y=0;while(!1);if(_=zu(A,f,T)|0,!_){y?(ap(T,I,q),U=5):(op(T,I,q),U=6);e:do if(Bi(M)|0)if(!N)A=5;else for(_=1;;){if(M=Nt(7,0,(15-_|0)*3|0)|0,!((M&A|0)==0&((Z()|0)&f|0)==0)){A=2;break e}if(_>>>0>>0)_=_+1|0;else{A=5;break}}else A=2;while(!1);uo(p|0,-1,A<<2|0)|0;e:do if(y)for(T=0;;){if(M=q+(T<<4)|0,m1(M,d[I>>2]|0)|0,M=d[M>>2]|0,N=d[p>>2]|0,(N|0)==-1|(N|0)==(M|0))_=p;else{y=0;do{if(y=y+1|0,y>>>0>=A>>>0){_=1;break e}_=p+(y<<2)|0,N=d[_>>2]|0}while(!((N|0)==-1|(N|0)==(M|0)))}if(d[_>>2]=M,T=T+1|0,T>>>0>=U>>>0){_=0;break}}else for(T=0;;){if(M=q+(T<<4)|0,Ou(M,d[I>>2]|0,0,1)|0,M=d[M>>2]|0,N=d[p>>2]|0,(N|0)==-1|(N|0)==(M|0))_=p;else{y=0;do{if(y=y+1|0,y>>>0>=A>>>0){_=1;break e}_=p+(y<<2)|0,N=d[_>>2]|0}while(!((N|0)==-1|(N|0)==(M|0)))}if(d[_>>2]=M,T=T+1|0,T>>>0>=U>>>0){_=0;break}}while(!1)}return q=_,K=ie,q|0}function fp(){return 12}function qu(A,f){A=A|0,f=f|0;var p=0,_=0,y=0,T=0,M=0,N=0,U=0;if(A>>>0>15)return N=4,N|0;if(Nt(A|0,0,52)|0,N=Z()|0|134225919,!A){p=0,_=0;do Bi(_)|0&&(Nt(_|0,0,45)|0,M=N|(Z()|0),A=f+(p<<3)|0,d[A>>2]=-1,d[A+4>>2]=M,p=p+1|0),_=_+1|0;while((_|0)!=122);return p=0,p|0}p=0,M=0;do{if(Bi(M)|0){for(Nt(M|0,0,45)|0,_=1,y=-1,T=N|(Z()|0);U=Nt(7,0,(15-_|0)*3|0)|0,y=y&~U,T=T&~(Z()|0),(_|0)!=(A|0);)_=_+1|0;U=f+(p<<3)|0,d[U>>2]=y,d[U+4>>2]=T,p=p+1|0}M=M+1|0}while((M|0)!=122);return p=0,p|0}function Ap(A,f,p,_){A=A|0,f=f|0,p=p|0,_=_|0;var y=0,T=0,M=0,N=0,U=0,I=0,q=0,ie=0,pe=0,Ae=0,me=0,Ce=0,Be=0,Xe=0,qe=0;if(qe=K,K=K+16|0,Be=qe,Xe=bt(A|0,f|0,52)|0,Z()|0,Xe=Xe&15,p>>>0>15)return Xe=4,K=qe,Xe|0;if((Xe|0)<(p|0))return Xe=12,K=qe,Xe|0;if((Xe|0)!=(p|0))if(T=Nt(p|0,0,52)|0,T=T|A,N=Z()|0|f&-15728641,(Xe|0)>(p|0)){U=p;do Ce=Nt(7,0,(14-U|0)*3|0)|0,U=U+1|0,T=Ce|T,N=Z()|0|N;while((U|0)<(Xe|0));Ce=T}else Ce=T;else Ce=A,N=f;me=bt(Ce|0,N|0,45)|0,Z()|0;e:do if(Bi(me&127)|0){if(U=bt(Ce|0,N|0,52)|0,Z()|0,U=U&15,U|0)for(T=1;;){if(me=Nt(7,0,(15-T|0)*3|0)|0,!((me&Ce|0)==0&((Z()|0)&N|0)==0)){I=33;break e}if(T>>>0>>0)T=T+1|0;else break}if(me=_,d[me>>2]=0,d[me+4>>2]=0,(Xe|0)>(p|0)){for(me=f&-15728641,Ae=Xe;;){if(pe=Ae,Ae=Ae+-1|0,Ae>>>0>15|(Xe|0)<(Ae|0)){I=19;break}if((Xe|0)!=(Ae|0))if(T=Nt(Ae|0,0,52)|0,T=T|A,U=Z()|0|me,(Xe|0)<(pe|0))ie=T;else{I=Ae;do ie=Nt(7,0,(14-I|0)*3|0)|0,I=I+1|0,T=ie|T,U=Z()|0|U;while((I|0)<(Xe|0));ie=T}else ie=A,U=f;if(q=bt(ie|0,U|0,45)|0,Z()|0,!(Bi(q&127)|0))T=0;else{q=bt(ie|0,U|0,52)|0,Z()|0,q=q&15;t:do if(!q)T=0;else for(I=1;;){if(T=bt(ie|0,U|0,(15-I|0)*3|0)|0,Z()|0,T=T&7,T|0)break t;if(I>>>0>>0)I=I+1|0;else{T=0;break}}while(!1);T=(T|0)==0&1}if(U=bt(A|0,f|0,(15-pe|0)*3|0)|0,Z()|0,U=U&7,(U|0)==7){y=5,I=42;break}if(T=(T|0)!=0,(U|0)==1&T){y=5,I=42;break}if(ie=U+(((U|0)!=0&T)<<31>>31)|0,ie|0&&(I=Xe-pe|0,I=Bo(7,0,I,((I|0)<0)<<31>>31)|0,q=Z()|0,T?(T=fr(I|0,q|0,5,0)|0,T=Yt(T|0,Z()|0,-5,-1)|0,T=ko(T|0,Z()|0,6,0)|0,T=Yt(T|0,Z()|0,1,0)|0,U=Z()|0):(T=I,U=q),pe=ie+-1|0,pe=fr(I|0,q|0,pe|0,((pe|0)<0)<<31>>31|0)|0,pe=Yt(T|0,U|0,pe|0,Z()|0)|0,ie=Z()|0,q=_,q=Yt(pe|0,ie|0,d[q>>2]|0,d[q+4>>2]|0)|0,ie=Z()|0,pe=_,d[pe>>2]=q,d[pe+4>>2]=ie),(Ae|0)<=(p|0)){I=37;break}}if((I|0)==19)Ut(27795,27122,1367,27158);else if((I|0)==37){M=_,y=d[M+4>>2]|0,M=d[M>>2]|0;break}else if((I|0)==42)return K=qe,y|0}else y=0,M=0}else I=33;while(!1);e:do if((I|0)==33)if(me=_,d[me>>2]=0,d[me+4>>2]=0,(Xe|0)>(p|0)){for(T=Xe;;){if(y=bt(A|0,f|0,(15-T|0)*3|0)|0,Z()|0,y=y&7,(y|0)==7){y=5;break}if(M=Xe-T|0,M=Bo(7,0,M,((M|0)<0)<<31>>31)|0,y=fr(M|0,Z()|0,y|0,0)|0,M=Z()|0,me=_,M=Yt(d[me>>2]|0,d[me+4>>2]|0,y|0,M|0)|0,y=Z()|0,me=_,d[me>>2]=M,d[me+4>>2]=y,T=T+-1|0,(T|0)<=(p|0))break e}return K=qe,y|0}else y=0,M=0;while(!1);return lf(Ce,N,Xe,Be)|0&&Ut(27795,27122,1327,27173),Xe=Be,Be=d[Xe+4>>2]|0,((y|0)>-1|(y|0)==-1&M>>>0>4294967295)&((Be|0)>(y|0)|((Be|0)==(y|0)?(d[Xe>>2]|0)>>>0>M>>>0:0))?(Xe=0,K=qe,Xe|0):(Ut(27795,27122,1407,27158),0)}function S1(A,f,p,_,y,T){A=A|0,f=f|0,p=p|0,_=_|0,y=y|0,T=T|0;var M=0,N=0,U=0,I=0,q=0,ie=0,pe=0,Ae=0,me=0,Ce=0;if(ie=K,K=K+16|0,M=ie,y>>>0>15)return T=4,K=ie,T|0;if(N=bt(p|0,_|0,52)|0,Z()|0,N=N&15,(N|0)>(y|0))return T=12,K=ie,T|0;if(lf(p,_,y,M)|0&&Ut(27795,27122,1327,27173),q=M,I=d[q+4>>2]|0,!(((f|0)>-1|(f|0)==-1&A>>>0>4294967295)&((I|0)>(f|0)|((I|0)==(f|0)?(d[q>>2]|0)>>>0>A>>>0:0))))return T=2,K=ie,T|0;q=y-N|0,y=Nt(y|0,0,52)|0,U=Z()|0|_&-15728641,I=T,d[I>>2]=y|p,d[I+4>>2]=U,I=bt(p|0,_|0,45)|0,Z()|0;e:do if(Bi(I&127)|0){if(N|0)for(M=1;;){if(I=Nt(7,0,(15-M|0)*3|0)|0,!((I&p|0)==0&((Z()|0)&_|0)==0))break e;if(M>>>0>>0)M=M+1|0;else break}if((q|0)<1)return T=0,K=ie,T|0;for(I=N^15,_=-1,U=1,M=1;;){N=q-U|0,N=Bo(7,0,N,((N|0)<0)<<31>>31)|0,p=Z()|0;do if(M)if(M=fr(N|0,p|0,5,0)|0,M=Yt(M|0,Z()|0,-5,-1)|0,M=ko(M|0,Z()|0,6,0)|0,y=Z()|0,(f|0)>(y|0)|(f|0)==(y|0)&A>>>0>M>>>0){f=Yt(A|0,f|0,-1,-1)|0,f=Ur(f|0,Z()|0,M|0,y|0)|0,M=Z()|0,pe=T,me=d[pe>>2]|0,pe=d[pe+4>>2]|0,Ce=(I+_|0)*3|0,Ae=Nt(7,0,Ce|0)|0,pe=pe&~(Z()|0),_=ko(f|0,M|0,N|0,p|0)|0,A=Z()|0,y=Yt(_|0,A|0,2,0)|0,Ce=Nt(y|0,Z()|0,Ce|0)|0,pe=Z()|0|pe,y=T,d[y>>2]=Ce|me&~Ae,d[y+4>>2]=pe,A=fr(_|0,A|0,N|0,p|0)|0,A=Ur(f|0,M|0,A|0,Z()|0)|0,M=0,f=Z()|0;break}else{Ce=T,Ae=d[Ce>>2]|0,Ce=d[Ce+4>>2]|0,me=Nt(7,0,(I+_|0)*3|0)|0,Ce=Ce&~(Z()|0),M=T,d[M>>2]=Ae&~me,d[M+4>>2]=Ce,M=1;break}else Ae=T,y=d[Ae>>2]|0,Ae=d[Ae+4>>2]|0,_=(I+_|0)*3|0,pe=Nt(7,0,_|0)|0,Ae=Ae&~(Z()|0),Ce=ko(A|0,f|0,N|0,p|0)|0,M=Z()|0,_=Nt(Ce|0,M|0,_|0)|0,Ae=Z()|0|Ae,me=T,d[me>>2]=_|y&~pe,d[me+4>>2]=Ae,M=fr(Ce|0,M|0,N|0,p|0)|0,A=Ur(A|0,f|0,M|0,Z()|0)|0,M=0,f=Z()|0;while(!1);if((q|0)>(U|0))_=~U,U=U+1|0;else{f=0;break}}return K=ie,f|0}while(!1);if((q|0)<1)return Ce=0,K=ie,Ce|0;for(y=N^15,M=1;;)if(me=q-M|0,me=Bo(7,0,me,((me|0)<0)<<31>>31)|0,Ce=Z()|0,U=T,p=d[U>>2]|0,U=d[U+4>>2]|0,N=(y-M|0)*3|0,_=Nt(7,0,N|0)|0,U=U&~(Z()|0),pe=ko(A|0,f|0,me|0,Ce|0)|0,Ae=Z()|0,N=Nt(pe|0,Ae|0,N|0)|0,U=Z()|0|U,I=T,d[I>>2]=N|p&~_,d[I+4>>2]=U,Ce=fr(pe|0,Ae|0,me|0,Ce|0)|0,A=Ur(A|0,f|0,Ce|0,Z()|0)|0,f=Z()|0,(q|0)<=(M|0)){f=0;break}else M=M+1|0;return K=ie,f|0}function sl(A,f,p,_){A=A|0,f=f|0,p=p|0,_=_|0;var y=0,T=0,M=0;y=bt(f|0,p|0,52)|0,Z()|0,y=y&15,(f|0)==0&(p|0)==0|((_|0)>15|(y|0)>(_|0))?(T=-1,f=-1,p=0,y=0):(f=lp(f,p,y+1|0,_)|0,M=(Z()|0)&-15728641,p=Nt(_|0,0,52)|0,p=f|p,M=M|(Z()|0),f=(Ci(p,M)|0)==0,T=y,f=f?-1:_,y=M),M=A,d[M>>2]=p,d[M+4>>2]=y,d[A+8>>2]=T,d[A+12>>2]=f}function Vu(A,f,p,_){A=A|0,f=f|0,p=p|0,_=_|0;var y=0,T=0;if(y=bt(A|0,f|0,52)|0,Z()|0,y=y&15,T=_+8|0,d[T>>2]=y,(A|0)==0&(f|0)==0|((p|0)>15|(y|0)>(p|0))){p=_,d[p>>2]=0,d[p+4>>2]=0,d[T>>2]=-1,d[_+12>>2]=-1;return}if(A=lp(A,f,y+1|0,p)|0,T=(Z()|0)&-15728641,y=Nt(p|0,0,52)|0,y=A|y,T=T|(Z()|0),A=_,d[A>>2]=y,d[A+4>>2]=T,A=_+12|0,Ci(y,T)|0){d[A>>2]=p;return}else{d[A>>2]=-1;return}}function uf(A){A=A|0;var f=0,p=0,_=0,y=0,T=0,M=0,N=0,U=0,I=0;if(p=A,f=d[p>>2]|0,p=d[p+4>>2]|0,!((f|0)==0&(p|0)==0)&&(_=bt(f|0,p|0,52)|0,Z()|0,_=_&15,N=Nt(1,0,(_^15)*3|0)|0,f=Yt(N|0,Z()|0,f|0,p|0)|0,p=Z()|0,N=A,d[N>>2]=f,d[N+4>>2]=p,N=A+8|0,M=d[N>>2]|0,!((_|0)<(M|0)))){for(U=A+12|0,T=_;;){if((T|0)==(M|0)){_=5;break}if(I=(T|0)==(d[U>>2]|0),y=(15-T|0)*3|0,_=bt(f|0,p|0,y|0)|0,Z()|0,_=_&7,I&((_|0)==1&!0)){_=7;break}if(!((_|0)==7&!0)){_=10;break}if(I=Nt(1,0,y|0)|0,f=Yt(f|0,p|0,I|0,Z()|0)|0,p=Z()|0,I=A,d[I>>2]=f,d[I+4>>2]=p,(T|0)>(M|0))T=T+-1|0;else{_=10;break}}if((_|0)==5){I=A,d[I>>2]=0,d[I+4>>2]=0,d[N>>2]=-1,d[U>>2]=-1;return}else if((_|0)==7){M=Nt(1,0,y|0)|0,M=Yt(f|0,p|0,M|0,Z()|0)|0,N=Z()|0,I=A,d[I>>2]=M,d[I+4>>2]=N,d[U>>2]=T+-1;return}else if((_|0)==10)return}}function Kc(A){A=+A;var f=0;return f=A<0?A+6.283185307179586:A,+(A>=6.283185307179586?f+-6.283185307179586:f)}function Ea(A,f){return A=A|0,f=f|0,+un(+(+J[A>>3]-+J[f>>3]))<17453292519943298e-27?(f=+un(+(+J[A+8>>3]-+J[f+8>>3]))<17453292519943298e-27,f|0):(f=0,f|0)}function Xs(A,f){switch(A=+A,f=f|0,f|0){case 1:{A=A<0?A+6.283185307179586:A;break}case 2:{A=A>0?A+-6.283185307179586:A;break}}return+A}function T1(A,f){A=A|0,f=f|0;var p=0,_=0,y=0,T=0;return y=+J[f>>3],_=+J[A>>3],T=+Fn(+((y-_)*.5)),p=+Fn(+((+J[f+8>>3]-+J[A+8>>3])*.5)),p=T*T+p*(+li(+y)*+li(+_)*p),+(+Oe(+ +qn(+p),+ +qn(+(1-p)))*2)}function Zc(A,f){A=A|0,f=f|0;var p=0,_=0,y=0,T=0;return y=+J[f>>3],_=+J[A>>3],T=+Fn(+((y-_)*.5)),p=+Fn(+((+J[f+8>>3]-+J[A+8>>3])*.5)),p=T*T+p*(+li(+y)*+li(+_)*p),+(+Oe(+ +qn(+p),+ +qn(+(1-p)))*2*6371.007180918475)}function Mx(A,f){A=A|0,f=f|0;var p=0,_=0,y=0,T=0;return y=+J[f>>3],_=+J[A>>3],T=+Fn(+((y-_)*.5)),p=+Fn(+((+J[f+8>>3]-+J[A+8>>3])*.5)),p=T*T+p*(+li(+y)*+li(+_)*p),+(+Oe(+ +qn(+p),+ +qn(+(1-p)))*2*6371.007180918475*1e3)}function Ex(A,f){A=A|0,f=f|0;var p=0,_=0,y=0,T=0,M=0;return T=+J[f>>3],_=+li(+T),y=+J[f+8>>3]-+J[A+8>>3],M=_*+Fn(+y),p=+J[A>>3],+ +Oe(+M,+(+Fn(+T)*+li(+p)-+li(+y)*(_*+Fn(+p))))}function Cx(A,f,p,_){A=A|0,f=+f,p=+p,_=_|0;var y=0,T=0,M=0,N=0;if(p<1e-16){d[_>>2]=d[A>>2],d[_+4>>2]=d[A+4>>2],d[_+8>>2]=d[A+8>>2],d[_+12>>2]=d[A+12>>2];return}T=f<0?f+6.283185307179586:f,T=f>=6.283185307179586?T+-6.283185307179586:T;do if(T<1e-16)f=+J[A>>3]+p,J[_>>3]=f,y=_;else{if(y=+un(+(T+-3.141592653589793))<1e-16,f=+J[A>>3],y){f=f-p,J[_>>3]=f,y=_;break}if(M=+li(+p),p=+Fn(+p),f=M*+Fn(+f)+ +li(+T)*(p*+li(+f)),f=f>1?1:f,f=+Ul(+(f<-1?-1:f)),J[_>>3]=f,+un(+(f+-1.5707963267948966))<1e-16){J[_>>3]=1.5707963267948966,J[_+8>>3]=0;return}if(+un(+(f+1.5707963267948966))<1e-16){J[_>>3]=-1.5707963267948966,J[_+8>>3]=0;return}if(N=1/+li(+f),T=p*+Fn(+T)*N,p=+J[A>>3],f=N*((M-+Fn(+f)*+Fn(+p))/+li(+p)),M=T>1?1:T,f=f>1?1:f,f=+J[A+8>>3]+ +Oe(+(M<-1?-1:M),+(f<-1?-1:f)),f>3.141592653589793)do f=f+-6.283185307179586;while(f>3.141592653589793);if(f<-3.141592653589793)do f=f+6.283185307179586;while(f<-3.141592653589793);J[_+8>>3]=f;return}while(!1);if(+un(+(f+-1.5707963267948966))<1e-16){J[y>>3]=1.5707963267948966,J[_+8>>3]=0;return}if(+un(+(f+1.5707963267948966))<1e-16){J[y>>3]=-1.5707963267948966,J[_+8>>3]=0;return}if(f=+J[A+8>>3],f>3.141592653589793)do f=f+-6.283185307179586;while(f>3.141592653589793);if(f<-3.141592653589793)do f=f+6.283185307179586;while(f<-3.141592653589793);J[_+8>>3]=f}function dp(A,f){return A=A|0,f=f|0,A>>>0>15?(f=4,f|0):(J[f>>3]=+J[20656+(A<<3)>>3],f=0,f|0)}function w1(A,f){return A=A|0,f=f|0,A>>>0>15?(f=4,f|0):(J[f>>3]=+J[20784+(A<<3)>>3],f=0,f|0)}function pp(A,f){return A=A|0,f=f|0,A>>>0>15?(f=4,f|0):(J[f>>3]=+J[20912+(A<<3)>>3],f=0,f|0)}function oo(A,f){return A=A|0,f=f|0,A>>>0>15?(f=4,f|0):(J[f>>3]=+J[21040+(A<<3)>>3],f=0,f|0)}function Hu(A,f){A=A|0,f=f|0;var p=0;return A>>>0>15?(f=4,f|0):(p=Bo(7,0,A,((A|0)<0)<<31>>31)|0,p=fr(p|0,Z()|0,120,0)|0,A=Z()|0,d[f>>2]=p|2,d[f+4>>2]=A,f=0,f|0)}function da(A,f,p){A=A|0,f=f|0,p=p|0;var _=0,y=0,T=0,M=0,N=0,U=0,I=0,q=0,ie=0,pe=0;return pe=+J[f>>3],q=+J[A>>3],U=+Fn(+((pe-q)*.5)),T=+J[f+8>>3],I=+J[A+8>>3],M=+Fn(+((T-I)*.5)),N=+li(+q),ie=+li(+pe),M=U*U+M*(ie*N*M),M=+Oe(+ +qn(+M),+ +qn(+(1-M)))*2,U=+J[p>>3],pe=+Fn(+((U-pe)*.5)),_=+J[p+8>>3],T=+Fn(+((_-T)*.5)),y=+li(+U),T=pe*pe+T*(ie*y*T),T=+Oe(+ +qn(+T),+ +qn(+(1-T)))*2,U=+Fn(+((q-U)*.5)),_=+Fn(+((I-_)*.5)),_=U*U+_*(N*y*_),_=+Oe(+ +qn(+_),+ +qn(+(1-_)))*2,y=(M+T+_)*.5,+(+ae(+ +qn(+(+cs(+(y*.5))*+cs(+((y-M)*.5))*+cs(+((y-T)*.5))*+cs(+((y-_)*.5)))))*4)}function Fl(A,f,p){A=A|0,f=f|0,p=p|0;var _=0,y=0,T=0,M=0,N=0;if(N=K,K=K+192|0,T=N+168|0,M=N,y=Ol(A,f,T)|0,y|0)return p=y,K=N,p|0;if(Il(A,f,M)|0&&Ut(27795,27190,415,27199),f=d[M>>2]|0,(f|0)>0){if(_=+da(M+8|0,M+8+(((f|0)!=1&1)<<4)|0,T)+0,(f|0)!=1){A=1;do y=A,A=A+1|0,_=_+ +da(M+8+(y<<4)|0,M+8+(((A|0)%(f|0)|0)<<4)|0,T);while((A|0)<(f|0))}}else _=0;return J[p>>3]=_,p=0,K=N,p|0}function mp(A,f,p){return A=A|0,f=f|0,p=p|0,A=Fl(A,f,p)|0,A|0||(J[p>>3]=+J[p>>3]*6371.007180918475*6371.007180918475),A|0}function UA(A,f,p){return A=A|0,f=f|0,p=p|0,A=Fl(A,f,p)|0,A|0||(J[p>>3]=+J[p>>3]*6371.007180918475*6371.007180918475*1e3*1e3),A|0}function BA(A,f,p){A=A|0,f=f|0,p=p|0;var _=0,y=0,T=0,M=0,N=0,U=0,I=0,q=0;if(N=K,K=K+176|0,M=N,A=CA(A,f,M)|0,A|0)return M=A,K=N,M|0;if(J[p>>3]=0,A=d[M>>2]|0,(A|0)<=1)return M=0,K=N,M|0;f=A+-1|0,A=0,_=+J[M+8>>3],y=+J[M+16>>3],T=0;do A=A+1|0,I=_,_=+J[M+8+(A<<4)>>3],q=+Fn(+((_-I)*.5)),U=y,y=+J[M+8+(A<<4)+8>>3],U=+Fn(+((y-U)*.5)),U=q*q+U*(+li(+_)*+li(+I)*U),T=T+ +Oe(+ +qn(+U),+ +qn(+(1-U)))*2;while((A|0)<(f|0));return J[p>>3]=T,M=0,K=N,M|0}function gp(A,f,p){A=A|0,f=f|0,p=p|0;var _=0,y=0,T=0,M=0,N=0,U=0,I=0,q=0;if(N=K,K=K+176|0,M=N,A=CA(A,f,M)|0,A|0)return M=A,T=+J[p>>3],T=T*6371.007180918475,J[p>>3]=T,K=N,M|0;if(J[p>>3]=0,A=d[M>>2]|0,(A|0)<=1)return M=0,T=0,T=T*6371.007180918475,J[p>>3]=T,K=N,M|0;f=A+-1|0,A=0,_=+J[M+8>>3],y=+J[M+16>>3],T=0;do A=A+1|0,I=_,_=+J[M+8+(A<<4)>>3],q=+Fn(+((_-I)*.5)),U=y,y=+J[M+8+(A<<4)+8>>3],U=+Fn(+((y-U)*.5)),U=q*q+U*(+li(+I)*+li(+_)*U),T=T+ +Oe(+ +qn(+U),+ +qn(+(1-U)))*2;while((A|0)!=(f|0));return J[p>>3]=T,M=0,q=T,q=q*6371.007180918475,J[p>>3]=q,K=N,M|0}function ju(A,f,p){A=A|0,f=f|0,p=p|0;var _=0,y=0,T=0,M=0,N=0,U=0,I=0,q=0;if(N=K,K=K+176|0,M=N,A=CA(A,f,M)|0,A|0)return M=A,T=+J[p>>3],T=T*6371.007180918475,T=T*1e3,J[p>>3]=T,K=N,M|0;if(J[p>>3]=0,A=d[M>>2]|0,(A|0)<=1)return M=0,T=0,T=T*6371.007180918475,T=T*1e3,J[p>>3]=T,K=N,M|0;f=A+-1|0,A=0,_=+J[M+8>>3],y=+J[M+16>>3],T=0;do A=A+1|0,I=_,_=+J[M+8+(A<<4)>>3],q=+Fn(+((_-I)*.5)),U=y,y=+J[M+8+(A<<4)+8>>3],U=+Fn(+((y-U)*.5)),U=q*q+U*(+li(+I)*+li(+_)*U),T=T+ +Oe(+ +qn(+U),+ +qn(+(1-U)))*2;while((A|0)!=(f|0));return J[p>>3]=T,M=0,q=T,q=q*6371.007180918475,q=q*1e3,J[p>>3]=q,K=N,M|0}function M1(A){A=A|0;var f=0,p=0,_=0;return f=Ks(1,12)|0,f||Ut(27280,27235,49,27293),p=A+4|0,_=d[p>>2]|0,_|0?(_=_+8|0,d[_>>2]=f,d[p>>2]=f,f|0):(d[A>>2]|0&&Ut(27310,27235,61,27333),_=A,d[_>>2]=f,d[p>>2]=f,f|0)}function OA(A,f){A=A|0,f=f|0;var p=0,_=0;return _=Fo(24)|0,_||Ut(27347,27235,78,27361),d[_>>2]=d[f>>2],d[_+4>>2]=d[f+4>>2],d[_+8>>2]=d[f+8>>2],d[_+12>>2]=d[f+12>>2],d[_+16>>2]=0,f=A+4|0,p=d[f>>2]|0,p|0?(d[p+16>>2]=_,d[f>>2]=_,_|0):(d[A>>2]|0&&Ut(27376,27235,82,27361),d[A>>2]=_,d[f>>2]=_,_|0)}function Wu(A){A=A|0;var f=0,p=0,_=0,y=0;if(A)for(_=1;;){if(f=d[A>>2]|0,f|0)do{if(p=d[f>>2]|0,p|0)do y=p,p=d[p+16>>2]|0,An(y);while((p|0)!=0);y=f,f=d[f+8>>2]|0,An(y)}while((f|0)!=0);if(f=A,A=d[A+8>>2]|0,_||An(f),A)_=0;else break}}function Rx(A){A=A|0;var f=0,p=0,_=0,y=0,T=0,M=0,N=0,U=0,I=0,q=0,ie=0,pe=0,Ae=0,me=0,Ce=0,Be=0,Xe=0,qe=0,ke=0,Re=0,Pt=0,rn=0,en=0,Un=0,En=0,Qn=0,Tn=0,on=0,Lt=0,vn=0,ii=0,wn=0;if(y=A+8|0,d[y>>2]|0)return wn=1,wn|0;if(_=d[A>>2]|0,!_)return wn=0,wn|0;f=_,p=0;do p=p+1|0,f=d[f+8>>2]|0;while((f|0)!=0);if(p>>>0<2)return wn=0,wn|0;vn=Fo(p<<2)|0,vn||Ut(27396,27235,317,27415),Lt=Fo(p<<5)|0,Lt||Ut(27437,27235,321,27415),d[A>>2]=0,rn=A+4|0,d[rn>>2]=0,d[y>>2]=0,p=0,on=0,Pt=0,ie=0;e:for(;;){if(q=d[_>>2]|0,q){T=0,M=q;do{if(U=+J[M+8>>3],f=M,M=d[M+16>>2]|0,I=(M|0)==0,y=I?q:M,N=+J[y+8>>3],+un(+(U-N))>3.141592653589793){wn=14;break}T=T+(N-U)*(+J[f>>3]+ +J[y>>3])}while(!I);if((wn|0)==14){wn=0,T=0,f=q;do Re=+J[f+8>>3],Tn=f+16|0,Qn=d[Tn>>2]|0,Qn=(Qn|0)==0?q:Qn,ke=+J[Qn+8>>3],T=T+(+J[f>>3]+ +J[Qn>>3])*((ke<0?ke+6.283185307179586:ke)-(Re<0?Re+6.283185307179586:Re)),f=d[((f|0)==0?_:Tn)>>2]|0;while((f|0)!=0)}T>0?(d[vn+(on<<2)>>2]=_,on=on+1|0,y=Pt,f=ie):wn=19}else wn=19;if((wn|0)==19){wn=0;do if(p){if(f=p+8|0,d[f>>2]|0){wn=21;break e}if(p=Ks(1,12)|0,!p){wn=23;break e}d[f>>2]=p,y=p+4|0,M=p,f=ie}else if(ie){y=rn,M=ie+8|0,f=_,p=A;break}else if(d[A>>2]|0){wn=27;break e}else{y=rn,M=A,f=_,p=A;break}while(!1);if(d[M>>2]=_,d[y>>2]=_,M=Lt+(Pt<<5)|0,I=d[_>>2]|0,I){for(q=Lt+(Pt<<5)+8|0,J[q>>3]=17976931348623157e292,ie=Lt+(Pt<<5)+24|0,J[ie>>3]=17976931348623157e292,J[M>>3]=-17976931348623157e292,pe=Lt+(Pt<<5)+16|0,J[pe>>3]=-17976931348623157e292,Xe=17976931348623157e292,qe=-17976931348623157e292,y=0,Ae=I,U=17976931348623157e292,Ce=17976931348623157e292,Be=-17976931348623157e292,N=-17976931348623157e292;T=+J[Ae>>3],Re=+J[Ae+8>>3],Ae=d[Ae+16>>2]|0,me=(Ae|0)==0,ke=+J[(me?I:Ae)+8>>3],T>3]=T,U=T),Re>3]=Re,Ce=Re),T>Be?J[M>>3]=T:T=Be,Re>N&&(J[pe>>3]=Re,N=Re),Xe=Re>0&Reqe?Re:qe,y=y|+un(+(Re-ke))>3.141592653589793,!me;)Be=T;y&&(J[pe>>3]=qe,J[ie>>3]=Xe)}else d[M>>2]=0,d[M+4>>2]=0,d[M+8>>2]=0,d[M+12>>2]=0,d[M+16>>2]=0,d[M+20>>2]=0,d[M+24>>2]=0,d[M+28>>2]=0;y=Pt+1|0}if(Tn=_+8|0,_=d[Tn>>2]|0,d[Tn>>2]=0,_)Pt=y,ie=f;else{wn=45;break}}if((wn|0)==21)Ut(27213,27235,35,27247);else if((wn|0)==23)Ut(27267,27235,37,27247);else if((wn|0)==27)Ut(27310,27235,61,27333);else if((wn|0)==45){e:do if((on|0)>0){for(Tn=(y|0)==0,En=y<<2,Qn=(A|0)==0,Un=0,f=0;;){if(en=d[vn+(Un<<2)>>2]|0,Tn)wn=73;else{if(Pt=Fo(En)|0,!Pt){wn=50;break}if(rn=Fo(En)|0,!rn){wn=52;break}t:do if(Qn)p=0;else{for(y=0,p=0,M=A;_=Lt+(y<<5)|0,Ys(d[M>>2]|0,_,d[en>>2]|0)|0?(d[Pt+(p<<2)>>2]=M,d[rn+(p<<2)>>2]=_,me=p+1|0):me=p,M=d[M+8>>2]|0,M;)y=y+1|0,p=me;if((me|0)>0)if(_=d[Pt>>2]|0,(me|0)==1)p=_;else for(pe=0,Ae=-1,p=_,ie=_;;){for(I=d[ie>>2]|0,_=0,M=0;y=d[d[Pt+(M<<2)>>2]>>2]|0,(y|0)==(I|0)?q=_:q=_+((Ys(y,d[rn+(M<<2)>>2]|0,d[I>>2]|0)|0)&1)|0,M=M+1|0,(M|0)!=(me|0);)_=q;if(y=(q|0)>(Ae|0),p=y?ie:p,_=pe+1|0,(_|0)==(me|0))break t;pe=_,Ae=y?q:Ae,ie=d[Pt+(_<<2)>>2]|0}else p=0}while(!1);if(An(Pt),An(rn),p){if(y=p+4|0,_=d[y>>2]|0,_)p=_+8|0;else if(d[p>>2]|0){wn=70;break}d[p>>2]=en,d[y>>2]=en}else wn=73}if((wn|0)==73){if(wn=0,f=d[en>>2]|0,f|0)do rn=f,f=d[f+16>>2]|0,An(rn);while((f|0)!=0);An(en),f=1}if(Un=Un+1|0,(Un|0)>=(on|0)){ii=f;break e}}(wn|0)==50?Ut(27452,27235,249,27471):(wn|0)==52?Ut(27490,27235,252,27471):(wn|0)==70&&Ut(27310,27235,61,27333)}else ii=0;while(!1);return An(vn),An(Lt),wn=ii,wn|0}return 0}function Ys(A,f,p){A=A|0,f=f|0,p=p|0;var _=0,y=0,T=0,M=0,N=0,U=0,I=0,q=0;if(!(Lo(f,p)|0)||(f=TA(f)|0,_=+J[p>>3],y=+J[p+8>>3],y=f&y<0?y+6.283185307179586:y,A=d[A>>2]|0,!A))return A=0,A|0;if(f){f=0,I=y,p=A;e:for(;;){for(;M=+J[p>>3],y=+J[p+8>>3],p=p+16|0,q=d[p>>2]|0,q=(q|0)==0?A:q,T=+J[q>>3],N=+J[q+8>>3],M>T?(U=M,M=N):(U=T,T=M,M=y,y=N),_=_==T|_==U?_+2220446049250313e-31:_,!!(_U);)if(p=d[p>>2]|0,!p){p=22;break e}if(N=M<0?M+6.283185307179586:M,M=y<0?y+6.283185307179586:y,I=N==I|M==I?I+-2220446049250313e-31:I,U=N+(M-N)*((_-T)/(U-T)),(U<0?U+6.283185307179586:U)>I&&(f=f^1),p=d[p>>2]|0,!p){p=22;break}}if((p|0)==22)return f|0}else{f=0,I=y,p=A;e:for(;;){for(;M=+J[p>>3],y=+J[p+8>>3],p=p+16|0,q=d[p>>2]|0,q=(q|0)==0?A:q,T=+J[q>>3],N=+J[q+8>>3],M>T?(U=M,M=N):(U=T,T=M,M=y,y=N),_=_==T|_==U?_+2220446049250313e-31:_,!!(_U);)if(p=d[p>>2]|0,!p){p=22;break e}if(I=M==I|y==I?I+-2220446049250313e-31:I,M+(y-M)*((_-T)/(U-T))>I&&(f=f^1),p=d[p>>2]|0,!p){p=22;break}}if((p|0)==22)return f|0}return 0}function lo(A,f,p,_,y){A=A|0,f=f|0,p=p|0,_=_|0,y=y|0;var T=0,M=0,N=0,U=0,I=0,q=0,ie=0,pe=0,Ae=0,me=0,Ce=0,Be=0,Xe=0,qe=0;if(qe=K,K=K+32|0,Xe=qe+16|0,Be=qe,T=bt(A|0,f|0,52)|0,Z()|0,T=T&15,Ae=bt(p|0,_|0,52)|0,Z()|0,(T|0)!=(Ae&15|0))return Xe=12,K=qe,Xe|0;if(I=bt(A|0,f|0,45)|0,Z()|0,I=I&127,q=bt(p|0,_|0,45)|0,Z()|0,q=q&127,I>>>0>121|q>>>0>121)return Xe=5,K=qe,Xe|0;if(Ae=(I|0)!=(q|0),Ae){if(N=Jh(I,q)|0,(N|0)==7)return Xe=1,K=qe,Xe|0;U=Jh(q,I)|0,(U|0)==7?Ut(27514,27538,161,27548):(me=N,M=U)}else me=0,M=0;ie=Bi(I)|0,pe=Bi(q)|0,d[Xe>>2]=0,d[Xe+4>>2]=0,d[Xe+8>>2]=0,d[Xe+12>>2]=0;do if(me){if(q=d[4272+(I*28|0)+(me<<2)>>2]|0,N=(q|0)>0,pe)if(N){I=0,U=p,N=_;do U=Tx(U,N)|0,N=Z()|0,M=rl(M)|0,(M|0)==1&&(M=rl(1)|0),I=I+1|0;while((I|0)!=(q|0));q=M,I=U,U=N}else q=M,I=p,U=_;else if(N){I=0,U=p,N=_;do U=hp(U,N)|0,N=Z()|0,M=rl(M)|0,I=I+1|0;while((I|0)!=(q|0));q=M,I=U,U=N}else q=M,I=p,U=_;if(LA(I,U,Xe)|0,Ae||Ut(27563,27538,191,27548),N=(ie|0)!=0,M=(pe|0)!=0,N&M&&Ut(27590,27538,192,27548),N){if(M=$s(A,f)|0,(M|0)==7){T=5;break}if(st[22e3+(M*7|0)+me>>0]|0){T=1;break}U=d[21168+(M*28|0)+(me<<2)>>2]|0,I=U}else if(M){if(M=$s(I,U)|0,(M|0)==7){T=5;break}if(st[22e3+(M*7|0)+q>>0]|0){T=1;break}I=0,U=d[21168+(q*28|0)+(M<<2)>>2]|0}else I=0,U=0;if((I|U|0)<0)T=5;else{if((U|0)>0){N=Xe+4|0,M=0;do EA(N),M=M+1|0;while((M|0)!=(U|0))}if(d[Be>>2]=0,d[Be+4>>2]=0,d[Be+8>>2]=0,u1(Be,me),T|0)for(;Ss(T)|0?Yc(Be):Lu(Be),(T|0)>1;)T=T+-1|0;if((I|0)>0){T=0;do EA(Be),T=T+1|0;while((T|0)!=(I|0))}Ce=Xe+4|0,hs(Ce,Be,Ce),Lr(Ce),Ce=51}}else if(LA(p,_,Xe)|0,(ie|0)!=0&(pe|0)!=0)if((q|0)!=(I|0)&&Ut(27621,27538,261,27548),M=$s(A,f)|0,T=$s(p,_)|0,(M|0)==7|(T|0)==7)T=5;else if(st[22e3+(M*7|0)+T>>0]|0)T=1;else if(M=d[21168+(M*28|0)+(T<<2)>>2]|0,(M|0)>0){N=Xe+4|0,T=0;do EA(N),T=T+1|0;while((T|0)!=(M|0));Ce=51}else Ce=51;else Ce=51;while(!1);return(Ce|0)==51&&(T=Xe+4|0,d[y>>2]=d[T>>2],d[y+4>>2]=d[T+4>>2],d[y+8>>2]=d[T+8>>2],T=0),Xe=T,K=qe,Xe|0}function Uo(A,f,p,_){A=A|0,f=f|0,p=p|0,_=_|0;var y=0,T=0,M=0,N=0,U=0,I=0,q=0,ie=0,pe=0,Ae=0,me=0,Ce=0,Be=0,Xe=0,qe=0,ke=0;if(Ce=K,K=K+48|0,I=Ce+36|0,M=Ce+24|0,N=Ce+12|0,U=Ce,y=bt(A|0,f|0,52)|0,Z()|0,y=y&15,pe=bt(A|0,f|0,45)|0,Z()|0,pe=pe&127,pe>>>0>121)return _=5,K=Ce,_|0;if(q=Bi(pe)|0,Nt(y|0,0,52)|0,Be=Z()|0|134225919,T=_,d[T>>2]=-1,d[T+4>>2]=Be,!y)return y=Pu(p)|0,(y|0)==7||(y=SA(pe,y)|0,(y|0)==127)?(Be=1,K=Ce,Be|0):(Ae=Nt(y|0,0,45)|0,me=Z()|0,pe=_,me=d[pe+4>>2]&-1040385|me,Be=_,d[Be>>2]=d[pe>>2]|Ae,d[Be+4>>2]=me,Be=0,K=Ce,Be|0);for(d[I>>2]=d[p>>2],d[I+4>>2]=d[p+4>>2],d[I+8>>2]=d[p+8>>2],p=y;;){if(T=p,p=p+-1|0,d[M>>2]=d[I>>2],d[M+4>>2]=d[I+4>>2],d[M+8>>2]=d[I+8>>2],Ss(T)|0){if(y=o1(I)|0,y|0){p=13;break}d[N>>2]=d[I>>2],d[N+4>>2]=d[I+4>>2],d[N+8>>2]=d[I+8>>2],Yc(N)}else{if(y=cx(I)|0,y|0){p=13;break}d[N>>2]=d[I>>2],d[N+4>>2]=d[I+4>>2],d[N+8>>2]=d[I+8>>2],Lu(N)}if(af(M,N,U),Lr(U),y=_,qe=d[y>>2]|0,y=d[y+4>>2]|0,ke=(15-T|0)*3|0,Xe=Nt(7,0,ke|0)|0,y=y&~(Z()|0),ke=Nt(Pu(U)|0,0,ke|0)|0,y=Z()|0|y,Be=_,d[Be>>2]=ke|qe&~Xe,d[Be+4>>2]=y,(T|0)<=1){p=14;break}}e:do if((p|0)!=13&&(p|0)==14)if((d[I>>2]|0)<=1&&(d[I+4>>2]|0)<=1&&(d[I+8>>2]|0)<=1){p=Pu(I)|0,y=SA(pe,p)|0,(y|0)==127?U=0:U=Bi(y)|0;t:do if(p){if(q){if(y=$s(A,f)|0,(y|0)==7){y=5;break e}if(T=d[21376+(y*28|0)+(p<<2)>>2]|0,(T|0)>0){y=p,p=0;do y=Uu(y)|0,p=p+1|0;while((p|0)!=(T|0))}else y=p;if((y|0)==1){y=9;break e}p=SA(pe,y)|0,(p|0)==127&&Ut(27648,27538,411,27678),Bi(p)|0?Ut(27693,27538,412,27678):(me=p,Ae=T,ie=y)}else me=y,Ae=0,ie=p;if(N=d[4272+(pe*28|0)+(ie<<2)>>2]|0,(N|0)<=-1&&Ut(27724,27538,419,27678),!U){if((Ae|0)<0){y=5;break e}if(Ae|0){T=_,y=0,p=d[T>>2]|0,T=d[T+4>>2]|0;do p=ku(p,T)|0,T=Z()|0,ke=_,d[ke>>2]=p,d[ke+4>>2]=T,y=y+1|0;while((y|0)<(Ae|0))}if((N|0)<=0){y=me,p=58;break}for(T=_,y=0,p=d[T>>2]|0,T=d[T+4>>2]|0;;)if(p=ku(p,T)|0,T=Z()|0,ke=_,d[ke>>2]=p,d[ke+4>>2]=T,y=y+1|0,(y|0)==(N|0)){y=me,p=58;break t}}if(M=Jh(me,pe)|0,(M|0)==7&&Ut(27514,27538,428,27678),y=_,p=d[y>>2]|0,y=d[y+4>>2]|0,(N|0)>0){T=0;do p=ku(p,y)|0,y=Z()|0,ke=_,d[ke>>2]=p,d[ke+4>>2]=y,T=T+1|0;while((T|0)!=(N|0))}if(y=$s(p,y)|0,(y|0)==7&&Ut(27795,27538,440,27678),p=Wc(me)|0,p=d[(p?21792:21584)+(M*28|0)+(y<<2)>>2]|0,(p|0)<0&&Ut(27795,27538,454,27678),!p)y=me,p=58;else{M=_,y=0,T=d[M>>2]|0,M=d[M+4>>2]|0;do T=cp(T,M)|0,M=Z()|0,ke=_,d[ke>>2]=T,d[ke+4>>2]=M,y=y+1|0;while((y|0)<(p|0));y=me,p=58}}else if((q|0)!=0&(U|0)!=0){if(p=$s(A,f)|0,T=_,T=$s(d[T>>2]|0,d[T+4>>2]|0)|0,(p|0)==7|(T|0)==7){y=5;break e}if(T=d[21376+(p*28|0)+(T<<2)>>2]|0,(T|0)<0){y=5;break e}if(!T)p=59;else{N=_,p=0,M=d[N>>2]|0,N=d[N+4>>2]|0;do M=ku(M,N)|0,N=Z()|0,ke=_,d[ke>>2]=M,d[ke+4>>2]=N,p=p+1|0;while((p|0)<(T|0));p=58}}else p=58;while(!1);if((p|0)==58&&U&&(p=59),(p|0)==59&&(ke=_,($s(d[ke>>2]|0,d[ke+4>>2]|0)|0)==1)){y=9;break}ke=_,Xe=d[ke>>2]|0,ke=d[ke+4>>2]&-1040385,qe=Nt(y|0,0,45)|0,ke=ke|(Z()|0),y=_,d[y>>2]=Xe|qe,d[y+4>>2]=ke,y=0}else y=1;while(!1);return ke=y,K=Ce,ke|0}function E1(A,f,p,_,y,T){A=A|0,f=f|0,p=p|0,_=_|0,y=y|0,T=T|0;var M=0,N=0;return N=K,K=K+16|0,M=N,y?A=15:(A=lo(A,f,p,_,M)|0,A||(fx(M,T),A=0)),K=N,A|0}function IA(A,f,p,_,y){A=A|0,f=f|0,p=p|0,_=_|0,y=y|0;var T=0,M=0;return M=K,K=K+16|0,T=M,_?p=15:(p=rp(p,T)|0,p||(p=Uo(A,f,T,y)|0)),K=M,p|0}function $u(A,f,p,_,y){A=A|0,f=f|0,p=p|0,_=_|0,y=y|0;var T=0,M=0,N=0,U=0;return U=K,K=K+32|0,M=U+12|0,N=U,T=lo(A,f,A,f,M)|0,T|0?(N=T,K=U,N|0):(A=lo(A,f,p,_,N)|0,A|0?(N=A,K=U,N|0):(M=ip(M,N)|0,N=y,d[N>>2]=M,d[N+4>>2]=((M|0)<0)<<31>>31,N=0,K=U,N|0))}function vp(A,f,p,_,y){A=A|0,f=f|0,p=p|0,_=_|0,y=y|0;var T=0,M=0,N=0,U=0;return U=K,K=K+32|0,M=U+12|0,N=U,T=lo(A,f,A,f,M)|0,!T&&(T=lo(A,f,p,_,N)|0,!T)?(_=ip(M,N)|0,_=Yt(_|0,((_|0)<0)<<31>>31|0,1,0)|0,M=Z()|0,N=y,d[N>>2]=_,d[N+4>>2]=M,N=0,K=U,N|0):(N=T,K=U,N|0)}function C1(A,f,p,_,y){A=A|0,f=f|0,p=p|0,_=_|0,y=y|0;var T=0,M=0,N=0,U=0,I=0,q=0,ie=0,pe=0,Ae=0,me=0,Ce=0,Be=0,Xe=0,qe=0,ke=0,Re=0,Pt=0,rn=0,en=0,Un=0;if(en=K,K=K+48|0,Pt=en+24|0,M=en+12|0,rn=en,T=lo(A,f,A,f,Pt)|0,!T&&(T=lo(A,f,p,_,M)|0,!T)){ke=ip(Pt,M)|0,Re=((ke|0)<0)<<31>>31,d[Pt>>2]=0,d[Pt+4>>2]=0,d[Pt+8>>2]=0,d[M>>2]=0,d[M+4>>2]=0,d[M+8>>2]=0,lo(A,f,A,f,Pt)|0&&Ut(27795,27538,692,27747),lo(A,f,p,_,M)|0&&Ut(27795,27538,697,27747),A1(Pt),A1(M),q=(ke|0)==0?0:1/+(ke|0),p=d[Pt>>2]|0,Ce=q*+((d[M>>2]|0)-p|0),Be=Pt+4|0,_=d[Be>>2]|0,Xe=q*+((d[M+4>>2]|0)-_|0),qe=Pt+8|0,T=d[qe>>2]|0,q=q*+((d[M+8>>2]|0)-T|0),d[rn>>2]=p,ie=rn+4|0,d[ie>>2]=_,pe=rn+8|0,d[pe>>2]=T;e:do if((ke|0)<0)T=0;else for(Ae=0,me=0;;){U=+(me>>>0)+4294967296*+(Ae|0),Un=Ce*U+ +(p|0),N=Xe*U+ +(_|0),U=q*U+ +(T|0),p=~~+hl(+Un),M=~~+hl(+N),T=~~+hl(+U),Un=+un(+(+(p|0)-Un)),N=+un(+(+(M|0)-N)),U=+un(+(+(T|0)-U));do if(Un>N&Un>U)p=0-(M+T)|0,_=M;else if(I=0-p|0,N>U){_=I-T|0;break}else{_=M,T=I-M|0;break}while(!1);if(d[rn>>2]=p,d[ie>>2]=_,d[pe>>2]=T,Ax(rn),T=Uo(A,f,rn,y+(me<<3)|0)|0,T|0)break e;if(!((Ae|0)<(Re|0)|(Ae|0)==(Re|0)&me>>>0>>0)){T=0;break e}p=Yt(me|0,Ae|0,1,0)|0,_=Z()|0,Ae=_,me=p,p=d[Pt>>2]|0,_=d[Be>>2]|0,T=d[qe>>2]|0}while(!1);return rn=T,K=en,rn|0}return rn=T,K=en,rn|0}function Bo(A,f,p,_){A=A|0,f=f|0,p=p|0,_=_|0;var y=0,T=0,M=0;if((p|0)==0&(_|0)==0)return y=0,T=1,ht(y|0),T|0;T=A,y=f,A=1,f=0;do M=(p&1|0)==0&!0,A=fr((M?1:T)|0,(M?0:y)|0,A|0,f|0)|0,f=Z()|0,p=N1(p|0,_|0,1)|0,_=Z()|0,T=fr(T|0,y|0,T|0,y|0)|0,y=Z()|0;while(!((p|0)==0&(_|0)==0));return ht(f|0),A|0}function FA(A,f,p,_){A=A|0,f=f|0,p=p|0,_=_|0;var y=0,T=0,M=0,N=0,U=0,I=0,q=0;N=K,K=K+16|0,T=N,M=bt(A|0,f|0,52)|0,Z()|0,M=M&15;do if(M){if(y=Ol(A,f,T)|0,!y){I=+J[T>>3],U=1/+li(+I),q=+J[25968+(M<<3)>>3],J[p>>3]=I+q,J[p+8>>3]=I-q,I=+J[T+8>>3],U=q*U,J[p+16>>3]=U+I,J[p+24>>3]=I-U;break}return M=y,K=N,M|0}else{if(y=bt(A|0,f|0,45)|0,Z()|0,y=y&127,y>>>0>121)return M=5,K=N,M|0;T=22064+(y<<5)|0,d[p>>2]=d[T>>2],d[p+4>>2]=d[T+4>>2],d[p+8>>2]=d[T+8>>2],d[p+12>>2]=d[T+12>>2],d[p+16>>2]=d[T+16>>2],d[p+20>>2]=d[T+20>>2],d[p+24>>2]=d[T+24>>2],d[p+28>>2]=d[T+28>>2];break}while(!1);return Ws(p,_?1.4:1.1),_=26096+(M<<3)|0,(d[_>>2]|0)==(A|0)&&(d[_+4>>2]|0)==(f|0)&&(J[p>>3]=1.5707963267948966),M=26224+(M<<3)|0,(d[M>>2]|0)==(A|0)&&(d[M+4>>2]|0)==(f|0)&&(J[p+8>>3]=-1.5707963267948966),+J[p>>3]!=1.5707963267948966&&+J[p+8>>3]!=-1.5707963267948966?(M=0,K=N,M|0):(J[p+16>>3]=3.141592653589793,J[p+24>>3]=-3.141592653589793,M=0,K=N,M|0)}function Ca(A,f,p,_){A=A|0,f=f|0,p=p|0,_=_|0;var y=0,T=0,M=0,N=0,U=0,I=0,q=0;I=K,K=K+48|0,M=I+32|0,T=I+40|0,N=I,Iu(M,0,0,0),U=d[M>>2]|0,M=d[M+4>>2]|0;do if(p>>>0<=15){if(y=Ra(_)|0,y|0){_=N,d[_>>2]=0,d[_+4>>2]=0,d[N+8>>2]=y,d[N+12>>2]=-1,_=N+16|0,U=N+29|0,d[_>>2]=0,d[_+4>>2]=0,d[_+8>>2]=0,st[_+12>>0]=0,st[U>>0]=st[T>>0]|0,st[U+1>>0]=st[T+1>>0]|0,st[U+2>>0]=st[T+2>>0]|0;break}if(y=Ks((d[f+8>>2]|0)+1|0,32)|0,y){Na(f,y),q=N,d[q>>2]=U,d[q+4>>2]=M,d[N+8>>2]=0,d[N+12>>2]=p,d[N+16>>2]=_,d[N+20>>2]=f,d[N+24>>2]=y,st[N+28>>0]=0,U=N+29|0,st[U>>0]=st[T>>0]|0,st[U+1>>0]=st[T+1>>0]|0,st[U+2>>0]=st[T+2>>0]|0;break}else{_=N,d[_>>2]=0,d[_+4>>2]=0,d[N+8>>2]=13,d[N+12>>2]=-1,_=N+16|0,U=N+29|0,d[_>>2]=0,d[_+4>>2]=0,d[_+8>>2]=0,st[_+12>>0]=0,st[U>>0]=st[T>>0]|0,st[U+1>>0]=st[T+1>>0]|0,st[U+2>>0]=st[T+2>>0]|0;break}}else U=N,d[U>>2]=0,d[U+4>>2]=0,d[N+8>>2]=4,d[N+12>>2]=-1,U=N+16|0,q=N+29|0,d[U>>2]=0,d[U+4>>2]=0,d[U+8>>2]=0,st[U+12>>0]=0,st[q>>0]=st[T>>0]|0,st[q+1>>0]=st[T+1>>0]|0,st[q+2>>0]=st[T+2>>0]|0;while(!1);al(N),d[A>>2]=d[N>>2],d[A+4>>2]=d[N+4>>2],d[A+8>>2]=d[N+8>>2],d[A+12>>2]=d[N+12>>2],d[A+16>>2]=d[N+16>>2],d[A+20>>2]=d[N+20>>2],d[A+24>>2]=d[N+24>>2],d[A+28>>2]=d[N+28>>2],K=I}function al(A){A=A|0;var f=0,p=0,_=0,y=0,T=0,M=0,N=0,U=0,I=0,q=0,ie=0,pe=0,Ae=0,me=0,Ce=0,Be=0,Xe=0,qe=0,ke=0,Re=0;if(Re=K,K=K+336|0,Ae=Re+168|0,me=Re,_=A,p=d[_>>2]|0,_=d[_+4>>2]|0,(p|0)==0&(_|0)==0){K=Re;return}if(f=A+28|0,st[f>>0]|0?(p=Xu(p,_)|0,_=Z()|0):st[f>>0]=1,ke=A+20|0,!(d[d[ke>>2]>>2]|0)){f=A+24|0,p=d[f>>2]|0,p|0&&An(p),qe=A,d[qe>>2]=0,d[qe+4>>2]=0,d[A+8>>2]=0,d[ke>>2]=0,d[A+12>>2]=-1,d[A+16>>2]=0,d[f>>2]=0,K=Re;return}qe=A+16|0,f=d[qe>>2]|0,y=f&15;e:do if((p|0)==0&(_|0)==0)Xe=A+24|0;else{Ce=A+12|0,ie=(y|0)==3,q=f&255,U=(y|1|0)==3,pe=A+24|0,I=(y+-1|0)>>>0<3,M=(y|2|0)==3,N=me+8|0;t:for(;;){if(T=bt(p|0,_|0,52)|0,Z()|0,T=T&15,(T|0)==(d[Ce>>2]|0)){switch(q&15){case 0:case 2:case 3:{if(y=Ol(p,_,Ae)|0,y|0){Be=15;break t}if(Da(d[ke>>2]|0,d[pe>>2]|0,Ae)|0){Be=19;break t}break}}if(U&&(y=d[(d[ke>>2]|0)+4>>2]|0,d[Ae>>2]=d[y>>2],d[Ae+4>>2]=d[y+4>>2],d[Ae+8>>2]=d[y+8>>2],d[Ae+12>>2]=d[y+12>>2],Lo(26832,Ae)|0)){if(PA(d[(d[ke>>2]|0)+4>>2]|0,T,me)|0){Be=25;break}if(y=me,(d[y>>2]|0)==(p|0)&&(d[y+4>>2]|0)==(_|0)){Be=29;break}}if(I){if(y=Il(p,_,Ae)|0,y|0){Be=32;break}if(FA(p,_,me,0)|0){Be=36;break}if(M&&Oo(d[ke>>2]|0,d[pe>>2]|0,Ae,me)|0){Be=42;break}if(U&&zA(d[ke>>2]|0,d[pe>>2]|0,Ae,me)|0){Be=42;break}}if(ie){if(f=FA(p,_,Ae,1)|0,y=d[pe>>2]|0,f|0){Be=45;break}if(nf(y,Ae)|0){if(rf(me,Ae),np(Ae,d[pe>>2]|0)|0){Be=53;break}if(Da(d[ke>>2]|0,d[pe>>2]|0,N)|0){Be=53;break}if(zA(d[ke>>2]|0,d[pe>>2]|0,me,Ae)|0){Be=53;break}}}}do if((T|0)<(d[Ce>>2]|0)){if(f=FA(p,_,Ae,1)|0,y=d[pe>>2]|0,f|0){Be=58;break t}if(!(nf(y,Ae)|0)){Be=73;break}if(np(d[pe>>2]|0,Ae)|0&&(rf(me,Ae),Oo(d[ke>>2]|0,d[pe>>2]|0,me,Ae)|0)){Be=65;break t}if(p=DA(p,_,T+1|0,me)|0,p|0){Be=67;break t}_=me,p=d[_>>2]|0,_=d[_+4>>2]|0}else Be=73;while(!1);if((Be|0)==73&&(Be=0,p=Xu(p,_)|0,_=Z()|0),(p|0)==0&(_|0)==0){Xe=pe;break e}}switch(Be|0){case 15:{f=d[pe>>2]|0,f|0&&An(f),Be=A,d[Be>>2]=0,d[Be+4>>2]=0,d[ke>>2]=0,d[Ce>>2]=-1,d[qe>>2]=0,d[pe>>2]=0,d[A+8>>2]=y,Be=20;break}case 19:{d[A>>2]=p,d[A+4>>2]=_,Be=20;break}case 25:{Ut(27795,27761,470,27772);break}case 29:{d[A>>2]=p,d[A+4>>2]=_,K=Re;return}case 32:{f=d[pe>>2]|0,f|0&&An(f),Xe=A,d[Xe>>2]=0,d[Xe+4>>2]=0,d[ke>>2]=0,d[Ce>>2]=-1,d[qe>>2]=0,d[pe>>2]=0,d[A+8>>2]=y,K=Re;return}case 36:{Ut(27795,27761,493,27772);break}case 42:{d[A>>2]=p,d[A+4>>2]=_,K=Re;return}case 45:{y|0&&An(y),Be=A,d[Be>>2]=0,d[Be+4>>2]=0,d[ke>>2]=0,d[Ce>>2]=-1,d[qe>>2]=0,d[pe>>2]=0,d[A+8>>2]=f,Be=55;break}case 53:{d[A>>2]=p,d[A+4>>2]=_,Be=55;break}case 58:{y|0&&An(y),Be=A,d[Be>>2]=0,d[Be+4>>2]=0,d[ke>>2]=0,d[Ce>>2]=-1,d[qe>>2]=0,d[pe>>2]=0,d[A+8>>2]=f,Be=71;break}case 65:{d[A>>2]=p,d[A+4>>2]=_,Be=71;break}case 67:{f=d[pe>>2]|0,f|0&&An(f),Xe=A,d[Xe>>2]=0,d[Xe+4>>2]=0,d[ke>>2]=0,d[Ce>>2]=-1,d[qe>>2]=0,d[pe>>2]=0,d[A+8>>2]=p,K=Re;return}}if((Be|0)==20){K=Re;return}else if((Be|0)==55){K=Re;return}else if((Be|0)==71){K=Re;return}}while(!1);f=d[Xe>>2]|0,f|0&&An(f),Be=A,d[Be>>2]=0,d[Be+4>>2]=0,d[A+8>>2]=0,d[ke>>2]=0,d[A+12>>2]=-1,d[qe>>2]=0,d[Xe>>2]=0,K=Re}function Xu(A,f){A=A|0,f=f|0;var p=0,_=0,y=0,T=0,M=0,N=0,U=0,I=0,q=0,ie=0;ie=K,K=K+16|0,q=ie,_=bt(A|0,f|0,52)|0,Z()|0,_=_&15,p=bt(A|0,f|0,45)|0,Z()|0;do if(_){for(;p=Nt(_+4095|0,0,52)|0,y=Z()|0|f&-15728641,T=(15-_|0)*3|0,M=Nt(7,0,T|0)|0,N=Z()|0,p=p|A|M,y=y|N,U=bt(A|0,f|0,T|0)|0,Z()|0,U=U&7,_=_+-1|0,!(U>>>0<6);)if(_)f=y,A=p;else{I=4;break}if((I|0)==4){p=bt(p|0,y|0,45)|0,Z()|0;break}return q=(U|0)==0&(Ci(p,y)|0)!=0,q=Nt((q?2:1)+U|0,0,T|0)|0,I=Z()|0|f&~N,q=q|A&~M,ht(I|0),K=ie,q|0}while(!1);return p=p&127,p>>>0>120?(I=0,q=0,ht(I|0),K=ie,q|0):(Iu(q,0,p+1|0,0),I=d[q+4>>2]|0,q=d[q>>2]|0,ht(I|0),K=ie,q|0)}function kA(A,f,p,_,y,T){A=A|0,f=f|0,p=p|0,_=_|0,y=y|0,T=T|0;var M=0,N=0,U=0,I=0,q=0,ie=0,pe=0,Ae=0,me=0,Ce=0,Be=0;Be=K,K=K+160|0,ie=Be+80|0,N=Be+64|0,pe=Be+112|0,Ce=Be,Ca(ie,A,f,p),I=ie,sl(N,d[I>>2]|0,d[I+4>>2]|0,f),I=N,U=d[I>>2]|0,I=d[I+4>>2]|0,M=d[ie+8>>2]|0,Ae=pe+4|0,d[Ae>>2]=d[ie>>2],d[Ae+4>>2]=d[ie+4>>2],d[Ae+8>>2]=d[ie+8>>2],d[Ae+12>>2]=d[ie+12>>2],d[Ae+16>>2]=d[ie+16>>2],d[Ae+20>>2]=d[ie+20>>2],d[Ae+24>>2]=d[ie+24>>2],d[Ae+28>>2]=d[ie+28>>2],Ae=Ce,d[Ae>>2]=U,d[Ae+4>>2]=I,Ae=Ce+8|0,d[Ae>>2]=M,A=Ce+12|0,f=pe,p=A+36|0;do d[A>>2]=d[f>>2],A=A+4|0,f=f+4|0;while((A|0)<(p|0));if(pe=Ce+48|0,d[pe>>2]=d[N>>2],d[pe+4>>2]=d[N+4>>2],d[pe+8>>2]=d[N+8>>2],d[pe+12>>2]=d[N+12>>2],(U|0)==0&(I|0)==0)return Ce=M,K=Be,Ce|0;p=Ce+16|0,q=Ce+24|0,ie=Ce+28|0,M=0,N=0,f=U,A=I;do{if(!((M|0)<(y|0)|(M|0)==(y|0)&N>>>0<_>>>0)){me=4;break}if(I=N,N=Yt(N|0,M|0,1,0)|0,M=Z()|0,I=T+(I<<3)|0,d[I>>2]=f,d[I+4>>2]=A,uf(pe),A=pe,f=d[A>>2]|0,A=d[A+4>>2]|0,(f|0)==0&(A|0)==0){if(al(p),f=p,A=d[f>>2]|0,f=d[f+4>>2]|0,(A|0)==0&(f|0)==0){me=10;break}Vu(A,f,d[ie>>2]|0,pe),A=pe,f=d[A>>2]|0,A=d[A+4>>2]|0}I=Ce,d[I>>2]=f,d[I+4>>2]=A}while(!((f|0)==0&(A|0)==0));return(me|0)==4?(A=Ce+40|0,f=d[A>>2]|0,f|0&&An(f),me=Ce+16|0,d[me>>2]=0,d[me+4>>2]=0,d[q>>2]=0,d[Ce+36>>2]=0,d[ie>>2]=-1,d[Ce+32>>2]=0,d[A>>2]=0,Vu(0,0,0,pe),d[Ce>>2]=0,d[Ce+4>>2]=0,d[Ae>>2]=0,Ce=14,K=Be,Ce|0):((me|0)==10&&(d[Ce>>2]=0,d[Ce+4>>2]=0,d[Ae>>2]=d[q>>2]),Ce=d[Ae>>2]|0,K=Be,Ce|0)}function cf(A,f,p,_){A=A|0,f=f|0,p=p|0,_=_|0;var y=0,T=0,M=0,N=0,U=0,I=0,q=0,ie=0,pe=0,Ae=0;if(ie=K,K=K+48|0,U=ie+32|0,N=ie+40|0,I=ie,!(d[A>>2]|0))return q=_,d[q>>2]=0,d[q+4>>2]=0,q=0,K=ie,q|0;Iu(U,0,0,0),M=U,y=d[M>>2]|0,M=d[M+4>>2]|0;do if(f>>>0>15)q=I,d[q>>2]=0,d[q+4>>2]=0,d[I+8>>2]=4,d[I+12>>2]=-1,q=I+16|0,p=I+29|0,d[q>>2]=0,d[q+4>>2]=0,d[q+8>>2]=0,st[q+12>>0]=0,st[p>>0]=st[N>>0]|0,st[p+1>>0]=st[N+1>>0]|0,st[p+2>>0]=st[N+2>>0]|0,p=4,q=9;else{if(p=Ra(p)|0,p|0){U=I,d[U>>2]=0,d[U+4>>2]=0,d[I+8>>2]=p,d[I+12>>2]=-1,U=I+16|0,q=I+29|0,d[U>>2]=0,d[U+4>>2]=0,d[U+8>>2]=0,st[U+12>>0]=0,st[q>>0]=st[N>>0]|0,st[q+1>>0]=st[N+1>>0]|0,st[q+2>>0]=st[N+2>>0]|0,q=9;break}if(p=Ks((d[A+8>>2]|0)+1|0,32)|0,!p){q=I,d[q>>2]=0,d[q+4>>2]=0,d[I+8>>2]=13,d[I+12>>2]=-1,q=I+16|0,p=I+29|0,d[q>>2]=0,d[q+4>>2]=0,d[q+8>>2]=0,st[q+12>>0]=0,st[p>>0]=st[N>>0]|0,st[p+1>>0]=st[N+1>>0]|0,st[p+2>>0]=st[N+2>>0]|0,p=13,q=9;break}Na(A,p),Ae=I,d[Ae>>2]=y,d[Ae+4>>2]=M,M=I+8|0,d[M>>2]=0,d[I+12>>2]=f,d[I+20>>2]=A,d[I+24>>2]=p,st[I+28>>0]=0,y=I+29|0,st[y>>0]=st[N>>0]|0,st[y+1>>0]=st[N+1>>0]|0,st[y+2>>0]=st[N+2>>0]|0,d[I+16>>2]=3,pe=+tf(p),pe=pe*+il(p),T=+un(+ +J[p>>3]),T=pe/+li(+ +df(+T,+ +un(+ +J[p+8>>3])))*6371.007180918475*6371.007180918475,y=I+12|0,p=d[y>>2]|0;e:do if((p|0)>0)do{if(dp(p+-1|0,U)|0,!(T/+J[U>>3]>10))break e;Ae=d[y>>2]|0,p=Ae+-1|0,d[y>>2]=p}while((Ae|0)>1);while(!1);if(al(I),y=_,d[y>>2]=0,d[y+4>>2]=0,y=I,p=d[y>>2]|0,y=d[y+4>>2]|0,!((p|0)==0&(y|0)==0))do lf(p,y,f,U)|0,N=U,A=_,N=Yt(d[A>>2]|0,d[A+4>>2]|0,d[N>>2]|0,d[N+4>>2]|0)|0,A=Z()|0,Ae=_,d[Ae>>2]=N,d[Ae+4>>2]=A,al(I),Ae=I,p=d[Ae>>2]|0,y=d[Ae+4>>2]|0;while(!((p|0)==0&(y|0)==0));p=d[M>>2]|0}while(!1);return Ae=p,K=ie,Ae|0}function Ts(A,f,p){A=A|0,f=f|0,p=p|0;var _=0,y=0,T=0,M=0,N=0,U=0,I=0,q=0,ie=0,pe=0;if(!(Lo(f,p)|0)||(f=TA(f)|0,_=+J[p>>3],y=+J[p+8>>3],y=f&y<0?y+6.283185307179586:y,pe=d[A>>2]|0,(pe|0)<=0))return pe=0,pe|0;if(ie=d[A+4>>2]|0,f){f=0,q=y,p=-1,A=0;e:for(;;){for(I=A;M=+J[ie+(I<<4)>>3],y=+J[ie+(I<<4)+8>>3],A=(p+2|0)%(pe|0)|0,T=+J[ie+(A<<4)>>3],N=+J[ie+(A<<4)+8>>3],M>T?(U=M,M=N):(U=T,T=M,M=y,y=N),_=_==T|_==U?_+2220446049250313e-31:_,!!(_U);)if(p=I+1|0,(p|0)>=(pe|0)){p=22;break e}else A=I,I=p,p=A;if(N=M<0?M+6.283185307179586:M,M=y<0?y+6.283185307179586:y,q=N==q|M==q?q+-2220446049250313e-31:q,U=N+(M-N)*((_-T)/(U-T)),(U<0?U+6.283185307179586:U)>q&&(f=f^1),A=I+1|0,(A|0)>=(pe|0)){p=22;break}else p=I}if((p|0)==22)return f|0}else{f=0,q=y,p=-1,A=0;e:for(;;){for(I=A;M=+J[ie+(I<<4)>>3],y=+J[ie+(I<<4)+8>>3],A=(p+2|0)%(pe|0)|0,T=+J[ie+(A<<4)>>3],N=+J[ie+(A<<4)+8>>3],M>T?(U=M,M=N):(U=T,T=M,M=y,y=N),_=_==T|_==U?_+2220446049250313e-31:_,!!(_U);)if(p=I+1|0,(p|0)>=(pe|0)){p=22;break e}else A=I,I=p,p=A;if(q=M==q|y==q?q+-2220446049250313e-31:q,M+(y-M)*((_-T)/(U-T))>q&&(f=f^1),A=I+1|0,(A|0)>=(pe|0)){p=22;break}else p=I}if((p|0)==22)return f|0}return 0}function pa(A,f){A=A|0,f=f|0;var p=0,_=0,y=0,T=0,M=0,N=0,U=0,I=0,q=0,ie=0,pe=0,Ae=0,me=0,Ce=0,Be=0,Xe=0,qe=0;if(me=d[A>>2]|0,!me){d[f>>2]=0,d[f+4>>2]=0,d[f+8>>2]=0,d[f+12>>2]=0,d[f+16>>2]=0,d[f+20>>2]=0,d[f+24>>2]=0,d[f+28>>2]=0;return}if(Ce=f+8|0,J[Ce>>3]=17976931348623157e292,Be=f+24|0,J[Be>>3]=17976931348623157e292,J[f>>3]=-17976931348623157e292,Xe=f+16|0,J[Xe>>3]=-17976931348623157e292,!((me|0)<=0)){for(pe=d[A+4>>2]|0,I=17976931348623157e292,q=-17976931348623157e292,ie=0,A=-1,T=17976931348623157e292,M=17976931348623157e292,U=-17976931348623157e292,_=-17976931348623157e292,Ae=0;p=+J[pe+(Ae<<4)>>3],N=+J[pe+(Ae<<4)+8>>3],A=A+2|0,y=+J[pe+(((A|0)==(me|0)?0:A)<<4)+8>>3],p>3]=p,T=p),N>3]=N,M=N),p>U?J[f>>3]=p:p=U,N>_&&(J[Xe>>3]=N,_=N),I=N>0&Nq?N:q,ie=ie|+un(+(N-y))>3.141592653589793,A=Ae+1|0,(A|0)!=(me|0);)qe=Ae,U=p,Ae=A,A=qe;ie&&(J[Xe>>3]=q,J[Be>>3]=I)}}function Ra(A){return A=A|0,(A>>>0<4?0:15)|0}function Na(A,f){A=A|0,f=f|0;var p=0,_=0,y=0,T=0,M=0,N=0,U=0,I=0,q=0,ie=0,pe=0,Ae=0,me=0,Ce=0,Be=0,Xe=0,qe=0,ke=0,Re=0,Pt=0,rn=0,en=0;if(me=d[A>>2]|0,me){if(Ce=f+8|0,J[Ce>>3]=17976931348623157e292,Be=f+24|0,J[Be>>3]=17976931348623157e292,J[f>>3]=-17976931348623157e292,Xe=f+16|0,J[Xe>>3]=-17976931348623157e292,(me|0)>0){for(y=d[A+4>>2]|0,pe=17976931348623157e292,Ae=-17976931348623157e292,_=0,p=-1,U=17976931348623157e292,I=17976931348623157e292,ie=-17976931348623157e292,M=-17976931348623157e292,qe=0;T=+J[y+(qe<<4)>>3],q=+J[y+(qe<<4)+8>>3],rn=p+2|0,N=+J[y+(((rn|0)==(me|0)?0:rn)<<4)+8>>3],T>3]=T,U=T),q>3]=q,I=q),T>ie?J[f>>3]=T:T=ie,q>M&&(J[Xe>>3]=q,M=q),pe=q>0&qAe?q:Ae,_=_|+un(+(q-N))>3.141592653589793,p=qe+1|0,(p|0)!=(me|0);)rn=qe,ie=T,qe=p,p=rn;_&&(J[Xe>>3]=Ae,J[Be>>3]=pe)}}else d[f>>2]=0,d[f+4>>2]=0,d[f+8>>2]=0,d[f+12>>2]=0,d[f+16>>2]=0,d[f+20>>2]=0,d[f+24>>2]=0,d[f+28>>2]=0;if(rn=A+8|0,p=d[rn>>2]|0,!((p|0)<=0)){Pt=A+12|0,Re=0;do if(y=d[Pt>>2]|0,_=Re,Re=Re+1|0,Be=f+(Re<<5)|0,Xe=d[y+(_<<3)>>2]|0,Xe){if(qe=f+(Re<<5)+8|0,J[qe>>3]=17976931348623157e292,A=f+(Re<<5)+24|0,J[A>>3]=17976931348623157e292,J[Be>>3]=-17976931348623157e292,ke=f+(Re<<5)+16|0,J[ke>>3]=-17976931348623157e292,(Xe|0)>0){for(me=d[y+(_<<3)+4>>2]|0,pe=17976931348623157e292,Ae=-17976931348623157e292,y=0,_=-1,Ce=0,U=17976931348623157e292,I=17976931348623157e292,q=-17976931348623157e292,M=-17976931348623157e292;T=+J[me+(Ce<<4)>>3],ie=+J[me+(Ce<<4)+8>>3],_=_+2|0,N=+J[me+(((_|0)==(Xe|0)?0:_)<<4)+8>>3],T>3]=T,U=T),ie>3]=ie,I=ie),T>q?J[Be>>3]=T:T=q,ie>M&&(J[ke>>3]=ie,M=ie),pe=ie>0&ieAe?ie:Ae,y=y|+un(+(ie-N))>3.141592653589793,_=Ce+1|0,(_|0)!=(Xe|0);)en=Ce,Ce=_,q=T,_=en;y&&(J[ke>>3]=Ae,J[A>>3]=pe)}}else d[Be>>2]=0,d[Be+4>>2]=0,d[Be+8>>2]=0,d[Be+12>>2]=0,d[Be+16>>2]=0,d[Be+20>>2]=0,d[Be+24>>2]=0,d[Be+28>>2]=0,p=d[rn>>2]|0;while((Re|0)<(p|0))}}function Da(A,f,p){A=A|0,f=f|0,p=p|0;var _=0,y=0,T=0;if(!(Ts(A,f,p)|0))return y=0,y|0;if(y=A+8|0,(d[y>>2]|0)<=0)return y=1,y|0;for(_=A+12|0,A=0;;){if(T=A,A=A+1|0,Ts((d[_>>2]|0)+(T<<3)|0,f+(A<<5)|0,p)|0){A=0,_=6;break}if((A|0)>=(d[y>>2]|0)){A=1,_=6;break}}return(_|0)==6?A|0:0}function Oo(A,f,p,_){A=A|0,f=f|0,p=p|0,_=_|0;var y=0,T=0,M=0,N=0,U=0,I=0,q=0;if(I=K,K=K+16|0,N=I,M=p+8|0,!(Ts(A,f,M)|0))return U=0,K=I,U|0;U=A+8|0;e:do if((d[U>>2]|0)>0){for(T=A+12|0,y=0;;){if(q=y,y=y+1|0,Ts((d[T>>2]|0)+(q<<3)|0,f+(y<<5)|0,M)|0){y=0;break}if((y|0)>=(d[U>>2]|0))break e}return K=I,y|0}while(!1);if(hf(A,f,p,_)|0)return q=0,K=I,q|0;d[N>>2]=d[p>>2],d[N+4>>2]=M,y=d[U>>2]|0;e:do if((y|0)>0)for(A=A+12|0,M=0,T=y;;){if(y=d[A>>2]|0,(d[y+(M<<3)>>2]|0)>0){if(Ts(N,_,d[y+(M<<3)+4>>2]|0)|0){y=0;break e}if(y=M+1|0,hf((d[A>>2]|0)+(M<<3)|0,f+(y<<5)|0,p,_)|0){y=0;break e}T=d[U>>2]|0}else y=M+1|0;if((y|0)<(T|0))M=y;else{y=1;break}}else y=1;while(!1);return q=y,K=I,q|0}function hf(A,f,p,_){A=A|0,f=f|0,p=p|0,_=_|0;var y=0,T=0,M=0,N=0,U=0,I=0,q=0,ie=0,pe=0,Ae=0,me=0,Ce=0,Be=0,Xe=0,qe=0,ke=0,Re=0,Pt=0,rn=0,en=0,Un=0;if(rn=K,K=K+176|0,qe=rn+172|0,y=rn+168|0,ke=rn,!(nf(f,_)|0))return A=0,K=rn,A|0;if(wA(f,_,qe,y),Gl(ke|0,p|0,168)|0,(d[p>>2]|0)>0){f=0;do en=ke+8+(f<<4)+8|0,Xe=+Xs(+J[en>>3],d[y>>2]|0),J[en>>3]=Xe,f=f+1|0;while((f|0)<(d[p>>2]|0))}Ce=+J[_>>3],Be=+J[_+8>>3],Xe=+Xs(+J[_+16>>3],d[y>>2]|0),Ae=+Xs(+J[_+24>>3],d[y>>2]|0);e:do if((d[A>>2]|0)>0){if(_=A+4|0,y=d[ke>>2]|0,(y|0)<=0){for(f=0;;)if(f=f+1|0,(f|0)>=(d[A>>2]|0)){f=0;break e}}for(p=0;;){if(f=d[_>>2]|0,pe=+J[f+(p<<4)>>3],me=+Xs(+J[f+(p<<4)+8>>3],d[qe>>2]|0),f=d[_>>2]|0,p=p+1|0,en=(p|0)%(d[A>>2]|0)|0,T=+J[f+(en<<4)>>3],M=+Xs(+J[f+(en<<4)+8>>3],d[qe>>2]|0),!(pe>=Ce)|!(T>=Ce)&&!(pe<=Be)|!(T<=Be)&&!(me<=Ae)|!(M<=Ae)&&!(me>=Xe)|!(M>=Xe)){ie=T-pe,I=M-me,f=0;do if(Un=f,f=f+1|0,en=(f|0)==(y|0)?0:f,T=+J[ke+8+(Un<<4)+8>>3],M=+J[ke+8+(en<<4)+8>>3]-T,N=+J[ke+8+(Un<<4)>>3],U=+J[ke+8+(en<<4)>>3]-N,q=ie*M-I*U,q!=0&&(Re=me-T,Pt=pe-N,U=(Re*U-M*Pt)/q,!(U<0|U>1))&&(q=(ie*Re-I*Pt)/q,q>=0&q<=1)){f=1;break e}while((f|0)<(y|0))}if((p|0)>=(d[A>>2]|0)){f=0;break}}}else f=0;while(!1);return Un=f,K=rn,Un|0}function zA(A,f,p,_){A=A|0,f=f|0,p=p|0,_=_|0;var y=0,T=0,M=0;if(hf(A,f,p,_)|0)return T=1,T|0;if(T=A+8|0,(d[T>>2]|0)<=0)return T=0,T|0;for(y=A+12|0,A=0;;){if(M=A,A=A+1|0,hf((d[y>>2]|0)+(M<<3)|0,f+(A<<5)|0,p,_)|0){A=1,y=6;break}if((A|0)>=(d[T>>2]|0)){A=0,y=6;break}}return(y|0)==6?A|0:0}function _p(){return 8}function R1(){return 16}function fs(){return 168}function sr(){return 8}function mi(){return 16}function kl(){return 12}function Pa(){return 8}function yp(A){return A=A|0,+(+((d[A>>2]|0)>>>0)+4294967296*+(d[A+4>>2]|0))}function zl(A){A=A|0;var f=0,p=0;return p=+J[A>>3],f=+J[A+8>>3],+ +qn(+(p*p+f*f))}function xp(A,f,p,_,y){A=A|0,f=f|0,p=p|0,_=_|0,y=y|0;var T=0,M=0,N=0,U=0,I=0,q=0,ie=0,pe=0;I=+J[A>>3],U=+J[f>>3]-I,N=+J[A+8>>3],M=+J[f+8>>3]-N,ie=+J[p>>3],T=+J[_>>3]-ie,pe=+J[p+8>>3],q=+J[_+8>>3]-pe,T=(T*(N-pe)-(I-ie)*q)/(U*q-M*T),J[y>>3]=I+U*T,J[y+8>>3]=N+M*T}function bp(A,f){return A=A|0,f=f|0,+un(+(+J[A>>3]-+J[f>>3]))<11920928955078125e-23?(f=+un(+(+J[A+8>>3]-+J[f+8>>3]))<11920928955078125e-23,f|0):(f=0,f|0)}function ar(A,f){A=A|0,f=f|0;var p=0,_=0,y=0;return y=+J[A>>3]-+J[f>>3],_=+J[A+8>>3]-+J[f+8>>3],p=+J[A+16>>3]-+J[f+16>>3],+(y*y+_*_+p*p)}function Yu(A,f){A=A|0,f=f|0;var p=0,_=0,y=0;p=+J[A>>3],_=+li(+p),p=+Fn(+p),J[f+16>>3]=p,p=+J[A+8>>3],y=_*+li(+p),J[f>>3]=y,p=_*+Fn(+p),J[f+8>>3]=p}function Sp(A,f,p){A=A|0,f=f|0,p=p|0;var _=0,y=0,T=0;if(T=K,K=K+16|0,y=T,_=Ci(A,f)|0,(p+-1|0)>>>0>5||(_=(_|0)!=0,(p|0)==1&_))return y=-1,K=T,y|0;do if(ol(A,f,y)|0)_=-1;else if(_){_=((d[26352+(p<<2)>>2]|0)+5-(d[y>>2]|0)|0)%5|0;break}else{_=((d[26384+(p<<2)>>2]|0)+6-(d[y>>2]|0)|0)%6|0;break}while(!1);return y=_,K=T,y|0}function ol(A,f,p){A=A|0,f=f|0,p=p|0;var _=0,y=0,T=0,M=0,N=0,U=0,I=0,q=0;if(q=K,K=K+32|0,N=q+16|0,U=q,_=zu(A,f,N)|0,_|0)return p=_,K=q,p|0;T=g1(A,f)|0,I=$s(A,f)|0,tp(T,U),_=$c(T,d[N>>2]|0)|0;do if(Bi(T)|0){do switch(T|0){case 4:{y=0;break}case 14:{y=1;break}case 24:{y=2;break}case 38:{y=3;break}case 49:{y=4;break}case 58:{y=5;break}case 63:{y=6;break}case 72:{y=7;break}case 83:{y=8;break}case 97:{y=9;break}case 107:{y=10;break}case 117:{y=11;break}default:Ut(27795,27797,75,27806)}while(!1);if(M=d[26416+(y*24|0)+8>>2]|0,f=d[26416+(y*24|0)+16>>2]|0,A=d[N>>2]|0,(A|0)!=(d[U>>2]|0)&&(U=Wc(T)|0,A=d[N>>2]|0,U|(A|0)==(f|0)&&(_=(_+1|0)%6|0)),(I|0)==3&(A|0)==(f|0)){_=(_+5|0)%6|0;break}(I|0)==5&(A|0)==(M|0)&&(_=(_+1|0)%6|0)}while(!1);return d[p>>2]=_,p=0,K=q,p|0}function Qs(A,f,p,_){A=A|0,f=f|0,p=p|0,_=_|0;var y=0,T=0,M=0,N=0,U=0,I=0,q=0,ie=0,pe=0,Ae=0,me=0,Ce=0,Be=0,Xe=0,qe=0,ke=0;if(ke=K,K=K+32|0,qe=ke+24|0,Be=ke+20|0,me=ke+8|0,Ae=ke+16|0,pe=ke,U=(Ci(A,f)|0)==0,U=U?6:5,q=bt(A|0,f|0,52)|0,Z()|0,q=q&15,U>>>0<=p>>>0)return _=2,K=ke,_|0;ie=(q|0)==0,!ie&&(Ce=Nt(7,0,(q^15)*3|0)|0,(Ce&A|0)==0&((Z()|0)&f|0)==0)?y=p:T=4;e:do if((T|0)==4){if(y=(Ci(A,f)|0)!=0,((y?4:5)|0)<(p|0)||ol(A,f,qe)|0||(T=(d[qe>>2]|0)+p|0,y?y=26704+(((T|0)%5|0)<<2)|0:y=26736+(((T|0)%6|0)<<2)|0,Ce=d[y>>2]|0,(Ce|0)==7))return _=1,K=ke,_|0;d[Be>>2]=0,y=cn(A,f,Ce,Be,me)|0;do if(!y){if(N=me,I=d[N>>2]|0,N=d[N+4>>2]|0,M=N>>>0>>0|(N|0)==(f|0)&I>>>0>>0,T=M?I:A,M=M?N:f,!ie&&(ie=Nt(7,0,(q^15)*3|0)|0,(I&ie|0)==0&(N&(Z()|0)|0)==0))y=p;else{if(N=(p+-1+U|0)%(U|0)|0,y=Ci(A,f)|0,(N|0)<0&&Ut(27795,27797,248,27822),U=(y|0)!=0,((U?4:5)|0)<(N|0)&&Ut(27795,27797,248,27822),ol(A,f,qe)|0&&Ut(27795,27797,248,27822),y=(d[qe>>2]|0)+N|0,U?y=26704+(((y|0)%5|0)<<2)|0:y=26736+(((y|0)%6|0)<<2)|0,N=d[y>>2]|0,(N|0)==7&&Ut(27795,27797,248,27822),d[Ae>>2]=0,y=cn(A,f,N,Ae,pe)|0,y|0)break;I=pe,U=d[I>>2]|0,I=d[I+4>>2]|0;do if(I>>>0>>0|(I|0)==(M|0)&U>>>0>>0){if(Ci(U,I)|0?T=pi(U,I,A,f)|0:T=d[26800+((((d[Ae>>2]|0)+(d[26768+(N<<2)>>2]|0)|0)%6|0)<<2)>>2]|0,y=Ci(U,I)|0,(T+-1|0)>>>0>5){y=-1,T=U,M=I;break}if(y=(y|0)!=0,(T|0)==1&y){y=-1,T=U,M=I;break}do if(ol(U,I,qe)|0)y=-1;else if(y){y=((d[26352+(T<<2)>>2]|0)+5-(d[qe>>2]|0)|0)%5|0;break}else{y=((d[26384+(T<<2)>>2]|0)+6-(d[qe>>2]|0)|0)%6|0;break}while(!1);T=U,M=I}else y=p;while(!1);N=me,I=d[N>>2]|0,N=d[N+4>>2]|0}if((T|0)==(I|0)&(M|0)==(N|0)){if(U=(Ci(I,N)|0)!=0,U?A=pi(I,N,A,f)|0:A=d[26800+((((d[Be>>2]|0)+(d[26768+(Ce<<2)>>2]|0)|0)%6|0)<<2)>>2]|0,y=Ci(I,N)|0,(A+-1|0)>>>0<=5&&(Xe=(y|0)!=0,!((A|0)==1&Xe)))do if(ol(I,N,qe)|0)y=-1;else if(Xe){y=((d[26352+(A<<2)>>2]|0)+5-(d[qe>>2]|0)|0)%5|0;break}else{y=((d[26384+(A<<2)>>2]|0)+6-(d[qe>>2]|0)|0)%6|0;break}while(!1);else y=-1;y=y+1|0,y=(y|0)==6|U&(y|0)==5?0:y}f=M,A=T;break e}while(!1);return _=y,K=ke,_|0}while(!1);return Xe=Nt(y|0,0,56)|0,qe=Z()|0|f&-2130706433|536870912,d[_>>2]=Xe|A,d[_+4>>2]=qe,_=0,K=ke,_|0}function Qu(A,f,p){A=A|0,f=f|0,p=p|0;var _=0,y=0,T=0;return T=(Ci(A,f)|0)==0,_=Qs(A,f,0,p)|0,y=(_|0)==0,T?!y||(_=Qs(A,f,1,p+8|0)|0,_|0)||(_=Qs(A,f,2,p+16|0)|0,_|0)||(_=Qs(A,f,3,p+24|0)|0,_|0)||(_=Qs(A,f,4,p+32|0)|0,_)?(T=_,T|0):Qs(A,f,5,p+40|0)|0:!y||(_=Qs(A,f,1,p+8|0)|0,_|0)||(_=Qs(A,f,2,p+16|0)|0,_|0)||(_=Qs(A,f,3,p+24|0)|0,_|0)||(_=Qs(A,f,4,p+32|0)|0,_|0)?(T=_,T|0):(T=p+40|0,d[T>>2]=0,d[T+4>>2]=0,T=0,T|0)}function ll(A,f,p){A=A|0,f=f|0,p=p|0;var _=0,y=0,T=0,M=0,N=0,U=0;return U=K,K=K+192|0,y=U,T=U+168|0,M=bt(A|0,f|0,56)|0,Z()|0,M=M&7,N=f&-2130706433|134217728,_=zu(A,N,T)|0,_|0?(N=_,K=U,N|0):(f=bt(A|0,f|0,52)|0,Z()|0,f=f&15,Ci(A,N)|0?sp(T,f,M,1,y):RA(T,f,M,1,y),N=y+8|0,d[p>>2]=d[N>>2],d[p+4>>2]=d[N+4>>2],d[p+8>>2]=d[N+8>>2],d[p+12>>2]=d[N+12>>2],N=0,K=U,N|0)}function ul(A,f){A=A|0,f=f|0;var p=0,_=0,y=0,T=0;return y=K,K=K+16|0,p=y,!(!0&(f&2013265920|0)==536870912)||(_=f&-2130706433|134217728,!(NA(A,_)|0))?(_=0,K=y,_|0):(T=bt(A|0,f|0,56)|0,Z()|0,T=(Qs(A,_,T&7,p)|0)==0,_=p,_=T&((d[_>>2]|0)==(A|0)?(d[_+4>>2]|0)==(f|0):0)&1,K=y,_|0)}function Io(A,f,p){A=A|0,f=f|0,p=p|0;var _=0;(f|0)>0?(_=Ks(f,4)|0,d[A>>2]=_,_||Ut(27835,27858,40,27872)):d[A>>2]=0,d[A+4>>2]=f,d[A+8>>2]=0,d[A+12>>2]=p}function GA(A){A=A|0;var f=0,p=0,_=0,y=0,T=0,M=0,N=0;y=A+4|0,T=A+12|0,M=A+8|0;e:for(;;){for(p=d[y>>2]|0,f=0;;){if((f|0)>=(p|0))break e;if(_=d[A>>2]|0,N=d[_+(f<<2)>>2]|0,!N)f=f+1|0;else break}f=_+(~~(+un(+(+Hs(10,+ +(15-(d[T>>2]|0)|0))*(+J[N>>3]+ +J[N+8>>3])))%+(p|0))>>>0<<2)|0,p=d[f>>2]|0;t:do if(p|0){if(_=N+32|0,(p|0)==(N|0))d[f>>2]=d[_>>2];else{if(p=p+32|0,f=d[p>>2]|0,!f)break;for(;(f|0)!=(N|0);)if(p=f+32|0,f=d[p>>2]|0,!f)break t;d[p>>2]=d[_>>2]}An(N),d[M>>2]=(d[M>>2]|0)+-1}while(!1)}An(d[A>>2]|0)}function qA(A){A=A|0;var f=0,p=0,_=0;for(_=d[A+4>>2]|0,p=0;;){if((p|0)>=(_|0)){f=0,p=4;break}if(f=d[(d[A>>2]|0)+(p<<2)>>2]|0,!f)p=p+1|0;else{p=4;break}}return(p|0)==4?f|0:0}function Ku(A,f){A=A|0,f=f|0;var p=0,_=0,y=0,T=0;if(p=~~(+un(+(+Hs(10,+ +(15-(d[A+12>>2]|0)|0))*(+J[f>>3]+ +J[f+8>>3])))%+(d[A+4>>2]|0))>>>0,p=(d[A>>2]|0)+(p<<2)|0,_=d[p>>2]|0,!_)return T=1,T|0;T=f+32|0;do if((_|0)!=(f|0)){if(p=d[_+32>>2]|0,!p)return T=1,T|0;for(y=p;;){if((y|0)==(f|0)){y=8;break}if(p=d[y+32>>2]|0,p)_=y,y=p;else{p=1,y=10;break}}if((y|0)==8){d[_+32>>2]=d[T>>2];break}else if((y|0)==10)return p|0}else d[p>>2]=d[T>>2];while(!1);return An(f),T=A+8|0,d[T>>2]=(d[T>>2]|0)+-1,T=0,T|0}function VA(A,f,p){A=A|0,f=f|0,p=p|0;var _=0,y=0,T=0,M=0;T=Fo(40)|0,T||Ut(27888,27858,98,27901),d[T>>2]=d[f>>2],d[T+4>>2]=d[f+4>>2],d[T+8>>2]=d[f+8>>2],d[T+12>>2]=d[f+12>>2],y=T+16|0,d[y>>2]=d[p>>2],d[y+4>>2]=d[p+4>>2],d[y+8>>2]=d[p+8>>2],d[y+12>>2]=d[p+12>>2],d[T+32>>2]=0,y=~~(+un(+(+Hs(10,+ +(15-(d[A+12>>2]|0)|0))*(+J[f>>3]+ +J[f+8>>3])))%+(d[A+4>>2]|0))>>>0,y=(d[A>>2]|0)+(y<<2)|0,_=d[y>>2]|0;do if(!_)d[y>>2]=T;else{for(;!(Ea(_,f)|0&&Ea(_+16|0,p)|0);)if(y=d[_+32>>2]|0,_=(y|0)==0?_:y,!(d[_+32>>2]|0)){M=10;break}if((M|0)==10){d[_+32>>2]=T;break}return An(T),M=_,M|0}while(!1);return M=A+8|0,d[M>>2]=(d[M>>2]|0)+1,M=T,M|0}function Zu(A,f,p){A=A|0,f=f|0,p=p|0;var _=0,y=0;if(y=~~(+un(+(+Hs(10,+ +(15-(d[A+12>>2]|0)|0))*(+J[f>>3]+ +J[f+8>>3])))%+(d[A+4>>2]|0))>>>0,y=d[(d[A>>2]|0)+(y<<2)>>2]|0,!y)return p=0,p|0;if(!p){for(A=y;;){if(Ea(A,f)|0){_=10;break}if(A=d[A+32>>2]|0,!A){A=0,_=10;break}}if((_|0)==10)return A|0}for(A=y;;){if(Ea(A,f)|0&&Ea(A+16|0,p)|0){_=10;break}if(A=d[A+32>>2]|0,!A){A=0,_=10;break}}return(_|0)==10?A|0:0}function As(A,f){A=A|0,f=f|0;var p=0;if(p=~~(+un(+(+Hs(10,+ +(15-(d[A+12>>2]|0)|0))*(+J[f>>3]+ +J[f+8>>3])))%+(d[A+4>>2]|0))>>>0,A=d[(d[A>>2]|0)+(p<<2)>>2]|0,!A)return p=0,p|0;for(;;){if(Ea(A,f)|0){f=5;break}if(A=d[A+32>>2]|0,!A){A=0,f=5;break}}return(f|0)==5?A|0:0}function HA(){return 27920}function cl(A){return A=+A,~~+pf(+A)|0}function Fo(A){A=A|0;var f=0,p=0,_=0,y=0,T=0,M=0,N=0,U=0,I=0,q=0,ie=0,pe=0,Ae=0,me=0,Ce=0,Be=0,Xe=0,qe=0,ke=0,Re=0,Pt=0;Pt=K,K=K+16|0,pe=Pt;do if(A>>>0<245){if(I=A>>>0<11?16:A+11&-8,A=I>>>3,ie=d[6981]|0,p=ie>>>A,p&3|0)return f=(p&1^1)+A|0,A=27964+(f<<1<<2)|0,p=A+8|0,_=d[p>>2]|0,y=_+8|0,T=d[y>>2]|0,(T|0)==(A|0)?d[6981]=ie&~(1<>2]=A,d[p>>2]=T),Re=f<<3,d[_+4>>2]=Re|3,Re=_+Re+4|0,d[Re>>2]=d[Re>>2]|1,Re=y,K=Pt,Re|0;if(q=d[6983]|0,I>>>0>q>>>0){if(p|0)return f=2<>>12&16,f=f>>>N,p=f>>>5&8,f=f>>>p,T=f>>>2&4,f=f>>>T,A=f>>>1&2,f=f>>>A,_=f>>>1&1,_=(p|N|T|A|_)+(f>>>_)|0,f=27964+(_<<1<<2)|0,A=f+8|0,T=d[A>>2]|0,N=T+8|0,p=d[N>>2]|0,(p|0)==(f|0)?(A=ie&~(1<<_),d[6981]=A):(d[p+12>>2]=f,d[A>>2]=p,A=ie),Re=_<<3,M=Re-I|0,d[T+4>>2]=I|3,y=T+I|0,d[y+4>>2]=M|1,d[T+Re>>2]=M,q|0&&(_=d[6986]|0,f=q>>>3,p=27964+(f<<1<<2)|0,f=1<>2]|0):(d[6981]=A|f,f=p,A=p+8|0),d[A>>2]=_,d[f+12>>2]=_,d[_+8>>2]=f,d[_+12>>2]=p),d[6983]=M,d[6986]=y,Re=N,K=Pt,Re|0;if(T=d[6982]|0,T){for(p=(T&0-T)+-1|0,y=p>>>12&16,p=p>>>y,_=p>>>5&8,p=p>>>_,M=p>>>2&4,p=p>>>M,N=p>>>1&2,p=p>>>N,U=p>>>1&1,U=d[28228+((_|y|M|N|U)+(p>>>U)<<2)>>2]|0,p=U,N=U,U=(d[U+4>>2]&-8)-I|0;A=d[p+16>>2]|0,!(!A&&(A=d[p+20>>2]|0,!A));)M=(d[A+4>>2]&-8)-I|0,y=M>>>0>>0,p=A,N=y?A:N,U=y?M:U;if(M=N+I|0,M>>>0>N>>>0){y=d[N+24>>2]|0,f=d[N+12>>2]|0;do if((f|0)==(N|0)){if(A=N+20|0,f=d[A>>2]|0,!f&&(A=N+16|0,f=d[A>>2]|0,!f)){p=0;break}for(;;)if(_=f+20|0,p=d[_>>2]|0,p)f=p,A=_;else if(_=f+16|0,p=d[_>>2]|0,p)f=p,A=_;else break;d[A>>2]=0,p=f}else p=d[N+8>>2]|0,d[p+12>>2]=f,d[f+8>>2]=p,p=f;while(!1);do if(y|0){if(f=d[N+28>>2]|0,A=28228+(f<<2)|0,(N|0)==(d[A>>2]|0)){if(d[A>>2]=p,!p){d[6982]=T&~(1<>2]|0)==(N|0)?Re:y+20|0)>>2]=p,!p)break;d[p+24>>2]=y,f=d[N+16>>2]|0,f|0&&(d[p+16>>2]=f,d[f+24>>2]=p),f=d[N+20>>2]|0,f|0&&(d[p+20>>2]=f,d[f+24>>2]=p)}while(!1);return U>>>0<16?(Re=U+I|0,d[N+4>>2]=Re|3,Re=N+Re+4|0,d[Re>>2]=d[Re>>2]|1):(d[N+4>>2]=I|3,d[M+4>>2]=U|1,d[M+U>>2]=U,q|0&&(_=d[6986]|0,f=q>>>3,p=27964+(f<<1<<2)|0,f=1<>2]|0):(d[6981]=f|ie,f=p,A=p+8|0),d[A>>2]=_,d[f+12>>2]=_,d[_+8>>2]=f,d[_+12>>2]=p),d[6983]=U,d[6986]=M),Re=N+8|0,K=Pt,Re|0}else ie=I}else ie=I}else ie=I}else if(A>>>0<=4294967231)if(A=A+11|0,I=A&-8,_=d[6982]|0,_){y=0-I|0,A=A>>>8,A?I>>>0>16777215?U=31:(ie=(A+1048320|0)>>>16&8,Ce=A<>>16&4,Ce=Ce<>>16&2,U=14-(N|ie|U)+(Ce<>>15)|0,U=I>>>(U+7|0)&1|U<<1):U=0,p=d[28228+(U<<2)>>2]|0;e:do if(!p)p=0,A=0,Ce=61;else for(A=0,N=I<<((U|0)==31?0:25-(U>>>1)|0),T=0;;){if(M=(d[p+4>>2]&-8)-I|0,M>>>0>>0)if(M)A=p,y=M;else{A=p,y=0,Ce=65;break e}if(Ce=d[p+20>>2]|0,p=d[p+16+(N>>>31<<2)>>2]|0,T=(Ce|0)==0|(Ce|0)==(p|0)?T:Ce,p)N=N<<1;else{p=T,Ce=61;break}}while(!1);if((Ce|0)==61){if((p|0)==0&(A|0)==0){if(A=2<>>12&16,ie=ie>>>M,T=ie>>>5&8,ie=ie>>>T,N=ie>>>2&4,ie=ie>>>N,U=ie>>>1&2,ie=ie>>>U,p=ie>>>1&1,A=0,p=d[28228+((T|M|N|U|p)+(ie>>>p)<<2)>>2]|0}p?Ce=65:(N=A,M=y)}if((Ce|0)==65)for(T=p;;)if(ie=(d[T+4>>2]&-8)-I|0,p=ie>>>0>>0,y=p?ie:y,A=p?T:A,p=d[T+16>>2]|0,p||(p=d[T+20>>2]|0),p)T=p;else{N=A,M=y;break}if((N|0)!=0&&M>>>0<((d[6983]|0)-I|0)>>>0&&(q=N+I|0,q>>>0>N>>>0)){T=d[N+24>>2]|0,f=d[N+12>>2]|0;do if((f|0)==(N|0)){if(A=N+20|0,f=d[A>>2]|0,!f&&(A=N+16|0,f=d[A>>2]|0,!f)){f=0;break}for(;;)if(y=f+20|0,p=d[y>>2]|0,p)f=p,A=y;else if(y=f+16|0,p=d[y>>2]|0,p)f=p,A=y;else break;d[A>>2]=0}else Re=d[N+8>>2]|0,d[Re+12>>2]=f,d[f+8>>2]=Re;while(!1);do if(T){if(A=d[N+28>>2]|0,p=28228+(A<<2)|0,(N|0)==(d[p>>2]|0)){if(d[p>>2]=f,!f){_=_&~(1<>2]|0)==(N|0)?Re:T+20|0)>>2]=f,!f)break;d[f+24>>2]=T,A=d[N+16>>2]|0,A|0&&(d[f+16>>2]=A,d[A+24>>2]=f),A=d[N+20>>2]|0,A&&(d[f+20>>2]=A,d[A+24>>2]=f)}while(!1);e:do if(M>>>0<16)Re=M+I|0,d[N+4>>2]=Re|3,Re=N+Re+4|0,d[Re>>2]=d[Re>>2]|1;else{if(d[N+4>>2]=I|3,d[q+4>>2]=M|1,d[q+M>>2]=M,f=M>>>3,M>>>0<256){p=27964+(f<<1<<2)|0,A=d[6981]|0,f=1<>2]|0):(d[6981]=A|f,f=p,A=p+8|0),d[A>>2]=q,d[f+12>>2]=q,d[q+8>>2]=f,d[q+12>>2]=p;break}if(f=M>>>8,f?M>>>0>16777215?p=31:(ke=(f+1048320|0)>>>16&8,Re=f<>>16&4,Re=Re<>>16&2,p=14-(qe|ke|p)+(Re<

>>15)|0,p=M>>>(p+7|0)&1|p<<1):p=0,f=28228+(p<<2)|0,d[q+28>>2]=p,A=q+16|0,d[A+4>>2]=0,d[A>>2]=0,A=1<>2]=q,d[q+24>>2]=f,d[q+12>>2]=q,d[q+8>>2]=q;break}f=d[f>>2]|0;t:do if((d[f+4>>2]&-8|0)!=(M|0)){for(_=M<<((p|0)==31?0:25-(p>>>1)|0);p=f+16+(_>>>31<<2)|0,A=d[p>>2]|0,!!A;)if((d[A+4>>2]&-8|0)==(M|0)){f=A;break t}else _=_<<1,f=A;d[p>>2]=q,d[q+24>>2]=f,d[q+12>>2]=q,d[q+8>>2]=q;break e}while(!1);ke=f+8|0,Re=d[ke>>2]|0,d[Re+12>>2]=q,d[ke>>2]=q,d[q+8>>2]=Re,d[q+12>>2]=f,d[q+24>>2]=0}while(!1);return Re=N+8|0,K=Pt,Re|0}else ie=I}else ie=I;else ie=-1;while(!1);if(p=d[6983]|0,p>>>0>=ie>>>0)return f=p-ie|0,A=d[6986]|0,f>>>0>15?(Re=A+ie|0,d[6986]=Re,d[6983]=f,d[Re+4>>2]=f|1,d[A+p>>2]=f,d[A+4>>2]=ie|3):(d[6983]=0,d[6986]=0,d[A+4>>2]=p|3,Re=A+p+4|0,d[Re>>2]=d[Re>>2]|1),Re=A+8|0,K=Pt,Re|0;if(M=d[6984]|0,M>>>0>ie>>>0)return qe=M-ie|0,d[6984]=qe,Re=d[6987]|0,ke=Re+ie|0,d[6987]=ke,d[ke+4>>2]=qe|1,d[Re+4>>2]=ie|3,Re=Re+8|0,K=Pt,Re|0;if(d[7099]|0?A=d[7101]|0:(d[7101]=4096,d[7100]=4096,d[7102]=-1,d[7103]=-1,d[7104]=0,d[7092]=0,d[7099]=pe&-16^1431655768,A=4096),N=ie+48|0,U=ie+47|0,T=A+U|0,y=0-A|0,I=T&y,I>>>0<=ie>>>0||(A=d[7091]|0,A|0&&(q=d[7089]|0,pe=q+I|0,pe>>>0<=q>>>0|pe>>>0>A>>>0)))return Re=0,K=Pt,Re|0;e:do if(d[7092]&4)f=0,Ce=143;else{p=d[6987]|0;t:do if(p){for(_=28372;pe=d[_>>2]|0,!(pe>>>0<=p>>>0&&(pe+(d[_+4>>2]|0)|0)>>>0>p>>>0);)if(A=d[_+8>>2]|0,A)_=A;else{Ce=128;break t}if(f=T-M&y,f>>>0<2147483647)if(A=fl(f|0)|0,(A|0)==((d[_>>2]|0)+(d[_+4>>2]|0)|0)){if((A|0)!=-1){M=f,T=A,Ce=145;break e}}else _=A,Ce=136;else f=0}else Ce=128;while(!1);do if((Ce|0)==128)if(p=fl(0)|0,(p|0)!=-1&&(f=p,Ae=d[7100]|0,me=Ae+-1|0,f=((me&f|0)==0?0:(me+f&0-Ae)-f|0)+I|0,Ae=d[7089]|0,me=f+Ae|0,f>>>0>ie>>>0&f>>>0<2147483647)){if(pe=d[7091]|0,pe|0&&me>>>0<=Ae>>>0|me>>>0>pe>>>0){f=0;break}if(A=fl(f|0)|0,(A|0)==(p|0)){M=f,T=p,Ce=145;break e}else _=A,Ce=136}else f=0;while(!1);do if((Ce|0)==136){if(p=0-f|0,!(N>>>0>f>>>0&(f>>>0<2147483647&(_|0)!=-1)))if((_|0)==-1){f=0;break}else{M=f,T=_,Ce=145;break e}if(A=d[7101]|0,A=U-f+A&0-A,A>>>0>=2147483647){M=f,T=_,Ce=145;break e}if((fl(A|0)|0)==-1){fl(p|0)|0,f=0;break}else{M=A+f|0,T=_,Ce=145;break e}}while(!1);d[7092]=d[7092]|4,Ce=143}while(!1);if((Ce|0)==143&&I>>>0<2147483647&&(qe=fl(I|0)|0,me=fl(0)|0,Be=me-qe|0,Xe=Be>>>0>(ie+40|0)>>>0,!((qe|0)==-1|Xe^1|qe>>>0>>0&((qe|0)!=-1&(me|0)!=-1)^1))&&(M=Xe?Be:f,T=qe,Ce=145),(Ce|0)==145){f=(d[7089]|0)+M|0,d[7089]=f,f>>>0>(d[7090]|0)>>>0&&(d[7090]=f),U=d[6987]|0;e:do if(U){for(f=28372;;){if(A=d[f>>2]|0,p=d[f+4>>2]|0,(T|0)==(A+p|0)){Ce=154;break}if(_=d[f+8>>2]|0,_)f=_;else break}if((Ce|0)==154&&(ke=f+4|0,(d[f+12>>2]&8|0)==0)&&T>>>0>U>>>0&A>>>0<=U>>>0){d[ke>>2]=p+M,Re=(d[6984]|0)+M|0,qe=U+8|0,qe=(qe&7|0)==0?0:0-qe&7,ke=U+qe|0,qe=Re-qe|0,d[6987]=ke,d[6984]=qe,d[ke+4>>2]=qe|1,d[U+Re+4>>2]=40,d[6988]=d[7103];break}for(T>>>0<(d[6985]|0)>>>0&&(d[6985]=T),p=T+M|0,f=28372;;){if((d[f>>2]|0)==(p|0)){Ce=162;break}if(A=d[f+8>>2]|0,A)f=A;else break}if((Ce|0)==162&&(d[f+12>>2]&8|0)==0){d[f>>2]=T,q=f+4|0,d[q>>2]=(d[q>>2]|0)+M,q=T+8|0,q=T+((q&7|0)==0?0:0-q&7)|0,f=p+8|0,f=p+((f&7|0)==0?0:0-f&7)|0,I=q+ie|0,N=f-q-ie|0,d[q+4>>2]=ie|3;t:do if((U|0)==(f|0))Re=(d[6984]|0)+N|0,d[6984]=Re,d[6987]=I,d[I+4>>2]=Re|1;else{if((d[6986]|0)==(f|0)){Re=(d[6983]|0)+N|0,d[6983]=Re,d[6986]=I,d[I+4>>2]=Re|1,d[I+Re>>2]=Re;break}if(A=d[f+4>>2]|0,(A&3|0)==1){M=A&-8,_=A>>>3;n:do if(A>>>0<256)if(A=d[f+8>>2]|0,p=d[f+12>>2]|0,(p|0)==(A|0)){d[6981]=d[6981]&~(1<<_);break}else{d[A+12>>2]=p,d[p+8>>2]=A;break}else{T=d[f+24>>2]|0,A=d[f+12>>2]|0;do if((A|0)==(f|0)){if(p=f+16|0,_=p+4|0,A=d[_>>2]|0,A)p=_;else if(A=d[p>>2]|0,!A){A=0;break}for(;;)if(y=A+20|0,_=d[y>>2]|0,_)A=_,p=y;else if(y=A+16|0,_=d[y>>2]|0,_)A=_,p=y;else break;d[p>>2]=0}else Re=d[f+8>>2]|0,d[Re+12>>2]=A,d[A+8>>2]=Re;while(!1);if(!T)break;p=d[f+28>>2]|0,_=28228+(p<<2)|0;do if((d[_>>2]|0)!=(f|0)){if(Re=T+16|0,d[((d[Re>>2]|0)==(f|0)?Re:T+20|0)>>2]=A,!A)break n}else{if(d[_>>2]=A,A|0)break;d[6982]=d[6982]&~(1<>2]=T,p=f+16|0,_=d[p>>2]|0,_|0&&(d[A+16>>2]=_,d[_+24>>2]=A),p=d[p+4>>2]|0,!p)break;d[A+20>>2]=p,d[p+24>>2]=A}while(!1);f=f+M|0,y=M+N|0}else y=N;if(f=f+4|0,d[f>>2]=d[f>>2]&-2,d[I+4>>2]=y|1,d[I+y>>2]=y,f=y>>>3,y>>>0<256){p=27964+(f<<1<<2)|0,A=d[6981]|0,f=1<>2]|0):(d[6981]=A|f,f=p,A=p+8|0),d[A>>2]=I,d[f+12>>2]=I,d[I+8>>2]=f,d[I+12>>2]=p;break}f=y>>>8;do if(!f)_=0;else{if(y>>>0>16777215){_=31;break}ke=(f+1048320|0)>>>16&8,Re=f<>>16&4,Re=Re<>>16&2,_=14-(qe|ke|_)+(Re<<_>>>15)|0,_=y>>>(_+7|0)&1|_<<1}while(!1);if(f=28228+(_<<2)|0,d[I+28>>2]=_,A=I+16|0,d[A+4>>2]=0,d[A>>2]=0,A=d[6982]|0,p=1<<_,!(A&p)){d[6982]=A|p,d[f>>2]=I,d[I+24>>2]=f,d[I+12>>2]=I,d[I+8>>2]=I;break}f=d[f>>2]|0;n:do if((d[f+4>>2]&-8|0)!=(y|0)){for(_=y<<((_|0)==31?0:25-(_>>>1)|0);p=f+16+(_>>>31<<2)|0,A=d[p>>2]|0,!!A;)if((d[A+4>>2]&-8|0)==(y|0)){f=A;break n}else _=_<<1,f=A;d[p>>2]=I,d[I+24>>2]=f,d[I+12>>2]=I,d[I+8>>2]=I;break t}while(!1);ke=f+8|0,Re=d[ke>>2]|0,d[Re+12>>2]=I,d[ke>>2]=I,d[I+8>>2]=Re,d[I+12>>2]=f,d[I+24>>2]=0}while(!1);return Re=q+8|0,K=Pt,Re|0}for(f=28372;A=d[f>>2]|0,!(A>>>0<=U>>>0&&(Re=A+(d[f+4>>2]|0)|0,Re>>>0>U>>>0));)f=d[f+8>>2]|0;y=Re+-47|0,A=y+8|0,A=y+((A&7|0)==0?0:0-A&7)|0,y=U+16|0,A=A>>>0>>0?U:A,f=A+8|0,p=M+-40|0,qe=T+8|0,qe=(qe&7|0)==0?0:0-qe&7,ke=T+qe|0,qe=p-qe|0,d[6987]=ke,d[6984]=qe,d[ke+4>>2]=qe|1,d[T+p+4>>2]=40,d[6988]=d[7103],p=A+4|0,d[p>>2]=27,d[f>>2]=d[7093],d[f+4>>2]=d[7094],d[f+8>>2]=d[7095],d[f+12>>2]=d[7096],d[7093]=T,d[7094]=M,d[7096]=0,d[7095]=f,f=A+24|0;do ke=f,f=f+4|0,d[f>>2]=7;while((ke+8|0)>>>0>>0);if((A|0)!=(U|0)){if(T=A-U|0,d[p>>2]=d[p>>2]&-2,d[U+4>>2]=T|1,d[A>>2]=T,f=T>>>3,T>>>0<256){p=27964+(f<<1<<2)|0,A=d[6981]|0,f=1<>2]|0):(d[6981]=A|f,f=p,A=p+8|0),d[A>>2]=U,d[f+12>>2]=U,d[U+8>>2]=f,d[U+12>>2]=p;break}if(f=T>>>8,f?T>>>0>16777215?_=31:(ke=(f+1048320|0)>>>16&8,Re=f<>>16&4,Re=Re<>>16&2,_=14-(qe|ke|_)+(Re<<_>>>15)|0,_=T>>>(_+7|0)&1|_<<1):_=0,p=28228+(_<<2)|0,d[U+28>>2]=_,d[U+20>>2]=0,d[y>>2]=0,f=d[6982]|0,A=1<<_,!(f&A)){d[6982]=f|A,d[p>>2]=U,d[U+24>>2]=p,d[U+12>>2]=U,d[U+8>>2]=U;break}f=d[p>>2]|0;t:do if((d[f+4>>2]&-8|0)!=(T|0)){for(_=T<<((_|0)==31?0:25-(_>>>1)|0);p=f+16+(_>>>31<<2)|0,A=d[p>>2]|0,!!A;)if((d[A+4>>2]&-8|0)==(T|0)){f=A;break t}else _=_<<1,f=A;d[p>>2]=U,d[U+24>>2]=f,d[U+12>>2]=U,d[U+8>>2]=U;break e}while(!1);ke=f+8|0,Re=d[ke>>2]|0,d[Re+12>>2]=U,d[ke>>2]=U,d[U+8>>2]=Re,d[U+12>>2]=f,d[U+24>>2]=0}}else Re=d[6985]|0,(Re|0)==0|T>>>0>>0&&(d[6985]=T),d[7093]=T,d[7094]=M,d[7096]=0,d[6990]=d[7099],d[6989]=-1,d[6994]=27964,d[6993]=27964,d[6996]=27972,d[6995]=27972,d[6998]=27980,d[6997]=27980,d[7e3]=27988,d[6999]=27988,d[7002]=27996,d[7001]=27996,d[7004]=28004,d[7003]=28004,d[7006]=28012,d[7005]=28012,d[7008]=28020,d[7007]=28020,d[7010]=28028,d[7009]=28028,d[7012]=28036,d[7011]=28036,d[7014]=28044,d[7013]=28044,d[7016]=28052,d[7015]=28052,d[7018]=28060,d[7017]=28060,d[7020]=28068,d[7019]=28068,d[7022]=28076,d[7021]=28076,d[7024]=28084,d[7023]=28084,d[7026]=28092,d[7025]=28092,d[7028]=28100,d[7027]=28100,d[7030]=28108,d[7029]=28108,d[7032]=28116,d[7031]=28116,d[7034]=28124,d[7033]=28124,d[7036]=28132,d[7035]=28132,d[7038]=28140,d[7037]=28140,d[7040]=28148,d[7039]=28148,d[7042]=28156,d[7041]=28156,d[7044]=28164,d[7043]=28164,d[7046]=28172,d[7045]=28172,d[7048]=28180,d[7047]=28180,d[7050]=28188,d[7049]=28188,d[7052]=28196,d[7051]=28196,d[7054]=28204,d[7053]=28204,d[7056]=28212,d[7055]=28212,Re=M+-40|0,qe=T+8|0,qe=(qe&7|0)==0?0:0-qe&7,ke=T+qe|0,qe=Re-qe|0,d[6987]=ke,d[6984]=qe,d[ke+4>>2]=qe|1,d[T+Re+4>>2]=40,d[6988]=d[7103];while(!1);if(f=d[6984]|0,f>>>0>ie>>>0)return qe=f-ie|0,d[6984]=qe,Re=d[6987]|0,ke=Re+ie|0,d[6987]=ke,d[ke+4>>2]=qe|1,d[Re+4>>2]=ie|3,Re=Re+8|0,K=Pt,Re|0}return Re=HA()|0,d[Re>>2]=12,Re=0,K=Pt,Re|0}function An(A){A=A|0;var f=0,p=0,_=0,y=0,T=0,M=0,N=0,U=0;if(A){p=A+-8|0,y=d[6985]|0,A=d[A+-4>>2]|0,f=A&-8,U=p+f|0;do if(A&1)N=p,M=p;else{if(_=d[p>>2]|0,!(A&3)||(M=p+(0-_)|0,T=_+f|0,M>>>0>>0))return;if((d[6986]|0)==(M|0)){if(A=U+4|0,f=d[A>>2]|0,(f&3|0)!=3){N=M,f=T;break}d[6983]=T,d[A>>2]=f&-2,d[M+4>>2]=T|1,d[M+T>>2]=T;return}if(p=_>>>3,_>>>0<256)if(A=d[M+8>>2]|0,f=d[M+12>>2]|0,(f|0)==(A|0)){d[6981]=d[6981]&~(1<>2]=f,d[f+8>>2]=A,N=M,f=T;break}y=d[M+24>>2]|0,A=d[M+12>>2]|0;do if((A|0)==(M|0)){if(f=M+16|0,p=f+4|0,A=d[p>>2]|0,A)f=p;else if(A=d[f>>2]|0,!A){A=0;break}for(;;)if(_=A+20|0,p=d[_>>2]|0,p)A=p,f=_;else if(_=A+16|0,p=d[_>>2]|0,p)A=p,f=_;else break;d[f>>2]=0}else N=d[M+8>>2]|0,d[N+12>>2]=A,d[A+8>>2]=N;while(!1);if(y){if(f=d[M+28>>2]|0,p=28228+(f<<2)|0,(d[p>>2]|0)==(M|0)){if(d[p>>2]=A,!A){d[6982]=d[6982]&~(1<>2]|0)==(M|0)?N:y+20|0)>>2]=A,!A){N=M,f=T;break}d[A+24>>2]=y,f=M+16|0,p=d[f>>2]|0,p|0&&(d[A+16>>2]=p,d[p+24>>2]=A),f=d[f+4>>2]|0,f?(d[A+20>>2]=f,d[f+24>>2]=A,N=M,f=T):(N=M,f=T)}else N=M,f=T}while(!1);if(!(M>>>0>=U>>>0)&&(A=U+4|0,_=d[A>>2]|0,!!(_&1))){if(_&2)d[A>>2]=_&-2,d[N+4>>2]=f|1,d[M+f>>2]=f,y=f;else{if((d[6987]|0)==(U|0)){if(U=(d[6984]|0)+f|0,d[6984]=U,d[6987]=N,d[N+4>>2]=U|1,(N|0)!=(d[6986]|0))return;d[6986]=0,d[6983]=0;return}if((d[6986]|0)==(U|0)){U=(d[6983]|0)+f|0,d[6983]=U,d[6986]=M,d[N+4>>2]=U|1,d[M+U>>2]=U;return}y=(_&-8)+f|0,p=_>>>3;do if(_>>>0<256)if(f=d[U+8>>2]|0,A=d[U+12>>2]|0,(A|0)==(f|0)){d[6981]=d[6981]&~(1<>2]=A,d[A+8>>2]=f;break}else{T=d[U+24>>2]|0,A=d[U+12>>2]|0;do if((A|0)==(U|0)){if(f=U+16|0,p=f+4|0,A=d[p>>2]|0,A)f=p;else if(A=d[f>>2]|0,!A){p=0;break}for(;;)if(_=A+20|0,p=d[_>>2]|0,p)A=p,f=_;else if(_=A+16|0,p=d[_>>2]|0,p)A=p,f=_;else break;d[f>>2]=0,p=A}else p=d[U+8>>2]|0,d[p+12>>2]=A,d[A+8>>2]=p,p=A;while(!1);if(T|0){if(A=d[U+28>>2]|0,f=28228+(A<<2)|0,(d[f>>2]|0)==(U|0)){if(d[f>>2]=p,!p){d[6982]=d[6982]&~(1<>2]|0)==(U|0)?_:T+20|0)>>2]=p,!p)break;d[p+24>>2]=T,A=U+16|0,f=d[A>>2]|0,f|0&&(d[p+16>>2]=f,d[f+24>>2]=p),A=d[A+4>>2]|0,A|0&&(d[p+20>>2]=A,d[A+24>>2]=p)}}while(!1);if(d[N+4>>2]=y|1,d[M+y>>2]=y,(N|0)==(d[6986]|0)){d[6983]=y;return}}if(A=y>>>3,y>>>0<256){p=27964+(A<<1<<2)|0,f=d[6981]|0,A=1<>2]|0):(d[6981]=f|A,A=p,f=p+8|0),d[f>>2]=N,d[A+12>>2]=N,d[N+8>>2]=A,d[N+12>>2]=p;return}A=y>>>8,A?y>>>0>16777215?_=31:(M=(A+1048320|0)>>>16&8,U=A<>>16&4,U=U<>>16&2,_=14-(T|M|_)+(U<<_>>>15)|0,_=y>>>(_+7|0)&1|_<<1):_=0,A=28228+(_<<2)|0,d[N+28>>2]=_,d[N+20>>2]=0,d[N+16>>2]=0,f=d[6982]|0,p=1<<_;e:do if(!(f&p))d[6982]=f|p,d[A>>2]=N,d[N+24>>2]=A,d[N+12>>2]=N,d[N+8>>2]=N;else{A=d[A>>2]|0;t:do if((d[A+4>>2]&-8|0)!=(y|0)){for(_=y<<((_|0)==31?0:25-(_>>>1)|0);p=A+16+(_>>>31<<2)|0,f=d[p>>2]|0,!!f;)if((d[f+4>>2]&-8|0)==(y|0)){A=f;break t}else _=_<<1,A=f;d[p>>2]=N,d[N+24>>2]=A,d[N+12>>2]=N,d[N+8>>2]=N;break e}while(!1);M=A+8|0,U=d[M>>2]|0,d[U+12>>2]=N,d[M>>2]=N,d[N+8>>2]=U,d[N+12>>2]=A,d[N+24>>2]=0}while(!1);if(U=(d[6989]|0)+-1|0,d[6989]=U,!(U|0)){for(A=28380;A=d[A>>2]|0,A;)A=A+8|0;d[6989]=-1}}}}function Ks(A,f){A=A|0,f=f|0;var p=0;return A?(p=$e(f,A)|0,(f|A)>>>0>65535&&(p=((p>>>0)/(A>>>0)|0|0)==(f|0)?p:-1)):p=0,A=Fo(p)|0,!A||!(d[A+-4>>2]&3)||uo(A|0,0,p|0)|0,A|0}function Yt(A,f,p,_){return A=A|0,f=f|0,p=p|0,_=_|0,p=A+p>>>0,ht(f+_+(p>>>0>>0|0)>>>0|0),p|0|0}function Ur(A,f,p,_){return A=A|0,f=f|0,p=p|0,_=_|0,_=f-_-(p>>>0>A>>>0|0)>>>0,ht(_|0),A-p>>>0|0|0}function Jc(A){return A=A|0,(A?31-(Vt(A^A-1)|0)|0:32)|0}function Ju(A,f,p,_,y){A=A|0,f=f|0,p=p|0,_=_|0,y=y|0;var T=0,M=0,N=0,U=0,I=0,q=0,ie=0,pe=0,Ae=0,me=0;if(q=A,U=f,I=U,M=p,pe=_,N=pe,!I)return T=(y|0)!=0,N?T?(d[y>>2]=A|0,d[y+4>>2]=f&0,pe=0,y=0,ht(pe|0),y|0):(pe=0,y=0,ht(pe|0),y|0):(T&&(d[y>>2]=(q>>>0)%(M>>>0),d[y+4>>2]=0),pe=0,y=(q>>>0)/(M>>>0)>>>0,ht(pe|0),y|0);T=(N|0)==0;do if(M){if(!T){if(T=(Vt(N|0)|0)-(Vt(I|0)|0)|0,T>>>0<=31){ie=T+1|0,N=31-T|0,f=T-31>>31,M=ie,A=q>>>(ie>>>0)&f|I<>>(ie>>>0)&f,T=0,N=q<>2]=A|0,d[y+4>>2]=U|f&0,pe=0,y=0,ht(pe|0),y|0):(pe=0,y=0,ht(pe|0),y|0)}if(T=M-1|0,T&M|0){N=(Vt(M|0)|0)+33-(Vt(I|0)|0)|0,me=64-N|0,ie=32-N|0,U=ie>>31,Ae=N-32|0,f=Ae>>31,M=N,A=ie-1>>31&I>>>(Ae>>>0)|(I<>>(N>>>0))&f,f=f&I>>>(N>>>0),T=q<>>(Ae>>>0))&U|q<>31;break}return y|0&&(d[y>>2]=T&q,d[y+4>>2]=0),(M|0)==1?(Ae=U|f&0,me=A|0|0,ht(Ae|0),me|0):(me=Jc(M|0)|0,Ae=I>>>(me>>>0)|0,me=I<<32-me|q>>>(me>>>0)|0,ht(Ae|0),me|0)}else{if(T)return y|0&&(d[y>>2]=(I>>>0)%(M>>>0),d[y+4>>2]=0),Ae=0,me=(I>>>0)/(M>>>0)>>>0,ht(Ae|0),me|0;if(!q)return y|0&&(d[y>>2]=0,d[y+4>>2]=(I>>>0)%(N>>>0)),Ae=0,me=(I>>>0)/(N>>>0)>>>0,ht(Ae|0),me|0;if(T=N-1|0,!(T&N))return y|0&&(d[y>>2]=A|0,d[y+4>>2]=T&I|f&0),Ae=0,me=I>>>((Jc(N|0)|0)>>>0),ht(Ae|0),me|0;if(T=(Vt(N|0)|0)-(Vt(I|0)|0)|0,T>>>0<=30){f=T+1|0,N=31-T|0,M=f,A=I<>>(f>>>0),f=I>>>(f>>>0),T=0,N=q<>2]=A|0,d[y+4>>2]=U|f&0,Ae=0,me=0,ht(Ae|0),me|0):(Ae=0,me=0,ht(Ae|0),me|0)}while(!1);if(!M)I=N,U=0,N=0;else{ie=p|0|0,q=pe|_&0,I=Yt(ie|0,q|0,-1,-1)|0,p=Z()|0,U=N,N=0;do _=U,U=T>>>31|U<<1,T=N|T<<1,_=A<<1|_>>>31|0,pe=A>>>31|f<<1|0,Ur(I|0,p|0,_|0,pe|0)|0,me=Z()|0,Ae=me>>31|((me|0)<0?-1:0)<<1,N=Ae&1,A=Ur(_|0,pe|0,Ae&ie|0,(((me|0)<0?-1:0)>>31|((me|0)<0?-1:0)<<1)&q|0)|0,f=Z()|0,M=M-1|0;while((M|0)!=0);I=U,U=0}return M=0,y|0&&(d[y>>2]=A,d[y+4>>2]=f),Ae=(T|0)>>>31|(I|M)<<1|(M<<1|T>>>31)&0|U,me=(T<<1|0)&-2|N,ht(Ae|0),me|0}function ko(A,f,p,_){A=A|0,f=f|0,p=p|0,_=_|0;var y=0,T=0,M=0,N=0,U=0,I=0;return I=f>>31|((f|0)<0?-1:0)<<1,U=((f|0)<0?-1:0)>>31|((f|0)<0?-1:0)<<1,T=_>>31|((_|0)<0?-1:0)<<1,y=((_|0)<0?-1:0)>>31|((_|0)<0?-1:0)<<1,N=Ur(I^A|0,U^f|0,I|0,U|0)|0,M=Z()|0,A=T^I,f=y^U,Ur((Ju(N,M,Ur(T^p|0,y^_|0,T|0,y|0)|0,Z()|0,0)|0)^A|0,(Z()|0)^f|0,A|0,f|0)|0}function eh(A,f){A=A|0,f=f|0;var p=0,_=0,y=0,T=0;return T=A&65535,y=f&65535,p=$e(y,T)|0,_=A>>>16,A=(p>>>16)+($e(y,_)|0)|0,y=f>>>16,f=$e(y,T)|0,ht((A>>>16)+($e(y,_)|0)+(((A&65535)+f|0)>>>16)|0),A+f<<16|p&65535|0|0}function fr(A,f,p,_){A=A|0,f=f|0,p=p|0,_=_|0;var y=0,T=0;return y=A,T=p,p=eh(y,T)|0,A=Z()|0,ht(($e(f,T)|0)+($e(_,y)|0)+A|A&0|0),p|0|0|0}function th(A,f,p,_){A=A|0,f=f|0,p=p|0,_=_|0;var y=0,T=0,M=0,N=0,U=0,I=0;return y=K,K=K+16|0,N=y|0,M=f>>31|((f|0)<0?-1:0)<<1,T=((f|0)<0?-1:0)>>31|((f|0)<0?-1:0)<<1,I=_>>31|((_|0)<0?-1:0)<<1,U=((_|0)<0?-1:0)>>31|((_|0)<0?-1:0)<<1,A=Ur(M^A|0,T^f|0,M|0,T|0)|0,f=Z()|0,Ju(A,f,Ur(I^p|0,U^_|0,I|0,U|0)|0,Z()|0,N)|0,_=Ur(d[N>>2]^M|0,d[N+4>>2]^T|0,M|0,T|0)|0,p=Z()|0,K=y,ht(p|0),_|0}function ec(A,f,p,_){A=A|0,f=f|0,p=p|0,_=_|0;var y=0,T=0;return T=K,K=K+16|0,y=T|0,Ju(A,f,p,_,y)|0,K=T,ht(d[y+4>>2]|0),d[y>>2]|0|0}function N1(A,f,p){return A=A|0,f=f|0,p=p|0,(p|0)<32?(ht(f>>p|0),A>>>p|(f&(1<>p-32|0)}function bt(A,f,p){return A=A|0,f=f|0,p=p|0,(p|0)<32?(ht(f>>>p|0),A>>>p|(f&(1<>>p-32|0)}function Nt(A,f,p){return A=A|0,f=f|0,p=p|0,(p|0)<32?(ht(f<>>32-p|0),A<=0?+Xn(A+.5):+Ye(A-.5)}function Gl(A,f,p){A=A|0,f=f|0,p=p|0;var _=0,y=0,T=0;if((p|0)>=8192)return ui(A|0,f|0,p|0)|0,A|0;if(T=A|0,y=A+p|0,(A&3)==(f&3)){for(;A&3;){if(!p)return T|0;st[A>>0]=st[f>>0]|0,A=A+1|0,f=f+1|0,p=p-1|0}for(p=y&-4|0,_=p-64|0;(A|0)<=(_|0);)d[A>>2]=d[f>>2],d[A+4>>2]=d[f+4>>2],d[A+8>>2]=d[f+8>>2],d[A+12>>2]=d[f+12>>2],d[A+16>>2]=d[f+16>>2],d[A+20>>2]=d[f+20>>2],d[A+24>>2]=d[f+24>>2],d[A+28>>2]=d[f+28>>2],d[A+32>>2]=d[f+32>>2],d[A+36>>2]=d[f+36>>2],d[A+40>>2]=d[f+40>>2],d[A+44>>2]=d[f+44>>2],d[A+48>>2]=d[f+48>>2],d[A+52>>2]=d[f+52>>2],d[A+56>>2]=d[f+56>>2],d[A+60>>2]=d[f+60>>2],A=A+64|0,f=f+64|0;for(;(A|0)<(p|0);)d[A>>2]=d[f>>2],A=A+4|0,f=f+4|0}else for(p=y-4|0;(A|0)<(p|0);)st[A>>0]=st[f>>0]|0,st[A+1>>0]=st[f+1>>0]|0,st[A+2>>0]=st[f+2>>0]|0,st[A+3>>0]=st[f+3>>0]|0,A=A+4|0,f=f+4|0;for(;(A|0)<(y|0);)st[A>>0]=st[f>>0]|0,A=A+1|0,f=f+1|0;return T|0}function uo(A,f,p){A=A|0,f=f|0,p=p|0;var _=0,y=0,T=0,M=0;if(T=A+p|0,f=f&255,(p|0)>=67){for(;A&3;)st[A>>0]=f,A=A+1|0;for(_=T&-4|0,M=f|f<<8|f<<16|f<<24,y=_-64|0;(A|0)<=(y|0);)d[A>>2]=M,d[A+4>>2]=M,d[A+8>>2]=M,d[A+12>>2]=M,d[A+16>>2]=M,d[A+20>>2]=M,d[A+24>>2]=M,d[A+28>>2]=M,d[A+32>>2]=M,d[A+36>>2]=M,d[A+40>>2]=M,d[A+44>>2]=M,d[A+48>>2]=M,d[A+52>>2]=M,d[A+56>>2]=M,d[A+60>>2]=M,A=A+64|0;for(;(A|0)<(_|0);)d[A>>2]=M,A=A+4|0}for(;(A|0)<(T|0);)st[A>>0]=f,A=A+1|0;return T-p|0}function pf(A){return A=+A,A>=0?+Xn(A+.5):+Ye(A-.5)}function fl(A){A=A|0;var f=0,p=0,_=0;return _=fn()|0,p=d[Gn>>2]|0,f=p+A|0,(A|0)>0&(f|0)<(p|0)|(f|0)<0?(_i(f|0)|0,bn(12),-1):(f|0)>(_|0)&&!(ci(f|0)|0)?(bn(12),-1):(d[Gn>>2]=f,p|0)}return{___divdi3:ko,___muldi3:fr,___remdi3:th,___uremdi3:ec,_areNeighborCells:dx,_bitshift64Ashr:N1,_bitshift64Lshr:bt,_bitshift64Shl:Nt,_calloc:Ks,_cellAreaKm2:mp,_cellAreaM2:UA,_cellAreaRads2:Fl,_cellToBoundary:Il,_cellToCenterChild:DA,_cellToChildPos:Ap,_cellToChildren:_1,_cellToChildrenSize:lf,_cellToLatLng:Ol,_cellToLocalIj:E1,_cellToParent:Fu,_cellToVertex:Qs,_cellToVertexes:Qu,_cellsToDirectedEdge:d1,_cellsToLinkedMultiPolygon:nl,_childPosToCell:S1,_compactCells:up,_constructCell:Sx,_destroyLinkedMultiPolygon:Wu,_directedEdgeToBoundary:CA,_directedEdgeToCells:gx,_edgeLengthKm:gp,_edgeLengthM:ju,_edgeLengthRads:BA,_emscripten_replace_memory:Ln,_free:An,_getBaseCellNumber:g1,_getDirectedEdgeDestination:mx,_getDirectedEdgeOrigin:px,_getHexagonAreaAvgKm2:dp,_getHexagonAreaAvgM2:w1,_getHexagonEdgeLengthAvgKm:pp,_getHexagonEdgeLengthAvgM:oo,_getIcosahedronFaces:Gu,_getIndexDigit:bx,_getNumCells:Hu,_getPentagons:qu,_getRes0Cells:ef,_getResolution:Qc,_greatCircleDistanceKm:Zc,_greatCircleDistanceM:Mx,_greatCircleDistanceRads:T1,_gridDisk:_e,_gridDiskDistances:at,_gridDistance:$u,_gridPathCells:C1,_gridPathCellsSize:vp,_gridRing:Yn,_gridRingUnsafe:yi,_i64Add:Yt,_i64Subtract:Ur,_isPentagon:Ci,_isResClassIII:b1,_isValidCell:NA,_isValidDirectedEdge:p1,_isValidIndex:v1,_isValidVertex:ul,_latLngToCell:PA,_llvm_ctlz_i64:ff,_llvm_maxnum_f64:Af,_llvm_minnum_f64:df,_llvm_round_f64:hl,_localIjToCell:IA,_malloc:Fo,_maxFaceCount:wx,_maxGridDiskSize:fa,_maxPolygonToCellsSize:Pr,_maxPolygonToCellsSizeExperimental:cf,_memcpy:Gl,_memset:uo,_originToDirectedEdges:vx,_pentagonCount:fp,_polygonToCells:Zh,_polygonToCellsExperimental:kA,_readInt64AsDoubleFromPointer:yp,_res0CellCount:s1,_round:pf,_sbrk:fl,_sizeOfCellBoundary:fs,_sizeOfCoordIJ:Pa,_sizeOfGeoLoop:sr,_sizeOfGeoPolygon:mi,_sizeOfH3Index:_p,_sizeOfLatLng:R1,_sizeOfLinkedGeoPolygon:kl,_uncompactCells:y1,_uncompactCellsSize:x1,_vertexToLatLng:ll,establishStackSpace:bs,stackAlloc:mn,stackRestore:hi,stackSave:yr}})(In,Mi,Y);e.___divdi3=ge.___divdi3,e.___muldi3=ge.___muldi3,e.___remdi3=ge.___remdi3,e.___uremdi3=ge.___uremdi3,e._areNeighborCells=ge._areNeighborCells,e._bitshift64Ashr=ge._bitshift64Ashr,e._bitshift64Lshr=ge._bitshift64Lshr,e._bitshift64Shl=ge._bitshift64Shl,e._calloc=ge._calloc,e._cellAreaKm2=ge._cellAreaKm2,e._cellAreaM2=ge._cellAreaM2,e._cellAreaRads2=ge._cellAreaRads2,e._cellToBoundary=ge._cellToBoundary,e._cellToCenterChild=ge._cellToCenterChild,e._cellToChildPos=ge._cellToChildPos,e._cellToChildren=ge._cellToChildren,e._cellToChildrenSize=ge._cellToChildrenSize,e._cellToLatLng=ge._cellToLatLng,e._cellToLocalIj=ge._cellToLocalIj,e._cellToParent=ge._cellToParent,e._cellToVertex=ge._cellToVertex,e._cellToVertexes=ge._cellToVertexes,e._cellsToDirectedEdge=ge._cellsToDirectedEdge,e._cellsToLinkedMultiPolygon=ge._cellsToLinkedMultiPolygon,e._childPosToCell=ge._childPosToCell,e._compactCells=ge._compactCells,e._constructCell=ge._constructCell,e._destroyLinkedMultiPolygon=ge._destroyLinkedMultiPolygon,e._directedEdgeToBoundary=ge._directedEdgeToBoundary,e._directedEdgeToCells=ge._directedEdgeToCells,e._edgeLengthKm=ge._edgeLengthKm,e._edgeLengthM=ge._edgeLengthM,e._edgeLengthRads=ge._edgeLengthRads;var Wt=e._emscripten_replace_memory=ge._emscripten_replace_memory;e._free=ge._free,e._getBaseCellNumber=ge._getBaseCellNumber,e._getDirectedEdgeDestination=ge._getDirectedEdgeDestination,e._getDirectedEdgeOrigin=ge._getDirectedEdgeOrigin,e._getHexagonAreaAvgKm2=ge._getHexagonAreaAvgKm2,e._getHexagonAreaAvgM2=ge._getHexagonAreaAvgM2,e._getHexagonEdgeLengthAvgKm=ge._getHexagonEdgeLengthAvgKm,e._getHexagonEdgeLengthAvgM=ge._getHexagonEdgeLengthAvgM,e._getIcosahedronFaces=ge._getIcosahedronFaces,e._getIndexDigit=ge._getIndexDigit,e._getNumCells=ge._getNumCells,e._getPentagons=ge._getPentagons,e._getRes0Cells=ge._getRes0Cells,e._getResolution=ge._getResolution,e._greatCircleDistanceKm=ge._greatCircleDistanceKm,e._greatCircleDistanceM=ge._greatCircleDistanceM,e._greatCircleDistanceRads=ge._greatCircleDistanceRads,e._gridDisk=ge._gridDisk,e._gridDiskDistances=ge._gridDiskDistances,e._gridDistance=ge._gridDistance,e._gridPathCells=ge._gridPathCells,e._gridPathCellsSize=ge._gridPathCellsSize,e._gridRing=ge._gridRing,e._gridRingUnsafe=ge._gridRingUnsafe,e._i64Add=ge._i64Add,e._i64Subtract=ge._i64Subtract,e._isPentagon=ge._isPentagon,e._isResClassIII=ge._isResClassIII,e._isValidCell=ge._isValidCell,e._isValidDirectedEdge=ge._isValidDirectedEdge,e._isValidIndex=ge._isValidIndex,e._isValidVertex=ge._isValidVertex,e._latLngToCell=ge._latLngToCell,e._llvm_ctlz_i64=ge._llvm_ctlz_i64,e._llvm_maxnum_f64=ge._llvm_maxnum_f64,e._llvm_minnum_f64=ge._llvm_minnum_f64,e._llvm_round_f64=ge._llvm_round_f64,e._localIjToCell=ge._localIjToCell,e._malloc=ge._malloc,e._maxFaceCount=ge._maxFaceCount,e._maxGridDiskSize=ge._maxGridDiskSize,e._maxPolygonToCellsSize=ge._maxPolygonToCellsSize,e._maxPolygonToCellsSizeExperimental=ge._maxPolygonToCellsSizeExperimental,e._memcpy=ge._memcpy,e._memset=ge._memset,e._originToDirectedEdges=ge._originToDirectedEdges,e._pentagonCount=ge._pentagonCount,e._polygonToCells=ge._polygonToCells,e._polygonToCellsExperimental=ge._polygonToCellsExperimental,e._readInt64AsDoubleFromPointer=ge._readInt64AsDoubleFromPointer,e._res0CellCount=ge._res0CellCount,e._round=ge._round,e._sbrk=ge._sbrk,e._sizeOfCellBoundary=ge._sizeOfCellBoundary,e._sizeOfCoordIJ=ge._sizeOfCoordIJ,e._sizeOfGeoLoop=ge._sizeOfGeoLoop,e._sizeOfGeoPolygon=ge._sizeOfGeoPolygon,e._sizeOfH3Index=ge._sizeOfH3Index,e._sizeOfLatLng=ge._sizeOfLatLng,e._sizeOfLinkedGeoPolygon=ge._sizeOfLinkedGeoPolygon,e._uncompactCells=ge._uncompactCells,e._uncompactCellsSize=ge._uncompactCellsSize,e._vertexToLatLng=ge._vertexToLatLng,e.establishStackSpace=ge.establishStackSpace;var nt=e.stackAlloc=ge.stackAlloc,xt=e.stackRestore=ge.stackRestore,$t=e.stackSave=ge.stackSave;if(e.asm=ge,e.cwrap=L,e.setValue=S,e.getValue=w,fe){oe(fe)||(fe=s(fe));{tn();var zt=function(Ze){Ze.byteLength&&(Ze=new Uint8Array(Ze)),ne.set(Ze,x),e.memoryInitializerRequest&&delete e.memoryInitializerRequest.response,_t()},xn=function(){a(fe,zt,function(){throw"could not load memory initializer "+fe})},qi=qt(fe);if(qi)zt(qi.buffer);else if(e.memoryInitializerRequest){var rr=function(){var Ze=e.memoryInitializerRequest,At=Ze.response;if(Ze.status!==200&&Ze.status!==0){var Ot=qt(e.memoryInitializerRequestURL);if(Ot)At=Ot.buffer;else{console.warn("a problem seems to have happened with Module.memoryInitializerRequest, status: "+Ze.status+", retrying "+fe),xn();return}}zt(At)};e.memoryInitializerRequest.response?setTimeout(rr,0):e.memoryInitializerRequest.addEventListener("load",rr)}else xn()}}var pn;gt=function Ze(){pn||$i(),pn||(gt=Ze)};function $i(Ze){if(Dt>0||(Pe(),Dt>0))return;function At(){pn||(pn=!0,!R&&(pt(),vt(),e.onRuntimeInitialized&&e.onRuntimeInitialized(),Tt()))}e.setStatus?(e.setStatus("Running..."),setTimeout(function(){setTimeout(function(){e.setStatus("")},1),At()},1)):At()}e.run=$i;function Jr(Ze){throw e.onAbort&&e.onAbort(Ze),Ze+="",l(Ze),u(Ze),R=!0,"abort("+Ze+"). Build with -s ASSERTIONS=1 for more info."}if(e.abort=Jr,e.preInit)for(typeof e.preInit=="function"&&(e.preInit=[e.preInit]);e.preInit.length>0;)e.preInit.pop()();return $i(),i})(typeof Si=="object"?Si:{}),Nn="number",Cn=Nn,Md=Nn,Bn=Nn,On=Nn,Cs=Nn,nn=Nn,ZK=[["sizeOfH3Index",Nn],["sizeOfLatLng",Nn],["sizeOfCellBoundary",Nn],["sizeOfGeoLoop",Nn],["sizeOfGeoPolygon",Nn],["sizeOfLinkedGeoPolygon",Nn],["sizeOfCoordIJ",Nn],["readInt64AsDoubleFromPointer",Nn],["isValidCell",Md,[Bn,On]],["isValidIndex",Md,[Bn,On]],["latLngToCell",Cn,[Nn,Nn,Cs,nn]],["cellToLatLng",Cn,[Bn,On,nn]],["cellToBoundary",Cn,[Bn,On,nn]],["maxGridDiskSize",Cn,[Nn,nn]],["gridDisk",Cn,[Bn,On,Nn,nn]],["gridDiskDistances",Cn,[Bn,On,Nn,nn,nn]],["gridRing",Cn,[Bn,On,Nn,nn]],["gridRingUnsafe",Cn,[Bn,On,Nn,nn]],["maxPolygonToCellsSize",Cn,[nn,Cs,Nn,nn]],["polygonToCells",Cn,[nn,Cs,Nn,nn]],["maxPolygonToCellsSizeExperimental",Cn,[nn,Cs,Nn,nn]],["polygonToCellsExperimental",Cn,[nn,Cs,Nn,Nn,Nn,nn]],["cellsToLinkedMultiPolygon",Cn,[nn,Nn,nn]],["destroyLinkedMultiPolygon",null,[nn]],["compactCells",Cn,[nn,nn,Nn,Nn]],["uncompactCells",Cn,[nn,Nn,Nn,nn,Nn,Cs]],["uncompactCellsSize",Cn,[nn,Nn,Nn,Cs,nn]],["isPentagon",Md,[Bn,On]],["isResClassIII",Md,[Bn,On]],["getBaseCellNumber",Nn,[Bn,On]],["getResolution",Nn,[Bn,On]],["getIndexDigit",Nn,[Bn,On,Nn]],["constructCell",Cn,[Nn,Nn,nn,nn]],["maxFaceCount",Cn,[Bn,On,nn]],["getIcosahedronFaces",Cn,[Bn,On,nn]],["cellToParent",Cn,[Bn,On,Cs,nn]],["cellToChildren",Cn,[Bn,On,Cs,nn]],["cellToCenterChild",Cn,[Bn,On,Cs,nn]],["cellToChildrenSize",Cn,[Bn,On,Cs,nn]],["cellToChildPos",Cn,[Bn,On,Cs,nn]],["childPosToCell",Cn,[Nn,Nn,Bn,On,Cs,nn]],["areNeighborCells",Cn,[Bn,On,Bn,On,nn]],["cellsToDirectedEdge",Cn,[Bn,On,Bn,On,nn]],["getDirectedEdgeOrigin",Cn,[Bn,On,nn]],["getDirectedEdgeDestination",Cn,[Bn,On,nn]],["isValidDirectedEdge",Md,[Bn,On]],["directedEdgeToCells",Cn,[Bn,On,nn]],["originToDirectedEdges",Cn,[Bn,On,nn]],["directedEdgeToBoundary",Cn,[Bn,On,nn]],["gridDistance",Cn,[Bn,On,Bn,On,nn]],["gridPathCells",Cn,[Bn,On,Bn,On,nn]],["gridPathCellsSize",Cn,[Bn,On,Bn,On,nn]],["cellToLocalIj",Cn,[Bn,On,Bn,On,Nn,nn]],["localIjToCell",Cn,[Bn,On,nn,Nn,nn]],["getHexagonAreaAvgM2",Cn,[Cs,nn]],["getHexagonAreaAvgKm2",Cn,[Cs,nn]],["getHexagonEdgeLengthAvgM",Cn,[Cs,nn]],["getHexagonEdgeLengthAvgKm",Cn,[Cs,nn]],["greatCircleDistanceM",Nn,[nn,nn]],["greatCircleDistanceKm",Nn,[nn,nn]],["greatCircleDistanceRads",Nn,[nn,nn]],["cellAreaM2",Cn,[Bn,On,nn]],["cellAreaKm2",Cn,[Bn,On,nn]],["cellAreaRads2",Cn,[Bn,On,nn]],["edgeLengthM",Cn,[Bn,On,nn]],["edgeLengthKm",Cn,[Bn,On,nn]],["edgeLengthRads",Cn,[Bn,On,nn]],["getNumCells",Cn,[Cs,nn]],["getRes0Cells",Cn,[nn]],["res0CellCount",Nn],["getPentagons",Cn,[Nn,nn]],["pentagonCount",Nn],["cellToVertex",Cn,[Bn,On,Nn,nn]],["cellToVertexes",Cn,[Bn,On,nn]],["vertexToLatLng",Cn,[Bn,On,nn]],["isValidVertex",Md,[Bn,On]]],JK=0,eZ=1,tZ=2,nZ=3,_P=4,iZ=5,rZ=6,sZ=7,aZ=8,oZ=9,lZ=10,uZ=11,cZ=12,hZ=13,fZ=14,AZ=15,dZ=16,pZ=17,mZ=18,gZ=19,Kr={};Kr[JK]="Success";Kr[eZ]="The operation failed but a more specific error is not available";Kr[tZ]="Argument was outside of acceptable range";Kr[nZ]="Latitude or longitude arguments were outside of acceptable range";Kr[_P]="Resolution argument was outside of acceptable range";Kr[iZ]="Cell argument was not valid";Kr[rZ]="Directed edge argument was not valid";Kr[sZ]="Undirected edge argument was not valid";Kr[aZ]="Vertex argument was not valid";Kr[oZ]="Pentagon distortion was encountered";Kr[lZ]="Duplicate input";Kr[uZ]="Cell arguments were not neighbors";Kr[cZ]="Cell arguments had incompatible resolutions";Kr[hZ]="Memory allocation failed";Kr[fZ]="Bounds of provided memory were insufficient";Kr[AZ]="Mode or flags argument was not valid";Kr[dZ]="Index argument was not valid";Kr[pZ]="Base cell number was outside of acceptable range";Kr[mZ]="Child indexing digits invalid";Kr[gZ]="Child indexing digits refer to a deleted subsequence";var vZ=1e3,yP=1001,xP=1002,Ry={};Ry[vZ]="Unknown unit";Ry[yP]="Array length out of bounds";Ry[xP]="Got unexpected null value for H3 index";var _Z="Unknown error";function bP(i,e,t){var n=t&&"value"in t,r=new Error((i[e]||_Z)+" (code: "+e+(n?", value: "+t.value:"")+")");return r.code=e,r}function SP(i,e){var t=arguments.length===2?{value:e}:{};return bP(Kr,i,t)}function TP(i,e){var t=arguments.length===2?{value:e}:{};return bP(Ry,i,t)}function vg(i){if(i!==0)throw SP(i)}var eo={};ZK.forEach(function(e){eo[e[0]]=Si.cwrap.apply(Si,e)});var Xd=16,_g=4,U0=8,yZ=8,j_=eo.sizeOfH3Index(),MM=eo.sizeOfLatLng(),xZ=eo.sizeOfCellBoundary(),bZ=eo.sizeOfGeoPolygon(),Lm=eo.sizeOfGeoLoop();eo.sizeOfLinkedGeoPolygon();eo.sizeOfCoordIJ();function SZ(i){if(typeof i!="number"||i<0||i>15||Math.floor(i)!==i)throw SP(_P,i);return i}function TZ(i){if(!i)throw TP(xP);return i}var wZ=Math.pow(2,32)-1;function MZ(i){if(i>wZ)throw TP(yP,i);return i}var EZ=/[^0-9a-fA-F]/;function wP(i){if(Array.isArray(i)&&i.length===2&&Number.isInteger(i[0])&&Number.isInteger(i[1]))return i;if(typeof i!="string"||EZ.test(i))return[0,0];var e=parseInt(i.substring(0,i.length-8),Xd),t=parseInt(i.substring(i.length-8),Xd);return[t,e]}function ER(i){if(i>=0)return i.toString(Xd);i=i&2147483647;var e=MP(8,i.toString(Xd)),t=(parseInt(e[0],Xd)+8).toString(Xd);return e=t+e.substring(1),e}function CZ(i,e){return ER(e)+MP(8,ER(i))}function MP(i,e){for(var t=i-e.length,n="",r=0;r0){l=Si._calloc(t,Lm);for(var u=0;u0){for(var a=Si.getValue(i+n,"i32"),l=0;l0){const{width:a,height:l}=e.context;t.bufferWidth=a,t.bufferHeight=l}this.renderObjects.set(e,t)}return t}getAttributesData(e){const t={};for(const n in e){const r=e[n];t[n]={version:r.version}}return t}containsNode(e){const t=e.material;for(const n in t)if(t[n]&&t[n].isNode)return!0;return e.renderer.nodes.modelViewMatrix!==null||e.renderer.nodes.modelNormalViewMatrix!==null}getMaterialData(e){const t={};for(const n of this.refreshUniforms){const r=e[n];r!=null&&(typeof r=="object"&&r.clone!==void 0?r.isTexture===!0?t[n]={id:r.id,version:r.version}:t[n]=r.clone():t[n]=r)}return t}equals(e){const{object:t,material:n,geometry:r}=e,s=this.getRenderObjectData(e);if(s.worldMatrix.equals(t.matrixWorld)!==!0)return s.worldMatrix.copy(t.matrixWorld),!1;const a=s.material;for(const R in a){const C=a[R],E=n[R];if(C.equals!==void 0){if(C.equals(E)===!1)return C.copy(E),!1}else if(E.isTexture===!0){if(C.id!==E.id||C.version!==E.version)return C.id=E.id,C.version=E.version,!1}else if(C!==E)return a[R]=E,!1}if(a.transmission>0){const{width:R,height:C}=e.context;if(s.bufferWidth!==R||s.bufferHeight!==C)return s.bufferWidth=R,s.bufferHeight=C,!1}const l=s.geometry,u=r.attributes,h=l.attributes,g=Object.keys(h),v=Object.keys(u);if(g.length!==v.length)return s.geometry.attributes=this.getAttributesData(u),!1;for(const R of g){const C=h[R],E=u[R];if(E===void 0)return delete h[R],!1;if(C.version!==E.version)return C.version=E.version,!1}const x=r.index,S=l.indexVersion,w=x?x.version:null;if(S!==w)return l.indexVersion=w,!1;if(l.drawRange.start!==r.drawRange.start||l.drawRange.count!==r.drawRange.count)return l.drawRange.start=r.drawRange.start,l.drawRange.count=r.drawRange.count,!1;if(s.morphTargetInfluences){let R=!1;for(let C=0;C>>16,2246822507),t^=Math.imul(n^n>>>13,3266489909),n=Math.imul(n^n>>>16,2246822507),n^=Math.imul(t^t>>>13,3266489909),4294967296*(2097151&n)+(t>>>0)}const DP=i=>yg(i),Ny=i=>yg(i),EM=(...i)=>yg(i);function PP(i,e=!1){const t=[];i.isNode===!0&&(t.push(i.id),i=i.getSelf());for(const{property:n,childNode:r}of $_(i))t.push(t,yg(n.slice(0,-4)),r.getCacheKey(e));return yg(t)}function*$_(i,e=!1){for(const t in i){if(t.startsWith("_")===!0)continue;const n=i[t];if(Array.isArray(n)===!0)for(let r=0;re.charCodeAt(0)).buffer}const IT={VERTEX:"vertex",FRAGMENT:"fragment"},jn={NONE:"none",FRAME:"frame",RENDER:"render",OBJECT:"object"},qZ={BOOLEAN:"bool",INTEGER:"int",FLOAT:"float",VECTOR2:"vec2",VECTOR3:"vec3",VECTOR4:"vec4",MATRIX2:"mat2",MATRIX3:"mat3",MATRIX4:"mat4"},sa={READ_ONLY:"readOnly",WRITE_ONLY:"writeOnly",READ_WRITE:"readWrite"},zP=["fragment","vertex"],FT=["setup","analyze","generate"],kT=[...zP,"compute"],gA=["x","y","z","w"];let VZ=0;class Mn extends zc{static get type(){return"Node"}constructor(e=null){super(),this.nodeType=e,this.updateType=jn.NONE,this.updateBeforeType=jn.NONE,this.updateAfterType=jn.NONE,this.uuid=M0.generateUUID(),this.version=0,this.global=!1,this.isNode=!0,this._cacheKey=null,this._cacheKeyVersion=0,Object.defineProperty(this,"id",{value:VZ++})}set needsUpdate(e){e===!0&&this.version++}get type(){return this.constructor.type}onUpdate(e,t){return this.updateType=t,this.update=e.bind(this.getSelf()),this}onFrameUpdate(e){return this.onUpdate(e,jn.FRAME)}onRenderUpdate(e){return this.onUpdate(e,jn.RENDER)}onObjectUpdate(e){return this.onUpdate(e,jn.OBJECT)}onReference(e){return this.updateReference=e.bind(this.getSelf()),this}getSelf(){return this.self||this}updateReference(){return this}isGlobal(){return this.global}*getChildren(){for(const{childNode:e}of $_(this))yield e}dispose(){this.dispatchEvent({type:"dispose"})}traverse(e){e(this);for(const t of this.getChildren())t.traverse(e)}getCacheKey(e=!1){return e=e||this.version!==this._cacheKeyVersion,(e===!0||this._cacheKey===null)&&(this._cacheKey=EM(PP(this,e),this.customCacheKey()),this._cacheKeyVersion=this.version),this._cacheKey}customCacheKey(){return 0}getScope(){return this}getHash(){return this.uuid}getUpdateType(){return this.updateType}getUpdateBeforeType(){return this.updateBeforeType}getUpdateAfterType(){return this.updateAfterType}getElementType(e){const t=this.getNodeType(e);return e.getElementType(t)}getNodeType(e){const t=e.getNodeProperties(this);return t.outputNode?t.outputNode.getNodeType(e):this.nodeType}getShared(e){const t=this.getHash(e);return e.getNodeFromHash(t)||this}setup(e){const t=e.getNodeProperties(this);let n=0;for(const r of this.getChildren())t["node"+n++]=r;return t.outputNode||null}analyze(e){if(e.increaseUsage(this)===1){const n=e.getNodeProperties(this);for(const r of Object.values(n))r&&r.isNode===!0&&r.build(e)}}generate(e,t){const{outputNode:n}=e.getNodeProperties(this);if(n&&n.isNode===!0)return n.build(e,t)}updateBefore(){console.warn("Abstract function.")}updateAfter(){console.warn("Abstract function.")}update(){console.warn("Abstract function.")}build(e,t=null){const n=this.getShared(e);if(this!==n)return n.build(e,t);e.addNode(this),e.addChain(this);let r=null;const s=e.getBuildStage();if(s==="setup"){this.updateReference(e);const a=e.getNodeProperties(this);if(a.initialized!==!0){a.initialized=!0;const l=this.setup(e),u=l&&l.isNode===!0;for(const h of Object.values(a))h&&h.isNode===!0&&h.build(e);u&&l.build(e),a.outputNode=l}}else if(s==="analyze")this.analyze(e);else if(s==="generate")if(this.generate.length===1){const l=this.getNodeType(e),u=e.getDataFromNode(this);r=u.snippet,r===void 0?(r=this.generate(e)||"",u.snippet=r):u.flowCodes!==void 0&&e.context.nodeBlock!==void 0&&e.addFlowCodeHierarchy(this,e.context.nodeBlock),r=e.format(r,l,t)}else r=this.generate(e,t)||"";return e.removeChain(this),e.addSequentialNode(this),r}getSerializeChildren(){return $_(this)}serialize(e){const t=this.getSerializeChildren(),n={};for(const{property:r,index:s,childNode:a}of t)s!==void 0?(n[r]===void 0&&(n[r]=Number.isInteger(s)?[]:{}),n[r][s]=a.toJSON(e.meta).uuid):n[r]=a.toJSON(e.meta).uuid;Object.keys(n).length>0&&(e.inputNodes=n)}deserialize(e){if(e.inputNodes!==void 0){const t=e.meta.nodes;for(const n in e.inputNodes)if(Array.isArray(e.inputNodes[n])){const r=[];for(const s of e.inputNodes[n])r.push(t[s]);this[n]=r}else if(typeof e.inputNodes[n]=="object"){const r={};for(const s in e.inputNodes[n]){const a=e.inputNodes[n][s];r[s]=t[a]}this[n]=r}else{const r=e.inputNodes[n];this[n]=t[r]}}}toJSON(e){const{uuid:t,type:n}=this,r=e===void 0||typeof e=="string";r&&(e={textures:{},images:{},nodes:{}});let s=e.nodes[t];s===void 0&&(s={uuid:t,type:n,meta:e,metadata:{version:4.6,type:"Node",generator:"Node.toJSON"}},r!==!0&&(e.nodes[s.uuid]=s),this.serialize(s),delete s.meta);function a(l){const u=[];for(const h in l){const g=l[h];delete g.metadata,u.push(g)}return u}if(r){const l=a(e.textures),u=a(e.images),h=a(e.nodes);l.length>0&&(s.textures=l),u.length>0&&(s.images=u),h.length>0&&(s.nodes=h)}return s}}class vA extends Mn{static get type(){return"ArrayElementNode"}constructor(e,t){super(),this.node=e,this.indexNode=t,this.isArrayElementNode=!0}getNodeType(e){return this.node.getElementType(e)}generate(e){const t=this.node.build(e),n=this.indexNode.build(e,"uint");return`${t}[ ${n} ]`}}class GP extends Mn{static get type(){return"ConvertNode"}constructor(e,t){super(),this.node=e,this.convertTo=t}getNodeType(e){const t=this.node.getNodeType(e);let n=null;for(const r of this.convertTo.split("|"))(n===null||e.getTypeLength(t)===e.getTypeLength(r))&&(n=r);return n}serialize(e){super.serialize(e),e.convertTo=this.convertTo}deserialize(e){super.deserialize(e),this.convertTo=e.convertTo}generate(e,t){const n=this.node,r=this.getNodeType(e),s=n.build(e,r);return e.format(s,r,t)}}class Zr extends Mn{static get type(){return"TempNode"}constructor(e=null){super(e),this.isTempNode=!0}hasDependencies(e){return e.getDataFromNode(this).usageCount>1}build(e,t){if(e.getBuildStage()==="generate"){const r=e.getVectorType(this.getNodeType(e,t)),s=e.getDataFromNode(this);if(s.propertyName!==void 0)return e.format(s.propertyName,r,t);if(r!=="void"&&t!=="void"&&this.hasDependencies(e)){const a=super.build(e,r),l=e.getVarFromNode(this,null,r),u=e.getPropertyName(l);return e.addLineFlowCode(`${u} = ${a}`,this),s.snippet=a,s.propertyName=u,e.format(s.propertyName,r,t)}}return super.build(e,t)}}class HZ extends Zr{static get type(){return"JoinNode"}constructor(e=[],t=null){super(t),this.nodes=e}getNodeType(e){return this.nodeType!==null?e.getVectorType(this.nodeType):e.getTypeFromLength(this.nodes.reduce((t,n)=>t+e.getTypeLength(n.getNodeType(e)),0))}generate(e,t){const n=this.getNodeType(e),r=this.nodes,s=e.getComponentType(n),a=[];for(const u of r){let h=u.build(e);const g=e.getComponentType(u.getNodeType(e));g!==s&&(h=e.format(h,g,s)),a.push(h)}const l=`${e.getType(n)}( ${a.join(", ")} )`;return e.format(l,n,t)}}const jZ=gA.join("");class zT extends Mn{static get type(){return"SplitNode"}constructor(e,t="x"){super(),this.node=e,this.components=t,this.isSplitNode=!0}getVectorLength(){let e=this.components.length;for(const t of this.components)e=Math.max(gA.indexOf(t)+1,e);return e}getComponentType(e){return e.getComponentType(this.node.getNodeType(e))}getNodeType(e){return e.getTypeFromLength(this.components.length,this.getComponentType(e))}generate(e,t){const n=this.node,r=e.getTypeLength(n.getNodeType(e));let s=null;if(r>1){let a=null;this.getVectorLength()>=r&&(a=e.getTypeFromLength(this.getVectorLength(),this.getComponentType(e)));const u=n.build(e,a);this.components.length===r&&this.components===jZ.slice(0,this.components.length)?s=e.format(u,a,t):s=e.format(`${u}.${this.components}`,this.getNodeType(e),t)}else s=n.build(e,t);return s}serialize(e){super.serialize(e),e.components=this.components}deserialize(e){super.deserialize(e),this.components=e.components}}class WZ extends Zr{static get type(){return"SetNode"}constructor(e,t,n){super(),this.sourceNode=e,this.components=t,this.targetNode=n}getNodeType(e){return this.sourceNode.getNodeType(e)}generate(e){const{sourceNode:t,components:n,targetNode:r}=this,s=this.getNodeType(e),a=e.getComponentType(r.getNodeType(e)),l=e.getTypeFromLength(n.length,a),u=r.build(e,l),h=t.build(e,s),g=e.getTypeLength(s),v=[];for(let x=0;xi.replace(/r|s/g,"x").replace(/g|t/g,"y").replace(/b|p/g,"z").replace(/a|q/g,"w"),DR=i=>qP(i).split("").sort().join(""),VP={setup(i,e){const t=e.shift();return i(Vg(t),...e)},get(i,e,t){if(typeof e=="string"&&i[e]===void 0){if(i.isStackNode!==!0&&e==="assign")return(...n)=>(B0.assign(t,...n),t);if(Yd.has(e)){const n=Yd.get(e);return i.isStackNode?(...r)=>t.add(n(...r)):(...r)=>n(t,...r)}else{if(e==="self")return i;if(e.endsWith("Assign")&&Yd.has(e.slice(0,e.length-6))){const n=Yd.get(e.slice(0,e.length-6));return i.isStackNode?(...r)=>t.assign(r[0],n(...r)):(...r)=>t.assign(n(t,...r))}else{if(/^[xyzwrgbastpq]{1,4}$/.test(e)===!0)return e=qP(e),dt(new zT(t,e));if(/^set[XYZWRGBASTPQ]{1,4}$/.test(e)===!0)return e=DR(e.slice(3).toLowerCase()),n=>dt(new WZ(i,e,n));if(/^flip[XYZWRGBASTPQ]{1,4}$/.test(e)===!0)return e=DR(e.slice(4).toLowerCase()),()=>dt(new $Z(dt(i),e));if(e==="width"||e==="height"||e==="depth")return e==="width"?e="x":e==="height"?e="y":e==="depth"&&(e="z"),dt(new zT(i,e));if(/^\d+$/.test(e)===!0)return dt(new vA(t,new Ll(Number(e),"uint")))}}}return Reflect.get(i,e,t)},set(i,e,t,n){return typeof e=="string"&&i[e]===void 0&&(/^[xyzwrgbastpq]{1,4}$/.test(e)===!0||e==="width"||e==="height"||e==="depth"||/^\d+$/.test(e)===!0)?(n[e].assign(t),!0):Reflect.set(i,e,t,n)}},W3=new WeakMap,PR=new WeakMap,XZ=function(i,e=null){const t=Uh(i);if(t==="node"){let n=W3.get(i);return n===void 0&&(n=new Proxy(i,VP),W3.set(i,n),W3.set(n,n)),n}else{if(e===null&&(t==="float"||t==="boolean")||t&&t!=="shader"&&t!=="string")return dt(GT(i,e));if(t==="shader")return je(i)}return i},YZ=function(i,e=null){for(const t in i)i[t]=dt(i[t],e);return i},QZ=function(i,e=null){const t=i.length;for(let n=0;ndt(n!==null?Object.assign(s,n):s);return e===null?(...s)=>r(new i(...tA(s))):t!==null?(t=dt(t),(...s)=>r(new i(e,...tA(s),t))):(...s)=>r(new i(e,...tA(s)))},ZZ=function(i,...e){return dt(new i(...tA(e)))};class JZ extends Mn{constructor(e,t){super(),this.shaderNode=e,this.inputNodes=t}getNodeType(e){return this.shaderNode.nodeType||this.getOutputNode(e).getNodeType(e)}call(e){const{shaderNode:t,inputNodes:n}=this,r=e.getNodeProperties(t);if(r.onceOutput)return r.onceOutput;let s=null;if(t.layout){let a=PR.get(e.constructor);a===void 0&&(a=new WeakMap,PR.set(e.constructor,a));let l=a.get(t);l===void 0&&(l=dt(e.buildFunctionNode(t)),a.set(t,l)),e.currentFunctionNode!==null&&e.currentFunctionNode.includes.push(l),s=dt(l.call(n))}else{const a=t.jsFunc,l=n!==null?a(n,e):a(e);s=dt(l)}return t.once&&(r.onceOutput=s),s}getOutputNode(e){const t=e.getNodeProperties(this);return t.outputNode===null&&(t.outputNode=this.setupOutput(e)),t.outputNode}setup(e){return this.getOutputNode(e)}setupOutput(e){return e.addStack(),e.stack.outputNode=this.call(e),e.removeStack()}generate(e,t){return this.getOutputNode(e).build(e,t)}}class eJ extends Mn{constructor(e,t){super(t),this.jsFunc=e,this.layout=null,this.global=!0,this.once=!1}setLayout(e){return this.layout=e,this}call(e=null){return Vg(e),dt(new JZ(this,e))}setup(){return this.call()}}const tJ=[!1,!0],nJ=[0,1,2,3],iJ=[-1,-2],HP=[.5,1.5,1/3,1e-6,1e6,Math.PI,Math.PI*2,1/Math.PI,2/Math.PI,1/(Math.PI*2),Math.PI/2],RM=new Map;for(const i of tJ)RM.set(i,new Ll(i));const NM=new Map;for(const i of nJ)NM.set(i,new Ll(i,"uint"));const DM=new Map([...NM].map(i=>new Ll(i.value,"int")));for(const i of iJ)DM.set(i,new Ll(i,"int"));const Dy=new Map([...DM].map(i=>new Ll(i.value)));for(const i of HP)Dy.set(i,new Ll(i));for(const i of HP)Dy.set(-i,new Ll(-i));const Py={bool:RM,uint:NM,ints:DM,float:Dy},LR=new Map([...RM,...Dy]),GT=(i,e)=>LR.has(i)?LR.get(i):i.isNode===!0?i:new Ll(i,e),rJ=i=>{try{return i.getNodeType()}catch{return}},ls=function(i,e=null){return(...t)=>{if((t.length===0||!["bool","float","int","uint"].includes(i)&&t.every(r=>typeof r!="object"))&&(t=[OP(i,...t)]),t.length===1&&e!==null&&e.has(t[0]))return dt(e.get(t[0]));if(t.length===1){const r=GT(t[0],i);return rJ(r)===i?dt(r):dt(new GP(r,i))}const n=t.map(r=>GT(r));return dt(new HZ(n,i))}},xg=i=>typeof i=="object"&&i!==null?i.value:i,jP=i=>i!=null?i.nodeType||i.convertTo||(typeof i=="string"?i:null):null;function Um(i,e){return new Proxy(new eJ(i,e),VP)}const dt=(i,e=null)=>XZ(i,e),Vg=(i,e=null)=>new YZ(i,e),tA=(i,e=null)=>new QZ(i,e),lt=(...i)=>new KZ(...i),Gt=(...i)=>new ZZ(...i),je=(i,e)=>{const t=new Um(i,e),n=(...r)=>{let s;return Vg(r),r[0]&&r[0].isNode?s=[...r]:s=r[0],t.call(s)};return n.shaderNode=t,n.setLayout=r=>(t.setLayout(r),n),n.once=()=>(t.once=!0,n),n},sJ=(...i)=>(console.warn("TSL.ShaderNode: tslFn() has been renamed to Fn()."),je(...i));ot("toGlobal",i=>(i.global=!0,i));const bg=i=>{B0=i},PM=()=>B0,ti=(...i)=>B0.If(...i);function WP(i){return B0&&B0.add(i),i}ot("append",WP);const $P=new ls("color"),ve=new ls("float",Py.float),xe=new ls("int",Py.ints),Kt=new ls("uint",Py.uint),Ic=new ls("bool",Py.bool),wt=new ls("vec2"),ms=new ls("ivec2"),XP=new ls("uvec2"),YP=new ls("bvec2"),De=new ls("vec3"),QP=new ls("ivec3"),Y0=new ls("uvec3"),LM=new ls("bvec3"),dn=new ls("vec4"),KP=new ls("ivec4"),ZP=new ls("uvec4"),JP=new ls("bvec4"),Ly=new ls("mat2"),ha=new ls("mat3"),nA=new ls("mat4"),aJ=(i="")=>dt(new Ll(i,"string")),oJ=i=>dt(new Ll(i,"ArrayBuffer"));ot("toColor",$P);ot("toFloat",ve);ot("toInt",xe);ot("toUint",Kt);ot("toBool",Ic);ot("toVec2",wt);ot("toIVec2",ms);ot("toUVec2",XP);ot("toBVec2",YP);ot("toVec3",De);ot("toIVec3",QP);ot("toUVec3",Y0);ot("toBVec3",LM);ot("toVec4",dn);ot("toIVec4",KP);ot("toUVec4",ZP);ot("toBVec4",JP);ot("toMat2",Ly);ot("toMat3",ha);ot("toMat4",nA);const eL=lt(vA),tL=(i,e)=>dt(new GP(dt(i),e)),lJ=(i,e)=>dt(new zT(dt(i),e));ot("element",eL);ot("convert",tL);class nL extends Mn{static get type(){return"UniformGroupNode"}constructor(e,t=!1,n=1){super("string"),this.name=e,this.shared=t,this.order=n,this.isUniformGroup=!0}serialize(e){super.serialize(e),e.name=this.name,e.version=this.version,e.shared=this.shared}deserialize(e){super.deserialize(e),this.name=e.name,this.version=e.version,this.shared=e.shared}}const iL=i=>new nL(i),UM=(i,e=0)=>new nL(i,!0,e),rL=UM("frame"),Rn=UM("render"),BM=iL("object");class Hg extends CM{static get type(){return"UniformNode"}constructor(e,t=null){super(e,t),this.isUniformNode=!0,this.name="",this.groupNode=BM}label(e){return this.name=e,this}setGroup(e){return this.groupNode=e,this}getGroup(){return this.groupNode}getUniformHash(e){return this.getHash(e)}onUpdate(e,t){const n=this.getSelf();return e=e.bind(n),super.onUpdate(r=>{const s=e(r,n);s!==void 0&&(this.value=s)},t)}generate(e,t){const n=this.getNodeType(e),r=this.getUniformHash(e);let s=e.getNodeFromHash(r);s===void 0&&(e.setHashNode(this,r),s=this);const a=s.getInputType(e),l=e.getUniformFromNode(s,a,e.shaderStage,this.name||e.context.label),u=e.getPropertyName(l);return e.context.label!==void 0&&delete e.context.label,e.format(u,n,t)}}const gn=(i,e)=>{const t=jP(e||i),n=i&&i.isNode===!0?i.node&&i.node.value||i.value:i;return dt(new Hg(n,t))};class Gi extends Mn{static get type(){return"PropertyNode"}constructor(e,t=null,n=!1){super(e),this.name=t,this.varying=n,this.isPropertyNode=!0}getHash(e){return this.name||super.getHash(e)}isGlobal(){return!0}generate(e){let t;return this.varying===!0?(t=e.getVaryingFromNode(this,this.name),t.needsInterpolation=!0):t=e.getVarFromNode(this,this.name),e.getPropertyName(t)}}const sL=(i,e)=>dt(new Gi(i,e)),Sg=(i,e)=>dt(new Gi(i,e,!0)),Ui=Gt(Gi,"vec4","DiffuseColor"),qT=Gt(Gi,"vec3","EmissiveColor"),Zl=Gt(Gi,"float","Roughness"),Tg=Gt(Gi,"float","Metalness"),X_=Gt(Gi,"float","Clearcoat"),wg=Gt(Gi,"float","ClearcoatRoughness"),Xf=Gt(Gi,"vec3","Sheen"),Uy=Gt(Gi,"float","SheenRoughness"),By=Gt(Gi,"float","Iridescence"),OM=Gt(Gi,"float","IridescenceIOR"),IM=Gt(Gi,"float","IridescenceThickness"),Y_=Gt(Gi,"float","AlphaT"),Rh=Gt(Gi,"float","Anisotropy"),Bm=Gt(Gi,"vec3","AnisotropyT"),iA=Gt(Gi,"vec3","AnisotropyB"),ka=Gt(Gi,"color","SpecularColor"),Mg=Gt(Gi,"float","SpecularF90"),Q_=Gt(Gi,"float","Shininess"),Eg=Gt(Gi,"vec4","Output"),Qv=Gt(Gi,"float","dashSize"),VT=Gt(Gi,"float","gapSize"),uJ=Gt(Gi,"float","pointWidth"),Om=Gt(Gi,"float","IOR"),K_=Gt(Gi,"float","Transmission"),FM=Gt(Gi,"float","Thickness"),kM=Gt(Gi,"float","AttenuationDistance"),zM=Gt(Gi,"color","AttenuationColor"),GM=Gt(Gi,"float","Dispersion");class cJ extends Zr{static get type(){return"AssignNode"}constructor(e,t){super(),this.targetNode=e,this.sourceNode=t}hasDependencies(){return!1}getNodeType(e,t){return t!=="void"?this.targetNode.getNodeType(e):"void"}needsSplitAssign(e){const{targetNode:t}=this;if(e.isAvailable("swizzleAssign")===!1&&t.isSplitNode&&t.components.length>1){const n=e.getTypeLength(t.node.getNodeType(e));return gA.join("").slice(0,n)!==t.components}return!1}generate(e,t){const{targetNode:n,sourceNode:r}=this,s=this.needsSplitAssign(e),a=n.getNodeType(e),l=n.context({assign:!0}).build(e),u=r.build(e,a),h=r.getNodeType(e),g=e.getDataFromNode(this);let v;if(g.initialized===!0)t!=="void"&&(v=l);else if(s){const x=e.getVarFromNode(this,null,a),S=e.getPropertyName(x);e.addLineFlowCode(`${S} = ${u}`,this);const w=n.node.context({assign:!0}).build(e);for(let R=0;R{const g=h.type,v=g==="pointer";let x;return v?x="&"+u.build(e):x=u.build(e,g),x};if(Array.isArray(s))for(let u=0;u(e=e.length>1||e[0]&&e[0].isNode===!0?tA(e):Vg(e[0]),dt(new hJ(dt(i),e)));ot("call",oL);class Mr extends Zr{static get type(){return"OperatorNode"}constructor(e,t,n,...r){if(super(),r.length>0){let s=new Mr(e,t,n);for(let a=0;a>"||n==="<<")return e.getIntegerType(a);if(n==="!"||n==="=="||n==="&&"||n==="||"||n==="^^")return"bool";if(n==="<"||n===">"||n==="<="||n===">="){const u=t?e.getTypeLength(t):Math.max(e.getTypeLength(a),e.getTypeLength(l));return u>1?`bvec${u}`:"bool"}else return a==="float"&&e.isMatrix(l)?l:e.isMatrix(a)&&e.isVector(l)?e.getVectorFromMatrix(a):e.isVector(a)&&e.isMatrix(l)?e.getVectorFromMatrix(l):e.getTypeLength(l)>e.getTypeLength(a)?l:a}generate(e,t){const n=this.op,r=this.aNode,s=this.bNode,a=this.getNodeType(e,t);let l=null,u=null;a!=="void"?(l=r.getNodeType(e),u=typeof s<"u"?s.getNodeType(e):null,n==="<"||n===">"||n==="<="||n===">="||n==="=="?e.isVector(l)?u=l:l!==u&&(l=u="float"):n===">>"||n==="<<"?(l=a,u=e.changeComponentType(u,"uint")):e.isMatrix(l)&&e.isVector(u)?u=e.getVectorFromMatrix(l):e.isVector(l)&&e.isMatrix(u)?l=e.getVectorFromMatrix(u):l=u=a):l=u=a;const h=r.build(e,l),g=typeof s<"u"?s.build(e,u):null,v=e.getTypeLength(t),x=e.getFunctionOperator(n);if(t!=="void")return n==="<"&&v>1?e.useComparisonMethod?e.format(`${e.getMethod("lessThan",t)}( ${h}, ${g} )`,a,t):e.format(`( ${h} < ${g} )`,a,t):n==="<="&&v>1?e.useComparisonMethod?e.format(`${e.getMethod("lessThanEqual",t)}( ${h}, ${g} )`,a,t):e.format(`( ${h} <= ${g} )`,a,t):n===">"&&v>1?e.useComparisonMethod?e.format(`${e.getMethod("greaterThan",t)}( ${h}, ${g} )`,a,t):e.format(`( ${h} > ${g} )`,a,t):n===">="&&v>1?e.useComparisonMethod?e.format(`${e.getMethod("greaterThanEqual",t)}( ${h}, ${g} )`,a,t):e.format(`( ${h} >= ${g} )`,a,t):n==="!"||n==="~"?e.format(`(${n}${h})`,l,t):x?e.format(`${x}( ${h}, ${g} )`,a,t):e.format(`( ${h} ${n} ${g} )`,a,t);if(l!=="void")return x?e.format(`${x}( ${h}, ${g} )`,a,t):e.format(`${h} ${n} ${g}`,a,t)}serialize(e){super.serialize(e),e.op=this.op}deserialize(e){super.deserialize(e),this.op=e.op}}const Qr=lt(Mr,"+"),Ti=lt(Mr,"-"),Wn=lt(Mr,"*"),Dl=lt(Mr,"/"),qM=lt(Mr,"%"),lL=lt(Mr,"=="),uL=lt(Mr,"!="),cL=lt(Mr,"<"),VM=lt(Mr,">"),hL=lt(Mr,"<="),fL=lt(Mr,">="),AL=lt(Mr,"&&"),dL=lt(Mr,"||"),pL=lt(Mr,"!"),mL=lt(Mr,"^^"),gL=lt(Mr,"&"),vL=lt(Mr,"~"),_L=lt(Mr,"|"),yL=lt(Mr,"^"),xL=lt(Mr,"<<"),bL=lt(Mr,">>");ot("add",Qr);ot("sub",Ti);ot("mul",Wn);ot("div",Dl);ot("modInt",qM);ot("equal",lL);ot("notEqual",uL);ot("lessThan",cL);ot("greaterThan",VM);ot("lessThanEqual",hL);ot("greaterThanEqual",fL);ot("and",AL);ot("or",dL);ot("not",pL);ot("xor",mL);ot("bitAnd",gL);ot("bitNot",vL);ot("bitOr",_L);ot("bitXor",yL);ot("shiftLeft",xL);ot("shiftRight",bL);const SL=(...i)=>(console.warn("TSL.OperatorNode: .remainder() has been renamed to .modInt()."),qM(...i));ot("remainder",SL);class He extends Zr{static get type(){return"MathNode"}constructor(e,t,n=null,r=null){super(),this.method=e,this.aNode=t,this.bNode=n,this.cNode=r}getInputType(e){const t=this.aNode.getNodeType(e),n=this.bNode?this.bNode.getNodeType(e):null,r=this.cNode?this.cNode.getNodeType(e):null,s=e.isMatrix(t)?0:e.getTypeLength(t),a=e.isMatrix(n)?0:e.getTypeLength(n),l=e.isMatrix(r)?0:e.getTypeLength(r);return s>a&&s>l?t:a>l?n:l>s?r:t}getNodeType(e){const t=this.method;return t===He.LENGTH||t===He.DISTANCE||t===He.DOT?"float":t===He.CROSS?"vec3":t===He.ALL?"bool":t===He.EQUALS?e.changeComponentType(this.aNode.getNodeType(e),"bool"):t===He.MOD?this.aNode.getNodeType(e):this.getInputType(e)}generate(e,t){let n=this.method;const r=this.getNodeType(e),s=this.getInputType(e),a=this.aNode,l=this.bNode,u=this.cNode,h=e.renderer.coordinateSystem;if(n===He.TRANSFORM_DIRECTION){let g=a,v=l;e.isMatrix(g.getNodeType(e))?v=dn(De(v),0):g=dn(De(g),0);const x=Wn(g,v).xyz;return Fc(x).build(e,t)}else{if(n===He.NEGATE)return e.format("( - "+a.build(e,s)+" )",r,t);if(n===He.ONE_MINUS)return Ti(1,a).build(e,t);if(n===He.RECIPROCAL)return Dl(1,a).build(e,t);if(n===He.DIFFERENCE)return ur(Ti(a,l)).build(e,t);{const g=[];return n===He.CROSS||n===He.MOD?g.push(a.build(e,r),l.build(e,r)):h===Ha&&n===He.STEP?g.push(a.build(e,e.getTypeLength(a.getNodeType(e))===1?"float":s),l.build(e,s)):h===Ha&&(n===He.MIN||n===He.MAX)||n===He.MOD?g.push(a.build(e,s),l.build(e,e.getTypeLength(l.getNodeType(e))===1?"float":s)):n===He.REFRACT?g.push(a.build(e,s),l.build(e,s),u.build(e,"float")):n===He.MIX?g.push(a.build(e,s),l.build(e,s),u.build(e,e.getTypeLength(u.getNodeType(e))===1?"float":s)):(h===pu&&n===He.ATAN&&l!==null&&(n="atan2"),g.push(a.build(e,s)),l!==null&&g.push(l.build(e,s)),u!==null&&g.push(u.build(e,s))),e.format(`${e.getMethod(n,r)}( ${g.join(", ")} )`,r,t)}}}serialize(e){super.serialize(e),e.method=this.method}deserialize(e){super.deserialize(e),this.method=e.method}}He.ALL="all";He.ANY="any";He.RADIANS="radians";He.DEGREES="degrees";He.EXP="exp";He.EXP2="exp2";He.LOG="log";He.LOG2="log2";He.SQRT="sqrt";He.INVERSE_SQRT="inversesqrt";He.FLOOR="floor";He.CEIL="ceil";He.NORMALIZE="normalize";He.FRACT="fract";He.SIN="sin";He.COS="cos";He.TAN="tan";He.ASIN="asin";He.ACOS="acos";He.ATAN="atan";He.ABS="abs";He.SIGN="sign";He.LENGTH="length";He.NEGATE="negate";He.ONE_MINUS="oneMinus";He.DFDX="dFdx";He.DFDY="dFdy";He.ROUND="round";He.RECIPROCAL="reciprocal";He.TRUNC="trunc";He.FWIDTH="fwidth";He.TRANSPOSE="transpose";He.BITCAST="bitcast";He.EQUALS="equals";He.MIN="min";He.MAX="max";He.MOD="mod";He.STEP="step";He.REFLECT="reflect";He.DISTANCE="distance";He.DIFFERENCE="difference";He.DOT="dot";He.CROSS="cross";He.POW="pow";He.TRANSFORM_DIRECTION="transformDirection";He.MIX="mix";He.CLAMP="clamp";He.REFRACT="refract";He.SMOOTHSTEP="smoothstep";He.FACEFORWARD="faceforward";const TL=ve(1e-6),fJ=ve(1e6),Z_=ve(Math.PI),AJ=ve(Math.PI*2),HM=lt(He,He.ALL),wL=lt(He,He.ANY),ML=lt(He,He.RADIANS),EL=lt(He,He.DEGREES),jM=lt(He,He.EXP),O0=lt(He,He.EXP2),Oy=lt(He,He.LOG),cu=lt(He,He.LOG2),Cu=lt(He,He.SQRT),WM=lt(He,He.INVERSE_SQRT),hu=lt(He,He.FLOOR),Iy=lt(He,He.CEIL),Fc=lt(He,He.NORMALIZE),Hc=lt(He,He.FRACT),Mo=lt(He,He.SIN),yc=lt(He,He.COS),CL=lt(He,He.TAN),RL=lt(He,He.ASIN),NL=lt(He,He.ACOS),$M=lt(He,He.ATAN),ur=lt(He,He.ABS),Cg=lt(He,He.SIGN),Rc=lt(He,He.LENGTH),DL=lt(He,He.NEGATE),PL=lt(He,He.ONE_MINUS),XM=lt(He,He.DFDX),YM=lt(He,He.DFDY),LL=lt(He,He.ROUND),UL=lt(He,He.RECIPROCAL),QM=lt(He,He.TRUNC),BL=lt(He,He.FWIDTH),OL=lt(He,He.TRANSPOSE),dJ=lt(He,He.BITCAST),IL=lt(He,He.EQUALS),to=lt(He,He.MIN),qr=lt(He,He.MAX),KM=lt(He,He.MOD),Fy=lt(He,He.STEP),FL=lt(He,He.REFLECT),kL=lt(He,He.DISTANCE),zL=lt(He,He.DIFFERENCE),Xh=lt(He,He.DOT),ky=lt(He,He.CROSS),Cl=lt(He,He.POW),ZM=lt(He,He.POW,2),GL=lt(He,He.POW,3),qL=lt(He,He.POW,4),VL=lt(He,He.TRANSFORM_DIRECTION),HL=i=>Wn(Cg(i),Cl(ur(i),1/3)),jL=i=>Xh(i,i),Fi=lt(He,He.MIX),vu=(i,e=0,t=1)=>dt(new He(He.CLAMP,dt(i),dt(e),dt(t))),WL=i=>vu(i),JM=lt(He,He.REFRACT),kc=lt(He,He.SMOOTHSTEP),eE=lt(He,He.FACEFORWARD),$L=je(([i])=>{const n=43758.5453,r=Xh(i.xy,wt(12.9898,78.233)),s=KM(r,Z_);return Hc(Mo(s).mul(n))}),XL=(i,e,t)=>Fi(e,t,i),YL=(i,e,t)=>kc(e,t,i),QL=(i,e)=>(console.warn('THREE.TSL: "atan2" is overloaded. Use "atan" instead.'),$M(i,e)),pJ=eE,mJ=WM;ot("all",HM);ot("any",wL);ot("equals",IL);ot("radians",ML);ot("degrees",EL);ot("exp",jM);ot("exp2",O0);ot("log",Oy);ot("log2",cu);ot("sqrt",Cu);ot("inverseSqrt",WM);ot("floor",hu);ot("ceil",Iy);ot("normalize",Fc);ot("fract",Hc);ot("sin",Mo);ot("cos",yc);ot("tan",CL);ot("asin",RL);ot("acos",NL);ot("atan",$M);ot("abs",ur);ot("sign",Cg);ot("length",Rc);ot("lengthSq",jL);ot("negate",DL);ot("oneMinus",PL);ot("dFdx",XM);ot("dFdy",YM);ot("round",LL);ot("reciprocal",UL);ot("trunc",QM);ot("fwidth",BL);ot("atan2",QL);ot("min",to);ot("max",qr);ot("mod",KM);ot("step",Fy);ot("reflect",FL);ot("distance",kL);ot("dot",Xh);ot("cross",ky);ot("pow",Cl);ot("pow2",ZM);ot("pow3",GL);ot("pow4",qL);ot("transformDirection",VL);ot("mix",XL);ot("clamp",vu);ot("refract",JM);ot("smoothstep",YL);ot("faceForward",eE);ot("difference",zL);ot("saturate",WL);ot("cbrt",HL);ot("transpose",OL);ot("rand",$L);class gJ extends Mn{static get type(){return"ConditionalNode"}constructor(e,t,n=null){super(),this.condNode=e,this.ifNode=t,this.elseNode=n}getNodeType(e){const{ifNode:t,elseNode:n}=e.getNodeProperties(this);if(t===void 0)return this.setup(e),this.getNodeType(e);const r=t.getNodeType(e);if(n!==null){const s=n.getNodeType(e);if(e.getTypeLength(s)>e.getTypeLength(r))return s}return r}setup(e){const t=this.condNode.cache(),n=this.ifNode.cache(),r=this.elseNode?this.elseNode.cache():null,s=e.context.nodeBlock;e.getDataFromNode(n).parentNodeBlock=s,r!==null&&(e.getDataFromNode(r).parentNodeBlock=s);const a=e.getNodeProperties(this);a.condNode=t,a.ifNode=n.context({nodeBlock:n}),a.elseNode=r?r.context({nodeBlock:r}):null}generate(e,t){const n=this.getNodeType(e),r=e.getDataFromNode(this);if(r.nodeProperty!==void 0)return r.nodeProperty;const{condNode:s,ifNode:a,elseNode:l}=e.getNodeProperties(this),u=t!=="void",h=u?sL(n).build(e):"";r.nodeProperty=h;const g=s.build(e,"bool");e.addFlowCode(` -${e.tab}if ( ${g} ) { - -`).addFlowTab();let v=a.build(e,n);if(v&&(u?v=h+" = "+v+";":v="return "+v+";"),e.removeFlowTab().addFlowCode(e.tab+" "+v+` - -`+e.tab+"}"),l!==null){e.addFlowCode(` else { - -`).addFlowTab();let x=l.build(e,n);x&&(u?x=h+" = "+x+";":x="return "+x+";"),e.removeFlowTab().addFlowCode(e.tab+" "+x+` - -`+e.tab+`} - -`)}else e.addFlowCode(` - -`);return e.format(h,n,t)}}const zs=lt(gJ);ot("select",zs);const KL=(...i)=>(console.warn("TSL.ConditionalNode: cond() has been renamed to select()."),zs(...i));ot("cond",KL);class ZL extends Mn{static get type(){return"ContextNode"}constructor(e,t={}){super(),this.isContextNode=!0,this.node=e,this.value=t}getScope(){return this.node.getScope()}getNodeType(e){return this.node.getNodeType(e)}analyze(e){this.node.build(e)}setup(e){const t=e.getContext();e.setContext({...e.context,...this.value});const n=this.node.build(e);return e.setContext(t),n}generate(e,t){const n=e.getContext();e.setContext({...e.context,...this.value});const r=this.node.build(e,t);return e.setContext(n),r}}const zy=lt(ZL),JL=(i,e)=>zy(i,{label:e});ot("context",zy);ot("label",JL);class Kv extends Mn{static get type(){return"VarNode"}constructor(e,t=null){super(),this.node=e,this.name=t,this.global=!0,this.isVarNode=!0}getHash(e){return this.name||super.getHash(e)}getNodeType(e){return this.node.getNodeType(e)}generate(e){const{node:t,name:n}=this,r=e.getVarFromNode(this,n,e.getVectorType(this.getNodeType(e))),s=e.getPropertyName(r),a=t.build(e,r.type);return e.addLineFlowCode(`${s} = ${a}`,this),s}}const e9=lt(Kv);ot("toVar",(...i)=>e9(...i).append());const t9=i=>(console.warn('TSL: "temp" is deprecated. Use ".toVar()" instead.'),e9(i));ot("temp",t9);class vJ extends Mn{static get type(){return"VaryingNode"}constructor(e,t=null){super(),this.node=e,this.name=t,this.isVaryingNode=!0}isGlobal(){return!0}getHash(e){return this.name||super.getHash(e)}getNodeType(e){return this.node.getNodeType(e)}setupVarying(e){const t=e.getNodeProperties(this);let n=t.varying;if(n===void 0){const r=this.name,s=this.getNodeType(e);t.varying=n=e.getVaryingFromNode(this,r,s),t.node=this.node}return n.needsInterpolation||(n.needsInterpolation=e.shaderStage==="fragment"),n}setup(e){this.setupVarying(e)}analyze(e){return this.setupVarying(e),this.node.analyze(e)}generate(e){const t=e.getNodeProperties(this),n=this.setupVarying(e),r=e.shaderStage==="fragment"&&t.reassignPosition===!0&&e.context.needsPositionReassign;if(t.propertyName===void 0||r){const s=this.getNodeType(e),a=e.getPropertyName(n,IT.VERTEX);e.flowNodeFromShaderStage(IT.VERTEX,this.node,s,a),t.propertyName=a,r?t.reassignPosition=!1:t.reassignPosition===void 0&&e.context.isPositionNodeInput&&(t.reassignPosition=!0)}return e.getPropertyName(n)}}const ro=lt(vJ),n9=i=>ro(i);ot("varying",ro);ot("vertexStage",n9);const i9=je(([i])=>{const e=i.mul(.9478672986).add(.0521327014).pow(2.4),t=i.mul(.0773993808),n=i.lessThanEqual(.04045);return Fi(e,t,n)}).setLayout({name:"sRGBTransferEOTF",type:"vec3",inputs:[{name:"color",type:"vec3"}]}),r9=je(([i])=>{const e=i.pow(.41666).mul(1.055).sub(.055),t=i.mul(12.92),n=i.lessThanEqual(.0031308);return Fi(e,t,n)}).setLayout({name:"sRGBTransferOETF",type:"vec3",inputs:[{name:"color",type:"vec3"}]}),jg="WorkingColorSpace",tE="OutputColorSpace";class Wg extends Zr{static get type(){return"ColorSpaceNode"}constructor(e,t,n){super("vec4"),this.colorNode=e,this.source=t,this.target=n}resolveColorSpace(e,t){return t===jg?ai.workingColorSpace:t===tE?e.context.outputColorSpace||e.renderer.outputColorSpace:t}setup(e){const{colorNode:t}=this,n=this.resolveColorSpace(e,this.source),r=this.resolveColorSpace(e,this.target);let s=t;return ai.enabled===!1||n===r||!n||!r||(ai.getTransfer(n)===Vi&&(s=dn(i9(s.rgb),s.a)),ai.getPrimaries(n)!==ai.getPrimaries(r)&&(s=dn(ha(ai._getMatrix(new Vn,n,r)).mul(s.rgb),s.a)),ai.getTransfer(r)===Vi&&(s=dn(r9(s.rgb),s.a))),s}}const s9=i=>dt(new Wg(dt(i),jg,tE)),a9=i=>dt(new Wg(dt(i),tE,jg)),o9=(i,e)=>dt(new Wg(dt(i),jg,e)),nE=(i,e)=>dt(new Wg(dt(i),e,jg)),_J=(i,e,t)=>dt(new Wg(dt(i),e,t));ot("toOutputColorSpace",s9);ot("toWorkingColorSpace",a9);ot("workingToColorSpace",o9);ot("colorSpaceToWorking",nE);let yJ=class extends vA{static get type(){return"ReferenceElementNode"}constructor(e,t){super(e,t),this.referenceNode=e,this.isReferenceElementNode=!0}getNodeType(){return this.referenceNode.uniformType}generate(e){const t=super.generate(e),n=this.referenceNode.getNodeType(),r=this.getNodeType();return e.format(t,n,r)}};class l9 extends Mn{static get type(){return"ReferenceBaseNode"}constructor(e,t,n=null,r=null){super(),this.property=e,this.uniformType=t,this.object=n,this.count=r,this.properties=e.split("."),this.reference=n,this.node=null,this.group=null,this.updateType=jn.OBJECT}setGroup(e){return this.group=e,this}element(e){return dt(new yJ(this,dt(e)))}setNodeType(e){const t=gn(null,e).getSelf();this.group!==null&&t.setGroup(this.group),this.node=t}getNodeType(e){return this.node===null&&(this.updateReference(e),this.updateValue()),this.node.getNodeType(e)}getValueFromReference(e=this.reference){const{properties:t}=this;let n=e[t[0]];for(let r=1;rdt(new l9(i,e,t));class bJ extends l9{static get type(){return"RendererReferenceNode"}constructor(e,t,n=null){super(e,t,n),this.renderer=n,this.setGroup(Rn)}updateReference(e){return this.reference=this.renderer!==null?this.renderer:e.renderer,this.reference}}const u9=(i,e,t=null)=>dt(new bJ(i,e,t));class SJ extends Zr{static get type(){return"ToneMappingNode"}constructor(e,t=h9,n=null){super("vec3"),this.toneMapping=e,this.exposureNode=t,this.colorNode=n}customCacheKey(){return EM(this.toneMapping)}setup(e){const t=this.colorNode||e.context.color,n=this.toneMapping;if(n===Za)return t;let r=null;const s=e.renderer.library.getToneMappingFunction(n);return s!==null?r=dn(s(t.rgb,this.exposureNode),t.a):(console.error("ToneMappingNode: Unsupported Tone Mapping configuration.",n),r=t),r}}const c9=(i,e,t)=>dt(new SJ(i,dt(e),dt(t))),h9=u9("toneMappingExposure","float");ot("toneMapping",(i,e,t)=>c9(e,t,i));class TJ extends CM{static get type(){return"BufferAttributeNode"}constructor(e,t=null,n=0,r=0){super(e,t),this.isBufferNode=!0,this.bufferType=t,this.bufferStride=n,this.bufferOffset=r,this.usage=o_,this.instanced=!1,this.attribute=null,this.global=!0,e&&e.isBufferAttribute===!0&&(this.attribute=e,this.usage=e.usage,this.instanced=e.isInstancedBufferAttribute)}getHash(e){if(this.bufferStride===0&&this.bufferOffset===0){let t=e.globalCache.getData(this.value);return t===void 0&&(t={node:this},e.globalCache.setData(this.value,t)),t.node.uuid}return this.uuid}getNodeType(e){return this.bufferType===null&&(this.bufferType=e.getTypeFromAttribute(this.attribute)),this.bufferType}setup(e){if(this.attribute!==null)return;const t=this.getNodeType(e),n=this.value,r=e.getTypeLength(t),s=this.bufferStride||r,a=this.bufferOffset,l=n.isInterleavedBuffer===!0?n:new Qw(n,s),u=new nu(l,r,a);l.setUsage(this.usage),this.attribute=u,this.attribute.isInstancedBufferAttribute=this.instanced}generate(e){const t=this.getNodeType(e),n=e.getBufferAttributeFromNode(this,t),r=e.getPropertyName(n);let s=null;return e.shaderStage==="vertex"||e.shaderStage==="compute"?(this.name=r,s=r):s=ro(this).build(e,t),s}getInputType(){return"bufferAttribute"}setUsage(e){return this.usage=e,this.attribute&&this.attribute.isBufferAttribute===!0&&(this.attribute.usage=e),this}setInstanced(e){return this.instanced=e,this}}const $g=(i,e=null,t=0,n=0)=>dt(new TJ(i,e,t,n)),f9=(i,e=null,t=0,n=0)=>$g(i,e,t,n).setUsage(qd),J_=(i,e=null,t=0,n=0)=>$g(i,e,t,n).setInstanced(!0),HT=(i,e=null,t=0,n=0)=>f9(i,e,t,n).setInstanced(!0);ot("toAttribute",i=>$g(i.value));class wJ extends Mn{static get type(){return"ComputeNode"}constructor(e,t,n=[64]){super("void"),this.isComputeNode=!0,this.computeNode=e,this.count=t,this.workgroupSize=n,this.dispatchCount=0,this.version=1,this.name="",this.updateBeforeType=jn.OBJECT,this.onInitFunction=null,this.updateDispatchCount()}dispose(){this.dispatchEvent({type:"dispose"})}label(e){return this.name=e,this}updateDispatchCount(){const{count:e,workgroupSize:t}=this;let n=t[0];for(let r=1;rdt(new wJ(dt(i),e,t));ot("compute",A9);class MJ extends Mn{static get type(){return"CacheNode"}constructor(e,t=!0){super(),this.node=e,this.parent=t,this.isCacheNode=!0}getNodeType(e){const t=e.getCache(),n=e.getCacheFromNode(this,this.parent);e.setCache(n);const r=this.node.getNodeType(e);return e.setCache(t),r}build(e,...t){const n=e.getCache(),r=e.getCacheFromNode(this,this.parent);e.setCache(r);const s=this.node.build(e,...t);return e.setCache(n),s}}const Im=(i,e)=>dt(new MJ(dt(i),e));ot("cache",Im);class EJ extends Mn{static get type(){return"BypassNode"}constructor(e,t){super(),this.isBypassNode=!0,this.outputNode=e,this.callNode=t}getNodeType(e){return this.outputNode.getNodeType(e)}generate(e){const t=this.callNode.build(e,"void");return t!==""&&e.addLineFlowCode(t,this),this.outputNode.build(e)}}const d9=lt(EJ);ot("bypass",d9);class p9 extends Mn{static get type(){return"RemapNode"}constructor(e,t,n,r=ve(0),s=ve(1)){super(),this.node=e,this.inLowNode=t,this.inHighNode=n,this.outLowNode=r,this.outHighNode=s,this.doClamp=!0}setup(){const{node:e,inLowNode:t,inHighNode:n,outLowNode:r,outHighNode:s,doClamp:a}=this;let l=e.sub(t).div(n.sub(t));return a===!0&&(l=l.clamp()),l.mul(s.sub(r)).add(r)}}const m9=lt(p9,null,null,{doClamp:!1}),g9=lt(p9);ot("remap",m9);ot("remapClamp",g9);class Zv extends Mn{static get type(){return"ExpressionNode"}constructor(e="",t="void"){super(t),this.snippet=e}generate(e,t){const n=this.getNodeType(e),r=this.snippet;if(n==="void")e.addLineFlowCode(r,this);else return e.format(`( ${r} )`,n,t)}}const Hh=lt(Zv),v9=i=>(i?zs(i,Hh("discard")):Hh("discard")).append(),CJ=()=>Hh("return").append();ot("discard",v9);class RJ extends Zr{static get type(){return"RenderOutputNode"}constructor(e,t,n){super("vec4"),this.colorNode=e,this.toneMapping=t,this.outputColorSpace=n,this.isRenderOutputNode=!0}setup({context:e}){let t=this.colorNode||e.color;const n=(this.toneMapping!==null?this.toneMapping:e.toneMapping)||Za,r=(this.outputColorSpace!==null?this.outputColorSpace:e.outputColorSpace)||Co;return n!==Za&&(t=t.toneMapping(n)),r!==Co&&r!==ai.workingColorSpace&&(t=t.workingToColorSpace(r)),t}}const _9=(i,e=null,t=null)=>dt(new RJ(dt(i),e,t));ot("renderOutput",_9);function NJ(i){console.warn("THREE.TSLBase: AddNodeElement has been removed in favor of tree-shaking. Trying add",i)}class y9 extends Mn{static get type(){return"AttributeNode"}constructor(e,t=null){super(t),this.global=!0,this._attributeName=e}getHash(e){return this.getAttributeName(e)}getNodeType(e){let t=this.nodeType;if(t===null){const n=this.getAttributeName(e);if(e.hasGeometryAttribute(n)){const r=e.geometry.getAttribute(n);t=e.getTypeFromAttribute(r)}else t="float"}return t}setAttributeName(e){return this._attributeName=e,this}getAttributeName(){return this._attributeName}generate(e){const t=this.getAttributeName(e),n=this.getNodeType(e);if(e.hasGeometryAttribute(t)===!0){const s=e.geometry.getAttribute(t),a=e.getTypeFromAttribute(s),l=e.getAttribute(t,a);return e.shaderStage==="vertex"?e.format(l.name,a,n):ro(this).build(e,n)}else return console.warn(`AttributeNode: Vertex attribute "${t}" not found on geometry.`),e.generateConst(n)}serialize(e){super.serialize(e),e.global=this.global,e._attributeName=this._attributeName}deserialize(e){super.deserialize(e),this.global=e.global,this._attributeName=e._attributeName}}const _u=(i,e)=>dt(new y9(i,e)),Er=(i=0)=>_u("uv"+(i>0?i:""),"vec2");class DJ extends Mn{static get type(){return"TextureSizeNode"}constructor(e,t=null){super("uvec2"),this.isTextureSizeNode=!0,this.textureNode=e,this.levelNode=t}generate(e,t){const n=this.textureNode.build(e,"property"),r=this.levelNode===null?"0":this.levelNode.build(e,"int");return e.format(`${e.getMethod("textureDimensions")}( ${n}, ${r} )`,this.getNodeType(e),t)}}const Fh=lt(DJ);class PJ extends Hg{static get type(){return"MaxMipLevelNode"}constructor(e){super(0),this._textureNode=e,this.updateType=jn.FRAME}get textureNode(){return this._textureNode}get texture(){return this._textureNode.value}update(){const e=this.texture,t=e.images,n=t&&t.length>0?t[0]&&t[0].image||t[0]:e.image;if(n&&n.width!==void 0){const{width:r,height:s}=n;this.value=Math.log2(Math.max(r,s))}}}const x9=lt(PJ);class yu extends Hg{static get type(){return"TextureNode"}constructor(e,t=null,n=null,r=null){super(e),this.isTextureNode=!0,this.uvNode=t,this.levelNode=n,this.biasNode=r,this.compareNode=null,this.depthNode=null,this.gradNode=null,this.sampler=!0,this.updateMatrix=!1,this.updateType=jn.NONE,this.referenceNode=null,this._value=e,this._matrixUniform=null,this.setUpdateMatrix(t===null)}set value(e){this.referenceNode?this.referenceNode.value=e:this._value=e}get value(){return this.referenceNode?this.referenceNode.value:this._value}getUniformHash(){return this.value.uuid}getNodeType(){return this.value.isDepthTexture===!0?"float":this.value.type===Rr?"uvec4":this.value.type===Ns?"ivec4":"vec4"}getInputType(){return"texture"}getDefaultUV(){return Er(this.value.channel)}updateReference(){return this.value}getTransformedUV(e){return this._matrixUniform===null&&(this._matrixUniform=gn(this.value.matrix)),this._matrixUniform.mul(De(e,1)).xy}setUpdateMatrix(e){return this.updateMatrix=e,this.updateType=e?jn.RENDER:jn.NONE,this}setupUV(e,t){const n=this.value;return e.isFlipY()&&(n.image instanceof ImageBitmap&&n.flipY===!0||n.isRenderTargetTexture===!0||n.isFramebufferTexture===!0||n.isDepthTexture===!0)&&(this.sampler?t=t.flipY():t=t.setY(xe(Fh(this,this.levelNode).y).sub(t.y).sub(1))),t}setup(e){const t=e.getNodeProperties(this);t.referenceNode=this.referenceNode;const n=this.value;if(!n||n.isTexture!==!0)throw new Error("THREE.TSL: `texture( value )` function expects a valid instance of THREE.Texture().");let r=this.uvNode;(r===null||e.context.forceUVContext===!0)&&e.context.getUV&&(r=e.context.getUV(this)),r||(r=this.getDefaultUV()),this.updateMatrix===!0&&(r=this.getTransformedUV(r)),r=this.setupUV(e,r);let s=this.levelNode;s===null&&e.context.getTextureLevel&&(s=e.context.getTextureLevel(this)),t.uvNode=r,t.levelNode=s,t.biasNode=this.biasNode,t.compareNode=this.compareNode,t.gradNode=this.gradNode,t.depthNode=this.depthNode}generateUV(e,t){return t.build(e,this.sampler===!0?"vec2":"ivec2")}generateSnippet(e,t,n,r,s,a,l,u){const h=this.value;let g;return r?g=e.generateTextureLevel(h,t,n,r,a):s?g=e.generateTextureBias(h,t,n,s,a):u?g=e.generateTextureGrad(h,t,n,u,a):l?g=e.generateTextureCompare(h,t,n,l,a):this.sampler===!1?g=e.generateTextureLoad(h,t,n,a):g=e.generateTexture(h,t,n,a),g}generate(e,t){const n=this.value,r=e.getNodeProperties(this),s=super.generate(e,"property");if(t==="sampler")return s+"_sampler";if(e.isReference(t))return s;{const a=e.getDataFromNode(this);let l=a.propertyName;if(l===void 0){const{uvNode:g,levelNode:v,biasNode:x,compareNode:S,depthNode:w,gradNode:R}=r,C=this.generateUV(e,g),E=v?v.build(e,"float"):null,B=x?x.build(e,"float"):null,L=w?w.build(e,"int"):null,O=S?S.build(e,"float"):null,z=R?[R[0].build(e,"vec2"),R[1].build(e,"vec2")]:null,G=e.getVarFromNode(this);l=e.getPropertyName(G);const k=this.generateSnippet(e,s,C,E,B,L,O,z);e.addLineFlowCode(`${l} = ${k}`,this),a.snippet=k,a.propertyName=l}let u=l;const h=this.getNodeType(e);return e.needsToWorkingColorSpace(n)&&(u=nE(Hh(u,h),n.colorSpace).setup(e).build(e,h)),e.format(u,h,t)}}setSampler(e){return this.sampler=e,this}getSampler(){return this.sampler}uv(e){return console.warn("THREE.TextureNode: .uv() has been renamed. Use .sample() instead."),this.sample(e)}sample(e){const t=this.clone();return t.uvNode=dt(e),t.referenceNode=this.getSelf(),dt(t)}blur(e){const t=this.clone();return t.biasNode=dt(e).mul(x9(t)),t.referenceNode=this.getSelf(),dt(t)}level(e){const t=this.clone();return t.levelNode=dt(e),t.referenceNode=this.getSelf(),dt(t)}size(e){return Fh(this,e)}bias(e){const t=this.clone();return t.biasNode=dt(e),t.referenceNode=this.getSelf(),dt(t)}compare(e){const t=this.clone();return t.compareNode=dt(e),t.referenceNode=this.getSelf(),dt(t)}grad(e,t){const n=this.clone();return n.gradNode=[dt(e),dt(t)],n.referenceNode=this.getSelf(),dt(n)}depth(e){const t=this.clone();return t.depthNode=dt(e),t.referenceNode=this.getSelf(),dt(t)}serialize(e){super.serialize(e),e.value=this.value.toJSON(e.meta).uuid,e.sampler=this.sampler,e.updateMatrix=this.updateMatrix,e.updateType=this.updateType}deserialize(e){super.deserialize(e),this.value=e.meta.textures[e.value],this.sampler=e.sampler,this.updateMatrix=e.updateMatrix,this.updateType=e.updateType}update(){const e=this.value,t=this._matrixUniform;t!==null&&(t.value=e.matrix),e.matrixAutoUpdate===!0&&e.updateMatrix()}clone(){const e=new this.constructor(this.value,this.uvNode,this.levelNode,this.biasNode);return e.sampler=this.sampler,e}}const Ai=lt(yu),Fr=(...i)=>Ai(...i).setSampler(!1),LJ=i=>(i.isNode===!0?i:Ai(i)).convert("sampler"),Dh=gn("float").label("cameraNear").setGroup(Rn).onRenderUpdate(({camera:i})=>i.near),Ph=gn("float").label("cameraFar").setGroup(Rn).onRenderUpdate(({camera:i})=>i.far),_A=gn("mat4").label("cameraProjectionMatrix").setGroup(Rn).onRenderUpdate(({camera:i})=>i.projectionMatrix),UJ=gn("mat4").label("cameraProjectionMatrixInverse").setGroup(Rn).onRenderUpdate(({camera:i})=>i.projectionMatrixInverse),so=gn("mat4").label("cameraViewMatrix").setGroup(Rn).onRenderUpdate(({camera:i})=>i.matrixWorldInverse),BJ=gn("mat4").label("cameraWorldMatrix").setGroup(Rn).onRenderUpdate(({camera:i})=>i.matrixWorld),OJ=gn("mat3").label("cameraNormalMatrix").setGroup(Rn).onRenderUpdate(({camera:i})=>i.normalMatrix),b9=gn(new ce).label("cameraPosition").setGroup(Rn).onRenderUpdate(({camera:i},e)=>e.value.setFromMatrixPosition(i.matrixWorld));class Li extends Mn{static get type(){return"Object3DNode"}constructor(e,t=null){super(),this.scope=e,this.object3d=t,this.updateType=jn.OBJECT,this._uniformNode=new Hg(null)}getNodeType(){const e=this.scope;if(e===Li.WORLD_MATRIX)return"mat4";if(e===Li.POSITION||e===Li.VIEW_POSITION||e===Li.DIRECTION||e===Li.SCALE)return"vec3"}update(e){const t=this.object3d,n=this._uniformNode,r=this.scope;if(r===Li.WORLD_MATRIX)n.value=t.matrixWorld;else if(r===Li.POSITION)n.value=n.value||new ce,n.value.setFromMatrixPosition(t.matrixWorld);else if(r===Li.SCALE)n.value=n.value||new ce,n.value.setFromMatrixScale(t.matrixWorld);else if(r===Li.DIRECTION)n.value=n.value||new ce,t.getWorldDirection(n.value);else if(r===Li.VIEW_POSITION){const s=e.camera;n.value=n.value||new ce,n.value.setFromMatrixPosition(t.matrixWorld),n.value.applyMatrix4(s.matrixWorldInverse)}}generate(e){const t=this.scope;return t===Li.WORLD_MATRIX?this._uniformNode.nodeType="mat4":(t===Li.POSITION||t===Li.VIEW_POSITION||t===Li.DIRECTION||t===Li.SCALE)&&(this._uniformNode.nodeType="vec3"),this._uniformNode.build(e)}serialize(e){super.serialize(e),e.scope=this.scope}deserialize(e){super.deserialize(e),this.scope=e.scope}}Li.WORLD_MATRIX="worldMatrix";Li.POSITION="position";Li.SCALE="scale";Li.VIEW_POSITION="viewPosition";Li.DIRECTION="direction";const IJ=lt(Li,Li.DIRECTION),FJ=lt(Li,Li.WORLD_MATRIX),S9=lt(Li,Li.POSITION),kJ=lt(Li,Li.SCALE),zJ=lt(Li,Li.VIEW_POSITION);class xu extends Li{static get type(){return"ModelNode"}constructor(e){super(e)}update(e){this.object3d=e.object,super.update(e)}}const GJ=Gt(xu,xu.DIRECTION),$o=Gt(xu,xu.WORLD_MATRIX),qJ=Gt(xu,xu.POSITION),VJ=Gt(xu,xu.SCALE),HJ=Gt(xu,xu.VIEW_POSITION),T9=gn(new Vn).onObjectUpdate(({object:i},e)=>e.value.getNormalMatrix(i.matrixWorld)),jJ=gn(new kn).onObjectUpdate(({object:i},e)=>e.value.copy(i.matrixWorld).invert()),Q0=je(i=>i.renderer.nodes.modelViewMatrix||w9).once()().toVar("modelViewMatrix"),w9=so.mul($o),WJ=je(i=>(i.context.isHighPrecisionModelViewMatrix=!0,gn("mat4").onObjectUpdate(({object:e,camera:t})=>e.modelViewMatrix.multiplyMatrices(t.matrixWorldInverse,e.matrixWorld)))).once()().toVar("highpModelViewMatrix"),$J=je(i=>{const e=i.context.isHighPrecisionModelViewMatrix;return gn("mat3").onObjectUpdate(({object:t,camera:n})=>(e!==!0&&t.modelViewMatrix.multiplyMatrices(n.matrixWorldInverse,t.matrixWorld),t.normalMatrix.getNormalMatrix(t.modelViewMatrix)))}).once()().toVar("highpModelNormalViewMatrix"),Gy=_u("position","vec3"),Gr=Gy.varying("positionLocal"),ey=Gy.varying("positionPrevious"),Nc=$o.mul(Gr).xyz.varying("v_positionWorld").context({needsPositionReassign:!0}),iE=Gr.transformDirection($o).varying("v_positionWorldDirection").normalize().toVar("positionWorldDirection").context({needsPositionReassign:!0}),Xr=je(i=>i.context.setupPositionView(),"vec3").once()().varying("v_positionView").context({needsPositionReassign:!0}),dr=Xr.negate().varying("v_positionViewDirection").normalize().toVar("positionViewDirection");class XJ extends Mn{static get type(){return"FrontFacingNode"}constructor(){super("bool"),this.isFrontFacingNode=!0}generate(e){const{renderer:t,material:n}=e;return t.coordinateSystem===Ha&&n.side===hr?"false":e.getFrontFacing()}}const M9=Gt(XJ),Xg=ve(M9).mul(2).sub(1),qy=_u("normal","vec3"),no=je(i=>i.geometry.hasAttribute("normal")===!1?(console.warn('TSL.NormalNode: Vertex attribute "normal" not found on geometry.'),De(0,1,0)):qy,"vec3").once()().toVar("normalLocal"),E9=Xr.dFdx().cross(Xr.dFdy()).normalize().toVar("normalFlat"),Jo=je(i=>{let e;return i.material.flatShading===!0?e=E9:e=ro(rE(no),"v_normalView").normalize(),e},"vec3").once()().toVar("normalView"),Vy=ro(Jo.transformDirection(so),"v_normalWorld").normalize().toVar("normalWorld"),zr=je(i=>i.context.setupNormal(),"vec3").once()().mul(Xg).toVar("transformedNormalView"),Hy=zr.transformDirection(so).toVar("transformedNormalWorld"),Qd=je(i=>i.context.setupClearcoatNormal(),"vec3").once()().mul(Xg).toVar("transformedClearcoatNormalView"),C9=je(([i,e=$o])=>{const t=ha(e),n=i.div(De(t[0].dot(t[0]),t[1].dot(t[1]),t[2].dot(t[2])));return t.mul(n).xyz}),rE=je(([i],e)=>{const t=e.renderer.nodes.modelNormalViewMatrix;if(t!==null)return t.transformDirection(i);const n=T9.mul(i);return so.transformDirection(n)}),R9=gn(0).onReference(({material:i})=>i).onRenderUpdate(({material:i})=>i.refractionRatio),N9=dr.negate().reflect(zr),D9=dr.negate().refract(zr,R9),P9=N9.transformDirection(so).toVar("reflectVector"),L9=D9.transformDirection(so).toVar("reflectVector");class YJ extends yu{static get type(){return"CubeTextureNode"}constructor(e,t=null,n=null,r=null){super(e,t,n,r),this.isCubeTextureNode=!0}getInputType(){return"cubeTexture"}getDefaultUV(){const e=this.value;return e.mapping===Qo?P9:e.mapping===Ko?L9:(console.error('THREE.CubeTextureNode: Mapping "%s" not supported.',e.mapping),De(0,0,0))}setUpdateMatrix(){}setupUV(e,t){const n=this.value;return e.renderer.coordinateSystem===pu||!n.isRenderTargetTexture?De(t.x.negate(),t.yz):t}generateUV(e,t){return t.build(e,"vec3")}}const I0=lt(YJ);class sE extends Hg{static get type(){return"BufferNode"}constructor(e,t,n=0){super(e,t),this.isBufferNode=!0,this.bufferType=t,this.bufferCount=n}getElementType(e){return this.getNodeType(e)}getInputType(){return"buffer"}}const Yg=(i,e,t)=>dt(new sE(i,e,t));class QJ extends vA{static get type(){return"UniformArrayElementNode"}constructor(e,t){super(e,t),this.isArrayBufferElementNode=!0}generate(e){const t=super.generate(e),n=this.getNodeType(),r=this.node.getPaddedType();return e.format(t,r,n)}}class U9 extends sE{static get type(){return"UniformArrayNode"}constructor(e,t=null){super(null),this.array=e,this.elementType=t===null?Uh(e[0]):t,this.paddedType=this.getPaddedType(),this.updateType=jn.RENDER,this.isArrayBufferNode=!0}getNodeType(){return this.paddedType}getElementType(){return this.elementType}getPaddedType(){const e=this.elementType;let t="vec4";return e==="mat2"?t="mat2":/mat/.test(e)===!0?t="mat4":e.charAt(0)==="i"?t="ivec4":e.charAt(0)==="u"&&(t="uvec4"),t}update(){const{array:e,value:t}=this,n=this.elementType;if(n==="float"||n==="int"||n==="uint")for(let r=0;rdt(new U9(i,e)),KJ=(i,e)=>(console.warn("TSL.UniformArrayNode: uniforms() has been renamed to uniformArray()."),dt(new U9(i,e)));class ZJ extends vA{static get type(){return"ReferenceElementNode"}constructor(e,t){super(e,t),this.referenceNode=e,this.isReferenceElementNode=!0}getNodeType(){return this.referenceNode.uniformType}generate(e){const t=super.generate(e),n=this.referenceNode.getNodeType(),r=this.getNodeType();return e.format(t,n,r)}}class jy extends Mn{static get type(){return"ReferenceNode"}constructor(e,t,n=null,r=null){super(),this.property=e,this.uniformType=t,this.object=n,this.count=r,this.properties=e.split("."),this.reference=n,this.node=null,this.group=null,this.name=null,this.updateType=jn.OBJECT}element(e){return dt(new ZJ(this,dt(e)))}setGroup(e){return this.group=e,this}label(e){return this.name=e,this}setNodeType(e){let t=null;this.count!==null?t=Yg(null,e,this.count):Array.isArray(this.getValueFromReference())?t=Sc(null,e):e==="texture"?t=Ai(null):e==="cubeTexture"?t=I0(null):t=gn(null,e),this.group!==null&&t.setGroup(this.group),this.name!==null&&t.label(this.name),this.node=t.getSelf()}getNodeType(e){return this.node===null&&(this.updateReference(e),this.updateValue()),this.node.getNodeType(e)}getValueFromReference(e=this.reference){const{properties:t}=this;let n=e[t[0]];for(let r=1;rdt(new jy(i,e,t)),jT=(i,e,t,n)=>dt(new jy(i,e,n,t));class JJ extends jy{static get type(){return"MaterialReferenceNode"}constructor(e,t,n=null){super(e,t,n),this.material=n,this.isMaterialReferenceNode=!0}updateReference(e){return this.reference=this.material!==null?this.material:e.material,this.reference}}const Tc=(i,e,t=null)=>dt(new JJ(i,e,t)),Wy=je(i=>(i.geometry.hasAttribute("tangent")===!1&&i.geometry.computeTangents(),_u("tangent","vec4")))(),Qg=Wy.xyz.toVar("tangentLocal"),Kg=Q0.mul(dn(Qg,0)).xyz.varying("v_tangentView").normalize().toVar("tangentView"),B9=Kg.transformDirection(so).varying("v_tangentWorld").normalize().toVar("tangentWorld"),aE=Kg.toVar("transformedTangentView"),eee=aE.transformDirection(so).normalize().toVar("transformedTangentWorld"),Zg=i=>i.mul(Wy.w).xyz,tee=ro(Zg(qy.cross(Wy)),"v_bitangentGeometry").normalize().toVar("bitangentGeometry"),nee=ro(Zg(no.cross(Qg)),"v_bitangentLocal").normalize().toVar("bitangentLocal"),O9=ro(Zg(Jo.cross(Kg)),"v_bitangentView").normalize().toVar("bitangentView"),iee=ro(Zg(Vy.cross(B9)),"v_bitangentWorld").normalize().toVar("bitangentWorld"),I9=Zg(zr.cross(aE)).normalize().toVar("transformedBitangentView"),ree=I9.transformDirection(so).normalize().toVar("transformedBitangentWorld"),Yf=ha(Kg,O9,Jo),F9=dr.mul(Yf),see=(i,e)=>i.sub(F9.mul(e)),k9=(()=>{let i=iA.cross(dr);return i=i.cross(iA).normalize(),i=Fi(i,zr,Rh.mul(Zl.oneMinus()).oneMinus().pow2().pow2()).normalize(),i})(),aee=je(i=>{const{eye_pos:e,surf_norm:t,mapN:n,uv:r}=i,s=e.dFdx(),a=e.dFdy(),l=r.dFdx(),u=r.dFdy(),h=t,g=a.cross(h),v=h.cross(s),x=g.mul(l.x).add(v.mul(u.x)),S=g.mul(l.y).add(v.mul(u.y)),w=x.dot(x).max(S.dot(S)),R=Xg.mul(w.inverseSqrt());return Qr(x.mul(n.x,R),S.mul(n.y,R),h.mul(n.z)).normalize()});class oee extends Zr{static get type(){return"NormalMapNode"}constructor(e,t=null){super("vec3"),this.node=e,this.scaleNode=t,this.normalMapType=Dc}setup(e){const{normalMapType:t,scaleNode:n}=this;let r=this.node.mul(2).sub(1);n!==null&&(r=De(r.xy.mul(n),r.z));let s=null;return t===B7?s=rE(r):t===Dc&&(e.hasGeometryAttribute("tangent")===!0?s=Yf.mul(r).normalize():s=aee({eye_pos:Xr,surf_norm:Jo,mapN:r,uv:Er()})),s}}const WT=lt(oee),lee=je(({textureNode:i,bumpScale:e})=>{const t=r=>i.cache().context({getUV:s=>r(s.uvNode||Er()),forceUVContext:!0}),n=ve(t(r=>r));return wt(ve(t(r=>r.add(r.dFdx()))).sub(n),ve(t(r=>r.add(r.dFdy()))).sub(n)).mul(e)}),uee=je(i=>{const{surf_pos:e,surf_norm:t,dHdxy:n}=i,r=e.dFdx().normalize(),s=e.dFdy().normalize(),a=t,l=s.cross(a),u=a.cross(r),h=r.dot(l).mul(Xg),g=h.sign().mul(n.x.mul(l).add(n.y.mul(u)));return h.abs().mul(t).sub(g).normalize()});class cee extends Zr{static get type(){return"BumpMapNode"}constructor(e,t=null){super("vec3"),this.textureNode=e,this.scaleNode=t}setup(){const e=this.scaleNode!==null?this.scaleNode:1,t=lee({textureNode:this.textureNode,bumpScale:e});return uee({surf_pos:Xr,surf_norm:Jo,dHdxy:t})}}const z9=lt(cee),UR=new Map;class rt extends Mn{static get type(){return"MaterialNode"}constructor(e){super(),this.scope=e}getCache(e,t){let n=UR.get(e);return n===void 0&&(n=Tc(e,t),UR.set(e,n)),n}getFloat(e){return this.getCache(e,"float")}getColor(e){return this.getCache(e,"color")}getTexture(e){return this.getCache(e==="map"?"map":e+"Map","texture")}setup(e){const t=e.context.material,n=this.scope;let r=null;if(n===rt.COLOR){const s=t.color!==void 0?this.getColor(n):De();t.map&&t.map.isTexture===!0?r=s.mul(this.getTexture("map")):r=s}else if(n===rt.OPACITY){const s=this.getFloat(n);t.alphaMap&&t.alphaMap.isTexture===!0?r=s.mul(this.getTexture("alpha")):r=s}else if(n===rt.SPECULAR_STRENGTH)t.specularMap&&t.specularMap.isTexture===!0?r=this.getTexture("specular").r:r=ve(1);else if(n===rt.SPECULAR_INTENSITY){const s=this.getFloat(n);t.specularIntensityMap&&t.specularIntensityMap.isTexture===!0?r=s.mul(this.getTexture(n).a):r=s}else if(n===rt.SPECULAR_COLOR){const s=this.getColor(n);t.specularColorMap&&t.specularColorMap.isTexture===!0?r=s.mul(this.getTexture(n).rgb):r=s}else if(n===rt.ROUGHNESS){const s=this.getFloat(n);t.roughnessMap&&t.roughnessMap.isTexture===!0?r=s.mul(this.getTexture(n).g):r=s}else if(n===rt.METALNESS){const s=this.getFloat(n);t.metalnessMap&&t.metalnessMap.isTexture===!0?r=s.mul(this.getTexture(n).b):r=s}else if(n===rt.EMISSIVE){const s=this.getFloat("emissiveIntensity"),a=this.getColor(n).mul(s);t.emissiveMap&&t.emissiveMap.isTexture===!0?r=a.mul(this.getTexture(n)):r=a}else if(n===rt.NORMAL)t.normalMap?(r=WT(this.getTexture("normal"),this.getCache("normalScale","vec2")),r.normalMapType=t.normalMapType):t.bumpMap?r=z9(this.getTexture("bump").r,this.getFloat("bumpScale")):r=Jo;else if(n===rt.CLEARCOAT){const s=this.getFloat(n);t.clearcoatMap&&t.clearcoatMap.isTexture===!0?r=s.mul(this.getTexture(n).r):r=s}else if(n===rt.CLEARCOAT_ROUGHNESS){const s=this.getFloat(n);t.clearcoatRoughnessMap&&t.clearcoatRoughnessMap.isTexture===!0?r=s.mul(this.getTexture(n).r):r=s}else if(n===rt.CLEARCOAT_NORMAL)t.clearcoatNormalMap?r=WT(this.getTexture(n),this.getCache(n+"Scale","vec2")):r=Jo;else if(n===rt.SHEEN){const s=this.getColor("sheenColor").mul(this.getFloat("sheen"));t.sheenColorMap&&t.sheenColorMap.isTexture===!0?r=s.mul(this.getTexture("sheenColor").rgb):r=s}else if(n===rt.SHEEN_ROUGHNESS){const s=this.getFloat(n);t.sheenRoughnessMap&&t.sheenRoughnessMap.isTexture===!0?r=s.mul(this.getTexture(n).a):r=s,r=r.clamp(.07,1)}else if(n===rt.ANISOTROPY)if(t.anisotropyMap&&t.anisotropyMap.isTexture===!0){const s=this.getTexture(n);r=Ly(kd.x,kd.y,kd.y.negate(),kd.x).mul(s.rg.mul(2).sub(wt(1)).normalize().mul(s.b))}else r=kd;else if(n===rt.IRIDESCENCE_THICKNESS){const s=ji("1","float",t.iridescenceThicknessRange);if(t.iridescenceThicknessMap){const a=ji("0","float",t.iridescenceThicknessRange);r=s.sub(a).mul(this.getTexture(n).g).add(a)}else r=s}else if(n===rt.TRANSMISSION){const s=this.getFloat(n);t.transmissionMap?r=s.mul(this.getTexture(n).r):r=s}else if(n===rt.THICKNESS){const s=this.getFloat(n);t.thicknessMap?r=s.mul(this.getTexture(n).g):r=s}else if(n===rt.IOR)r=this.getFloat(n);else if(n===rt.LIGHT_MAP)r=this.getTexture(n).rgb.mul(this.getFloat("lightMapIntensity"));else if(n===rt.AO)r=this.getTexture(n).r.sub(1).mul(this.getFloat("aoMapIntensity")).add(1);else{const s=this.getNodeType(e);r=this.getCache(n,s)}return r}}rt.ALPHA_TEST="alphaTest";rt.COLOR="color";rt.OPACITY="opacity";rt.SHININESS="shininess";rt.SPECULAR="specular";rt.SPECULAR_STRENGTH="specularStrength";rt.SPECULAR_INTENSITY="specularIntensity";rt.SPECULAR_COLOR="specularColor";rt.REFLECTIVITY="reflectivity";rt.ROUGHNESS="roughness";rt.METALNESS="metalness";rt.NORMAL="normal";rt.CLEARCOAT="clearcoat";rt.CLEARCOAT_ROUGHNESS="clearcoatRoughness";rt.CLEARCOAT_NORMAL="clearcoatNormal";rt.EMISSIVE="emissive";rt.ROTATION="rotation";rt.SHEEN="sheen";rt.SHEEN_ROUGHNESS="sheenRoughness";rt.ANISOTROPY="anisotropy";rt.IRIDESCENCE="iridescence";rt.IRIDESCENCE_IOR="iridescenceIOR";rt.IRIDESCENCE_THICKNESS="iridescenceThickness";rt.IOR="ior";rt.TRANSMISSION="transmission";rt.THICKNESS="thickness";rt.ATTENUATION_DISTANCE="attenuationDistance";rt.ATTENUATION_COLOR="attenuationColor";rt.LINE_SCALE="scale";rt.LINE_DASH_SIZE="dashSize";rt.LINE_GAP_SIZE="gapSize";rt.LINE_WIDTH="linewidth";rt.LINE_DASH_OFFSET="dashOffset";rt.POINT_WIDTH="pointWidth";rt.DISPERSION="dispersion";rt.LIGHT_MAP="light";rt.AO="ao";const G9=Gt(rt,rt.ALPHA_TEST),q9=Gt(rt,rt.COLOR),V9=Gt(rt,rt.SHININESS),H9=Gt(rt,rt.EMISSIVE),oE=Gt(rt,rt.OPACITY),j9=Gt(rt,rt.SPECULAR),$T=Gt(rt,rt.SPECULAR_INTENSITY),W9=Gt(rt,rt.SPECULAR_COLOR),Fm=Gt(rt,rt.SPECULAR_STRENGTH),Jv=Gt(rt,rt.REFLECTIVITY),$9=Gt(rt,rt.ROUGHNESS),X9=Gt(rt,rt.METALNESS),Y9=Gt(rt,rt.NORMAL).context({getUV:null}),Q9=Gt(rt,rt.CLEARCOAT),K9=Gt(rt,rt.CLEARCOAT_ROUGHNESS),Z9=Gt(rt,rt.CLEARCOAT_NORMAL).context({getUV:null}),J9=Gt(rt,rt.ROTATION),eU=Gt(rt,rt.SHEEN),tU=Gt(rt,rt.SHEEN_ROUGHNESS),nU=Gt(rt,rt.ANISOTROPY),iU=Gt(rt,rt.IRIDESCENCE),rU=Gt(rt,rt.IRIDESCENCE_IOR),sU=Gt(rt,rt.IRIDESCENCE_THICKNESS),aU=Gt(rt,rt.TRANSMISSION),oU=Gt(rt,rt.THICKNESS),lU=Gt(rt,rt.IOR),uU=Gt(rt,rt.ATTENUATION_DISTANCE),cU=Gt(rt,rt.ATTENUATION_COLOR),hU=Gt(rt,rt.LINE_SCALE),fU=Gt(rt,rt.LINE_DASH_SIZE),AU=Gt(rt,rt.LINE_GAP_SIZE),hee=Gt(rt,rt.LINE_WIDTH),dU=Gt(rt,rt.LINE_DASH_OFFSET),fee=Gt(rt,rt.POINT_WIDTH),pU=Gt(rt,rt.DISPERSION),lE=Gt(rt,rt.LIGHT_MAP),mU=Gt(rt,rt.AO),kd=gn(new ft).onReference(function(i){return i.material}).onRenderUpdate(function({material:i}){this.value.set(i.anisotropy*Math.cos(i.anisotropyRotation),i.anisotropy*Math.sin(i.anisotropyRotation))}),uE=je(i=>i.context.setupModelViewProjection(),"vec4").once()().varying("v_modelViewProjection");class pr extends Mn{static get type(){return"IndexNode"}constructor(e){super("uint"),this.scope=e,this.isIndexNode=!0}generate(e){const t=this.getNodeType(e),n=this.scope;let r;if(n===pr.VERTEX)r=e.getVertexIndex();else if(n===pr.INSTANCE)r=e.getInstanceIndex();else if(n===pr.DRAW)r=e.getDrawIndex();else if(n===pr.INVOCATION_LOCAL)r=e.getInvocationLocalIndex();else if(n===pr.INVOCATION_SUBGROUP)r=e.getInvocationSubgroupIndex();else if(n===pr.SUBGROUP)r=e.getSubgroupIndex();else throw new Error("THREE.IndexNode: Unknown scope: "+n);let s;return e.shaderStage==="vertex"||e.shaderStage==="compute"?s=r:s=ro(this).build(e,t),s}}pr.VERTEX="vertex";pr.INSTANCE="instance";pr.SUBGROUP="subgroup";pr.INVOCATION_LOCAL="invocationLocal";pr.INVOCATION_SUBGROUP="invocationSubgroup";pr.DRAW="draw";const gU=Gt(pr,pr.VERTEX),Jg=Gt(pr,pr.INSTANCE),Aee=Gt(pr,pr.SUBGROUP),dee=Gt(pr,pr.INVOCATION_SUBGROUP),pee=Gt(pr,pr.INVOCATION_LOCAL),vU=Gt(pr,pr.DRAW);class _U extends Mn{static get type(){return"InstanceNode"}constructor(e,t,n){super("void"),this.count=e,this.instanceMatrix=t,this.instanceColor=n,this.instanceMatrixNode=null,this.instanceColorNode=null,this.updateType=jn.FRAME,this.buffer=null,this.bufferColor=null}setup(e){const{count:t,instanceMatrix:n,instanceColor:r}=this;let{instanceMatrixNode:s,instanceColorNode:a}=this;if(s===null){if(t<=1e3)s=Yg(n.array,"mat4",Math.max(t,1)).element(Jg);else{const u=new h_(n.array,16,1);this.buffer=u;const h=n.usage===qd?HT:J_,g=[h(u,"vec4",16,0),h(u,"vec4",16,4),h(u,"vec4",16,8),h(u,"vec4",16,12)];s=nA(...g)}this.instanceMatrixNode=s}if(r&&a===null){const u=new Ig(r.array,3),h=r.usage===qd?HT:J_;this.bufferColor=u,a=De(h(u,"vec3",3,0)),this.instanceColorNode=a}const l=s.mul(Gr).xyz;if(Gr.assign(l),e.hasGeometryAttribute("normal")){const u=C9(no,s);no.assign(u)}this.instanceColorNode!==null&&Sg("vec3","vInstanceColor").assign(this.instanceColorNode)}update(){this.instanceMatrix.usage!==qd&&this.buffer!==null&&this.instanceMatrix.version!==this.buffer.version&&(this.buffer.version=this.instanceMatrix.version),this.instanceColor&&this.instanceColor.usage!==qd&&this.bufferColor!==null&&this.instanceColor.version!==this.bufferColor.version&&(this.bufferColor.version=this.instanceColor.version)}}const mee=lt(_U);class gee extends _U{static get type(){return"InstancedMeshNode"}constructor(e){const{count:t,instanceMatrix:n,instanceColor:r}=e;super(t,n,r),this.instancedMesh=e}}const yU=lt(gee);class vee extends Mn{static get type(){return"BatchNode"}constructor(e){super("void"),this.batchMesh=e,this.batchingIdNode=null}setup(e){this.batchingIdNode===null&&(e.getDrawIndex()===null?this.batchingIdNode=Jg:this.batchingIdNode=vU);const n=je(([w])=>{const R=Fh(Fr(this.batchMesh._indirectTexture),0),C=xe(w).modInt(xe(R)),E=xe(w).div(xe(R));return Fr(this.batchMesh._indirectTexture,ms(C,E)).x}).setLayout({name:"getIndirectIndex",type:"uint",inputs:[{name:"id",type:"int"}]})(xe(this.batchingIdNode)),r=this.batchMesh._matricesTexture,s=Fh(Fr(r),0),a=ve(n).mul(4).toInt().toVar(),l=a.modInt(s),u=a.div(xe(s)),h=nA(Fr(r,ms(l,u)),Fr(r,ms(l.add(1),u)),Fr(r,ms(l.add(2),u)),Fr(r,ms(l.add(3),u))),g=this.batchMesh._colorsTexture;if(g!==null){const R=je(([C])=>{const E=Fh(Fr(g),0).x,B=C,L=B.modInt(E),O=B.div(E);return Fr(g,ms(L,O)).rgb}).setLayout({name:"getBatchingColor",type:"vec3",inputs:[{name:"id",type:"int"}]})(n);Sg("vec3","vBatchColor").assign(R)}const v=ha(h);Gr.assign(h.mul(Gr));const x=no.div(De(v[0].dot(v[0]),v[1].dot(v[1]),v[2].dot(v[2]))),S=v.mul(x).xyz;no.assign(S),e.hasGeometryAttribute("tangent")&&Qg.mulAssign(v)}}const xU=lt(vee),BR=new WeakMap;class bU extends Mn{static get type(){return"SkinningNode"}constructor(e,t=!1){super("void"),this.skinnedMesh=e,this.useReference=t,this.updateType=jn.OBJECT,this.skinIndexNode=_u("skinIndex","uvec4"),this.skinWeightNode=_u("skinWeight","vec4");let n,r,s;t?(n=ji("bindMatrix","mat4"),r=ji("bindMatrixInverse","mat4"),s=jT("skeleton.boneMatrices","mat4",e.skeleton.bones.length)):(n=gn(e.bindMatrix,"mat4"),r=gn(e.bindMatrixInverse,"mat4"),s=Yg(e.skeleton.boneMatrices,"mat4",e.skeleton.bones.length)),this.bindMatrixNode=n,this.bindMatrixInverseNode=r,this.boneMatricesNode=s,this.previousBoneMatricesNode=null}getSkinnedPosition(e=this.boneMatricesNode,t=Gr){const{skinIndexNode:n,skinWeightNode:r,bindMatrixNode:s,bindMatrixInverseNode:a}=this,l=e.element(n.x),u=e.element(n.y),h=e.element(n.z),g=e.element(n.w),v=s.mul(t),x=Qr(l.mul(r.x).mul(v),u.mul(r.y).mul(v),h.mul(r.z).mul(v),g.mul(r.w).mul(v));return a.mul(x).xyz}getSkinnedNormal(e=this.boneMatricesNode,t=no){const{skinIndexNode:n,skinWeightNode:r,bindMatrixNode:s,bindMatrixInverseNode:a}=this,l=e.element(n.x),u=e.element(n.y),h=e.element(n.z),g=e.element(n.w);let v=Qr(r.x.mul(l),r.y.mul(u),r.z.mul(h),r.w.mul(g));return v=a.mul(v).mul(s),v.transformDirection(t).xyz}getPreviousSkinnedPosition(e){const t=e.object;return this.previousBoneMatricesNode===null&&(t.skeleton.previousBoneMatrices=new Float32Array(t.skeleton.boneMatrices),this.previousBoneMatricesNode=jT("skeleton.previousBoneMatrices","mat4",t.skeleton.bones.length)),this.getSkinnedPosition(this.previousBoneMatricesNode,ey)}needsPreviousBoneMatrices(e){const t=e.renderer.getMRT();return t&&t.has("velocity")||IP(e.object).useVelocity===!0}setup(e){this.needsPreviousBoneMatrices(e)&&ey.assign(this.getPreviousSkinnedPosition(e));const t=this.getSkinnedPosition();if(Gr.assign(t),e.hasGeometryAttribute("normal")){const n=this.getSkinnedNormal();no.assign(n),e.hasGeometryAttribute("tangent")&&Qg.assign(n)}}generate(e,t){if(t!=="void")return Gr.build(e,t)}update(e){const n=(this.useReference?e.object:this.skinnedMesh).skeleton;BR.get(n)!==e.frameId&&(BR.set(n,e.frameId),this.previousBoneMatricesNode!==null&&n.previousBoneMatrices.set(n.boneMatrices),n.update())}}const _ee=i=>dt(new bU(i)),SU=i=>dt(new bU(i,!0));class yee extends Mn{static get type(){return"LoopNode"}constructor(e=[]){super(),this.params=e}getVarName(e){return String.fromCharCode(105+e)}getProperties(e){const t=e.getNodeProperties(this);if(t.stackNode!==void 0)return t;const n={};for(let s=0,a=this.params.length-1;sNumber(v)?w=">=":w="<"));const C={start:g,end:v},E=C.start,B=C.end;let L="",O="",z="";R||(S==="int"||S==="uint"?w.includes("<")?R="++":R="--":w.includes("<")?R="+= 1.":R="-= 1."),L+=e.getVar(S,x)+" = "+E,O+=x+" "+w+" "+B,z+=x+" "+R;const G=`for ( ${L}; ${O}; ${z} )`;e.addFlowCode((l===0?` -`:"")+e.tab+G+` { - -`).addFlowTab()}const s=r.build(e,"void"),a=t.returnsNode?t.returnsNode.build(e):"";e.removeFlowTab().addFlowCode(` -`+e.tab+s);for(let l=0,u=this.params.length-1;ldt(new yee(tA(i,"int"))).append(),xee=()=>Hh("continue").append(),TU=()=>Hh("break").append(),bee=(...i)=>(console.warn("TSL.LoopNode: loop() has been renamed to Loop()."),ki(...i)),$3=new WeakMap,vo=new Pn,OR=je(({bufferMap:i,influence:e,stride:t,width:n,depth:r,offset:s})=>{const a=xe(gU).mul(t).add(s),l=a.div(n),u=a.sub(l.mul(n));return Fr(i,ms(u,l)).depth(r).mul(e)});function See(i){const e=i.morphAttributes.position!==void 0,t=i.morphAttributes.normal!==void 0,n=i.morphAttributes.color!==void 0,r=i.morphAttributes.position||i.morphAttributes.normal||i.morphAttributes.color,s=r!==void 0?r.length:0;let a=$3.get(i);if(a===void 0||a.count!==s){let B=function(){C.dispose(),$3.delete(i),i.removeEventListener("dispose",B)};var l=B;a!==void 0&&a.texture.dispose();const u=i.morphAttributes.position||[],h=i.morphAttributes.normal||[],g=i.morphAttributes.color||[];let v=0;e===!0&&(v=1),t===!0&&(v=2),n===!0&&(v=3);let x=i.attributes.position.count*v,S=1;const w=4096;x>w&&(S=Math.ceil(x/w),x=w);const R=new Float32Array(x*S*4*s),C=new jw(R,x,S,s);C.type=$r,C.needsUpdate=!0;const E=v*4;for(let L=0;L{const x=ve(0).toVar();this.mesh.count>1&&this.mesh.morphTexture!==null&&this.mesh.morphTexture!==void 0?x.assign(Fr(this.mesh.morphTexture,ms(xe(v).add(1),xe(Jg))).r):x.assign(ji("morphTargetInfluences","float").element(v).toVar()),n===!0&&Gr.addAssign(OR({bufferMap:l,influence:x,stride:u,width:g,depth:v,offset:xe(0)})),r===!0&&no.addAssign(OR({bufferMap:l,influence:x,stride:u,width:g,depth:v,offset:xe(1)}))})}update(){const e=this.morphBaseInfluence;this.mesh.geometry.morphTargetsRelative?e.value=1:e.value=1-this.mesh.morphTargetInfluences.reduce((t,n)=>t+n,0)}}const wU=lt(Tee);class K0 extends Mn{static get type(){return"LightingNode"}constructor(){super("vec3"),this.isLightingNode=!0}}class wee extends K0{static get type(){return"AONode"}constructor(e=null){super(),this.aoNode=e}setup(e){e.context.ambientOcclusion.mulAssign(this.aoNode)}}class Mee extends ZL{static get type(){return"LightingContextNode"}constructor(e,t=null,n=null,r=null){super(e),this.lightingModel=t,this.backdropNode=n,this.backdropAlphaNode=r,this._value=null}getContext(){const{backdropNode:e,backdropAlphaNode:t}=this,n=De().toVar("directDiffuse"),r=De().toVar("directSpecular"),s=De().toVar("indirectDiffuse"),a=De().toVar("indirectSpecular"),l={directDiffuse:n,directSpecular:r,indirectDiffuse:s,indirectSpecular:a};return{radiance:De().toVar("radiance"),irradiance:De().toVar("irradiance"),iblIrradiance:De().toVar("iblIrradiance"),ambientOcclusion:ve(1).toVar("ambientOcclusion"),reflectedLight:l,backdrop:e,backdropAlpha:t}}setup(e){return this.value=this._value||(this._value=this.getContext()),this.value.lightingModel=this.lightingModel||e.context.lightingModel,super.setup(e)}}const MU=lt(Mee);class Eee extends K0{static get type(){return"IrradianceNode"}constructor(e){super(),this.node=e}setup(e){e.context.irradiance.addAssign(this.node)}}let am,om;class ss extends Mn{static get type(){return"ScreenNode"}constructor(e){super(),this.scope=e,this.isViewportNode=!0}getNodeType(){return this.scope===ss.VIEWPORT?"vec4":"vec2"}getUpdateType(){let e=jn.NONE;return(this.scope===ss.SIZE||this.scope===ss.VIEWPORT)&&(e=jn.RENDER),this.updateType=e,e}update({renderer:e}){const t=e.getRenderTarget();this.scope===ss.VIEWPORT?t!==null?om.copy(t.viewport):(e.getViewport(om),om.multiplyScalar(e.getPixelRatio())):t!==null?(am.width=t.width,am.height=t.height):e.getDrawingBufferSize(am)}setup(){const e=this.scope;let t=null;return e===ss.SIZE?t=gn(am||(am=new ft)):e===ss.VIEWPORT?t=gn(om||(om=new Pn)):t=wt(e1.div(Rg)),t}generate(e){if(this.scope===ss.COORDINATE){let t=e.getFragCoord();if(e.isFlipY()){const n=e.getNodeProperties(Rg).outputNode.build(e);t=`${e.getType("vec2")}( ${t}.x, ${n}.y - ${t}.y )`}return t}return super.generate(e)}}ss.COORDINATE="coordinate";ss.VIEWPORT="viewport";ss.SIZE="size";ss.UV="uv";const bu=Gt(ss,ss.UV),Rg=Gt(ss,ss.SIZE),e1=Gt(ss,ss.COORDINATE),cE=Gt(ss,ss.VIEWPORT),EU=cE.zw,CU=e1.sub(cE.xy),Cee=CU.div(EU),Ree=je(()=>(console.warn('TSL.ViewportNode: "viewportResolution" is deprecated. Use "screenSize" instead.'),Rg),"vec2").once()(),Nee=je(()=>(console.warn('TSL.ViewportNode: "viewportTopLeft" is deprecated. Use "screenUV" instead.'),bu),"vec2").once()(),Dee=je(()=>(console.warn('TSL.ViewportNode: "viewportBottomLeft" is deprecated. Use "screenUV.flipY()" instead.'),bu.flipY()),"vec2").once()(),lm=new ft;class $y extends yu{static get type(){return"ViewportTextureNode"}constructor(e=bu,t=null,n=null){n===null&&(n=new j7,n.minFilter=Va),super(n,e,t),this.generateMipmaps=!1,this.isOutputTextureNode=!0,this.updateBeforeType=jn.FRAME}updateBefore(e){const t=e.renderer;t.getDrawingBufferSize(lm);const n=this.value;(n.image.width!==lm.width||n.image.height!==lm.height)&&(n.image.width=lm.width,n.image.height=lm.height,n.needsUpdate=!0);const r=n.generateMipmaps;n.generateMipmaps=this.generateMipmaps,t.copyFramebufferToTexture(n),n.generateMipmaps=r}clone(){const e=new this.constructor(this.uvNode,this.levelNode,this.value);return e.generateMipmaps=this.generateMipmaps,e}}const Pee=lt($y),hE=lt($y,null,null,{generateMipmaps:!0});let X3=null;class Lee extends $y{static get type(){return"ViewportDepthTextureNode"}constructor(e=bu,t=null){X3===null&&(X3=new qc),super(e,t,X3)}}const fE=lt(Lee);class Xa extends Mn{static get type(){return"ViewportDepthNode"}constructor(e,t=null){super("float"),this.scope=e,this.valueNode=t,this.isViewportDepthNode=!0}generate(e){const{scope:t}=this;return t===Xa.DEPTH_BASE?e.getFragDepth():super.generate(e)}setup({camera:e}){const{scope:t}=this,n=this.valueNode;let r=null;if(t===Xa.DEPTH_BASE)n!==null&&(r=NU().assign(n));else if(t===Xa.DEPTH)e.isPerspectiveCamera?r=RU(Xr.z,Dh,Ph):r=s0(Xr.z,Dh,Ph);else if(t===Xa.LINEAR_DEPTH)if(n!==null)if(e.isPerspectiveCamera){const s=AE(n,Dh,Ph);r=s0(s,Dh,Ph)}else r=n;else r=s0(Xr.z,Dh,Ph);return r}}Xa.DEPTH_BASE="depthBase";Xa.DEPTH="depth";Xa.LINEAR_DEPTH="linearDepth";const s0=(i,e,t)=>i.add(e).div(e.sub(t)),Uee=(i,e,t)=>e.sub(t).mul(i).sub(e),RU=(i,e,t)=>e.add(i).mul(t).div(t.sub(e).mul(i)),AE=(i,e,t)=>e.mul(t).div(t.sub(e).mul(i).sub(t)),dE=(i,e,t)=>{e=e.max(1e-6).toVar();const n=cu(i.negate().div(e)),r=cu(t.div(e));return n.div(r)},Bee=(i,e,t)=>{const n=i.mul(Oy(t.div(e)));return ve(Math.E).pow(n).mul(e).negate()},NU=lt(Xa,Xa.DEPTH_BASE),pE=Gt(Xa,Xa.DEPTH),ty=lt(Xa,Xa.LINEAR_DEPTH),Oee=ty(fE());pE.assign=i=>NU(i);class Iee extends Mn{constructor(e){super("float"),this.name=e,this.isBuiltinNode=!0}generate(){return this.name}}const Fee=lt(Iee);class Yo extends Mn{static get type(){return"ClippingNode"}constructor(e=Yo.DEFAULT){super(),this.scope=e}setup(e){super.setup(e);const t=e.clippingContext,{intersectionPlanes:n,unionPlanes:r}=t;return this.hardwareClipping=e.material.hardwareClipping,this.scope===Yo.ALPHA_TO_COVERAGE?this.setupAlphaToCoverage(n,r):this.scope===Yo.HARDWARE?this.setupHardwareClipping(r,e):this.setupDefault(n,r)}setupAlphaToCoverage(e,t){return je(()=>{const n=ve().toVar("distanceToPlane"),r=ve().toVar("distanceToGradient"),s=ve(1).toVar("clipOpacity"),a=t.length;if(this.hardwareClipping===!1&&a>0){const u=Sc(t);ki(a,({i:h})=>{const g=u.element(h);n.assign(Xr.dot(g.xyz).negate().add(g.w)),r.assign(n.fwidth().div(2)),s.mulAssign(kc(r.negate(),r,n))})}const l=e.length;if(l>0){const u=Sc(e),h=ve(1).toVar("intersectionClipOpacity");ki(l,({i:g})=>{const v=u.element(g);n.assign(Xr.dot(v.xyz).negate().add(v.w)),r.assign(n.fwidth().div(2)),h.mulAssign(kc(r.negate(),r,n).oneMinus())}),s.mulAssign(h.oneMinus())}Ui.a.mulAssign(s),Ui.a.equal(0).discard()})()}setupDefault(e,t){return je(()=>{const n=t.length;if(this.hardwareClipping===!1&&n>0){const s=Sc(t);ki(n,({i:a})=>{const l=s.element(a);Xr.dot(l.xyz).greaterThan(l.w).discard()})}const r=e.length;if(r>0){const s=Sc(e),a=Ic(!0).toVar("clipped");ki(r,({i:l})=>{const u=s.element(l);a.assign(Xr.dot(u.xyz).greaterThan(u.w).and(a))}),a.discard()}})()}setupHardwareClipping(e,t){const n=e.length;return t.enableHardwareClipping(n),je(()=>{const r=Sc(e),s=Fee(t.getClipDistance());ki(n,({i:a})=>{const l=r.element(a),u=Xr.dot(l.xyz).sub(l.w).negate();s.element(a).assign(u)})})()}}Yo.ALPHA_TO_COVERAGE="alphaToCoverage";Yo.DEFAULT="default";Yo.HARDWARE="hardware";const kee=()=>dt(new Yo),zee=()=>dt(new Yo(Yo.ALPHA_TO_COVERAGE)),Gee=()=>dt(new Yo(Yo.HARDWARE)),qee=.05,IR=je(([i])=>Hc(Wn(1e4,Mo(Wn(17,i.x).add(Wn(.1,i.y)))).mul(Qr(.1,ur(Mo(Wn(13,i.y).add(i.x))))))),FR=je(([i])=>IR(wt(IR(i.xy),i.z))),Vee=je(([i])=>{const e=qr(Rc(XM(i.xyz)),Rc(YM(i.xyz))),t=ve(1).div(ve(qee).mul(e)).toVar("pixScale"),n=wt(O0(hu(cu(t))),O0(Iy(cu(t)))),r=wt(FR(hu(n.x.mul(i.xyz))),FR(hu(n.y.mul(i.xyz)))),s=Hc(cu(t)),a=Qr(Wn(s.oneMinus(),r.x),Wn(s,r.y)),l=to(s,s.oneMinus()),u=De(a.mul(a).div(Wn(2,l).mul(Ti(1,l))),a.sub(Wn(.5,l)).div(Ti(1,l)),Ti(1,Ti(1,a).mul(Ti(1,a)).div(Wn(2,l).mul(Ti(1,l))))),h=a.lessThan(l.oneMinus()).select(a.lessThan(l).select(u.x,u.y),u.z);return vu(h,1e-6,1)}).setLayout({name:"getAlphaHashThreshold",type:"float",inputs:[{name:"position",type:"vec3"}]});class Vr extends ua{static get type(){return"NodeMaterial"}get type(){return this.constructor.type}set type(e){}constructor(){super(),this.isNodeMaterial=!0,this.fog=!0,this.lights=!1,this.hardwareClipping=!1,this.lightsNode=null,this.envNode=null,this.aoNode=null,this.colorNode=null,this.normalNode=null,this.opacityNode=null,this.backdropNode=null,this.backdropAlphaNode=null,this.alphaTestNode=null,this.positionNode=null,this.geometryNode=null,this.depthNode=null,this.shadowPositionNode=null,this.receivedShadowNode=null,this.castShadowNode=null,this.outputNode=null,this.mrtNode=null,this.fragmentNode=null,this.vertexNode=null}customProgramCacheKey(){return this.type+PP(this)}build(e){this.setup(e)}setupObserver(e){return new zZ(e)}setup(e){e.context.setupNormal=()=>this.setupNormal(e),e.context.setupPositionView=()=>this.setupPositionView(e),e.context.setupModelViewProjection=()=>this.setupModelViewProjection(e);const t=e.renderer,n=t.getRenderTarget();e.addStack();const r=this.vertexNode||this.setupVertex(e);e.stack.outputNode=r,this.setupHardwareClipping(e),this.geometryNode!==null&&(e.stack.outputNode=e.stack.outputNode.bypass(this.geometryNode)),e.addFlow("vertex",e.removeStack()),e.addStack();let s;const a=this.setupClipping(e);if((this.depthWrite===!0||this.depthTest===!0)&&(n!==null?n.depthBuffer===!0&&this.setupDepth(e):t.depth===!0&&this.setupDepth(e)),this.fragmentNode===null){this.setupDiffuseColor(e),this.setupVariants(e);const l=this.setupLighting(e);a!==null&&e.stack.add(a);const u=dn(l,Ui.a).max(0);if(s=this.setupOutput(e,u),Eg.assign(s),this.outputNode!==null&&(s=this.outputNode),n!==null){const h=t.getMRT(),g=this.mrtNode;h!==null?(s=h,g!==null&&(s=h.merge(g))):g!==null&&(s=g)}}else{let l=this.fragmentNode;l.isOutputStructNode!==!0&&(l=dn(l)),s=this.setupOutput(e,l)}e.stack.outputNode=s,e.addFlow("fragment",e.removeStack()),e.monitor=this.setupObserver(e)}setupClipping(e){if(e.clippingContext===null)return null;const{unionPlanes:t,intersectionPlanes:n}=e.clippingContext;let r=null;if(t.length>0||n.length>0){const s=e.renderer.samples;this.alphaToCoverage&&s>1?r=zee():e.stack.add(kee())}return r}setupHardwareClipping(e){if(this.hardwareClipping=!1,e.clippingContext===null)return;const t=e.clippingContext.unionPlanes.length;t>0&&t<=8&&e.isAvailable("clipDistance")&&(e.stack.add(Gee()),this.hardwareClipping=!0)}setupDepth(e){const{renderer:t,camera:n}=e;let r=this.depthNode;if(r===null){const s=t.getMRT();s&&s.has("depth")?r=s.get("depth"):t.logarithmicDepthBuffer===!0&&(n.isPerspectiveCamera?r=dE(Xr.z,Dh,Ph):r=s0(Xr.z,Dh,Ph))}r!==null&&pE.assign(r).append()}setupPositionView(){return Q0.mul(Gr).xyz}setupModelViewProjection(){return _A.mul(Xr)}setupVertex(e){return e.addStack(),this.setupPosition(e),e.context.vertex=e.removeStack(),uE}setupPosition(e){const{object:t,geometry:n}=e;if((n.morphAttributes.position||n.morphAttributes.normal||n.morphAttributes.color)&&wU(t).append(),t.isSkinnedMesh===!0&&SU(t).append(),this.displacementMap){const r=Tc("displacementMap","texture"),s=Tc("displacementScale","float"),a=Tc("displacementBias","float");Gr.addAssign(no.normalize().mul(r.x.mul(s).add(a)))}return t.isBatchedMesh&&xU(t).append(),t.isInstancedMesh&&t.instanceMatrix&&t.instanceMatrix.isInstancedBufferAttribute===!0&&yU(t).append(),this.positionNode!==null&&Gr.assign(this.positionNode.context({isPositionNodeInput:!0})),Gr}setupDiffuseColor({object:e,geometry:t}){let n=this.colorNode?dn(this.colorNode):q9;this.vertexColors===!0&&t.hasAttribute("color")&&(n=dn(n.xyz.mul(_u("color","vec3")),n.a)),e.instanceColor&&(n=Sg("vec3","vInstanceColor").mul(n)),e.isBatchedMesh&&e._colorsTexture&&(n=Sg("vec3","vBatchColor").mul(n)),Ui.assign(n);const r=this.opacityNode?ve(this.opacityNode):oE;if(Ui.a.assign(Ui.a.mul(r)),this.alphaTestNode!==null||this.alphaTest>0){const s=this.alphaTestNode!==null?ve(this.alphaTestNode):G9;Ui.a.lessThanEqual(s).discard()}this.alphaHash===!0&&Ui.a.lessThan(Vee(Gr)).discard(),this.transparent===!1&&this.blending===Ka&&this.alphaToCoverage===!1&&Ui.a.assign(1)}setupVariants(){}setupOutgoingLight(){return this.lights===!0?De(0):Ui.rgb}setupNormal(){return this.normalNode?De(this.normalNode):Y9}setupEnvironment(){let e=null;return this.envNode?e=this.envNode:this.envMap&&(e=this.envMap.isCubeTexture?Tc("envMap","cubeTexture"):Tc("envMap","texture")),e}setupLightMap(e){let t=null;return e.material.lightMap&&(t=new Eee(lE)),t}setupLights(e){const t=[],n=this.setupEnvironment(e);n&&n.isLightingNode&&t.push(n);const r=this.setupLightMap(e);if(r&&r.isLightingNode&&t.push(r),this.aoNode!==null||e.material.aoMap){const a=this.aoNode!==null?this.aoNode:mU;t.push(new wee(a))}let s=this.lightsNode||e.lightsNode;return t.length>0&&(s=e.renderer.lighting.createNode([...s.getLights(),...t])),s}setupLightingModel(){}setupLighting(e){const{material:t}=e,{backdropNode:n,backdropAlphaNode:r,emissiveNode:s}=this,l=this.lights===!0||this.lightsNode!==null?this.setupLights(e):null;let u=this.setupOutgoingLight(e);if(l&&l.getScope().hasLights){const h=this.setupLightingModel(e);u=MU(l,h,n,r)}else n!==null&&(u=De(r!==null?Fi(u,n,r):n));return(s&&s.isNode===!0||t.emissive&&t.emissive.isColor===!0)&&(qT.assign(De(s||H9)),u=u.add(qT)),u}setupOutput(e,t){if(this.fog===!0){const n=e.fogNode;n&&(Eg.assign(t),t=dn(n))}return t}setDefaultValues(e){for(const n in e){const r=e[n];this[n]===void 0&&(this[n]=r,r&&r.clone&&(this[n]=r.clone()))}const t=Object.getOwnPropertyDescriptors(e.constructor.prototype);for(const n in t)Object.getOwnPropertyDescriptor(this.constructor.prototype,n)===void 0&&t[n].get!==void 0&&Object.defineProperty(this.constructor.prototype,n,t[n])}toJSON(e){const t=e===void 0||typeof e=="string";t&&(e={textures:{},images:{},nodes:{}});const n=ua.prototype.toJSON.call(this,e),r=$_(this);n.inputNodes={};for(const{property:a,childNode:l}of r)n.inputNodes[a]=l.toJSON(e).uuid;function s(a){const l=[];for(const u in a){const h=a[u];delete h.metadata,l.push(h)}return l}if(t){const a=s(e.textures),l=s(e.images),u=s(e.nodes);a.length>0&&(n.textures=a),l.length>0&&(n.images=l),u.length>0&&(n.nodes=u)}return n}copy(e){return this.lightsNode=e.lightsNode,this.envNode=e.envNode,this.colorNode=e.colorNode,this.normalNode=e.normalNode,this.opacityNode=e.opacityNode,this.backdropNode=e.backdropNode,this.backdropAlphaNode=e.backdropAlphaNode,this.alphaTestNode=e.alphaTestNode,this.positionNode=e.positionNode,this.geometryNode=e.geometryNode,this.depthNode=e.depthNode,this.shadowPositionNode=e.shadowPositionNode,this.receivedShadowNode=e.receivedShadowNode,this.castShadowNode=e.castShadowNode,this.outputNode=e.outputNode,this.mrtNode=e.mrtNode,this.fragmentNode=e.fragmentNode,this.vertexNode=e.vertexNode,super.copy(e)}}const Hee=new $0;class jee extends Vr{static get type(){return"LineBasicNodeMaterial"}constructor(e){super(),this.isLineBasicNodeMaterial=!0,this.setDefaultValues(Hee),this.setValues(e)}}const Wee=new Uz;class $ee extends Vr{static get type(){return"LineDashedNodeMaterial"}constructor(e){super(),this.isLineDashedNodeMaterial=!0,this.setDefaultValues(Wee),this.dashOffset=0,this.offsetNode=null,this.dashScaleNode=null,this.dashSizeNode=null,this.gapSizeNode=null,this.setValues(e)}setupVariants(){const e=this.offsetNode?ve(this.offsetNode):dU,t=this.dashScaleNode?ve(this.dashScaleNode):hU,n=this.dashSizeNode?ve(this.dashSizeNode):fU,r=this.gapSizeNode?ve(this.gapSizeNode):AU;Qv.assign(n),VT.assign(r);const s=ro(_u("lineDistance").mul(t));(e?s.add(e):s).mod(Qv.add(VT)).greaterThan(Qv).discard()}}let Y3=null;class Xee extends $y{static get type(){return"ViewportSharedTextureNode"}constructor(e=bu,t=null){Y3===null&&(Y3=new j7),super(e,t,Y3)}updateReference(){return this}}const Yee=lt(Xee),DU=i=>dt(i).mul(.5).add(.5),Qee=i=>dt(i).mul(2).sub(1),Kee=new Nz;class Zee extends Vr{static get type(){return"MeshNormalNodeMaterial"}constructor(e){super(),this.isMeshNormalNodeMaterial=!0,this.setDefaultValues(Kee),this.setValues(e)}setupDiffuseColor(){const e=this.opacityNode?ve(this.opacityNode):oE;Ui.assign(dn(DU(zr),e))}}class Jee extends Zr{static get type(){return"EquirectUVNode"}constructor(e=iE){super("vec2"),this.dirNode=e}setup(){const e=this.dirNode,t=e.z.atan(e.x).mul(1/(Math.PI*2)).add(.5),n=e.y.clamp(-1,1).asin().mul(1/Math.PI).add(.5);return wt(t,n)}}const mE=lt(Jee);class PU extends V7{constructor(e=1,t={}){super(e,t),this.isCubeRenderTarget=!0}fromEquirectangularTexture(e,t){const n=t.minFilter,r=t.generateMipmaps;t.generateMipmaps=!0,this.texture.type=t.type,this.texture.colorSpace=t.colorSpace,this.texture.generateMipmaps=t.generateMipmaps,this.texture.minFilter=t.minFilter,this.texture.magFilter=t.magFilter;const s=new $h(5,5,5),a=mE(iE),l=new Vr;l.colorNode=Ai(t,a,0),l.side=hr,l.blending=Qa;const u=new zi(s,l),h=new Yw;h.add(u),t.minFilter===Va&&(t.minFilter=gs);const g=new q7(1,10,this),v=e.getMRT();return e.setMRT(null),g.update(e,h),e.setMRT(v),t.minFilter=n,t.currentGenerateMipmaps=r,u.geometry.dispose(),u.material.dispose(),this}}const km=new WeakMap;class ete extends Zr{static get type(){return"CubeMapNode"}constructor(e){super("vec3"),this.envNode=e,this._cubeTexture=null,this._cubeTextureNode=I0();const t=new yy;t.isRenderTargetTexture=!0,this._defaultTexture=t,this.updateBeforeType=jn.RENDER}updateBefore(e){const{renderer:t,material:n}=e,r=this.envNode;if(r.isTextureNode||r.isMaterialReferenceNode){const s=r.isTextureNode?r.value:n[r.property];if(s&&s.isTexture){const a=s.mapping;if(a===zh||a===Gh){if(km.has(s)){const l=km.get(s);kR(l,s.mapping),this._cubeTexture=l}else{const l=s.image;if(tte(l)){const u=new PU(l.height);u.fromEquirectangularTexture(t,s),kR(u.texture,s.mapping),this._cubeTexture=u.texture,km.set(s,u.texture),s.addEventListener("dispose",LU)}else this._cubeTexture=this._defaultTexture}this._cubeTextureNode.value=this._cubeTexture}else this._cubeTextureNode=this.envNode}}}setup(e){return this.updateBefore(e),this._cubeTextureNode}}function tte(i){return i==null?!1:i.height>0}function LU(i){const e=i.target;e.removeEventListener("dispose",LU);const t=km.get(e);t!==void 0&&(km.delete(e),t.dispose())}function kR(i,e){e===zh?i.mapping=Qo:e===Gh&&(i.mapping=Ko)}const UU=lt(ete);class gE extends K0{static get type(){return"BasicEnvironmentNode"}constructor(e=null){super(),this.envNode=e}setup(e){e.context.environment=UU(this.envNode)}}class nte extends K0{static get type(){return"BasicLightMapNode"}constructor(e=null){super(),this.lightMapNode=e}setup(e){const t=ve(1/Math.PI);e.context.irradianceLightMap=this.lightMapNode.mul(t)}}class Xy{start(){}finish(){}direct(){}directRectArea(){}indirect(){}ambientOcclusion(){}}class BU extends Xy{constructor(){super()}indirect(e,t,n){const r=e.ambientOcclusion,s=e.reflectedLight,a=n.context.irradianceLightMap;s.indirectDiffuse.assign(dn(0)),a?s.indirectDiffuse.addAssign(a):s.indirectDiffuse.addAssign(dn(1,1,1,0)),s.indirectDiffuse.mulAssign(r),s.indirectDiffuse.mulAssign(Ui.rgb)}finish(e,t,n){const r=n.material,s=e.outgoingLight,a=n.context.environment;if(a)switch(r.combine){case Lg:s.rgb.assign(Fi(s.rgb,s.rgb.mul(a.rgb),Fm.mul(Jv)));break;case E7:s.rgb.assign(Fi(s.rgb,a.rgb,Fm.mul(Jv)));break;case C7:s.rgb.addAssign(a.rgb.mul(Fm.mul(Jv)));break;default:console.warn("THREE.BasicLightingModel: Unsupported .combine value:",r.combine);break}}}const ite=new pA;class rte extends Vr{static get type(){return"MeshBasicNodeMaterial"}constructor(e){super(),this.isMeshBasicNodeMaterial=!0,this.lights=!0,this.setDefaultValues(ite),this.setValues(e)}setupNormal(){return Jo}setupEnvironment(e){const t=super.setupEnvironment(e);return t?new gE(t):null}setupLightMap(e){let t=null;return e.material.lightMap&&(t=new nte(lE)),t}setupOutgoingLight(){return Ui.rgb}setupLightingModel(){return new BU}}const F0=je(({f0:i,f90:e,dotVH:t})=>{const n=t.mul(-5.55473).sub(6.98316).mul(t).exp2();return i.mul(n.oneMinus()).add(e.mul(n))}),AA=je(i=>i.diffuseColor.mul(1/Math.PI)),ste=()=>ve(.25),ate=je(({dotNH:i})=>Q_.mul(ve(.5)).add(1).mul(ve(1/Math.PI)).mul(i.pow(Q_))),ote=je(({lightDirection:i})=>{const e=i.add(dr).normalize(),t=zr.dot(e).clamp(),n=dr.dot(e).clamp(),r=F0({f0:ka,f90:1,dotVH:n}),s=ste(),a=ate({dotNH:t});return r.mul(s).mul(a)});class OU extends BU{constructor(e=!0){super(),this.specular=e}direct({lightDirection:e,lightColor:t,reflectedLight:n}){const s=zr.dot(e).clamp().mul(t);n.directDiffuse.addAssign(s.mul(AA({diffuseColor:Ui.rgb}))),this.specular===!0&&n.directSpecular.addAssign(s.mul(ote({lightDirection:e})).mul(Fm))}indirect({ambientOcclusion:e,irradiance:t,reflectedLight:n}){n.indirectDiffuse.addAssign(t.mul(AA({diffuseColor:Ui}))),n.indirectDiffuse.mulAssign(e)}}const lte=new Vc;class ute extends Vr{static get type(){return"MeshLambertNodeMaterial"}constructor(e){super(),this.isMeshLambertNodeMaterial=!0,this.lights=!0,this.setDefaultValues(lte),this.setValues(e)}setupEnvironment(e){const t=super.setupEnvironment(e);return t?new gE(t):null}setupLightingModel(){return new OU(!1)}}const cte=new nD;class hte extends Vr{static get type(){return"MeshPhongNodeMaterial"}constructor(e){super(),this.isMeshPhongNodeMaterial=!0,this.lights=!0,this.shininessNode=null,this.specularNode=null,this.setDefaultValues(cte),this.setValues(e)}setupEnvironment(e){const t=super.setupEnvironment(e);return t?new gE(t):null}setupLightingModel(){return new OU}setupVariants(){const e=(this.shininessNode?ve(this.shininessNode):V9).max(1e-4);Q_.assign(e);const t=this.specularNode||j9;ka.assign(t)}copy(e){return this.shininessNode=e.shininessNode,this.specularNode=e.specularNode,super.copy(e)}}const IU=je(i=>{if(i.geometry.hasAttribute("normal")===!1)return ve(0);const e=Jo.dFdx().abs().max(Jo.dFdy().abs());return e.x.max(e.y).max(e.z)}),vE=je(i=>{const{roughness:e}=i,t=IU();let n=e.max(.0525);return n=n.add(t),n=n.min(1),n}),FU=je(({alpha:i,dotNL:e,dotNV:t})=>{const n=i.pow2(),r=e.mul(n.add(n.oneMinus().mul(t.pow2())).sqrt()),s=t.mul(n.add(n.oneMinus().mul(e.pow2())).sqrt());return Dl(.5,r.add(s).max(TL))}).setLayout({name:"V_GGX_SmithCorrelated",type:"float",inputs:[{name:"alpha",type:"float"},{name:"dotNL",type:"float"},{name:"dotNV",type:"float"}]}),fte=je(({alphaT:i,alphaB:e,dotTV:t,dotBV:n,dotTL:r,dotBL:s,dotNV:a,dotNL:l})=>{const u=l.mul(De(i.mul(t),e.mul(n),a).length()),h=a.mul(De(i.mul(r),e.mul(s),l).length());return Dl(.5,u.add(h)).saturate()}).setLayout({name:"V_GGX_SmithCorrelated_Anisotropic",type:"float",inputs:[{name:"alphaT",type:"float",qualifier:"in"},{name:"alphaB",type:"float",qualifier:"in"},{name:"dotTV",type:"float",qualifier:"in"},{name:"dotBV",type:"float",qualifier:"in"},{name:"dotTL",type:"float",qualifier:"in"},{name:"dotBL",type:"float",qualifier:"in"},{name:"dotNV",type:"float",qualifier:"in"},{name:"dotNL",type:"float",qualifier:"in"}]}),kU=je(({alpha:i,dotNH:e})=>{const t=i.pow2(),n=e.pow2().mul(t.oneMinus()).oneMinus();return t.div(n.pow2()).mul(1/Math.PI)}).setLayout({name:"D_GGX",type:"float",inputs:[{name:"alpha",type:"float"},{name:"dotNH",type:"float"}]}),Ate=ve(1/Math.PI),dte=je(({alphaT:i,alphaB:e,dotNH:t,dotTH:n,dotBH:r})=>{const s=i.mul(e),a=De(e.mul(n),i.mul(r),s.mul(t)),l=a.dot(a),u=s.div(l);return Ate.mul(s.mul(u.pow2()))}).setLayout({name:"D_GGX_Anisotropic",type:"float",inputs:[{name:"alphaT",type:"float",qualifier:"in"},{name:"alphaB",type:"float",qualifier:"in"},{name:"dotNH",type:"float",qualifier:"in"},{name:"dotTH",type:"float",qualifier:"in"},{name:"dotBH",type:"float",qualifier:"in"}]}),XT=je(i=>{const{lightDirection:e,f0:t,f90:n,roughness:r,f:s,USE_IRIDESCENCE:a,USE_ANISOTROPY:l}=i,u=i.normalView||zr,h=r.pow2(),g=e.add(dr).normalize(),v=u.dot(e).clamp(),x=u.dot(dr).clamp(),S=u.dot(g).clamp(),w=dr.dot(g).clamp();let R=F0({f0:t,f90:n,dotVH:w}),C,E;if(xg(a)&&(R=By.mix(R,s)),xg(l)){const B=Bm.dot(e),L=Bm.dot(dr),O=Bm.dot(g),z=iA.dot(e),G=iA.dot(dr),k=iA.dot(g);C=fte({alphaT:Y_,alphaB:h,dotTV:L,dotBV:G,dotTL:B,dotBL:z,dotNV:x,dotNL:v}),E=dte({alphaT:Y_,alphaB:h,dotNH:S,dotTH:O,dotBH:k})}else C=FU({alpha:h,dotNL:v,dotNV:x}),E=kU({alpha:h,dotNH:S});return R.mul(C).mul(E)}),_E=je(({roughness:i,dotNV:e})=>{const t=dn(-1,-.0275,-.572,.022),n=dn(1,.0425,1.04,-.04),r=i.mul(t).add(n),s=r.x.mul(r.x).min(e.mul(-9.28).exp2()).mul(r.x).add(r.y);return wt(-1.04,1.04).mul(s).add(r.zw)}).setLayout({name:"DFGApprox",type:"vec2",inputs:[{name:"roughness",type:"float"},{name:"dotNV",type:"vec3"}]}),zU=je(i=>{const{dotNV:e,specularColor:t,specularF90:n,roughness:r}=i,s=_E({dotNV:e,roughness:r});return t.mul(s.x).add(n.mul(s.y))}),GU=je(({f:i,f90:e,dotVH:t})=>{const n=t.oneMinus().saturate(),r=n.mul(n),s=n.mul(r,r).clamp(0,.9999);return i.sub(De(e).mul(s)).div(s.oneMinus())}).setLayout({name:"Schlick_to_F0",type:"vec3",inputs:[{name:"f",type:"vec3"},{name:"f90",type:"float"},{name:"dotVH",type:"float"}]}),pte=je(({roughness:i,dotNH:e})=>{const t=i.pow2(),n=ve(1).div(t),s=e.pow2().oneMinus().max(.0078125);return ve(2).add(n).mul(s.pow(n.mul(.5))).div(2*Math.PI)}).setLayout({name:"D_Charlie",type:"float",inputs:[{name:"roughness",type:"float"},{name:"dotNH",type:"float"}]}),mte=je(({dotNV:i,dotNL:e})=>ve(1).div(ve(4).mul(e.add(i).sub(e.mul(i))))).setLayout({name:"V_Neubelt",type:"float",inputs:[{name:"dotNV",type:"float"},{name:"dotNL",type:"float"}]}),gte=je(({lightDirection:i})=>{const e=i.add(dr).normalize(),t=zr.dot(i).clamp(),n=zr.dot(dr).clamp(),r=zr.dot(e).clamp(),s=pte({roughness:Uy,dotNH:r}),a=mte({dotNV:n,dotNL:t});return Xf.mul(s).mul(a)}),vte=je(({N:i,V:e,roughness:t})=>{const s=.0078125,a=i.dot(e).saturate(),l=wt(t,a.oneMinus().sqrt());return l.assign(l.mul(.984375).add(s)),l}).setLayout({name:"LTC_Uv",type:"vec2",inputs:[{name:"N",type:"vec3"},{name:"V",type:"vec3"},{name:"roughness",type:"float"}]}),_te=je(({f:i})=>{const e=i.length();return qr(e.mul(e).add(i.z).div(e.add(1)),0)}).setLayout({name:"LTC_ClippedSphereFormFactor",type:"float",inputs:[{name:"f",type:"vec3"}]}),lv=je(({v1:i,v2:e})=>{const t=i.dot(e),n=t.abs().toVar(),r=n.mul(.0145206).add(.4965155).mul(n).add(.8543985).toVar(),s=n.add(4.1616724).mul(n).add(3.417594).toVar(),a=r.div(s),l=t.greaterThan(0).select(a,qr(t.mul(t).oneMinus(),1e-7).inverseSqrt().mul(.5).sub(a));return i.cross(e).mul(l)}).setLayout({name:"LTC_EdgeVectorFormFactor",type:"vec3",inputs:[{name:"v1",type:"vec3"},{name:"v2",type:"vec3"}]}),zR=je(({N:i,V:e,P:t,mInv:n,p0:r,p1:s,p2:a,p3:l})=>{const u=s.sub(r).toVar(),h=l.sub(r).toVar(),g=u.cross(h),v=De().toVar();return ti(g.dot(t.sub(r)).greaterThanEqual(0),()=>{const x=e.sub(i.mul(e.dot(i))).normalize(),S=i.cross(x).negate(),w=n.mul(ha(x,S,i).transpose()).toVar(),R=w.mul(r.sub(t)).normalize().toVar(),C=w.mul(s.sub(t)).normalize().toVar(),E=w.mul(a.sub(t)).normalize().toVar(),B=w.mul(l.sub(t)).normalize().toVar(),L=De(0).toVar();L.addAssign(lv({v1:R,v2:C})),L.addAssign(lv({v1:C,v2:E})),L.addAssign(lv({v1:E,v2:B})),L.addAssign(lv({v1:B,v2:R})),v.assign(De(_te({f:L})))}),v}).setLayout({name:"LTC_Evaluate",type:"vec3",inputs:[{name:"N",type:"vec3"},{name:"V",type:"vec3"},{name:"P",type:"vec3"},{name:"mInv",type:"mat3"},{name:"p0",type:"vec3"},{name:"p1",type:"vec3"},{name:"p2",type:"vec3"},{name:"p3",type:"vec3"}]}),Yy=1/6,qU=i=>Wn(Yy,Wn(i,Wn(i,i.negate().add(3)).sub(3)).add(1)),YT=i=>Wn(Yy,Wn(i,Wn(i,Wn(3,i).sub(6))).add(4)),VU=i=>Wn(Yy,Wn(i,Wn(i,Wn(-3,i).add(3)).add(3)).add(1)),QT=i=>Wn(Yy,Cl(i,3)),GR=i=>qU(i).add(YT(i)),qR=i=>VU(i).add(QT(i)),VR=i=>Qr(-1,YT(i).div(qU(i).add(YT(i)))),HR=i=>Qr(1,QT(i).div(VU(i).add(QT(i)))),jR=(i,e,t)=>{const n=i.uvNode,r=Wn(n,e.zw).add(.5),s=hu(r),a=Hc(r),l=GR(a.x),u=qR(a.x),h=VR(a.x),g=HR(a.x),v=VR(a.y),x=HR(a.y),S=wt(s.x.add(h),s.y.add(v)).sub(.5).mul(e.xy),w=wt(s.x.add(g),s.y.add(v)).sub(.5).mul(e.xy),R=wt(s.x.add(h),s.y.add(x)).sub(.5).mul(e.xy),C=wt(s.x.add(g),s.y.add(x)).sub(.5).mul(e.xy),E=GR(a.y).mul(Qr(l.mul(i.sample(S).level(t)),u.mul(i.sample(w).level(t)))),B=qR(a.y).mul(Qr(l.mul(i.sample(R).level(t)),u.mul(i.sample(C).level(t))));return E.add(B)},HU=je(([i,e=ve(3)])=>{const t=wt(i.size(xe(e))),n=wt(i.size(xe(e.add(1)))),r=Dl(1,t),s=Dl(1,n),a=jR(i,dn(r,t),hu(e)),l=jR(i,dn(s,n),Iy(e));return Hc(e).mix(a,l)}),WR=je(([i,e,t,n,r])=>{const s=De(JM(e.negate(),Fc(i),Dl(1,n))),a=De(Rc(r[0].xyz),Rc(r[1].xyz),Rc(r[2].xyz));return Fc(s).mul(t.mul(a))}).setLayout({name:"getVolumeTransmissionRay",type:"vec3",inputs:[{name:"n",type:"vec3"},{name:"v",type:"vec3"},{name:"thickness",type:"float"},{name:"ior",type:"float"},{name:"modelMatrix",type:"mat4"}]}),yte=je(([i,e])=>i.mul(vu(e.mul(2).sub(2),0,1))).setLayout({name:"applyIorToRoughness",type:"float",inputs:[{name:"roughness",type:"float"},{name:"ior",type:"float"}]}),xte=hE(),bte=hE(),$R=je(([i,e,t],{material:n})=>{const s=(n.side===hr?xte:bte).sample(i),a=cu(Rg.x).mul(yte(e,t));return HU(s,a)}),XR=je(([i,e,t])=>(ti(t.notEqual(0),()=>{const n=Oy(e).negate().div(t);return jM(n.negate().mul(i))}),De(1))).setLayout({name:"volumeAttenuation",type:"vec3",inputs:[{name:"transmissionDistance",type:"float"},{name:"attenuationColor",type:"vec3"},{name:"attenuationDistance",type:"float"}]}),Ste=je(([i,e,t,n,r,s,a,l,u,h,g,v,x,S,w])=>{let R,C;if(w){R=dn().toVar(),C=De().toVar();const z=g.sub(1).mul(w.mul(.025)),G=De(g.sub(z),g,g.add(z));ki({start:0,end:3},({i:k})=>{const H=G.element(k),F=WR(i,e,v,H,l),V=a.add(F),Y=h.mul(u.mul(dn(V,1))),ee=wt(Y.xy.div(Y.w)).toVar();ee.addAssign(1),ee.divAssign(2),ee.assign(wt(ee.x,ee.y.oneMinus()));const ne=$R(ee,t,H);R.element(k).assign(ne.element(k)),R.a.addAssign(ne.a),C.element(k).assign(n.element(k).mul(XR(Rc(F),x,S).element(k)))}),R.a.divAssign(3)}else{const z=WR(i,e,v,g,l),G=a.add(z),k=h.mul(u.mul(dn(G,1))),H=wt(k.xy.div(k.w)).toVar();H.addAssign(1),H.divAssign(2),H.assign(wt(H.x,H.y.oneMinus())),R=$R(H,t,g),C=n.mul(XR(Rc(z),x,S))}const E=C.rgb.mul(R.rgb),B=i.dot(e).clamp(),L=De(zU({dotNV:B,specularColor:r,specularF90:s,roughness:t})),O=C.r.add(C.g,C.b).div(3);return dn(L.oneMinus().mul(E),R.a.oneMinus().mul(O).oneMinus())}),Tte=ha(3.2404542,-.969266,.0556434,-1.5371385,1.8760108,-.2040259,-.4985314,.041556,1.0572252),wte=i=>{const e=i.sqrt();return De(1).add(e).div(De(1).sub(e))},YR=(i,e)=>i.sub(e).div(i.add(e)).pow2(),Mte=(i,e)=>{const t=i.mul(2*Math.PI*1e-9),n=De(54856e-17,44201e-17,52481e-17),r=De(1681e3,1795300,2208400),s=De(43278e5,93046e5,66121e5),a=ve(9747e-17*Math.sqrt(2*Math.PI*45282e5)).mul(t.mul(2239900).add(e.x).cos()).mul(t.pow2().mul(-45282e5).exp());let l=n.mul(s.mul(2*Math.PI).sqrt()).mul(r.mul(t).add(e).cos()).mul(t.pow2().negate().mul(s).exp());return l=De(l.x.add(a),l.y,l.z).div(10685e-11),Tte.mul(l)},Ete=je(({outsideIOR:i,eta2:e,cosTheta1:t,thinFilmThickness:n,baseF0:r})=>{const s=Fi(i,e,kc(0,.03,n)),l=i.div(s).pow2().mul(t.pow2().oneMinus()).oneMinus();ti(l.lessThan(0),()=>De(1));const u=l.sqrt(),h=YR(s,i),g=F0({f0:h,f90:1,dotVH:t}),v=g.oneMinus(),x=s.lessThan(i).select(Math.PI,0),S=ve(Math.PI).sub(x),w=wte(r.clamp(0,.9999)),R=YR(w,s.toVec3()),C=F0({f0:R,f90:1,dotVH:u}),E=De(w.x.lessThan(s).select(Math.PI,0),w.y.lessThan(s).select(Math.PI,0),w.z.lessThan(s).select(Math.PI,0)),B=s.mul(n,u,2),L=De(S).add(E),O=g.mul(C).clamp(1e-5,.9999),z=O.sqrt(),G=v.pow2().mul(C).div(De(1).sub(O)),H=g.add(G).toVar(),F=G.sub(v).toVar();return ki({start:1,end:2,condition:"<=",name:"m"},({m:V})=>{F.mulAssign(z);const Y=Mte(ve(V).mul(B),ve(V).mul(L)).mul(2);H.addAssign(F.mul(Y))}),H.max(De(0))}).setLayout({name:"evalIridescence",type:"vec3",inputs:[{name:"outsideIOR",type:"float"},{name:"eta2",type:"float"},{name:"cosTheta1",type:"float"},{name:"thinFilmThickness",type:"float"},{name:"baseF0",type:"vec3"}]}),Cte=je(({normal:i,viewDir:e,roughness:t})=>{const n=i.dot(e).saturate(),r=t.pow2(),s=zs(t.lessThan(.25),ve(-339.2).mul(r).add(ve(161.4).mul(t)).sub(25.9),ve(-8.48).mul(r).add(ve(14.3).mul(t)).sub(9.95)),a=zs(t.lessThan(.25),ve(44).mul(r).sub(ve(23.7).mul(t)).add(3.26),ve(1.97).mul(r).sub(ve(3.27).mul(t)).add(.72));return zs(t.lessThan(.25),0,ve(.1).mul(t).sub(.025)).add(s.mul(n).add(a).exp()).mul(1/Math.PI).saturate()}),Q3=De(.04),K3=ve(1);class jU extends Xy{constructor(e=!1,t=!1,n=!1,r=!1,s=!1,a=!1){super(),this.clearcoat=e,this.sheen=t,this.iridescence=n,this.anisotropy=r,this.transmission=s,this.dispersion=a,this.clearcoatRadiance=null,this.clearcoatSpecularDirect=null,this.clearcoatSpecularIndirect=null,this.sheenSpecularDirect=null,this.sheenSpecularIndirect=null,this.iridescenceFresnel=null,this.iridescenceF0=null}start(e){if(this.clearcoat===!0&&(this.clearcoatRadiance=De().toVar("clearcoatRadiance"),this.clearcoatSpecularDirect=De().toVar("clearcoatSpecularDirect"),this.clearcoatSpecularIndirect=De().toVar("clearcoatSpecularIndirect")),this.sheen===!0&&(this.sheenSpecularDirect=De().toVar("sheenSpecularDirect"),this.sheenSpecularIndirect=De().toVar("sheenSpecularIndirect")),this.iridescence===!0){const t=zr.dot(dr).clamp();this.iridescenceFresnel=Ete({outsideIOR:ve(1),eta2:OM,cosTheta1:t,thinFilmThickness:IM,baseF0:ka}),this.iridescenceF0=GU({f:this.iridescenceFresnel,f90:1,dotVH:t})}if(this.transmission===!0){const t=Nc,n=b9.sub(Nc).normalize(),r=Hy;e.backdrop=Ste(r,n,Zl,Ui,ka,Mg,t,$o,so,_A,Om,FM,zM,kM,this.dispersion?GM:null),e.backdropAlpha=K_,Ui.a.mulAssign(Fi(1,e.backdrop.a,K_))}}computeMultiscattering(e,t,n){const r=zr.dot(dr).clamp(),s=_E({roughness:Zl,dotNV:r}),l=(this.iridescenceF0?By.mix(ka,this.iridescenceF0):ka).mul(s.x).add(n.mul(s.y)),h=s.x.add(s.y).oneMinus(),g=ka.add(ka.oneMinus().mul(.047619)),v=l.mul(g).div(h.mul(g).oneMinus());e.addAssign(l),t.addAssign(v.mul(h))}direct({lightDirection:e,lightColor:t,reflectedLight:n}){const s=zr.dot(e).clamp().mul(t);if(this.sheen===!0&&this.sheenSpecularDirect.addAssign(s.mul(gte({lightDirection:e}))),this.clearcoat===!0){const l=Qd.dot(e).clamp().mul(t);this.clearcoatSpecularDirect.addAssign(l.mul(XT({lightDirection:e,f0:Q3,f90:K3,roughness:wg,normalView:Qd})))}n.directDiffuse.addAssign(s.mul(AA({diffuseColor:Ui.rgb}))),n.directSpecular.addAssign(s.mul(XT({lightDirection:e,f0:ka,f90:1,roughness:Zl,iridescence:this.iridescence,f:this.iridescenceFresnel,USE_IRIDESCENCE:this.iridescence,USE_ANISOTROPY:this.anisotropy})))}directRectArea({lightColor:e,lightPosition:t,halfWidth:n,halfHeight:r,reflectedLight:s,ltc_1:a,ltc_2:l}){const u=t.add(n).sub(r),h=t.sub(n).sub(r),g=t.sub(n).add(r),v=t.add(n).add(r),x=zr,S=dr,w=Xr.toVar(),R=vte({N:x,V:S,roughness:Zl}),C=a.sample(R).toVar(),E=l.sample(R).toVar(),B=ha(De(C.x,0,C.y),De(0,1,0),De(C.z,0,C.w)).toVar(),L=ka.mul(E.x).add(ka.oneMinus().mul(E.y)).toVar();s.directSpecular.addAssign(e.mul(L).mul(zR({N:x,V:S,P:w,mInv:B,p0:u,p1:h,p2:g,p3:v}))),s.directDiffuse.addAssign(e.mul(Ui).mul(zR({N:x,V:S,P:w,mInv:ha(1,0,0,0,1,0,0,0,1),p0:u,p1:h,p2:g,p3:v})))}indirect(e,t,n){this.indirectDiffuse(e,t,n),this.indirectSpecular(e,t,n),this.ambientOcclusion(e,t,n)}indirectDiffuse({irradiance:e,reflectedLight:t}){t.indirectDiffuse.addAssign(e.mul(AA({diffuseColor:Ui})))}indirectSpecular({radiance:e,iblIrradiance:t,reflectedLight:n}){if(this.sheen===!0&&this.sheenSpecularIndirect.addAssign(t.mul(Xf,Cte({normal:zr,viewDir:dr,roughness:Uy}))),this.clearcoat===!0){const h=Qd.dot(dr).clamp(),g=zU({dotNV:h,specularColor:Q3,specularF90:K3,roughness:wg});this.clearcoatSpecularIndirect.addAssign(this.clearcoatRadiance.mul(g))}const r=De().toVar("singleScattering"),s=De().toVar("multiScattering"),a=t.mul(1/Math.PI);this.computeMultiscattering(r,s,Mg);const l=r.add(s),u=Ui.mul(l.r.max(l.g).max(l.b).oneMinus());n.indirectSpecular.addAssign(e.mul(r)),n.indirectSpecular.addAssign(s.mul(a)),n.indirectDiffuse.addAssign(u.mul(a))}ambientOcclusion({ambientOcclusion:e,reflectedLight:t}){const r=zr.dot(dr).clamp().add(e),s=Zl.mul(-16).oneMinus().negate().exp2(),a=e.sub(r.pow(s).oneMinus()).clamp();this.clearcoat===!0&&this.clearcoatSpecularIndirect.mulAssign(e),this.sheen===!0&&this.sheenSpecularIndirect.mulAssign(e),t.indirectDiffuse.mulAssign(e),t.indirectSpecular.mulAssign(a)}finish(e){const{outgoingLight:t}=e;if(this.clearcoat===!0){const n=Qd.dot(dr).clamp(),r=F0({dotVH:n,f0:Q3,f90:K3}),s=t.mul(X_.mul(r).oneMinus()).add(this.clearcoatSpecularDirect.add(this.clearcoatSpecularIndirect).mul(X_));t.assign(s)}if(this.sheen===!0){const n=Xf.r.max(Xf.g).max(Xf.b).mul(.157).oneMinus(),r=t.mul(n).add(this.sheenSpecularDirect,this.sheenSpecularIndirect);t.assign(r)}}}const QR=ve(1),KT=ve(-2),uv=ve(.8),Z3=ve(-1),cv=ve(.4),J3=ve(2),hv=ve(.305),eS=ve(3),KR=ve(.21),Rte=ve(4),ZR=ve(4),Nte=ve(16),Dte=je(([i])=>{const e=De(ur(i)).toVar(),t=ve(-1).toVar();return ti(e.x.greaterThan(e.z),()=>{ti(e.x.greaterThan(e.y),()=>{t.assign(zs(i.x.greaterThan(0),0,3))}).Else(()=>{t.assign(zs(i.y.greaterThan(0),1,4))})}).Else(()=>{ti(e.z.greaterThan(e.y),()=>{t.assign(zs(i.z.greaterThan(0),2,5))}).Else(()=>{t.assign(zs(i.y.greaterThan(0),1,4))})}),t}).setLayout({name:"getFace",type:"float",inputs:[{name:"direction",type:"vec3"}]}),Pte=je(([i,e])=>{const t=wt().toVar();return ti(e.equal(0),()=>{t.assign(wt(i.z,i.y).div(ur(i.x)))}).ElseIf(e.equal(1),()=>{t.assign(wt(i.x.negate(),i.z.negate()).div(ur(i.y)))}).ElseIf(e.equal(2),()=>{t.assign(wt(i.x.negate(),i.y).div(ur(i.z)))}).ElseIf(e.equal(3),()=>{t.assign(wt(i.z.negate(),i.y).div(ur(i.x)))}).ElseIf(e.equal(4),()=>{t.assign(wt(i.x.negate(),i.z).div(ur(i.y)))}).Else(()=>{t.assign(wt(i.x,i.y).div(ur(i.z)))}),Wn(.5,t.add(1))}).setLayout({name:"getUV",type:"vec2",inputs:[{name:"direction",type:"vec3"},{name:"face",type:"float"}]}),Lte=je(([i])=>{const e=ve(0).toVar();return ti(i.greaterThanEqual(uv),()=>{e.assign(QR.sub(i).mul(Z3.sub(KT)).div(QR.sub(uv)).add(KT))}).ElseIf(i.greaterThanEqual(cv),()=>{e.assign(uv.sub(i).mul(J3.sub(Z3)).div(uv.sub(cv)).add(Z3))}).ElseIf(i.greaterThanEqual(hv),()=>{e.assign(cv.sub(i).mul(eS.sub(J3)).div(cv.sub(hv)).add(J3))}).ElseIf(i.greaterThanEqual(KR),()=>{e.assign(hv.sub(i).mul(Rte.sub(eS)).div(hv.sub(KR)).add(eS))}).Else(()=>{e.assign(ve(-2).mul(cu(Wn(1.16,i))))}),e}).setLayout({name:"roughnessToMip",type:"float",inputs:[{name:"roughness",type:"float"}]}),WU=je(([i,e])=>{const t=i.toVar();t.assign(Wn(2,t).sub(1));const n=De(t,1).toVar();return ti(e.equal(0),()=>{n.assign(n.zyx)}).ElseIf(e.equal(1),()=>{n.assign(n.xzy),n.xz.mulAssign(-1)}).ElseIf(e.equal(2),()=>{n.x.mulAssign(-1)}).ElseIf(e.equal(3),()=>{n.assign(n.zyx),n.xz.mulAssign(-1)}).ElseIf(e.equal(4),()=>{n.assign(n.xzy),n.xy.mulAssign(-1)}).ElseIf(e.equal(5),()=>{n.z.mulAssign(-1)}),n}).setLayout({name:"getDirection",type:"vec3",inputs:[{name:"uv",type:"vec2"},{name:"face",type:"float"}]}),$U=je(([i,e,t,n,r,s])=>{const a=ve(t),l=De(e),u=vu(Lte(a),KT,s),h=Hc(u),g=hu(u),v=De(ZT(i,l,g,n,r,s)).toVar();return ti(h.notEqual(0),()=>{const x=De(ZT(i,l,g.add(1),n,r,s)).toVar();v.assign(Fi(v,x,h))}),v}),ZT=je(([i,e,t,n,r,s])=>{const a=ve(t).toVar(),l=De(e),u=ve(Dte(l)).toVar(),h=ve(qr(ZR.sub(a),0)).toVar();a.assign(qr(a,ZR));const g=ve(O0(a)).toVar(),v=wt(Pte(l,u).mul(g.sub(2)).add(1)).toVar();return ti(u.greaterThan(2),()=>{v.y.addAssign(g),u.subAssign(3)}),v.x.addAssign(u.mul(g)),v.x.addAssign(h.mul(Wn(3,Nte))),v.y.addAssign(Wn(4,O0(s).sub(g))),v.x.mulAssign(n),v.y.mulAssign(r),i.sample(v).grad(wt(),wt())}),tS=je(({envMap:i,mipInt:e,outputDirection:t,theta:n,axis:r,CUBEUV_TEXEL_WIDTH:s,CUBEUV_TEXEL_HEIGHT:a,CUBEUV_MAX_MIP:l})=>{const u=yc(n),h=t.mul(u).add(r.cross(t).mul(Mo(n))).add(r.mul(r.dot(t).mul(u.oneMinus())));return ZT(i,h,e,s,a,l)}),XU=je(({n:i,latitudinal:e,poleAxis:t,outputDirection:n,weights:r,samples:s,dTheta:a,mipInt:l,envMap:u,CUBEUV_TEXEL_WIDTH:h,CUBEUV_TEXEL_HEIGHT:g,CUBEUV_MAX_MIP:v})=>{const x=De(zs(e,t,ky(t,n))).toVar();ti(HM(x.equals(De(0))),()=>{x.assign(De(n.z,0,n.x.negate()))}),x.assign(Fc(x));const S=De().toVar();return S.addAssign(r.element(xe(0)).mul(tS({theta:0,axis:x,outputDirection:n,mipInt:l,envMap:u,CUBEUV_TEXEL_WIDTH:h,CUBEUV_TEXEL_HEIGHT:g,CUBEUV_MAX_MIP:v}))),ki({start:xe(1),end:i},({i:w})=>{ti(w.greaterThanEqual(s),()=>{TU()});const R=ve(a.mul(ve(w))).toVar();S.addAssign(r.element(w).mul(tS({theta:R.mul(-1),axis:x,outputDirection:n,mipInt:l,envMap:u,CUBEUV_TEXEL_WIDTH:h,CUBEUV_TEXEL_HEIGHT:g,CUBEUV_MAX_MIP:v}))),S.addAssign(r.element(w).mul(tS({theta:R,axis:x,outputDirection:n,mipInt:l,envMap:u,CUBEUV_TEXEL_WIDTH:h,CUBEUV_TEXEL_HEIGHT:g,CUBEUV_MAX_MIP:v})))}),dn(S,1)});let ny=null;const JR=new WeakMap;function Ute(i){const e=Math.log2(i)-2,t=1/i;return{texelWidth:1/(3*Math.max(Math.pow(2,e),112)),texelHeight:t,maxMip:e}}function Bte(i){let e=JR.get(i);if((e!==void 0?e.pmremVersion:-1)!==i.pmremVersion){const n=i.image;if(i.isCubeTexture)if(Ite(n))e=ny.fromCubemap(i,e);else return null;else if(Fte(n))e=ny.fromEquirectangular(i,e);else return null;e.pmremVersion=i.pmremVersion,JR.set(i,e)}return e.texture}class Ote extends Zr{static get type(){return"PMREMNode"}constructor(e,t=null,n=null){super("vec3"),this._value=e,this._pmrem=null,this.uvNode=t,this.levelNode=n,this._generator=null;const r=new vs;r.isRenderTargetTexture=!0,this._texture=Ai(r),this._width=gn(0),this._height=gn(0),this._maxMip=gn(0),this.updateBeforeType=jn.RENDER}set value(e){this._value=e,this._pmrem=null}get value(){return this._value}updateFromTexture(e){const t=Ute(e.image.height);this._texture.value=e,this._width.value=t.texelWidth,this._height.value=t.texelHeight,this._maxMip.value=t.maxMip}updateBefore(){let e=this._pmrem;const t=e?e.pmremVersion:-1,n=this._value;t!==n.pmremVersion&&(n.isPMREMTexture===!0?e=n:e=Bte(n),e!==null&&(this._pmrem=e,this.updateFromTexture(e)))}setup(e){ny===null&&(ny=e.createPMREMGenerator()),this.updateBefore(e);let t=this.uvNode;t===null&&e.context.getUV&&(t=e.context.getUV(this));const n=this.value;e.renderer.coordinateSystem===Ha&&n.isPMREMTexture!==!0&&n.isRenderTargetTexture===!0&&(t=De(t.x.negate(),t.yz)),t=De(t.x,t.y.negate(),t.z);let r=this.levelNode;return r===null&&e.context.getTextureLevel&&(r=e.context.getTextureLevel(this)),$U(this._texture,t,r,this._width,this._height,this._maxMip)}}function Ite(i){if(i==null)return!1;let e=0;const t=6;for(let n=0;n0}const yE=lt(Ote),eN=new WeakMap;class kte extends K0{static get type(){return"EnvironmentNode"}constructor(e=null){super(),this.envNode=e}setup(e){const{material:t}=e;let n=this.envNode;if(n.isTextureNode||n.isMaterialReferenceNode){const S=n.isTextureNode?n.value:t[n.property];let w=eN.get(S);w===void 0&&(w=yE(S),eN.set(S,w)),n=w}const s=t.envMap?ji("envMapIntensity","float",e.material):ji("environmentIntensity","float",e.scene),l=t.useAnisotropy===!0||t.anisotropy>0?k9:zr,u=n.context(tN(Zl,l)).mul(s),h=n.context(zte(Hy)).mul(Math.PI).mul(s),g=Im(u),v=Im(h);e.context.radiance.addAssign(g),e.context.iblIrradiance.addAssign(v);const x=e.context.lightingModel.clearcoatRadiance;if(x){const S=n.context(tN(wg,Qd)).mul(s),w=Im(S);x.addAssign(w)}}}const tN=(i,e)=>{let t=null;return{getUV:()=>(t===null&&(t=dr.negate().reflect(e),t=i.mul(i).mix(t,e).normalize(),t=t.transformDirection(so)),t),getTextureLevel:()=>i}},zte=i=>({getUV:()=>i,getTextureLevel:()=>ve(1)}),Gte=new tD;class YU extends Vr{static get type(){return"MeshStandardNodeMaterial"}constructor(e){super(),this.isMeshStandardNodeMaterial=!0,this.lights=!0,this.emissiveNode=null,this.metalnessNode=null,this.roughnessNode=null,this.setDefaultValues(Gte),this.setValues(e)}setupEnvironment(e){let t=super.setupEnvironment(e);return t===null&&e.environmentNode&&(t=e.environmentNode),t?new kte(t):null}setupLightingModel(){return new jU}setupSpecular(){const e=Fi(De(.04),Ui.rgb,Tg);ka.assign(e),Mg.assign(1)}setupVariants(){const e=this.metalnessNode?ve(this.metalnessNode):X9;Tg.assign(e);let t=this.roughnessNode?ve(this.roughnessNode):$9;t=vE({roughness:t}),Zl.assign(t),this.setupSpecular(),Ui.assign(dn(Ui.rgb.mul(e.oneMinus()),Ui.a))}copy(e){return this.emissiveNode=e.emissiveNode,this.metalnessNode=e.metalnessNode,this.roughnessNode=e.roughnessNode,super.copy(e)}}const qte=new Cz;class Vte extends YU{static get type(){return"MeshPhysicalNodeMaterial"}constructor(e){super(),this.isMeshPhysicalNodeMaterial=!0,this.clearcoatNode=null,this.clearcoatRoughnessNode=null,this.clearcoatNormalNode=null,this.sheenNode=null,this.sheenRoughnessNode=null,this.iridescenceNode=null,this.iridescenceIORNode=null,this.iridescenceThicknessNode=null,this.specularIntensityNode=null,this.specularColorNode=null,this.iorNode=null,this.transmissionNode=null,this.thicknessNode=null,this.attenuationDistanceNode=null,this.attenuationColorNode=null,this.dispersionNode=null,this.anisotropyNode=null,this.setDefaultValues(qte),this.setValues(e)}get useClearcoat(){return this.clearcoat>0||this.clearcoatNode!==null}get useIridescence(){return this.iridescence>0||this.iridescenceNode!==null}get useSheen(){return this.sheen>0||this.sheenNode!==null}get useAnisotropy(){return this.anisotropy>0||this.anisotropyNode!==null}get useTransmission(){return this.transmission>0||this.transmissionNode!==null}get useDispersion(){return this.dispersion>0||this.dispersionNode!==null}setupSpecular(){const e=this.iorNode?ve(this.iorNode):lU;Om.assign(e),ka.assign(Fi(to(ZM(Om.sub(1).div(Om.add(1))).mul(W9),De(1)).mul($T),Ui.rgb,Tg)),Mg.assign(Fi($T,1,Tg))}setupLightingModel(){return new jU(this.useClearcoat,this.useSheen,this.useIridescence,this.useAnisotropy,this.useTransmission,this.useDispersion)}setupVariants(e){if(super.setupVariants(e),this.useClearcoat){const t=this.clearcoatNode?ve(this.clearcoatNode):Q9,n=this.clearcoatRoughnessNode?ve(this.clearcoatRoughnessNode):K9;X_.assign(t),wg.assign(vE({roughness:n}))}if(this.useSheen){const t=this.sheenNode?De(this.sheenNode):eU,n=this.sheenRoughnessNode?ve(this.sheenRoughnessNode):tU;Xf.assign(t),Uy.assign(n)}if(this.useIridescence){const t=this.iridescenceNode?ve(this.iridescenceNode):iU,n=this.iridescenceIORNode?ve(this.iridescenceIORNode):rU,r=this.iridescenceThicknessNode?ve(this.iridescenceThicknessNode):sU;By.assign(t),OM.assign(n),IM.assign(r)}if(this.useAnisotropy){const t=(this.anisotropyNode?wt(this.anisotropyNode):nU).toVar();Rh.assign(t.length()),ti(Rh.equal(0),()=>{t.assign(wt(1,0))}).Else(()=>{t.divAssign(wt(Rh)),Rh.assign(Rh.saturate())}),Y_.assign(Rh.pow2().mix(Zl.pow2(),1)),Bm.assign(Yf[0].mul(t.x).add(Yf[1].mul(t.y))),iA.assign(Yf[1].mul(t.x).sub(Yf[0].mul(t.y)))}if(this.useTransmission){const t=this.transmissionNode?ve(this.transmissionNode):aU,n=this.thicknessNode?ve(this.thicknessNode):oU,r=this.attenuationDistanceNode?ve(this.attenuationDistanceNode):uU,s=this.attenuationColorNode?De(this.attenuationColorNode):cU;if(K_.assign(t),FM.assign(n),kM.assign(r),zM.assign(s),this.useDispersion){const a=this.dispersionNode?ve(this.dispersionNode):pU;GM.assign(a)}}}setupClearcoatNormal(){return this.clearcoatNormalNode?De(this.clearcoatNormalNode):Z9}setup(e){e.context.setupClearcoatNormal=()=>this.setupClearcoatNormal(e),super.setup(e)}copy(e){return this.clearcoatNode=e.clearcoatNode,this.clearcoatRoughnessNode=e.clearcoatRoughnessNode,this.clearcoatNormalNode=e.clearcoatNormalNode,this.sheenNode=e.sheenNode,this.sheenRoughnessNode=e.sheenRoughnessNode,this.iridescenceNode=e.iridescenceNode,this.iridescenceIORNode=e.iridescenceIORNode,this.iridescenceThicknessNode=e.iridescenceThicknessNode,this.specularIntensityNode=e.specularIntensityNode,this.specularColorNode=e.specularColorNode,this.transmissionNode=e.transmissionNode,this.thicknessNode=e.thicknessNode,this.attenuationDistanceNode=e.attenuationDistanceNode,this.attenuationColorNode=e.attenuationColorNode,this.dispersionNode=e.dispersionNode,this.anisotropyNode=e.anisotropyNode,super.copy(e)}}const Hte=je(({normal:i,lightDirection:e,builder:t})=>{const n=i.dot(e),r=wt(n.mul(.5).add(.5),0);if(t.material.gradientMap){const s=Tc("gradientMap","texture").context({getUV:()=>r});return De(s.r)}else{const s=r.fwidth().mul(.5);return Fi(De(.7),De(1),kc(ve(.7).sub(s.x),ve(.7).add(s.x),r.x))}});class jte extends Xy{direct({lightDirection:e,lightColor:t,reflectedLight:n},r,s){const a=Hte({normal:qy,lightDirection:e,builder:s}).mul(t);n.directDiffuse.addAssign(a.mul(AA({diffuseColor:Ui.rgb})))}indirect({ambientOcclusion:e,irradiance:t,reflectedLight:n}){n.indirectDiffuse.addAssign(t.mul(AA({diffuseColor:Ui}))),n.indirectDiffuse.mulAssign(e)}}const Wte=new Rz;class $te extends Vr{static get type(){return"MeshToonNodeMaterial"}constructor(e){super(),this.isMeshToonNodeMaterial=!0,this.lights=!0,this.setDefaultValues(Wte),this.setValues(e)}setupLightingModel(){return new jte}}class Xte extends Zr{static get type(){return"MatcapUVNode"}constructor(){super("vec2")}setup(){const e=De(dr.z,0,dr.x.negate()).normalize(),t=dr.cross(e);return wt(e.dot(zr),t.dot(zr)).mul(.495).add(.5)}}const QU=Gt(Xte),Yte=new Lz;class Qte extends Vr{static get type(){return"MeshMatcapNodeMaterial"}constructor(e){super(),this.isMeshMatcapNodeMaterial=!0,this.setDefaultValues(Yte),this.setValues(e)}setupVariants(e){const t=QU;let n;e.material.matcap?n=Tc("matcap","texture").context({getUV:()=>t}):n=De(Fi(.2,.8,t.y)),Ui.rgb.mulAssign(n.rgb)}}const Kte=new Kw;class Zte extends Vr{static get type(){return"PointsNodeMaterial"}constructor(e){super(),this.isPointsNodeMaterial=!0,this.setDefaultValues(Kte),this.setValues(e)}}class Jte extends Zr{static get type(){return"RotateNode"}constructor(e,t){super(),this.positionNode=e,this.rotationNode=t}getNodeType(e){return this.positionNode.getNodeType(e)}setup(e){const{rotationNode:t,positionNode:n}=this;if(this.getNodeType(e)==="vec2"){const s=t.cos(),a=t.sin();return Ly(s,a,a.negate(),s).mul(n)}else{const s=t,a=nA(dn(1,0,0,0),dn(0,yc(s.x),Mo(s.x).negate(),0),dn(0,Mo(s.x),yc(s.x),0),dn(0,0,0,1)),l=nA(dn(yc(s.y),0,Mo(s.y),0),dn(0,1,0,0),dn(Mo(s.y).negate(),0,yc(s.y),0),dn(0,0,0,1)),u=nA(dn(yc(s.z),Mo(s.z).negate(),0,0),dn(Mo(s.z),yc(s.z),0,0),dn(0,0,1,0),dn(0,0,0,1));return a.mul(l).mul(u).mul(dn(n,1)).xyz}}}const xE=lt(Jte),ene=new jk;class tne extends Vr{static get type(){return"SpriteNodeMaterial"}constructor(e){super(),this.isSpriteNodeMaterial=!0,this._useSizeAttenuation=!0,this.positionNode=null,this.rotationNode=null,this.scaleNode=null,this.setDefaultValues(ene),this.setValues(e)}setupPositionView(e){const{object:t,camera:n}=e,r=this.sizeAttenuation,{positionNode:s,rotationNode:a,scaleNode:l}=this,u=Q0.mul(De(s||0));let h=wt($o[0].xyz.length(),$o[1].xyz.length());if(l!==null&&(h=h.mul(l)),r===!1)if(n.isPerspectiveCamera)h=h.mul(u.z.negate());else{const S=ve(2).div(_A.element(1).element(1));h=h.mul(S.mul(2))}let g=Gy.xy;if(t.center&&t.center.isVector2===!0){const S=xJ("center","vec2",t);g=g.sub(S.sub(.5))}g=g.mul(h);const v=ve(a||J9),x=xE(g,v);return dn(u.xy.add(x),u.zw)}copy(e){return this.positionNode=e.positionNode,this.rotationNode=e.rotationNode,this.scaleNode=e.scaleNode,super.copy(e)}get sizeAttenuation(){return this._useSizeAttenuation}set sizeAttenuation(e){this._useSizeAttenuation!==e&&(this._useSizeAttenuation=e,this.needsUpdate=!0)}}class nne extends Xy{constructor(){super(),this.shadowNode=ve(1).toVar("shadowMask")}direct({shadowMask:e}){this.shadowNode.mulAssign(e)}finish(e){Ui.a.mulAssign(this.shadowNode.oneMinus()),e.outgoingLight.rgb.assign(Ui.rgb)}}const ine=new Ez;class rne extends Vr{static get type(){return"ShadowNodeMaterial"}constructor(e){super(),this.isShadowNodeMaterial=!0,this.lights=!0,this.setDefaultValues(ine),this.setValues(e)}setupLightingModel(){return new nne}}const sne=je(({texture:i,uv:e})=>{const n=De().toVar();return ti(e.x.lessThan(1e-4),()=>{n.assign(De(1,0,0))}).ElseIf(e.y.lessThan(1e-4),()=>{n.assign(De(0,1,0))}).ElseIf(e.z.lessThan(1e-4),()=>{n.assign(De(0,0,1))}).ElseIf(e.x.greaterThan(1-1e-4),()=>{n.assign(De(-1,0,0))}).ElseIf(e.y.greaterThan(1-1e-4),()=>{n.assign(De(0,-1,0))}).ElseIf(e.z.greaterThan(1-1e-4),()=>{n.assign(De(0,0,-1))}).Else(()=>{const s=i.sample(e.add(De(-.01,0,0))).r.sub(i.sample(e.add(De(.01,0,0))).r),a=i.sample(e.add(De(0,-.01,0))).r.sub(i.sample(e.add(De(0,.01,0))).r),l=i.sample(e.add(De(0,0,-.01))).r.sub(i.sample(e.add(De(0,0,.01))).r);n.assign(De(s,a,l))}),n.normalize()});class ane extends yu{static get type(){return"Texture3DNode"}constructor(e,t=null,n=null){super(e,t,n),this.isTexture3DNode=!0}getInputType(){return"texture3D"}getDefaultUV(){return De(.5,.5,.5)}setUpdateMatrix(){}setupUV(e,t){const n=this.value;return e.isFlipY()&&(n.isRenderTargetTexture===!0||n.isFramebufferTexture===!0)&&(this.sampler?t=t.flipY():t=t.setY(xe(Fh(this,this.levelNode).y).sub(t.y).sub(1))),t}generateUV(e,t){return t.build(e,"vec3")}normal(e){return sne({texture:this,uv:e})}}const one=lt(ane);class lne{constructor(e,t){this.nodes=e,this.info=t,this._context=self,this._animationLoop=null,this._requestId=null}start(){const e=(t,n)=>{this._requestId=this._context.requestAnimationFrame(e),this.info.autoReset===!0&&this.info.reset(),this.nodes.nodeFrame.update(),this.info.frame=this.nodes.nodeFrame.frameId,this._animationLoop!==null&&this._animationLoop(t,n)};e()}stop(){this._context.cancelAnimationFrame(this._requestId),this._requestId=null}setAnimationLoop(e){this._animationLoop=e}setContext(e){this._context=e}dispose(){this.stop()}}class Su{constructor(){this.weakMap=new WeakMap}get(e){let t=this.weakMap;for(let n=0;n{this.dispose()},this.material.addEventListener("dispose",this.onMaterialDispose)}updateClipping(e){this.clippingContext=e}get clippingNeedsUpdate(){return this.clippingContext===null||this.clippingContext.cacheKey===this.clippingContextCacheKey?!1:(this.clippingContextCacheKey=this.clippingContext.cacheKey,!0)}get hardwareClippingPlanes(){return this.material.hardwareClipping===!0?this.clippingContext.unionClippingCount:0}getNodeBuilderState(){return this._nodeBuilderState||(this._nodeBuilderState=this._nodes.getForRender(this))}getMonitor(){return this._monitor||(this._monitor=this.getNodeBuilderState().monitor)}getBindings(){return this._bindings||(this._bindings=this.getNodeBuilderState().createBindings())}getIndex(){return this._geometries.getIndex(this)}getIndirect(){return this._geometries.getIndirect(this)}getChainArray(){return[this.object,this.material,this.context,this.lightsNode]}setGeometry(e){this.geometry=e,this.attributes=null}getAttributes(){if(this.attributes!==null)return this.attributes;const e=this.getNodeBuilderState().nodeAttributes,t=this.geometry,n=[],r=new Set;for(const s of e){const a=s.node&&s.node.attribute?s.node.attribute:t.getAttribute(s.name);if(a===void 0)continue;n.push(a);const l=a.isInterleavedBufferAttribute?a.data:a;r.add(l)}return this.attributes=n,this.vertexBuffers=Array.from(r.values()),n}getVertexBuffers(){return this.vertexBuffers===null&&this.getAttributes(),this.vertexBuffers}getDrawParameters(){const{object:e,material:t,geometry:n,group:r,drawRange:s}=this,a=this.drawParams||(this.drawParams={vertexCount:0,firstVertex:0,instanceCount:0,firstInstance:0}),l=this.getIndex(),u=l!==null,h=n.isInstancedBufferGeometry?n.instanceCount:e.count>1?e.count:1;if(h===0)return null;if(a.instanceCount=h,e.isBatchedMesh===!0)return a;let g=1;t.wireframe===!0&&!e.isPoints&&!e.isLineSegments&&!e.isLine&&!e.isLineLoop&&(g=2);let v=s.start*g,x=(s.start+s.count)*g;r!==null&&(v=Math.max(v,r.start*g),x=Math.min(x,(r.start+r.count)*g));const S=n.attributes.position;let w=1/0;u?w=l.count:S!=null&&(w=S.count),v=Math.max(v,0),x=Math.min(x,w);const R=x-v;return R<0||R===1/0?null:(a.vertexCount=R,a.firstVertex=v,a)}getGeometryCacheKey(){const{geometry:e}=this;let t="";for(const n of Object.keys(e.attributes).sort()){const r=e.attributes[n];t+=n+",",r.data&&(t+=r.data.stride+","),r.offset&&(t+=r.offset+","),r.itemSize&&(t+=r.itemSize+","),r.normalized&&(t+="n,")}return e.index&&(t+="index,"),t}getMaterialCacheKey(){const{object:e,material:t}=this;let n=t.customProgramCacheKey();for(const r of cne(t)){if(/^(is[A-Z]|_)|^(visible|version|uuid|name|opacity|userData)$/.test(r))continue;const s=t[r];let a;if(s!==null){const l=typeof s;l==="number"?a=s!==0?"1":"0":l==="object"?(a="{",s.isTexture&&(a+=s.mapping),a+="}"):a=String(s)}else a=String(s);n+=a+","}return n+=this.clippingContextCacheKey+",",e.geometry&&(n+=this.getGeometryCacheKey()),e.skeleton&&(n+=e.skeleton.bones.length+","),e.morphTargetInfluences&&(n+=e.morphTargetInfluences.length+","),e.isBatchedMesh&&(n+=e._matricesTexture.uuid+",",e._colorsTexture!==null&&(n+=e._colorsTexture.uuid+",")),e.count>1&&(n+=e.uuid+","),n+=e.receiveShadow+",",DP(n)}get needsGeometryUpdate(){return this.geometry.id!==this.object.geometry.id}get needsUpdate(){return this.initialNodesCacheKey!==this.getDynamicCacheKey()||this.clippingNeedsUpdate}getDynamicCacheKey(){let e=this._nodes.getCacheKey(this.scene,this.lightsNode);return this.object.receiveShadow&&(e+=1),e}getCacheKey(){return this.getMaterialCacheKey()+this.getDynamicCacheKey()}dispose(){this.material.removeEventListener("dispose",this.onMaterialDispose),this.onDispose()}}const Ed=[];class fne{constructor(e,t,n,r,s,a){this.renderer=e,this.nodes=t,this.geometries=n,this.pipelines=r,this.bindings=s,this.info=a,this.chainMaps={}}get(e,t,n,r,s,a,l,u){const h=this.getChainMap(u);Ed[0]=e,Ed[1]=t,Ed[2]=a,Ed[3]=s;let g=h.get(Ed);return g===void 0?(g=this.createRenderObject(this.nodes,this.geometries,this.renderer,e,t,n,r,s,a,l,u),h.set(Ed,g)):(g.updateClipping(l),g.needsGeometryUpdate&&g.setGeometry(e.geometry),(g.version!==t.version||g.needsUpdate)&&(g.initialCacheKey!==g.getCacheKey()?(g.dispose(),g=this.get(e,t,n,r,s,a,l,u)):g.version=t.version)),g}getChainMap(e="default"){return this.chainMaps[e]||(this.chainMaps[e]=new Su)}dispose(){this.chainMaps={}}createRenderObject(e,t,n,r,s,a,l,u,h,g,v){const x=this.getChainMap(v),S=new hne(e,t,n,r,s,a,l,u,h,g);return S.onDispose=()=>{this.pipelines.delete(S),this.bindings.delete(S),this.nodes.delete(S),x.delete(S.getChainArray())},S}}class Yh{constructor(){this.data=new WeakMap}get(e){let t=this.data.get(e);return t===void 0&&(t={},this.data.set(e,t)),t}delete(e){let t=null;return this.data.has(e)&&(t=this.data.get(e),this.data.delete(e)),t}has(e){return this.data.has(e)}dispose(){this.data=new WeakMap}}const iu={VERTEX:1,INDEX:2,STORAGE:3,INDIRECT:4},Lh=16,Ane=211,dne=212;class pne extends Yh{constructor(e){super(),this.backend=e}delete(e){const t=super.delete(e);return t!==void 0&&this.backend.destroyAttribute(e),t}update(e,t){const n=this.get(e);if(n.version===void 0)t===iu.VERTEX?this.backend.createAttribute(e):t===iu.INDEX?this.backend.createIndexAttribute(e):t===iu.STORAGE?this.backend.createStorageAttribute(e):t===iu.INDIRECT&&this.backend.createIndirectStorageAttribute(e),n.version=this._getBufferAttribute(e).version;else{const r=this._getBufferAttribute(e);(n.version=0;--e)if(i[e]>=65535)return!0;return!1}function KU(i){return i.index!==null?i.index.version:i.attributes.position.version}function nN(i){const e=[],t=i.index,n=i.attributes.position;if(t!==null){const s=t.array;for(let a=0,l=s.length;a{this.info.memory.geometries--;const s=t.index,a=e.getAttributes();s!==null&&this.attributes.delete(s);for(const u of a)this.attributes.delete(u);const l=this.wireframes.get(t);l!==void 0&&this.attributes.delete(l),t.removeEventListener("dispose",r)};t.addEventListener("dispose",r)}updateAttributes(e){const t=e.getAttributes();for(const s of t)s.isStorageBufferAttribute||s.isStorageInstancedBufferAttribute?this.updateAttribute(s,iu.STORAGE):this.updateAttribute(s,iu.VERTEX);const n=this.getIndex(e);n!==null&&this.updateAttribute(n,iu.INDEX);const r=e.geometry.indirect;r!==null&&this.updateAttribute(r,iu.INDIRECT)}updateAttribute(e,t){const n=this.info.render.calls;e.isInterleavedBufferAttribute?this.attributeCall.get(e)===void 0?(this.attributes.update(e,t),this.attributeCall.set(e,n)):this.attributeCall.get(e.data)!==n&&(this.attributes.update(e,t),this.attributeCall.set(e.data,n),this.attributeCall.set(e,n)):this.attributeCall.get(e)!==n&&(this.attributes.update(e,t),this.attributeCall.set(e,n))}getIndirect(e){return e.geometry.indirect}getIndex(e){const{geometry:t,material:n}=e;let r=t.index;if(n.wireframe===!0){const s=this.wireframes;let a=s.get(t);a===void 0?(a=nN(t),s.set(t,a)):a.version!==KU(t)&&(this.attributes.delete(a),a=nN(t),s.set(t,a)),r=a}return r}}class vne{constructor(){this.autoReset=!0,this.frame=0,this.calls=0,this.render={calls:0,frameCalls:0,drawCalls:0,triangles:0,points:0,lines:0,timestamp:0,previousFrameCalls:0,timestampCalls:0},this.compute={calls:0,frameCalls:0,timestamp:0,previousFrameCalls:0,timestampCalls:0},this.memory={geometries:0,textures:0}}update(e,t,n){this.render.drawCalls++,e.isMesh||e.isSprite?this.render.triangles+=n*(t/3):e.isPoints?this.render.points+=n*t:e.isLineSegments?this.render.lines+=n*(t/2):e.isLine?this.render.lines+=n*(t-1):console.error("THREE.WebGPUInfo: Unknown object type.")}updateTimestamp(e,t){this[e].timestampCalls===0&&(this[e].timestamp=0),this[e].timestamp+=t,this[e].timestampCalls++,this[e].timestampCalls>=this[e].previousFrameCalls&&(this[e].timestampCalls=0)}reset(){const e=this.render.frameCalls;this.render.previousFrameCalls=e;const t=this.compute.frameCalls;this.compute.previousFrameCalls=t,this.render.drawCalls=0,this.render.frameCalls=0,this.compute.frameCalls=0,this.render.triangles=0,this.render.points=0,this.render.lines=0}dispose(){this.reset(),this.calls=0,this.render.calls=0,this.compute.calls=0,this.render.timestamp=0,this.compute.timestamp=0,this.memory.geometries=0,this.memory.textures=0}}class ZU{constructor(e){this.cacheKey=e,this.usedTimes=0}}class _ne extends ZU{constructor(e,t,n){super(e),this.vertexProgram=t,this.fragmentProgram=n}}class yne extends ZU{constructor(e,t){super(e),this.computeProgram=t,this.isComputePipeline=!0}}let xne=0;class nS{constructor(e,t,n,r=null,s=null){this.id=xne++,this.code=e,this.stage=t,this.name=n,this.transforms=r,this.attributes=s,this.usedTimes=0}}class bne extends Yh{constructor(e,t){super(),this.backend=e,this.nodes=t,this.bindings=null,this.caches=new Map,this.programs={vertex:new Map,fragment:new Map,compute:new Map}}getForCompute(e,t){const{backend:n}=this,r=this.get(e);if(this._needsComputeUpdate(e)){const s=r.pipeline;s&&(s.usedTimes--,s.computeProgram.usedTimes--);const a=this.nodes.getForCompute(e);let l=this.programs.compute.get(a.computeShader);l===void 0&&(s&&s.computeProgram.usedTimes===0&&this._releaseProgram(s.computeProgram),l=new nS(a.computeShader,"compute",e.name,a.transforms,a.nodeAttributes),this.programs.compute.set(a.computeShader,l),n.createProgram(l));const u=this._getComputeCacheKey(e,l);let h=this.caches.get(u);h===void 0&&(s&&s.usedTimes===0&&this._releasePipeline(s),h=this._getComputePipeline(e,l,u,t)),h.usedTimes++,l.usedTimes++,r.version=e.version,r.pipeline=h}return r.pipeline}getForRender(e,t=null){const{backend:n}=this,r=this.get(e);if(this._needsRenderUpdate(e)){const s=r.pipeline;s&&(s.usedTimes--,s.vertexProgram.usedTimes--,s.fragmentProgram.usedTimes--);const a=e.getNodeBuilderState(),l=e.material?e.material.name:"";let u=this.programs.vertex.get(a.vertexShader);u===void 0&&(s&&s.vertexProgram.usedTimes===0&&this._releaseProgram(s.vertexProgram),u=new nS(a.vertexShader,"vertex",l),this.programs.vertex.set(a.vertexShader,u),n.createProgram(u));let h=this.programs.fragment.get(a.fragmentShader);h===void 0&&(s&&s.fragmentProgram.usedTimes===0&&this._releaseProgram(s.fragmentProgram),h=new nS(a.fragmentShader,"fragment",l),this.programs.fragment.set(a.fragmentShader,h),n.createProgram(h));const g=this._getRenderCacheKey(e,u,h);let v=this.caches.get(g);v===void 0?(s&&s.usedTimes===0&&this._releasePipeline(s),v=this._getRenderPipeline(e,u,h,g,t)):e.pipeline=v,v.usedTimes++,u.usedTimes++,h.usedTimes++,r.pipeline=v}return r.pipeline}delete(e){const t=this.get(e).pipeline;return t&&(t.usedTimes--,t.usedTimes===0&&this._releasePipeline(t),t.isComputePipeline?(t.computeProgram.usedTimes--,t.computeProgram.usedTimes===0&&this._releaseProgram(t.computeProgram)):(t.fragmentProgram.usedTimes--,t.vertexProgram.usedTimes--,t.vertexProgram.usedTimes===0&&this._releaseProgram(t.vertexProgram),t.fragmentProgram.usedTimes===0&&this._releaseProgram(t.fragmentProgram))),super.delete(e)}dispose(){super.dispose(),this.caches=new Map,this.programs={vertex:new Map,fragment:new Map,compute:new Map}}updateForRender(e){this.getForRender(e)}_getComputePipeline(e,t,n,r){n=n||this._getComputeCacheKey(e,t);let s=this.caches.get(n);return s===void 0&&(s=new yne(n,t),this.caches.set(n,s),this.backend.createComputePipeline(s,r)),s}_getRenderPipeline(e,t,n,r,s){r=r||this._getRenderCacheKey(e,t,n);let a=this.caches.get(r);return a===void 0&&(a=new _ne(r,t,n),this.caches.set(r,a),e.pipeline=a,this.backend.createRenderPipeline(e,s)),a}_getComputeCacheKey(e,t){return e.id+","+t.id}_getRenderCacheKey(e,t,n){return t.id+","+n.id+","+this.backend.getRenderCacheKey(e)}_releasePipeline(e){this.caches.delete(e.cacheKey)}_releaseProgram(e){const t=e.code,n=e.stage;this.programs[n].delete(t)}_needsComputeUpdate(e){const t=this.get(e);return t.pipeline===void 0||t.version!==e.version}_needsRenderUpdate(e){return this.get(e).pipeline===void 0||this.backend.needsRenderUpdate(e)}}class Sne extends Yh{constructor(e,t,n,r,s,a){super(),this.backend=e,this.textures=n,this.pipelines=s,this.attributes=r,this.nodes=t,this.info=a,this.pipelines.bindings=this}getForRender(e){const t=e.getBindings();for(const n of t){const r=this.get(n);r.bindGroup===void 0&&(this._init(n),this.backend.createBindings(n,t,0),r.bindGroup=n)}return t}getForCompute(e){const t=this.nodes.getForCompute(e).bindings;for(const n of t){const r=this.get(n);r.bindGroup===void 0&&(this._init(n),this.backend.createBindings(n,t,0),r.bindGroup=n)}return t}updateForCompute(e){this._updateBindings(this.getForCompute(e))}updateForRender(e){this._updateBindings(this.getForRender(e))}_updateBindings(e){for(const t of e)this._update(t,e)}_init(e){for(const t of e.bindings)if(t.isSampledTexture)this.textures.updateTexture(t.texture);else if(t.isStorageBuffer){const n=t.attribute,r=n.isIndirectStorageBufferAttribute?iu.INDIRECT:iu.STORAGE;this.attributes.update(n,r)}}_update(e,t){const{backend:n}=this;let r=!1,s=!0,a=0,l=0;for(const u of e.bindings)if(!(u.isNodeUniformsGroup&&this.nodes.updateGroup(u)===!1)){if(u.isUniformBuffer)u.update()&&n.updateBinding(u);else if(u.isSampler)u.update();else if(u.isSampledTexture){const h=this.textures.get(u.texture);u.needsBindingsUpdate(h.generation)&&(r=!0);const g=u.update(),v=u.texture;g&&this.textures.updateTexture(v);const x=n.get(v);if(x.externalTexture!==void 0||h.isDefaultTexture?s=!1:(a=a*10+v.id,l+=v.version),n.isWebGPUBackend===!0&&x.texture===void 0&&x.externalTexture===void 0&&(console.error("Bindings._update: binding should be available:",u,g,v,u.textureNode.value,r),this.textures.updateTexture(v),r=!0),v.isStorageTexture===!0){const S=this.get(v);u.store===!0?S.needsMipmap=!0:this.textures.needsMipmaps(v)&&S.needsMipmap===!0&&(this.backend.generateMipmaps(v),S.needsMipmap=!1)}}}r===!0&&this.backend.updateBindings(e,t,s?a:0,l)}}function Tne(i,e){return i.groupOrder!==e.groupOrder?i.groupOrder-e.groupOrder:i.renderOrder!==e.renderOrder?i.renderOrder-e.renderOrder:i.material.id!==e.material.id?i.material.id-e.material.id:i.z!==e.z?i.z-e.z:i.id-e.id}function iN(i,e){return i.groupOrder!==e.groupOrder?i.groupOrder-e.groupOrder:i.renderOrder!==e.renderOrder?i.renderOrder-e.renderOrder:i.z!==e.z?e.z-i.z:i.id-e.id}function rN(i){return(i.transmission>0||i.transmissionNode)&&i.side===as&&i.forceSinglePass===!1}class wne{constructor(e,t,n){this.renderItems=[],this.renderItemsIndex=0,this.opaque=[],this.transparentDoublePass=[],this.transparent=[],this.bundles=[],this.lightsNode=e.getNode(t,n),this.lightsArray=[],this.scene=t,this.camera=n,this.occlusionQueryCount=0}begin(){return this.renderItemsIndex=0,this.opaque.length=0,this.transparentDoublePass.length=0,this.transparent.length=0,this.bundles.length=0,this.lightsArray.length=0,this.occlusionQueryCount=0,this}getNextRenderItem(e,t,n,r,s,a,l){let u=this.renderItems[this.renderItemsIndex];return u===void 0?(u={id:e.id,object:e,geometry:t,material:n,groupOrder:r,renderOrder:e.renderOrder,z:s,group:a,clippingContext:l},this.renderItems[this.renderItemsIndex]=u):(u.id=e.id,u.object=e,u.geometry=t,u.material=n,u.groupOrder=r,u.renderOrder=e.renderOrder,u.z=s,u.group=a,u.clippingContext=l),this.renderItemsIndex++,u}push(e,t,n,r,s,a,l){const u=this.getNextRenderItem(e,t,n,r,s,a,l);e.occlusionTest===!0&&this.occlusionQueryCount++,n.transparent===!0||n.transmission>0?(rN(n)&&this.transparentDoublePass.push(u),this.transparent.push(u)):this.opaque.push(u)}unshift(e,t,n,r,s,a,l){const u=this.getNextRenderItem(e,t,n,r,s,a,l);n.transparent===!0||n.transmission>0?(rN(n)&&this.transparentDoublePass.unshift(u),this.transparent.unshift(u)):this.opaque.unshift(u)}pushBundle(e){this.bundles.push(e)}pushLight(e){this.lightsArray.push(e)}sort(e,t){this.opaque.length>1&&this.opaque.sort(e||Tne),this.transparentDoublePass.length>1&&this.transparentDoublePass.sort(t||iN),this.transparent.length>1&&this.transparent.sort(t||iN)}finish(){this.lightsNode.setLights(this.lightsArray);for(let e=this.renderItemsIndex,t=this.renderItems.length;e>t,h=l.height>>t;let g=e.depthTexture||s[t];const v=e.depthBuffer===!0||e.stencilBuffer===!0;let x=!1;g===void 0&&v&&(g=new qc,g.format=e.stencilBuffer?du:au,g.type=e.stencilBuffer?Au:Rr,g.image.width=u,g.image.height=h,s[t]=g),(n.width!==l.width||l.height!==n.height)&&(x=!0,g&&(g.needsUpdate=!0,g.image.width=u,g.image.height=h)),n.width=l.width,n.height=l.height,n.textures=a,n.depthTexture=g||null,n.depth=e.depthBuffer,n.stencil=e.stencilBuffer,n.renderTarget=e,n.sampleCount!==r&&(x=!0,g&&(g.needsUpdate=!0),n.sampleCount=r);const S={sampleCount:r};for(let w=0;w{e.removeEventListener("dispose",w);for(let R=0;R0){const g=e.image;if(g===void 0)console.warn("THREE.Renderer: Texture marked for update but image is undefined.");else if(g.complete===!1)console.warn("THREE.Renderer: Texture marked for update but image is incomplete.");else{if(e.images){const v=[];for(const x of e.images)v.push(x);t.images=v}else t.image=g;(n.isDefaultTexture===void 0||n.isDefaultTexture===!0)&&(s.createTexture(e,t),n.isDefaultTexture=!1,n.generation=e.version),e.source.dataReady===!0&&s.updateTexture(e,t),t.needsMipmaps&&e.mipmaps.length===0&&s.generateMipmaps(e)}}else s.createDefaultTexture(e),n.isDefaultTexture=!0,n.generation=e.version;if(n.initialized!==!0){n.initialized=!0,n.generation=e.version,this.info.memory.textures++;const h=()=>{e.removeEventListener("dispose",h),this._destroyTexture(e),this.info.memory.textures--};e.addEventListener("dispose",h)}n.version=e.version}getSize(e,t=Nne){let n=e.images?e.images[0]:e.image;return n?(n.image!==void 0&&(n=n.image),t.width=n.width||1,t.height=n.height||1,t.depth=e.isCubeTexture?6:n.depth||1):t.width=t.height=t.depth=1,t}getMipLevels(e,t,n){let r;return e.isCompressedTexture?e.mipmaps?r=e.mipmaps.length:r=1:r=Math.floor(Math.log2(Math.max(t,n)))+1,r}needsMipmaps(e){return this.isEnvironmentTexture(e)||e.isCompressedTexture===!0||e.generateMipmaps}isEnvironmentTexture(e){const t=e.mapping;return t===zh||t===Gh||t===Qo||t===Ko}_destroyTexture(e){this.backend.destroySampler(e),this.backend.destroyTexture(e),this.delete(e)}}class bE extends an{constructor(e,t,n,r=1){super(e,t,n),this.a=r}set(e,t,n,r=1){return this.a=r,super.set(e,t,n)}copy(e){return e.a!==void 0&&(this.a=e.a),super.copy(e)}clone(){return new this.constructor(this.r,this.g,this.b,this.a)}}class eB extends Gi{static get type(){return"ParameterNode"}constructor(e,t=null){super(e,t),this.isParameterNode=!0}getHash(){return this.uuid}generate(){return this.name}}const Pne=(i,e)=>dt(new eB(i,e));class Lne extends Mn{static get type(){return"StackNode"}constructor(e=null){super(),this.nodes=[],this.outputNode=null,this.parent=e,this._currentCond=null,this.isStackNode=!0}getNodeType(e){return this.outputNode?this.outputNode.getNodeType(e):"void"}add(e){return this.nodes.push(e),this}If(e,t){const n=new Um(t);return this._currentCond=zs(e,n),this.add(this._currentCond)}ElseIf(e,t){const n=new Um(t),r=zs(e,n);return this._currentCond.elseNode=r,this._currentCond=r,this}Else(e){return this._currentCond.elseNode=new Um(e),this}build(e,...t){const n=PM();bg(this);for(const r of this.nodes)r.build(e,"void");return bg(n),this.outputNode?this.outputNode.build(e,...t):super.build(e,...t)}else(...e){return console.warn("TSL.StackNode: .else() has been renamed to .Else()."),this.Else(...e)}elseif(...e){return console.warn("TSL.StackNode: .elseif() has been renamed to .ElseIf()."),this.ElseIf(...e)}}const e_=lt(Lne);class tB extends Mn{static get type(){return"OutputStructNode"}constructor(...e){super(),this.members=e,this.isOutputStructNode=!0}setup(e){super.setup(e);const t=this.members,n=[];for(let r=0;r{const e=i.toUint().mul(747796405).add(2891336453),t=e.shiftRight(e.shiftRight(28).add(4)).bitXor(e).mul(277803737);return t.shiftRight(22).bitXor(t).toFloat().mul(1/2**32)}),JT=(i,e)=>Cl(Wn(4,i.mul(Ti(1,i))),e),Ine=(i,e)=>i.lessThan(.5)?JT(i.mul(2),e).div(2):Ti(1,JT(Wn(Ti(1,i),2),e).div(2)),Fne=(i,e,t)=>Cl(Dl(Cl(i,e),Qr(Cl(i,e),Cl(Ti(1,i),t))),1/e),kne=(i,e)=>Mo(Z_.mul(e.mul(i).sub(1))).div(Z_.mul(e.mul(i).sub(1))),xc=je(([i])=>i.fract().sub(.5).abs()).setLayout({name:"tri",type:"float",inputs:[{name:"x",type:"float"}]}),zne=je(([i])=>De(xc(i.z.add(xc(i.y.mul(1)))),xc(i.z.add(xc(i.x.mul(1)))),xc(i.y.add(xc(i.x.mul(1)))))).setLayout({name:"tri3",type:"vec3",inputs:[{name:"p",type:"vec3"}]}),Gne=je(([i,e,t])=>{const n=De(i).toVar(),r=ve(1.4).toVar(),s=ve(0).toVar(),a=De(n).toVar();return ki({start:ve(0),end:ve(3),type:"float",condition:"<="},()=>{const l=De(zne(a.mul(2))).toVar();n.addAssign(l.add(t.mul(ve(.1).mul(e)))),a.mulAssign(1.8),r.mulAssign(1.5),n.mulAssign(1.2);const u=ve(xc(n.z.add(xc(n.x.add(xc(n.y)))))).toVar();s.addAssign(u.div(r)),a.addAssign(.14)}),s}).setLayout({name:"triNoise3D",type:"float",inputs:[{name:"position",type:"vec3"},{name:"speed",type:"float"},{name:"time",type:"float"}]});class qne extends Mn{static get type(){return"FunctionOverloadingNode"}constructor(e=[],...t){super(),this.functionNodes=e,this.parametersNodes=t,this._candidateFnCall=null,this.global=!0}getNodeType(){return this.functionNodes[0].shaderNode.layout.type}setup(e){const t=this.parametersNodes;let n=this._candidateFnCall;if(n===null){let r=null,s=-1;for(const a of this.functionNodes){const u=a.shaderNode.layout;if(u===null)throw new Error("FunctionOverloadingNode: FunctionNode must be a layout.");const h=u.inputs;if(t.length===h.length){let g=0;for(let v=0;vs&&(r=a,s=g)}}this._candidateFnCall=n=r(...t)}return n}}const Vne=lt(qne),Vs=i=>(...e)=>Vne(i,...e),yA=gn(0).setGroup(Rn).onRenderUpdate(i=>i.time),rB=gn(0).setGroup(Rn).onRenderUpdate(i=>i.deltaTime),Hne=gn(0,"uint").setGroup(Rn).onRenderUpdate(i=>i.frameId),jne=(i=1)=>(console.warn('TSL: timerLocal() is deprecated. Use "time" instead.'),yA.mul(i)),Wne=(i=1)=>(console.warn('TSL: timerGlobal() is deprecated. Use "time" instead.'),yA.mul(i)),$ne=(i=1)=>(console.warn('TSL: timerDelta() is deprecated. Use "deltaTime" instead.'),rB.mul(i)),Xne=(i=yA)=>i.add(.75).mul(Math.PI*2).sin().mul(.5).add(.5),Yne=(i=yA)=>i.fract().round(),Qne=(i=yA)=>i.add(.5).fract().mul(2).sub(1).abs(),Kne=(i=yA)=>i.fract(),Zne=je(([i,e,t=wt(.5)])=>xE(i.sub(t),e).add(t)),Jne=je(([i,e,t=wt(.5)])=>{const n=i.sub(t),r=n.dot(n),a=r.mul(r).mul(e);return i.add(n.mul(a))}),eie=je(({position:i=null,horizontal:e=!0,vertical:t=!1})=>{let n;i!==null?(n=$o.toVar(),n[3][0]=i.x,n[3][1]=i.y,n[3][2]=i.z):n=$o;const r=so.mul(n);return xg(e)&&(r[0][0]=$o[0].length(),r[0][1]=0,r[0][2]=0),xg(t)&&(r[1][0]=0,r[1][1]=$o[1].length(),r[1][2]=0),r[2][0]=0,r[2][1]=0,r[2][2]=1,_A.mul(r).mul(Gr)}),tie=je(([i=null])=>{const e=ty();return ty(fE(i)).sub(e).lessThan(0).select(bu,i)});class nie extends Mn{static get type(){return"SpriteSheetUVNode"}constructor(e,t=Er(),n=ve(0)){super("vec2"),this.countNode=e,this.uvNode=t,this.frameNode=n}setup(){const{frameNode:e,uvNode:t,countNode:n}=this,{width:r,height:s}=n,a=e.mod(r.mul(s)).floor(),l=a.mod(r),u=s.sub(a.add(1).div(r).ceil()),h=n.reciprocal(),g=wt(l,u);return t.add(g).mul(h)}}const iie=lt(nie);class rie extends Mn{static get type(){return"TriplanarTexturesNode"}constructor(e,t=null,n=null,r=ve(1),s=Gr,a=no){super("vec4"),this.textureXNode=e,this.textureYNode=t,this.textureZNode=n,this.scaleNode=r,this.positionNode=s,this.normalNode=a}setup(){const{textureXNode:e,textureYNode:t,textureZNode:n,scaleNode:r,positionNode:s,normalNode:a}=this;let l=a.abs().normalize();l=l.div(l.dot(De(1)));const u=s.yz.mul(r),h=s.zx.mul(r),g=s.xy.mul(r),v=e.value,x=t!==null?t.value:v,S=n!==null?n.value:v,w=Ai(v,u).mul(l.x),R=Ai(x,h).mul(l.y),C=Ai(S,g).mul(l.z);return Qr(w,R,C)}}const sB=lt(rie),sie=(...i)=>sB(...i),Cd=new Yl,Cf=new ce,Rd=new ce,iS=new ce,um=new kn,fv=new ce(0,0,-1),Hl=new Pn,cm=new ce,Av=new ce,hm=new Pn,dv=new ft,iy=new Wh,aie=bu.flipX();iy.depthTexture=new qc(1,1);let rS=!1;class SE extends yu{static get type(){return"ReflectorNode"}constructor(e={}){super(e.defaultTexture||iy.texture,aie),this._reflectorBaseNode=e.reflector||new oie(this,e),this._depthNode=null,this.setUpdateMatrix(!1)}get reflector(){return this._reflectorBaseNode}get target(){return this._reflectorBaseNode.target}getDepthNode(){if(this._depthNode===null){if(this._reflectorBaseNode.depth!==!0)throw new Error("THREE.ReflectorNode: Depth node can only be requested when the reflector is created with { depth: true }. ");this._depthNode=dt(new SE({defaultTexture:iy.depthTexture,reflector:this._reflectorBaseNode}))}return this._depthNode}setup(e){return e.object.isQuadMesh||this._reflectorBaseNode.build(e),super.setup(e)}clone(){const e=new this.constructor(this.reflectorNode);return e._reflectorBaseNode=this._reflectorBaseNode,e}}class oie extends Mn{static get type(){return"ReflectorBaseNode"}constructor(e,t={}){super();const{target:n=new vr,resolution:r=1,generateMipmaps:s=!1,bounces:a=!0,depth:l=!1}=t;this.textureNode=e,this.target=n,this.resolution=r,this.generateMipmaps=s,this.bounces=a,this.depth=l,this.updateBeforeType=a?jn.RENDER:jn.FRAME,this.virtualCameras=new WeakMap,this.renderTargets=new WeakMap}_updateResolution(e,t){const n=this.resolution;t.getDrawingBufferSize(dv),e.setSize(Math.round(dv.width*n),Math.round(dv.height*n))}setup(e){return this._updateResolution(iy,e.renderer),super.setup(e)}getVirtualCamera(e){let t=this.virtualCameras.get(e);return t===void 0&&(t=e.clone(),this.virtualCameras.set(e,t)),t}getRenderTarget(e){let t=this.renderTargets.get(e);return t===void 0&&(t=new Wh(0,0,{type:Gs}),this.generateMipmaps===!0&&(t.texture.minFilter=GF,t.texture.generateMipmaps=!0),this.depth===!0&&(t.depthTexture=new qc),this.renderTargets.set(e,t)),t}updateBefore(e){if(this.bounces===!1&&rS)return!1;rS=!0;const{scene:t,camera:n,renderer:r,material:s}=e,{target:a}=this,l=this.getVirtualCamera(n),u=this.getRenderTarget(l);if(r.getDrawingBufferSize(dv),this._updateResolution(u,r),Rd.setFromMatrixPosition(a.matrixWorld),iS.setFromMatrixPosition(n.matrixWorld),um.extractRotation(a.matrixWorld),Cf.set(0,0,1),Cf.applyMatrix4(um),cm.subVectors(Rd,iS),cm.dot(Cf)>0)return;cm.reflect(Cf).negate(),cm.add(Rd),um.extractRotation(n.matrixWorld),fv.set(0,0,-1),fv.applyMatrix4(um),fv.add(iS),Av.subVectors(Rd,fv),Av.reflect(Cf).negate(),Av.add(Rd),l.coordinateSystem=n.coordinateSystem,l.position.copy(cm),l.up.set(0,1,0),l.up.applyMatrix4(um),l.up.reflect(Cf),l.lookAt(Av),l.near=n.near,l.far=n.far,l.updateMatrixWorld(),l.projectionMatrix.copy(n.projectionMatrix),Cd.setFromNormalAndCoplanarPoint(Cf,Rd),Cd.applyMatrix4(l.matrixWorldInverse),Hl.set(Cd.normal.x,Cd.normal.y,Cd.normal.z,Cd.constant);const h=l.projectionMatrix;hm.x=(Math.sign(Hl.x)+h.elements[8])/h.elements[0],hm.y=(Math.sign(Hl.y)+h.elements[9])/h.elements[5],hm.z=-1,hm.w=(1+h.elements[10])/h.elements[14],Hl.multiplyScalar(1/Hl.dot(hm));const g=0;h.elements[2]=Hl.x,h.elements[6]=Hl.y,h.elements[10]=r.coordinateSystem===pu?Hl.z-g:Hl.z+1-g,h.elements[14]=Hl.w,this.textureNode.value=u.texture,this.depth===!0&&(this.textureNode.getDepthNode().value=u.depthTexture),s.visible=!1;const v=r.getRenderTarget(),x=r.getMRT(),S=r.autoClear;r.setMRT(null),r.setRenderTarget(u),r.autoClear=!0,r.render(t,l),r.setMRT(x),r.setRenderTarget(v),r.autoClear=S,s.visible=!0,rS=!1}}const lie=i=>dt(new SE(i)),sS=new kg(-1,1,1,-1,0,1);class uie extends Ki{constructor(e=!1){super();const t=e===!1?[0,-1,0,1,2,1]:[0,2,0,0,2,0];this.setAttribute("position",new wi([-1,3,0,-1,-1,0,3,-1,0],3)),this.setAttribute("uv",new wi(t,2))}}const cie=new uie;class TE extends zi{constructor(e=null){super(cie,e),this.camera=sS,this.isQuadMesh=!0}async renderAsync(e){return e.renderAsync(this,sS)}render(e){e.render(this,sS)}}const hie=new ft;class fie extends yu{static get type(){return"RTTNode"}constructor(e,t=null,n=null,r={type:Gs}){const s=new Wh(t,n,r);super(s.texture,Er()),this.node=e,this.width=t,this.height=n,this.pixelRatio=1,this.renderTarget=s,this.textureNeedsUpdate=!0,this.autoUpdate=!0,this._rttNode=null,this._quadMesh=new TE(new Vr),this.updateBeforeType=jn.RENDER}get autoSize(){return this.width===null}setup(e){return this._rttNode=this.node.context(e.getSharedContext()),this._quadMesh.material.name="RTT",this._quadMesh.material.needsUpdate=!0,super.setup(e)}setSize(e,t){this.width=e,this.height=t;const n=e*this.pixelRatio,r=t*this.pixelRatio;this.renderTarget.setSize(n,r),this.textureNeedsUpdate=!0}setPixelRatio(e){this.pixelRatio=e,this.setSize(this.width,this.height)}updateBefore({renderer:e}){if(this.textureNeedsUpdate===!1&&this.autoUpdate===!1)return;if(this.textureNeedsUpdate=!1,this.autoSize===!0){this.pixelRatio=e.getPixelRatio();const n=e.getSize(hie);this.setSize(n.width,n.height)}this._quadMesh.material.fragmentNode=this._rttNode;const t=e.getRenderTarget();e.setRenderTarget(this.renderTarget),this._quadMesh.render(e),e.setRenderTarget(t)}clone(){const e=new yu(this.value,this.uvNode,this.levelNode);return e.sampler=this.sampler,e.referenceNode=this,e}}const aB=(i,...e)=>dt(new fie(dt(i),...e)),Aie=(i,...e)=>i.isTextureNode?i:i.isPassNode?i.getTextureNode():aB(i,...e),zd=je(([i,e,t],n)=>{let r;n.renderer.coordinateSystem===pu?(i=wt(i.x,i.y.oneMinus()).mul(2).sub(1),r=dn(De(i,e),1)):r=dn(De(i.x,i.y.oneMinus(),e).mul(2).sub(1),1);const s=dn(t.mul(r));return s.xyz.div(s.w)}),die=je(([i,e])=>{const t=e.mul(dn(i,1)),n=t.xy.div(t.w).mul(.5).add(.5).toVar();return wt(n.x,n.y.oneMinus())}),pie=je(([i,e,t])=>{const n=Fh(Fr(e)),r=ms(i.mul(n)).toVar(),s=Fr(e,r).toVar(),a=Fr(e,r.sub(ms(2,0))).toVar(),l=Fr(e,r.sub(ms(1,0))).toVar(),u=Fr(e,r.add(ms(1,0))).toVar(),h=Fr(e,r.add(ms(2,0))).toVar(),g=Fr(e,r.add(ms(0,2))).toVar(),v=Fr(e,r.add(ms(0,1))).toVar(),x=Fr(e,r.sub(ms(0,1))).toVar(),S=Fr(e,r.sub(ms(0,2))).toVar(),w=ur(Ti(ve(2).mul(l).sub(a),s)).toVar(),R=ur(Ti(ve(2).mul(u).sub(h),s)).toVar(),C=ur(Ti(ve(2).mul(v).sub(g),s)).toVar(),E=ur(Ti(ve(2).mul(x).sub(S),s)).toVar(),B=zd(i,s,t).toVar(),L=w.lessThan(R).select(B.sub(zd(i.sub(wt(ve(1).div(n.x),0)),l,t)),B.negate().add(zd(i.add(wt(ve(1).div(n.x),0)),u,t))),O=C.lessThan(E).select(B.sub(zd(i.add(wt(0,ve(1).div(n.y))),v,t)),B.negate().add(zd(i.sub(wt(0,ve(1).div(n.y))),x,t)));return Fc(ky(L,O))});class t_ extends Ig{constructor(e,t,n=Float32Array){const r=ArrayBuffer.isView(e)?e:new n(e*t);super(r,t),this.isStorageInstancedBufferAttribute=!0}}class mie extends wr{constructor(e,t,n=Float32Array){const r=ArrayBuffer.isView(e)?e:new n(e*t);super(r,t),this.isStorageBufferAttribute=!0}}class gie extends vA{static get type(){return"StorageArrayElementNode"}constructor(e,t){super(e,t),this.isStorageArrayElementNode=!0}set storageBufferNode(e){this.node=e}get storageBufferNode(){return this.node}setup(e){return e.isAvailable("storageBuffer")===!1&&this.node.isPBO===!0&&e.setupPBO(this.node),super.setup(e)}generate(e,t){let n;const r=e.context.assign;if(e.isAvailable("storageBuffer")===!1?this.node.isPBO===!0&&r!==!0&&(this.node.value.isInstancedBufferAttribute||e.shaderStage!=="compute")?n=e.generatePBO(this):n=this.node.build(e):n=super.generate(e),r!==!0){const s=this.getNodeType(e);n=e.format(n,s,t)}return n}}const vie=lt(gie);class _ie extends sE{static get type(){return"StorageBufferNode"}constructor(e,t=null,n=0){t===null&&(e.isStorageBufferAttribute||e.isStorageInstancedBufferAttribute)&&(t=LP(e.itemSize),n=e.count),super(e,t,n),this.isStorageBufferNode=!0,this.access=sa.READ_WRITE,this.isAtomic=!1,this.isPBO=!1,this._attribute=null,this._varying=null,this.global=!0,e.isStorageBufferAttribute!==!0&&e.isStorageInstancedBufferAttribute!==!0&&(e.isInstancedBufferAttribute?e.isStorageInstancedBufferAttribute=!0:e.isStorageBufferAttribute=!0)}getHash(e){if(this.bufferCount===0){let t=e.globalCache.getData(this.value);return t===void 0&&(t={node:this},e.globalCache.setData(this.value,t)),t.node.uuid}return this.uuid}getInputType(){return this.value.isIndirectStorageBufferAttribute?"indirectStorageBuffer":"storageBuffer"}element(e){return vie(this,e)}setPBO(e){return this.isPBO=e,this}getPBO(){return this.isPBO}setAccess(e){return this.access=e,this}toReadOnly(){return this.setAccess(sa.READ_ONLY)}setAtomic(e){return this.isAtomic=e,this}toAtomic(){return this.setAtomic(!0)}getAttributeData(){return this._attribute===null&&(this._attribute=$g(this.value),this._varying=ro(this._attribute)),{attribute:this._attribute,varying:this._varying}}getNodeType(e){if(e.isAvailable("storageBuffer")||e.isAvailable("indirectStorageBuffer"))return super.getNodeType(e);const{attribute:t}=this.getAttributeData();return t.getNodeType(e)}generate(e){if(e.isAvailable("storageBuffer")||e.isAvailable("indirectStorageBuffer"))return super.generate(e);const{attribute:t,varying:n}=this.getAttributeData(),r=n.build(e);return e.registerTransform(r,t),r}}const Qy=(i,e=null,t=0)=>dt(new _ie(i,e,t)),yie=(i,e,t)=>(console.warn('THREE.TSL: "storageObject()" is deprecated. Use "storage().setPBO( true )" instead.'),Qy(i,e,t).setPBO(!0)),xie=(i,e="float")=>{const t=BP(e),n=UP(e),r=new mie(i,t,n);return Qy(r,e,i)},bie=(i,e="float")=>{const t=BP(e),n=UP(e),r=new t_(i,t,n);return Qy(r,e,i)};class Sie extends y9{static get type(){return"VertexColorNode"}constructor(e=0){super(null,"vec4"),this.isVertexColorNode=!0,this.index=e}getAttributeName(){const e=this.index;return"color"+(e>0?e:"")}generate(e){const t=this.getAttributeName(e),n=e.hasGeometryAttribute(t);let r;return n===!0?r=super.generate(e):r=e.generateConst(this.nodeType,new Pn(1,1,1,1)),r}serialize(e){super.serialize(e),e.index=this.index}deserialize(e){super.deserialize(e),this.index=e.index}}const Tie=i=>dt(new Sie(i));class wie extends Mn{static get type(){return"PointUVNode"}constructor(){super("vec2"),this.isPointUVNode=!0}generate(){return"vec2( gl_PointCoord.x, 1.0 - gl_PointCoord.y )"}}const Mie=Gt(wie),fm=new la,aS=new kn;class Ya extends Mn{static get type(){return"SceneNode"}constructor(e=Ya.BACKGROUND_BLURRINESS,t=null){super(),this.scope=e,this.scene=t}setup(e){const t=this.scope,n=this.scene!==null?this.scene:e.scene;let r;return t===Ya.BACKGROUND_BLURRINESS?r=ji("backgroundBlurriness","float",n):t===Ya.BACKGROUND_INTENSITY?r=ji("backgroundIntensity","float",n):t===Ya.BACKGROUND_ROTATION?r=gn("mat4").label("backgroundRotation").setGroup(Rn).onRenderUpdate(()=>{const s=n.background;return s!==null&&s.isTexture&&s.mapping!==Lw?(fm.copy(n.backgroundRotation),fm.x*=-1,fm.y*=-1,fm.z*=-1,aS.makeRotationFromEuler(fm)):aS.identity(),aS}):console.error("THREE.SceneNode: Unknown scope:",t),r}}Ya.BACKGROUND_BLURRINESS="backgroundBlurriness";Ya.BACKGROUND_INTENSITY="backgroundIntensity";Ya.BACKGROUND_ROTATION="backgroundRotation";const oB=Gt(Ya,Ya.BACKGROUND_BLURRINESS),ew=Gt(Ya,Ya.BACKGROUND_INTENSITY),lB=Gt(Ya,Ya.BACKGROUND_ROTATION);class Eie extends yu{static get type(){return"StorageTextureNode"}constructor(e,t,n=null){super(e,t),this.storeNode=n,this.isStorageTextureNode=!0,this.access=sa.WRITE_ONLY}getInputType(){return"storageTexture"}setup(e){super.setup(e);const t=e.getNodeProperties(this);t.storeNode=this.storeNode}setAccess(e){return this.access=e,this}generate(e,t){let n;return this.storeNode!==null?n=this.generateStore(e):n=super.generate(e,t),n}toReadWrite(){return this.setAccess(sa.READ_WRITE)}toReadOnly(){return this.setAccess(sa.READ_ONLY)}toWriteOnly(){return this.setAccess(sa.WRITE_ONLY)}generateStore(e){const t=e.getNodeProperties(this),{uvNode:n,storeNode:r}=t,s=super.generate(e,"property"),a=n.build(e,"uvec2"),l=r.build(e,"vec4"),u=e.generateTextureStore(e,s,a,l);e.addLineFlowCode(u,this)}}const uB=lt(Eie),Cie=(i,e,t)=>{const n=uB(i,e,t);return t!==null&&n.append(),n};class Rie extends jy{static get type(){return"UserDataNode"}constructor(e,t,n=null){super(e,t,n),this.userData=n}updateReference(e){return this.reference=this.userData!==null?this.userData:e.object.userData,this.reference}}const Nie=(i,e,t)=>dt(new Rie(i,e,t)),sN=new WeakMap;class Die extends Zr{static get type(){return"VelocityNode"}constructor(){super("vec2"),this.projectionMatrix=null,this.updateType=jn.OBJECT,this.updateAfterType=jn.OBJECT,this.previousModelWorldMatrix=gn(new kn),this.previousProjectionMatrix=gn(new kn).setGroup(Rn),this.previousCameraViewMatrix=gn(new kn)}setProjectionMatrix(e){this.projectionMatrix=e}update({frameId:e,camera:t,object:n}){const r=aN(n);this.previousModelWorldMatrix.value.copy(r);const s=cB(t);s.frameId!==e&&(s.frameId=e,s.previousProjectionMatrix===void 0?(s.previousProjectionMatrix=new kn,s.previousCameraViewMatrix=new kn,s.currentProjectionMatrix=new kn,s.currentCameraViewMatrix=new kn,s.previousProjectionMatrix.copy(this.projectionMatrix||t.projectionMatrix),s.previousCameraViewMatrix.copy(t.matrixWorldInverse)):(s.previousProjectionMatrix.copy(s.currentProjectionMatrix),s.previousCameraViewMatrix.copy(s.currentCameraViewMatrix)),s.currentProjectionMatrix.copy(this.projectionMatrix||t.projectionMatrix),s.currentCameraViewMatrix.copy(t.matrixWorldInverse),this.previousProjectionMatrix.value.copy(s.previousProjectionMatrix),this.previousCameraViewMatrix.value.copy(s.previousCameraViewMatrix))}updateAfter({object:e}){aN(e).copy(e.matrixWorld)}setup(){const e=this.projectionMatrix===null?_A:gn(this.projectionMatrix),t=this.previousCameraViewMatrix.mul(this.previousModelWorldMatrix),n=e.mul(Q0).mul(Gr),r=this.previousProjectionMatrix.mul(t).mul(ey),s=n.xy.div(n.w),a=r.xy.div(r.w);return Ti(s,a)}}function cB(i){let e=sN.get(i);return e===void 0&&(e={},sN.set(i,e)),e}function aN(i,e=0){const t=cB(i);let n=t[e];return n===void 0&&(t[e]=n=new kn),n}const Pie=Gt(Die),hB=je(([i,e])=>to(1,i.oneMinus().div(e)).oneMinus()).setLayout({name:"blendBurn",type:"vec3",inputs:[{name:"base",type:"vec3"},{name:"blend",type:"vec3"}]}),fB=je(([i,e])=>to(i.div(e.oneMinus()),1)).setLayout({name:"blendDodge",type:"vec3",inputs:[{name:"base",type:"vec3"},{name:"blend",type:"vec3"}]}),AB=je(([i,e])=>i.oneMinus().mul(e.oneMinus()).oneMinus()).setLayout({name:"blendScreen",type:"vec3",inputs:[{name:"base",type:"vec3"},{name:"blend",type:"vec3"}]}),dB=je(([i,e])=>Fi(i.mul(2).mul(e),i.oneMinus().mul(2).mul(e.oneMinus()).oneMinus(),Fy(.5,i))).setLayout({name:"blendOverlay",type:"vec3",inputs:[{name:"base",type:"vec3"},{name:"blend",type:"vec3"}]}),Lie=je(([i,e])=>{const t=e.a.add(i.a.mul(e.a.oneMinus()));return dn(e.rgb.mul(e.a).add(i.rgb.mul(i.a).mul(e.a.oneMinus())).div(t),t)}).setLayout({name:"blendColor",type:"vec4",inputs:[{name:"base",type:"vec4"},{name:"blend",type:"vec4"}]}),Uie=(...i)=>(console.warn('THREE.TSL: "burn" has been renamed. Use "blendBurn" instead.'),hB(i)),Bie=(...i)=>(console.warn('THREE.TSL: "dodge" has been renamed. Use "blendDodge" instead.'),fB(i)),Oie=(...i)=>(console.warn('THREE.TSL: "screen" has been renamed. Use "blendScreen" instead.'),AB(i)),Iie=(...i)=>(console.warn('THREE.TSL: "overlay" has been renamed. Use "blendOverlay" instead.'),dB(i)),Fie=je(([i])=>wE(i.rgb)),kie=je(([i,e=ve(1)])=>e.mix(wE(i.rgb),i.rgb)),zie=je(([i,e=ve(1)])=>{const t=Qr(i.r,i.g,i.b).div(3),n=i.r.max(i.g.max(i.b)),r=n.sub(t).mul(e).mul(-3);return Fi(i.rgb,n,r)}),Gie=je(([i,e=ve(1)])=>{const t=De(.57735,.57735,.57735),n=e.cos();return De(i.rgb.mul(n).add(t.cross(i.rgb).mul(e.sin()).add(t.mul(Xh(t,i.rgb).mul(n.oneMinus())))))}),wE=(i,e=De(ai.getLuminanceCoefficients(new ce)))=>Xh(i,e),qie=je(([i,e=De(1),t=De(0),n=De(1),r=ve(1),s=De(ai.getLuminanceCoefficients(new ce,Ro))])=>{const a=i.rgb.dot(De(s)),l=qr(i.rgb.mul(e).add(t),0).toVar(),u=l.pow(n).toVar();return ti(l.r.greaterThan(0),()=>{l.r.assign(u.r)}),ti(l.g.greaterThan(0),()=>{l.g.assign(u.g)}),ti(l.b.greaterThan(0),()=>{l.b.assign(u.b)}),l.assign(a.add(l.sub(a).mul(r))),dn(l.rgb,i.a)});class Vie extends Zr{static get type(){return"PosterizeNode"}constructor(e,t){super(),this.sourceNode=e,this.stepsNode=t}setup(){const{sourceNode:e,stepsNode:t}=this;return e.mul(t).floor().div(t)}}const Hie=lt(Vie),jie=new ft;class pB extends yu{static get type(){return"PassTextureNode"}constructor(e,t){super(t),this.passNode=e,this.setUpdateMatrix(!1)}setup(e){return e.object.isQuadMesh&&this.passNode.build(e),super.setup(e)}clone(){return new this.constructor(this.passNode,this.value)}}class oN extends pB{static get type(){return"PassMultipleTextureNode"}constructor(e,t,n=!1){super(e,null),this.textureName=t,this.previousTexture=n}updateTexture(){this.value=this.previousTexture?this.passNode.getPreviousTexture(this.textureName):this.passNode.getTexture(this.textureName)}setup(e){return this.updateTexture(),super.setup(e)}clone(){return new this.constructor(this.passNode,this.textureName,this.previousTexture)}}class Tu extends Zr{static get type(){return"PassNode"}constructor(e,t,n,r={}){super("vec4"),this.scope=e,this.scene=t,this.camera=n,this.options=r,this._pixelRatio=1,this._width=1,this._height=1;const s=new qc;s.isRenderTargetTexture=!0,s.name="depth";const a=new Wh(this._width*this._pixelRatio,this._height*this._pixelRatio,{type:Gs,...r});a.texture.name="output",a.depthTexture=s,this.renderTarget=a,this._textures={output:a.texture,depth:s},this._textureNodes={},this._linearDepthNodes={},this._viewZNodes={},this._previousTextures={},this._previousTextureNodes={},this._cameraNear=gn(0),this._cameraFar=gn(0),this._mrt=null,this.isPassNode=!0,this.updateBeforeType=jn.FRAME}setMRT(e){return this._mrt=e,this}getMRT(){return this._mrt}isGlobal(){return!0}getTexture(e){let t=this._textures[e];return t===void 0&&(t=this.renderTarget.texture.clone(),t.name=e,this._textures[e]=t,this.renderTarget.textures.push(t)),t}getPreviousTexture(e){let t=this._previousTextures[e];return t===void 0&&(t=this.getTexture(e).clone(),this._previousTextures[e]=t),t}toggleTexture(e){const t=this._previousTextures[e];if(t!==void 0){const n=this._textures[e],r=this.renderTarget.textures.indexOf(n);this.renderTarget.textures[r]=t,this._textures[e]=t,this._previousTextures[e]=n,this._textureNodes[e].updateTexture(),this._previousTextureNodes[e].updateTexture()}}getTextureNode(e="output"){let t=this._textureNodes[e];return t===void 0&&(t=dt(new oN(this,e)),t.updateTexture(),this._textureNodes[e]=t),t}getPreviousTextureNode(e="output"){let t=this._previousTextureNodes[e];return t===void 0&&(this._textureNodes[e]===void 0&&this.getTextureNode(e),t=dt(new oN(this,e,!0)),t.updateTexture(),this._previousTextureNodes[e]=t),t}getViewZNode(e="depth"){let t=this._viewZNodes[e];if(t===void 0){const n=this._cameraNear,r=this._cameraFar;this._viewZNodes[e]=t=AE(this.getTextureNode(e),n,r)}return t}getLinearDepthNode(e="depth"){let t=this._linearDepthNodes[e];if(t===void 0){const n=this._cameraNear,r=this._cameraFar,s=this.getViewZNode(e);this._linearDepthNodes[e]=t=s0(s,n,r)}return t}setup({renderer:e}){return this.renderTarget.samples=this.options.samples===void 0?e.samples:this.options.samples,e.backend.isWebGLBackend===!0&&(this.renderTarget.samples=0),this.scope===Tu.COLOR?this.getTextureNode():this.getLinearDepthNode()}updateBefore(e){const{renderer:t}=e,{scene:n,camera:r}=this;this._pixelRatio=t.getPixelRatio();const s=t.getSize(jie);this.setSize(s.width,s.height);const a=t.getRenderTarget(),l=t.getMRT();this._cameraNear.value=r.near,this._cameraFar.value=r.far;for(const u in this._previousTextures)this.toggleTexture(u);t.setRenderTarget(this.renderTarget),t.setMRT(this._mrt),t.render(n,r),t.setRenderTarget(a),t.setMRT(l)}setSize(e,t){this._width=e,this._height=t;const n=this._width*this._pixelRatio,r=this._height*this._pixelRatio;this.renderTarget.setSize(n,r)}setPixelRatio(e){this._pixelRatio=e,this.setSize(this._width,this._height)}dispose(){this.renderTarget.dispose()}}Tu.COLOR="color";Tu.DEPTH="depth";const Wie=(i,e,t)=>dt(new Tu(Tu.COLOR,i,e,t)),$ie=(i,e)=>dt(new pB(i,e)),Xie=(i,e,t)=>dt(new Tu(Tu.DEPTH,i,e,t));class Yie extends Tu{static get type(){return"ToonOutlinePassNode"}constructor(e,t,n,r,s){super(Tu.COLOR,e,t),this.colorNode=n,this.thicknessNode=r,this.alphaNode=s,this._materialCache=new WeakMap}updateBefore(e){const{renderer:t}=e,n=t.getRenderObjectFunction();t.setRenderObjectFunction((r,s,a,l,u,h,g,v)=>{if((u.isMeshToonMaterial||u.isMeshToonNodeMaterial)&&u.wireframe===!1){const x=this._getOutlineMaterial(u);t.renderObject(r,s,a,l,x,h,g,v)}t.renderObject(r,s,a,l,u,h,g,v)}),super.updateBefore(e),t.setRenderObjectFunction(n)}_createMaterial(){const e=new Vr;e.isMeshToonOutlineMaterial=!0,e.name="Toon_Outline",e.side=hr;const t=no.negate(),n=_A.mul(Q0),r=ve(1),s=n.mul(dn(Gr,1)),a=n.mul(dn(Gr.add(t),1)),l=Fc(s.sub(a));return e.vertexNode=s.add(l.mul(this.thicknessNode).mul(s.w).mul(r)),e.colorNode=dn(this.colorNode,this.alphaNode),e}_getOutlineMaterial(e){let t=this._materialCache.get(e);return t===void 0&&(t=this._createMaterial(),this._materialCache.set(e,t)),t}}const Qie=(i,e,t=new an(0,0,0),n=.003,r=1)=>dt(new Yie(i,e,dt(t),dt(n),dt(r))),mB=je(([i,e])=>i.mul(e).clamp()).setLayout({name:"linearToneMapping",type:"vec3",inputs:[{name:"color",type:"vec3"},{name:"exposure",type:"float"}]}),gB=je(([i,e])=>(i=i.mul(e),i.div(i.add(1)).clamp())).setLayout({name:"reinhardToneMapping",type:"vec3",inputs:[{name:"color",type:"vec3"},{name:"exposure",type:"float"}]}),vB=je(([i,e])=>{i=i.mul(e),i=i.sub(.004).max(0);const t=i.mul(i.mul(6.2).add(.5)),n=i.mul(i.mul(6.2).add(1.7)).add(.06);return t.div(n).pow(2.2)}).setLayout({name:"cineonToneMapping",type:"vec3",inputs:[{name:"color",type:"vec3"},{name:"exposure",type:"float"}]}),Kie=je(([i])=>{const e=i.mul(i.add(.0245786)).sub(90537e-9),t=i.mul(i.add(.432951).mul(.983729)).add(.238081);return e.div(t)}),_B=je(([i,e])=>{const t=ha(.59719,.35458,.04823,.076,.90834,.01566,.0284,.13383,.83777),n=ha(1.60475,-.53108,-.07367,-.10208,1.10813,-.00605,-.00327,-.07276,1.07602);return i=i.mul(e).div(.6),i=t.mul(i),i=Kie(i),i=n.mul(i),i.clamp()}).setLayout({name:"acesFilmicToneMapping",type:"vec3",inputs:[{name:"color",type:"vec3"},{name:"exposure",type:"float"}]}),Zie=ha(De(1.6605,-.1246,-.0182),De(-.5876,1.1329,-.1006),De(-.0728,-.0083,1.1187)),Jie=ha(De(.6274,.0691,.0164),De(.3293,.9195,.088),De(.0433,.0113,.8956)),ere=je(([i])=>{const e=De(i).toVar(),t=De(e.mul(e)).toVar(),n=De(t.mul(t)).toVar();return ve(15.5).mul(n.mul(t)).sub(Wn(40.14,n.mul(e))).add(Wn(31.96,n).sub(Wn(6.868,t.mul(e))).add(Wn(.4298,t).add(Wn(.1191,e).sub(.00232))))}),yB=je(([i,e])=>{const t=De(i).toVar(),n=ha(De(.856627153315983,.137318972929847,.11189821299995),De(.0951212405381588,.761241990602591,.0767994186031903),De(.0482516061458583,.101439036467562,.811302368396859)),r=ha(De(1.1271005818144368,-.1413297634984383,-.14132976349843826),De(-.11060664309660323,1.157823702216272,-.11060664309660294),De(-.016493938717834573,-.016493938717834257,1.2519364065950405)),s=ve(-12.47393),a=ve(4.026069);return t.mulAssign(e),t.assign(Jie.mul(t)),t.assign(n.mul(t)),t.assign(qr(t,1e-10)),t.assign(cu(t)),t.assign(t.sub(s).div(a.sub(s))),t.assign(vu(t,0,1)),t.assign(ere(t)),t.assign(r.mul(t)),t.assign(Cl(qr(De(0),t),De(2.2))),t.assign(Zie.mul(t)),t.assign(vu(t,0,1)),t}).setLayout({name:"agxToneMapping",type:"vec3",inputs:[{name:"color",type:"vec3"},{name:"exposure",type:"float"}]}),xB=je(([i,e])=>{const t=ve(.76),n=ve(.15);i=i.mul(e);const r=to(i.r,to(i.g,i.b)),s=zs(r.lessThan(.08),r.sub(Wn(6.25,r.mul(r))),.04);i.subAssign(s);const a=qr(i.r,qr(i.g,i.b));ti(a.lessThan(t),()=>i);const l=Ti(1,t),u=Ti(1,l.mul(l).div(a.add(l.sub(t))));i.mulAssign(u.div(a));const h=Ti(1,Dl(1,n.mul(a.sub(u)).add(1)));return Fi(i,De(u),h)}).setLayout({name:"neutralToneMapping",type:"vec3",inputs:[{name:"color",type:"vec3"},{name:"exposure",type:"float"}]});class rs extends Mn{static get type(){return"CodeNode"}constructor(e="",t=[],n=""){super("code"),this.isCodeNode=!0,this.code=e,this.includes=t,this.language=n}isGlobal(){return!0}setIncludes(e){return this.includes=e,this}getIncludes(){return this.includes}generate(e){const t=this.getIncludes(e);for(const r of t)r.build(e);const n=e.getCodeFromNode(this,this.getNodeType(e));return n.code=this.code,n.code}serialize(e){super.serialize(e),e.code=this.code,e.language=this.language}deserialize(e){super.deserialize(e),this.code=e.code,this.language=e.language}}const Ky=lt(rs),tre=(i,e)=>Ky(i,e,"js"),nre=(i,e)=>Ky(i,e,"wgsl"),ire=(i,e)=>Ky(i,e,"glsl");class bB extends rs{static get type(){return"FunctionNode"}constructor(e="",t=[],n=""){super(e,t,n)}getNodeType(e){return this.getNodeFunction(e).type}getInputs(e){return this.getNodeFunction(e).inputs}getNodeFunction(e){const t=e.getDataFromNode(this);let n=t.nodeFunction;return n===void 0&&(n=e.parser.parseFunction(this.code),t.nodeFunction=n),n}generate(e,t){super.generate(e);const n=this.getNodeFunction(e),r=n.name,s=n.type,a=e.getCodeFromNode(this,s);r!==""&&(a.name=r);const l=e.getPropertyName(a),u=this.getNodeFunction(e).getCode(l);return a.code=u+` -`,t==="property"?l:e.format(`${l}()`,s,t)}}const SB=(i,e=[],t="")=>{for(let s=0;sn.call(...s);return r.functionNode=n,r},rre=(i,e)=>SB(i,e,"glsl"),sre=(i,e)=>SB(i,e,"wgsl");class are extends Mn{static get type(){return"ScriptableValueNode"}constructor(e=null){super(),this._value=e,this._cache=null,this.inputType=null,this.outputType=null,this.events=new zc,this.isScriptableValueNode=!0}get isScriptableOutputNode(){return this.outputType!==null}set value(e){this._value!==e&&(this._cache&&this.inputType==="URL"&&this.value.value instanceof ArrayBuffer&&(URL.revokeObjectURL(this._cache),this._cache=null),this._value=e,this.events.dispatchEvent({type:"change"}),this.refresh())}get value(){return this._value}refresh(){this.events.dispatchEvent({type:"refresh"})}getValue(){const e=this.value;if(e&&this._cache===null&&this.inputType==="URL"&&e.value instanceof ArrayBuffer)this._cache=URL.createObjectURL(new Blob([e.value]));else if(e&&e.value!==null&&e.value!==void 0&&((this.inputType==="URL"||this.inputType==="String")&&typeof e.value=="string"||this.inputType==="Number"&&typeof e.value=="number"||this.inputType==="Vector2"&&e.value.isVector2||this.inputType==="Vector3"&&e.value.isVector3||this.inputType==="Vector4"&&e.value.isVector4||this.inputType==="Color"&&e.value.isColor||this.inputType==="Matrix3"&&e.value.isMatrix3||this.inputType==="Matrix4"&&e.value.isMatrix4))return e.value;return this._cache||e}getNodeType(e){return this.value&&this.value.isNode?this.value.getNodeType(e):"float"}setup(){return this.value&&this.value.isNode?this.value:ve()}serialize(e){super.serialize(e),this.value!==null?this.inputType==="ArrayBuffer"?e.value=FP(this.value):e.value=this.value?this.value.toJSON(e.meta).uuid:null:e.value=null,e.inputType=this.inputType,e.outputType=this.outputType}deserialize(e){super.deserialize(e);let t=null;e.value!==null&&(e.inputType==="ArrayBuffer"?t=kP(e.value):e.inputType==="Texture"?t=e.meta.textures[e.value]:t=e.meta.nodes[e.value]||null),this.value=t,this.inputType=e.inputType,this.outputType=e.outputType}}const n_=lt(are);class TB extends Map{get(e,t=null,...n){if(this.has(e))return super.get(e);if(t!==null){const r=t(...n);return this.set(e,r),r}}}class ore{constructor(e){this.scriptableNode=e}get parameters(){return this.scriptableNode.parameters}get layout(){return this.scriptableNode.getLayout()}getInputLayout(e){return this.scriptableNode.getInputLayout(e)}get(e){const t=this.parameters[e];return t?t.getValue():null}}const i_=new TB;class lre extends Mn{static get type(){return"ScriptableNode"}constructor(e=null,t={}){super(),this.codeNode=e,this.parameters=t,this._local=new TB,this._output=n_(),this._outputs={},this._source=this.source,this._method=null,this._object=null,this._value=null,this._needsOutputUpdate=!0,this.onRefresh=this.onRefresh.bind(this),this.isScriptableNode=!0}get source(){return this.codeNode?this.codeNode.code:""}setLocal(e,t){return this._local.set(e,t)}getLocal(e){return this._local.get(e)}onRefresh(){this._refresh()}getInputLayout(e){for(const t of this.getLayout())if(t.inputType&&(t.id===e||t.name===e))return t}getOutputLayout(e){for(const t of this.getLayout())if(t.outputType&&(t.id===e||t.name===e))return t}setOutput(e,t){const n=this._outputs;return n[e]===void 0?n[e]=n_(t):n[e].value=t,this}getOutput(e){return this._outputs[e]}getParameter(e){return this.parameters[e]}setParameter(e,t){const n=this.parameters;return t&&t.isScriptableNode?(this.deleteParameter(e),n[e]=t,n[e].getDefaultOutput().events.addEventListener("refresh",this.onRefresh)):t&&t.isScriptableValueNode?(this.deleteParameter(e),n[e]=t,n[e].events.addEventListener("refresh",this.onRefresh)):n[e]===void 0?(n[e]=n_(t),n[e].events.addEventListener("refresh",this.onRefresh)):n[e].value=t,this}getValue(){return this.getDefaultOutput().getValue()}deleteParameter(e){let t=this.parameters[e];return t&&(t.isScriptableNode&&(t=t.getDefaultOutput()),t.events.removeEventListener("refresh",this.onRefresh)),this}clearParameters(){for(const e of Object.keys(this.parameters))this.deleteParameter(e);return this.needsUpdate=!0,this}call(e,...t){const r=this.getObject()[e];if(typeof r=="function")return r(...t)}async callAsync(e,...t){const r=this.getObject()[e];if(typeof r=="function")return r.constructor.name==="AsyncFunction"?await r(...t):r(...t)}getNodeType(e){return this.getDefaultOutputNode().getNodeType(e)}refresh(e=null){e!==null?this.getOutput(e).refresh():this._refresh()}getObject(){if(this.needsUpdate&&this.dispose(),this._object!==null)return this._object;const e=()=>this.refresh(),t=(h,g)=>this.setOutput(h,g),n=new ore(this),r=i_.get("THREE"),s=i_.get("TSL"),a=this.getMethod(),l=[n,this._local,i_,e,t,r,s];this._object=a(...l);const u=this._object.layout;if(u&&(u.cache===!1&&this._local.clear(),this._output.outputType=u.outputType||null,Array.isArray(u.elements)))for(const h of u.elements){const g=h.id||h.name;h.inputType&&(this.getParameter(g)===void 0&&this.setParameter(g,null),this.getParameter(g).inputType=h.inputType),h.outputType&&(this.getOutput(g)===void 0&&this.setOutput(g,null),this.getOutput(g).outputType=h.outputType)}return this._object}deserialize(e){super.deserialize(e);for(const t in this.parameters){let n=this.parameters[t];n.isScriptableNode&&(n=n.getDefaultOutput()),n.events.addEventListener("refresh",this.onRefresh)}}getLayout(){return this.getObject().layout}getDefaultOutputNode(){const e=this.getDefaultOutput().value;return e&&e.isNode?e:ve()}getDefaultOutput(){return this._exec()._output}getMethod(){if(this.needsUpdate&&this.dispose(),this._method!==null)return this._method;const e=["parameters","local","global","refresh","setOutput","THREE","TSL"],n=["layout","init","main","dispose"].join(", "),r="var "+n+`; var output = {}; -`,s=` -return { ...output, `+n+" };",a=r+this.codeNode.code+s;return this._method=new Function(...e,a),this._method}dispose(){this._method!==null&&(this._object&&typeof this._object.dispose=="function"&&this._object.dispose(),this._method=null,this._object=null,this._source=null,this._value=null,this._needsOutputUpdate=!0,this._output.value=null,this._outputs={})}setup(){return this.getDefaultOutputNode()}getCacheKey(e){const t=[DP(this.source),this.getDefaultOutputNode().getCacheKey(e)];for(const n in this.parameters)t.push(this.parameters[n].getCacheKey(e));return Ny(t)}set needsUpdate(e){e===!0&&this.dispose()}get needsUpdate(){return this.source!==this._source}_exec(){return this.codeNode===null?this:(this._needsOutputUpdate===!0&&(this._value=this.call("main"),this._needsOutputUpdate=!1),this._output.value=this._value,this)}_refresh(){this.needsUpdate=!0,this._exec(),this._output.refresh()}}const ure=lt(lre);function wB(i){let e;const t=i.context.getViewZ;return t!==void 0&&(e=t(this)),(e||Xr.z).negate()}const ME=je(([i,e],t)=>{const n=wB(t);return kc(i,e,n)}),EE=je(([i],e)=>{const t=wB(e);return i.mul(i,t,t).negate().exp().oneMinus()}),Ng=je(([i,e])=>dn(e.toFloat().mix(Eg.rgb,i.toVec3()),Eg.a));function cre(i,e,t){return console.warn('THREE.TSL: "rangeFog( color, near, far )" is deprecated. Use "fog( color, rangeFogFactor( near, far ) )" instead.'),Ng(i,ME(e,t))}function hre(i,e){return console.warn('THREE.TSL: "densityFog( color, density )" is deprecated. Use "fog( color, densityFogFactor( density ) )" instead.'),Ng(i,EE(e))}let Rf=null,Nf=null;class fre extends Mn{static get type(){return"RangeNode"}constructor(e=ve(),t=ve()){super(),this.minNode=e,this.maxNode=t}getVectorLength(e){const t=e.getTypeLength(Uh(this.minNode.value)),n=e.getTypeLength(Uh(this.maxNode.value));return t>n?t:n}getNodeType(e){return e.object.count>1?e.getTypeFromLength(this.getVectorLength(e)):"float"}setup(e){const t=e.object;let n=null;if(t.count>1){const r=this.minNode.value,s=this.maxNode.value,a=e.getTypeLength(Uh(r)),l=e.getTypeLength(Uh(s));Rf=Rf||new Pn,Nf=Nf||new Pn,Rf.setScalar(0),Nf.setScalar(0),a===1?Rf.setScalar(r):r.isColor?Rf.set(r.r,r.g,r.b,1):Rf.set(r.x,r.y,r.z||0,r.w||0),l===1?Nf.setScalar(s):s.isColor?Nf.set(s.r,s.g,s.b,1):Nf.set(s.x,s.y,s.z||0,s.w||0);const u=4,h=u*t.count,g=new Float32Array(h);for(let x=0;xdt(new dre(i,e)),pre=Zy("numWorkgroups","uvec3"),mre=Zy("workgroupId","uvec3"),gre=Zy("localId","uvec3"),vre=Zy("subgroupSize","uint");class _re extends Mn{constructor(e){super(),this.scope=e}generate(e){const{scope:t}=this,{renderer:n}=e;n.backend.isWebGLBackend===!0?e.addFlowCode(` // ${t}Barrier -`):e.addLineFlowCode(`${t}Barrier()`,this)}}const CE=lt(_re),yre=()=>CE("workgroup").append(),xre=()=>CE("storage").append(),bre=()=>CE("texture").append();class Sre extends vA{constructor(e,t){super(e,t),this.isWorkgroupInfoElementNode=!0}generate(e,t){let n;const r=e.context.assign;if(n=super.generate(e),r!==!0){const s=this.getNodeType(e);n=e.format(n,s,t)}return n}}class Tre extends Mn{constructor(e,t,n=0){super(t),this.bufferType=t,this.bufferCount=n,this.isWorkgroupInfoNode=!0,this.elementType=t,this.scope=e}label(e){return this.name=e,this}setScope(e){return this.scope=e,this}getElementType(){return this.elementType}getInputType(){return`${this.scope}Array`}element(e){return dt(new Sre(this,e))}generate(e){return e.getScopedArray(this.name||`${this.scope}Array_${this.id}`,this.scope.toLowerCase(),this.bufferType,this.bufferCount)}}const wre=(i,e)=>dt(new Tre("Workgroup",i,e));class Ds extends Zr{static get type(){return"AtomicFunctionNode"}constructor(e,t,n,r=null){super("uint"),this.method=e,this.pointerNode=t,this.valueNode=n,this.storeNode=r}getInputType(e){return this.pointerNode.getNodeType(e)}getNodeType(e){return this.getInputType(e)}generate(e){const t=this.method,n=this.getNodeType(e),r=this.getInputType(e),s=this.pointerNode,a=this.valueNode,l=[];l.push(`&${s.build(e,r)}`),l.push(a.build(e,r));const u=`${e.getMethod(t,n)}( ${l.join(", ")} )`;if(this.storeNode!==null){const h=this.storeNode.build(e,r);e.addLineFlowCode(`${h} = ${u}`,this)}else e.addLineFlowCode(u,this)}}Ds.ATOMIC_LOAD="atomicLoad";Ds.ATOMIC_STORE="atomicStore";Ds.ATOMIC_ADD="atomicAdd";Ds.ATOMIC_SUB="atomicSub";Ds.ATOMIC_MAX="atomicMax";Ds.ATOMIC_MIN="atomicMin";Ds.ATOMIC_AND="atomicAnd";Ds.ATOMIC_OR="atomicOr";Ds.ATOMIC_XOR="atomicXor";const Mre=lt(Ds),jc=(i,e,t,n=null)=>{const r=Mre(i,e,t,n);return r.append(),r},Ere=(i,e,t=null)=>jc(Ds.ATOMIC_STORE,i,e,t),Cre=(i,e,t=null)=>jc(Ds.ATOMIC_ADD,i,e,t),Rre=(i,e,t=null)=>jc(Ds.ATOMIC_SUB,i,e,t),Nre=(i,e,t=null)=>jc(Ds.ATOMIC_MAX,i,e,t),Dre=(i,e,t=null)=>jc(Ds.ATOMIC_MIN,i,e,t),Pre=(i,e,t=null)=>jc(Ds.ATOMIC_AND,i,e,t),Lre=(i,e,t=null)=>jc(Ds.ATOMIC_OR,i,e,t),Ure=(i,e,t=null)=>jc(Ds.ATOMIC_XOR,i,e,t);let pv;function t1(i){pv=pv||new WeakMap;let e=pv.get(i);return e===void 0&&pv.set(i,e={}),e}function RE(i){const e=t1(i);return e.shadowMatrix||(e.shadowMatrix=gn("mat4").setGroup(Rn).onRenderUpdate(()=>(i.castShadow!==!0&&i.shadow.updateMatrices(i),i.shadow.matrix)))}function MB(i){const e=t1(i);if(e.projectionUV===void 0){const t=RE(i).mul(Nc);e.projectionUV=t.xyz.div(t.w)}return e.projectionUV}function NE(i){const e=t1(i);return e.position||(e.position=gn(new ce).setGroup(Rn).onRenderUpdate((t,n)=>n.value.setFromMatrixPosition(i.matrixWorld)))}function EB(i){const e=t1(i);return e.targetPosition||(e.targetPosition=gn(new ce).setGroup(Rn).onRenderUpdate((t,n)=>n.value.setFromMatrixPosition(i.target.matrixWorld)))}function Jy(i){const e=t1(i);return e.viewPosition||(e.viewPosition=gn(new ce).setGroup(Rn).onRenderUpdate(({camera:t},n)=>{n.value=n.value||new ce,n.value.setFromMatrixPosition(i.matrixWorld),n.value.applyMatrix4(t.matrixWorldInverse)}))}const DE=i=>so.transformDirection(NE(i).sub(EB(i))),Bre=i=>i.sort((e,t)=>e.id-t.id),Ore=(i,e)=>{for(const t of e)if(t.isAnalyticLightNode&&t.light.id===i)return t;return null},oS=new WeakMap;class PE extends Mn{static get type(){return"LightsNode"}constructor(){super("vec3"),this.totalDiffuseNode=De().toVar("totalDiffuse"),this.totalSpecularNode=De().toVar("totalSpecular"),this.outgoingLightNode=De().toVar("outgoingLight"),this._lights=[],this._lightNodes=null,this._lightNodesHash=null,this.global=!0}customCacheKey(){const e=[],t=this._lights;for(let n=0;n0}}const Ire=(i=[])=>dt(new PE).setLights(i);class Fre extends Mn{static get type(){return"ShadowBaseNode"}constructor(e){super(),this.light=e,this.updateBeforeType=jn.RENDER,this.isShadowBaseNode=!0}setupShadowPosition({material:e}){LE.assign(e.shadowPositionNode||Nc)}dispose(){this.updateBeforeType=jn.NONE}}const LE=De().toVar("shadowPositionWorld");function kre(i,e={}){return e.toneMapping=i.toneMapping,e.toneMappingExposure=i.toneMappingExposure,e.outputColorSpace=i.outputColorSpace,e.renderTarget=i.getRenderTarget(),e.activeCubeFace=i.getActiveCubeFace(),e.activeMipmapLevel=i.getActiveMipmapLevel(),e.renderObjectFunction=i.getRenderObjectFunction(),e.pixelRatio=i.getPixelRatio(),e.mrt=i.getMRT(),e.clearColor=i.getClearColor(e.clearColor||new an),e.clearAlpha=i.getClearAlpha(),e.autoClear=i.autoClear,e.scissorTest=i.getScissorTest(),e}function zre(i,e){return e=kre(i,e),i.setMRT(null),i.setRenderObjectFunction(null),i.setClearColor(0,1),i.autoClear=!0,e}function Gre(i,e){i.toneMapping=e.toneMapping,i.toneMappingExposure=e.toneMappingExposure,i.outputColorSpace=e.outputColorSpace,i.setRenderTarget(e.renderTarget,e.activeCubeFace,e.activeMipmapLevel),i.setRenderObjectFunction(e.renderObjectFunction),i.setPixelRatio(e.pixelRatio),i.setMRT(e.mrt),i.setClearColor(e.clearColor,e.clearAlpha),i.autoClear=e.autoClear,i.setScissorTest(e.scissorTest)}function qre(i,e={}){return e.background=i.background,e.backgroundNode=i.backgroundNode,e.overrideMaterial=i.overrideMaterial,e}function Vre(i,e){return e=qre(i,e),i.background=null,i.backgroundNode=null,i.overrideMaterial=null,e}function Hre(i,e){i.background=e.background,i.backgroundNode=e.backgroundNode,i.overrideMaterial=e.overrideMaterial}function jre(i,e,t){return t=zre(i,t),t=Vre(e,t),t}function Wre(i,e,t){Gre(i,t),Hre(e,t)}const lN=new WeakMap,$re=je(([i,e,t])=>{let n=Nc.sub(i).length();return n=n.sub(e).div(t.sub(e)),n=n.saturate(),n}),Xre=i=>{const e=i.shadow.camera,t=ji("near","float",e).setGroup(Rn),n=ji("far","float",e).setGroup(Rn),r=S9(i);return $re(r,t,n)},Yre=i=>{let e=lN.get(i);if(e===void 0){const t=i.isPointLight?Xre(i):null;e=new Vr,e.colorNode=dn(0,0,0,1),e.depthNode=t,e.isShadowNodeMaterial=!0,e.name="ShadowMaterial",e.fog=!1,lN.set(i,e)}return e},CB=je(({depthTexture:i,shadowCoord:e})=>Ai(i,e.xy).compare(e.z)),RB=je(({depthTexture:i,shadowCoord:e,shadow:t})=>{const n=(R,C)=>Ai(i,R).compare(C),r=ji("mapSize","vec2",t).setGroup(Rn),s=ji("radius","float",t).setGroup(Rn),a=wt(1).div(r),l=a.x.negate().mul(s),u=a.y.negate().mul(s),h=a.x.mul(s),g=a.y.mul(s),v=l.div(2),x=u.div(2),S=h.div(2),w=g.div(2);return Qr(n(e.xy.add(wt(l,u)),e.z),n(e.xy.add(wt(0,u)),e.z),n(e.xy.add(wt(h,u)),e.z),n(e.xy.add(wt(v,x)),e.z),n(e.xy.add(wt(0,x)),e.z),n(e.xy.add(wt(S,x)),e.z),n(e.xy.add(wt(l,0)),e.z),n(e.xy.add(wt(v,0)),e.z),n(e.xy,e.z),n(e.xy.add(wt(S,0)),e.z),n(e.xy.add(wt(h,0)),e.z),n(e.xy.add(wt(v,w)),e.z),n(e.xy.add(wt(0,w)),e.z),n(e.xy.add(wt(S,w)),e.z),n(e.xy.add(wt(l,g)),e.z),n(e.xy.add(wt(0,g)),e.z),n(e.xy.add(wt(h,g)),e.z)).mul(1/17)}),NB=je(({depthTexture:i,shadowCoord:e,shadow:t})=>{const n=(g,v)=>Ai(i,g).compare(v),r=ji("mapSize","vec2",t).setGroup(Rn),s=wt(1).div(r),a=s.x,l=s.y,u=e.xy,h=Hc(u.mul(r).add(.5));return u.subAssign(h.mul(s)),Qr(n(u,e.z),n(u.add(wt(a,0)),e.z),n(u.add(wt(0,l)),e.z),n(u.add(s),e.z),Fi(n(u.add(wt(a.negate(),0)),e.z),n(u.add(wt(a.mul(2),0)),e.z),h.x),Fi(n(u.add(wt(a.negate(),l)),e.z),n(u.add(wt(a.mul(2),l)),e.z),h.x),Fi(n(u.add(wt(0,l.negate())),e.z),n(u.add(wt(0,l.mul(2))),e.z),h.y),Fi(n(u.add(wt(a,l.negate())),e.z),n(u.add(wt(a,l.mul(2))),e.z),h.y),Fi(Fi(n(u.add(wt(a.negate(),l.negate())),e.z),n(u.add(wt(a.mul(2),l.negate())),e.z),h.x),Fi(n(u.add(wt(a.negate(),l.mul(2))),e.z),n(u.add(wt(a.mul(2),l.mul(2))),e.z),h.x),h.y)).mul(1/9)}),DB=je(({depthTexture:i,shadowCoord:e})=>{const t=ve(1).toVar(),n=Ai(i).sample(e.xy).rg,r=Fy(e.z,n.x);return ti(r.notEqual(ve(1)),()=>{const s=e.z.sub(n.x),a=qr(0,n.y.mul(n.y));let l=a.div(a.add(s.mul(s)));l=vu(Ti(l,.3).div(.95-.3)),t.assign(vu(qr(r,l)))}),t}),Qre=je(({samples:i,radius:e,size:t,shadowPass:n})=>{const r=ve(0).toVar(),s=ve(0).toVar(),a=i.lessThanEqual(ve(1)).select(ve(0),ve(2).div(i.sub(1))),l=i.lessThanEqual(ve(1)).select(ve(0),ve(-1));ki({start:xe(0),end:xe(i),type:"int",condition:"<"},({i:h})=>{const g=l.add(ve(h).mul(a)),v=n.sample(Qr(e1.xy,wt(0,g).mul(e)).div(t)).x;r.addAssign(v),s.addAssign(v.mul(v))}),r.divAssign(i),s.divAssign(i);const u=Cu(s.sub(r.mul(r)));return wt(r,u)}),Kre=je(({samples:i,radius:e,size:t,shadowPass:n})=>{const r=ve(0).toVar(),s=ve(0).toVar(),a=i.lessThanEqual(ve(1)).select(ve(0),ve(2).div(i.sub(1))),l=i.lessThanEqual(ve(1)).select(ve(0),ve(-1));ki({start:xe(0),end:xe(i),type:"int",condition:"<"},({i:h})=>{const g=l.add(ve(h).mul(a)),v=n.sample(Qr(e1.xy,wt(g,0).mul(e)).div(t));r.addAssign(v.x),s.addAssign(Qr(v.y.mul(v.y),v.x.mul(v.x)))}),r.divAssign(i),s.divAssign(i);const u=Cu(s.sub(r.mul(r)));return wt(r,u)}),Zre=[CB,RB,NB,DB];let lS;const mv=new TE;class PB extends Fre{static get type(){return"ShadowNode"}constructor(e,t=null){super(e),this.shadow=t||e.shadow,this.shadowMap=null,this.vsmShadowMapVertical=null,this.vsmShadowMapHorizontal=null,this.vsmMaterialVertical=null,this.vsmMaterialHorizontal=null,this._node=null,this.isShadowNode=!0}setupShadowFilter(e,{filterFn:t,depthTexture:n,shadowCoord:r,shadow:s}){const a=r.x.greaterThanEqual(0).and(r.x.lessThanEqual(1)).and(r.y.greaterThanEqual(0)).and(r.y.lessThanEqual(1)).and(r.z.lessThanEqual(1)),l=t({depthTexture:n,shadowCoord:r,shadow:s});return a.select(l,ve(1))}setupShadowCoord(e,t){const{shadow:n}=this,{renderer:r}=e,s=ji("bias","float",n).setGroup(Rn);let a=t,l;if(n.camera.isOrthographicCamera||r.logarithmicDepthBuffer!==!0)a=a.xyz.div(a.w),l=a.z,r.coordinateSystem===pu&&(l=l.mul(2).sub(1));else{const u=a.w;a=a.xy.div(u);const h=ji("near","float",n.camera).setGroup(Rn),g=ji("far","float",n.camera).setGroup(Rn);l=dE(u.negate(),h,g)}return a=De(a.x,a.y.oneMinus(),l.add(s)),a}getShadowFilterFn(e){return Zre[e]}setupShadow(e){const{renderer:t}=e,{light:n,shadow:r}=this,s=t.shadowMap.type,a=new qc(r.mapSize.width,r.mapSize.height);a.compareFunction=my;const l=e.createRenderTarget(r.mapSize.width,r.mapSize.height);if(l.depthTexture=a,r.camera.updateProjectionMatrix(),s===xo){a.compareFunction=null,this.vsmShadowMapVertical=e.createRenderTarget(r.mapSize.width,r.mapSize.height,{format:lA,type:Gs}),this.vsmShadowMapHorizontal=e.createRenderTarget(r.mapSize.width,r.mapSize.height,{format:lA,type:Gs});const E=Ai(a),B=Ai(this.vsmShadowMapVertical.texture),L=ji("blurSamples","float",r).setGroup(Rn),O=ji("radius","float",r).setGroup(Rn),z=ji("mapSize","vec2",r).setGroup(Rn);let G=this.vsmMaterialVertical||(this.vsmMaterialVertical=new Vr);G.fragmentNode=Qre({samples:L,radius:O,size:z,shadowPass:E}).context(e.getSharedContext()),G.name="VSMVertical",G=this.vsmMaterialHorizontal||(this.vsmMaterialHorizontal=new Vr),G.fragmentNode=Kre({samples:L,radius:O,size:z,shadowPass:B}).context(e.getSharedContext()),G.name="VSMHorizontal"}const u=ji("intensity","float",r).setGroup(Rn),h=ji("normalBias","float",r).setGroup(Rn),g=RE(n).mul(LE.add(Hy.mul(h))),v=this.setupShadowCoord(e,g),x=r.filterNode||this.getShadowFilterFn(t.shadowMap.type)||null;if(x===null)throw new Error("THREE.WebGPURenderer: Shadow map type not supported yet.");const S=s===xo?this.vsmShadowMapHorizontal.texture:a,w=this.setupShadowFilter(e,{filterFn:x,shadowTexture:l.texture,depthTexture:S,shadowCoord:v,shadow:r}),R=Ai(l.texture,v),C=Fi(1,w.rgb.mix(R,1),u.mul(R.a)).toVar();return this.shadowMap=l,this.shadow.map=l,C}setup(e){if(e.renderer.shadowMap.enabled!==!1)return je(()=>{let t=this._node;return this.setupShadowPosition(e),t===null&&(this._node=t=this.setupShadow(e)),e.material.shadowNode&&console.warn('THREE.NodeMaterial: ".shadowNode" is deprecated. Use ".castShadowNode" instead.'),e.material.receivedShadowNode&&(t=e.material.receivedShadowNode(t)),t})()}renderShadow(e){const{shadow:t,shadowMap:n,light:r}=this,{renderer:s,scene:a}=e;t.updateMatrices(r),n.setSize(t.mapSize.width,t.mapSize.height),s.render(a,t.camera)}updateShadow(e){const{shadowMap:t,light:n,shadow:r}=this,{renderer:s,scene:a,camera:l}=e,u=s.shadowMap.type,h=t.depthTexture.version;this._depthVersionCached=h,r.camera.layers.mask=l.layers.mask;const g=s.getRenderObjectFunction(),v=s.getMRT(),x=v?v.has("velocity"):!1;lS=jre(s,a,lS),a.overrideMaterial=Yre(n),s.setRenderObjectFunction((S,w,R,C,E,B,...L)=>{(S.castShadow===!0||S.receiveShadow&&u===xo)&&(x&&(IP(S).useVelocity=!0),S.onBeforeShadow(s,S,l,r.camera,C,w.overrideMaterial,B),s.renderObject(S,w,R,C,E,B,...L),S.onAfterShadow(s,S,l,r.camera,C,w.overrideMaterial,B))}),s.setRenderTarget(t),this.renderShadow(e),s.setRenderObjectFunction(g),n.isPointLight!==!0&&u===xo&&this.vsmPass(s),Wre(s,a,lS)}vsmPass(e){const{shadow:t}=this;this.vsmShadowMapVertical.setSize(t.mapSize.width,t.mapSize.height),this.vsmShadowMapHorizontal.setSize(t.mapSize.width,t.mapSize.height),e.setRenderTarget(this.vsmShadowMapVertical),mv.material=this.vsmMaterialVertical,mv.render(e),e.setRenderTarget(this.vsmShadowMapHorizontal),mv.material=this.vsmMaterialHorizontal,mv.render(e)}dispose(){this.shadowMap.dispose(),this.shadowMap=null,this.vsmShadowMapVertical!==null&&(this.vsmShadowMapVertical.dispose(),this.vsmShadowMapVertical=null,this.vsmMaterialVertical.dispose(),this.vsmMaterialVertical=null),this.vsmShadowMapHorizontal!==null&&(this.vsmShadowMapHorizontal.dispose(),this.vsmShadowMapHorizontal=null,this.vsmMaterialHorizontal.dispose(),this.vsmMaterialHorizontal=null),super.dispose()}updateBefore(e){const{shadow:t}=this;(t.needsUpdate||t.autoUpdate)&&(this.updateShadow(e),this.shadowMap.depthTexture.version===this._depthVersionCached&&(t.needsUpdate=!1))}}const LB=(i,e)=>dt(new PB(i,e));class xA extends K0{static get type(){return"AnalyticLightNode"}constructor(e=null){super(),this.light=e,this.color=new an,this.colorNode=e&&e.colorNode||gn(this.color).setGroup(Rn),this.baseColorNode=null,this.shadowNode=null,this.shadowColorNode=null,this.isAnalyticLightNode=!0,this.updateType=jn.FRAME}customCacheKey(){return EM(this.light.id,this.light.castShadow?1:0)}getHash(){return this.light.uuid}setupShadowNode(){return LB(this.light)}setupShadow(e){const{renderer:t}=e;if(t.shadowMap.enabled===!1)return;let n=this.shadowColorNode;if(n===null){const r=this.light.shadow.shadowNode;let s;r!==void 0?s=dt(r):s=this.setupShadowNode(e),this.shadowNode=s,this.shadowColorNode=n=this.colorNode.mul(s),this.baseColorNode=this.colorNode}this.colorNode=n}setup(e){this.colorNode=this.baseColorNode||this.colorNode,this.light.castShadow?e.object.receiveShadow&&this.setupShadow(e):this.shadowNode!==null&&(this.shadowNode.dispose(),this.shadowNode=null,this.shadowColorNode=null)}update(){const{light:e}=this;this.color.copy(e.color).multiplyScalar(e.intensity)}}const UE=je(i=>{const{lightDistance:e,cutoffDistance:t,decayExponent:n}=i,r=e.pow(n).max(.01).reciprocal();return t.greaterThan(0).select(r.mul(e.div(t).pow4().oneMinus().clamp().pow2()),r)}),Jre=new an,Xl=je(([i,e])=>{const t=i.toVar(),n=ur(t),r=Dl(1,qr(n.x,qr(n.y,n.z)));n.mulAssign(r),t.mulAssign(r.mul(e.mul(2).oneMinus()));const s=wt(t.xy).toVar(),l=e.mul(1.5).oneMinus();return ti(n.z.greaterThanEqual(l),()=>{ti(t.z.greaterThan(0),()=>{s.x.assign(Ti(4,t.x))})}).ElseIf(n.x.greaterThanEqual(l),()=>{const u=Cg(t.x);s.x.assign(t.z.mul(u).add(u.mul(2)))}).ElseIf(n.y.greaterThanEqual(l),()=>{const u=Cg(t.y);s.x.assign(t.x.add(u.mul(2)).add(2)),s.y.assign(t.z.mul(u).sub(2))}),wt(.125,.25).mul(s).add(wt(.375,.75)).flipY()}).setLayout({name:"cubeToUV",type:"vec2",inputs:[{name:"pos",type:"vec3"},{name:"texelSizeY",type:"float"}]}),ese=je(({depthTexture:i,bd3D:e,dp:t,texelSize:n})=>Ai(i,Xl(e,n.y)).compare(t)),tse=je(({depthTexture:i,bd3D:e,dp:t,texelSize:n,shadow:r})=>{const s=ji("radius","float",r).setGroup(Rn),a=wt(-1,1).mul(s).mul(n.y);return Ai(i,Xl(e.add(a.xyy),n.y)).compare(t).add(Ai(i,Xl(e.add(a.yyy),n.y)).compare(t)).add(Ai(i,Xl(e.add(a.xyx),n.y)).compare(t)).add(Ai(i,Xl(e.add(a.yyx),n.y)).compare(t)).add(Ai(i,Xl(e,n.y)).compare(t)).add(Ai(i,Xl(e.add(a.xxy),n.y)).compare(t)).add(Ai(i,Xl(e.add(a.yxy),n.y)).compare(t)).add(Ai(i,Xl(e.add(a.xxx),n.y)).compare(t)).add(Ai(i,Xl(e.add(a.yxx),n.y)).compare(t)).mul(1/9)}),nse=je(({filterFn:i,depthTexture:e,shadowCoord:t,shadow:n})=>{const r=t.xyz.toVar(),s=r.length(),a=gn("float").setGroup(Rn).onRenderUpdate(()=>n.camera.near),l=gn("float").setGroup(Rn).onRenderUpdate(()=>n.camera.far),u=ji("bias","float",n).setGroup(Rn),h=gn(n.mapSize).setGroup(Rn),g=ve(1).toVar();return ti(s.sub(l).lessThanEqual(0).and(s.sub(a).greaterThanEqual(0)),()=>{const v=s.sub(a).div(l.sub(a)).toVar();v.addAssign(u);const x=r.normalize(),S=wt(1).div(h.mul(wt(4,2)));g.assign(i({depthTexture:e,bd3D:x,dp:v,texelSize:S,shadow:n}))}),g}),uN=new Pn,Nd=new ft,Am=new ft;class ise extends PB{static get type(){return"PointShadowNode"}constructor(e,t=null){super(e,t)}getShadowFilterFn(e){return e===UF?ese:tse}setupShadowCoord(e,t){return t}setupShadowFilter(e,{filterFn:t,shadowTexture:n,depthTexture:r,shadowCoord:s,shadow:a}){return nse({filterFn:t,shadowTexture:n,depthTexture:r,shadowCoord:s,shadow:a})}renderShadow(e){const{shadow:t,shadowMap:n,light:r}=this,{renderer:s,scene:a}=e,l=t.getFrameExtents();Am.copy(t.mapSize),Am.multiply(l),n.setSize(Am.width,Am.height),Nd.copy(t.mapSize);const u=s.autoClear,h=s.getClearColor(Jre),g=s.getClearAlpha();s.autoClear=!1,s.setClearColor(t.clearColor,t.clearAlpha),s.clear();const v=t.getViewportCount();for(let x=0;xdt(new ise(i,e)),UB=je(({color:i,lightViewPosition:e,cutoffDistance:t,decayExponent:n},r)=>{const s=r.context.lightingModel,a=e.sub(Xr),l=a.normalize(),u=a.length(),h=UE({lightDistance:u,cutoffDistance:t,decayExponent:n}),g=i.mul(h),v=r.context.reflectedLight;s.direct({lightDirection:l,lightColor:g,reflectedLight:v},r.stack,r)});class sse extends xA{static get type(){return"PointLightNode"}constructor(e=null){super(e),this.cutoffDistanceNode=gn(0).setGroup(Rn),this.decayExponentNode=gn(2).setGroup(Rn)}update(e){const{light:t}=this;super.update(e),this.cutoffDistanceNode.value=t.distance,this.decayExponentNode.value=t.decay}setupShadowNode(){return rse(this.light)}setup(e){super.setup(e),UB({color:this.colorNode,lightViewPosition:Jy(this.light),cutoffDistance:this.cutoffDistanceNode,decayExponent:this.decayExponentNode}).append()}}const ase=je(([i=Er()])=>{const e=i.mul(2),t=e.x.floor(),n=e.y.floor();return t.add(n).mod(2).sign()}),zm=je(([i,e,t])=>{const n=ve(t).toVar(),r=ve(e).toVar(),s=Ic(i).toVar();return zs(s,r,n)}).setLayout({name:"mx_select",type:"float",inputs:[{name:"b",type:"bool"},{name:"t",type:"float"},{name:"f",type:"float"}]}),ry=je(([i,e])=>{const t=Ic(e).toVar(),n=ve(i).toVar();return zs(t,n.negate(),n)}).setLayout({name:"mx_negate_if",type:"float",inputs:[{name:"val",type:"float"},{name:"b",type:"bool"}]}),Yr=je(([i])=>{const e=ve(i).toVar();return xe(hu(e))}).setLayout({name:"mx_floor",type:"int",inputs:[{name:"x",type:"float"}]}),_r=je(([i,e])=>{const t=ve(i).toVar();return e.assign(Yr(t)),t.sub(ve(e))}),ose=je(([i,e,t,n,r,s])=>{const a=ve(s).toVar(),l=ve(r).toVar(),u=ve(n).toVar(),h=ve(t).toVar(),g=ve(e).toVar(),v=ve(i).toVar(),x=ve(Ti(1,l)).toVar();return Ti(1,a).mul(v.mul(x).add(g.mul(l))).add(a.mul(h.mul(x).add(u.mul(l))))}).setLayout({name:"mx_bilerp_0",type:"float",inputs:[{name:"v0",type:"float"},{name:"v1",type:"float"},{name:"v2",type:"float"},{name:"v3",type:"float"},{name:"s",type:"float"},{name:"t",type:"float"}]}),lse=je(([i,e,t,n,r,s])=>{const a=ve(s).toVar(),l=ve(r).toVar(),u=De(n).toVar(),h=De(t).toVar(),g=De(e).toVar(),v=De(i).toVar(),x=ve(Ti(1,l)).toVar();return Ti(1,a).mul(v.mul(x).add(g.mul(l))).add(a.mul(h.mul(x).add(u.mul(l))))}).setLayout({name:"mx_bilerp_1",type:"vec3",inputs:[{name:"v0",type:"vec3"},{name:"v1",type:"vec3"},{name:"v2",type:"vec3"},{name:"v3",type:"vec3"},{name:"s",type:"float"},{name:"t",type:"float"}]}),BB=Vs([ose,lse]),use=je(([i,e,t,n,r,s,a,l,u,h,g])=>{const v=ve(g).toVar(),x=ve(h).toVar(),S=ve(u).toVar(),w=ve(l).toVar(),R=ve(a).toVar(),C=ve(s).toVar(),E=ve(r).toVar(),B=ve(n).toVar(),L=ve(t).toVar(),O=ve(e).toVar(),z=ve(i).toVar(),G=ve(Ti(1,S)).toVar(),k=ve(Ti(1,x)).toVar();return ve(Ti(1,v)).toVar().mul(k.mul(z.mul(G).add(O.mul(S))).add(x.mul(L.mul(G).add(B.mul(S))))).add(v.mul(k.mul(E.mul(G).add(C.mul(S))).add(x.mul(R.mul(G).add(w.mul(S))))))}).setLayout({name:"mx_trilerp_0",type:"float",inputs:[{name:"v0",type:"float"},{name:"v1",type:"float"},{name:"v2",type:"float"},{name:"v3",type:"float"},{name:"v4",type:"float"},{name:"v5",type:"float"},{name:"v6",type:"float"},{name:"v7",type:"float"},{name:"s",type:"float"},{name:"t",type:"float"},{name:"r",type:"float"}]}),cse=je(([i,e,t,n,r,s,a,l,u,h,g])=>{const v=ve(g).toVar(),x=ve(h).toVar(),S=ve(u).toVar(),w=De(l).toVar(),R=De(a).toVar(),C=De(s).toVar(),E=De(r).toVar(),B=De(n).toVar(),L=De(t).toVar(),O=De(e).toVar(),z=De(i).toVar(),G=ve(Ti(1,S)).toVar(),k=ve(Ti(1,x)).toVar();return ve(Ti(1,v)).toVar().mul(k.mul(z.mul(G).add(O.mul(S))).add(x.mul(L.mul(G).add(B.mul(S))))).add(v.mul(k.mul(E.mul(G).add(C.mul(S))).add(x.mul(R.mul(G).add(w.mul(S))))))}).setLayout({name:"mx_trilerp_1",type:"vec3",inputs:[{name:"v0",type:"vec3"},{name:"v1",type:"vec3"},{name:"v2",type:"vec3"},{name:"v3",type:"vec3"},{name:"v4",type:"vec3"},{name:"v5",type:"vec3"},{name:"v6",type:"vec3"},{name:"v7",type:"vec3"},{name:"s",type:"float"},{name:"t",type:"float"},{name:"r",type:"float"}]}),OB=Vs([use,cse]),hse=je(([i,e,t])=>{const n=ve(t).toVar(),r=ve(e).toVar(),s=Kt(i).toVar(),a=Kt(s.bitAnd(Kt(7))).toVar(),l=ve(zm(a.lessThan(Kt(4)),r,n)).toVar(),u=ve(Wn(2,zm(a.lessThan(Kt(4)),n,r))).toVar();return ry(l,Ic(a.bitAnd(Kt(1)))).add(ry(u,Ic(a.bitAnd(Kt(2)))))}).setLayout({name:"mx_gradient_float_0",type:"float",inputs:[{name:"hash",type:"uint"},{name:"x",type:"float"},{name:"y",type:"float"}]}),fse=je(([i,e,t,n])=>{const r=ve(n).toVar(),s=ve(t).toVar(),a=ve(e).toVar(),l=Kt(i).toVar(),u=Kt(l.bitAnd(Kt(15))).toVar(),h=ve(zm(u.lessThan(Kt(8)),a,s)).toVar(),g=ve(zm(u.lessThan(Kt(4)),s,zm(u.equal(Kt(12)).or(u.equal(Kt(14))),a,r))).toVar();return ry(h,Ic(u.bitAnd(Kt(1)))).add(ry(g,Ic(u.bitAnd(Kt(2)))))}).setLayout({name:"mx_gradient_float_1",type:"float",inputs:[{name:"hash",type:"uint"},{name:"x",type:"float"},{name:"y",type:"float"},{name:"z",type:"float"}]}),Rs=Vs([hse,fse]),Ase=je(([i,e,t])=>{const n=ve(t).toVar(),r=ve(e).toVar(),s=Y0(i).toVar();return De(Rs(s.x,r,n),Rs(s.y,r,n),Rs(s.z,r,n))}).setLayout({name:"mx_gradient_vec3_0",type:"vec3",inputs:[{name:"hash",type:"uvec3"},{name:"x",type:"float"},{name:"y",type:"float"}]}),dse=je(([i,e,t,n])=>{const r=ve(n).toVar(),s=ve(t).toVar(),a=ve(e).toVar(),l=Y0(i).toVar();return De(Rs(l.x,a,s,r),Rs(l.y,a,s,r),Rs(l.z,a,s,r))}).setLayout({name:"mx_gradient_vec3_1",type:"vec3",inputs:[{name:"hash",type:"uvec3"},{name:"x",type:"float"},{name:"y",type:"float"},{name:"z",type:"float"}]}),Ho=Vs([Ase,dse]),pse=je(([i])=>{const e=ve(i).toVar();return Wn(.6616,e)}).setLayout({name:"mx_gradient_scale2d_0",type:"float",inputs:[{name:"v",type:"float"}]}),mse=je(([i])=>{const e=ve(i).toVar();return Wn(.982,e)}).setLayout({name:"mx_gradient_scale3d_0",type:"float",inputs:[{name:"v",type:"float"}]}),gse=je(([i])=>{const e=De(i).toVar();return Wn(.6616,e)}).setLayout({name:"mx_gradient_scale2d_1",type:"vec3",inputs:[{name:"v",type:"vec3"}]}),IB=Vs([pse,gse]),vse=je(([i])=>{const e=De(i).toVar();return Wn(.982,e)}).setLayout({name:"mx_gradient_scale3d_1",type:"vec3",inputs:[{name:"v",type:"vec3"}]}),FB=Vs([mse,vse]),To=je(([i,e])=>{const t=xe(e).toVar(),n=Kt(i).toVar();return n.shiftLeft(t).bitOr(n.shiftRight(xe(32).sub(t)))}).setLayout({name:"mx_rotl32",type:"uint",inputs:[{name:"x",type:"uint"},{name:"k",type:"int"}]}),kB=je(([i,e,t])=>{i.subAssign(t),i.bitXorAssign(To(t,xe(4))),t.addAssign(e),e.subAssign(i),e.bitXorAssign(To(i,xe(6))),i.addAssign(t),t.subAssign(e),t.bitXorAssign(To(e,xe(8))),e.addAssign(i),i.subAssign(t),i.bitXorAssign(To(t,xe(16))),t.addAssign(e),e.subAssign(i),e.bitXorAssign(To(i,xe(19))),i.addAssign(t),t.subAssign(e),t.bitXorAssign(To(e,xe(4))),e.addAssign(i)}),n1=je(([i,e,t])=>{const n=Kt(t).toVar(),r=Kt(e).toVar(),s=Kt(i).toVar();return n.bitXorAssign(r),n.subAssign(To(r,xe(14))),s.bitXorAssign(n),s.subAssign(To(n,xe(11))),r.bitXorAssign(s),r.subAssign(To(s,xe(25))),n.bitXorAssign(r),n.subAssign(To(r,xe(16))),s.bitXorAssign(n),s.subAssign(To(n,xe(4))),r.bitXorAssign(s),r.subAssign(To(s,xe(14))),n.bitXorAssign(r),n.subAssign(To(r,xe(24))),n}).setLayout({name:"mx_bjfinal",type:"uint",inputs:[{name:"a",type:"uint"},{name:"b",type:"uint"},{name:"c",type:"uint"}]}),oa=je(([i])=>{const e=Kt(i).toVar();return ve(e).div(ve(Kt(xe(4294967295))))}).setLayout({name:"mx_bits_to_01",type:"float",inputs:[{name:"bits",type:"uint"}]}),fu=je(([i])=>{const e=ve(i).toVar();return e.mul(e).mul(e).mul(e.mul(e.mul(6).sub(15)).add(10))}).setLayout({name:"mx_fade",type:"float",inputs:[{name:"t",type:"float"}]}),_se=je(([i])=>{const e=xe(i).toVar(),t=Kt(Kt(1)).toVar(),n=Kt(Kt(xe(3735928559)).add(t.shiftLeft(Kt(2))).add(Kt(13))).toVar();return n1(n.add(Kt(e)),n,n)}).setLayout({name:"mx_hash_int_0",type:"uint",inputs:[{name:"x",type:"int"}]}),yse=je(([i,e])=>{const t=xe(e).toVar(),n=xe(i).toVar(),r=Kt(Kt(2)).toVar(),s=Kt().toVar(),a=Kt().toVar(),l=Kt().toVar();return s.assign(a.assign(l.assign(Kt(xe(3735928559)).add(r.shiftLeft(Kt(2))).add(Kt(13))))),s.addAssign(Kt(n)),a.addAssign(Kt(t)),n1(s,a,l)}).setLayout({name:"mx_hash_int_1",type:"uint",inputs:[{name:"x",type:"int"},{name:"y",type:"int"}]}),xse=je(([i,e,t])=>{const n=xe(t).toVar(),r=xe(e).toVar(),s=xe(i).toVar(),a=Kt(Kt(3)).toVar(),l=Kt().toVar(),u=Kt().toVar(),h=Kt().toVar();return l.assign(u.assign(h.assign(Kt(xe(3735928559)).add(a.shiftLeft(Kt(2))).add(Kt(13))))),l.addAssign(Kt(s)),u.addAssign(Kt(r)),h.addAssign(Kt(n)),n1(l,u,h)}).setLayout({name:"mx_hash_int_2",type:"uint",inputs:[{name:"x",type:"int"},{name:"y",type:"int"},{name:"z",type:"int"}]}),bse=je(([i,e,t,n])=>{const r=xe(n).toVar(),s=xe(t).toVar(),a=xe(e).toVar(),l=xe(i).toVar(),u=Kt(Kt(4)).toVar(),h=Kt().toVar(),g=Kt().toVar(),v=Kt().toVar();return h.assign(g.assign(v.assign(Kt(xe(3735928559)).add(u.shiftLeft(Kt(2))).add(Kt(13))))),h.addAssign(Kt(l)),g.addAssign(Kt(a)),v.addAssign(Kt(s)),kB(h,g,v),h.addAssign(Kt(r)),n1(h,g,v)}).setLayout({name:"mx_hash_int_3",type:"uint",inputs:[{name:"x",type:"int"},{name:"y",type:"int"},{name:"z",type:"int"},{name:"xx",type:"int"}]}),Sse=je(([i,e,t,n,r])=>{const s=xe(r).toVar(),a=xe(n).toVar(),l=xe(t).toVar(),u=xe(e).toVar(),h=xe(i).toVar(),g=Kt(Kt(5)).toVar(),v=Kt().toVar(),x=Kt().toVar(),S=Kt().toVar();return v.assign(x.assign(S.assign(Kt(xe(3735928559)).add(g.shiftLeft(Kt(2))).add(Kt(13))))),v.addAssign(Kt(h)),x.addAssign(Kt(u)),S.addAssign(Kt(l)),kB(v,x,S),v.addAssign(Kt(a)),x.addAssign(Kt(s)),n1(v,x,S)}).setLayout({name:"mx_hash_int_4",type:"uint",inputs:[{name:"x",type:"int"},{name:"y",type:"int"},{name:"z",type:"int"},{name:"xx",type:"int"},{name:"yy",type:"int"}]}),Wi=Vs([_se,yse,xse,bse,Sse]),Tse=je(([i,e])=>{const t=xe(e).toVar(),n=xe(i).toVar(),r=Kt(Wi(n,t)).toVar(),s=Y0().toVar();return s.x.assign(r.bitAnd(xe(255))),s.y.assign(r.shiftRight(xe(8)).bitAnd(xe(255))),s.z.assign(r.shiftRight(xe(16)).bitAnd(xe(255))),s}).setLayout({name:"mx_hash_vec3_0",type:"uvec3",inputs:[{name:"x",type:"int"},{name:"y",type:"int"}]}),wse=je(([i,e,t])=>{const n=xe(t).toVar(),r=xe(e).toVar(),s=xe(i).toVar(),a=Kt(Wi(s,r,n)).toVar(),l=Y0().toVar();return l.x.assign(a.bitAnd(xe(255))),l.y.assign(a.shiftRight(xe(8)).bitAnd(xe(255))),l.z.assign(a.shiftRight(xe(16)).bitAnd(xe(255))),l}).setLayout({name:"mx_hash_vec3_1",type:"uvec3",inputs:[{name:"x",type:"int"},{name:"y",type:"int"},{name:"z",type:"int"}]}),jo=Vs([Tse,wse]),Mse=je(([i])=>{const e=wt(i).toVar(),t=xe().toVar(),n=xe().toVar(),r=ve(_r(e.x,t)).toVar(),s=ve(_r(e.y,n)).toVar(),a=ve(fu(r)).toVar(),l=ve(fu(s)).toVar(),u=ve(BB(Rs(Wi(t,n),r,s),Rs(Wi(t.add(xe(1)),n),r.sub(1),s),Rs(Wi(t,n.add(xe(1))),r,s.sub(1)),Rs(Wi(t.add(xe(1)),n.add(xe(1))),r.sub(1),s.sub(1)),a,l)).toVar();return IB(u)}).setLayout({name:"mx_perlin_noise_float_0",type:"float",inputs:[{name:"p",type:"vec2"}]}),Ese=je(([i])=>{const e=De(i).toVar(),t=xe().toVar(),n=xe().toVar(),r=xe().toVar(),s=ve(_r(e.x,t)).toVar(),a=ve(_r(e.y,n)).toVar(),l=ve(_r(e.z,r)).toVar(),u=ve(fu(s)).toVar(),h=ve(fu(a)).toVar(),g=ve(fu(l)).toVar(),v=ve(OB(Rs(Wi(t,n,r),s,a,l),Rs(Wi(t.add(xe(1)),n,r),s.sub(1),a,l),Rs(Wi(t,n.add(xe(1)),r),s,a.sub(1),l),Rs(Wi(t.add(xe(1)),n.add(xe(1)),r),s.sub(1),a.sub(1),l),Rs(Wi(t,n,r.add(xe(1))),s,a,l.sub(1)),Rs(Wi(t.add(xe(1)),n,r.add(xe(1))),s.sub(1),a,l.sub(1)),Rs(Wi(t,n.add(xe(1)),r.add(xe(1))),s,a.sub(1),l.sub(1)),Rs(Wi(t.add(xe(1)),n.add(xe(1)),r.add(xe(1))),s.sub(1),a.sub(1),l.sub(1)),u,h,g)).toVar();return FB(v)}).setLayout({name:"mx_perlin_noise_float_1",type:"float",inputs:[{name:"p",type:"vec3"}]}),BE=Vs([Mse,Ese]),Cse=je(([i])=>{const e=wt(i).toVar(),t=xe().toVar(),n=xe().toVar(),r=ve(_r(e.x,t)).toVar(),s=ve(_r(e.y,n)).toVar(),a=ve(fu(r)).toVar(),l=ve(fu(s)).toVar(),u=De(BB(Ho(jo(t,n),r,s),Ho(jo(t.add(xe(1)),n),r.sub(1),s),Ho(jo(t,n.add(xe(1))),r,s.sub(1)),Ho(jo(t.add(xe(1)),n.add(xe(1))),r.sub(1),s.sub(1)),a,l)).toVar();return IB(u)}).setLayout({name:"mx_perlin_noise_vec3_0",type:"vec3",inputs:[{name:"p",type:"vec2"}]}),Rse=je(([i])=>{const e=De(i).toVar(),t=xe().toVar(),n=xe().toVar(),r=xe().toVar(),s=ve(_r(e.x,t)).toVar(),a=ve(_r(e.y,n)).toVar(),l=ve(_r(e.z,r)).toVar(),u=ve(fu(s)).toVar(),h=ve(fu(a)).toVar(),g=ve(fu(l)).toVar(),v=De(OB(Ho(jo(t,n,r),s,a,l),Ho(jo(t.add(xe(1)),n,r),s.sub(1),a,l),Ho(jo(t,n.add(xe(1)),r),s,a.sub(1),l),Ho(jo(t.add(xe(1)),n.add(xe(1)),r),s.sub(1),a.sub(1),l),Ho(jo(t,n,r.add(xe(1))),s,a,l.sub(1)),Ho(jo(t.add(xe(1)),n,r.add(xe(1))),s.sub(1),a,l.sub(1)),Ho(jo(t,n.add(xe(1)),r.add(xe(1))),s,a.sub(1),l.sub(1)),Ho(jo(t.add(xe(1)),n.add(xe(1)),r.add(xe(1))),s.sub(1),a.sub(1),l.sub(1)),u,h,g)).toVar();return FB(v)}).setLayout({name:"mx_perlin_noise_vec3_1",type:"vec3",inputs:[{name:"p",type:"vec3"}]}),OE=Vs([Cse,Rse]),Nse=je(([i])=>{const e=ve(i).toVar(),t=xe(Yr(e)).toVar();return oa(Wi(t))}).setLayout({name:"mx_cell_noise_float_0",type:"float",inputs:[{name:"p",type:"float"}]}),Dse=je(([i])=>{const e=wt(i).toVar(),t=xe(Yr(e.x)).toVar(),n=xe(Yr(e.y)).toVar();return oa(Wi(t,n))}).setLayout({name:"mx_cell_noise_float_1",type:"float",inputs:[{name:"p",type:"vec2"}]}),Pse=je(([i])=>{const e=De(i).toVar(),t=xe(Yr(e.x)).toVar(),n=xe(Yr(e.y)).toVar(),r=xe(Yr(e.z)).toVar();return oa(Wi(t,n,r))}).setLayout({name:"mx_cell_noise_float_2",type:"float",inputs:[{name:"p",type:"vec3"}]}),Lse=je(([i])=>{const e=dn(i).toVar(),t=xe(Yr(e.x)).toVar(),n=xe(Yr(e.y)).toVar(),r=xe(Yr(e.z)).toVar(),s=xe(Yr(e.w)).toVar();return oa(Wi(t,n,r,s))}).setLayout({name:"mx_cell_noise_float_3",type:"float",inputs:[{name:"p",type:"vec4"}]}),Use=Vs([Nse,Dse,Pse,Lse]),Bse=je(([i])=>{const e=ve(i).toVar(),t=xe(Yr(e)).toVar();return De(oa(Wi(t,xe(0))),oa(Wi(t,xe(1))),oa(Wi(t,xe(2))))}).setLayout({name:"mx_cell_noise_vec3_0",type:"vec3",inputs:[{name:"p",type:"float"}]}),Ose=je(([i])=>{const e=wt(i).toVar(),t=xe(Yr(e.x)).toVar(),n=xe(Yr(e.y)).toVar();return De(oa(Wi(t,n,xe(0))),oa(Wi(t,n,xe(1))),oa(Wi(t,n,xe(2))))}).setLayout({name:"mx_cell_noise_vec3_1",type:"vec3",inputs:[{name:"p",type:"vec2"}]}),Ise=je(([i])=>{const e=De(i).toVar(),t=xe(Yr(e.x)).toVar(),n=xe(Yr(e.y)).toVar(),r=xe(Yr(e.z)).toVar();return De(oa(Wi(t,n,r,xe(0))),oa(Wi(t,n,r,xe(1))),oa(Wi(t,n,r,xe(2))))}).setLayout({name:"mx_cell_noise_vec3_2",type:"vec3",inputs:[{name:"p",type:"vec3"}]}),Fse=je(([i])=>{const e=dn(i).toVar(),t=xe(Yr(e.x)).toVar(),n=xe(Yr(e.y)).toVar(),r=xe(Yr(e.z)).toVar(),s=xe(Yr(e.w)).toVar();return De(oa(Wi(t,n,r,s,xe(0))),oa(Wi(t,n,r,s,xe(1))),oa(Wi(t,n,r,s,xe(2))))}).setLayout({name:"mx_cell_noise_vec3_3",type:"vec3",inputs:[{name:"p",type:"vec4"}]}),zB=Vs([Bse,Ose,Ise,Fse]),sy=je(([i,e,t,n])=>{const r=ve(n).toVar(),s=ve(t).toVar(),a=xe(e).toVar(),l=De(i).toVar(),u=ve(0).toVar(),h=ve(1).toVar();return ki(a,()=>{u.addAssign(h.mul(BE(l))),h.mulAssign(r),l.mulAssign(s)}),u}).setLayout({name:"mx_fractal_noise_float",type:"float",inputs:[{name:"p",type:"vec3"},{name:"octaves",type:"int"},{name:"lacunarity",type:"float"},{name:"diminish",type:"float"}]}),GB=je(([i,e,t,n])=>{const r=ve(n).toVar(),s=ve(t).toVar(),a=xe(e).toVar(),l=De(i).toVar(),u=De(0).toVar(),h=ve(1).toVar();return ki(a,()=>{u.addAssign(h.mul(OE(l))),h.mulAssign(r),l.mulAssign(s)}),u}).setLayout({name:"mx_fractal_noise_vec3",type:"vec3",inputs:[{name:"p",type:"vec3"},{name:"octaves",type:"int"},{name:"lacunarity",type:"float"},{name:"diminish",type:"float"}]}),kse=je(([i,e,t,n])=>{const r=ve(n).toVar(),s=ve(t).toVar(),a=xe(e).toVar(),l=De(i).toVar();return wt(sy(l,a,s,r),sy(l.add(De(xe(19),xe(193),xe(17))),a,s,r))}).setLayout({name:"mx_fractal_noise_vec2",type:"vec2",inputs:[{name:"p",type:"vec3"},{name:"octaves",type:"int"},{name:"lacunarity",type:"float"},{name:"diminish",type:"float"}]}),zse=je(([i,e,t,n])=>{const r=ve(n).toVar(),s=ve(t).toVar(),a=xe(e).toVar(),l=De(i).toVar(),u=De(GB(l,a,s,r)).toVar(),h=ve(sy(l.add(De(xe(19),xe(193),xe(17))),a,s,r)).toVar();return dn(u,h)}).setLayout({name:"mx_fractal_noise_vec4",type:"vec4",inputs:[{name:"p",type:"vec3"},{name:"octaves",type:"int"},{name:"lacunarity",type:"float"},{name:"diminish",type:"float"}]}),Gse=je(([i,e,t,n,r,s,a])=>{const l=xe(a).toVar(),u=ve(s).toVar(),h=xe(r).toVar(),g=xe(n).toVar(),v=xe(t).toVar(),x=xe(e).toVar(),S=wt(i).toVar(),w=De(zB(wt(x.add(g),v.add(h)))).toVar(),R=wt(w.x,w.y).toVar();R.subAssign(.5),R.mulAssign(u),R.addAssign(.5);const C=wt(wt(ve(x),ve(v)).add(R)).toVar(),E=wt(C.sub(S)).toVar();return ti(l.equal(xe(2)),()=>ur(E.x).add(ur(E.y))),ti(l.equal(xe(3)),()=>qr(ur(E.x),ur(E.y))),Xh(E,E)}).setLayout({name:"mx_worley_distance_0",type:"float",inputs:[{name:"p",type:"vec2"},{name:"x",type:"int"},{name:"y",type:"int"},{name:"xoff",type:"int"},{name:"yoff",type:"int"},{name:"jitter",type:"float"},{name:"metric",type:"int"}]}),qse=je(([i,e,t,n,r,s,a,l,u])=>{const h=xe(u).toVar(),g=ve(l).toVar(),v=xe(a).toVar(),x=xe(s).toVar(),S=xe(r).toVar(),w=xe(n).toVar(),R=xe(t).toVar(),C=xe(e).toVar(),E=De(i).toVar(),B=De(zB(De(C.add(S),R.add(x),w.add(v)))).toVar();B.subAssign(.5),B.mulAssign(g),B.addAssign(.5);const L=De(De(ve(C),ve(R),ve(w)).add(B)).toVar(),O=De(L.sub(E)).toVar();return ti(h.equal(xe(2)),()=>ur(O.x).add(ur(O.y)).add(ur(O.z))),ti(h.equal(xe(3)),()=>qr(qr(ur(O.x),ur(O.y)),ur(O.z))),Xh(O,O)}).setLayout({name:"mx_worley_distance_1",type:"float",inputs:[{name:"p",type:"vec3"},{name:"x",type:"int"},{name:"y",type:"int"},{name:"z",type:"int"},{name:"xoff",type:"int"},{name:"yoff",type:"int"},{name:"zoff",type:"int"},{name:"jitter",type:"float"},{name:"metric",type:"int"}]}),Z0=Vs([Gse,qse]),Vse=je(([i,e,t])=>{const n=xe(t).toVar(),r=ve(e).toVar(),s=wt(i).toVar(),a=xe().toVar(),l=xe().toVar(),u=wt(_r(s.x,a),_r(s.y,l)).toVar(),h=ve(1e6).toVar();return ki({start:-1,end:xe(1),name:"x",condition:"<="},({x:g})=>{ki({start:-1,end:xe(1),name:"y",condition:"<="},({y:v})=>{const x=ve(Z0(u,g,v,a,l,r,n)).toVar();h.assign(to(h,x))})}),ti(n.equal(xe(0)),()=>{h.assign(Cu(h))}),h}).setLayout({name:"mx_worley_noise_float_0",type:"float",inputs:[{name:"p",type:"vec2"},{name:"jitter",type:"float"},{name:"metric",type:"int"}]}),Hse=je(([i,e,t])=>{const n=xe(t).toVar(),r=ve(e).toVar(),s=wt(i).toVar(),a=xe().toVar(),l=xe().toVar(),u=wt(_r(s.x,a),_r(s.y,l)).toVar(),h=wt(1e6,1e6).toVar();return ki({start:-1,end:xe(1),name:"x",condition:"<="},({x:g})=>{ki({start:-1,end:xe(1),name:"y",condition:"<="},({y:v})=>{const x=ve(Z0(u,g,v,a,l,r,n)).toVar();ti(x.lessThan(h.x),()=>{h.y.assign(h.x),h.x.assign(x)}).ElseIf(x.lessThan(h.y),()=>{h.y.assign(x)})})}),ti(n.equal(xe(0)),()=>{h.assign(Cu(h))}),h}).setLayout({name:"mx_worley_noise_vec2_0",type:"vec2",inputs:[{name:"p",type:"vec2"},{name:"jitter",type:"float"},{name:"metric",type:"int"}]}),jse=je(([i,e,t])=>{const n=xe(t).toVar(),r=ve(e).toVar(),s=wt(i).toVar(),a=xe().toVar(),l=xe().toVar(),u=wt(_r(s.x,a),_r(s.y,l)).toVar(),h=De(1e6,1e6,1e6).toVar();return ki({start:-1,end:xe(1),name:"x",condition:"<="},({x:g})=>{ki({start:-1,end:xe(1),name:"y",condition:"<="},({y:v})=>{const x=ve(Z0(u,g,v,a,l,r,n)).toVar();ti(x.lessThan(h.x),()=>{h.z.assign(h.y),h.y.assign(h.x),h.x.assign(x)}).ElseIf(x.lessThan(h.y),()=>{h.z.assign(h.y),h.y.assign(x)}).ElseIf(x.lessThan(h.z),()=>{h.z.assign(x)})})}),ti(n.equal(xe(0)),()=>{h.assign(Cu(h))}),h}).setLayout({name:"mx_worley_noise_vec3_0",type:"vec3",inputs:[{name:"p",type:"vec2"},{name:"jitter",type:"float"},{name:"metric",type:"int"}]}),Wse=je(([i,e,t])=>{const n=xe(t).toVar(),r=ve(e).toVar(),s=De(i).toVar(),a=xe().toVar(),l=xe().toVar(),u=xe().toVar(),h=De(_r(s.x,a),_r(s.y,l),_r(s.z,u)).toVar(),g=ve(1e6).toVar();return ki({start:-1,end:xe(1),name:"x",condition:"<="},({x:v})=>{ki({start:-1,end:xe(1),name:"y",condition:"<="},({y:x})=>{ki({start:-1,end:xe(1),name:"z",condition:"<="},({z:S})=>{const w=ve(Z0(h,v,x,S,a,l,u,r,n)).toVar();g.assign(to(g,w))})})}),ti(n.equal(xe(0)),()=>{g.assign(Cu(g))}),g}).setLayout({name:"mx_worley_noise_float_1",type:"float",inputs:[{name:"p",type:"vec3"},{name:"jitter",type:"float"},{name:"metric",type:"int"}]}),$se=Vs([Vse,Wse]),Xse=je(([i,e,t])=>{const n=xe(t).toVar(),r=ve(e).toVar(),s=De(i).toVar(),a=xe().toVar(),l=xe().toVar(),u=xe().toVar(),h=De(_r(s.x,a),_r(s.y,l),_r(s.z,u)).toVar(),g=wt(1e6,1e6).toVar();return ki({start:-1,end:xe(1),name:"x",condition:"<="},({x:v})=>{ki({start:-1,end:xe(1),name:"y",condition:"<="},({y:x})=>{ki({start:-1,end:xe(1),name:"z",condition:"<="},({z:S})=>{const w=ve(Z0(h,v,x,S,a,l,u,r,n)).toVar();ti(w.lessThan(g.x),()=>{g.y.assign(g.x),g.x.assign(w)}).ElseIf(w.lessThan(g.y),()=>{g.y.assign(w)})})})}),ti(n.equal(xe(0)),()=>{g.assign(Cu(g))}),g}).setLayout({name:"mx_worley_noise_vec2_1",type:"vec2",inputs:[{name:"p",type:"vec3"},{name:"jitter",type:"float"},{name:"metric",type:"int"}]}),Yse=Vs([Hse,Xse]),Qse=je(([i,e,t])=>{const n=xe(t).toVar(),r=ve(e).toVar(),s=De(i).toVar(),a=xe().toVar(),l=xe().toVar(),u=xe().toVar(),h=De(_r(s.x,a),_r(s.y,l),_r(s.z,u)).toVar(),g=De(1e6,1e6,1e6).toVar();return ki({start:-1,end:xe(1),name:"x",condition:"<="},({x:v})=>{ki({start:-1,end:xe(1),name:"y",condition:"<="},({y:x})=>{ki({start:-1,end:xe(1),name:"z",condition:"<="},({z:S})=>{const w=ve(Z0(h,v,x,S,a,l,u,r,n)).toVar();ti(w.lessThan(g.x),()=>{g.z.assign(g.y),g.y.assign(g.x),g.x.assign(w)}).ElseIf(w.lessThan(g.y),()=>{g.z.assign(g.y),g.y.assign(w)}).ElseIf(w.lessThan(g.z),()=>{g.z.assign(w)})})})}),ti(n.equal(xe(0)),()=>{g.assign(Cu(g))}),g}).setLayout({name:"mx_worley_noise_vec3_1",type:"vec3",inputs:[{name:"p",type:"vec3"},{name:"jitter",type:"float"},{name:"metric",type:"int"}]}),Kse=Vs([jse,Qse]),Zse=je(([i])=>{const e=i.y,t=i.z,n=De().toVar();return ti(e.lessThan(1e-4),()=>{n.assign(De(t,t,t))}).Else(()=>{let r=i.x;r=r.sub(hu(r)).mul(6).toVar();const s=xe(QM(r)),a=r.sub(ve(s)),l=t.mul(e.oneMinus()),u=t.mul(e.mul(a).oneMinus()),h=t.mul(e.mul(a.oneMinus()).oneMinus());ti(s.equal(xe(0)),()=>{n.assign(De(t,h,l))}).ElseIf(s.equal(xe(1)),()=>{n.assign(De(u,t,l))}).ElseIf(s.equal(xe(2)),()=>{n.assign(De(l,t,h))}).ElseIf(s.equal(xe(3)),()=>{n.assign(De(l,u,t))}).ElseIf(s.equal(xe(4)),()=>{n.assign(De(h,l,t))}).Else(()=>{n.assign(De(t,l,u))})}),n}).setLayout({name:"mx_hsvtorgb",type:"vec3",inputs:[{name:"hsv",type:"vec3"}]}),Jse=je(([i])=>{const e=De(i).toVar(),t=ve(e.x).toVar(),n=ve(e.y).toVar(),r=ve(e.z).toVar(),s=ve(to(t,to(n,r))).toVar(),a=ve(qr(t,qr(n,r))).toVar(),l=ve(a.sub(s)).toVar(),u=ve().toVar(),h=ve().toVar(),g=ve().toVar();return g.assign(a),ti(a.greaterThan(0),()=>{h.assign(l.div(a))}).Else(()=>{h.assign(0)}),ti(h.lessThanEqual(0),()=>{u.assign(0)}).Else(()=>{ti(t.greaterThanEqual(a),()=>{u.assign(n.sub(r).div(l))}).ElseIf(n.greaterThanEqual(a),()=>{u.assign(Qr(2,r.sub(t).div(l)))}).Else(()=>{u.assign(Qr(4,t.sub(n).div(l)))}),u.mulAssign(1/6),ti(u.lessThan(0),()=>{u.addAssign(1)})}),De(u,h,g)}).setLayout({name:"mx_rgbtohsv",type:"vec3",inputs:[{name:"c",type:"vec3"}]}),eae=je(([i])=>{const e=De(i).toVar(),t=LM(VM(e,De(.04045))).toVar(),n=De(e.div(12.92)).toVar(),r=De(Cl(qr(e.add(De(.055)),De(0)).div(1.055),De(2.4))).toVar();return Fi(n,r,t)}).setLayout({name:"mx_srgb_texture_to_lin_rec709",type:"vec3",inputs:[{name:"color",type:"vec3"}]}),qB=(i,e)=>{i=ve(i),e=ve(e);const t=wt(e.dFdx(),e.dFdy()).length().mul(.7071067811865476);return kc(i.sub(t),i.add(t),e)},VB=(i,e,t,n)=>Fi(i,e,t[n].clamp()),tae=(i,e,t=Er())=>VB(i,e,t,"x"),nae=(i,e,t=Er())=>VB(i,e,t,"y"),HB=(i,e,t,n,r)=>Fi(i,e,qB(t,n[r])),iae=(i,e,t,n=Er())=>HB(i,e,t,n,"x"),rae=(i,e,t,n=Er())=>HB(i,e,t,n,"y"),sae=(i=1,e=0,t=Er())=>t.mul(i).add(e),aae=(i,e=1)=>(i=ve(i),i.abs().pow(e).mul(i.sign())),oae=(i,e=1,t=.5)=>ve(i).sub(t).mul(e).add(t),lae=(i=Er(),e=1,t=0)=>BE(i.convert("vec2|vec3")).mul(e).add(t),uae=(i=Er(),e=1,t=0)=>OE(i.convert("vec2|vec3")).mul(e).add(t),cae=(i=Er(),e=1,t=0)=>(i=i.convert("vec2|vec3"),dn(OE(i),BE(i.add(wt(19,73)))).mul(e).add(t)),hae=(i=Er(),e=1)=>$se(i.convert("vec2|vec3"),e,xe(1)),fae=(i=Er(),e=1)=>Yse(i.convert("vec2|vec3"),e,xe(1)),Aae=(i=Er(),e=1)=>Kse(i.convert("vec2|vec3"),e,xe(1)),dae=(i=Er())=>Use(i.convert("vec2|vec3")),pae=(i=Er(),e=3,t=2,n=.5,r=1)=>sy(i,xe(e),t,n).mul(r),mae=(i=Er(),e=3,t=2,n=.5,r=1)=>kse(i,xe(e),t,n).mul(r),gae=(i=Er(),e=3,t=2,n=.5,r=1)=>GB(i,xe(e),t,n).mul(r),vae=(i=Er(),e=3,t=2,n=.5,r=1)=>zse(i,xe(e),t,n).mul(r),_ae=je(([i,e,t])=>{const n=Fc(i).toVar("nDir"),r=Ti(ve(.5).mul(e.sub(t)),Nc).div(n).toVar("rbmax"),s=Ti(ve(-.5).mul(e.sub(t)),Nc).div(n).toVar("rbmin"),a=De().toVar("rbminmax");a.x=n.x.greaterThan(ve(0)).select(r.x,s.x),a.y=n.y.greaterThan(ve(0)).select(r.y,s.y),a.z=n.z.greaterThan(ve(0)).select(r.z,s.z);const l=to(to(a.x,a.y),a.z).toVar("correction");return Nc.add(n.mul(l)).toVar("boxIntersection").sub(t)}),jB=je(([i,e])=>{const t=i.x,n=i.y,r=i.z;let s=e.element(0).mul(.886227);return s=s.add(e.element(1).mul(2*.511664).mul(n)),s=s.add(e.element(2).mul(2*.511664).mul(r)),s=s.add(e.element(3).mul(2*.511664).mul(t)),s=s.add(e.element(4).mul(2*.429043).mul(t).mul(n)),s=s.add(e.element(5).mul(2*.429043).mul(n).mul(r)),s=s.add(e.element(6).mul(r.mul(r).mul(.743125).sub(.247708))),s=s.add(e.element(7).mul(2*.429043).mul(t).mul(r)),s=s.add(e.element(8).mul(.429043).mul(Wn(t,t).sub(Wn(n,n)))),s});var j=Object.freeze({__proto__:null,BRDF_GGX:XT,BRDF_Lambert:AA,BasicShadowFilter:CB,Break:TU,Continue:xee,DFGApprox:_E,D_GGX:kU,Discard:v9,EPSILON:TL,F_Schlick:F0,Fn:je,INFINITY:fJ,If:ti,Loop:ki,NodeAccess:sa,NodeShaderStage:IT,NodeType:qZ,NodeUpdateType:jn,PCFShadowFilter:RB,PCFSoftShadowFilter:NB,PI:Z_,PI2:AJ,Return:CJ,Schlick_to_F0:GU,ScriptableNodeResources:i_,ShaderNode:Um,TBNViewMatrix:Yf,VSMShadowFilter:DB,V_GGX_SmithCorrelated:FU,abs:ur,acesFilmicToneMapping:_B,acos:NL,add:Qr,addMethodChaining:ot,addNodeElement:NJ,agxToneMapping:yB,all:HM,alphaT:Y_,and:AL,anisotropy:Rh,anisotropyB:iA,anisotropyT:Bm,any:wL,append:WP,arrayBuffer:oJ,asin:RL,assign:aL,atan:$M,atan2:QL,atomicAdd:Cre,atomicAnd:Pre,atomicFunc:jc,atomicMax:Nre,atomicMin:Dre,atomicOr:Lre,atomicStore:Ere,atomicSub:Rre,atomicXor:Ure,attenuationColor:zM,attenuationDistance:kM,attribute:_u,attributeArray:xie,backgroundBlurriness:oB,backgroundIntensity:ew,backgroundRotation:lB,batch:xU,billboarding:eie,bitAnd:gL,bitNot:vL,bitOr:_L,bitXor:yL,bitangentGeometry:tee,bitangentLocal:nee,bitangentView:O9,bitangentWorld:iee,bitcast:dJ,blendBurn:hB,blendColor:Lie,blendDodge:fB,blendOverlay:dB,blendScreen:AB,blur:XU,bool:Ic,buffer:Yg,bufferAttribute:$g,bumpMap:z9,burn:Uie,bvec2:YP,bvec3:LM,bvec4:JP,bypass:d9,cache:Im,call:oL,cameraFar:Ph,cameraNear:Dh,cameraNormalMatrix:OJ,cameraPosition:b9,cameraProjectionMatrix:_A,cameraProjectionMatrixInverse:UJ,cameraViewMatrix:so,cameraWorldMatrix:BJ,cbrt:HL,cdl:qie,ceil:Iy,checker:ase,cineonToneMapping:vB,clamp:vu,clearcoat:X_,clearcoatRoughness:wg,code:Ky,color:$P,colorSpaceToWorking:nE,colorToDirection:Qee,compute:A9,cond:KL,context:zy,convert:tL,convertColorSpace:_J,convertToTexture:Aie,cos:yc,cross:ky,cubeTexture:I0,dFdx:XM,dFdy:YM,dashSize:Qv,defaultBuildStages:FT,defaultShaderStages:zP,defined:xg,degrees:EL,deltaTime:rB,densityFog:hre,densityFogFactor:EE,depth:pE,depthPass:Xie,difference:zL,diffuseColor:Ui,directPointLight:UB,directionToColor:DU,dispersion:GM,distance:kL,div:Dl,dodge:Bie,dot:Xh,drawIndex:vU,dynamicBufferAttribute:f9,element:eL,emissive:qT,equal:lL,equals:IL,equirectUV:mE,exp:jM,exp2:O0,expression:Hh,faceDirection:Xg,faceForward:eE,faceforward:pJ,float:ve,floor:hu,fog:Ng,fract:Hc,frameGroup:rL,frameId:Hne,frontFacing:M9,fwidth:BL,gain:Ine,gapSize:VT,getConstNodeType:jP,getCurrentStack:PM,getDirection:WU,getDistanceAttenuation:UE,getGeometryRoughness:IU,getNormalFromDepth:pie,getParallaxCorrectNormal:_ae,getRoughness:vE,getScreenPosition:die,getShIrradianceAt:jB,getTextureIndex:nB,getViewPosition:zd,glsl:ire,glslFn:rre,grayscale:Fie,greaterThan:VM,greaterThanEqual:fL,hash:One,highpModelNormalViewMatrix:$J,highpModelViewMatrix:WJ,hue:Gie,instance:mee,instanceIndex:Jg,instancedArray:bie,instancedBufferAttribute:J_,instancedDynamicBufferAttribute:HT,instancedMesh:yU,int:xe,inverseSqrt:WM,inversesqrt:mJ,invocationLocalIndex:pee,invocationSubgroupIndex:dee,ior:Om,iridescence:By,iridescenceIOR:OM,iridescenceThickness:IM,ivec2:ms,ivec3:QP,ivec4:KP,js:tre,label:JL,length:Rc,lengthSq:jL,lessThan:cL,lessThanEqual:hL,lightPosition:NE,lightProjectionUV:MB,lightShadowMatrix:RE,lightTargetDirection:DE,lightTargetPosition:EB,lightViewPosition:Jy,lightingContext:MU,lights:Ire,linearDepth:ty,linearToneMapping:mB,localId:gre,log:Oy,log2:cu,logarithmicDepthToViewZ:Bee,loop:bee,luminance:wE,mat2:Ly,mat3:ha,mat4:nA,matcapUV:QU,materialAO:mU,materialAlphaTest:G9,materialAnisotropy:nU,materialAnisotropyVector:kd,materialAttenuationColor:cU,materialAttenuationDistance:uU,materialClearcoat:Q9,materialClearcoatNormal:Z9,materialClearcoatRoughness:K9,materialColor:q9,materialDispersion:pU,materialEmissive:H9,materialIOR:lU,materialIridescence:iU,materialIridescenceIOR:rU,materialIridescenceThickness:sU,materialLightMap:lE,materialLineDashOffset:dU,materialLineDashSize:fU,materialLineGapSize:AU,materialLineScale:hU,materialLineWidth:hee,materialMetalness:X9,materialNormal:Y9,materialOpacity:oE,materialPointWidth:fee,materialReference:Tc,materialReflectivity:Jv,materialRefractionRatio:R9,materialRotation:J9,materialRoughness:$9,materialSheen:eU,materialSheenRoughness:tU,materialShininess:V9,materialSpecular:j9,materialSpecularColor:W9,materialSpecularIntensity:$T,materialSpecularStrength:Fm,materialThickness:oU,materialTransmission:aU,max:qr,maxMipLevel:x9,mediumpModelViewMatrix:w9,metalness:Tg,min:to,mix:Fi,mixElement:XL,mod:KM,modInt:qM,modelDirection:GJ,modelNormalMatrix:T9,modelPosition:qJ,modelScale:VJ,modelViewMatrix:Q0,modelViewPosition:HJ,modelViewProjection:uE,modelWorldMatrix:$o,modelWorldMatrixInverse:jJ,morphReference:wU,mrt:iB,mul:Wn,mx_aastep:qB,mx_cell_noise_float:dae,mx_contrast:oae,mx_fractal_noise_float:pae,mx_fractal_noise_vec2:mae,mx_fractal_noise_vec3:gae,mx_fractal_noise_vec4:vae,mx_hsvtorgb:Zse,mx_noise_float:lae,mx_noise_vec3:uae,mx_noise_vec4:cae,mx_ramplr:tae,mx_ramptb:nae,mx_rgbtohsv:Jse,mx_safepower:aae,mx_splitlr:iae,mx_splittb:rae,mx_srgb_texture_to_lin_rec709:eae,mx_transform_uv:sae,mx_worley_noise_float:hae,mx_worley_noise_vec2:fae,mx_worley_noise_vec3:Aae,negate:DL,neutralToneMapping:xB,nodeArray:tA,nodeImmutable:Gt,nodeObject:dt,nodeObjects:Vg,nodeProxy:lt,normalFlat:E9,normalGeometry:qy,normalLocal:no,normalMap:WT,normalView:Jo,normalWorld:Vy,normalize:Fc,not:pL,notEqual:uL,numWorkgroups:pre,objectDirection:IJ,objectGroup:BM,objectPosition:S9,objectScale:kJ,objectViewPosition:zJ,objectWorldMatrix:FJ,oneMinus:PL,or:dL,orthographicDepthToViewZ:Uee,oscSawtooth:Kne,oscSine:Xne,oscSquare:Yne,oscTriangle:Qne,output:Eg,outputStruct:Une,overlay:Iie,overloadingFn:Vs,parabola:JT,parallaxDirection:F9,parallaxUV:see,parameter:Pne,pass:Wie,passTexture:$ie,pcurve:Fne,perspectiveDepthToViewZ:AE,pmremTexture:yE,pointUV:Mie,pointWidth:uJ,positionGeometry:Gy,positionLocal:Gr,positionPrevious:ey,positionView:Xr,positionViewDirection:dr,positionWorld:Nc,positionWorldDirection:iE,posterize:Hie,pow:Cl,pow2:ZM,pow3:GL,pow4:qL,property:sL,radians:ML,rand:$L,range:Are,rangeFog:cre,rangeFogFactor:ME,reciprocal:UL,reference:ji,referenceBuffer:jT,reflect:FL,reflectVector:P9,reflectView:N9,reflector:lie,refract:JM,refractVector:L9,refractView:D9,reinhardToneMapping:gB,remainder:SL,remap:m9,remapClamp:g9,renderGroup:Rn,renderOutput:_9,rendererReference:u9,rotate:xE,rotateUV:Zne,roughness:Zl,round:LL,rtt:aB,sRGBTransferEOTF:i9,sRGBTransferOETF:r9,sampler:LJ,saturate:WL,saturation:kie,screen:Oie,screenCoordinate:e1,screenSize:Rg,screenUV:bu,scriptable:ure,scriptableValue:n_,select:zs,setCurrentStack:bg,shaderStages:kT,shadow:LB,shadowPositionWorld:LE,sharedUniformGroup:UM,sheen:Xf,sheenRoughness:Uy,shiftLeft:xL,shiftRight:bL,shininess:Q_,sign:Cg,sin:Mo,sinc:kne,skinning:_ee,skinningReference:SU,smoothstep:kc,smoothstepElement:YL,specularColor:ka,specularF90:Mg,spherizeUV:Jne,split:lJ,spritesheetUV:iie,sqrt:Cu,stack:e_,step:Fy,storage:Qy,storageBarrier:xre,storageObject:yie,storageTexture:uB,string:aJ,sub:Ti,subgroupIndex:Aee,subgroupSize:vre,tan:CL,tangentGeometry:Wy,tangentLocal:Qg,tangentView:Kg,tangentWorld:B9,temp:t9,texture:Ai,texture3D:one,textureBarrier:bre,textureBicubic:HU,textureCubeUV:$U,textureLoad:Fr,textureSize:Fh,textureStore:Cie,thickness:FM,time:yA,timerDelta:$ne,timerGlobal:Wne,timerLocal:jne,toOutputColorSpace:s9,toWorkingColorSpace:a9,toneMapping:c9,toneMappingExposure:h9,toonOutlinePass:Qie,transformDirection:VL,transformNormal:C9,transformNormalToView:rE,transformedBentNormalView:k9,transformedBitangentView:I9,transformedBitangentWorld:ree,transformedClearcoatNormalView:Qd,transformedNormalView:zr,transformedNormalWorld:Hy,transformedTangentView:aE,transformedTangentWorld:eee,transmission:K_,transpose:OL,triNoise3D:Gne,triplanarTexture:sie,triplanarTextures:sB,trunc:QM,tslFn:sJ,uint:Kt,uniform:gn,uniformArray:Sc,uniformGroup:iL,uniforms:KJ,userData:Nie,uv:Er,uvec2:XP,uvec3:Y0,uvec4:ZP,varying:ro,varyingProperty:Sg,vec2:wt,vec3:De,vec4:dn,vectorComponents:gA,velocity:Pie,vertexColor:Tie,vertexIndex:gU,vertexStage:n9,vibrance:zie,viewZToLogarithmicDepth:dE,viewZToOrthographicDepth:s0,viewZToPerspectiveDepth:RU,viewport:cE,viewportBottomLeft:Dee,viewportCoordinate:CU,viewportDepthTexture:fE,viewportLinearDepth:Oee,viewportMipTexture:hE,viewportResolution:Ree,viewportSafeUV:tie,viewportSharedTexture:Yee,viewportSize:EU,viewportTexture:Pee,viewportTopLeft:Nee,viewportUV:Cee,wgsl:nre,wgslFn:sre,workgroupArray:wre,workgroupBarrier:yre,workgroupId:mre,workingToColorSpace:o9,xor:mL});const vc=new bE;class yae extends Yh{constructor(e,t){super(),this.renderer=e,this.nodes=t}update(e,t,n){const r=this.renderer,s=this.nodes.getBackgroundNode(e)||e.background;let a=!1;if(s===null)r._clearColor.getRGB(vc,Ro),vc.a=r._clearColor.a;else if(s.isColor===!0)s.getRGB(vc,Ro),vc.a=1,a=!0;else if(s.isNode===!0){const l=this.get(e),u=s;vc.copy(r._clearColor);let h=l.backgroundMesh;if(h===void 0){const v=zy(dn(u).mul(ew),{getUV:()=>lB.mul(Vy),getTextureLevel:()=>oB});let x=uE;x=x.setZ(x.w);const S=new Vr;S.name="Background.material",S.side=hr,S.depthTest=!1,S.depthWrite=!1,S.fog=!1,S.lights=!1,S.vertexNode=x,S.colorNode=v,l.backgroundMeshNode=v,l.backgroundMesh=h=new zi(new Eu(1,32,32),S),h.frustumCulled=!1,h.name="Background.mesh",h.onBeforeRender=function(w,R,C){this.matrixWorld.copyPosition(C.matrixWorld)}}const g=u.getCacheKey();l.backgroundCacheKey!==g&&(l.backgroundMeshNode.node=dn(u).mul(ew),l.backgroundMeshNode.needsUpdate=!0,h.material.needsUpdate=!0,l.backgroundCacheKey=g),t.unshift(h,h.geometry,h.material,0,0,null,null)}else console.error("THREE.Renderer: Unsupported background configuration.",s);if(r.autoClear===!0||a===!0){const l=n.clearColorValue;l.r=vc.r,l.g=vc.g,l.b=vc.b,l.a=vc.a,(r.backend.isWebGLBackend===!0||r.alpha===!0)&&(l.r*=l.a,l.g*=l.a,l.b*=l.a),n.depthClearValue=r._clearDepth,n.stencilClearValue=r._clearStencil,n.clearColor=r.autoClearColor===!0,n.clearDepth=r.autoClearDepth===!0,n.clearStencil=r.autoClearStencil===!0}else n.clearColor=!1,n.clearDepth=!1,n.clearStencil=!1}}let xae=0;class tw{constructor(e="",t=[],n=0,r=[]){this.name=e,this.bindings=t,this.index=n,this.bindingsReference=r,this.id=xae++}}class bae{constructor(e,t,n,r,s,a,l,u,h,g=[]){this.vertexShader=e,this.fragmentShader=t,this.computeShader=n,this.transforms=g,this.nodeAttributes=r,this.bindings=s,this.updateNodes=a,this.updateBeforeNodes=l,this.updateAfterNodes=u,this.monitor=h,this.usedTimes=0}createBindings(){const e=[];for(const t of this.bindings)if(t.bindings[0].groupNode.shared!==!0){const r=new tw(t.name,[],t.index,t);e.push(r);for(const s of t.bindings)r.bindings.push(s.clone())}else e.push(t);return e}}class cN{constructor(e,t,n=null){this.isNodeAttribute=!0,this.name=e,this.type=t,this.node=n}}class Sae{constructor(e,t,n){this.isNodeUniform=!0,this.name=e,this.type=t,this.node=n.getSelf()}get value(){return this.node.value}set value(e){this.node.value=e}get id(){return this.node.id}get groupNode(){return this.node.groupNode}}class WB{constructor(e,t){this.isNodeVar=!0,this.name=e,this.type=t}}class Tae extends WB{constructor(e,t){super(e,t),this.needsInterpolation=!1,this.isNodeVarying=!0}}class wae{constructor(e,t,n=""){this.name=e,this.type=t,this.code=n,Object.defineProperty(this,"isNodeCode",{value:!0})}}let Mae=0;class uS{constructor(e=null){this.id=Mae++,this.nodesData=new WeakMap,this.parent=e}getData(e){let t=this.nodesData.get(e);return t===void 0&&this.parent!==null&&(t=this.parent.getData(e)),t}setData(e,t){this.nodesData.set(e,t)}}class Eae extends Mn{static get type(){return"StructTypeNode"}constructor(e,t){super(),this.name=e,this.types=t,this.isStructTypeNode=!0}getMemberTypes(){return this.types}}class bA{constructor(e,t){this.name=e,this.value=t,this.boundary=0,this.itemSize=0,this.offset=0}setValue(e){this.value=e}getValue(){return this.value}}class Cae extends bA{constructor(e,t=0){super(e,t),this.isNumberUniform=!0,this.boundary=4,this.itemSize=1}}class Rae extends bA{constructor(e,t=new ft){super(e,t),this.isVector2Uniform=!0,this.boundary=8,this.itemSize=2}}class Nae extends bA{constructor(e,t=new ce){super(e,t),this.isVector3Uniform=!0,this.boundary=16,this.itemSize=3}}class Dae extends bA{constructor(e,t=new Pn){super(e,t),this.isVector4Uniform=!0,this.boundary=16,this.itemSize=4}}class Pae extends bA{constructor(e,t=new an){super(e,t),this.isColorUniform=!0,this.boundary=16,this.itemSize=3}}class Lae extends bA{constructor(e,t=new Vn){super(e,t),this.isMatrix3Uniform=!0,this.boundary=48,this.itemSize=12}}class Uae extends bA{constructor(e,t=new kn){super(e,t),this.isMatrix4Uniform=!0,this.boundary=64,this.itemSize=16}}class Bae extends Cae{constructor(e){super(e.name,e.value),this.nodeUniform=e}getValue(){return this.nodeUniform.value}getType(){return this.nodeUniform.type}}class Oae extends Rae{constructor(e){super(e.name,e.value),this.nodeUniform=e}getValue(){return this.nodeUniform.value}getType(){return this.nodeUniform.type}}class Iae extends Nae{constructor(e){super(e.name,e.value),this.nodeUniform=e}getValue(){return this.nodeUniform.value}getType(){return this.nodeUniform.type}}class Fae extends Dae{constructor(e){super(e.name,e.value),this.nodeUniform=e}getValue(){return this.nodeUniform.value}getType(){return this.nodeUniform.type}}class kae extends Pae{constructor(e){super(e.name,e.value),this.nodeUniform=e}getValue(){return this.nodeUniform.value}getType(){return this.nodeUniform.type}}class zae extends Lae{constructor(e){super(e.name,e.value),this.nodeUniform=e}getValue(){return this.nodeUniform.value}getType(){return this.nodeUniform.type}}class Gae extends Uae{constructor(e){super(e.name,e.value),this.nodeUniform=e}getValue(){return this.nodeUniform.value}getType(){return this.nodeUniform.type}}const Kd=4,hN=[.125,.215,.35,.446,.526,.582],Gf=20,cS=new kg(-1,1,1,-1,0,1),qae=new ya(90,1),fN=new an;let hS=null,fS=0,AS=0;const If=(1+Math.sqrt(5))/2,Dd=1/If,AN=[new ce(-If,Dd,0),new ce(If,Dd,0),new ce(-Dd,0,If),new ce(Dd,0,If),new ce(0,If,-Dd),new ce(0,If,Dd),new ce(-1,1,-1),new ce(1,1,-1),new ce(-1,1,1),new ce(1,1,1)],Vae=[3,1,5,0,4,2],dS=WU(Er(),_u("faceIndex")).normalize(),IE=De(dS.x,dS.y,dS.z);class Hae{constructor(e){this._renderer=e,this._pingPongRenderTarget=null,this._lodMax=0,this._cubeSize=0,this._lodPlanes=[],this._sizeLods=[],this._sigmas=[],this._lodMeshes=[],this._blurMaterial=null,this._cubemapMaterial=null,this._equirectMaterial=null,this._backgroundBox=null}get _hasInitialized(){return this._renderer.hasInitialized()}fromScene(e,t=0,n=.1,r=100,s=null){if(this._setSize(256),this._hasInitialized===!1){console.warn("THREE.PMREMGenerator: .fromScene() called before the backend is initialized. Try using .fromSceneAsync() instead.");const l=s||this._allocateTargets();return this.fromSceneAsync(e,t,n,r,l),l}hS=this._renderer.getRenderTarget(),fS=this._renderer.getActiveCubeFace(),AS=this._renderer.getActiveMipmapLevel();const a=s||this._allocateTargets();return a.depthBuffer=!0,this._sceneToCubeUV(e,n,r,a),t>0&&this._blur(a,0,0,t),this._applyPMREM(a),this._cleanup(a),a}async fromSceneAsync(e,t=0,n=.1,r=100,s=null){return this._hasInitialized===!1&&await this._renderer.init(),this.fromScene(e,t,n,r,s)}fromEquirectangular(e,t=null){if(this._hasInitialized===!1){console.warn("THREE.PMREMGenerator: .fromEquirectangular() called before the backend is initialized. Try using .fromEquirectangularAsync() instead."),this._setSizeFromTexture(e);const n=t||this._allocateTargets();return this.fromEquirectangularAsync(e,n),n}return this._fromTexture(e,t)}async fromEquirectangularAsync(e,t=null){return this._hasInitialized===!1&&await this._renderer.init(),this._fromTexture(e,t)}fromCubemap(e,t=null){if(this._hasInitialized===!1){console.warn("THREE.PMREMGenerator: .fromCubemap() called before the backend is initialized. Try using .fromCubemapAsync() instead."),this._setSizeFromTexture(e);const n=t||this._allocateTargets();return this.fromCubemapAsync(e,t),n}return this._fromTexture(e,t)}async fromCubemapAsync(e,t=null){return this._hasInitialized===!1&&await this._renderer.init(),this._fromTexture(e,t)}async compileCubemapShader(){this._cubemapMaterial===null&&(this._cubemapMaterial=pN(),await this._compileMaterial(this._cubemapMaterial))}async compileEquirectangularShader(){this._equirectMaterial===null&&(this._equirectMaterial=mN(),await this._compileMaterial(this._equirectMaterial))}dispose(){this._dispose(),this._cubemapMaterial!==null&&this._cubemapMaterial.dispose(),this._equirectMaterial!==null&&this._equirectMaterial.dispose(),this._backgroundBox!==null&&(this._backgroundBox.geometry.dispose(),this._backgroundBox.material.dispose())}_setSizeFromTexture(e){e.mapping===Qo||e.mapping===Ko?this._setSize(e.image.length===0?16:e.image[0].width||e.image[0].image.width):this._setSize(e.image.width/4)}_setSize(e){this._lodMax=Math.floor(Math.log2(e)),this._cubeSize=Math.pow(2,this._lodMax)}_dispose(){this._blurMaterial!==null&&this._blurMaterial.dispose(),this._pingPongRenderTarget!==null&&this._pingPongRenderTarget.dispose();for(let e=0;e2?R:0,R,R),u.render(e,s)}u.autoClear=h,e.background=x}_textureToCubeUV(e,t){const n=this._renderer,r=e.mapping===Qo||e.mapping===Ko;r?this._cubemapMaterial===null&&(this._cubemapMaterial=pN(e)):this._equirectMaterial===null&&(this._equirectMaterial=mN(e));const s=r?this._cubemapMaterial:this._equirectMaterial;s.fragmentNode.value=e;const a=this._lodMeshes[0];a.material=s;const l=this._cubeSize;gv(t,0,0,3*l,2*l),n.setRenderTarget(t),n.render(a,cS)}_applyPMREM(e){const t=this._renderer,n=t.autoClear;t.autoClear=!1;const r=this._lodPlanes.length;for(let s=1;sGf&&console.warn(`sigmaRadians, ${s}, is too large and will clip, as it requested ${C} samples when the maximum is set to ${Gf}`);const E=[];let B=0;for(let k=0;kL-Kd?r-L+Kd:0),G=4*(this._cubeSize-O);gv(t,z,G,3*O,2*O),u.setRenderTarget(t),u.render(v,cS)}}function jae(i){const e=[],t=[],n=[],r=[];let s=i;const a=i-Kd+1+hN.length;for(let l=0;li-Kd?h=hN[l-i+Kd-1]:l===0&&(h=0),n.push(h);const g=1/(u-2),v=-g,x=1+g,S=[v,v,x,v,x,x,v,v,x,x,v,x],w=6,R=6,C=3,E=2,B=1,L=new Float32Array(C*R*w),O=new Float32Array(E*R*w),z=new Float32Array(B*R*w);for(let k=0;k2?0:-1,V=[H,F,0,H+2/3,F,0,H+2/3,F+1,0,H,F,0,H+2/3,F+1,0,H,F+1,0],Y=Vae[k];L.set(V,C*R*Y),O.set(S,E*R*Y);const ee=[Y,Y,Y,Y,Y,Y];z.set(ee,B*R*Y)}const G=new Ki;G.setAttribute("position",new wr(L,C)),G.setAttribute("uv",new wr(O,E)),G.setAttribute("faceIndex",new wr(z,B)),e.push(G),r.push(new zi(G,null)),s>Kd&&s--}return{lodPlanes:e,sizeLods:t,sigmas:n,lodMeshes:r}}function dN(i,e,t){const n=new Wh(i,e,t);return n.texture.mapping=sA,n.texture.name="PMREM.cubeUv",n.texture.isPMREMTexture=!0,n.scissorTest=!0,n}function gv(i,e,t,n,r){i.viewport.set(e,t,n,r),i.scissor.set(e,t,n,r)}function FE(i){const e=new Vr;return e.depthTest=!1,e.depthWrite=!1,e.blending=Qa,e.name=`PMREM_${i}`,e}function Wae(i,e,t){const n=Sc(new Array(Gf).fill(0)),r=gn(new ce(0,1,0)),s=gn(0),a=ve(Gf),l=gn(0),u=gn(1),h=Ai(null),g=gn(0),v=ve(1/e),x=ve(1/t),S=ve(i),w={n:a,latitudinal:l,weights:n,poleAxis:r,outputDirection:IE,dTheta:s,samples:u,envMap:h,mipInt:g,CUBEUV_TEXEL_WIDTH:v,CUBEUV_TEXEL_HEIGHT:x,CUBEUV_MAX_MIP:S},R=FE("blur");return R.uniforms=w,R.fragmentNode=XU({...w,latitudinal:l.equal(1)}),R}function pN(i){const e=FE("cubemap");return e.fragmentNode=I0(i,IE),e}function mN(i){const e=FE("equirect");return e.fragmentNode=Ai(i,mE(IE),0),e}const gN=new WeakMap,$ae=new Map([[Int8Array,"int"],[Int16Array,"int"],[Int32Array,"int"],[Uint8Array,"uint"],[Uint16Array,"uint"],[Uint32Array,"uint"],[Float32Array,"float"]]),vv=i=>/e/g.test(i)?String(i).replace(/\+/g,""):(i=Number(i),i+(i%1?"":".0"));class $B{constructor(e,t,n){this.object=e,this.material=e&&e.material||null,this.geometry=e&&e.geometry||null,this.renderer=t,this.parser=n,this.scene=null,this.camera=null,this.nodes=[],this.sequentialNodes=[],this.updateNodes=[],this.updateBeforeNodes=[],this.updateAfterNodes=[],this.hashNodes={},this.monitor=null,this.lightsNode=null,this.environmentNode=null,this.fogNode=null,this.clippingContext=null,this.vertexShader=null,this.fragmentShader=null,this.computeShader=null,this.flowNodes={vertex:[],fragment:[],compute:[]},this.flowCode={vertex:"",fragment:"",compute:""},this.uniforms={vertex:[],fragment:[],compute:[],index:0},this.structs={vertex:[],fragment:[],compute:[],index:0},this.bindings={vertex:{},fragment:{},compute:{}},this.bindingsIndexes={},this.bindGroups=null,this.attributes=[],this.bufferAttributes=[],this.varyings=[],this.codes={},this.vars={},this.flow={code:""},this.chaining=[],this.stack=e_(),this.stacks=[],this.tab=" ",this.currentFunctionNode=null,this.context={material:this.material},this.cache=new uS,this.globalCache=this.cache,this.flowsData=new WeakMap,this.shaderStage=null,this.buildStage=null,this.useComparisonMethod=!1}getBindGroupsCache(){let e=gN.get(this.renderer);return e===void 0&&(e=new Su,gN.set(this.renderer,e)),e}createRenderTarget(e,t,n){return new Wh(e,t,n)}createCubeRenderTarget(e,t){return new PU(e,t)}createPMREMGenerator(){return new Hae(this.renderer)}includes(e){return this.nodes.includes(e)}_getBindGroup(e,t){const n=this.getBindGroupsCache(),r=[];let s=!0;for(const l of t)r.push(l),s=s&&l.groupNode.shared!==!0;let a;return s?(a=n.get(r),a===void 0&&(a=new tw(e,r,this.bindingsIndexes[e].group,r),n.set(r,a))):a=new tw(e,r,this.bindingsIndexes[e].group,r),a}getBindGroupArray(e,t){const n=this.bindings[t];let r=n[e];return r===void 0&&(this.bindingsIndexes[e]===void 0&&(this.bindingsIndexes[e]={binding:0,group:Object.keys(this.bindingsIndexes).length}),n[e]=r=[]),r}getBindings(){let e=this.bindGroups;if(e===null){const t={},n=this.bindings;for(const r of kT)for(const s in n[r]){const a=n[r][s];(t[s]||(t[s]=[])).push(...a)}e=[];for(const r in t){const s=t[r],a=this._getBindGroup(r,s);e.push(a)}this.bindGroups=e}return e}sortBindingGroups(){const e=this.getBindings();e.sort((t,n)=>t.bindings[0].groupNode.order-n.bindings[0].groupNode.order);for(let t=0;t=0?`${Math.round(t)}u`:"0u";if(e==="bool")return t?"true":"false";if(e==="color")return`${this.getType("vec3")}( ${vv(t.r)}, ${vv(t.g)}, ${vv(t.b)} )`;const n=this.getTypeLength(e),r=this.getComponentType(e),s=a=>this.generateConst(r,a);if(n===2)return`${this.getType(e)}( ${s(t.x)}, ${s(t.y)} )`;if(n===3)return`${this.getType(e)}( ${s(t.x)}, ${s(t.y)}, ${s(t.z)} )`;if(n===4)return`${this.getType(e)}( ${s(t.x)}, ${s(t.y)}, ${s(t.z)}, ${s(t.w)} )`;if(n>4&&t&&(t.isMatrix3||t.isMatrix4))return`${this.getType(e)}( ${t.elements.map(s).join(", ")} )`;if(n>4)return`${this.getType(e)}()`;throw new Error(`NodeBuilder: Type '${e}' not found in generate constant attempt.`)}getType(e){return e==="color"?"vec3":e}hasGeometryAttribute(e){return this.geometry&&this.geometry.getAttribute(e)!==void 0}getAttribute(e,t){const n=this.attributes;for(const s of n)if(s.name===e)return s;const r=new cN(e,t);return n.push(r),r}getPropertyName(e){return e.name}isVector(e){return/vec\d/.test(e)}isMatrix(e){return/mat\d/.test(e)}isReference(e){return e==="void"||e==="property"||e==="sampler"||e==="texture"||e==="cubeTexture"||e==="storageTexture"||e==="depthTexture"||e==="texture3D"}needsToWorkingColorSpace(){return!1}getComponentTypeFromTexture(e){const t=e.type;if(e.isDataTexture){if(t===Ns)return"int";if(t===Rr)return"uint"}return"float"}getElementType(e){return e==="mat2"?"vec2":e==="mat3"?"vec3":e==="mat4"?"vec4":this.getComponentType(e)}getComponentType(e){if(e=this.getVectorType(e),e==="float"||e==="bool"||e==="int"||e==="uint")return e;const t=/(b|i|u|)(vec|mat)([2-4])/.exec(e);return t===null?null:t[1]==="b"?"bool":t[1]==="i"?"int":t[1]==="u"?"uint":"float"}getVectorType(e){return e==="color"?"vec3":e==="texture"||e==="cubeTexture"||e==="storageTexture"||e==="texture3D"?"vec4":e}getTypeFromLength(e,t="float"){if(e===1)return t;const n=LP(e);return(t==="float"?"":t[0])+n}getTypeFromArray(e){return $ae.get(e.constructor)}getTypeFromAttribute(e){let t=e;e.isInterleavedBufferAttribute&&(t=e.data);const n=t.array,r=e.itemSize,s=e.normalized;let a;return!(e instanceof z7)&&s!==!0&&(a=this.getTypeFromArray(n)),this.getTypeFromLength(r,a)}getTypeLength(e){const t=this.getVectorType(e),n=/vec([2-4])/.exec(t);return n!==null?Number(n[1]):t==="float"||t==="bool"||t==="int"||t==="uint"?1:/mat2/.test(e)===!0?4:/mat3/.test(e)===!0?9:/mat4/.test(e)===!0?16:0}getVectorFromMatrix(e){return e.replace("mat","vec")}changeComponentType(e,t){return this.getTypeFromLength(this.getTypeLength(e),t)}getIntegerType(e){const t=this.getComponentType(e);return t==="int"||t==="uint"?e:this.changeComponentType(e,"int")}addStack(){return this.stack=e_(this.stack),this.stacks.push(PM()||this.stack),bg(this.stack),this.stack}removeStack(){const e=this.stack;return this.stack=e.parent,bg(this.stacks.pop()),e}getDataFromNode(e,t=this.shaderStage,n=null){n=n===null?e.isGlobal(this)?this.globalCache:this.cache:n;let r=n.getData(e);return r===void 0&&(r={},n.setData(e,r)),r[t]===void 0&&(r[t]={}),r[t]}getNodeProperties(e,t="any"){const n=this.getDataFromNode(e,t);return n.properties||(n.properties={outputNode:null})}getBufferAttributeFromNode(e,t){const n=this.getDataFromNode(e);let r=n.bufferAttribute;if(r===void 0){const s=this.uniforms.index++;r=new cN("nodeAttribute"+s,t,e),this.bufferAttributes.push(r),n.bufferAttribute=r}return r}getStructTypeFromNode(e,t,n=this.shaderStage){const r=this.getDataFromNode(e,n);let s=r.structType;if(s===void 0){const a=this.structs.index++;s=new Eae("StructType"+a,t),this.structs[n].push(s),r.structType=s}return s}getUniformFromNode(e,t,n=this.shaderStage,r=null){const s=this.getDataFromNode(e,n,this.globalCache);let a=s.uniform;if(a===void 0){const l=this.uniforms.index++;a=new Sae(r||"nodeUniform"+l,t,e),this.uniforms[n].push(a),s.uniform=a}return a}getVarFromNode(e,t=null,n=e.getNodeType(this),r=this.shaderStage){const s=this.getDataFromNode(e,r);let a=s.variable;if(a===void 0){const l=this.vars[r]||(this.vars[r]=[]);t===null&&(t="nodeVar"+l.length),a=new WB(t,n),l.push(a),s.variable=a}return a}getVaryingFromNode(e,t=null,n=e.getNodeType(this)){const r=this.getDataFromNode(e,"any");let s=r.varying;if(s===void 0){const a=this.varyings,l=a.length;t===null&&(t="nodeVarying"+l),s=new Tae(t,n),a.push(s),r.varying=s}return s}getCodeFromNode(e,t,n=this.shaderStage){const r=this.getDataFromNode(e);let s=r.code;if(s===void 0){const a=this.codes[n]||(this.codes[n]=[]),l=a.length;s=new wae("nodeCode"+l,t),a.push(s),r.code=s}return s}addFlowCodeHierarchy(e,t){const{flowCodes:n,flowCodeBlock:r}=this.getDataFromNode(e);let s=!0,a=t;for(;a;){if(r.get(a)===!0){s=!1;break}a=this.getDataFromNode(a).parentNodeBlock}if(s)for(const l of n)this.addLineFlowCode(l)}addLineFlowCodeBlock(e,t,n){const r=this.getDataFromNode(e),s=r.flowCodes||(r.flowCodes=[]),a=r.flowCodeBlock||(r.flowCodeBlock=new WeakMap);s.push(t),a.set(n,!0)}addLineFlowCode(e,t=null){return e===""?this:(t!==null&&this.context.nodeBlock&&this.addLineFlowCodeBlock(t,e,this.context.nodeBlock),e=this.tab+e,/;\s*$/.test(e)||(e=e+`; -`),this.flow.code+=e,this)}addFlowCode(e){return this.flow.code+=e,this}addFlowTab(){return this.tab+=" ",this}removeFlowTab(){return this.tab=this.tab.slice(0,-1),this}getFlowData(e){return this.flowsData.get(e)}flowNode(e){const t=e.getNodeType(this),n=this.flowChildNode(e,t);return this.flowsData.set(e,n),n}buildFunctionNode(e){const t=new bB,n=this.currentFunctionNode;return this.currentFunctionNode=t,t.code=this.buildFunctionCode(e),this.currentFunctionNode=n,t}flowShaderNode(e){const t=e.layout,n={[Symbol.iterator](){let a=0;const l=Object.values(this);return{next:()=>({value:l[a],done:a++>=l.length})}}};for(const a of t.inputs)n[a.name]=new eB(a.type,a.name);e.layout=null;const r=e.call(n),s=this.flowStagesNode(r,t.type);return e.layout=t,s}flowStagesNode(e,t=null){const n=this.flow,r=this.vars,s=this.cache,a=this.buildStage,l=this.stack,u={code:""};this.flow=u,this.vars={},this.cache=new uS,this.stack=e_();for(const h of FT)this.setBuildStage(h),u.result=e.build(this,t);return u.vars=this.getVars(this.shaderStage),this.flow=n,this.vars=r,this.cache=s,this.stack=l,this.setBuildStage(a),u}getFunctionOperator(){return null}flowChildNode(e,t=null){const n=this.flow,r={code:""};return this.flow=r,r.result=e.build(this,t),this.flow=n,r}flowNodeFromShaderStage(e,t,n=null,r=null){const s=this.shaderStage;this.setShaderStage(e);const a=this.flowChildNode(t,n);return r!==null&&(a.code+=`${this.tab+r} = ${a.result}; -`),this.flowCode[e]=this.flowCode[e]+a.code,this.setShaderStage(s),a}getAttributesArray(){return this.attributes.concat(this.bufferAttributes)}getAttributes(){console.warn("Abstract function.")}getVaryings(){console.warn("Abstract function.")}getVar(e,t){return`${this.getType(e)} ${t}`}getVars(e){let t="";const n=this.vars[e];if(n!==void 0)for(const r of n)t+=`${this.getVar(r.type,r.name)}; `;return t}getUniforms(){console.warn("Abstract function.")}getCodes(e){const t=this.codes[e];let n="";if(t!==void 0)for(const r of t)n+=r.code+` -`;return n}getHash(){return this.vertexShader+this.fragmentShader+this.computeShader}setShaderStage(e){this.shaderStage=e}getShaderStage(){return this.shaderStage}setBuildStage(e){this.buildStage=e}getBuildStage(){return this.buildStage}buildCode(){console.warn("Abstract function.")}build(){const{object:e,material:t,renderer:n}=this;if(t!==null){let r=n.library.fromMaterial(t);r===null&&(console.error(`NodeMaterial: Material "${t.type}" is not compatible.`),r=new Vr),r.build(this)}else this.addFlow("compute",e);for(const r of FT){this.setBuildStage(r),this.context.vertex&&this.context.vertex.isNode&&this.flowNodeFromShaderStage("vertex",this.context.vertex);for(const s of kT){this.setShaderStage(s);const a=this.flowNodes[s];for(const l of a)r==="generate"?this.flowNode(l):l.build(this)}}return this.setBuildStage(null),this.setShaderStage(null),this.buildCode(),this.buildUpdateNodes(),this}getNodeUniform(e,t){if(t==="float"||t==="int"||t==="uint")return new Bae(e);if(t==="vec2"||t==="ivec2"||t==="uvec2")return new Oae(e);if(t==="vec3"||t==="ivec3"||t==="uvec3")return new Iae(e);if(t==="vec4"||t==="ivec4"||t==="uvec4")return new Fae(e);if(t==="color")return new kae(e);if(t==="mat3")return new zae(e);if(t==="mat4")return new Gae(e);throw new Error(`Uniform "${t}" not declared.`)}format(e,t,n){if(t=this.getVectorType(t),n=this.getVectorType(n),t===n||n===null||this.isReference(n))return e;const r=this.getTypeLength(t),s=this.getTypeLength(n);return r===16&&s===9?`${this.getType(n)}(${e}[0].xyz, ${e}[1].xyz, ${e}[2].xyz)`:r===9&&s===4?`${this.getType(n)}(${e}[0].xy, ${e}[1].xy)`:r>4||s>4||s===0?e:r===s?`${this.getType(n)}( ${e} )`:r>s?this.format(`${e}.${"xyz".slice(0,s)}`,this.getTypeFromLength(s,this.getComponentType(t)),n):s===4&&r>1?`${this.getType(n)}( ${this.format(e,t,"vec3")}, 1.0 )`:r===2?`${this.getType(n)}( ${this.format(e,t,"vec2")}, 0.0 )`:(r===1&&s>1&&t!==this.getComponentType(n)&&(e=`${this.getType(this.getComponentType(n))}( ${e} )`),`${this.getType(n)}( ${e} )`)}getSignature(){return`// Three.js r${V0} - Node System -`}createNodeMaterial(e="NodeMaterial"){throw new Error(`THREE.NodeBuilder: createNodeMaterial() was deprecated. Use new ${e}() instead.`)}}class vN{constructor(){this.time=0,this.deltaTime=0,this.frameId=0,this.renderId=0,this.updateMap=new WeakMap,this.updateBeforeMap=new WeakMap,this.updateAfterMap=new WeakMap,this.renderer=null,this.material=null,this.camera=null,this.object=null,this.scene=null}_getMaps(e,t){let n=e.get(t);return n===void 0&&(n={renderMap:new WeakMap,frameMap:new WeakMap},e.set(t,n)),n}updateBeforeNode(e){const t=e.getUpdateBeforeType(),n=e.updateReference(this);if(t===jn.FRAME){const{frameMap:r}=this._getMaps(this.updateBeforeMap,n);r.get(n)!==this.frameId&&e.updateBefore(this)!==!1&&r.set(n,this.frameId)}else if(t===jn.RENDER){const{renderMap:r}=this._getMaps(this.updateBeforeMap,n);r.get(n)!==this.renderId&&e.updateBefore(this)!==!1&&r.set(n,this.renderId)}else t===jn.OBJECT&&e.updateBefore(this)}updateAfterNode(e){const t=e.getUpdateAfterType(),n=e.updateReference(this);if(t===jn.FRAME){const{frameMap:r}=this._getMaps(this.updateAfterMap,n);r.get(n)!==this.frameId&&e.updateAfter(this)!==!1&&r.set(n,this.frameId)}else if(t===jn.RENDER){const{renderMap:r}=this._getMaps(this.updateAfterMap,n);r.get(n)!==this.renderId&&e.updateAfter(this)!==!1&&r.set(n,this.renderId)}else t===jn.OBJECT&&e.updateAfter(this)}updateNode(e){const t=e.getUpdateType(),n=e.updateReference(this);if(t===jn.FRAME){const{frameMap:r}=this._getMaps(this.updateMap,n);r.get(n)!==this.frameId&&e.update(this)!==!1&&r.set(n,this.frameId)}else if(t===jn.RENDER){const{renderMap:r}=this._getMaps(this.updateMap,n);r.get(n)!==this.renderId&&e.update(this)!==!1&&r.set(n,this.renderId)}else t===jn.OBJECT&&e.update(this)}update(){this.frameId++,this.lastTime===void 0&&(this.lastTime=performance.now()),this.deltaTime=(performance.now()-this.lastTime)/1e3,this.lastTime=performance.now(),this.time+=this.deltaTime}}class kE{constructor(e,t,n=null,r="",s=!1){this.type=e,this.name=t,this.count=n,this.qualifier=r,this.isConst=s}}kE.isNodeFunctionInput=!0;class Xae extends xA{static get type(){return"DirectionalLightNode"}constructor(e=null){super(e)}setup(e){super.setup(e);const t=e.context.lightingModel,n=this.colorNode,r=DE(this.light),s=e.context.reflectedLight;t.direct({lightDirection:r,lightColor:n,reflectedLight:s},e.stack,e)}}const pS=new kn,_v=new kn;let dm=null;class Yae extends xA{static get type(){return"RectAreaLightNode"}constructor(e=null){super(e),this.halfHeight=gn(new ce).setGroup(Rn),this.halfWidth=gn(new ce).setGroup(Rn),this.updateType=jn.RENDER}update(e){super.update(e);const{light:t}=this,n=e.camera.matrixWorldInverse;_v.identity(),pS.copy(t.matrixWorld),pS.premultiply(n),_v.extractRotation(pS),this.halfWidth.value.set(t.width*.5,0,0),this.halfHeight.value.set(0,t.height*.5,0),this.halfWidth.value.applyMatrix4(_v),this.halfHeight.value.applyMatrix4(_v)}setup(e){super.setup(e);let t,n;e.isAvailable("float32Filterable")?(t=Ai(dm.LTC_FLOAT_1),n=Ai(dm.LTC_FLOAT_2)):(t=Ai(dm.LTC_HALF_1),n=Ai(dm.LTC_HALF_2));const{colorNode:r,light:s}=this,a=e.context.lightingModel,l=Jy(s),u=e.context.reflectedLight;a.directRectArea({lightColor:r,lightPosition:l,halfWidth:this.halfWidth,halfHeight:this.halfHeight,reflectedLight:u,ltc_1:t,ltc_2:n},e.stack,e)}static setLTC(e){dm=e}}class XB extends xA{static get type(){return"SpotLightNode"}constructor(e=null){super(e),this.coneCosNode=gn(0).setGroup(Rn),this.penumbraCosNode=gn(0).setGroup(Rn),this.cutoffDistanceNode=gn(0).setGroup(Rn),this.decayExponentNode=gn(0).setGroup(Rn)}update(e){super.update(e);const{light:t}=this;this.coneCosNode.value=Math.cos(t.angle),this.penumbraCosNode.value=Math.cos(t.angle*(1-t.penumbra)),this.cutoffDistanceNode.value=t.distance,this.decayExponentNode.value=t.decay}getSpotAttenuation(e){const{coneCosNode:t,penumbraCosNode:n}=this;return kc(t,n,e)}setup(e){super.setup(e);const t=e.context.lightingModel,{colorNode:n,cutoffDistanceNode:r,decayExponentNode:s,light:a}=this,l=Jy(a).sub(Xr),u=l.normalize(),h=u.dot(DE(a)),g=this.getSpotAttenuation(h),v=l.length(),x=UE({lightDistance:v,cutoffDistance:r,decayExponent:s});let S=n.mul(g).mul(x);if(a.map){const R=MB(a),C=Ai(a.map,R.xy).onRenderUpdate(()=>a.map);S=R.mul(2).sub(1).abs().lessThan(1).all().select(S.mul(C),S)}const w=e.context.reflectedLight;t.direct({lightDirection:u,lightColor:S,reflectedLight:w},e.stack,e)}}class Qae extends XB{static get type(){return"IESSpotLightNode"}getSpotAttenuation(e){const t=this.light.iesMap;let n=null;if(t&&t.isTexture===!0){const r=e.acos().mul(1/Math.PI);n=Ai(t,wt(r,0),0).r}else n=super.getSpotAttenuation(e);return n}}class Kae extends xA{static get type(){return"AmbientLightNode"}constructor(e=null){super(e)}setup({context:e}){e.irradiance.addAssign(this.colorNode)}}class Zae extends xA{static get type(){return"HemisphereLightNode"}constructor(e=null){super(e),this.lightPositionNode=NE(e),this.lightDirectionNode=this.lightPositionNode.normalize(),this.groundColorNode=gn(new an).setGroup(Rn)}update(e){const{light:t}=this;super.update(e),this.lightPositionNode.object3d=t,this.groundColorNode.value.copy(t.groundColor).multiplyScalar(t.intensity)}setup(e){const{colorNode:t,groundColorNode:n,lightDirectionNode:r}=this,a=Jo.dot(r).mul(.5).add(.5),l=Fi(n,t,a);e.context.irradiance.addAssign(l)}}class Jae extends xA{static get type(){return"LightProbeNode"}constructor(e=null){super(e);const t=[];for(let n=0;n<9;n++)t.push(new ce);this.lightProbe=Sc(t)}update(e){const{light:t}=this;super.update(e);for(let n=0;n<9;n++)this.lightProbe.array[n].copy(t.sh.coefficients[n]).multiplyScalar(t.intensity)}setup(e){const t=jB(Vy,this.lightProbe);e.context.irradiance.addAssign(t)}}class YB{parseFunction(){console.warn("Abstract function.")}}class zE{constructor(e,t,n="",r=""){this.type=e,this.inputs=t,this.name=n,this.precision=r}getCode(){console.warn("Abstract function.")}}zE.isNodeFunction=!0;const eoe=/^\s*(highp|mediump|lowp)?\s*([a-z_0-9]+)\s*([a-z_0-9]+)?\s*\(([\s\S]*?)\)/i,toe=/[a-z_0-9]+/ig,_N="#pragma main",noe=i=>{i=i.trim();const e=i.indexOf(_N),t=e!==-1?i.slice(e+_N.length):i,n=t.match(eoe);if(n!==null&&n.length===5){const r=n[4],s=[];let a=null;for(;(a=toe.exec(r))!==null;)s.push(a);const l=[];let u=0;for(;u0||e.backgroundBlurriness>0&&t.backgroundBlurriness===0;if(t.background!==n||r){const s=this.getCacheNode("background",n,()=>{if(n.isCubeTexture===!0||n.mapping===zh||n.mapping===Gh||n.mapping===sA){if(e.backgroundBlurriness>0||n.mapping===sA)return yE(n);{let a;return n.isCubeTexture===!0?a=I0(n):a=Ai(n),UU(a)}}else{if(n.isTexture===!0)return Ai(n,bu.flipY()).setUpdateMatrix(!0);n.isColor!==!0&&console.error("WebGPUNodes: Unsupported background configuration.",n)}},r);t.backgroundNode=s,t.background=n,t.backgroundBlurriness=e.backgroundBlurriness}}else t.backgroundNode&&(delete t.backgroundNode,delete t.background)}getCacheNode(e,t,n,r=!1){const s=this.cacheLib[e]||(this.cacheLib[e]=new WeakMap);let a=s.get(t);return(a===void 0||r)&&(a=n(),s.set(t,a)),a}updateFog(e){const t=this.get(e),n=e.fog;if(n){if(t.fog!==n){const r=this.getCacheNode("fog",n,()=>{if(n.isFogExp2){const s=ji("color","color",n).setGroup(Rn),a=ji("density","float",n).setGroup(Rn);return Ng(s,EE(a))}else if(n.isFog){const s=ji("color","color",n).setGroup(Rn),a=ji("near","float",n).setGroup(Rn),l=ji("far","float",n).setGroup(Rn);return Ng(s,ME(a,l))}else console.error("THREE.Renderer: Unsupported fog configuration.",n)});t.fogNode=r,t.fog=n}}else delete t.fogNode,delete t.fog}updateEnvironment(e){const t=this.get(e),n=e.environment;if(n){if(t.environment!==n){const r=this.getCacheNode("environment",n,()=>{if(n.isCubeTexture===!0)return I0(n);if(n.isTexture===!0)return Ai(n);console.error("Nodes: Unsupported environment configuration.",n)});t.environmentNode=r,t.environment=n}}else t.environmentNode&&(delete t.environmentNode,delete t.environment)}getNodeFrame(e=this.renderer,t=null,n=null,r=null,s=null){const a=this.nodeFrame;return a.renderer=e,a.scene=t,a.object=n,a.camera=r,a.material=s,a}getNodeFrameForRender(e){return this.getNodeFrame(e.renderer,e.scene,e.object,e.camera,e.material)}getOutputCacheKey(){const e=this.renderer;return e.toneMapping+","+e.currentColorSpace}hasOutputChange(e){return yN.get(e)!==this.getOutputCacheKey()}getOutputNode(e){const t=this.renderer,n=this.getOutputCacheKey(),r=Ai(e,bu).renderOutput(t.toneMapping,t.currentColorSpace);return yN.set(e,n),r}updateBefore(e){const t=e.getNodeBuilderState();for(const n of t.updateBeforeNodes)this.getNodeFrameForRender(e).updateBeforeNode(n)}updateAfter(e){const t=e.getNodeBuilderState();for(const n of t.updateAfterNodes)this.getNodeFrameForRender(e).updateAfterNode(n)}updateForCompute(e){const t=this.getNodeFrame(),n=this.getForCompute(e);for(const r of n.updateNodes)t.updateNode(r)}updateForRender(e){const t=this.getNodeFrameForRender(e),n=e.getNodeBuilderState();for(const r of n.updateNodes)t.updateNode(r)}needsRefresh(e){const t=this.getNodeFrameForRender(e);return e.getMonitor().needsRefresh(e,t)}dispose(){super.dispose(),this.nodeFrame=new vN,this.nodeBuilderCache=new Map,this.cacheLib={}}}const mS=new Yl;class ay{constructor(e=null){this.version=0,this.clipIntersection=null,this.cacheKey="",this.shadowPass=!1,this.viewNormalMatrix=new Vn,this.clippingGroupContexts=new WeakMap,this.intersectionPlanes=[],this.unionPlanes=[],this.parentVersion=null,e!==null&&(this.viewNormalMatrix=e.viewNormalMatrix,this.clippingGroupContexts=e.clippingGroupContexts,this.shadowPass=e.shadowPass,this.viewMatrix=e.viewMatrix)}projectPlanes(e,t,n){const r=e.length;for(let s=0;s{await this.compileAsync(v,x);const w=this._renderLists.get(v,x),R=this._renderContexts.get(v,x,this._renderTarget),C=v.overrideMaterial||S.material,E=this._objects.get(S,C,v,x,w.lightsNode,R,R.clippingContext),{fragmentShader:B,vertexShader:L}=E.getNodeBuilderState();return{fragmentShader:B,vertexShader:L}}}}async init(){if(this._initialized)throw new Error("Renderer: Backend has already been initialized.");return this._initPromise!==null?this._initPromise:(this._initPromise=new Promise(async(e,t)=>{let n=this.backend;try{await n.init(this)}catch(r){if(this._getFallback!==null)try{this.backend=n=this._getFallback(r),await n.init(this)}catch(s){t(s);return}else{t(r);return}}this._nodes=new soe(this,n),this._animation=new lne(this._nodes,this.info),this._attributes=new pne(n),this._background=new yae(this,this._nodes),this._geometries=new gne(this._attributes,this.info),this._textures=new Dne(this,n,this.info),this._pipelines=new bne(n,this._nodes),this._bindings=new Sne(n,this._nodes,this._textures,this._attributes,this._pipelines,this.info),this._objects=new fne(this,this._nodes,this._geometries,this._pipelines,this._bindings,this.info),this._renderLists=new Mne(this.lighting),this._bundles=new ooe,this._renderContexts=new Rne,this._animation.start(),this._initialized=!0,e()}),this._initPromise)}get coordinateSystem(){return this.backend.coordinateSystem}async compileAsync(e,t,n=null){if(this._isDeviceLost===!0)return;this._initialized===!1&&await this.init();const r=this._nodes.nodeFrame,s=r.renderId,a=this._currentRenderContext,l=this._currentRenderObjectFunction,u=this._compilationPromises,h=e.isScene===!0?e:xN;n===null&&(n=e);const g=this._renderTarget,v=this._renderContexts.get(n,t,g),x=this._activeMipmapLevel,S=[];this._currentRenderContext=v,this._currentRenderObjectFunction=this.renderObject,this._handleObjectFunction=this._createObjectPipeline,this._compilationPromises=S,r.renderId++,r.update(),v.depth=this.depth,v.stencil=this.stencil,v.clippingContext||(v.clippingContext=new ay),v.clippingContext.updateGlobal(h,t),h.onBeforeRender(this,e,t,g);const w=this._renderLists.get(e,t);if(w.begin(),this._projectObject(e,t,0,w,v.clippingContext),n!==e&&n.traverseVisible(function(L){L.isLight&&L.layers.test(t.layers)&&w.pushLight(L)}),w.finish(),g!==null){this._textures.updateRenderTarget(g,x);const L=this._textures.get(g);v.textures=L.textures,v.depthTexture=L.depthTexture}else v.textures=null,v.depthTexture=null;this._background.update(h,w,v);const R=w.opaque,C=w.transparent,E=w.transparentDoublePass,B=w.lightsNode;this.opaque===!0&&R.length>0&&this._renderObjects(R,t,h,B),this.transparent===!0&&C.length>0&&this._renderTransparents(C,E,t,h,B),r.renderId=s,this._currentRenderContext=a,this._currentRenderObjectFunction=l,this._compilationPromises=u,this._handleObjectFunction=this._renderObjectDirect,await Promise.all(S)}async renderAsync(e,t){this._initialized===!1&&await this.init();const n=this._renderScene(e,t);await this.backend.resolveTimestampAsync(n,"render")}async waitForGPU(){await this.backend.waitForGPU()}setMRT(e){return this._mrt=e,this}getMRT(){return this._mrt}_onDeviceLost(e){let t=`THREE.WebGPURenderer: ${e.api} Device Lost: - -Message: ${e.message}`;e.reason&&(t+=` -Reason: ${e.reason}`),console.error(t),this._isDeviceLost=!0}_renderBundle(e,t,n){const{bundleGroup:r,camera:s,renderList:a}=e,l=this._currentRenderContext,u=this._bundles.get(r,s),h=this.backend.get(u);h.renderContexts===void 0&&(h.renderContexts=new Set);const g=r.version!==h.version,v=h.renderContexts.has(l)===!1||g;if(h.renderContexts.add(l),v){this.backend.beginBundle(l),(h.renderObjects===void 0||g)&&(h.renderObjects=[]),this._currentRenderBundle=u;const x=a.opaque;this.opaque===!0&&x.length>0&&this._renderObjects(x,s,t,n),this._currentRenderBundle=null,this.backend.finishBundle(l,u),h.version=r.version}else{const{renderObjects:x}=h;for(let S=0,w=x.length;S>=x,w.viewportValue.height>>=x,w.viewportValue.minDepth=L,w.viewportValue.maxDepth=O,w.viewport=w.viewportValue.equals(gS)===!1,w.scissorValue.copy(E).multiplyScalar(B).floor(),w.scissor=this._scissorTest&&w.scissorValue.equals(gS)===!1,w.scissorValue.width>>=x,w.scissorValue.height>>=x,w.clippingContext||(w.clippingContext=new ay),w.clippingContext.updateGlobal(h,t),h.onBeforeRender(this,e,t,S),xv.multiplyMatrices(t.projectionMatrix,t.matrixWorldInverse),vS.setFromProjectionMatrix(xv,R);const z=this._renderLists.get(e,t);if(z.begin(),this._projectObject(e,t,0,z,w.clippingContext),z.finish(),this.sortObjects===!0&&z.sort(this._opaqueSort,this._transparentSort),S!==null){this._textures.updateRenderTarget(S,x);const Y=this._textures.get(S);w.textures=Y.textures,w.depthTexture=Y.depthTexture,w.width=Y.width,w.height=Y.height,w.renderTarget=S,w.depth=S.depthBuffer,w.stencil=S.stencilBuffer}else w.textures=null,w.depthTexture=null,w.width=this.domElement.width,w.height=this.domElement.height,w.depth=this.depth,w.stencil=this.stencil;w.width>>=x,w.height>>=x,w.activeCubeFace=v,w.activeMipmapLevel=x,w.occlusionQueryCount=z.occlusionQueryCount,this._background.update(h,z,w),this.backend.beginRender(w);const{bundles:G,lightsNode:k,transparentDoublePass:H,transparent:F,opaque:V}=z;if(G.length>0&&this._renderBundles(G,h,k),this.opaque===!0&&V.length>0&&this._renderObjects(V,t,h,k),this.transparent===!0&&F.length>0&&this._renderTransparents(F,H,t,h,k),this.backend.finishRender(w),s.renderId=a,this._currentRenderContext=l,this._currentRenderObjectFunction=u,r!==null){this.setRenderTarget(g,v,x);const Y=this._quad;this._nodes.hasOutputChange(S.texture)&&(Y.material.fragmentNode=this._nodes.getOutputNode(S.texture),Y.material.needsUpdate=!0),this._renderScene(Y,Y.camera,!1)}return h.onAfterRender(this,e,t,S),w}getMaxAnisotropy(){return this.backend.getMaxAnisotropy()}getActiveCubeFace(){return this._activeCubeFace}getActiveMipmapLevel(){return this._activeMipmapLevel}async setAnimationLoop(e){this._initialized===!1&&await this.init(),this._animation.setAnimationLoop(e)}async getArrayBufferAsync(e){return await this.backend.getArrayBufferAsync(e)}getContext(){return this.backend.getContext()}getPixelRatio(){return this._pixelRatio}getDrawingBufferSize(e){return e.set(this._width*this._pixelRatio,this._height*this._pixelRatio).floor()}getSize(e){return e.set(this._width,this._height)}setPixelRatio(e=1){this._pixelRatio!==e&&(this._pixelRatio=e,this.setSize(this._width,this._height,!1))}setDrawingBufferSize(e,t,n){this._width=e,this._height=t,this._pixelRatio=n,this.domElement.width=Math.floor(e*n),this.domElement.height=Math.floor(t*n),this.setViewport(0,0,e,t),this._initialized&&this.backend.updateSize()}setSize(e,t,n=!0){this._width=e,this._height=t,this.domElement.width=Math.floor(e*this._pixelRatio),this.domElement.height=Math.floor(t*this._pixelRatio),n===!0&&(this.domElement.style.width=e+"px",this.domElement.style.height=t+"px"),this.setViewport(0,0,e,t),this._initialized&&this.backend.updateSize()}setOpaqueSort(e){this._opaqueSort=e}setTransparentSort(e){this._transparentSort=e}getScissor(e){const t=this._scissor;return e.x=t.x,e.y=t.y,e.width=t.width,e.height=t.height,e}setScissor(e,t,n,r){const s=this._scissor;e.isVector4?s.copy(e):s.set(e,t,n,r)}getScissorTest(){return this._scissorTest}setScissorTest(e){this._scissorTest=e,this.backend.setScissorTest(e)}getViewport(e){return e.copy(this._viewport)}setViewport(e,t,n,r,s=0,a=1){const l=this._viewport;e.isVector4?l.copy(e):l.set(e,t,n,r),l.minDepth=s,l.maxDepth=a}getClearColor(e){return e.copy(this._clearColor)}setClearColor(e,t=1){this._clearColor.set(e),this._clearColor.a=t}getClearAlpha(){return this._clearColor.a}setClearAlpha(e){this._clearColor.a=e}getClearDepth(){return this._clearDepth}setClearDepth(e){this._clearDepth=e}getClearStencil(){return this._clearStencil}setClearStencil(e){this._clearStencil=e}isOccluded(e){const t=this._currentRenderContext;return t&&this.backend.isOccluded(t,e)}clear(e=!0,t=!0,n=!0){if(this._initialized===!1)return console.warn("THREE.Renderer: .clear() called before the backend is initialized. Try using .clearAsync() instead."),this.clearAsync(e,t,n);const r=this._renderTarget||this._getFrameBufferTarget();let s=null;if(r!==null){this._textures.updateRenderTarget(r);const a=this._textures.get(r);s=this._renderContexts.get(null,null,r),s.textures=a.textures,s.depthTexture=a.depthTexture,s.width=a.width,s.height=a.height,s.renderTarget=r,s.depth=r.depthBuffer,s.stencil=r.stencilBuffer}if(this.backend.clear(e,t,n,s),r!==null&&this._renderTarget===null){const a=this._quad;this._nodes.hasOutputChange(r.texture)&&(a.material.fragmentNode=this._nodes.getOutputNode(r.texture),a.material.needsUpdate=!0),this._renderScene(a,a.camera,!1)}}clearColor(){return this.clear(!0,!1,!1)}clearDepth(){return this.clear(!1,!0,!1)}clearStencil(){return this.clear(!1,!1,!0)}async clearAsync(e=!0,t=!0,n=!0){this._initialized===!1&&await this.init(),this.clear(e,t,n)}async clearColorAsync(){this.clearAsync(!0,!1,!1)}async clearDepthAsync(){this.clearAsync(!1,!0,!1)}async clearStencilAsync(){this.clearAsync(!1,!1,!0)}get currentToneMapping(){return this._renderTarget!==null?Za:this.toneMapping}get currentColorSpace(){return this._renderTarget!==null?Ro:this.outputColorSpace}dispose(){this.info.dispose(),this.backend.dispose(),this._animation.dispose(),this._objects.dispose(),this._pipelines.dispose(),this._nodes.dispose(),this._bindings.dispose(),this._renderLists.dispose(),this._renderContexts.dispose(),this._textures.dispose(),this.setRenderTarget(null),this.setAnimationLoop(null)}setRenderTarget(e,t=0,n=0){this._renderTarget=e,this._activeCubeFace=t,this._activeMipmapLevel=n}getRenderTarget(){return this._renderTarget}setRenderObjectFunction(e){this._renderObjectFunction=e}getRenderObjectFunction(){return this._renderObjectFunction}compute(e){if(this.isDeviceLost===!0)return;if(this._initialized===!1)return console.warn("THREE.Renderer: .compute() called before the backend is initialized. Try using .computeAsync() instead."),this.computeAsync(e);const t=this._nodes.nodeFrame,n=t.renderId;this.info.calls++,this.info.compute.calls++,this.info.compute.frameCalls++,t.renderId=this.info.calls;const r=this.backend,s=this._pipelines,a=this._bindings,l=this._nodes,u=Array.isArray(e)?e:[e];if(u[0]===void 0||u[0].isComputeNode!==!0)throw new Error("THREE.Renderer: .compute() expects a ComputeNode.");r.beginCompute(e);for(const h of u){if(s.has(h)===!1){const x=()=>{h.removeEventListener("dispose",x),s.delete(h),a.delete(h),l.delete(h)};h.addEventListener("dispose",x);const S=h.onInitFunction;S!==null&&S.call(h,{renderer:this})}l.updateForCompute(h),a.updateForCompute(h);const g=a.getForCompute(h),v=s.getForCompute(h,g);r.compute(e,h,g,v)}r.finishCompute(e),t.renderId=n}async computeAsync(e){this._initialized===!1&&await this.init(),this.compute(e),await this.backend.resolveTimestampAsync(e,"compute")}async hasFeatureAsync(e){return this._initialized===!1&&await this.init(),this.backend.hasFeature(e)}hasFeature(e){return this._initialized===!1?(console.warn("THREE.Renderer: .hasFeature() called before the backend is initialized. Try using .hasFeatureAsync() instead."),!1):this.backend.hasFeature(e)}hasInitialized(){return this._initialized}async initTextureAsync(e){this._initialized===!1&&await this.init(),this._textures.updateTexture(e)}initTexture(e){this._initialized===!1&&console.warn("THREE.Renderer: .initTexture() called before the backend is initialized. Try using .initTextureAsync() instead."),this._textures.updateTexture(e)}copyFramebufferToTexture(e,t=null){if(t!==null)if(t.isVector2)t=Sh.set(t.x,t.y,e.image.width,e.image.height).floor();else if(t.isVector4)t=Sh.copy(t).floor();else{console.error("THREE.Renderer.copyFramebufferToTexture: Invalid rectangle.");return}else t=Sh.set(0,0,e.image.width,e.image.height);let n=this._currentRenderContext,r;n!==null?r=n.renderTarget:(r=this._renderTarget||this._getFrameBufferTarget(),r!==null&&(this._textures.updateRenderTarget(r),n=this._textures.get(r))),this._textures.updateTexture(e,{renderTarget:r}),this.backend.copyFramebufferToTexture(e,n,t)}copyTextureToTexture(e,t,n=null,r=null,s=0){this._textures.updateTexture(e),this._textures.updateTexture(t),this.backend.copyTextureToTexture(e,t,n,r,s)}async readRenderTargetPixelsAsync(e,t,n,r,s,a=0,l=0){return this.backend.copyTextureToBuffer(e.textures[a],t,n,r,s,l)}_projectObject(e,t,n,r,s){if(e.visible===!1)return;if(e.layers.test(t.layers)){if(e.isGroup)n=e.renderOrder,e.isClippingGroup&&e.enabled&&(s=s.getGroupContext(e));else if(e.isLOD)e.autoUpdate===!0&&e.update(t);else if(e.isLight)r.pushLight(e);else if(e.isSprite){if(!e.frustumCulled||vS.intersectsSprite(e)){this.sortObjects===!0&&Sh.setFromMatrixPosition(e.matrixWorld).applyMatrix4(xv);const{geometry:u,material:h}=e;h.visible&&r.push(e,u,h,n,Sh.z,null,s)}}else if(e.isLineLoop)console.error("THREE.Renderer: Objects of type THREE.LineLoop are not supported. Please use THREE.Line or THREE.LineSegments.");else if((e.isMesh||e.isLine||e.isPoints)&&(!e.frustumCulled||vS.intersectsObject(e))){const{geometry:u,material:h}=e;if(this.sortObjects===!0&&(u.boundingSphere===null&&u.computeBoundingSphere(),Sh.copy(u.boundingSphere.center).applyMatrix4(e.matrixWorld).applyMatrix4(xv)),Array.isArray(h)){const g=u.groups;for(let v=0,x=g.length;v0){for(const{material:a}of t)a.side=hr;this._renderObjects(t,n,r,s,"backSide");for(const{material:a}of t)a.side=Nl;this._renderObjects(e,n,r,s);for(const{material:a}of t)a.side=as}else this._renderObjects(e,n,r,s)}_renderObjects(e,t,n,r,s=null){for(let a=0,l=e.length;a0,S.isShadowNodeMaterial&&(S.side=s.shadowSide===null?s.side:s.shadowSide,s.depthNode&&s.depthNode.isNode&&(x=S.depthNode,S.depthNode=s.depthNode),s.castShadowNode&&s.castShadowNode.isNode&&(v=S.colorNode,S.colorNode=s.castShadowNode)),s=S}s.transparent===!0&&s.side===as&&s.forceSinglePass===!1?(s.side=hr,this._handleObjectFunction(e,s,t,n,l,a,u,"backSide"),s.side=Nl,this._handleObjectFunction(e,s,t,n,l,a,u,h),s.side=as):this._handleObjectFunction(e,s,t,n,l,a,u,h),g!==void 0&&(t.overrideMaterial.positionNode=g),x!==void 0&&(t.overrideMaterial.depthNode=x),v!==void 0&&(t.overrideMaterial.colorNode=v),e.onAfterRender(this,t,n,r,s,a)}_renderObjectDirect(e,t,n,r,s,a,l,u){const h=this._objects.get(e,t,n,r,s,this._currentRenderContext,l,u);h.drawRange=e.geometry.drawRange,h.group=a;const g=this._nodes.needsRefresh(h);g&&(this._nodes.updateBefore(h),this._geometries.updateForRender(h),this._nodes.updateForRender(h),this._bindings.updateForRender(h)),this._pipelines.updateForRender(h),this._currentRenderBundle!==null&&(this.backend.get(this._currentRenderBundle).renderObjects.push(h),h.bundle=this._currentRenderBundle.bundleGroup),this.backend.draw(h,this.info),g&&this._nodes.updateAfter(h)}_createObjectPipeline(e,t,n,r,s,a,l,u){const h=this._objects.get(e,t,n,r,s,this._currentRenderContext,l,u);h.drawRange=e.geometry.drawRange,h.group=a,this._nodes.updateBefore(h),this._geometries.updateForRender(h),this._nodes.updateForRender(h),this._bindings.updateForRender(h),this._pipelines.getForRender(h,this._compilationPromises),this._nodes.updateAfter(h)}get compile(){return this.compileAsync}}class GE{constructor(e=""){this.name=e,this.visibility=0}setVisibility(e){this.visibility|=e}clone(){return Object.assign(new this.constructor,this)}}function hoe(i){return i+(Lh-i%Lh)%Lh}class KB extends GE{constructor(e,t=null){super(e),this.isBuffer=!0,this.bytesPerElement=Float32Array.BYTES_PER_ELEMENT,this._buffer=t}get byteLength(){return hoe(this._buffer.byteLength)}get buffer(){return this._buffer}update(){return!0}}class ZB extends KB{constructor(e,t=null){super(e,t),this.isUniformBuffer=!0}}let foe=0;class JB extends ZB{constructor(e,t){super("UniformBuffer_"+foe++,e?e.value:null),this.nodeUniform=e,this.groupNode=t}get buffer(){return this.nodeUniform.value}}class Aoe extends ZB{constructor(e){super(e),this.isUniformsGroup=!0,this._values=null,this.uniforms=[]}addUniform(e){return this.uniforms.push(e),this}removeUniform(e){const t=this.uniforms.indexOf(e);return t!==-1&&this.uniforms.splice(t,1),this}get values(){return this._values===null&&(this._values=Array.from(this.buffer)),this._values}get buffer(){let e=this._buffer;if(e===null){const t=this.byteLength;e=new Float32Array(new ArrayBuffer(t)),this._buffer=e}return e}get byteLength(){let e=0;for(let t=0,n=this.uniforms.length;t0?x:"";l=`${g.name} { - ${v} ${a.name}[${S}]; -}; -`}else l=`${this.getVectorType(a.type)} ${this.getPropertyName(a,e)};`,u=!0;const h=a.node.precision;if(h!==null&&(l=yoe[h]+" "+l),u){l=" "+l;const g=a.groupNode.name;(r[g]||(r[g]=[])).push(l)}else l="uniform "+l,n.push(l)}let s="";for(const a in r){const l=r[a];s+=this._getGLSLUniformStruct(e+"_"+a,l.join(` -`))+` -`}return s+=n.join(` -`),s}getTypeFromAttribute(e){let t=super.getTypeFromAttribute(e);if(/^[iu]/.test(t)&&e.gpuType!==Ns){let n=e;e.isInterleavedBufferAttribute&&(n=e.data);const r=n.array;r instanceof Uint32Array||r instanceof Int32Array||(t=t.slice(1))}return t}getAttributes(e){let t="";if(e==="vertex"||e==="compute"){const n=this.getAttributesArray();let r=0;for(const s of n)t+=`layout( location = ${r++} ) in ${s.type} ${s.name}; -`}return t}getStructMembers(e){const t=[],n=e.getMemberTypes();for(let r=0;rn*r,1)}u`}getDrawIndex(){return this.renderer.backend.extensions.has("WEBGL_multi_draw")?"uint( gl_DrawID )":null}getFrontFacing(){return"gl_FrontFacing"}getFragCoord(){return"gl_FragCoord.xy"}getFragDepth(){return"gl_FragDepth"}enableExtension(e,t,n=this.shaderStage){const r=this.extensions[n]||(this.extensions[n]=new Map);r.has(e)===!1&&r.set(e,{name:e,behavior:t})}getExtensions(e){const t=[];if(e==="vertex"){const r=this.renderer.backend.extensions;this.object.isBatchedMesh&&r.has("WEBGL_multi_draw")&&this.enableExtension("GL_ANGLE_multi_draw","require",e)}const n=this.extensions[e];if(n!==void 0)for(const{name:r,behavior:s}of n.values())t.push(`#extension ${r} : ${s}`);return t.join(` -`)}getClipDistance(){return"gl_ClipDistance"}isAvailable(e){let t=bN[e];if(t===void 0){let n;switch(t=!1,e){case"float32Filterable":n="OES_texture_float_linear";break;case"clipDistance":n="WEBGL_clip_cull_distance";break}if(n!==void 0){const r=this.renderer.backend.extensions;r.has(n)&&(r.get(n),t=!0)}bN[e]=t}return t}isFlipY(){return!0}enableHardwareClipping(e){this.enableExtension("GL_ANGLE_clip_cull_distance","require"),this.builtins.vertex.push(`out float gl_ClipDistance[ ${e} ]`)}registerTransform(e,t){this.transforms.push({varyingName:e,attributeNode:t})}getTransforms(){const e=this.transforms;let t="";for(let n=0;n0&&(n+=` -`),n+=` // flow -> ${h} - `),n+=`${u.code} - `,l===s&&t!=="compute"&&(n+=`// result - `,t==="vertex"?(n+="gl_Position = ",n+=`${u.result};`):t==="fragment"&&(l.outputNode.isOutputStructNode||(n+="fragColor = ",n+=`${u.result};`)))}const a=e[t];a.extensions=this.getExtensions(t),a.uniforms=this.getUniforms(t),a.attributes=this.getAttributes(t),a.varyings=this.getVaryings(t),a.vars=this.getVars(t),a.structs=this.getStructs(t),a.codes=this.getCodes(t),a.transforms=this.getTransforms(t),a.flow=n}this.material!==null?(this.vertexShader=this._getGLSLVertexCode(e.vertex),this.fragmentShader=this._getGLSLFragmentCode(e.fragment)):this.computeShader=this._getGLSLVertexCode(e.compute)}getUniformFromNode(e,t,n,r=null){const s=super.getUniformFromNode(e,t,n,r),a=this.getDataFromNode(e,n,this.globalCache);let l=a.uniformGPU;if(l===void 0){const u=e.groupNode,h=u.name,g=this.getBindGroupArray(h,n);if(t==="texture")l=new ex(s.name,s.node,u),g.push(l);else if(t==="cubeTexture")l=new tO(s.name,s.node,u),g.push(l);else if(t==="texture3D")l=new nO(s.name,s.node,u),g.push(l);else if(t==="buffer"){e.name=`NodeBuffer_${e.id}`,s.name=`buffer${e.id}`;const v=new JB(e,u);v.name=e.name,g.push(v),l=v}else{const v=this.uniformGroups[n]||(this.uniformGroups[n]={});let x=v[h];x===void 0&&(x=new eO(n+"_"+h,u),v[h]=x,g.push(x)),l=this.getNodeUniform(s,t),x.addUniform(l)}a.uniformGPU=l}return s}}let _S=null,Pd=null;class iO{constructor(e={}){this.parameters=Object.assign({},e),this.data=new WeakMap,this.renderer=null,this.domElement=null}async init(e){this.renderer=e}get coordinateSystem(){}beginRender(){}finishRender(){}beginCompute(){}finishCompute(){}draw(){}compute(){}createProgram(){}destroyProgram(){}createBindings(){}updateBindings(){}updateBinding(){}createRenderPipeline(){}createComputePipeline(){}needsRenderUpdate(){}getRenderCacheKey(){}createNodeBuilder(){}createSampler(){}destroySampler(){}createDefaultTexture(){}createTexture(){}updateTexture(){}generateMipmaps(){}destroyTexture(){}copyTextureToBuffer(){}copyTextureToTexture(){}copyFramebufferToTexture(){}createAttribute(){}createIndexAttribute(){}createStorageAttribute(){}updateAttribute(){}destroyAttribute(){}getContext(){}updateSize(){}updateViewport(){}isOccluded(){}async resolveTimestampAsync(){}async waitForGPU(){}async hasFeatureAsync(){}hasFeature(){}getMaxAnisotropy(){}getDrawingBufferSize(){return _S=_S||new ft,this.renderer.getDrawingBufferSize(_S)}setScissorTest(){}getClearColor(){const e=this.renderer;return Pd=Pd||new bE,e.getClearColor(Pd),Pd.getRGB(Pd,this.renderer.currentColorSpace),Pd}getDomElement(){let e=this.domElement;return e===null&&(e=this.parameters.canvas!==void 0?this.parameters.canvas:I7(),"setAttribute"in e&&e.setAttribute("data-engine",`three.js r${V0} webgpu`),this.domElement=e),e}set(e,t){this.data.set(e,t)}get(e){let t=this.data.get(e);return t===void 0&&(t={},this.data.set(e,t)),t}has(e){return this.data.has(e)}delete(e){this.data.delete(e)}dispose(){}}let boe=0;class Soe{constructor(e,t){this.buffers=[e.bufferGPU,t],this.type=e.type,this.bufferType=e.bufferType,this.pbo=e.pbo,this.byteLength=e.byteLength,this.bytesPerElement=e.BYTES_PER_ELEMENT,this.version=e.version,this.isInteger=e.isInteger,this.activeBufferIndex=0,this.baseId=e.id}get id(){return`${this.baseId}|${this.activeBufferIndex}`}get bufferGPU(){return this.buffers[this.activeBufferIndex]}get transformBuffer(){return this.buffers[this.activeBufferIndex^1]}switchBuffers(){this.activeBufferIndex^=1}}class Toe{constructor(e){this.backend=e}createAttribute(e,t){const n=this.backend,{gl:r}=n,s=e.array,a=e.usage||r.STATIC_DRAW,l=e.isInterleavedBufferAttribute?e.data:e,u=n.get(l);let h=u.bufferGPU;h===void 0&&(h=this._createBuffer(r,t,s,a),u.bufferGPU=h,u.bufferType=t,u.version=l.version);let g;if(s instanceof Float32Array)g=r.FLOAT;else if(s instanceof Uint16Array)e.isFloat16BufferAttribute?g=r.HALF_FLOAT:g=r.UNSIGNED_SHORT;else if(s instanceof Int16Array)g=r.SHORT;else if(s instanceof Uint32Array)g=r.UNSIGNED_INT;else if(s instanceof Int32Array)g=r.INT;else if(s instanceof Int8Array)g=r.BYTE;else if(s instanceof Uint8Array)g=r.UNSIGNED_BYTE;else if(s instanceof Uint8ClampedArray)g=r.UNSIGNED_BYTE;else throw new Error("THREE.WebGLBackend: Unsupported buffer data format: "+s);let v={bufferGPU:h,bufferType:t,type:g,byteLength:s.byteLength,bytesPerElement:s.BYTES_PER_ELEMENT,version:e.version,pbo:e.pbo,isInteger:g===r.INT||g===r.UNSIGNED_INT||e.gpuType===Ns,id:boe++};if(e.isStorageBufferAttribute||e.isStorageInstancedBufferAttribute){const x=this._createBuffer(r,t,s,a);v=new Soe(v,x)}n.set(e,v)}updateAttribute(e){const t=this.backend,{gl:n}=t,r=e.array,s=e.isInterleavedBufferAttribute?e.data:e,a=t.get(s),l=a.bufferType,u=e.isInterleavedBufferAttribute?e.data.updateRanges:e.updateRanges;if(n.bindBuffer(l,a.bufferGPU),u.length===0)n.bufferSubData(l,0,r);else{for(let h=0,g=u.length;h1?this.enable(r.SAMPLE_ALPHA_TO_COVERAGE):this.disable(r.SAMPLE_ALPHA_TO_COVERAGE),n>0&&this.currentClippingPlanes!==n)for(let u=0;u<8;u++)u{function s(){const a=e.clientWaitSync(t,e.SYNC_FLUSH_COMMANDS_BIT,0);if(a===e.WAIT_FAILED){e.deleteSync(t),r();return}if(a===e.TIMEOUT_EXPIRED){requestAnimationFrame(s);return}e.deleteSync(t),n()}s()})}}let wN=!1,bv,xS,MN;class Eoe{constructor(e){this.backend=e,this.gl=e.gl,this.extensions=e.extensions,this.defaultTextures={},wN===!1&&(this._init(this.gl),wN=!0)}_init(e){bv={[aA]:e.REPEAT,[eu]:e.CLAMP_TO_EDGE,[oA]:e.MIRRORED_REPEAT},xS={[mr]:e.NEAREST,[s_]:e.NEAREST_MIPMAP_NEAREST,[tu]:e.NEAREST_MIPMAP_LINEAR,[gs]:e.LINEAR,[Jd]:e.LINEAR_MIPMAP_NEAREST,[Va]:e.LINEAR_MIPMAP_LINEAR},MN={[Fw]:e.NEVER,[Vw]:e.ALWAYS,[my]:e.LESS,[gy]:e.LEQUAL,[kw]:e.EQUAL,[qw]:e.GEQUAL,[zw]:e.GREATER,[Gw]:e.NOTEQUAL}}filterFallback(e){const{gl:t}=this;return e===mr||e===s_||e===tu?t.NEAREST:t.LINEAR}getGLTextureType(e){const{gl:t}=this;let n;return e.isCubeTexture===!0?n=t.TEXTURE_CUBE_MAP:e.isDataArrayTexture===!0||e.isCompressedArrayTexture===!0?n=t.TEXTURE_2D_ARRAY:e.isData3DTexture===!0?n=t.TEXTURE_3D:n=t.TEXTURE_2D,n}getInternalFormat(e,t,n,r,s=!1){const{gl:a,extensions:l}=this;if(e!==null){if(a[e]!==void 0)return a[e];console.warn("THREE.WebGLRenderer: Attempt to use non-existing WebGL internal format '"+e+"'")}let u=t;return t===a.RED&&(n===a.FLOAT&&(u=a.R32F),n===a.HALF_FLOAT&&(u=a.R16F),n===a.UNSIGNED_BYTE&&(u=a.R8),n===a.UNSIGNED_SHORT&&(u=a.R16),n===a.UNSIGNED_INT&&(u=a.R32UI),n===a.BYTE&&(u=a.R8I),n===a.SHORT&&(u=a.R16I),n===a.INT&&(u=a.R32I)),t===a.RED_INTEGER&&(n===a.UNSIGNED_BYTE&&(u=a.R8UI),n===a.UNSIGNED_SHORT&&(u=a.R16UI),n===a.UNSIGNED_INT&&(u=a.R32UI),n===a.BYTE&&(u=a.R8I),n===a.SHORT&&(u=a.R16I),n===a.INT&&(u=a.R32I)),t===a.RG&&(n===a.FLOAT&&(u=a.RG32F),n===a.HALF_FLOAT&&(u=a.RG16F),n===a.UNSIGNED_BYTE&&(u=a.RG8),n===a.UNSIGNED_SHORT&&(u=a.RG16),n===a.UNSIGNED_INT&&(u=a.RG32UI),n===a.BYTE&&(u=a.RG8I),n===a.SHORT&&(u=a.RG16I),n===a.INT&&(u=a.RG32I)),t===a.RG_INTEGER&&(n===a.UNSIGNED_BYTE&&(u=a.RG8UI),n===a.UNSIGNED_SHORT&&(u=a.RG16UI),n===a.UNSIGNED_INT&&(u=a.RG32UI),n===a.BYTE&&(u=a.RG8I),n===a.SHORT&&(u=a.RG16I),n===a.INT&&(u=a.RG32I)),t===a.RGB&&(n===a.FLOAT&&(u=a.RGB32F),n===a.HALF_FLOAT&&(u=a.RGB16F),n===a.UNSIGNED_BYTE&&(u=a.RGB8),n===a.UNSIGNED_SHORT&&(u=a.RGB16),n===a.UNSIGNED_INT&&(u=a.RGB32UI),n===a.BYTE&&(u=a.RGB8I),n===a.SHORT&&(u=a.RGB16I),n===a.INT&&(u=a.RGB32I),n===a.UNSIGNED_BYTE&&(u=r===_n&&s===!1?a.SRGB8:a.RGB8),n===a.UNSIGNED_SHORT_5_6_5&&(u=a.RGB565),n===a.UNSIGNED_SHORT_5_5_5_1&&(u=a.RGB5_A1),n===a.UNSIGNED_SHORT_4_4_4_4&&(u=a.RGB4),n===a.UNSIGNED_INT_5_9_9_9_REV&&(u=a.RGB9_E5)),t===a.RGB_INTEGER&&(n===a.UNSIGNED_BYTE&&(u=a.RGB8UI),n===a.UNSIGNED_SHORT&&(u=a.RGB16UI),n===a.UNSIGNED_INT&&(u=a.RGB32UI),n===a.BYTE&&(u=a.RGB8I),n===a.SHORT&&(u=a.RGB16I),n===a.INT&&(u=a.RGB32I)),t===a.RGBA&&(n===a.FLOAT&&(u=a.RGBA32F),n===a.HALF_FLOAT&&(u=a.RGBA16F),n===a.UNSIGNED_BYTE&&(u=a.RGBA8),n===a.UNSIGNED_SHORT&&(u=a.RGBA16),n===a.UNSIGNED_INT&&(u=a.RGBA32UI),n===a.BYTE&&(u=a.RGBA8I),n===a.SHORT&&(u=a.RGBA16I),n===a.INT&&(u=a.RGBA32I),n===a.UNSIGNED_BYTE&&(u=r===_n&&s===!1?a.SRGB8_ALPHA8:a.RGBA8),n===a.UNSIGNED_SHORT_4_4_4_4&&(u=a.RGBA4),n===a.UNSIGNED_SHORT_5_5_5_1&&(u=a.RGB5_A1)),t===a.RGBA_INTEGER&&(n===a.UNSIGNED_BYTE&&(u=a.RGBA8UI),n===a.UNSIGNED_SHORT&&(u=a.RGBA16UI),n===a.UNSIGNED_INT&&(u=a.RGBA32UI),n===a.BYTE&&(u=a.RGBA8I),n===a.SHORT&&(u=a.RGBA16I),n===a.INT&&(u=a.RGBA32I)),t===a.DEPTH_COMPONENT&&(n===a.UNSIGNED_INT&&(u=a.DEPTH24_STENCIL8),n===a.FLOAT&&(u=a.DEPTH_COMPONENT32F)),t===a.DEPTH_STENCIL&&n===a.UNSIGNED_INT_24_8&&(u=a.DEPTH24_STENCIL8),(u===a.R16F||u===a.R32F||u===a.RG16F||u===a.RG32F||u===a.RGBA16F||u===a.RGBA32F)&&l.get("EXT_color_buffer_float"),u}setTextureParameters(e,t){const{gl:n,extensions:r,backend:s}=this;n.pixelStorei(n.UNPACK_FLIP_Y_WEBGL,t.flipY),n.pixelStorei(n.UNPACK_PREMULTIPLY_ALPHA_WEBGL,t.premultiplyAlpha),n.pixelStorei(n.UNPACK_ALIGNMENT,t.unpackAlignment),n.pixelStorei(n.UNPACK_COLORSPACE_CONVERSION_WEBGL,n.NONE),n.texParameteri(e,n.TEXTURE_WRAP_S,bv[t.wrapS]),n.texParameteri(e,n.TEXTURE_WRAP_T,bv[t.wrapT]),(e===n.TEXTURE_3D||e===n.TEXTURE_2D_ARRAY)&&n.texParameteri(e,n.TEXTURE_WRAP_R,bv[t.wrapR]),n.texParameteri(e,n.TEXTURE_MAG_FILTER,xS[t.magFilter]);const a=t.mipmaps!==void 0&&t.mipmaps.length>0,l=t.minFilter===gs&&a?Va:t.minFilter;if(n.texParameteri(e,n.TEXTURE_MIN_FILTER,xS[l]),t.compareFunction&&(n.texParameteri(e,n.TEXTURE_COMPARE_MODE,n.COMPARE_REF_TO_TEXTURE),n.texParameteri(e,n.TEXTURE_COMPARE_FUNC,MN[t.compareFunction])),r.has("EXT_texture_filter_anisotropic")===!0){if(t.magFilter===mr||t.minFilter!==tu&&t.minFilter!==Va||t.type===$r&&r.has("OES_texture_float_linear")===!1)return;if(t.anisotropy>1){const u=r.get("EXT_texture_filter_anisotropic");n.texParameterf(e,u.TEXTURE_MAX_ANISOTROPY_EXT,Math.min(t.anisotropy,s.getMaxAnisotropy()))}}}createDefaultTexture(e){const{gl:t,backend:n,defaultTextures:r}=this,s=this.getGLTextureType(e);let a=r[s];a===void 0&&(a=t.createTexture(),n.state.bindTexture(s,a),t.texParameteri(s,t.TEXTURE_MIN_FILTER,t.NEAREST),t.texParameteri(s,t.TEXTURE_MAG_FILTER,t.NEAREST),r[s]=a),n.set(e,{textureGPU:a,glTextureType:s,isDefault:!0})}createTexture(e,t){const{gl:n,backend:r}=this,{levels:s,width:a,height:l,depth:u}=t,h=r.utils.convert(e.format,e.colorSpace),g=r.utils.convert(e.type),v=this.getInternalFormat(e.internalFormat,h,g,e.colorSpace,e.isVideoTexture),x=n.createTexture(),S=this.getGLTextureType(e);r.state.bindTexture(S,x),this.setTextureParameters(S,e),e.isDataArrayTexture||e.isCompressedArrayTexture?n.texStorage3D(n.TEXTURE_2D_ARRAY,s,v,a,l,u):e.isData3DTexture?n.texStorage3D(n.TEXTURE_3D,s,v,a,l,u):e.isVideoTexture||n.texStorage2D(S,s,v,a,l),r.set(e,{textureGPU:x,glTextureType:S,glFormat:h,glType:g,glInternalFormat:v})}copyBufferToTexture(e,t){const{gl:n,backend:r}=this,{textureGPU:s,glTextureType:a,glFormat:l,glType:u}=r.get(t),{width:h,height:g}=t.source.data;n.bindBuffer(n.PIXEL_UNPACK_BUFFER,e),r.state.bindTexture(a,s),n.pixelStorei(n.UNPACK_FLIP_Y_WEBGL,!1),n.pixelStorei(n.UNPACK_PREMULTIPLY_ALPHA_WEBGL,!1),n.texSubImage2D(a,0,0,0,h,g,l,u,0),n.bindBuffer(n.PIXEL_UNPACK_BUFFER,null),r.state.unbindTexture()}updateTexture(e,t){const{gl:n}=this,{width:r,height:s}=t,{textureGPU:a,glTextureType:l,glFormat:u,glType:h,glInternalFormat:g}=this.backend.get(e);if(e.isRenderTargetTexture||a===void 0)return;const v=x=>x.isDataTexture?x.image.data:typeof HTMLImageElement<"u"&&x instanceof HTMLImageElement||typeof HTMLCanvasElement<"u"&&x instanceof HTMLCanvasElement||typeof ImageBitmap<"u"&&x instanceof ImageBitmap||x instanceof OffscreenCanvas?x:x.data;if(this.backend.state.bindTexture(l,a),this.setTextureParameters(l,e),e.isCompressedTexture){const x=e.mipmaps,S=t.image;for(let w=0;w0,x=t.renderTarget?t.renderTarget.height:this.backend.getDrawingBufferSize().y;if(v){const S=l!==0||u!==0;let w,R;if(e.isDepthTexture===!0?(w=r.DEPTH_BUFFER_BIT,R=r.DEPTH_ATTACHMENT,t.stencil&&(w|=r.STENCIL_BUFFER_BIT)):(w=r.COLOR_BUFFER_BIT,R=r.COLOR_ATTACHMENT0),S){const C=this.backend.get(t.renderTarget),E=C.framebuffers[t.getCacheKey()],B=C.msaaFrameBuffer;s.bindFramebuffer(r.DRAW_FRAMEBUFFER,E),s.bindFramebuffer(r.READ_FRAMEBUFFER,B);const L=x-u-g;r.blitFramebuffer(l,L,l+h,L+g,l,L,l+h,L+g,w,r.NEAREST),s.bindFramebuffer(r.READ_FRAMEBUFFER,E),s.bindTexture(r.TEXTURE_2D,a),r.copyTexSubImage2D(r.TEXTURE_2D,0,0,0,l,L,h,g),s.unbindTexture()}else{const C=r.createFramebuffer();s.bindFramebuffer(r.DRAW_FRAMEBUFFER,C),r.framebufferTexture2D(r.DRAW_FRAMEBUFFER,R,r.TEXTURE_2D,a,0),r.blitFramebuffer(0,0,h,g,0,0,h,g,w,r.NEAREST),r.deleteFramebuffer(C)}}else s.bindTexture(r.TEXTURE_2D,a),r.copyTexSubImage2D(r.TEXTURE_2D,0,0,0,l,x-g-u,h,g),s.unbindTexture();e.generateMipmaps&&this.generateMipmaps(e),this.backend._setFramebuffer(t)}setupRenderBufferStorage(e,t){const{gl:n}=this,r=t.renderTarget,{samples:s,depthTexture:a,depthBuffer:l,stencilBuffer:u,width:h,height:g}=r;if(n.bindRenderbuffer(n.RENDERBUFFER,e),l&&!u){let v=n.DEPTH_COMPONENT24;s>0?(a&&a.isDepthTexture&&a.type===n.FLOAT&&(v=n.DEPTH_COMPONENT32F),n.renderbufferStorageMultisample(n.RENDERBUFFER,s,v,h,g)):n.renderbufferStorage(n.RENDERBUFFER,v,h,g),n.framebufferRenderbuffer(n.FRAMEBUFFER,n.DEPTH_ATTACHMENT,n.RENDERBUFFER,e)}else l&&u&&(s>0?n.renderbufferStorageMultisample(n.RENDERBUFFER,s,n.DEPTH24_STENCIL8,h,g):n.renderbufferStorage(n.RENDERBUFFER,n.DEPTH_STENCIL,h,g),n.framebufferRenderbuffer(n.FRAMEBUFFER,n.DEPTH_STENCIL_ATTACHMENT,n.RENDERBUFFER,e))}async copyTextureToBuffer(e,t,n,r,s,a){const{backend:l,gl:u}=this,{textureGPU:h,glFormat:g,glType:v}=this.backend.get(e),x=u.createFramebuffer();u.bindFramebuffer(u.READ_FRAMEBUFFER,x);const S=e.isCubeTexture?u.TEXTURE_CUBE_MAP_POSITIVE_X+a:u.TEXTURE_2D;u.framebufferTexture2D(u.READ_FRAMEBUFFER,u.COLOR_ATTACHMENT0,S,h,0);const w=this._getTypedArrayType(v),R=this._getBytesPerTexel(v,g),E=r*s*R,B=u.createBuffer();u.bindBuffer(u.PIXEL_PACK_BUFFER,B),u.bufferData(u.PIXEL_PACK_BUFFER,E,u.STREAM_READ),u.readPixels(t,n,r,s,g,v,0),u.bindBuffer(u.PIXEL_PACK_BUFFER,null),await l.utils._clientWaitAsync();const L=new w(E/w.BYTES_PER_ELEMENT);return u.bindBuffer(u.PIXEL_PACK_BUFFER,B),u.getBufferSubData(u.PIXEL_PACK_BUFFER,0,L),u.bindBuffer(u.PIXEL_PACK_BUFFER,null),u.deleteFramebuffer(x),L}_getTypedArrayType(e){const{gl:t}=this;if(e===t.UNSIGNED_BYTE)return Uint8Array;if(e===t.UNSIGNED_SHORT_4_4_4_4||e===t.UNSIGNED_SHORT_5_5_5_1||e===t.UNSIGNED_SHORT_5_6_5||e===t.UNSIGNED_SHORT)return Uint16Array;if(e===t.UNSIGNED_INT)return Uint32Array;if(e===t.HALF_FLOAT)return Uint16Array;if(e===t.FLOAT)return Float32Array;throw new Error(`Unsupported WebGL type: ${e}`)}_getBytesPerTexel(e,t){const{gl:n}=this;let r=0;if(e===n.UNSIGNED_BYTE&&(r=1),(e===n.UNSIGNED_SHORT_4_4_4_4||e===n.UNSIGNED_SHORT_5_5_5_1||e===n.UNSIGNED_SHORT_5_6_5||e===n.UNSIGNED_SHORT||e===n.HALF_FLOAT)&&(r=2),(e===n.UNSIGNED_INT||e===n.FLOAT)&&(r=4),t===n.RGBA)return r*4;if(t===n.RGB)return r*3;if(t===n.ALPHA)return r}}class Coe{constructor(e){this.backend=e,this.gl=this.backend.gl,this.availableExtensions=this.gl.getSupportedExtensions(),this.extensions={}}get(e){let t=this.extensions[e];return t===void 0&&(t=this.gl.getExtension(e),this.extensions[e]=t),t}has(e){return this.availableExtensions.includes(e)}}class Roe{constructor(e){this.backend=e,this.maxAnisotropy=null}getMaxAnisotropy(){if(this.maxAnisotropy!==null)return this.maxAnisotropy;const e=this.backend.gl,t=this.backend.extensions;if(t.has("EXT_texture_filter_anisotropic")===!0){const n=t.get("EXT_texture_filter_anisotropic");this.maxAnisotropy=e.getParameter(n.MAX_TEXTURE_MAX_ANISOTROPY_EXT)}else this.maxAnisotropy=0;return this.maxAnisotropy}}const EN={WEBGL_multi_draw:"WEBGL_multi_draw",WEBGL_compressed_texture_astc:"texture-compression-astc",WEBGL_compressed_texture_etc:"texture-compression-etc2",WEBGL_compressed_texture_etc1:"texture-compression-etc1",WEBGL_compressed_texture_pvrtc:"texture-compression-pvrtc",WEBKIT_WEBGL_compressed_texture_pvrtc:"texture-compression-pvrtc",WEBGL_compressed_texture_s3tc:"texture-compression-bc",EXT_texture_compression_bptc:"texture-compression-bptc",EXT_disjoint_timer_query_webgl2:"timestamp-query"};class Noe{constructor(e){this.gl=e.gl,this.extensions=e.extensions,this.info=e.renderer.info,this.mode=null,this.index=0,this.type=null,this.object=null}render(e,t){const{gl:n,mode:r,object:s,type:a,info:l,index:u}=this;u!==0?n.drawElements(r,t,a,e):n.drawArrays(r,e,t),l.update(s,t,r,1)}renderInstances(e,t,n){const{gl:r,mode:s,type:a,index:l,object:u,info:h}=this;n!==0&&(l!==0?r.drawElementsInstanced(s,t,a,e,n):r.drawArraysInstanced(s,e,t,n),h.update(u,t,s,n))}renderMultiDraw(e,t,n){const{extensions:r,mode:s,object:a,info:l}=this;if(n===0)return;const u=r.get("WEBGL_multi_draw");if(u===null)for(let h=0;h0)){const n=t.queryQueue.shift();this.initTimestampQuery(n)}}async resolveTimestampAsync(e,t="render"){if(!this.disjoint||!this.trackTimestamp)return;const n=this.get(e);n.gpuQueries||(n.gpuQueries=[]);for(let r=0;r0&&(n.currentOcclusionQueries=n.occlusionQueries,n.currentOcclusionQueryObjects=n.occlusionQueryObjects,n.lastOcclusionObject=null,n.occlusionQueries=new Array(r),n.occlusionQueryObjects=new Array(r),n.occlusionQueryIndex=0)}finishRender(e){const{gl:t,state:n}=this,r=this.get(e),s=r.previousContext,a=e.occlusionQueryCount;a>0&&(a>r.occlusionQueryIndex&&t.endQuery(t.ANY_SAMPLES_PASSED),this.resolveOccludedAsync(e));const l=e.textures;if(l!==null)for(let u=0;u0){const g=u.framebuffers[e.getCacheKey()],v=t.COLOR_BUFFER_BIT,x=u.msaaFrameBuffer,S=e.textures;n.bindFramebuffer(t.READ_FRAMEBUFFER,x),n.bindFramebuffer(t.DRAW_FRAMEBUFFER,g);for(let w=0;w{let u=0;for(let h=0;h0&&s.add(r[h]),n[h]=null,a.deleteQuery(g),u++)}u1?E.renderInstances(O,B,L):E.render(O,B),u.bindVertexArray(null)}needsRenderUpdate(){return!1}getRenderCacheKey(){return""}createDefaultTexture(e){this.textureUtils.createDefaultTexture(e)}createTexture(e,t){this.textureUtils.createTexture(e,t)}updateTexture(e,t){this.textureUtils.updateTexture(e,t)}generateMipmaps(e){this.textureUtils.generateMipmaps(e)}destroyTexture(e){this.textureUtils.destroyTexture(e)}copyTextureToBuffer(e,t,n,r,s,a){return this.textureUtils.copyTextureToBuffer(e,t,n,r,s,a)}createSampler(){}destroySampler(){}createNodeBuilder(e,t){return new xoe(e,t)}createProgram(e){const t=this.gl,{stage:n,code:r}=e,s=n==="fragment"?t.createShader(t.FRAGMENT_SHADER):t.createShader(t.VERTEX_SHADER);t.shaderSource(s,r),t.compileShader(s),this.set(e,{shaderGPU:s})}destroyProgram(e){this.delete(e)}createRenderPipeline(e,t){const n=this.gl,r=e.pipeline,{fragmentProgram:s,vertexProgram:a}=r,l=n.createProgram(),u=this.get(s).shaderGPU,h=this.get(a).shaderGPU;if(n.attachShader(l,u),n.attachShader(l,h),n.linkProgram(l),this.set(r,{programGPU:l,fragmentShader:u,vertexShader:h}),t!==null&&this.parallel){const g=new Promise(v=>{const x=this.parallel,S=()=>{n.getProgramParameter(l,x.COMPLETION_STATUS_KHR)?(this._completeCompile(e,r),v()):requestAnimationFrame(S)};S()});t.push(g);return}this._completeCompile(e,r)}_handleSource(e,t){const n=e.split(` -`),r=[],s=Math.max(t-6,0),a=Math.min(t+6,n.length);for(let l=s;l":" "} ${u}: ${n[l]}`)}return r.join(` -`)}_getShaderErrors(e,t,n){const r=e.getShaderParameter(t,e.COMPILE_STATUS),s=e.getShaderInfoLog(t).trim();if(r&&s==="")return"";const a=/ERROR: 0:(\d+)/.exec(s);if(a){const l=parseInt(a[1]);return n.toUpperCase()+` - -`+s+` - -`+this._handleSource(e.getShaderSource(t),l)}else return s}_logProgramError(e,t,n){if(this.renderer.debug.checkShaderErrors){const r=this.gl,s=r.getProgramInfoLog(e).trim();if(r.getProgramParameter(e,r.LINK_STATUS)===!1)if(typeof this.renderer.debug.onShaderError=="function")this.renderer.debug.onShaderError(r,e,n,t);else{const a=this._getShaderErrors(r,n,"vertex"),l=this._getShaderErrors(r,t,"fragment");console.error("THREE.WebGLProgram: Shader Error "+r.getError()+" - VALIDATE_STATUS "+r.getProgramParameter(e,r.VALIDATE_STATUS)+` - -Program Info Log: `+s+` -`+a+` -`+l)}else s!==""&&console.warn("THREE.WebGLProgram: Program Info Log:",s)}}_completeCompile(e,t){const{state:n,gl:r}=this,s=this.get(t),{programGPU:a,fragmentShader:l,vertexShader:u}=s;r.getProgramParameter(a,r.LINK_STATUS)===!1&&this._logProgramError(a,l,u),n.useProgram(a);const h=e.getBindings();this._setupBindings(h,a),this.set(t,{programGPU:a})}createComputePipeline(e,t){const{state:n,gl:r}=this,s={stage:"fragment",code:`#version 300 es -precision highp float; -void main() {}`};this.createProgram(s);const{computeProgram:a}=e,l=r.createProgram(),u=this.get(s).shaderGPU,h=this.get(a).shaderGPU,g=a.transforms,v=[],x=[];for(let C=0;CEN[r]===e),n=this.extensions;for(let r=0;r0){if(S===void 0){const E=[];S=t.createFramebuffer(),n.bindFramebuffer(t.FRAMEBUFFER,S);const B=[],L=e.textures;for(let O=0;O, - @location( 0 ) vTex : vec2 -}; - -@vertex -fn main( @builtin( vertex_index ) vertexIndex : u32 ) -> VarysStruct { - - var Varys : VarysStruct; - - var pos = array< vec2, 4 >( - vec2( -1.0, 1.0 ), - vec2( 1.0, 1.0 ), - vec2( -1.0, -1.0 ), - vec2( 1.0, -1.0 ) - ); - - var tex = array< vec2, 4 >( - vec2( 0.0, 0.0 ), - vec2( 1.0, 0.0 ), - vec2( 0.0, 1.0 ), - vec2( 1.0, 1.0 ) - ); - - Varys.vTex = tex[ vertexIndex ]; - Varys.Position = vec4( pos[ vertexIndex ], 0.0, 1.0 ); - - return Varys; - -} -`,n=` -@group( 0 ) @binding( 0 ) -var imgSampler : sampler; - -@group( 0 ) @binding( 1 ) -var img : texture_2d; - -@fragment -fn main( @location( 0 ) vTex : vec2 ) -> @location( 0 ) vec4 { - - return textureSample( img, imgSampler, vTex ); - -} -`,r=` -@group( 0 ) @binding( 0 ) -var imgSampler : sampler; - -@group( 0 ) @binding( 1 ) -var img : texture_2d; - -@fragment -fn main( @location( 0 ) vTex : vec2 ) -> @location( 0 ) vec4 { - - return textureSample( img, imgSampler, vec2( vTex.x, 1.0 - vTex.y ) ); - -} -`;this.mipmapSampler=e.createSampler({minFilter:qf.Linear}),this.flipYSampler=e.createSampler({minFilter:qf.Nearest}),this.transferPipelines={},this.flipYPipelines={},this.mipmapVertexShaderModule=e.createShaderModule({label:"mipmapVertex",code:t}),this.mipmapFragmentShaderModule=e.createShaderModule({label:"mipmapFragment",code:n}),this.flipYFragmentShaderModule=e.createShaderModule({label:"flipYFragment",code:r})}getTransferPipeline(e){let t=this.transferPipelines[e];return t===void 0&&(t=this.device.createRenderPipeline({label:`mipmap-${e}`,vertex:{module:this.mipmapVertexShaderModule,entryPoint:"main"},fragment:{module:this.mipmapFragmentShaderModule,entryPoint:"main",targets:[{format:e}]},primitive:{topology:Zd.TriangleStrip,stripIndexFormat:k0.Uint32},layout:"auto"}),this.transferPipelines[e]=t),t}getFlipYPipeline(e){let t=this.flipYPipelines[e];return t===void 0&&(t=this.device.createRenderPipeline({label:`flipY-${e}`,vertex:{module:this.mipmapVertexShaderModule,entryPoint:"main"},fragment:{module:this.flipYFragmentShaderModule,entryPoint:"main",targets:[{format:e}]},primitive:{topology:Zd.TriangleStrip,stripIndexFormat:k0.Uint32},layout:"auto"}),this.flipYPipelines[e]=t),t}flipY(e,t,n=0){const r=t.format,{width:s,height:a}=t.size,l=this.getTransferPipeline(r),u=this.getFlipYPipeline(r),h=this.device.createTexture({size:{width:s,height:a,depthOrArrayLayers:1},format:r,usage:GPUTextureUsage.RENDER_ATTACHMENT|GPUTextureUsage.TEXTURE_BINDING}),g=e.createView({baseMipLevel:0,mipLevelCount:1,dimension:za.TwoD,baseArrayLayer:n}),v=h.createView({baseMipLevel:0,mipLevelCount:1,dimension:za.TwoD,baseArrayLayer:0}),x=this.device.createCommandEncoder({}),S=(w,R,C)=>{const E=w.getBindGroupLayout(0),B=this.device.createBindGroup({layout:E,entries:[{binding:0,resource:this.flipYSampler},{binding:1,resource:R}]}),L=x.beginRenderPass({colorAttachments:[{view:C,loadOp:Wr.Clear,storeOp:ia.Store,clearValue:[0,0,0,0]}]});L.setPipeline(w),L.setBindGroup(0,B),L.draw(4,1,0,0),L.end()};S(l,g,v),S(u,v,g),this.device.queue.submit([x.finish()]),h.destroy()}generateMipmaps(e,t,n=0){const r=this.get(e);r.useCount===void 0&&(r.useCount=0,r.layers=[]);const s=r.layers[n]||this._mipmapCreateBundles(e,t,n),a=this.device.createCommandEncoder({});this._mipmapRunBundles(a,s),this.device.queue.submit([a.finish()]),r.useCount!==0&&(r.layers[n]=s),r.useCount++}_mipmapCreateBundles(e,t,n){const r=this.getTransferPipeline(t.format),s=r.getBindGroupLayout(0);let a=e.createView({baseMipLevel:0,mipLevelCount:1,dimension:za.TwoD,baseArrayLayer:n});const l=[];for(let u=1;u1;for(let l=0;l]*\s*([a-z_0-9]+(?:<[\s\S]+?>)?)/i,qoe=/([a-z_0-9]+)\s*:\s*([a-z_0-9]+(?:<[\s\S]+?>)?)/ig,DN={f32:"float",i32:"int",u32:"uint",bool:"bool","vec2":"vec2","vec2":"ivec2","vec2":"uvec2","vec2":"bvec2",vec2f:"vec2",vec2i:"ivec2",vec2u:"uvec2",vec2b:"bvec2","vec3":"vec3","vec3":"ivec3","vec3":"uvec3","vec3":"bvec3",vec3f:"vec3",vec3i:"ivec3",vec3u:"uvec3",vec3b:"bvec3","vec4":"vec4","vec4":"ivec4","vec4":"uvec4","vec4":"bvec4",vec4f:"vec4",vec4i:"ivec4",vec4u:"uvec4",vec4b:"bvec4","mat2x2":"mat2",mat2x2f:"mat2","mat3x3":"mat3",mat3x3f:"mat3","mat4x4":"mat4",mat4x4f:"mat4",sampler:"sampler",texture_1d:"texture",texture_2d:"texture",texture_2d_array:"texture",texture_multisampled_2d:"cubeTexture",texture_depth_2d:"depthTexture",texture_depth_multisampled_2d:"depthTexture",texture_3d:"texture3D",texture_cube:"cubeTexture",texture_cube_array:"cubeTexture",texture_storage_1d:"storageTexture",texture_storage_2d:"storageTexture",texture_storage_2d_array:"storageTexture",texture_storage_3d:"storageTexture"},Voe=i=>{i=i.trim();const e=i.match(Goe);if(e!==null&&e.length===4){const t=e[2],n=[];let r=null;for(;(r=qoe.exec(t))!==null;)n.push({name:r[1],type:r[2]});const s=[];for(let g=0;g "+this.outputType:"";return`fn ${e} ( ${this.inputsCode.trim()} ) ${t}`+this.blockCode}}class joe extends YB{parseFunction(e){return new Hoe(e)}}const Ud=typeof self<"u"?self.GPUShaderStage:{VERTEX:1,FRAGMENT:2,COMPUTE:4},Woe={[sa.READ_ONLY]:"read",[sa.WRITE_ONLY]:"write",[sa.READ_WRITE]:"read_write"},PN={[aA]:"repeat",[eu]:"clamp",[oA]:"mirror"},Tv={vertex:Ud?Ud.VERTEX:1,fragment:Ud?Ud.FRAGMENT:2,compute:Ud?Ud.COMPUTE:4},LN={instance:!0,swizzleAssign:!1,storageBuffer:!0},$oe={"^^":"tsl_xor"},Xoe={float:"f32",int:"i32",uint:"u32",bool:"bool",color:"vec3",vec2:"vec2",ivec2:"vec2",uvec2:"vec2",bvec2:"vec2",vec3:"vec3",ivec3:"vec3",uvec3:"vec3",bvec3:"vec3",vec4:"vec4",ivec4:"vec4",uvec4:"vec4",bvec4:"vec4",mat2:"mat2x2",mat3:"mat3x3",mat4:"mat4x4"},UN={},Wo={tsl_xor:new rs("fn tsl_xor( a : bool, b : bool ) -> bool { return ( a || b ) && !( a && b ); }"),mod_float:new rs("fn tsl_mod_float( x : f32, y : f32 ) -> f32 { return x - y * floor( x / y ); }"),mod_vec2:new rs("fn tsl_mod_vec2( x : vec2f, y : vec2f ) -> vec2f { return x - y * floor( x / y ); }"),mod_vec3:new rs("fn tsl_mod_vec3( x : vec3f, y : vec3f ) -> vec3f { return x - y * floor( x / y ); }"),mod_vec4:new rs("fn tsl_mod_vec4( x : vec4f, y : vec4f ) -> vec4f { return x - y * floor( x / y ); }"),equals_bool:new rs("fn tsl_equals_bool( a : bool, b : bool ) -> bool { return a == b; }"),equals_bvec2:new rs("fn tsl_equals_bvec2( a : vec2f, b : vec2f ) -> vec2 { return vec2( a.x == b.x, a.y == b.y ); }"),equals_bvec3:new rs("fn tsl_equals_bvec3( a : vec3f, b : vec3f ) -> vec3 { return vec3( a.x == b.x, a.y == b.y, a.z == b.z ); }"),equals_bvec4:new rs("fn tsl_equals_bvec4( a : vec4f, b : vec4f ) -> vec4 { return vec4( a.x == b.x, a.y == b.y, a.z == b.z, a.w == b.w ); }"),repeatWrapping_float:new rs("fn tsl_repeatWrapping_float( coord: f32 ) -> f32 { return fract( coord ); }"),mirrorWrapping_float:new rs("fn tsl_mirrorWrapping_float( coord: f32 ) -> f32 { let mirrored = fract( coord * 0.5 ) * 2.0; return 1.0 - abs( 1.0 - mirrored ); }"),clampWrapping_float:new rs("fn tsl_clampWrapping_float( coord: f32 ) -> f32 { return clamp( coord, 0.0, 1.0 ); }"),biquadraticTexture:new rs(` -fn tsl_biquadraticTexture( map : texture_2d, coord : vec2f, iRes : vec2u, level : u32 ) -> vec4f { - - let res = vec2f( iRes ); - - let uvScaled = coord * res; - let uvWrapping = ( ( uvScaled % res ) + res ) % res; - - // https://www.shadertoy.com/view/WtyXRy - - let uv = uvWrapping - 0.5; - let iuv = floor( uv ); - let f = fract( uv ); - - let rg1 = textureLoad( map, vec2u( iuv + vec2( 0.5, 0.5 ) ) % iRes, level ); - let rg2 = textureLoad( map, vec2u( iuv + vec2( 1.5, 0.5 ) ) % iRes, level ); - let rg3 = textureLoad( map, vec2u( iuv + vec2( 0.5, 1.5 ) ) % iRes, level ); - let rg4 = textureLoad( map, vec2u( iuv + vec2( 1.5, 1.5 ) ) % iRes, level ); - - return mix( mix( rg1, rg2, f.x ), mix( rg3, rg4, f.x ), f.y ); - -} -`)},Mm={dFdx:"dpdx",dFdy:"- dpdy",mod_float:"tsl_mod_float",mod_vec2:"tsl_mod_vec2",mod_vec3:"tsl_mod_vec3",mod_vec4:"tsl_mod_vec4",equals_bool:"tsl_equals_bool",equals_bvec2:"tsl_equals_bvec2",equals_bvec3:"tsl_equals_bvec3",equals_bvec4:"tsl_equals_bvec4",inversesqrt:"inverseSqrt",bitcast:"bitcast"};typeof navigator<"u"&&/Windows/g.test(navigator.userAgent)&&(Wo.pow_float=new rs("fn tsl_pow_float( a : f32, b : f32 ) -> f32 { return select( -pow( -a, b ), pow( a, b ), a > 0.0 ); }"),Wo.pow_vec2=new rs("fn tsl_pow_vec2( a : vec2f, b : vec2f ) -> vec2f { return vec2f( tsl_pow_float( a.x, b.x ), tsl_pow_float( a.y, b.y ) ); }",[Wo.pow_float]),Wo.pow_vec3=new rs("fn tsl_pow_vec3( a : vec3f, b : vec3f ) -> vec3f { return vec3f( tsl_pow_float( a.x, b.x ), tsl_pow_float( a.y, b.y ), tsl_pow_float( a.z, b.z ) ); }",[Wo.pow_float]),Wo.pow_vec4=new rs("fn tsl_pow_vec4( a : vec4f, b : vec4f ) -> vec4f { return vec4f( tsl_pow_float( a.x, b.x ), tsl_pow_float( a.y, b.y ), tsl_pow_float( a.z, b.z ), tsl_pow_float( a.w, b.w ) ); }",[Wo.pow_float]),Mm.pow_float="tsl_pow_float",Mm.pow_vec2="tsl_pow_vec2",Mm.pow_vec3="tsl_pow_vec3",Mm.pow_vec4="tsl_pow_vec4");let rO="";(typeof navigator<"u"&&/Firefox|Deno/g.test(navigator.userAgent))!==!0&&(rO+=`diagnostic( off, derivative_uniformity ); -`);class Yoe extends $B{constructor(e,t){super(e,t,new joe),this.uniformGroups={},this.builtins={},this.directives={},this.scopedArrays=new Map}needsToWorkingColorSpace(e){return e.isVideoTexture===!0&&e.colorSpace!==Co}_generateTextureSample(e,t,n,r,s=this.shaderStage){return s==="fragment"?r?`textureSample( ${t}, ${t}_sampler, ${n}, ${r} )`:`textureSample( ${t}, ${t}_sampler, ${n} )`:this.isFilteredTexture(e)?this.generateFilteredTexture(e,t,n):this.generateTextureLod(e,t,n,r,"0")}_generateVideoSample(e,t,n=this.shaderStage){if(n==="fragment")return`textureSampleBaseClampToEdge( ${e}, ${e}_sampler, vec2( ${t}.x, 1.0 - ${t}.y ) )`;console.error(`WebGPURenderer: THREE.VideoTexture does not support ${n} shader.`)}_generateTextureSampleLevel(e,t,n,r,s,a=this.shaderStage){return(a==="fragment"||a==="compute")&&this.isUnfilterable(e)===!1?`textureSampleLevel( ${t}, ${t}_sampler, ${n}, ${r} )`:this.isFilteredTexture(e)?this.generateFilteredTexture(e,t,n,r):this.generateTextureLod(e,t,n,s,r)}generateWrapFunction(e){const t=`tsl_coord_${PN[e.wrapS]}S_${PN[e.wrapT]}_${e.isData3DTexture?"3d":"2d"}T`;let n=UN[t];if(n===void 0){const r=[],s=e.isData3DTexture?"vec3f":"vec2f";let a=`fn ${t}( coord : ${s} ) -> ${s} { - - return ${s}( -`;const l=(u,h)=>{u===aA?(r.push(Wo.repeatWrapping_float),a+=` tsl_repeatWrapping_float( coord.${h} )`):u===eu?(r.push(Wo.clampWrapping_float),a+=` tsl_clampWrapping_float( coord.${h} )`):u===oA?(r.push(Wo.mirrorWrapping_float),a+=` tsl_mirrorWrapping_float( coord.${h} )`):(a+=` coord.${h}`,console.warn(`WebGPURenderer: Unsupported texture wrap type "${u}" for vertex shader.`))};l(e.wrapS,"x"),a+=`, -`,l(e.wrapT,"y"),e.isData3DTexture&&(a+=`, -`,l(e.wrapR,"z")),a+=` - ); - -} -`,UN[t]=n=new rs(a,r)}return n.build(this),t}generateTextureDimension(e,t,n){const r=this.getDataFromNode(e,this.shaderStage,this.globalCache);r.dimensionsSnippet===void 0&&(r.dimensionsSnippet={});let s=r.dimensionsSnippet[n];if(r.dimensionsSnippet[n]===void 0){let a,l;const{primarySamples:u}=this.renderer.backend.utils.getTextureSampleData(e),h=u>1;e.isData3DTexture?l="vec3":l="vec2",h||e.isVideoTexture||e.isStorageTexture?a=t:a=`${t}${n?`, u32( ${n} )`:""}`,s=new Kv(new Zv(`textureDimensions( ${a} )`,l)),r.dimensionsSnippet[n]=s,(e.isDataArrayTexture||e.isData3DTexture)&&(r.arrayLayerCount=new Kv(new Zv(`textureNumLayers(${t})`,"u32"))),e.isTextureCube&&(r.cubeFaceCount=new Kv(new Zv("6u","u32")))}return s.build(this)}generateFilteredTexture(e,t,n,r="0u"){this._include("biquadraticTexture");const s=this.generateWrapFunction(e),a=this.generateTextureDimension(e,t,r);return`tsl_biquadraticTexture( ${t}, ${s}( ${n} ), ${a}, u32( ${r} ) )`}generateTextureLod(e,t,n,r,s="0u"){const a=this.generateWrapFunction(e),l=this.generateTextureDimension(e,t,s),u=e.isData3DTexture?"vec3":"vec2",h=`${u}(${a}(${n}) * ${u}(${l}))`;return this.generateTextureLoad(e,t,h,r,s)}generateTextureLoad(e,t,n,r,s="0u"){return e.isVideoTexture===!0||e.isStorageTexture===!0?`textureLoad( ${t}, ${n} )`:r?`textureLoad( ${t}, ${n}, ${r}, u32( ${s} ) )`:`textureLoad( ${t}, ${n}, u32( ${s} ) )`}generateTextureStore(e,t,n,r){return`textureStore( ${t}, ${n}, ${r} )`}isSampleCompare(e){return e.isDepthTexture===!0&&e.compareFunction!==null}isUnfilterable(e){return this.getComponentTypeFromTexture(e)!=="float"||!this.isAvailable("float32Filterable")&&e.isDataTexture===!0&&e.type===$r||this.isSampleCompare(e)===!1&&e.minFilter===mr&&e.magFilter===mr||this.renderer.backend.utils.getTextureSampleData(e).primarySamples>1}generateTexture(e,t,n,r,s=this.shaderStage){let a=null;return e.isVideoTexture===!0?a=this._generateVideoSample(t,n,s):this.isUnfilterable(e)?a=this.generateTextureLod(e,t,n,r,"0",s):a=this._generateTextureSample(e,t,n,r,s),a}generateTextureGrad(e,t,n,r,s,a=this.shaderStage){if(a==="fragment")return`textureSampleGrad( ${t}, ${t}_sampler, ${n}, ${r[0]}, ${r[1]} )`;console.error(`WebGPURenderer: THREE.TextureNode.gradient() does not support ${a} shader.`)}generateTextureCompare(e,t,n,r,s,a=this.shaderStage){if(a==="fragment")return`textureSampleCompare( ${t}, ${t}_sampler, ${n}, ${r} )`;console.error(`WebGPURenderer: THREE.DepthTexture.compareFunction() does not support ${a} shader.`)}generateTextureLevel(e,t,n,r,s,a=this.shaderStage){let l=null;return e.isVideoTexture===!0?l=this._generateVideoSample(t,n,a):l=this._generateTextureSampleLevel(e,t,n,r,s,a),l}generateTextureBias(e,t,n,r,s,a=this.shaderStage){if(a==="fragment")return`textureSampleBias( ${t}, ${t}_sampler, ${n}, ${r} )`;console.error(`WebGPURenderer: THREE.TextureNode.biasNode does not support ${a} shader.`)}getPropertyName(e,t=this.shaderStage){if(e.isNodeVarying===!0&&e.needsInterpolation===!0){if(t==="vertex")return`varyings.${e.name}`}else if(e.isNodeUniform===!0){const n=e.name,r=e.type;return r==="texture"||r==="cubeTexture"||r==="storageTexture"||r==="texture3D"?n:r==="buffer"||r==="storageBuffer"||r==="indirectStorageBuffer"?`NodeBuffer_${e.id}.${n}`:e.groupNode.name+"."+n}return super.getPropertyName(e)}getOutputStructName(){return"output"}_getUniformGroupCount(e){return Object.keys(this.uniforms[e]).length}getFunctionOperator(e){const t=$oe[e];return t!==void 0?(this._include(t),t):null}getNodeAccess(e,t){return t!=="compute"?sa.READ_ONLY:e.access}getStorageAccess(e,t){return Woe[this.getNodeAccess(e,t)]}getUniformFromNode(e,t,n,r=null){const s=super.getUniformFromNode(e,t,n,r),a=this.getDataFromNode(e,n,this.globalCache);if(a.uniformGPU===void 0){let l;const u=e.groupNode,h=u.name,g=this.getBindGroupArray(h,n);if(t==="texture"||t==="cubeTexture"||t==="storageTexture"||t==="texture3D"){let v=null;const x=this.getNodeAccess(e,n);if(t==="texture"||t==="storageTexture"?v=new ex(s.name,s.node,u,x):t==="cubeTexture"?v=new tO(s.name,s.node,u,x):t==="texture3D"&&(v=new nO(s.name,s.node,u,x)),v.store=e.isStorageTextureNode===!0,v.setVisibility(Tv[n]),(n==="fragment"||n==="compute")&&this.isUnfilterable(e.value)===!1&&v.store===!1){const S=new Loe(`${s.name}_sampler`,s.node,u);S.setVisibility(Tv[n]),g.push(S,v),l=[S,v]}else g.push(v),l=[v]}else if(t==="buffer"||t==="storageBuffer"||t==="indirectStorageBuffer"){const v=t==="buffer"?JB:Ooe,x=new v(e,u);x.setVisibility(Tv[n]),g.push(x),l=x}else{const v=this.uniformGroups[n]||(this.uniformGroups[n]={});let x=v[h];x===void 0&&(x=new eO(h,u),x.setVisibility(Tv[n]),v[h]=x,g.push(x)),l=this.getNodeUniform(s,t),x.addUniform(l)}a.uniformGPU=l}return s}getBuiltin(e,t,n,r=this.shaderStage){const s=this.builtins[r]||(this.builtins[r]=new Map);return s.has(e)===!1&&s.set(e,{name:e,property:t,type:n}),t}hasBuiltin(e,t=this.shaderStage){return this.builtins[t]!==void 0&&this.builtins[t].has(e)}getVertexIndex(){return this.shaderStage==="vertex"?this.getBuiltin("vertex_index","vertexIndex","u32","attribute"):"vertexIndex"}buildFunctionCode(e){const t=e.layout,n=this.flowShaderNode(e),r=[];for(const a of t.inputs)r.push(a.name+" : "+this.getType(a.type));let s=`fn ${t.name}( ${r.join(", ")} ) -> ${this.getType(t.type)} { -${n.vars} -${n.code} -`;return n.result&&(s+=` return ${n.result}; -`),s+=` -} -`,s}getInstanceIndex(){return this.shaderStage==="vertex"?this.getBuiltin("instance_index","instanceIndex","u32","attribute"):"instanceIndex"}getInvocationLocalIndex(){return this.getBuiltin("local_invocation_index","invocationLocalIndex","u32","attribute")}getSubgroupSize(){return this.enableSubGroups(),this.getBuiltin("subgroup_size","subgroupSize","u32","attribute")}getInvocationSubgroupIndex(){return this.enableSubGroups(),this.getBuiltin("subgroup_invocation_id","invocationSubgroupIndex","u32","attribute")}getSubgroupIndex(){return this.enableSubGroups(),this.getBuiltin("subgroup_id","subgroupIndex","u32","attribute")}getDrawIndex(){return null}getFrontFacing(){return this.getBuiltin("front_facing","isFront","bool")}getFragCoord(){return this.getBuiltin("position","fragCoord","vec4")+".xy"}getFragDepth(){return"output."+this.getBuiltin("frag_depth","depth","f32","output")}getClipDistance(){return"varyings.hw_clip_distances"}isFlipY(){return!1}enableDirective(e,t=this.shaderStage){(this.directives[t]||(this.directives[t]=new Set)).add(e)}getDirectives(e){const t=[],n=this.directives[e];if(n!==void 0)for(const r of n)t.push(`enable ${r};`);return t.join(` -`)}enableSubGroups(){this.enableDirective("subgroups")}enableSubgroupsF16(){this.enableDirective("subgroups-f16")}enableClipDistances(){this.enableDirective("clip_distances")}enableShaderF16(){this.enableDirective("f16")}enableDualSourceBlending(){this.enableDirective("dual_source_blending")}enableHardwareClipping(e){this.enableClipDistances(),this.getBuiltin("clip_distances","hw_clip_distances",`array`,"vertex")}getBuiltins(e){const t=[],n=this.builtins[e];if(n!==void 0)for(const{name:r,property:s,type:a}of n.values())t.push(`@builtin( ${r} ) ${s} : ${a}`);return t.join(`, - `)}getScopedArray(e,t,n,r){return this.scopedArrays.has(e)===!1&&this.scopedArrays.set(e,{name:e,scope:t,bufferType:n,bufferCount:r}),e}getScopedArrays(e){if(e!=="compute")return;const t=[];for(const{name:n,scope:r,bufferType:s,bufferCount:a}of this.scopedArrays.values()){const l=this.getType(s);t.push(`var<${r}> ${n}: array< ${l}, ${a} >;`)}return t.join(` -`)}getAttributes(e){const t=[];if(e==="compute"&&(this.getBuiltin("global_invocation_id","id","vec3","attribute"),this.getBuiltin("workgroup_id","workgroupId","vec3","attribute"),this.getBuiltin("local_invocation_id","localId","vec3","attribute"),this.getBuiltin("num_workgroups","numWorkgroups","vec3","attribute"),this.renderer.hasFeature("subgroups")&&(this.enableDirective("subgroups",e),this.getBuiltin("subgroup_size","subgroupSize","u32","attribute"))),e==="vertex"||e==="compute"){const n=this.getBuiltins("attribute");n&&t.push(n);const r=this.getAttributesArray();for(let s=0,a=r.length;s`)}const r=this.getBuiltins("output");return r&&t.push(" "+r),t.join(`, -`)}getStructs(e){const t=[],n=this.structs[e];for(let r=0,s=n.length;r output : ${l}; - -`)}return t.join(` - -`)}getVar(e,t){return`var ${t} : ${this.getType(e)}`}getVars(e){const t=[],n=this.vars[e];if(n!==void 0)for(const r of n)t.push(` ${this.getVar(r.type,r.name)};`);return` -${t.join(` -`)} -`}getVaryings(e){const t=[];if(e==="vertex"&&this.getBuiltin("position","Vertex","vec4","vertex"),e==="vertex"||e==="fragment"){const s=this.varyings,a=this.vars[e];for(let l=0;l1&&(S="_multisampled"),v.isCubeTexture===!0)x="texture_cube";else if(v.isDataArrayTexture===!0||v.isCompressedArrayTexture===!0)x="texture_2d_array";else if(v.isDepthTexture===!0)x=`texture_depth${S}_2d`;else if(v.isVideoTexture===!0)x="texture_external";else if(v.isData3DTexture===!0)x="texture_3d";else if(u.node.isStorageTextureNode===!0){const R=iw(v),C=this.getStorageAccess(u.node,e);x=`texture_storage_2d<${R}, ${C}>`}else{const R=this.getComponentTypeFromTexture(v).charAt(0);x=`texture${S}_2d<${R}32>`}n.push(`@binding( ${g.binding++} ) @group( ${g.group} ) var ${u.name} : ${x};`)}else if(u.type==="buffer"||u.type==="storageBuffer"||u.type==="indirectStorageBuffer"){const v=u.node,x=this.getType(v.bufferType),S=v.bufferCount,w=S>0&&u.type==="buffer"?", "+S:"",R=v.isAtomic?`atomic<${x}>`:`${x}`,C=` ${u.name} : array< ${R}${w} > -`,E=v.isStorageBufferNode?`storage, ${this.getStorageAccess(v,e)}`:"uniform";r.push(this._getWGSLStructBinding("NodeBuffer_"+v.id,C,E,g.binding++,g.group))}else{const v=this.getType(this.getVectorType(u.type)),x=u.groupNode.name;(a[x]||(a[x]={index:g.binding++,id:g.group,snippets:[]})).snippets.push(` ${u.name} : ${v}`)}}for(const u in a){const h=a[u];s.push(this._getWGSLStructBinding(u,h.snippets.join(`, -`),"uniform",h.index,h.id))}let l=n.join(` -`);return l+=r.join(` -`),l+=s.join(` -`),l}buildCode(){const e=this.material!==null?{fragment:{},vertex:{}}:{compute:{}};this.sortBindingGroups();for(const t in e){const n=e[t];n.uniforms=this.getUniforms(t),n.attributes=this.getAttributes(t),n.varyings=this.getVaryings(t),n.structs=this.getStructs(t),n.vars=this.getVars(t),n.codes=this.getCodes(t),n.directives=this.getDirectives(t),n.scopedArrays=this.getScopedArrays(t);let r=`// code - -`;r+=this.flowCode[t];const s=this.flowNodes[t],a=s[s.length-1],l=a.outputNode,u=l!==void 0&&l.isOutputStructNode===!0;for(const h of s){const g=this.getFlowData(h),v=h.name;if(v&&(r.length>0&&(r+=` -`),r+=` // flow -> ${v} - `),r+=`${g.code} - `,h===a&&t!=="compute"){if(r+=`// result - - `,t==="vertex")r+=`varyings.Vertex = ${g.result};`;else if(t==="fragment")if(u)n.returnType=l.nodeType,r+=`return ${g.result};`;else{let x=" @location(0) color: vec4";const S=this.getBuiltins("output");S&&(x+=`, - `+S),n.returnType="OutputStruct",n.structs+=this._getWGSLStruct("OutputStruct",x),n.structs+=` -var output : OutputStruct; - -`,r+=`output.color = ${g.result}; - - return output;`}}}n.flow=r}this.material!==null?(this.vertexShader=this._getWGSLVertexCode(e.vertex),this.fragmentShader=this._getWGSLFragmentCode(e.fragment)):this.computeShader=this._getWGSLComputeCode(e.compute,(this.object.workgroupSize||[64]).join(", "))}getMethod(e,t=null){let n;return t!==null&&(n=this._getWGSLMethod(e+"_"+t)),n===void 0&&(n=this._getWGSLMethod(e)),n||e}getType(e){return Xoe[e]||e}isAvailable(e){let t=LN[e];return t===void 0&&(e==="float32Filterable"?t=this.renderer.hasFeature("float32-filterable"):e==="clipDistance"&&(t=this.renderer.hasFeature("clip-distances")),LN[e]=t),t}_getWGSLMethod(e){return Wo[e]!==void 0&&this._include(e),Mm[e]}_include(e){const t=Wo[e];return t.build(this),this.currentFunctionNode!==null&&this.currentFunctionNode.includes.push(t),t}_getWGSLVertexCode(e){return`${this.getSignature()} -// directives -${e.directives} - -// uniforms -${e.uniforms} - -// varyings -${e.varyings} -var varyings : VaryingsStruct; - -// codes -${e.codes} - -@vertex -fn main( ${e.attributes} ) -> VaryingsStruct { - - // vars - ${e.vars} - - // flow - ${e.flow} - - return varyings; - -} -`}_getWGSLFragmentCode(e){return`${this.getSignature()} -// global -${rO} - -// uniforms -${e.uniforms} - -// structs -${e.structs} - -// codes -${e.codes} - -@fragment -fn main( ${e.varyings} ) -> ${e.returnType} { - - // vars - ${e.vars} - - // flow - ${e.flow} - -} -`}_getWGSLComputeCode(e,t){return`${this.getSignature()} -// directives -${e.directives} - -// system -var instanceIndex : u32; - -// locals -${e.scopedArrays} - -// uniforms -${e.uniforms} - -// codes -${e.codes} - -@compute @workgroup_size( ${t} ) -fn main( ${e.attributes} ) { - - // system - instanceIndex = id.x + id.y * numWorkgroups.x * u32(${t}) + id.z * numWorkgroups.x * numWorkgroups.y * u32(${t}); - - // vars - ${e.vars} - - // flow - ${e.flow} - -} -`}_getWGSLStruct(e,t){return` -struct ${e} { -${t} -};`}_getWGSLStructBinding(e,t,n,r=0,s=0){const a=e+"Struct";return`${this._getWGSLStruct(a,t)} -@binding( ${r} ) @group( ${s} ) -var<${n}> ${e} : ${a};`}}class Qoe{constructor(e){this.backend=e}getCurrentDepthStencilFormat(e){let t;return e.depthTexture!==null?t=this.getTextureFormatGPU(e.depthTexture):e.depth&&e.stencil?t=Ne.Depth24PlusStencil8:e.depth&&(t=Ne.Depth24Plus),t}getTextureFormatGPU(e){return this.backend.get(e).format}getTextureSampleData(e){let t;if(e.isFramebufferTexture)t=1;else if(e.isDepthTexture&&!e.renderTarget){const s=this.backend.renderer,a=s.getRenderTarget();t=a?a.samples:s.samples}else e.renderTarget&&(t=e.renderTarget.samples);t=t||1;const n=t>1&&e.renderTarget!==null&&e.isDepthTexture!==!0&&e.isFramebufferTexture!==!0;return{samples:t,primarySamples:n?1:t,isMSAA:n}}getCurrentColorFormat(e){let t;return e.textures!==null?t=this.getTextureFormatGPU(e.textures[0]):t=this.getPreferredCanvasFormat(),t}getCurrentColorSpace(e){return e.textures!==null?e.textures[0].colorSpace:this.backend.renderer.outputColorSpace}getPrimitiveTopology(e,t){if(e.isPoints)return Zd.PointList;if(e.isLineSegments||e.isMesh&&t.wireframe===!0)return Zd.LineList;if(e.isLine)return Zd.LineStrip;if(e.isMesh)return Zd.TriangleList}getSampleCount(e){let t=1;return e>1&&(t=Math.pow(2,Math.floor(Math.log2(e))),t===2&&(t=4)),t}getSampleCountRenderContext(e){return e.textures!==null?this.getSampleCount(e.sampleCount):this.getSampleCount(this.backend.renderer.samples)}getPreferredCanvasFormat(){return navigator.userAgent.includes("Quest")?Ne.BGRA8Unorm:navigator.gpu.getPreferredCanvasFormat()}}const Koe=new Map([[Int8Array,["sint8","snorm8"]],[Uint8Array,["uint8","unorm8"]],[Int16Array,["sint16","snorm16"]],[Uint16Array,["uint16","unorm16"]],[Int32Array,["sint32","snorm32"]],[Uint32Array,["uint32","unorm32"]],[Float32Array,["float32"]]]),Zoe=new Map([[z7,["float16"]]]),Joe=new Map([[Int32Array,"sint32"],[Int16Array,"sint32"],[Uint32Array,"uint32"],[Uint16Array,"uint32"],[Float32Array,"float32"]]);class ele{constructor(e){this.backend=e}createAttribute(e,t){const n=this._getBufferAttribute(e),r=this.backend,s=r.get(n);let a=s.buffer;if(a===void 0){const l=r.device;let u=n.array;if(e.normalized===!1&&(u.constructor===Int16Array||u.constructor===Uint16Array)){const g=new Uint32Array(u.length);for(let v=0;v1&&(u.multisampled=!0,a.texture.isDepthTexture||(u.sampleType=Ld.UnfilterableFloat)),a.texture.isDepthTexture)u.sampleType=Ld.Depth;else if(a.texture.isDataTexture||a.texture.isDataArrayTexture||a.texture.isData3DTexture){const g=a.texture.type;g===Ns?u.sampleType=Ld.SInt:g===Rr?u.sampleType=Ld.UInt:g===$r&&(this.backend.hasFeature("float32-filterable")?u.sampleType=Ld.Float:u.sampleType=Ld.UnfilterableFloat)}a.isSampledCubeTexture?u.viewDimension=za.Cube:a.texture.isDataArrayTexture||a.texture.isCompressedArrayTexture?u.viewDimension=za.TwoDArray:a.isSampledTexture3D&&(u.viewDimension=za.ThreeD),l.texture=u}else console.error(`WebGPUBindingUtils: Unsupported binding "${a}".`);r.push(l)}return n.createBindGroupLayout({entries:r})}createBindings(e,t,n,r=0){const{backend:s,bindGroupLayoutCache:a}=this,l=s.get(e);let u=a.get(e.bindingsReference);u===void 0&&(u=this.createBindingsLayout(e),a.set(e.bindingsReference,u));let h;n>0&&(l.groups===void 0&&(l.groups=[],l.versions=[]),l.versions[n]===r&&(h=l.groups[n])),h===void 0&&(h=this.createBindGroup(e,u),n>0&&(l.groups[n]=h,l.versions[n]=r)),l.group=h,l.layout=u}updateBinding(e){const t=this.backend,n=t.device,r=e.buffer,s=t.get(e).buffer;n.queue.writeBuffer(s,0,r,0)}createBindGroup(e,t){const n=this.backend,r=n.device;let s=0;const a=[];for(const l of e.bindings){if(l.isUniformBuffer){const u=n.get(l);if(u.buffer===void 0){const h=l.byteLength,g=GPUBufferUsage.UNIFORM|GPUBufferUsage.COPY_DST,v=r.createBuffer({label:"bindingBuffer_"+l.name,size:h,usage:g});u.buffer=v}a.push({binding:s,resource:{buffer:u.buffer}})}else if(l.isStorageBuffer){const u=n.get(l);if(u.buffer===void 0){const h=l.attribute;u.buffer=n.get(h).buffer}a.push({binding:s,resource:{buffer:u.buffer}})}else if(l.isSampler){const u=n.get(l.texture);a.push({binding:s,resource:u.sampler})}else if(l.isSampledTexture){const u=n.get(l.texture);let h;if(u.externalTexture!==void 0)h=r.importExternalTexture({source:u.externalTexture});else{const g=l.store?1:u.texture.mipLevelCount,v=`view-${u.texture.width}-${u.texture.height}-${g}`;if(h=u[v],h===void 0){const x=Doe.All;let S;l.isSampledCubeTexture?S=za.Cube:l.isSampledTexture3D?S=za.ThreeD:l.texture.isDataArrayTexture||l.texture.isCompressedArrayTexture?S=za.TwoDArray:S=za.TwoD,h=u[v]=u.texture.createView({aspect:x,dimension:S,mipLevelCount:g})}}a.push({binding:s,resource:h})}s++}return r.createBindGroup({label:"bindGroup_"+e.name,layout:t,entries:a})}}class nle{constructor(e){this.backend=e}_getSampleCount(e){return this.backend.utils.getSampleCountRenderContext(e)}createRenderPipeline(e,t){const{object:n,material:r,geometry:s,pipeline:a}=e,{vertexProgram:l,fragmentProgram:u}=a,h=this.backend,g=h.device,v=h.utils,x=h.get(a),S=[];for(const ne of e.getBindings()){const se=h.get(ne);S.push(se.layout)}const w=h.attributeUtils.createShaderVertexBuffers(e);let R;r.transparent===!0&&r.blending!==Qa&&(R=this._getBlending(r));let C={};r.stencilWrite===!0&&(C={compare:this._getStencilCompare(r),failOp:this._getStencilOperation(r.stencilFail),depthFailOp:this._getStencilOperation(r.stencilZFail),passOp:this._getStencilOperation(r.stencilZPass)});const E=this._getColorWriteMask(r),B=[];if(e.context.textures!==null){const ne=e.context.textures;for(let se=0;se1},layout:g.createPipelineLayout({bindGroupLayouts:S})},V={},Y=e.context.depth,ee=e.context.stencil;if((Y===!0||ee===!0)&&(Y===!0&&(V.format=k,V.depthWriteEnabled=r.depthWrite,V.depthCompare=G),ee===!0&&(V.stencilFront=C,V.stencilBack={},V.stencilReadMask=r.stencilFuncMask,V.stencilWriteMask=r.stencilWriteMask),F.depthStencil=V),t===null)x.pipeline=g.createRenderPipeline(F);else{const ne=new Promise(se=>{g.createRenderPipelineAsync(F).then(te=>{x.pipeline=te,se()})});t.push(ne)}}createBundleEncoder(e){const t=this.backend,{utils:n,device:r}=t,s=n.getCurrentDepthStencilFormat(e),a=n.getCurrentColorFormat(e),l=this._getSampleCount(e),u={label:"renderBundleEncoder",colorFormats:[a],depthStencilFormat:s,sampleCount:l};return r.createRenderBundleEncoder(u)}createComputePipeline(e,t){const n=this.backend,r=n.device,s=n.get(e.computeProgram).module,a=n.get(e),l=[];for(const u of t){const h=n.get(u);l.push(h.layout)}a.pipeline=r.createComputePipeline({compute:s,layout:r.createPipelineLayout({bindGroupLayouts:l})})}_getBlending(e){let t,n;const r=e.blending,s=e.blendSrc,a=e.blendDst,l=e.blendEquation;if(r===xw){const u=e.blendSrcAlpha!==null?e.blendSrcAlpha:s,h=e.blendDstAlpha!==null?e.blendDstAlpha:a,g=e.blendEquationAlpha!==null?e.blendEquationAlpha:l;t={srcFactor:this._getBlendFactor(s),dstFactor:this._getBlendFactor(a),operation:this._getBlendOperation(l)},n={srcFactor:this._getBlendFactor(u),dstFactor:this._getBlendFactor(h),operation:this._getBlendOperation(g)}}else{const u=e.premultipliedAlpha,h=(g,v,x,S)=>{t={srcFactor:g,dstFactor:v,operation:Df.Add},n={srcFactor:x,dstFactor:S,operation:Df.Add}};if(u)switch(r){case Ka:h(Kn.One,Kn.OneMinusSrcAlpha,Kn.One,Kn.OneMinusSrcAlpha);break;case a0:h(Kn.One,Kn.One,Kn.One,Kn.One);break;case o0:h(Kn.Zero,Kn.OneMinusSrc,Kn.Zero,Kn.One);break;case l0:h(Kn.Zero,Kn.Src,Kn.Zero,Kn.SrcAlpha);break}else switch(r){case Ka:h(Kn.SrcAlpha,Kn.OneMinusSrcAlpha,Kn.One,Kn.OneMinusSrcAlpha);break;case a0:h(Kn.SrcAlpha,Kn.One,Kn.SrcAlpha,Kn.One);break;case o0:h(Kn.Zero,Kn.OneMinusSrc,Kn.Zero,Kn.One);break;case l0:h(Kn.Zero,Kn.Src,Kn.Zero,Kn.Src);break}}if(t!==void 0&&n!==void 0)return{color:t,alpha:n};console.error("THREE.WebGPURenderer: Invalid blending: ",r)}_getBlendFactor(e){let t;switch(e){case Tw:t=Kn.Zero;break;case ww:t=Kn.One;break;case Mw:t=Kn.Src;break;case Ew:t=Kn.OneMinusSrc;break;case qm:t=Kn.SrcAlpha;break;case Vm:t=Kn.OneMinusSrcAlpha;break;case Nw:t=Kn.Dst;break;case Dw:t=Kn.OneMinusDstColor;break;case Cw:t=Kn.DstAlpha;break;case Rw:t=Kn.OneMinusDstAlpha;break;case Pw:t=Kn.SrcAlphaSaturated;break;case Ane:t=Kn.Constant;break;case dne:t=Kn.OneMinusConstant;break;default:console.error("THREE.WebGPURenderer: Blend factor not supported.",e)}return t}_getStencilCompare(e){let t;const n=e.stencilFunc;switch(n){case ek:t=Bs.Never;break;case WS:t=Bs.Always;break;case tk:t=Bs.Less;break;case ik:t=Bs.LessEqual;break;case nk:t=Bs.Equal;break;case ak:t=Bs.GreaterEqual;break;case rk:t=Bs.Greater;break;case sk:t=Bs.NotEqual;break;default:console.error("THREE.WebGPURenderer: Invalid stencil function.",n)}return t}_getStencilOperation(e){let t;switch(e){case Uf:t=Th.Keep;break;case $F:t=Th.Zero;break;case XF:t=Th.Replace;break;case JF:t=Th.Invert;break;case YF:t=Th.IncrementClamp;break;case QF:t=Th.DecrementClamp;break;case KF:t=Th.IncrementWrap;break;case ZF:t=Th.DecrementWrap;break;default:console.error("THREE.WebGPURenderer: Invalid stencil operation.",t)}return t}_getBlendOperation(e){let t;switch(e){case Eo:t=Df.Add;break;case bw:t=Df.Subtract;break;case Sw:t=Df.ReverseSubtract;break;case w7:t=Df.Min;break;case M7:t=Df.Max;break;default:console.error("THREE.WebGPUPipelineUtils: Blend equation not supported.",e)}return t}_getPrimitiveState(e,t,n){const r={},s=this.backend.utils;switch(r.topology=s.getPrimitiveTopology(e,n),t.index!==null&&e.isLine===!0&&e.isLineSegments!==!0&&(r.stripIndexFormat=t.index.array instanceof Uint16Array?k0.Uint16:k0.Uint32),n.side){case Nl:r.frontFace=bS.CCW,r.cullMode=SS.Back;break;case hr:r.frontFace=bS.CCW,r.cullMode=SS.Front;break;case as:r.frontFace=bS.CCW,r.cullMode=SS.None;break;default:console.error("THREE.WebGPUPipelineUtils: Unknown material.side value.",n.side);break}return r}_getColorWriteMask(e){return e.colorWrite===!0?RN.All:RN.None}_getDepthCompare(e){let t;if(e.depthTest===!1)t=Bs.Always;else{const n=e.depthFunc;switch(n){case Hm:t=Bs.Never;break;case jm:t=Bs.Always;break;case Wm:t=Bs.Less;break;case kh:t=Bs.LessEqual;break;case $m:t=Bs.Equal;break;case Xm:t=Bs.GreaterEqual;break;case Ym:t=Bs.Greater;break;case Qm:t=Bs.NotEqual;break;default:console.error("THREE.WebGPUPipelineUtils: Invalid depth function.",n)}}return t}}class ile extends iO{constructor(e={}){super(e),this.isWebGPUBackend=!0,this.parameters.alpha=e.alpha===void 0?!0:e.alpha,this.parameters.requiredLimits=e.requiredLimits===void 0?{}:e.requiredLimits,this.trackTimestamp=e.trackTimestamp===!0,this.device=null,this.context=null,this.colorBuffer=null,this.defaultRenderPassdescriptor=null,this.utils=new Qoe(this),this.attributeUtils=new ele(this),this.bindingUtils=new tle(this),this.pipelineUtils=new nle(this),this.textureUtils=new zoe(this),this.occludedResolveCache=new Map}async init(e){await super.init(e);const t=this.parameters;let n;if(t.device===void 0){const a={powerPreference:t.powerPreference},l=typeof navigator<"u"?await navigator.gpu.requestAdapter(a):null;if(l===null)throw new Error("WebGPUBackend: Unable to create WebGPU adapter.");const u=Object.values(nw),h=[];for(const v of u)l.features.has(v)&&h.push(v);const g={requiredFeatures:h,requiredLimits:t.requiredLimits};n=await l.requestDevice(g)}else n=t.device;n.lost.then(a=>{const l={api:"WebGPU",message:a.message||"Unknown reason",reason:a.reason||null,originalEvent:a};e.onDeviceLost(l)});const r=t.context!==void 0?t.context:e.domElement.getContext("webgpu");this.device=n,this.context=r;const s=t.alpha?"premultiplied":"opaque";this.trackTimestamp=this.trackTimestamp&&this.hasFeature(nw.TimestampQuery),this.context.configure({device:this.device,format:this.utils.getPreferredCanvasFormat(),usage:GPUTextureUsage.RENDER_ATTACHMENT|GPUTextureUsage.COPY_SRC,alphaMode:s}),this.updateSize()}get coordinateSystem(){return pu}async getArrayBufferAsync(e){return await this.attributeUtils.getArrayBufferAsync(e)}getContext(){return this.context}_getDefaultRenderPassDescriptor(){let e=this.defaultRenderPassdescriptor;if(e===null){const n=this.renderer;e={colorAttachments:[{view:null}]},(this.renderer.depth===!0||this.renderer.stencil===!0)&&(e.depthStencilAttachment={view:this.textureUtils.getDepthBuffer(n.depth,n.stencil).createView()});const r=e.colorAttachments[0];this.renderer.samples>0?r.view=this.colorBuffer.createView():r.resolveTarget=void 0,this.defaultRenderPassdescriptor=e}const t=e.colorAttachments[0];return this.renderer.samples>0?t.resolveTarget=this.context.getCurrentTexture().createView():t.view=this.context.getCurrentTexture().createView(),e}_getRenderPassDescriptor(e,t={}){const n=e.renderTarget,r=this.get(n);let s=r.descriptors;if(s===void 0||r.width!==n.width||r.height!==n.height||r.dimensions!==n.dimensions||r.activeMipmapLevel!==n.activeMipmapLevel||r.activeCubeFace!==e.activeCubeFace||r.samples!==n.samples||r.loadOp!==t.loadOp){s={},r.descriptors=s;const u=()=>{n.removeEventListener("dispose",u),this.delete(n)};n.addEventListener("dispose",u)}const a=e.getCacheKey();let l=s[a];if(l===void 0){const u=e.textures,h=[];let g;for(let v=0;v0&&(t.currentOcclusionQuerySet&&t.currentOcclusionQuerySet.destroy(),t.currentOcclusionQueryBuffer&&t.currentOcclusionQueryBuffer.destroy(),t.currentOcclusionQuerySet=t.occlusionQuerySet,t.currentOcclusionQueryBuffer=t.occlusionQueryBuffer,t.currentOcclusionQueryObjects=t.occlusionQueryObjects,s=n.createQuerySet({type:"occlusion",count:r,label:`occlusionQuerySet_${e.id}`}),t.occlusionQuerySet=s,t.occlusionQueryIndex=0,t.occlusionQueryObjects=new Array(r),t.lastOcclusionObject=null);let a;e.textures===null?a=this._getDefaultRenderPassDescriptor():a=this._getRenderPassDescriptor(e,{loadOp:Wr.Load}),this.initTimestampQuery(e,a),a.occlusionQuerySet=s;const l=a.depthStencilAttachment;if(e.textures!==null){const g=a.colorAttachments;for(let v=0;v0&&t.currentPass.executeBundles(t.renderBundles),n>t.occlusionQueryIndex&&t.currentPass.endOcclusionQuery(),t.currentPass.end(),n>0){const r=n*8;let s=this.occludedResolveCache.get(r);s===void 0&&(s=this.device.createBuffer({size:r,usage:GPUBufferUsage.QUERY_RESOLVE|GPUBufferUsage.COPY_SRC}),this.occludedResolveCache.set(r,s));const a=this.device.createBuffer({size:r,usage:GPUBufferUsage.COPY_DST|GPUBufferUsage.MAP_READ});t.encoder.resolveQuerySet(t.occlusionQuerySet,0,n,s,0),t.encoder.copyBufferToBuffer(s,0,a,0,r),t.occlusionQueryBuffer=a,this.resolveOccludedAsync(e)}if(this.prepareTimestampBuffer(e,t.encoder),this.device.queue.submit([t.encoder.finish()]),e.textures!==null){const r=e.textures;for(let s=0;sl?(h.x=Math.min(t.dispatchCount,l),h.y=Math.ceil(t.dispatchCount/l)):h.x=t.dispatchCount,s.dispatchWorkgroups(h.x,h.y,h.z)}finishCompute(e){const t=this.get(e);t.passEncoderGPU.end(),this.prepareTimestampBuffer(e,t.cmdEncoderGPU),this.device.queue.submit([t.cmdEncoderGPU.finish()])}async waitForGPU(){await this.device.queue.onSubmittedWorkDone()}draw(e,t){const{object:n,context:r,pipeline:s}=e,a=e.getBindings(),l=this.get(r),u=this.get(s).pipeline,h=l.currentSets,g=l.currentPass,v=e.getDrawParameters();if(v===null)return;h.pipeline!==u&&(g.setPipeline(u),h.pipeline=u);const x=h.bindingGroups;for(let C=0,E=a.length;C1?0:O;w===!0?g.drawIndexed(E[O],z,C[O]/S.array.BYTES_PER_ELEMENT,0,G):g.draw(E[O],z,C[O],G)}}else if(w===!0){const{vertexCount:C,instanceCount:E,firstVertex:B}=v,L=e.getIndirect();if(L!==null){const O=this.get(L).buffer;g.drawIndexedIndirect(O,0)}else g.drawIndexed(C,E,B,0,0);t.update(n,C,E)}else{const{vertexCount:C,instanceCount:E,firstVertex:B}=v,L=e.getIndirect();if(L!==null){const O=this.get(L).buffer;g.drawIndirect(O,0)}else g.draw(C,E,B,0);t.update(n,C,E)}}needsRenderUpdate(e){const t=this.get(e),{object:n,material:r}=e,s=this.utils,a=s.getSampleCountRenderContext(e.context),l=s.getCurrentColorSpace(e.context),u=s.getCurrentColorFormat(e.context),h=s.getCurrentDepthStencilFormat(e.context),g=s.getPrimitiveTopology(n,r);let v=!1;return(t.material!==r||t.materialVersion!==r.version||t.transparent!==r.transparent||t.blending!==r.blending||t.premultipliedAlpha!==r.premultipliedAlpha||t.blendSrc!==r.blendSrc||t.blendDst!==r.blendDst||t.blendEquation!==r.blendEquation||t.blendSrcAlpha!==r.blendSrcAlpha||t.blendDstAlpha!==r.blendDstAlpha||t.blendEquationAlpha!==r.blendEquationAlpha||t.colorWrite!==r.colorWrite||t.depthWrite!==r.depthWrite||t.depthTest!==r.depthTest||t.depthFunc!==r.depthFunc||t.stencilWrite!==r.stencilWrite||t.stencilFunc!==r.stencilFunc||t.stencilFail!==r.stencilFail||t.stencilZFail!==r.stencilZFail||t.stencilZPass!==r.stencilZPass||t.stencilFuncMask!==r.stencilFuncMask||t.stencilWriteMask!==r.stencilWriteMask||t.side!==r.side||t.alphaToCoverage!==r.alphaToCoverage||t.sampleCount!==a||t.colorSpace!==l||t.colorFormat!==u||t.depthStencilFormat!==h||t.primitiveTopology!==g||t.clippingContextCacheKey!==e.clippingContextCacheKey)&&(t.material=r,t.materialVersion=r.version,t.transparent=r.transparent,t.blending=r.blending,t.premultipliedAlpha=r.premultipliedAlpha,t.blendSrc=r.blendSrc,t.blendDst=r.blendDst,t.blendEquation=r.blendEquation,t.blendSrcAlpha=r.blendSrcAlpha,t.blendDstAlpha=r.blendDstAlpha,t.blendEquationAlpha=r.blendEquationAlpha,t.colorWrite=r.colorWrite,t.depthWrite=r.depthWrite,t.depthTest=r.depthTest,t.depthFunc=r.depthFunc,t.stencilWrite=r.stencilWrite,t.stencilFunc=r.stencilFunc,t.stencilFail=r.stencilFail,t.stencilZFail=r.stencilZFail,t.stencilZPass=r.stencilZPass,t.stencilFuncMask=r.stencilFuncMask,t.stencilWriteMask=r.stencilWriteMask,t.side=r.side,t.alphaToCoverage=r.alphaToCoverage,t.sampleCount=a,t.colorSpace=l,t.colorFormat=u,t.depthStencilFormat=h,t.primitiveTopology=g,t.clippingContextCacheKey=e.clippingContextCacheKey,v=!0),v}getRenderCacheKey(e){const{object:t,material:n}=e,r=this.utils,s=e.context;return[n.transparent,n.blending,n.premultipliedAlpha,n.blendSrc,n.blendDst,n.blendEquation,n.blendSrcAlpha,n.blendDstAlpha,n.blendEquationAlpha,n.colorWrite,n.depthWrite,n.depthTest,n.depthFunc,n.stencilWrite,n.stencilFunc,n.stencilFail,n.stencilZFail,n.stencilZPass,n.stencilFuncMask,n.stencilWriteMask,n.side,r.getSampleCountRenderContext(s),r.getCurrentColorSpace(s),r.getCurrentColorFormat(s),r.getCurrentDepthStencilFormat(s),r.getPrimitiveTopology(t,n),e.getGeometryCacheKey(),e.clippingContextCacheKey].join()}createSampler(e){this.textureUtils.createSampler(e)}destroySampler(e){this.textureUtils.destroySampler(e)}createDefaultTexture(e){this.textureUtils.createDefaultTexture(e)}createTexture(e,t){this.textureUtils.createTexture(e,t)}updateTexture(e,t){this.textureUtils.updateTexture(e,t)}generateMipmaps(e){this.textureUtils.generateMipmaps(e)}destroyTexture(e){this.textureUtils.destroyTexture(e)}copyTextureToBuffer(e,t,n,r,s,a){return this.textureUtils.copyTextureToBuffer(e,t,n,r,s,a)}initTimestampQuery(e,t){if(!this.trackTimestamp)return;const n=this.get(e);if(!n.timeStampQuerySet){const r=e.isComputeNode?"compute":"render",s=this.device.createQuerySet({type:"timestamp",count:2,label:`timestamp_${r}_${e.id}`});Object.assign(t,{timestampWrites:{querySet:s,beginningOfPassWriteIndex:0,endOfPassWriteIndex:1}}),n.timeStampQuerySet=s}}prepareTimestampBuffer(e,t){if(!this.trackTimestamp)return;const n=this.get(e),r=2*BigInt64Array.BYTES_PER_ELEMENT;n.currentTimestampQueryBuffers===void 0&&(n.currentTimestampQueryBuffers={resolveBuffer:this.device.createBuffer({label:"timestamp resolve buffer",size:r,usage:GPUBufferUsage.QUERY_RESOLVE|GPUBufferUsage.COPY_SRC}),resultBuffer:this.device.createBuffer({label:"timestamp result buffer",size:r,usage:GPUBufferUsage.COPY_DST|GPUBufferUsage.MAP_READ})});const{resolveBuffer:s,resultBuffer:a}=n.currentTimestampQueryBuffers;t.resolveQuerySet(n.timeStampQuerySet,0,2,s,0),a.mapState==="unmapped"&&t.copyBufferToBuffer(s,0,a,0,r)}async resolveTimestampAsync(e,t="render"){if(!this.trackTimestamp)return;const n=this.get(e);if(n.currentTimestampQueryBuffers===void 0)return;const{resultBuffer:r}=n.currentTimestampQueryBuffers;r.mapState==="unmapped"&&r.mapAsync(GPUMapMode.READ).then(()=>{const s=new BigUint64Array(r.getMappedRange()),a=Number(s[1]-s[0])/1e6;this.renderer.info.updateTimestamp(t,a),r.unmap()})}createNodeBuilder(e,t){return new Yoe(e,t)}createProgram(e){const t=this.get(e);t.module={module:this.device.createShaderModule({code:e.code,label:e.stage+(e.name!==""?`_${e.name}`:"")}),entryPoint:"main"}}destroyProgram(e){this.delete(e)}createRenderPipeline(e,t){this.pipelineUtils.createRenderPipeline(e,t)}createComputePipeline(e,t){this.pipelineUtils.createComputePipeline(e,t)}beginBundle(e){const t=this.get(e);t._currentPass=t.currentPass,t._currentSets=t.currentSets,t.currentSets={attributes:{},bindingGroups:[],pipeline:null,index:null},t.currentPass=this.pipelineUtils.createBundleEncoder(e)}finishBundle(e,t){const n=this.get(e),s=n.currentPass.finish();this.get(t).bundleGPU=s,n.currentSets=n._currentSets,n.currentPass=n._currentPass}addBundle(e,t){this.get(e).renderBundles.push(this.get(t).bundleGPU)}createBindings(e,t,n,r){this.bindingUtils.createBindings(e,t,n,r)}updateBindings(e,t,n,r){this.bindingUtils.createBindings(e,t,n,r)}updateBinding(e){this.bindingUtils.updateBinding(e)}createIndexAttribute(e){this.attributeUtils.createAttribute(e,GPUBufferUsage.INDEX|GPUBufferUsage.COPY_SRC|GPUBufferUsage.COPY_DST)}createAttribute(e){this.attributeUtils.createAttribute(e,GPUBufferUsage.VERTEX|GPUBufferUsage.COPY_SRC|GPUBufferUsage.COPY_DST)}createStorageAttribute(e){this.attributeUtils.createAttribute(e,GPUBufferUsage.STORAGE|GPUBufferUsage.VERTEX|GPUBufferUsage.COPY_SRC|GPUBufferUsage.COPY_DST)}createIndirectStorageAttribute(e){this.attributeUtils.createAttribute(e,GPUBufferUsage.STORAGE|GPUBufferUsage.INDIRECT|GPUBufferUsage.COPY_SRC|GPUBufferUsage.COPY_DST)}updateAttribute(e){this.attributeUtils.updateAttribute(e)}destroyAttribute(e){this.attributeUtils.destroyAttribute(e)}updateSize(){this.colorBuffer=this.textureUtils.getColorBuffer(),this.defaultRenderPassdescriptor=null}getMaxAnisotropy(){return 16}hasFeature(e){return this.device.features.has(e)}copyTextureToTexture(e,t,n=null,r=null,s=0){let a=0,l=0,u=0,h=0,g=0,v=0,x=e.image.width,S=e.image.height;n!==null&&(h=n.x,g=n.y,v=n.z||0,x=n.width,S=n.height),r!==null&&(a=r.x,l=r.y,u=r.z||0);const w=this.device.createCommandEncoder({label:"copyTextureToTexture_"+e.id+"_"+t.id}),R=this.get(e).texture,C=this.get(t).texture;w.copyTextureToTexture({texture:R,mipLevel:s,origin:{x:h,y:g,z:v}},{texture:C,mipLevel:s,origin:{x:a,y:l,z:u}},[x,S,1]),this.device.queue.submit([w.finish()])}copyFramebufferToTexture(e,t,n){const r=this.get(t);let s=null;t.renderTarget?e.isDepthTexture?s=this.get(t.depthTexture).texture:s=this.get(t.textures[0]).texture:e.isDepthTexture?s=this.textureUtils.getDepthBuffer(t.depth,t.stencil):s=this.context.getCurrentTexture();const a=this.get(e).texture;if(s.format!==a.format){console.error("WebGPUBackend: copyFramebufferToTexture: Source and destination formats do not match.",s.format,a.format);return}let l;if(r.currentPass?(r.currentPass.end(),l=r.encoder):l=this.device.createCommandEncoder({label:"copyFramebufferToTexture_"+e.id}),l.copyTextureToTexture({texture:s,origin:[n.x,n.y,0]},{texture:a},[n.z,n.w]),e.generateMipmaps&&this.textureUtils.generateMipmaps(e),r.currentPass){const{descriptor:u}=r;for(let h=0;h(console.warn("THREE.WebGPURenderer: WebGPU is not available, running under WebGL2 backend."),new CN(e)));const n=new t(e);super(n,e),this.library=new sle,this.isWebGPURenderer=!0}}/** - * @license - * Copyright 2010-2024 Three.js Authors - * SPDX-License-Identifier: MIT - */j.BRDF_GGX;j.BRDF_Lambert;j.BasicShadowFilter;j.Break;j.Continue;j.DFGApprox;j.D_GGX;j.Discard;j.EPSILON;j.F_Schlick;const ale=j.Fn;j.INFINITY;const ole=j.If,lle=j.Loop;j.NodeShaderStage;j.NodeType;j.NodeUpdateType;j.NodeAccess;j.PCFShadowFilter;j.PCFSoftShadowFilter;j.PI;j.PI2;j.Return;j.Schlick_to_F0;j.ScriptableNodeResources;j.ShaderNode;j.TBNViewMatrix;j.VSMShadowFilter;j.V_GGX_SmithCorrelated;j.abs;j.acesFilmicToneMapping;j.acos;j.add;j.addNodeElement;j.agxToneMapping;j.all;j.alphaT;j.and;j.anisotropy;j.anisotropyB;j.anisotropyT;j.any;j.append;j.arrayBuffer;const ule=j.asin;j.assign;j.atan;j.atan2;j.atomicAdd;j.atomicAnd;j.atomicFunc;j.atomicMax;j.atomicMin;j.atomicOr;j.atomicStore;j.atomicSub;j.atomicXor;j.attenuationColor;j.attenuationDistance;j.attribute;j.attributeArray;j.backgroundBlurriness;j.backgroundIntensity;j.backgroundRotation;j.batch;j.billboarding;j.bitAnd;j.bitNot;j.bitOr;j.bitXor;j.bitangentGeometry;j.bitangentLocal;j.bitangentView;j.bitangentWorld;j.bitcast;j.blendBurn;j.blendColor;j.blendDodge;j.blendOverlay;j.blendScreen;j.blur;j.bool;j.buffer;j.bufferAttribute;j.bumpMap;j.burn;j.bvec2;j.bvec3;j.bvec4;j.bypass;j.cache;j.call;j.cameraFar;j.cameraNear;j.cameraNormalMatrix;j.cameraPosition;j.cameraProjectionMatrix;j.cameraProjectionMatrixInverse;j.cameraViewMatrix;j.cameraWorldMatrix;j.cbrt;j.cdl;j.ceil;j.checker;j.cineonToneMapping;j.clamp;j.clearcoat;j.clearcoatRoughness;j.code;j.color;j.colorSpaceToWorking;j.colorToDirection;j.compute;j.cond;j.context;j.convert;j.convertColorSpace;j.convertToTexture;const cle=j.cos;j.cross;j.cubeTexture;j.dFdx;j.dFdy;j.dashSize;j.defaultBuildStages;j.defaultShaderStages;j.defined;j.degrees;j.deltaTime;j.densityFog;j.densityFogFactor;j.depth;j.depthPass;j.difference;j.diffuseColor;j.directPointLight;j.directionToColor;j.dispersion;j.distance;j.div;j.dodge;j.dot;j.drawIndex;j.dynamicBufferAttribute;j.element;j.emissive;j.equal;j.equals;j.equirectUV;const hle=j.exp;j.exp2;j.expression;j.faceDirection;j.faceForward;j.faceforward;const fle=j.float;j.floor;j.fog;j.fract;j.frameGroup;j.frameId;j.frontFacing;j.fwidth;j.gain;j.gapSize;j.getConstNodeType;j.getCurrentStack;j.getDirection;j.getDistanceAttenuation;j.getGeometryRoughness;j.getNormalFromDepth;j.getParallaxCorrectNormal;j.getRoughness;j.getScreenPosition;j.getShIrradianceAt;j.getTextureIndex;j.getViewPosition;j.glsl;j.glslFn;j.grayscale;j.greaterThan;j.greaterThanEqual;j.hash;j.highpModelNormalViewMatrix;j.highpModelViewMatrix;j.hue;j.instance;const Ale=j.instanceIndex;j.instancedArray;j.instancedBufferAttribute;j.instancedDynamicBufferAttribute;j.instancedMesh;j.int;j.inverseSqrt;j.inversesqrt;j.invocationLocalIndex;j.invocationSubgroupIndex;j.ior;j.iridescence;j.iridescenceIOR;j.iridescenceThickness;j.ivec2;j.ivec3;j.ivec4;j.js;j.label;j.length;j.lengthSq;j.lessThan;j.lessThanEqual;j.lightPosition;j.lightTargetDirection;j.lightTargetPosition;j.lightViewPosition;j.lightingContext;j.lights;j.linearDepth;j.linearToneMapping;j.localId;j.log;j.log2;j.logarithmicDepthToViewZ;j.loop;j.luminance;j.mediumpModelViewMatrix;j.mat2;j.mat3;j.mat4;j.matcapUV;j.materialAO;j.materialAlphaTest;j.materialAnisotropy;j.materialAnisotropyVector;j.materialAttenuationColor;j.materialAttenuationDistance;j.materialClearcoat;j.materialClearcoatNormal;j.materialClearcoatRoughness;j.materialColor;j.materialDispersion;j.materialEmissive;j.materialIOR;j.materialIridescence;j.materialIridescenceIOR;j.materialIridescenceThickness;j.materialLightMap;j.materialLineDashOffset;j.materialLineDashSize;j.materialLineGapSize;j.materialLineScale;j.materialLineWidth;j.materialMetalness;j.materialNormal;j.materialOpacity;j.materialPointWidth;j.materialReference;j.materialReflectivity;j.materialRefractionRatio;j.materialRotation;j.materialRoughness;j.materialSheen;j.materialSheenRoughness;j.materialShininess;j.materialSpecular;j.materialSpecularColor;j.materialSpecularIntensity;j.materialSpecularStrength;j.materialThickness;j.materialTransmission;j.max;j.maxMipLevel;j.metalness;j.min;j.mix;j.mixElement;j.mod;j.modInt;j.modelDirection;j.modelNormalMatrix;j.modelPosition;j.modelScale;j.modelViewMatrix;j.modelViewPosition;j.modelViewProjection;j.modelWorldMatrix;j.modelWorldMatrixInverse;j.morphReference;j.mrt;j.mul;j.mx_aastep;j.mx_cell_noise_float;j.mx_contrast;j.mx_fractal_noise_float;j.mx_fractal_noise_vec2;j.mx_fractal_noise_vec3;j.mx_fractal_noise_vec4;j.mx_hsvtorgb;j.mx_noise_float;j.mx_noise_vec3;j.mx_noise_vec4;j.mx_ramplr;j.mx_ramptb;j.mx_rgbtohsv;j.mx_safepower;j.mx_splitlr;j.mx_splittb;j.mx_srgb_texture_to_lin_rec709;j.mx_transform_uv;j.mx_worley_noise_float;j.mx_worley_noise_vec2;j.mx_worley_noise_vec3;const dle=j.negate;j.neutralToneMapping;j.nodeArray;j.nodeImmutable;j.nodeObject;j.nodeObjects;j.nodeProxy;j.normalFlat;j.normalGeometry;j.normalLocal;j.normalMap;j.normalView;j.normalWorld;j.normalize;j.not;j.notEqual;j.numWorkgroups;j.objectDirection;j.objectGroup;j.objectPosition;j.objectScale;j.objectViewPosition;j.objectWorldMatrix;j.oneMinus;j.or;j.orthographicDepthToViewZ;j.oscSawtooth;j.oscSine;j.oscSquare;j.oscTriangle;j.output;j.outputStruct;j.overlay;j.overloadingFn;j.parabola;j.parallaxDirection;j.parallaxUV;j.parameter;j.pass;j.passTexture;j.pcurve;j.perspectiveDepthToViewZ;j.pmremTexture;j.pointUV;j.pointWidth;j.positionGeometry;j.positionLocal;j.positionPrevious;j.positionView;j.positionViewDirection;j.positionWorld;j.positionWorldDirection;j.posterize;j.pow;j.pow2;j.pow3;j.pow4;j.property;j.radians;j.rand;j.range;j.rangeFog;j.rangeFogFactor;j.reciprocal;j.reference;j.referenceBuffer;j.reflect;j.reflectVector;j.reflectView;j.reflector;j.refract;j.refractVector;j.refractView;j.reinhardToneMapping;j.remainder;j.remap;j.remapClamp;j.renderGroup;j.renderOutput;j.rendererReference;j.rotate;j.rotateUV;j.roughness;j.round;j.rtt;j.sRGBTransferEOTF;j.sRGBTransferOETF;j.sampler;j.saturate;j.saturation;j.screen;j.screenCoordinate;j.screenSize;j.screenUV;j.scriptable;j.scriptableValue;j.select;j.setCurrentStack;j.shaderStages;j.shadow;j.shadowPositionWorld;j.sharedUniformGroup;j.sheen;j.sheenRoughness;j.shiftLeft;j.shiftRight;j.shininess;j.sign;const ple=j.sin;j.sinc;j.skinning;j.skinningReference;j.smoothstep;j.smoothstepElement;j.specularColor;j.specularF90;j.spherizeUV;j.split;j.spritesheetUV;const mle=j.sqrt;j.stack;j.step;const gle=j.storage;j.storageBarrier;j.storageObject;j.storageTexture;j.string;j.sub;j.subgroupIndex;j.subgroupSize;j.tan;j.tangentGeometry;j.tangentLocal;j.tangentView;j.tangentWorld;j.temp;j.texture;j.texture3D;j.textureBarrier;j.textureBicubic;j.textureCubeUV;j.textureLoad;j.textureSize;j.textureStore;j.thickness;j.threshold;j.time;j.timerDelta;j.timerGlobal;j.timerLocal;j.toOutputColorSpace;j.toWorkingColorSpace;j.toneMapping;j.toneMappingExposure;j.toonOutlinePass;j.transformDirection;j.transformNormal;j.transformNormalToView;j.transformedBentNormalView;j.transformedBitangentView;j.transformedBitangentWorld;j.transformedClearcoatNormalView;j.transformedNormalView;j.transformedNormalWorld;j.transformedTangentView;j.transformedTangentWorld;j.transmission;j.transpose;j.tri;j.tri3;j.triNoise3D;j.triplanarTexture;j.triplanarTextures;j.trunc;j.tslFn;j.uint;const vle=j.uniform;j.uniformArray;j.uniformGroup;j.uniforms;j.userData;j.uv;j.uvec2;j.uvec3;j.uvec4;j.varying;j.varyingProperty;j.vec2;j.vec3;j.vec4;j.vectorComponents;j.velocity;j.vertexColor;j.vertexIndex;j.vibrance;j.viewZToLogarithmicDepth;j.viewZToOrthographicDepth;j.viewZToPerspectiveDepth;j.viewport;j.viewportBottomLeft;j.viewportCoordinate;j.viewportDepthTexture;j.viewportLinearDepth;j.viewportMipTexture;j.viewportResolution;j.viewportSafeUV;j.viewportSharedTexture;j.viewportSize;j.viewportTexture;j.viewportTopLeft;j.viewportUV;j.wgsl;j.wgslFn;j.workgroupArray;j.workgroupBarrier;j.workgroupId;j.workingToColorSpace;j.xor;const BN=new Gc,wv=new ce;class aO extends Wz{constructor(){super(),this.isLineSegmentsGeometry=!0,this.type="LineSegmentsGeometry";const e=[-1,2,0,1,2,0,-1,1,0,1,1,0,-1,0,0,1,0,0,-1,-1,0,1,-1,0],t=[-1,2,1,2,-1,1,1,1,-1,-1,1,-1,-1,-2,1,-2],n=[0,2,1,2,3,1,2,4,3,4,5,3,4,6,5,6,7,5];this.setIndex(n),this.setAttribute("position",new wi(e,3)),this.setAttribute("uv",new wi(t,2))}applyMatrix4(e){const t=this.attributes.instanceStart,n=this.attributes.instanceEnd;return t!==void 0&&(t.applyMatrix4(e),n.applyMatrix4(e),t.needsUpdate=!0),this.boundingBox!==null&&this.computeBoundingBox(),this.boundingSphere!==null&&this.computeBoundingSphere(),this}setPositions(e){let t;e instanceof Float32Array?t=e:Array.isArray(e)&&(t=new Float32Array(e));const n=new h_(t,6,1);return this.setAttribute("instanceStart",new nu(n,3,0)),this.setAttribute("instanceEnd",new nu(n,3,3)),this.instanceCount=this.attributes.instanceStart.count,this.computeBoundingBox(),this.computeBoundingSphere(),this}setColors(e){let t;e instanceof Float32Array?t=e:Array.isArray(e)&&(t=new Float32Array(e));const n=new h_(t,6,1);return this.setAttribute("instanceColorStart",new nu(n,3,0)),this.setAttribute("instanceColorEnd",new nu(n,3,3)),this}fromWireframeGeometry(e){return this.setPositions(e.attributes.position.array),this}fromEdgesGeometry(e){return this.setPositions(e.attributes.position.array),this}fromMesh(e){return this.fromWireframeGeometry(new Mz(e.geometry)),this}fromLineSegments(e){const t=e.geometry;return this.setPositions(t.attributes.position.array),this}computeBoundingBox(){this.boundingBox===null&&(this.boundingBox=new Gc);const e=this.attributes.instanceStart,t=this.attributes.instanceEnd;e!==void 0&&t!==void 0&&(this.boundingBox.setFromBufferAttribute(e),BN.setFromBufferAttribute(t),this.boundingBox.union(BN))}computeBoundingSphere(){this.boundingSphere===null&&(this.boundingSphere=new dA),this.boundingBox===null&&this.computeBoundingBox();const e=this.attributes.instanceStart,t=this.attributes.instanceEnd;if(e!==void 0&&t!==void 0){const n=this.boundingSphere.center;this.boundingBox.getCenter(n);let r=0;for(let s=0,a=e.count;s - #include - #include - #include - #include - - uniform float linewidth; - uniform vec2 resolution; - - attribute vec3 instanceStart; - attribute vec3 instanceEnd; - - attribute vec3 instanceColorStart; - attribute vec3 instanceColorEnd; - - #ifdef WORLD_UNITS - - varying vec4 worldPos; - varying vec3 worldStart; - varying vec3 worldEnd; - - #ifdef USE_DASH - - varying vec2 vUv; - - #endif - - #else - - varying vec2 vUv; - - #endif - - #ifdef USE_DASH - - uniform float dashScale; - attribute float instanceDistanceStart; - attribute float instanceDistanceEnd; - varying float vLineDistance; - - #endif - - void trimSegment( const in vec4 start, inout vec4 end ) { - - // trim end segment so it terminates between the camera plane and the near plane - - // conservative estimate of the near plane - float a = projectionMatrix[ 2 ][ 2 ]; // 3nd entry in 3th column - float b = projectionMatrix[ 3 ][ 2 ]; // 3nd entry in 4th column - float nearEstimate = - 0.5 * b / a; - - float alpha = ( nearEstimate - start.z ) / ( end.z - start.z ); - - end.xyz = mix( start.xyz, end.xyz, alpha ); - - } - - void main() { - - #ifdef USE_COLOR - - vColor.xyz = ( position.y < 0.5 ) ? instanceColorStart : instanceColorEnd; - - #endif - - #ifdef USE_DASH - - vLineDistance = ( position.y < 0.5 ) ? dashScale * instanceDistanceStart : dashScale * instanceDistanceEnd; - vUv = uv; - - #endif - - float aspect = resolution.x / resolution.y; - - // camera space - vec4 start = modelViewMatrix * vec4( instanceStart, 1.0 ); - vec4 end = modelViewMatrix * vec4( instanceEnd, 1.0 ); - - #ifdef WORLD_UNITS - - worldStart = start.xyz; - worldEnd = end.xyz; - - #else - - vUv = uv; - - #endif - - // special case for perspective projection, and segments that terminate either in, or behind, the camera plane - // clearly the gpu firmware has a way of addressing this issue when projecting into ndc space - // but we need to perform ndc-space calculations in the shader, so we must address this issue directly - // perhaps there is a more elegant solution -- WestLangley - - bool perspective = ( projectionMatrix[ 2 ][ 3 ] == - 1.0 ); // 4th entry in the 3rd column - - if ( perspective ) { - - if ( start.z < 0.0 && end.z >= 0.0 ) { - - trimSegment( start, end ); - - } else if ( end.z < 0.0 && start.z >= 0.0 ) { - - trimSegment( end, start ); - - } - - } - - // clip space - vec4 clipStart = projectionMatrix * start; - vec4 clipEnd = projectionMatrix * end; - - // ndc space - vec3 ndcStart = clipStart.xyz / clipStart.w; - vec3 ndcEnd = clipEnd.xyz / clipEnd.w; - - // direction - vec2 dir = ndcEnd.xy - ndcStart.xy; - - // account for clip-space aspect ratio - dir.x *= aspect; - dir = normalize( dir ); - - #ifdef WORLD_UNITS - - vec3 worldDir = normalize( end.xyz - start.xyz ); - vec3 tmpFwd = normalize( mix( start.xyz, end.xyz, 0.5 ) ); - vec3 worldUp = normalize( cross( worldDir, tmpFwd ) ); - vec3 worldFwd = cross( worldDir, worldUp ); - worldPos = position.y < 0.5 ? start: end; - - // height offset - float hw = linewidth * 0.5; - worldPos.xyz += position.x < 0.0 ? hw * worldUp : - hw * worldUp; - - // don't extend the line if we're rendering dashes because we - // won't be rendering the endcaps - #ifndef USE_DASH - - // cap extension - worldPos.xyz += position.y < 0.5 ? - hw * worldDir : hw * worldDir; - - // add width to the box - worldPos.xyz += worldFwd * hw; - - // endcaps - if ( position.y > 1.0 || position.y < 0.0 ) { - - worldPos.xyz -= worldFwd * 2.0 * hw; - - } - - #endif - - // project the worldpos - vec4 clip = projectionMatrix * worldPos; - - // shift the depth of the projected points so the line - // segments overlap neatly - vec3 clipPose = ( position.y < 0.5 ) ? ndcStart : ndcEnd; - clip.z = clipPose.z * clip.w; - - #else - - vec2 offset = vec2( dir.y, - dir.x ); - // undo aspect ratio adjustment - dir.x /= aspect; - offset.x /= aspect; - - // sign flip - if ( position.x < 0.0 ) offset *= - 1.0; - - // endcaps - if ( position.y < 0.0 ) { - - offset += - dir; - - } else if ( position.y > 1.0 ) { - - offset += dir; - - } - - // adjust for linewidth - offset *= linewidth; - - // adjust for clip-space to screen-space conversion // maybe resolution should be based on viewport ... - offset /= resolution.y; - - // select end - vec4 clip = ( position.y < 0.5 ) ? clipStart : clipEnd; - - // back to clip space - offset *= clip.w; - - clip.xy += offset; - - #endif - - gl_Position = clip; - - vec4 mvPosition = ( position.y < 0.5 ) ? start : end; // this is an approximation - - #include - #include - #include - - } - `,fragmentShader:` - uniform vec3 diffuse; - uniform float opacity; - uniform float linewidth; - - #ifdef USE_DASH - - uniform float dashOffset; - uniform float dashSize; - uniform float gapSize; - - #endif - - varying float vLineDistance; - - #ifdef WORLD_UNITS - - varying vec4 worldPos; - varying vec3 worldStart; - varying vec3 worldEnd; - - #ifdef USE_DASH - - varying vec2 vUv; - - #endif - - #else - - varying vec2 vUv; - - #endif - - #include - #include - #include - #include - #include - - vec2 closestLineToLine(vec3 p1, vec3 p2, vec3 p3, vec3 p4) { - - float mua; - float mub; - - vec3 p13 = p1 - p3; - vec3 p43 = p4 - p3; - - vec3 p21 = p2 - p1; - - float d1343 = dot( p13, p43 ); - float d4321 = dot( p43, p21 ); - float d1321 = dot( p13, p21 ); - float d4343 = dot( p43, p43 ); - float d2121 = dot( p21, p21 ); - - float denom = d2121 * d4343 - d4321 * d4321; - - float numer = d1343 * d4321 - d1321 * d4343; - - mua = numer / denom; - mua = clamp( mua, 0.0, 1.0 ); - mub = ( d1343 + d4321 * ( mua ) ) / d4343; - mub = clamp( mub, 0.0, 1.0 ); - - return vec2( mua, mub ); - - } - - void main() { - - #include - - #ifdef USE_DASH - - if ( vUv.y < - 1.0 || vUv.y > 1.0 ) discard; // discard endcaps - - if ( mod( vLineDistance + dashOffset, dashSize + gapSize ) > dashSize ) discard; // todo - FIX - - #endif - - float alpha = opacity; - - #ifdef WORLD_UNITS - - // Find the closest points on the view ray and the line segment - vec3 rayEnd = normalize( worldPos.xyz ) * 1e5; - vec3 lineDir = worldEnd - worldStart; - vec2 params = closestLineToLine( worldStart, worldEnd, vec3( 0.0, 0.0, 0.0 ), rayEnd ); - - vec3 p1 = worldStart + lineDir * params.x; - vec3 p2 = rayEnd * params.y; - vec3 delta = p1 - p2; - float len = length( delta ); - float norm = len / linewidth; - - #ifndef USE_DASH - - #ifdef USE_ALPHA_TO_COVERAGE - - float dnorm = fwidth( norm ); - alpha = 1.0 - smoothstep( 0.5 - dnorm, 0.5 + dnorm, norm ); - - #else - - if ( norm > 0.5 ) { - - discard; - - } - - #endif - - #endif - - #else - - #ifdef USE_ALPHA_TO_COVERAGE - - // artifacts appear on some hardware if a derivative is taken within a conditional - float a = vUv.x; - float b = ( vUv.y > 0.0 ) ? vUv.y - 1.0 : vUv.y + 1.0; - float len2 = a * a + b * b; - float dlen = fwidth( len2 ); - - if ( abs( vUv.y ) > 1.0 ) { - - alpha = 1.0 - smoothstep( 1.0 - dlen, 1.0 + dlen, len2 ); - - } - - #else - - if ( abs( vUv.y ) > 1.0 ) { - - float a = vUv.x; - float b = ( vUv.y > 0.0 ) ? vUv.y - 1.0 : vUv.y + 1.0; - float len2 = a * a + b * b; - - if ( len2 > 1.0 ) discard; - - } - - #endif - - #endif - - vec4 diffuseColor = vec4( diffuse, alpha ); - - #include - #include - - gl_FragColor = vec4( diffuseColor.rgb, alpha ); - - #include - #include - #include - #include - - } - `};class qE extends Ja{constructor(e){super({type:"LineMaterial",uniforms:vy.clone(Ga.line.uniforms),vertexShader:Ga.line.vertexShader,fragmentShader:Ga.line.fragmentShader,clipping:!0}),this.isLineMaterial=!0,this.setValues(e)}get color(){return this.uniforms.diffuse.value}set color(e){this.uniforms.diffuse.value=e}get worldUnits(){return"WORLD_UNITS"in this.defines}set worldUnits(e){e===!0?this.defines.WORLD_UNITS="":delete this.defines.WORLD_UNITS}get linewidth(){return this.uniforms.linewidth.value}set linewidth(e){this.uniforms.linewidth&&(this.uniforms.linewidth.value=e)}get dashed(){return"USE_DASH"in this.defines}set dashed(e){e===!0!==this.dashed&&(this.needsUpdate=!0),e===!0?this.defines.USE_DASH="":delete this.defines.USE_DASH}get dashScale(){return this.uniforms.dashScale.value}set dashScale(e){this.uniforms.dashScale.value=e}get dashSize(){return this.uniforms.dashSize.value}set dashSize(e){this.uniforms.dashSize.value=e}get dashOffset(){return this.uniforms.dashOffset.value}set dashOffset(e){this.uniforms.dashOffset.value=e}get gapSize(){return this.uniforms.gapSize.value}set gapSize(e){this.uniforms.gapSize.value=e}get opacity(){return this.uniforms.opacity.value}set opacity(e){this.uniforms&&(this.uniforms.opacity.value=e)}get resolution(){return this.uniforms.resolution.value}set resolution(e){this.uniforms.resolution.value.copy(e)}get alphaToCoverage(){return"USE_ALPHA_TO_COVERAGE"in this.defines}set alphaToCoverage(e){this.defines&&(e===!0!==this.alphaToCoverage&&(this.needsUpdate=!0),e===!0?this.defines.USE_ALPHA_TO_COVERAGE="":delete this.defines.USE_ALPHA_TO_COVERAGE)}}const ES=new Pn,ON=new ce,IN=new ce,Os=new Pn,Is=new Pn,jl=new Pn,CS=new ce,RS=new kn,Fs=new Yz,FN=new ce,Mv=new Gc,Ev=new dA,Wl=new Pn;let Jl,rA;function kN(i,e,t){return Wl.set(0,0,-e,1).applyMatrix4(i.projectionMatrix),Wl.multiplyScalar(1/Wl.w),Wl.x=rA/t.width,Wl.y=rA/t.height,Wl.applyMatrix4(i.projectionMatrixInverse),Wl.multiplyScalar(1/Wl.w),Math.abs(Math.max(Wl.x,Wl.y))}function _le(i,e){const t=i.matrixWorld,n=i.geometry,r=n.attributes.instanceStart,s=n.attributes.instanceEnd,a=Math.min(n.instanceCount,r.count);for(let l=0,u=a;lv&&Is.z>v)continue;if(Os.z>v){const L=Os.z-Is.z,O=(Os.z-v)/L;Os.lerp(Is,O)}else if(Is.z>v){const L=Is.z-Os.z,O=(Is.z-v)/L;Is.lerp(Os,O)}Os.applyMatrix4(n),Is.applyMatrix4(n),Os.multiplyScalar(1/Os.w),Is.multiplyScalar(1/Is.w),Os.x*=s.x/2,Os.y*=s.y/2,Is.x*=s.x/2,Is.y*=s.y/2,Fs.start.copy(Os),Fs.start.z=0,Fs.end.copy(Is),Fs.end.z=0;const R=Fs.closestPointToPointParameter(CS,!0);Fs.at(R,FN);const C=M0.lerp(Os.z,Is.z,R),E=C>=-1&&C<=1,B=CS.distanceTo(FN)i.length)&&(e=i.length);for(var t=0,n=Array(e);t3?(Q=Te===te)&&(H=le[(k=le[4])?5:(k=3,3)],le[4]=le[5]=i):le[0]<=de&&((Q=se<2&&dete||te>Te)&&(le[4]=se,le[5]=te,ee.n=Te,k=0))}if(Q||se>1)return a;throw Y=!0,te}return function(se,te,Q){if(F>1)throw TypeError("Generator is already running");for(Y&&te===1&&ne(te,Q),k=te,H=Q;(e=k<2?i:H)||!Y;){G||(k?k<3?(k>1&&(ee.n=-1),ne(k,H)):ee.n=H:ee.v=H);try{if(F=2,G){if(k||(se="next"),e=G[se]){if(!(e=e.call(G,H)))throw TypeError("iterator result is not an object");if(!e.done)return e;H=e.value,k<2&&(k=0)}else k===1&&(e=G.return)&&e.call(G),k<2&&(H=TypeError("The iterator does not provide a '"+se+"' method"),k=1);G=i}else if((e=(Y=ee.n<0)?H:L.call(O,ee))!==a)break}catch(le){G=i,k=1,H=le}finally{F=1}}return{value:e,done:Y}}})(S,R,C),!0),B}var a={};function l(){}function u(){}function h(){}e=Object.getPrototypeOf;var g=[][n]?e(e([][n]())):(yo(e={},n,function(){return this}),e),v=h.prototype=l.prototype=Object.create(g);function x(S){return Object.setPrototypeOf?Object.setPrototypeOf(S,h):(S.__proto__=h,yo(S,r,"GeneratorFunction")),S.prototype=Object.create(v),S}return u.prototype=h,yo(v,"constructor",h),yo(h,"constructor",u),u.displayName="GeneratorFunction",yo(h,r,"GeneratorFunction"),yo(v),yo(v,r,"Generator"),yo(v,n,function(){return this}),yo(v,"toString",function(){return"[object Generator]"}),(aw=function(){return{w:s,m:x}})()}function yo(i,e,t,n){var r=Object.defineProperty;try{r({},"",{})}catch{r=0}yo=function(s,a,l,u){function h(g,v){yo(s,g,function(x){return this._invoke(g,v,x)})}a?r?r(s,a,{value:l,enumerable:!u,configurable:!u,writable:!u}):s[a]=l:(h("next",0),h("throw",1),h("return",2))},yo(i,e,t,n)}function ow(i,e){return ow=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,n){return t.__proto__=n,t},ow(i,e)}function gr(i,e){return Mle(i)||Lle(i,e)||cO(i,e)||Ule()}function kle(i,e){for(;!{}.hasOwnProperty.call(i,e)&&(i=z0(i))!==null;);return i}function PS(i,e,t,n){var r=sw(z0(i.prototype),e,t);return typeof r=="function"?function(s){return r.apply(t,s)}:r}function Qi(i){return Ele(i)||Ple(i)||cO(i)||Ble()}function zle(i,e){if(typeof i!="object"||!i)return i;var t=i[Symbol.toPrimitive];if(t!==void 0){var n=t.call(i,e);if(typeof n!="object")return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return(e==="string"?String:Number)(i)}function uO(i){var e=zle(i,"string");return typeof e=="symbol"?e:e+""}function cO(i,e){if(i){if(typeof i=="string")return rw(i,e);var t={}.toString.call(i).slice(8,-1);return t==="Object"&&i.constructor&&(t=i.constructor.name),t==="Map"||t==="Set"?Array.from(i):t==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t)?rw(i,e):void 0}}var hO=function(e){e instanceof Array?e.forEach(hO):(e.map&&e.map.dispose(),e.dispose())},jE=function(e){e.geometry&&e.geometry.dispose(),e.material&&hO(e.material),e.texture&&e.texture.dispose(),e.children&&e.children.forEach(jE)},nr=function(e){if(e&&e.children)for(;e.children.length;){var t=e.children[0];e.remove(t),jE(t)}};function wa(i,e){var t=new e;return{linkProp:function(r){return{default:t[r](),onChange:function(a,l){l[i][r](a)},triggerUpdate:!1}},linkMethod:function(r){return function(s){for(var a=s[i],l=arguments.length,u=new Array(l>1?l-1:0),h=1;h2&&arguments[2]!==void 0?arguments[2]:0,n=(90-i)*Math.PI/180,r=(90-e)*Math.PI/180,s=cr*(1+t),a=Math.sin(n);return{x:s*a*Math.cos(r),y:s*Math.cos(n),z:s*a*Math.sin(r)}}function fO(i){var e=i.x,t=i.y,n=i.z,r=Math.sqrt(e*e+t*t+n*n),s=Math.acos(t/r),a=Math.atan2(n,e);return{lat:90-s*180/Math.PI,lng:90-a*180/Math.PI-(a<-Math.PI/2?360:0),altitude:r/cr-1}}function Vf(i){return i*Math.PI/180}var Dg=window.THREE?window.THREE:{BackSide:hr,BufferAttribute:wr,Color:an,Mesh:zi,ShaderMaterial:Ja},Gle=` -uniform float hollowRadius; - -varying vec3 vVertexWorldPosition; -varying vec3 vVertexNormal; -varying float vCameraDistanceToObjCenter; -varying float vVertexAngularDistanceToHollowRadius; - -void main() { - vVertexNormal = normalize(normalMatrix * normal); - vVertexWorldPosition = (modelMatrix * vec4(position, 1.0)).xyz; - - vec4 objCenterViewPosition = modelViewMatrix * vec4(0.0, 0.0, 0.0, 1.0); - vCameraDistanceToObjCenter = length(objCenterViewPosition); - - float edgeAngle = atan(hollowRadius / vCameraDistanceToObjCenter); - float vertexAngle = acos(dot(normalize(modelViewMatrix * vec4(position, 1.0)), normalize(objCenterViewPosition))); - vVertexAngularDistanceToHollowRadius = vertexAngle - edgeAngle; - - gl_Position = projectionMatrix * modelViewMatrix * vec4(position, 1.0); -}`,qle=` -uniform vec3 color; -uniform float coefficient; -uniform float power; -uniform float hollowRadius; - -varying vec3 vVertexNormal; -varying vec3 vVertexWorldPosition; -varying float vCameraDistanceToObjCenter; -varying float vVertexAngularDistanceToHollowRadius; - -void main() { - if (vCameraDistanceToObjCenter < hollowRadius) discard; // inside the hollowRadius - if (vVertexAngularDistanceToHollowRadius < 0.0) discard; // frag position is within the hollow radius - - vec3 worldCameraToVertex = vVertexWorldPosition - cameraPosition; - vec3 viewCameraToVertex = (viewMatrix * vec4(worldCameraToVertex, 0.0)).xyz; - viewCameraToVertex = normalize(viewCameraToVertex); - float intensity = pow( - coefficient + dot(vVertexNormal, viewCameraToVertex), - power - ); - gl_FragColor = vec4(color, intensity); -}`;function Vle(i,e,t,n){return new Dg.ShaderMaterial({depthWrite:!1,transparent:!0,vertexShader:Gle,fragmentShader:qle,uniforms:{coefficient:{value:i},color:{value:new Dg.Color(e)},power:{value:t},hollowRadius:{value:n}}})}function Hle(i,e){for(var t=i.clone(),n=new Float32Array(i.attributes.position.count*3),r=0,s=n.length;r1&&arguments[1]!==void 0?arguments[1]:{},s=r.color,a=s===void 0?"gold":s,l=r.size,u=l===void 0?2:l,h=r.coefficient,g=h===void 0?.5:h,v=r.power,x=v===void 0?1:v,S=r.hollowRadius,w=S===void 0?0:S,R=r.backside,C=R===void 0?!0:R;nx(this,e),n=tx(this,e);var E=Hle(t,u),B=Vle(g,a,x,w);return C&&(B.side=Dg.BackSide),n.geometry=E,n.material=B,n}return rx(e,i),ix(e)})(Dg.Mesh),$l=window.THREE?window.THREE:{Color:an,Group:ja,LineBasicMaterial:$0,LineSegments:H7,Mesh:zi,MeshPhongMaterial:nD,SphereGeometry:Eu,SRGBColorSpace:_n,TextureLoader:rM},AO=xs({props:{globeImageUrl:{},bumpImageUrl:{},showGlobe:{default:!0,onChange:function(e,t){t.globeGroup.visible=!!e},triggerUpdate:!1},showGraticules:{default:!1,onChange:function(e,t){t.graticulesObj.visible=!!e},triggerUpdate:!1},showAtmosphere:{default:!0,onChange:function(e,t){t.atmosphereObj&&(t.atmosphereObj.visible=!!e)},triggerUpdate:!1},atmosphereColor:{default:"lightskyblue"},atmosphereAltitude:{default:.15},globeCurvatureResolution:{default:4},globeTileEngineUrl:{onChange:function(e,t){t.tileEngine.tileUrl=e}},globeTileEngineMaxLevel:{default:17,onChange:function(e,t){t.tileEngine.maxLevel=e},triggerUpdate:!1},updatePov:{onChange:function(e,t){t.tileEngine.updatePov(e)},triggerUpdate:!1},onReady:{default:function(){},triggerUpdate:!1}},methods:{globeMaterial:function(e,t){return t!==void 0?(e.globeObj.material=t||e.defaultGlobeMaterial,this):e.globeObj.material},globeTileEngineClearCache:function(e){e.tileEngine.clearTiles()},_destructor:function(e){nr(e.globeObj),nr(e.tileEngine),nr(e.graticulesObj)}},stateInit:function(){var e=new $l.MeshPhongMaterial({color:0}),t=new $l.Mesh(void 0,e);t.rotation.y=-Math.PI/2;var n=new eY(cr),r=new $l.Group;r.__globeObjType="globe",r.add(t),r.add(n);var s=new $l.LineSegments(new uP(vX(),cr,2),new $l.LineBasicMaterial({color:"lightgrey",transparent:!0,opacity:.1}));return{globeGroup:r,globeObj:t,graticulesObj:s,defaultGlobeMaterial:e,tileEngine:n}},init:function(e,t){nr(e),t.scene=e,t.scene.add(t.globeGroup),t.scene.add(t.graticulesObj),t.ready=!1},update:function(e,t){var n=e.globeObj.material;if(e.tileEngine.visible=!(e.globeObj.visible=!e.globeTileEngineUrl),t.hasOwnProperty("globeCurvatureResolution")){var r;(r=e.globeObj.geometry)===null||r===void 0||r.dispose();var s=Math.max(4,Math.round(360/e.globeCurvatureResolution));e.globeObj.geometry=new $l.SphereGeometry(cr,s,s/2),e.tileEngine.curvatureResolution=e.globeCurvatureResolution}if(t.hasOwnProperty("globeImageUrl")&&(e.globeImageUrl?new $l.TextureLoader().load(e.globeImageUrl,function(l){l.colorSpace=$l.SRGBColorSpace,n.map=l,n.color=null,n.needsUpdate=!0,!e.ready&&(e.ready=!0)&&setTimeout(e.onReady)}):!n.color&&(n.color=new $l.Color(0))),t.hasOwnProperty("bumpImageUrl")&&(e.bumpImageUrl?e.bumpImageUrl&&new $l.TextureLoader().load(e.bumpImageUrl,function(l){n.bumpMap=l,n.needsUpdate=!0}):(n.bumpMap=null,n.needsUpdate=!0)),(t.hasOwnProperty("atmosphereColor")||t.hasOwnProperty("atmosphereAltitude"))&&(e.atmosphereObj&&(e.scene.remove(e.atmosphereObj),nr(e.atmosphereObj)),e.atmosphereColor&&e.atmosphereAltitude)){var a=e.atmosphereObj=new jle(e.globeObj.geometry,{color:e.atmosphereColor,size:cr*e.atmosphereAltitude,hollowRadius:cr,coefficient:.1,power:3.5});a.visible=!!e.showAtmosphere,a.__globeObjType="atmosphere",e.scene.add(a)}!e.ready&&(!e.globeImageUrl||e.globeTileEngineUrl)&&(e.ready=!0,e.onReady())}}),wu=function(e){return isNaN(e)?parseInt(yn(e).toHex(),16):e},Rl=function(e){return e&&isNaN(e)?cA(e).opacity:1},jh=function(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!0,n=arguments.length>2&&arguments[2]!==void 0?arguments[2]:!1,r,s=1,a=/^rgba\(\s*(\d+)\s*,\s*(\d+)\s*,\s*(\d+)\s*,\s*([\d.eE+-]+)\s*\)$/.exec(e.trim().toLowerCase());if(a){var l=a.slice(1),u=gr(l,4),h=u[0],g=u[1],v=u[2],x=u[3];r=new an("rgb(".concat(+h,",").concat(+g,",").concat(+v,")")),s=Math.min(+x,1)}else r=new an(e);n&&r.convertLinearToSRGB();var S=r.toArray();return t?[].concat(Qi(S),[s]):S};function Wle(i,e,t){return i.opacity=e,i.transparent=e<1,i.depthWrite=e>=1,i}var HN=window.THREE?window.THREE:{BufferAttribute:wr};function Mu(i){var e=arguments.length>1&&arguments[1]!==void 0?arguments[1]:1,t=arguments.length>2&&arguments[2]!==void 0?arguments[2]:Float32Array;if(e===1)return new HN.BufferAttribute(new t(i),e);for(var n=new HN.BufferAttribute(new t(i.length*e),e),r=0,s=i.length;r1&&arguments[1]!==void 0?arguments[1]:{},s=r.dataBindAttr,a=s===void 0?"__data":s,l=r.objBindAttr,u=l===void 0?"__threeObj":l,h=r.removeDelay,g=h===void 0?0:h;return nx(this,e),n=tx(this,e),Ps(n,"scene",void 0),NS(n,LS,void 0),NS(n,Cv,void 0),NS(n,Rv,void 0),n.scene=t,DS(LS,n,a),DS(Cv,n,u),DS(Rv,n,g),n.onRemoveObj(function(){}),n}return rx(e,i),ix(e,[{key:"onCreateObj",value:function(n){var r=this;return PS(e,"onCreateObj",this)([function(s){var a=n(s);return s[mm(Cv,r)]=a,a[mm(LS,r)]=s,r.scene.add(a),a}]),this}},{key:"onRemoveObj",value:function(n){var r=this;return PS(e,"onRemoveObj",this)([function(s,a){var l=PS(e,"getData",r)([s]);n(s,a);var u=function(){r.scene.remove(s),nr(s),delete l[mm(Cv,r)]};mm(Rv,r)?setTimeout(u,mm(Rv,r)):u()}]),this}}])})(RQ),_l=window.THREE?window.THREE:{BufferGeometry:Ki,CylinderGeometry:eM,Matrix4:kn,Mesh:zi,MeshLambertMaterial:Vc,Object3D:vr,Vector3:ce},jN=Object.assign({},yM),WN=jN.BufferGeometryUtils||jN,dO=xs({props:{pointsData:{default:[]},pointLat:{default:"lat"},pointLng:{default:"lng"},pointColor:{default:function(){return"#ffffaa"}},pointAltitude:{default:.1},pointRadius:{default:.25},pointResolution:{default:12,triggerUpdate:!1},pointsMerge:{default:!1},pointsTransitionDuration:{default:1e3,triggerUpdate:!1}},init:function(e,t,n){var r=n.tweenGroup;nr(e),t.scene=e,t.tweenGroup=r,t.dataMapper=new ao(e,{objBindAttr:"__threeObjPoint"})},update:function(e,t){var n=Mt(e.pointLat),r=Mt(e.pointLng),s=Mt(e.pointAltitude),a=Mt(e.pointRadius),l=Mt(e.pointColor),u=new _l.CylinderGeometry(1,1,1,e.pointResolution);u.applyMatrix4(new _l.Matrix4().makeRotationX(Math.PI/2)),u.applyMatrix4(new _l.Matrix4().makeTranslation(0,0,-.5));var h=2*Math.PI*cr/360,g={};if(!e.pointsMerge&&t.hasOwnProperty("pointsMerge")&&nr(e.scene),e.dataMapper.scene=e.pointsMerge?new _l.Object3D:e.scene,e.dataMapper.onCreateObj(S).onUpdateObj(w).digest(e.pointsData),e.pointsMerge){var v=e.pointsData.length?(WN.mergeGeometries||WN.mergeBufferGeometries)(e.pointsData.map(function(R){var C=e.dataMapper.getObj(R),E=C.geometry.clone();C.updateMatrix(),E.applyMatrix4(C.matrix);var B=jh(l(R));return E.setAttribute("color",Mu(Array(E.getAttribute("position").count).fill(B),4)),E})):new _l.BufferGeometry,x=new _l.Mesh(v,new _l.MeshLambertMaterial({color:16777215,transparent:!0,vertexColors:!0}));x.__globeObjType="points",x.__data=e.pointsData,e.dataMapper.clear(),nr(e.scene),e.scene.add(x)}function S(){var R=new _l.Mesh(u);return R.__globeObjType="point",R}function w(R,C){var E=function(H){var F=R.__currentTargetD=H,V=F.r,Y=F.alt,ee=F.lat,ne=F.lng;Object.assign(R.position,el(ee,ne));var se=e.pointsMerge?new _l.Vector3(0,0,0):e.scene.localToWorld(new _l.Vector3(0,0,0));R.lookAt(se),R.scale.x=R.scale.y=Math.min(30,V)*h,R.scale.z=Math.max(Y*cr,.1)},B={alt:+s(C),r:+a(C),lat:+n(C),lng:+r(C)},L=R.__currentTargetD||Object.assign({},B,{alt:-.001});if(Object.keys(B).some(function(k){return L[k]!==B[k]})&&(e.pointsMerge||!e.pointsTransitionDuration||e.pointsTransitionDuration<0?E(B):e.tweenGroup.add(new ca(L).to(B,e.pointsTransitionDuration).easing(os.Quadratic.InOut).onUpdate(E).start())),!e.pointsMerge){var O=l(C),z=O?Rl(O):0,G=!!z;R.visible=G,G&&(g.hasOwnProperty(O)||(g[O]=new _l.MeshLambertMaterial({color:wu(O),transparent:z<1,opacity:z})),R.material=g[O])}}}}),pO=function(){return{uniforms:{dashOffset:{value:0},dashSize:{value:1},gapSize:{value:0},dashTranslate:{value:0}},vertexShader:` - `.concat(Zn.common,` - `).concat(Zn.logdepthbuf_pars_vertex,` - - uniform float dashTranslate; - - attribute vec4 color; - varying vec4 vColor; - - attribute float relDistance; - varying float vRelDistance; - - void main() { - // pass through colors and distances - vColor = color; - vRelDistance = relDistance + dashTranslate; - gl_Position = projectionMatrix * modelViewMatrix * vec4(position, 1.0); - - `).concat(Zn.logdepthbuf_vertex,` - } - `),fragmentShader:` - `.concat(Zn.logdepthbuf_pars_fragment,` - - uniform float dashOffset; - uniform float dashSize; - uniform float gapSize; - - varying vec4 vColor; - varying float vRelDistance; - - void main() { - // ignore pixels in the gap - if (vRelDistance < dashOffset) discard; - if (mod(vRelDistance - dashOffset, dashSize + gapSize) > dashSize) discard; - - // set px color: [r, g, b, a], interpolated between vertices - gl_FragColor = vColor; - - `).concat(Zn.logdepthbuf_fragment,` - } - `)}},lw=function(e){return e.uniforms.uSurfaceRadius={type:"float",value:0},e.vertexShader=(`attribute float surfaceRadius; -varying float vSurfaceRadius; -varying vec3 vPos; -`+e.vertexShader).replace("void main() {",["void main() {","vSurfaceRadius = surfaceRadius;","vPos = position;"].join(` -`)),e.fragmentShader=(`uniform float uSurfaceRadius; -varying float vSurfaceRadius; -varying vec3 vPos; -`+e.fragmentShader).replace("void main() {",["void main() {","if (length(vPos) < max(uSurfaceRadius, vSurfaceRadius)) discard;"].join(` -`)),e},Xle=function(e){return e.vertexShader=` - attribute float r; - - const float PI = 3.1415926535897932384626433832795; - float toRad(in float a) { - return a * PI / 180.0; - } - - vec3 Polar2Cartesian(in vec3 c) { // [lat, lng, r] - float phi = toRad(90.0 - c.x); - float theta = toRad(90.0 - c.y); - float r = c.z; - return vec3( // x,y,z - r * sin(phi) * cos(theta), - r * cos(phi), - r * sin(phi) * sin(theta) - ); - } - - vec2 Cartesian2Polar(in vec3 p) { - float r = sqrt(p.x * p.x + p.y * p.y + p.z * p.z); - float phi = acos(p.y / r); - float theta = atan(p.z, p.x); - return vec2( // lat,lng - 90.0 - phi * 180.0 / PI, - 90.0 - theta * 180.0 / PI - (theta < -PI / 2.0 ? 360.0 : 0.0) - ); - } - `.concat(e.vertexShader.replace("}",` - vec3 pos = Polar2Cartesian(vec3(Cartesian2Polar(position), r)); - gl_Position = projectionMatrix * modelViewMatrix * vec4(pos, 1.0); - } - `),` - `),e},WE=function(e,t){return e.onBeforeCompile=function(n){e.userData.shader=t(n)},e},Yle=function(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:function(r){return r};if(e.userData.shader)t(e.userData.shader.uniforms);else{var n=e.onBeforeCompile;e.onBeforeCompile=function(r){n(r),t(r.uniforms)}}},Qle=["stroke"],yl=window.THREE?window.THREE:{BufferGeometry:Ki,CubicBezierCurve3:$7,Curve:Pl,Group:ja,Line:xy,Mesh:zi,NormalBlending:Ka,ShaderMaterial:Ja,TubeGeometry:nM,Vector3:ce},Kle=L0.default||L0,mO=xs({props:{arcsData:{default:[]},arcStartLat:{default:"startLat"},arcStartLng:{default:"startLng"},arcStartAltitude:{default:0},arcEndLat:{default:"endLat"},arcEndLng:{default:"endLng"},arcEndAltitude:{default:0},arcColor:{default:function(){return"#ffffaa"}},arcAltitude:{},arcAltitudeAutoScale:{default:.5},arcStroke:{},arcCurveResolution:{default:64,triggerUpdate:!1},arcCircularResolution:{default:6,triggerUpdate:!1},arcDashLength:{default:1},arcDashGap:{default:0},arcDashInitialGap:{default:0},arcDashAnimateTime:{default:0},arcsTransitionDuration:{default:1e3,triggerUpdate:!1}},methods:{pauseAnimation:function(e){var t;(t=e.ticker)===null||t===void 0||t.pause()},resumeAnimation:function(e){var t;(t=e.ticker)===null||t===void 0||t.resume()},_destructor:function(e){var t;e.sharedMaterial.dispose(),(t=e.ticker)===null||t===void 0||t.dispose()}},stateInit:function(e){var t=e.tweenGroup;return{tweenGroup:t,ticker:new Kle,sharedMaterial:new yl.ShaderMaterial(Hi(Hi({},pO()),{},{transparent:!0,blending:yl.NormalBlending}))}},init:function(e,t){nr(e),t.scene=e,t.dataMapper=new ao(e,{objBindAttr:"__threeObjArc"}).onCreateObj(function(){var n=new yl.Group;return n.__globeObjType="arc",n}),t.ticker.onTick.add(function(n,r){t.dataMapper.entries().map(function(s){var a=gr(s,2),l=a[1];return l}).filter(function(s){return s.children.length&&s.children[0].material&&s.children[0].__dashAnimateStep}).forEach(function(s){var a=s.children[0],l=a.__dashAnimateStep*r,u=a.material.uniforms.dashTranslate.value%1e9;a.material.uniforms.dashTranslate.value=u+l})})},update:function(e){var t=Mt(e.arcStartLat),n=Mt(e.arcStartLng),r=Mt(e.arcStartAltitude),s=Mt(e.arcEndLat),a=Mt(e.arcEndLng),l=Mt(e.arcEndAltitude),u=Mt(e.arcAltitude),h=Mt(e.arcAltitudeAutoScale),g=Mt(e.arcStroke),v=Mt(e.arcColor),x=Mt(e.arcDashLength),S=Mt(e.arcDashGap),w=Mt(e.arcDashInitialGap),R=Mt(e.arcDashAnimateTime);e.dataMapper.onUpdateObj(function(L,O){var z=g(O),G=z!=null;if(!L.children.length||G!==(L.children[0].type==="Mesh")){nr(L);var k=G?new yl.Mesh:new yl.Line(new yl.BufferGeometry);k.material=e.sharedMaterial.clone(),L.add(k)}var H=L.children[0];Object.assign(H.material.uniforms,{dashSize:{value:x(O)},gapSize:{value:S(O)},dashOffset:{value:w(O)}});var F=R(O);H.__dashAnimateStep=F>0?1e3/F:0;var V=E(v(O),e.arcCurveResolution,G?e.arcCircularResolution+1:1),Y=B(e.arcCurveResolution,G?e.arcCircularResolution+1:1,!0);H.geometry.setAttribute("color",V),H.geometry.setAttribute("relDistance",Y);var ee=function(Q){var le=L.__currentTargetD=Q,de=le.stroke,Te=Ole(le,Qle),Se=C(Te);G?(H.geometry&&H.geometry.dispose(),H.geometry=new yl.TubeGeometry(Se,e.arcCurveResolution,de/2,e.arcCircularResolution),H.geometry.setAttribute("color",V),H.geometry.setAttribute("relDistance",Y)):H.geometry.setFromPoints(Se.getPoints(e.arcCurveResolution))},ne={stroke:z,alt:u(O),altAutoScale:+h(O),startLat:+t(O),startLng:+n(O),startAlt:+r(O),endLat:+s(O),endLng:+a(O),endAlt:+l(O)},se=L.__currentTargetD||Object.assign({},ne,{altAutoScale:-.001});Object.keys(ne).some(function(te){return se[te]!==ne[te]})&&(!e.arcsTransitionDuration||e.arcsTransitionDuration<0?ee(ne):e.tweenGroup.add(new ca(se).to(ne,e.arcsTransitionDuration).easing(os.Quadratic.InOut).onUpdate(ee).start()))}).digest(e.arcsData);function C(L){var O=L.alt,z=L.altAutoScale,G=L.startLat,k=L.startLng,H=L.startAlt,F=L.endLat,V=L.endLng,Y=L.endAlt,ee=function(ye){var Pe=gr(ye,3),pt=Pe[0],vt=Pe[1],Tt=Pe[2],It=el(vt,pt,Tt),Qe=It.x,it=It.y,he=It.z;return new yl.Vector3(Qe,it,he)},ne=[k,G],se=[V,F],te=O;if(te==null&&(te=Vh(ne,se)/2*z+Math.max(H,Y)),te||H||Y){var Q=pM(ne,se),le=function(ye,Pe){return Pe+(Pe-ye)*(ye2&&arguments[2]!==void 0?arguments[2]:1,G=O+1,k;if(L instanceof Array||L instanceof Function){var H=L instanceof Array?Pc().domain(L.map(function(te,Q){return Q/(L.length-1)})).range(L):L;k=function(Q){return jh(H(Q),!0,!0)}}else{var F=jh(L,!0,!0);k=function(){return F}}for(var V=[],Y=0,ee=G;Y1&&arguments[1]!==void 0?arguments[1]:1,z=arguments.length>2&&arguments[2]!==void 0?arguments[2]:!1,G=L+1,k=[],H=0,F=G;H=H?z:G}),4)),O})):new wh.BufferGeometry,w=new wh.MeshLambertMaterial({color:16777215,transparent:!0,vertexColors:!0,side:wh.DoubleSide});w.onBeforeCompile=function(B){w.userData.shader=lw(B)};var R=new wh.Mesh(S,w);R.__globeObjType="hexBinPoints",R.__data=v,e.dataMapper.clear(),nr(e.scene),e.scene.add(R)}function C(B){var L=new wh.Mesh;L.__hexCenter=CP(B.h3Idx),L.__hexGeoJson=RP(B.h3Idx,!0).reverse();var O=L.__hexCenter[1];return L.__hexGeoJson.forEach(function(z){var G=z[0];Math.abs(O-G)>170&&(z[0]+=O>G?360:-360)}),L.__globeObjType="hexbin",L}function E(B,L){var O=function(le,de,Te){return le-(le-de)*Te},z=Math.max(0,Math.min(1,+h(L))),G=gr(B.__hexCenter,2),k=G[0],H=G[1],F=z===0?B.__hexGeoJson:B.__hexGeoJson.map(function(Q){var le=gr(Q,2),de=le[0],Te=le[1];return[[de,H],[Te,k]].map(function(Se){var ue=gr(Se,2),be=ue[0],We=ue[1];return O(be,We,z)})}),V=e.hexTopCurvatureResolution;B.geometry&&B.geometry.dispose(),B.geometry=new wM([F],0,cr,!1,!0,!0,V);var Y={alt:+a(L)},ee=function(le){var de=B.__currentTargetD=le,Te=de.alt;B.scale.x=B.scale.y=B.scale.z=1+Te;var Se=cr/(Te+1);B.geometry.setAttribute("surfaceRadius",Mu(Array(B.geometry.getAttribute("position").count).fill(Se),1))},ne=B.__currentTargetD||Object.assign({},Y,{alt:-.001});if(Object.keys(Y).some(function(Q){return ne[Q]!==Y[Q]})&&(e.hexBinMerge||!e.hexTransitionDuration||e.hexTransitionDuration<0?ee(Y):e.tweenGroup.add(new ca(ne).to(Y,e.hexTransitionDuration).easing(os.Quadratic.InOut).onUpdate(ee).start())),!e.hexBinMerge){var se=u(L),te=l(L);[se,te].forEach(function(Q){if(!x.hasOwnProperty(Q)){var le=Rl(Q);x[Q]=WE(new wh.MeshLambertMaterial({color:wu(Q),transparent:le<1,opacity:le,side:wh.DoubleSide}),lw)}}),B.material=[se,te].map(function(Q){return x[Q]})}}}}),vO=function(e){return e*e},wc=function(e){return e*Math.PI/180};function Zle(i,e){var t=Math.sqrt,n=Math.cos,r=function(g){return vO(Math.sin(g/2))},s=wc(i[1]),a=wc(e[1]),l=wc(i[0]),u=wc(e[0]);return 2*Math.asin(t(r(a-s)+n(s)*n(a)*r(u-l)))}var Jle=Math.sqrt(2*Math.PI);function eue(i,e){return Math.exp(-vO(i/e)/2)/(e*Jle)}var tue=function(e){var t=gr(e,2),n=t[0],r=t[1],s=arguments.length>1&&arguments[1]!==void 0?arguments[1]:[],a=arguments.length>2&&arguments[2]!==void 0?arguments[2]:{},l=a.lngAccessor,u=l===void 0?function(C){return C[0]}:l,h=a.latAccessor,g=h===void 0?function(C){return C[1]}:h,v=a.weightAccessor,x=v===void 0?function(){return 1}:v,S=a.bandwidth,w=[n,r],R=S*Math.PI/180;return XW(s.map(function(C){var E=x(C);if(!E)return 0;var B=Zle(w,[u(C),g(C)]);return eue(B,R)*E}))},nue=(function(){var i=Rle(aw().m(function e(t){var n,r,s,a,l,u,h,g,v,x,S,w,R,C,E,B,L,O,z,G,k,H,F,V,Y,ee,ne,se,te,Q,le,de,Te,Se,ue,be,We,Ee,Ge,ye,Pe=arguments,pt,vt,Tt;return aw().w(function(It){for(;;)switch(It.n){case 0:if(r=Pe.length>1&&Pe[1]!==void 0?Pe[1]:[],s=Pe.length>2&&Pe[2]!==void 0?Pe[2]:{},a=s.lngAccessor,l=a===void 0?function(Qe){return Qe[0]}:a,u=s.latAccessor,h=u===void 0?function(Qe){return Qe[1]}:u,g=s.weightAccessor,v=g===void 0?function(){return 1}:g,x=s.bandwidth,(n=navigator)!==null&&n!==void 0&&n.gpu){It.n=1;break}return console.warn("WebGPU not enabled in browser. Please consider enabling it to improve performance."),It.a(2,t.map(function(Qe){return tue(Qe,r,{lngAccessor:l,latAccessor:h,weightAccessor:v,bandwidth:x})}));case 1:return S=4,w=ale,R=ole,C=vle,E=gle,B=fle,L=Ale,O=lle,z=mle,G=ple,k=cle,H=ule,F=hle,V=dle,Y=E(new t_(new Float32Array(t.flat().map(wc)),2),"vec2",t.length),ee=E(new t_(new Float32Array(r.map(function(Qe){return[wc(l(Qe)),wc(h(Qe)),v(Qe)]}).flat()),3),"vec3",r.length),ne=new t_(t.length,1),se=E(ne,"float",t.length),te=B(Math.PI),Q=z(te.mul(2)),le=function(it){return it.mul(it)},de=function(it){return le(G(it.div(2)))},Te=function(it,he){var Ft=B(it[1]),ct=B(he[1]),Dt=B(it[0]),gt=B(he[0]);return B(2).mul(H(z(de(ct.sub(Ft)).add(k(Ft).mul(k(ct)).mul(de(gt.sub(Dt)))))))},Se=function(it,he){return F(V(le(it.div(he)).div(2))).div(he.mul(Q))},ue=C(wc(x)),be=C(wc(x*S)),We=C(r.length),Ee=w(function(){var Qe=Y.element(L),it=se.element(L);it.assign(0),O(We,function(he){var Ft=he.i,ct=ee.element(Ft),Dt=ct.z;R(Dt,function(){var gt=Te(ct.xy,Qe.xy);R(gt&>.lessThan(be),function(){it.addAssign(Se(gt,ue).mul(Dt))})})})}),Ge=Ee().compute(t.length),ye=new sO,It.n=2,ye.computeAsync(Ge);case 2:return pt=Array,vt=Float32Array,It.n=3,ye.getArrayBufferAsync(ne);case 3:return Tt=It.v,It.a(2,pt.from.call(pt,new vt(Tt)))}},e)}));return function(t){return i.apply(this,arguments)}})(),Nv=window.THREE?window.THREE:{Mesh:zi,MeshLambertMaterial:Vc,SphereGeometry:Eu},iue=3.5,rue=.1,YN=100,sue=function(e){var t=cA(FZ(e));return t.opacity=Math.cbrt(e),t.formatRgb()},_O=xs({props:{heatmapsData:{default:[]},heatmapPoints:{default:function(e){return e}},heatmapPointLat:{default:function(e){return e[0]}},heatmapPointLng:{default:function(e){return e[1]}},heatmapPointWeight:{default:1},heatmapBandwidth:{default:2.5},heatmapColorFn:{default:function(){return sue}},heatmapColorSaturation:{default:1.5},heatmapBaseAltitude:{default:.01},heatmapTopAltitude:{},heatmapsTransitionDuration:{default:0,triggerUpdate:!1}},init:function(e,t,n){var r=n.tweenGroup;nr(e),t.scene=e,t.tweenGroup=r,t.dataMapper=new ao(e,{objBindAttr:"__threeObjHeatmap"}).onCreateObj(function(){var s=new Nv.Mesh(new Nv.SphereGeometry(cr),WE(new Nv.MeshLambertMaterial({vertexColors:!0,transparent:!0}),Xle));return s.__globeObjType="heatmap",s})},update:function(e){var t=Mt(e.heatmapPoints),n=Mt(e.heatmapPointLat),r=Mt(e.heatmapPointLng),s=Mt(e.heatmapPointWeight),a=Mt(e.heatmapBandwidth),l=Mt(e.heatmapColorFn),u=Mt(e.heatmapColorSaturation),h=Mt(e.heatmapBaseAltitude),g=Mt(e.heatmapTopAltitude);e.dataMapper.onUpdateObj(function(v,x){var S=a(x),w=l(x),R=u(x),C=h(x),E=g(x),B=t(x).map(function(k){var H=n(k),F=r(k),V=el(H,F),Y=V.x,ee=V.y,ne=V.z;return{x:Y,y:ee,z:ne,lat:H,lng:F,weight:s(k)}}),L=Math.max(rue,S/iue),O=Math.ceil(360/(L||-1));v.geometry.parameters.widthSegments!==O&&(v.geometry.dispose(),v.geometry=new Nv.SphereGeometry(cr,O,O/2));var z=$le(v.geometry.getAttribute("position")),G=z.map(function(k){var H=gr(k,3),F=H[0],V=H[1],Y=H[2],ee=fO({x:F,y:V,z:Y}),ne=ee.lng,se=ee.lat;return[ne,se]});nue(G,B,{latAccessor:function(H){return H.lat},lngAccessor:function(H){return H.lng},weightAccessor:function(H){return H.weight},bandwidth:S}).then(function(k){var H=Qi(new Array(YN)).map(function(ee,ne){return jh(w(ne/(YN-1)))}),F=function(ne){var se=v.__currentTargetD=ne,te=se.kdeVals,Q=se.topAlt,le=se.saturation,de=jW(te.map(Math.abs))||1e-15,Te=RD([0,de/le],H);v.geometry.setAttribute("color",Mu(te.map(function(ue){return Te(Math.abs(ue))}),4));var Se=Pc([0,de],[cr*(1+C),cr*(1+(Q||C))]);v.geometry.setAttribute("r",Mu(te.map(Se)))},V={kdeVals:k,topAlt:E,saturation:R},Y=v.__currentTargetD||Object.assign({},V,{kdeVals:k.map(function(){return 0}),topAlt:E&&C,saturation:.5});Y.kdeVals.length!==k.length&&(Y.kdeVals=k.slice()),Object.keys(V).some(function(ee){return Y[ee]!==V[ee]})&&(!e.heatmapsTransitionDuration||e.heatmapsTransitionDuration<0?F(V):e.tweenGroup.add(new ca(Y).to(V,e.heatmapsTransitionDuration).easing(os.Quadratic.InOut).onUpdate(F).start()))})}).digest(e.heatmapsData)}}),Mh=window.THREE?window.THREE:{DoubleSide:as,Group:ja,LineBasicMaterial:$0,LineSegments:H7,Mesh:zi,MeshBasicMaterial:pA},yO=xs({props:{polygonsData:{default:[]},polygonGeoJsonGeometry:{default:"geometry"},polygonSideColor:{default:function(){return"#ffffaa"}},polygonSideMaterial:{},polygonCapColor:{default:function(){return"#ffffaa"}},polygonCapMaterial:{},polygonStrokeColor:{},polygonAltitude:{default:.01},polygonCapCurvatureResolution:{default:5},polygonsTransitionDuration:{default:1e3,triggerUpdate:!1}},init:function(e,t,n){var r=n.tweenGroup;nr(e),t.scene=e,t.tweenGroup=r,t.dataMapper=new ao(e,{objBindAttr:"__threeObjPolygon"}).id(function(s){return s.id}).onCreateObj(function(){var s=new Mh.Group;return s.__defaultSideMaterial=WE(new Mh.MeshBasicMaterial({side:Mh.DoubleSide,depthWrite:!0}),lw),s.__defaultCapMaterial=new Mh.MeshBasicMaterial({side:Mh.DoubleSide,depthWrite:!0}),s.add(new Mh.Mesh(void 0,[s.__defaultSideMaterial,s.__defaultCapMaterial])),s.add(new Mh.LineSegments(void 0,new Mh.LineBasicMaterial)),s.__globeObjType="polygon",s})},update:function(e){var t=Mt(e.polygonGeoJsonGeometry),n=Mt(e.polygonAltitude),r=Mt(e.polygonCapCurvatureResolution),s=Mt(e.polygonCapColor),a=Mt(e.polygonCapMaterial),l=Mt(e.polygonSideColor),u=Mt(e.polygonSideMaterial),h=Mt(e.polygonStrokeColor),g=[];e.polygonsData.forEach(function(v){var x={data:v,capColor:s(v),capMaterial:a(v),sideColor:l(v),sideMaterial:u(v),strokeColor:h(v),altitude:+n(v),capCurvatureResolution:+r(v)},S=t(v),w=v.__id||"".concat(Math.round(Math.random()*1e9));v.__id=w,S.type==="Polygon"?g.push(Hi({id:"".concat(w,"_0"),coords:S.coordinates},x)):S.type==="MultiPolygon"?g.push.apply(g,Qi(S.coordinates.map(function(R,C){return Hi({id:"".concat(w,"_").concat(C),coords:R},x)}))):console.warn("Unsupported GeoJson geometry type: ".concat(S.type,". Skipping geometry..."))}),e.dataMapper.onUpdateObj(function(v,x){var S=x.coords,w=x.capColor,R=x.capMaterial,C=x.sideColor,E=x.sideMaterial,B=x.strokeColor,L=x.altitude,O=x.capCurvatureResolution,z=gr(v.children,2),G=z[0],k=z[1],H=!!B;k.visible=H;var F=!!(w||R),V=!!(C||E);aue(G.geometry.parameters||{},{polygonGeoJson:S,curvatureResolution:O,closedTop:F,includeSides:V})||(G.geometry&&G.geometry.dispose(),G.geometry=new wM(S,0,cr,!1,F,V,O)),H&&(!k.geometry.parameters||k.geometry.parameters.geoJson.coordinates!==S||k.geometry.parameters.resolution!==O)&&(k.geometry&&k.geometry.dispose(),k.geometry=new uP({type:"Polygon",coordinates:S},cr,O));var Y=V?0:-1,ee=F?V?1:0:-1;if(Y>=0&&(G.material[Y]=E||v.__defaultSideMaterial),ee>=0&&(G.material[ee]=R||v.__defaultCapMaterial),[[!E&&C,Y],[!R&&w,ee]].forEach(function(de){var Te=gr(de,2),Se=Te[0],ue=Te[1];if(!(!Se||ue<0)){var be=G.material[ue],We=Rl(Se);be.color.set(wu(Se)),be.transparent=We<1,be.opacity=We}}),H){var ne=k.material,se=Rl(B);ne.color.set(wu(B)),ne.transparent=se<1,ne.opacity=se}var te={alt:L},Q=function(Te){var Se=v.__currentTargetD=Te,ue=Se.alt;G.scale.x=G.scale.y=G.scale.z=1+ue,H&&(k.scale.x=k.scale.y=k.scale.z=1+ue+1e-4),Yle(v.__defaultSideMaterial,function(be){return be.uSurfaceRadius.value=cr/(ue+1)})},le=v.__currentTargetD||Object.assign({},te,{alt:-.001});Object.keys(te).some(function(de){return le[de]!==te[de]})&&(!e.polygonsTransitionDuration||e.polygonsTransitionDuration<0||le.alt===te.alt?Q(te):e.tweenGroup.add(new ca(le).to(te,e.polygonsTransitionDuration).easing(os.Quadratic.InOut).onUpdate(Q).start()))}).digest(g)}});function aue(i,e){var t=arguments.length>2&&arguments[2]!==void 0?arguments[2]:function(){return function(n,r){return n===r}};return Object.entries(e).every(function(n){var r=gr(n,2),s=r[0],a=r[1];return i.hasOwnProperty(s)&&t(s)(i[s],a)})}var Bd=window.THREE?window.THREE:{BufferGeometry:Ki,DoubleSide:as,Mesh:zi,MeshLambertMaterial:Vc,Vector3:ce},QN=Object.assign({},yM),KN=QN.BufferGeometryUtils||QN,xO=xs({props:{hexPolygonsData:{default:[]},hexPolygonGeoJsonGeometry:{default:"geometry"},hexPolygonColor:{default:function(){return"#ffffaa"}},hexPolygonAltitude:{default:.001},hexPolygonResolution:{default:3},hexPolygonMargin:{default:.2},hexPolygonUseDots:{default:!1},hexPolygonCurvatureResolution:{default:5},hexPolygonDotResolution:{default:12},hexPolygonsTransitionDuration:{default:0,triggerUpdate:!1}},init:function(e,t,n){var r=n.tweenGroup;nr(e),t.scene=e,t.tweenGroup=r,t.dataMapper=new ao(e,{objBindAttr:"__threeObjHexPolygon"}).onCreateObj(function(){var s=new Bd.Mesh(void 0,new Bd.MeshLambertMaterial({side:Bd.DoubleSide}));return s.__globeObjType="hexPolygon",s})},update:function(e){var t=Mt(e.hexPolygonGeoJsonGeometry),n=Mt(e.hexPolygonColor),r=Mt(e.hexPolygonAltitude),s=Mt(e.hexPolygonResolution),a=Mt(e.hexPolygonMargin),l=Mt(e.hexPolygonUseDots),u=Mt(e.hexPolygonCurvatureResolution),h=Mt(e.hexPolygonDotResolution);e.dataMapper.onUpdateObj(function(g,v){var x=t(v),S=s(v),w=r(v),R=Math.max(0,Math.min(1,+a(v))),C=l(v),E=u(v),B=h(v),L=n(v),O=Rl(L);g.material.color.set(wu(L)),g.material.transparent=O<1,g.material.opacity=O;var z={alt:w,margin:R,curvatureResolution:E},G={geoJson:x,h3Res:S},k=g.__currentTargetD||Object.assign({},z,{alt:-.001}),H=g.__currentMemD||G;if(Object.keys(z).some(function(ee){return k[ee]!==z[ee]})||Object.keys(G).some(function(ee){return H[ee]!==G[ee]})){g.__currentMemD=G;var F=[];x.type==="Polygon"?RR(x.coordinates,S,!0).forEach(function(ee){return F.push(ee)}):x.type==="MultiPolygon"?x.coordinates.forEach(function(ee){return RR(ee,S,!0).forEach(function(ne){return F.push(ne)})}):console.warn("Unsupported GeoJson geometry type: ".concat(x.type,". Skipping geometry..."));var V=F.map(function(ee){var ne=CP(ee),se=RP(ee,!0).reverse(),te=ne[1];return se.forEach(function(Q){var le=Q[0];Math.abs(te-le)>170&&(Q[0]+=te>le?360:-360)}),{h3Idx:ee,hexCenter:ne,hexGeoJson:se}}),Y=function(ne){var se=g.__currentTargetD=ne,te=se.alt,Q=se.margin,le=se.curvatureResolution;g.geometry&&g.geometry.dispose(),g.geometry=V.length?(KN.mergeGeometries||KN.mergeBufferGeometries)(V.map(function(de){var Te=gr(de.hexCenter,2),Se=Te[0],ue=Te[1];if(C){var be=el(Se,ue,te),We=el(de.hexGeoJson[0][1],de.hexGeoJson[0][0],te),Ee=.85*(1-Q)*new Bd.Vector3(be.x,be.y,be.z).distanceTo(new Bd.Vector3(We.x,We.y,We.z)),Ge=new by(Ee,B);return Ge.rotateX(Vf(-Se)),Ge.rotateY(Vf(ue)),Ge.translate(be.x,be.y,be.z),Ge}else{var ye=function(vt,Tt,It){return vt-(vt-Tt)*It},Pe=Q===0?de.hexGeoJson:de.hexGeoJson.map(function(pt){var vt=gr(pt,2),Tt=vt[0],It=vt[1];return[[Tt,ue],[It,Se]].map(function(Qe){var it=gr(Qe,2),he=it[0],Ft=it[1];return ye(he,Ft,Q)})});return new wM([Pe],cr,cr*(1+te),!1,!0,!1,le)}})):new Bd.BufferGeometry};!e.hexPolygonsTransitionDuration||e.hexPolygonsTransitionDuration<0?Y(z):e.tweenGroup.add(new ca(k).to(z,e.hexPolygonsTransitionDuration).easing(os.Quadratic.InOut).onUpdate(Y).start())}}).digest(e.hexPolygonsData)}}),oue=window.THREE?window.THREE:{Vector3:ce};function lue(i,e){var t=function(a,l){var u=a[a.length-1];return[].concat(Qi(a),Qi(Array(l-a.length).fill(u)))},n=Math.max(i.length,e.length),r=c$.apply(void 0,Qi([i,e].map(function(s){return s.map(function(a){var l=a.x,u=a.y,h=a.z;return[l,u,h]})}).map(function(s){return t(s,n)})));return function(s){return s===0?i:s===1?e:r(s).map(function(a){var l=gr(a,3),u=l[0],h=l[1],g=l[2];return new oue.Vector3(u,h,g)})}}var Pf=window.THREE?window.THREE:{BufferGeometry:Ki,Color:an,Group:ja,Line:xy,NormalBlending:Ka,ShaderMaterial:Ja,Vector3:ce},uue=L0.default||L0,bO=xs({props:{pathsData:{default:[]},pathPoints:{default:function(e){return e}},pathPointLat:{default:function(e){return e[0]}},pathPointLng:{default:function(e){return e[1]}},pathPointAlt:{default:.001},pathResolution:{default:2},pathColor:{default:function(){return"#ffffaa"}},pathStroke:{},pathDashLength:{default:1},pathDashGap:{default:0},pathDashInitialGap:{default:0},pathDashAnimateTime:{default:0},pathTransitionDuration:{default:1e3,triggerUpdate:!1},rendererSize:{}},methods:{pauseAnimation:function(e){var t;(t=e.ticker)===null||t===void 0||t.pause()},resumeAnimation:function(e){var t;(t=e.ticker)===null||t===void 0||t.resume()},_destructor:function(e){var t;(t=e.ticker)===null||t===void 0||t.dispose()}},stateInit:function(e){var t=e.tweenGroup;return{tweenGroup:t,ticker:new uue,sharedMaterial:new Pf.ShaderMaterial(Hi(Hi({},pO()),{},{transparent:!0,blending:Pf.NormalBlending}))}},init:function(e,t){nr(e),t.scene=e,t.dataMapper=new ao(e,{objBindAttr:"__threeObjPath"}).onCreateObj(function(){var n=new Pf.Group;return n.__globeObjType="path",n}),t.ticker.onTick.add(function(n,r){t.dataMapper.entries().map(function(s){var a=gr(s,2),l=a[1];return l}).filter(function(s){return s.children.length&&s.children[0].material&&s.children[0].__dashAnimateStep}).forEach(function(s){var a=s.children[0],l=a.__dashAnimateStep*r;if(a.type==="Line"){var u=a.material.uniforms.dashTranslate.value%1e9;a.material.uniforms.dashTranslate.value=u+l}else if(a.type==="Line2"){for(var h=a.material.dashOffset-l,g=a.material.dashSize+a.material.gapSize;h<=-g;)h+=g;a.material.dashOffset=h}})})},update:function(e){var t=Mt(e.pathPoints),n=Mt(e.pathPointLat),r=Mt(e.pathPointLng),s=Mt(e.pathPointAlt),a=Mt(e.pathStroke),l=Mt(e.pathColor),u=Mt(e.pathDashLength),h=Mt(e.pathDashGap),g=Mt(e.pathDashInitialGap),v=Mt(e.pathDashAnimateTime);e.dataMapper.onUpdateObj(function(C,E){var B=a(E),L=B!=null;if(!C.children.length||L===(C.children[0].type==="Line")){nr(C);var O=L?new ble(new oO,new qE):new Pf.Line(new Pf.BufferGeometry,e.sharedMaterial.clone());C.add(O)}var z=C.children[0],G=S(t(E),n,r,s,e.pathResolution),k=v(E);if(z.__dashAnimateStep=k>0?1e3/k:0,L){z.material.resolution=e.rendererSize;{var V=u(E),Y=h(E),ee=g(E);z.material.dashed=Y>0,z.material.dashed?z.material.defines.USE_DASH="":delete z.material.defines.USE_DASH,z.material.dashed&&(z.material.dashScale=1/x(G),z.material.dashSize=V,z.material.gapSize=Y,z.material.dashOffset=-ee)}{var ne=l(E);if(ne instanceof Array){var se=w(l(E),G.length-1,1,!1);z.geometry.setColors(se.array),z.material.vertexColors=!0}else{var te=ne,Q=Rl(te);z.material.color=new Pf.Color(wu(te)),z.material.transparent=Q<1,z.material.opacity=Q,z.material.vertexColors=!1}}z.material.needsUpdate=!0}else{Object.assign(z.material.uniforms,{dashSize:{value:u(E)},gapSize:{value:h(E)},dashOffset:{value:g(E)}});var H=w(l(E),G.length),F=R(G.length,1,!0);z.geometry.setAttribute("color",H),z.geometry.setAttribute("relDistance",F)}var le=lue(C.__currentTargetD&&C.__currentTargetD.points||[G[0]],G),de=function(be){var We=C.__currentTargetD=be,Ee=We.stroke,Ge=We.interpolK,ye=C.__currentTargetD.points=le(Ge);if(L){var Pe;z.geometry.setPositions((Pe=[]).concat.apply(Pe,Qi(ye.map(function(pt){var vt=pt.x,Tt=pt.y,It=pt.z;return[vt,Tt,It]})))),z.material.linewidth=Ee,z.material.dashed&&z.computeLineDistances()}else z.geometry.setFromPoints(ye),z.geometry.computeBoundingSphere()},Te={stroke:B,interpolK:1},Se=Object.assign({},C.__currentTargetD||Te,{interpolK:0});Object.keys(Te).some(function(ue){return Se[ue]!==Te[ue]})&&(!e.pathTransitionDuration||e.pathTransitionDuration<0?de(Te):e.tweenGroup.add(new ca(Se).to(Te,e.pathTransitionDuration).easing(os.Quadratic.InOut).onUpdate(de).start()))}).digest(e.pathsData);function x(C){var E=0,B;return C.forEach(function(L){B&&(E+=B.distanceTo(L)),B=L}),E}function S(C,E,B,L,O){var z=function(F,V,Y){for(var ee=[],ne=1;ne<=Y;ne++)ee.push(F+(V-F)*ne/(Y+1));return ee},G=function(){var F=arguments.length>0&&arguments[0]!==void 0?arguments[0]:[],V=arguments.length>1&&arguments[1]!==void 0?arguments[1]:1,Y=[],ee=null;return F.forEach(function(ne){if(ee){for(;Math.abs(ee[1]-ne[1])>180;)ee[1]+=360*(ee[1]V)for(var te=Math.floor(se/V),Q=z(ee[0],ne[0],te),le=z(ee[1],ne[1],te),de=z(ee[2],ne[2],te),Te=0,Se=Q.length;Te2&&arguments[2]!==void 0?arguments[2]:1,L=arguments.length>3&&arguments[3]!==void 0?arguments[3]:!0,O=E+1,z;if(C instanceof Array||C instanceof Function){var G=C instanceof Array?Pc().domain(C.map(function(ne,se){return se/(C.length-1)})).range(C):C;z=function(se){return jh(G(se),L,!0)}}else{var k=jh(C,L,!0);z=function(){return k}}for(var H=[],F=0,V=O;F1&&arguments[1]!==void 0?arguments[1]:1,B=arguments.length>2&&arguments[2]!==void 0?arguments[2]:!1,L=C+1,O=[],z=0,G=L;z0&&arguments[0]!==void 0?arguments[0]:1,r=arguments.length>1&&arguments[1]!==void 0?arguments[1]:32;nx(this,e),t=tx(this,e),t.type="CircleLineGeometry",t.parameters={radius:n,segmentCount:r};for(var s=[],a=0;a<=r;a++){var l=(a/r-.25)*Math.PI*2;s.push({x:Math.cos(l)*n,y:Math.sin(l)*n,z:0})}return t.setFromPoints(s),t}return rx(e,i),ix(e)})(cue.BufferGeometry),Id=window.THREE?window.THREE:{Color:an,Group:ja,Line:xy,LineBasicMaterial:$0,Vector3:ce},fue=L0.default||L0,wO=xs({props:{ringsData:{default:[]},ringLat:{default:"lat"},ringLng:{default:"lng"},ringAltitude:{default:.0015},ringColor:{default:function(){return"#ffffaa"},triggerUpdate:!1},ringResolution:{default:64,triggerUpdate:!1},ringMaxRadius:{default:2,triggerUpdate:!1},ringPropagationSpeed:{default:1,triggerUpdate:!1},ringRepeatPeriod:{default:700,triggerUpdate:!1}},methods:{pauseAnimation:function(e){var t;(t=e.ticker)===null||t===void 0||t.pause()},resumeAnimation:function(e){var t;(t=e.ticker)===null||t===void 0||t.resume()},_destructor:function(e){var t;(t=e.ticker)===null||t===void 0||t.dispose()}},init:function(e,t,n){var r=n.tweenGroup;nr(e),t.scene=e,t.tweenGroup=r,t.dataMapper=new ao(e,{objBindAttr:"__threeObjRing",removeDelay:3e4}).onCreateObj(function(){var s=new Id.Group;return s.__globeObjType="ring",s}),t.ticker=new fue,t.ticker.onTick.add(function(s){if(t.ringsData.length){var a=Mt(t.ringColor),l=Mt(t.ringAltitude),u=Mt(t.ringMaxRadius),h=Mt(t.ringPropagationSpeed),g=Mt(t.ringRepeatPeriod);t.dataMapper.entries().filter(function(v){var x=gr(v,2),S=x[1];return S}).forEach(function(v){var x=gr(v,2),S=x[0],w=x[1];if((w.__nextRingTime||0)<=s){var R=g(S)/1e3;w.__nextRingTime=s+(R<=0?1/0:R);var C=new Id.Line(new hue(1,t.ringResolution),new Id.LineBasicMaterial),E=a(S),B=E instanceof Array||E instanceof Function,L;B?E instanceof Array?(L=Pc().domain(E.map(function(Y,ee){return ee/(E.length-1)})).range(E),C.material.transparent=E.some(function(Y){return Rl(Y)<1})):(L=E,C.material.transparent=!0):(C.material.color=new Id.Color(wu(E)),Wle(C.material,Rl(E)));var O=cr*(1+l(S)),z=u(S),G=z*Math.PI/180,k=h(S),H=k<=0,F=function(ee){var ne=ee.t,se=(H?1-ne:ne)*G;if(C.scale.x=C.scale.y=O*Math.sin(se),C.position.z=O*(1-Math.cos(se)),B){var te=L(ne);C.material.color=new Id.Color(wu(te)),C.material.transparent&&(C.material.opacity=Rl(te))}};if(k===0)F({t:0}),w.add(C);else{var V=Math.abs(z/k)*1e3;t.tweenGroup.add(new ca({t:0}).to({t:1},V).onUpdate(F).onStart(function(){return w.add(C)}).onComplete(function(){w.remove(C),jE(C)}).start())}}})}})},update:function(e){var t=Mt(e.ringLat),n=Mt(e.ringLng),r=Mt(e.ringAltitude),s=e.scene.localToWorld(new Id.Vector3(0,0,0));e.dataMapper.onUpdateObj(function(a,l){var u=t(l),h=n(l),g=r(l);Object.assign(a.position,el(u,h,g)),a.lookAt(s)}).digest(e.ringsData)}}),Aue={0:{x_min:73,x_max:715,ha:792,o:"m 394 -29 q 153 129 242 -29 q 73 479 73 272 q 152 829 73 687 q 394 989 241 989 q 634 829 545 989 q 715 479 715 684 q 635 129 715 270 q 394 -29 546 -29 m 394 89 q 546 211 489 89 q 598 479 598 322 q 548 748 598 640 q 394 871 491 871 q 241 748 298 871 q 190 479 190 637 q 239 211 190 319 q 394 89 296 89 "},1:{x_min:215.671875,x_max:574,ha:792,o:"m 574 0 l 442 0 l 442 697 l 215 697 l 215 796 q 386 833 330 796 q 475 986 447 875 l 574 986 l 574 0 "},2:{x_min:59,x_max:731,ha:792,o:"m 731 0 l 59 0 q 197 314 59 188 q 457 487 199 315 q 598 691 598 580 q 543 819 598 772 q 411 867 488 867 q 272 811 328 867 q 209 630 209 747 l 81 630 q 182 901 81 805 q 408 986 271 986 q 629 909 536 986 q 731 694 731 826 q 613 449 731 541 q 378 316 495 383 q 201 122 235 234 l 731 122 l 731 0 "},3:{x_min:54,x_max:737,ha:792,o:"m 737 284 q 635 55 737 141 q 399 -25 541 -25 q 156 52 248 -25 q 54 308 54 140 l 185 308 q 245 147 185 202 q 395 96 302 96 q 539 140 484 96 q 602 280 602 190 q 510 429 602 390 q 324 454 451 454 l 324 565 q 487 584 441 565 q 565 719 565 617 q 515 835 565 791 q 395 879 466 879 q 255 824 307 879 q 203 661 203 769 l 78 661 q 166 909 78 822 q 387 992 250 992 q 603 921 513 992 q 701 723 701 844 q 669 607 701 656 q 578 524 637 558 q 696 434 655 499 q 737 284 737 369 "},4:{x_min:48,x_max:742.453125,ha:792,o:"m 742 243 l 602 243 l 602 0 l 476 0 l 476 243 l 48 243 l 48 368 l 476 958 l 602 958 l 602 354 l 742 354 l 742 243 m 476 354 l 476 792 l 162 354 l 476 354 "},5:{x_min:54.171875,x_max:738,ha:792,o:"m 738 314 q 626 60 738 153 q 382 -23 526 -23 q 155 47 248 -23 q 54 256 54 125 l 183 256 q 259 132 204 174 q 382 91 314 91 q 533 149 471 91 q 602 314 602 213 q 538 469 602 411 q 386 528 475 528 q 284 506 332 528 q 197 439 237 484 l 81 439 l 159 958 l 684 958 l 684 840 l 254 840 l 214 579 q 306 627 258 612 q 407 643 354 643 q 636 552 540 643 q 738 314 738 457 "},6:{x_min:53,x_max:739,ha:792,o:"m 739 312 q 633 62 739 162 q 400 -31 534 -31 q 162 78 257 -31 q 53 439 53 206 q 178 859 53 712 q 441 986 284 986 q 643 912 559 986 q 732 713 732 833 l 601 713 q 544 830 594 786 q 426 875 494 875 q 268 793 331 875 q 193 517 193 697 q 301 597 240 570 q 427 624 362 624 q 643 540 552 624 q 739 312 739 451 m 603 298 q 540 461 603 400 q 404 516 484 516 q 268 461 323 516 q 207 300 207 401 q 269 137 207 198 q 405 83 325 83 q 541 137 486 83 q 603 298 603 197 "},7:{x_min:58.71875,x_max:730.953125,ha:792,o:"m 730 839 q 469 448 560 641 q 335 0 378 255 l 192 0 q 328 441 235 252 q 593 830 421 630 l 58 830 l 58 958 l 730 958 l 730 839 "},8:{x_min:55,x_max:736,ha:792,o:"m 571 527 q 694 424 652 491 q 736 280 736 358 q 648 71 736 158 q 395 -26 551 -26 q 142 69 238 -26 q 55 279 55 157 q 96 425 55 359 q 220 527 138 491 q 120 615 153 562 q 88 726 88 668 q 171 904 88 827 q 395 986 261 986 q 618 905 529 986 q 702 727 702 830 q 670 616 702 667 q 571 527 638 565 m 394 565 q 519 610 475 565 q 563 717 563 655 q 521 823 563 781 q 392 872 474 872 q 265 824 312 872 q 224 720 224 783 q 265 613 224 656 q 394 565 312 565 m 395 91 q 545 150 488 91 q 597 280 597 204 q 546 408 597 355 q 395 465 492 465 q 244 408 299 465 q 194 280 194 356 q 244 150 194 203 q 395 91 299 91 "},9:{x_min:53,x_max:739,ha:792,o:"m 739 524 q 619 94 739 241 q 362 -32 516 -32 q 150 47 242 -32 q 59 244 59 126 l 191 244 q 246 129 191 176 q 373 82 301 82 q 526 161 466 82 q 597 440 597 255 q 363 334 501 334 q 130 432 216 334 q 53 650 53 521 q 134 880 53 786 q 383 986 226 986 q 659 841 566 986 q 739 524 739 719 m 388 449 q 535 514 480 449 q 585 658 585 573 q 535 805 585 744 q 388 873 480 873 q 242 809 294 873 q 191 658 191 745 q 239 514 191 572 q 388 449 292 449 "},ο:{x_min:0,x_max:712,ha:815,o:"m 356 -25 q 96 88 192 -25 q 0 368 0 201 q 92 642 0 533 q 356 761 192 761 q 617 644 517 761 q 712 368 712 533 q 619 91 712 201 q 356 -25 520 -25 m 356 85 q 527 175 465 85 q 583 369 583 255 q 528 562 583 484 q 356 651 466 651 q 189 560 250 651 q 135 369 135 481 q 187 177 135 257 q 356 85 250 85 "},S:{x_min:0,x_max:788,ha:890,o:"m 788 291 q 662 54 788 144 q 397 -26 550 -26 q 116 68 226 -26 q 0 337 0 168 l 131 337 q 200 152 131 220 q 384 85 269 85 q 557 129 479 85 q 650 270 650 183 q 490 429 650 379 q 194 513 341 470 q 33 739 33 584 q 142 964 33 881 q 388 1041 242 1041 q 644 957 543 1041 q 756 716 756 867 l 625 716 q 561 874 625 816 q 395 933 497 933 q 243 891 309 933 q 164 759 164 841 q 325 609 164 656 q 625 526 475 568 q 788 291 788 454 "},"¦":{x_min:343,x_max:449,ha:792,o:"m 449 462 l 343 462 l 343 986 l 449 986 l 449 462 m 449 -242 l 343 -242 l 343 280 l 449 280 l 449 -242 "},"/":{x_min:183.25,x_max:608.328125,ha:792,o:"m 608 1041 l 266 -129 l 183 -129 l 520 1041 l 608 1041 "},Τ:{x_min:-.4375,x_max:777.453125,ha:839,o:"m 777 893 l 458 893 l 458 0 l 319 0 l 319 892 l 0 892 l 0 1013 l 777 1013 l 777 893 "},y:{x_min:0,x_max:684.78125,ha:771,o:"m 684 738 l 388 -83 q 311 -216 356 -167 q 173 -279 252 -279 q 97 -266 133 -279 l 97 -149 q 132 -155 109 -151 q 168 -160 155 -160 q 240 -114 213 -160 q 274 -26 248 -98 l 0 738 l 137 737 l 341 139 l 548 737 l 684 738 "},Π:{x_min:0,x_max:803,ha:917,o:"m 803 0 l 667 0 l 667 886 l 140 886 l 140 0 l 0 0 l 0 1012 l 803 1012 l 803 0 "},ΐ:{x_min:-111,x_max:339,ha:361,o:"m 339 800 l 229 800 l 229 925 l 339 925 l 339 800 m -1 800 l -111 800 l -111 925 l -1 925 l -1 800 m 284 3 q 233 -10 258 -5 q 182 -15 207 -15 q 85 26 119 -15 q 42 200 42 79 l 42 737 l 167 737 l 168 215 q 172 141 168 157 q 226 101 183 101 q 248 103 239 101 q 284 112 257 104 l 284 3 m 302 1040 l 113 819 l 30 819 l 165 1040 l 302 1040 "},g:{x_min:0,x_max:686,ha:838,o:"m 686 34 q 586 -213 686 -121 q 331 -306 487 -306 q 131 -252 216 -306 q 31 -84 31 -190 l 155 -84 q 228 -174 166 -138 q 345 -207 284 -207 q 514 -109 454 -207 q 564 89 564 -27 q 461 6 521 36 q 335 -23 401 -23 q 88 100 184 -23 q 0 370 0 215 q 87 634 0 522 q 330 758 183 758 q 457 728 398 758 q 564 644 515 699 l 564 737 l 686 737 l 686 34 m 582 367 q 529 560 582 481 q 358 652 468 652 q 189 561 250 652 q 135 369 135 482 q 189 176 135 255 q 361 85 251 85 q 529 176 468 85 q 582 367 582 255 "},"²":{x_min:0,x_max:442,ha:539,o:"m 442 383 l 0 383 q 91 566 0 492 q 260 668 176 617 q 354 798 354 727 q 315 875 354 845 q 227 905 277 905 q 136 869 173 905 q 99 761 99 833 l 14 761 q 82 922 14 864 q 232 974 141 974 q 379 926 316 974 q 442 797 442 878 q 351 635 442 704 q 183 539 321 611 q 92 455 92 491 l 442 455 l 442 383 "},"–":{x_min:0,x_max:705.5625,ha:803,o:"m 705 334 l 0 334 l 0 410 l 705 410 l 705 334 "},Κ:{x_min:0,x_max:819.5625,ha:893,o:"m 819 0 l 650 0 l 294 509 l 139 356 l 139 0 l 0 0 l 0 1013 l 139 1013 l 139 526 l 626 1013 l 809 1013 l 395 600 l 819 0 "},ƒ:{x_min:-46.265625,x_max:392,ha:513,o:"m 392 651 l 259 651 l 79 -279 l -46 -278 l 134 651 l 14 651 l 14 751 l 135 751 q 151 948 135 900 q 304 1041 185 1041 q 334 1040 319 1041 q 392 1034 348 1039 l 392 922 q 337 931 360 931 q 271 883 287 931 q 260 793 260 853 l 260 751 l 392 751 l 392 651 "},e:{x_min:0,x_max:714,ha:813,o:"m 714 326 l 140 326 q 200 157 140 227 q 359 87 260 87 q 488 130 431 87 q 561 245 545 174 l 697 245 q 577 48 670 123 q 358 -26 484 -26 q 97 85 195 -26 q 0 363 0 197 q 94 642 0 529 q 358 765 195 765 q 626 627 529 765 q 714 326 714 503 m 576 429 q 507 583 564 522 q 355 650 445 650 q 206 583 266 650 q 140 429 152 522 l 576 429 "},ό:{x_min:0,x_max:712,ha:815,o:"m 356 -25 q 94 91 194 -25 q 0 368 0 202 q 92 642 0 533 q 356 761 192 761 q 617 644 517 761 q 712 368 712 533 q 619 91 712 201 q 356 -25 520 -25 m 356 85 q 527 175 465 85 q 583 369 583 255 q 528 562 583 484 q 356 651 466 651 q 189 560 250 651 q 135 369 135 481 q 187 177 135 257 q 356 85 250 85 m 576 1040 l 387 819 l 303 819 l 438 1040 l 576 1040 "},J:{x_min:0,x_max:588,ha:699,o:"m 588 279 q 287 -26 588 -26 q 58 73 126 -26 q 0 327 0 158 l 133 327 q 160 172 133 227 q 288 96 198 96 q 426 171 391 96 q 449 336 449 219 l 449 1013 l 588 1013 l 588 279 "},"»":{x_min:-1,x_max:503,ha:601,o:"m 503 302 l 280 136 l 281 256 l 429 373 l 281 486 l 280 608 l 503 440 l 503 302 m 221 302 l 0 136 l 0 255 l 145 372 l 0 486 l -1 608 l 221 440 l 221 302 "},"©":{x_min:-3,x_max:1008,ha:1106,o:"m 502 -7 q 123 151 263 -7 q -3 501 -3 294 q 123 851 -3 706 q 502 1011 263 1011 q 881 851 739 1011 q 1008 501 1008 708 q 883 151 1008 292 q 502 -7 744 -7 m 502 60 q 830 197 709 60 q 940 501 940 322 q 831 805 940 681 q 502 944 709 944 q 174 805 296 944 q 65 501 65 680 q 173 197 65 320 q 502 60 294 60 m 741 394 q 661 246 731 302 q 496 190 591 190 q 294 285 369 190 q 228 497 228 370 q 295 714 228 625 q 499 813 370 813 q 656 762 588 813 q 733 625 724 711 l 634 625 q 589 704 629 673 q 498 735 550 735 q 377 666 421 735 q 334 504 334 597 q 374 340 334 408 q 490 272 415 272 q 589 304 549 272 q 638 394 628 337 l 741 394 "},ώ:{x_min:0,x_max:922,ha:1030,o:"m 687 1040 l 498 819 l 415 819 l 549 1040 l 687 1040 m 922 339 q 856 97 922 203 q 650 -26 780 -26 q 538 9 587 -26 q 461 103 489 44 q 387 12 436 46 q 277 -22 339 -22 q 69 97 147 -22 q 0 338 0 202 q 45 551 0 444 q 161 737 84 643 l 302 737 q 175 552 219 647 q 124 336 124 446 q 155 179 124 248 q 275 88 197 88 q 375 163 341 88 q 400 294 400 219 l 400 572 l 524 572 l 524 294 q 561 135 524 192 q 643 88 591 88 q 762 182 719 88 q 797 341 797 257 q 745 555 797 450 q 619 737 705 637 l 760 737 q 874 551 835 640 q 922 339 922 444 "},"^":{x_min:193.0625,x_max:598.609375,ha:792,o:"m 598 772 l 515 772 l 395 931 l 277 772 l 193 772 l 326 1013 l 462 1013 l 598 772 "},"«":{x_min:0,x_max:507.203125,ha:604,o:"m 506 136 l 284 302 l 284 440 l 506 608 l 507 485 l 360 371 l 506 255 l 506 136 m 222 136 l 0 302 l 0 440 l 222 608 l 221 486 l 73 373 l 222 256 l 222 136 "},D:{x_min:0,x_max:828,ha:935,o:"m 389 1013 q 714 867 593 1013 q 828 521 828 729 q 712 161 828 309 q 382 0 587 0 l 0 0 l 0 1013 l 389 1013 m 376 124 q 607 247 523 124 q 681 510 681 355 q 607 771 681 662 q 376 896 522 896 l 139 896 l 139 124 l 376 124 "},"∙":{x_min:0,x_max:142,ha:239,o:"m 142 585 l 0 585 l 0 738 l 142 738 l 142 585 "},ÿ:{x_min:0,x_max:47,ha:125,o:"m 47 3 q 37 -7 47 -7 q 28 0 30 -7 q 39 -4 32 -4 q 45 3 45 -1 l 37 0 q 28 9 28 0 q 39 19 28 19 l 47 16 l 47 19 l 47 3 m 37 1 q 44 8 44 1 q 37 16 44 16 q 30 8 30 16 q 37 1 30 1 m 26 1 l 23 22 l 14 0 l 3 22 l 3 3 l 0 25 l 13 1 l 22 25 l 26 1 "},w:{x_min:0,x_max:1009.71875,ha:1100,o:"m 1009 738 l 783 0 l 658 0 l 501 567 l 345 0 l 222 0 l 0 738 l 130 738 l 284 174 l 432 737 l 576 738 l 721 173 l 881 737 l 1009 738 "},$:{x_min:0,x_max:700,ha:793,o:"m 664 717 l 542 717 q 490 825 531 785 q 381 872 450 865 l 381 551 q 620 446 540 522 q 700 241 700 370 q 618 45 700 116 q 381 -25 536 -25 l 381 -152 l 307 -152 l 307 -25 q 81 62 162 -25 q 0 297 0 149 l 124 297 q 169 146 124 204 q 307 81 215 89 l 307 441 q 80 536 148 469 q 13 725 13 603 q 96 910 13 839 q 307 982 180 982 l 307 1077 l 381 1077 l 381 982 q 574 917 494 982 q 664 717 664 845 m 307 565 l 307 872 q 187 831 233 872 q 142 724 142 791 q 180 618 142 656 q 307 565 218 580 m 381 76 q 562 237 562 96 q 517 361 562 313 q 381 423 472 409 l 381 76 "},"\\":{x_min:-.015625,x_max:425.0625,ha:522,o:"m 425 -129 l 337 -129 l 0 1041 l 83 1041 l 425 -129 "},µ:{x_min:0,x_max:697.21875,ha:747,o:"m 697 -4 q 629 -14 658 -14 q 498 97 513 -14 q 422 9 470 41 q 313 -23 374 -23 q 207 4 258 -23 q 119 81 156 32 l 119 -278 l 0 -278 l 0 738 l 124 738 l 124 343 q 165 173 124 246 q 308 83 216 83 q 452 178 402 83 q 493 359 493 255 l 493 738 l 617 738 l 617 214 q 623 136 617 160 q 673 92 637 92 q 697 96 684 92 l 697 -4 "},Ι:{x_min:42,x_max:181,ha:297,o:"m 181 0 l 42 0 l 42 1013 l 181 1013 l 181 0 "},Ύ:{x_min:0,x_max:1144.5,ha:1214,o:"m 1144 1012 l 807 416 l 807 0 l 667 0 l 667 416 l 325 1012 l 465 1012 l 736 533 l 1004 1012 l 1144 1012 m 277 1040 l 83 799 l 0 799 l 140 1040 l 277 1040 "},"’":{x_min:0,x_max:139,ha:236,o:"m 139 851 q 102 737 139 784 q 0 669 65 690 l 0 734 q 59 787 42 741 q 72 873 72 821 l 0 873 l 0 1013 l 139 1013 l 139 851 "},Ν:{x_min:0,x_max:801,ha:915,o:"m 801 0 l 651 0 l 131 822 l 131 0 l 0 0 l 0 1013 l 151 1013 l 670 191 l 670 1013 l 801 1013 l 801 0 "},"-":{x_min:8.71875,x_max:350.390625,ha:478,o:"m 350 317 l 8 317 l 8 428 l 350 428 l 350 317 "},Q:{x_min:0,x_max:968,ha:1072,o:"m 954 5 l 887 -79 l 744 35 q 622 -11 687 2 q 483 -26 556 -26 q 127 130 262 -26 q 0 504 0 279 q 127 880 0 728 q 484 1041 262 1041 q 841 884 708 1041 q 968 507 968 735 q 933 293 968 398 q 832 104 899 188 l 954 5 m 723 191 q 802 330 777 248 q 828 499 828 412 q 744 790 828 673 q 483 922 650 922 q 228 791 322 922 q 142 505 142 673 q 227 221 142 337 q 487 91 323 91 q 632 123 566 91 l 520 215 l 587 301 l 723 191 "},ς:{x_min:1,x_max:676.28125,ha:740,o:"m 676 460 l 551 460 q 498 595 542 546 q 365 651 448 651 q 199 578 263 651 q 136 401 136 505 q 266 178 136 241 q 508 106 387 142 q 640 -50 640 62 q 625 -158 640 -105 q 583 -278 611 -211 l 465 -278 q 498 -182 490 -211 q 515 -80 515 -126 q 381 12 515 -15 q 134 91 197 51 q 1 388 1 179 q 100 651 1 542 q 354 761 199 761 q 587 680 498 761 q 676 460 676 599 "},M:{x_min:0,x_max:954,ha:1067,o:"m 954 0 l 819 0 l 819 869 l 537 0 l 405 0 l 128 866 l 128 0 l 0 0 l 0 1013 l 200 1013 l 472 160 l 757 1013 l 954 1013 l 954 0 "},Ψ:{x_min:0,x_max:1006,ha:1094,o:"m 1006 678 q 914 319 1006 429 q 571 200 814 200 l 571 0 l 433 0 l 433 200 q 92 319 194 200 q 0 678 0 429 l 0 1013 l 139 1013 l 139 679 q 191 417 139 492 q 433 326 255 326 l 433 1013 l 571 1013 l 571 326 l 580 326 q 813 423 747 326 q 868 679 868 502 l 868 1013 l 1006 1013 l 1006 678 "},C:{x_min:0,x_max:886,ha:944,o:"m 886 379 q 760 87 886 201 q 455 -26 634 -26 q 112 136 236 -26 q 0 509 0 283 q 118 882 0 737 q 469 1041 245 1041 q 748 955 630 1041 q 879 708 879 859 l 745 708 q 649 862 724 805 q 473 920 573 920 q 219 791 312 920 q 136 509 136 675 q 217 229 136 344 q 470 99 311 99 q 672 179 591 99 q 753 379 753 259 l 886 379 "},"!":{x_min:0,x_max:138,ha:236,o:"m 138 684 q 116 409 138 629 q 105 244 105 299 l 33 244 q 16 465 33 313 q 0 684 0 616 l 0 1013 l 138 1013 l 138 684 m 138 0 l 0 0 l 0 151 l 138 151 l 138 0 "},"{":{x_min:0,x_max:480.5625,ha:578,o:"m 480 -286 q 237 -213 303 -286 q 187 -45 187 -159 q 194 48 187 -15 q 201 141 201 112 q 164 264 201 225 q 0 314 118 314 l 0 417 q 164 471 119 417 q 201 605 201 514 q 199 665 201 644 q 193 772 193 769 q 241 941 193 887 q 480 1015 308 1015 l 480 915 q 336 866 375 915 q 306 742 306 828 q 310 662 306 717 q 314 577 314 606 q 288 452 314 500 q 176 365 256 391 q 289 275 257 337 q 314 143 314 226 q 313 84 314 107 q 310 -11 310 -5 q 339 -131 310 -94 q 480 -182 377 -182 l 480 -286 "},X:{x_min:-.015625,x_max:854.15625,ha:940,o:"m 854 0 l 683 0 l 423 409 l 166 0 l 0 0 l 347 519 l 18 1013 l 186 1013 l 428 637 l 675 1013 l 836 1013 l 504 520 l 854 0 "},"#":{x_min:0,x_max:963.890625,ha:1061,o:"m 963 690 l 927 590 l 719 590 l 655 410 l 876 410 l 840 310 l 618 310 l 508 -3 l 393 -2 l 506 309 l 329 310 l 215 -2 l 102 -3 l 212 310 l 0 310 l 36 410 l 248 409 l 312 590 l 86 590 l 120 690 l 347 690 l 459 1006 l 573 1006 l 462 690 l 640 690 l 751 1006 l 865 1006 l 754 690 l 963 690 m 606 590 l 425 590 l 362 410 l 543 410 l 606 590 "},ι:{x_min:42,x_max:284,ha:361,o:"m 284 3 q 233 -10 258 -5 q 182 -15 207 -15 q 85 26 119 -15 q 42 200 42 79 l 42 738 l 167 738 l 168 215 q 172 141 168 157 q 226 101 183 101 q 248 103 239 101 q 284 112 257 104 l 284 3 "},Ά:{x_min:0,x_max:906.953125,ha:982,o:"m 283 1040 l 88 799 l 5 799 l 145 1040 l 283 1040 m 906 0 l 756 0 l 650 303 l 251 303 l 143 0 l 0 0 l 376 1012 l 529 1012 l 906 0 m 609 421 l 452 866 l 293 421 l 609 421 "},")":{x_min:0,x_max:318,ha:415,o:"m 318 365 q 257 25 318 191 q 87 -290 197 -141 l 0 -290 q 140 21 93 -128 q 193 360 193 189 q 141 704 193 537 q 0 1024 97 850 l 87 1024 q 257 706 197 871 q 318 365 318 542 "},ε:{x_min:0,x_max:634.71875,ha:714,o:"m 634 234 q 527 38 634 110 q 300 -25 433 -25 q 98 29 183 -25 q 0 204 0 93 q 37 314 0 265 q 128 390 67 353 q 56 460 82 419 q 26 555 26 505 q 114 712 26 654 q 295 763 191 763 q 499 700 416 763 q 589 515 589 631 l 478 515 q 419 618 464 580 q 307 657 374 657 q 207 630 253 657 q 151 547 151 598 q 238 445 151 469 q 389 434 280 434 l 389 331 l 349 331 q 206 315 255 331 q 125 210 125 287 q 183 107 125 145 q 302 76 233 76 q 436 117 379 76 q 509 234 493 159 l 634 234 "},Δ:{x_min:0,x_max:952.78125,ha:1028,o:"m 952 0 l 0 0 l 400 1013 l 551 1013 l 952 0 m 762 124 l 476 867 l 187 124 l 762 124 "},"}":{x_min:0,x_max:481,ha:578,o:"m 481 314 q 318 262 364 314 q 282 136 282 222 q 284 65 282 97 q 293 -58 293 -48 q 241 -217 293 -166 q 0 -286 174 -286 l 0 -182 q 143 -130 105 -182 q 171 -2 171 -93 q 168 81 171 22 q 165 144 165 140 q 188 275 165 229 q 306 365 220 339 q 191 455 224 391 q 165 588 165 505 q 168 681 165 624 q 171 742 171 737 q 141 865 171 827 q 0 915 102 915 l 0 1015 q 243 942 176 1015 q 293 773 293 888 q 287 675 293 741 q 282 590 282 608 q 318 466 282 505 q 481 417 364 417 l 481 314 "},"‰":{x_min:-3,x_max:1672,ha:1821,o:"m 846 0 q 664 76 732 0 q 603 244 603 145 q 662 412 603 344 q 846 489 729 489 q 1027 412 959 489 q 1089 244 1089 343 q 1029 76 1089 144 q 846 0 962 0 m 845 103 q 945 143 910 103 q 981 243 981 184 q 947 340 981 301 q 845 385 910 385 q 745 342 782 385 q 709 243 709 300 q 742 147 709 186 q 845 103 781 103 m 888 986 l 284 -25 l 199 -25 l 803 986 l 888 986 m 241 468 q 58 545 126 468 q -3 715 -3 615 q 56 881 -3 813 q 238 958 124 958 q 421 881 353 958 q 483 712 483 813 q 423 544 483 612 q 241 468 356 468 m 241 855 q 137 811 175 855 q 100 710 100 768 q 136 612 100 653 q 240 572 172 572 q 344 614 306 572 q 382 713 382 656 q 347 810 382 771 q 241 855 308 855 m 1428 0 q 1246 76 1314 0 q 1185 244 1185 145 q 1244 412 1185 344 q 1428 489 1311 489 q 1610 412 1542 489 q 1672 244 1672 343 q 1612 76 1672 144 q 1428 0 1545 0 m 1427 103 q 1528 143 1492 103 q 1564 243 1564 184 q 1530 340 1564 301 q 1427 385 1492 385 q 1327 342 1364 385 q 1291 243 1291 300 q 1324 147 1291 186 q 1427 103 1363 103 "},a:{x_min:0,x_max:698.609375,ha:794,o:"m 698 0 q 661 -12 679 -7 q 615 -17 643 -17 q 536 12 564 -17 q 500 96 508 41 q 384 6 456 37 q 236 -25 312 -25 q 65 31 130 -25 q 0 194 0 88 q 118 390 0 334 q 328 435 180 420 q 488 483 476 451 q 495 523 495 504 q 442 619 495 584 q 325 654 389 654 q 209 617 257 654 q 152 513 161 580 l 33 513 q 123 705 33 633 q 332 772 207 772 q 528 712 448 772 q 617 531 617 645 l 617 163 q 624 108 617 126 q 664 90 632 90 l 698 94 l 698 0 m 491 262 l 491 372 q 272 329 350 347 q 128 201 128 294 q 166 113 128 144 q 264 83 205 83 q 414 130 346 83 q 491 262 491 183 "},"—":{x_min:0,x_max:941.671875,ha:1039,o:"m 941 334 l 0 334 l 0 410 l 941 410 l 941 334 "},"=":{x_min:8.71875,x_max:780.953125,ha:792,o:"m 780 510 l 8 510 l 8 606 l 780 606 l 780 510 m 780 235 l 8 235 l 8 332 l 780 332 l 780 235 "},N:{x_min:0,x_max:801,ha:914,o:"m 801 0 l 651 0 l 131 823 l 131 0 l 0 0 l 0 1013 l 151 1013 l 670 193 l 670 1013 l 801 1013 l 801 0 "},ρ:{x_min:0,x_max:712,ha:797,o:"m 712 369 q 620 94 712 207 q 362 -26 521 -26 q 230 2 292 -26 q 119 83 167 30 l 119 -278 l 0 -278 l 0 362 q 91 643 0 531 q 355 764 190 764 q 617 647 517 764 q 712 369 712 536 m 583 366 q 530 559 583 480 q 359 651 469 651 q 190 562 252 651 q 135 370 135 483 q 189 176 135 257 q 359 85 250 85 q 528 175 466 85 q 583 366 583 254 "},"¯":{x_min:0,x_max:941.671875,ha:938,o:"m 941 1033 l 0 1033 l 0 1109 l 941 1109 l 941 1033 "},Z:{x_min:0,x_max:779,ha:849,o:"m 779 0 l 0 0 l 0 113 l 621 896 l 40 896 l 40 1013 l 779 1013 l 778 887 l 171 124 l 779 124 l 779 0 "},u:{x_min:0,x_max:617,ha:729,o:"m 617 0 l 499 0 l 499 110 q 391 10 460 45 q 246 -25 322 -25 q 61 58 127 -25 q 0 258 0 136 l 0 738 l 125 738 l 125 284 q 156 148 125 202 q 273 82 197 82 q 433 165 369 82 q 493 340 493 243 l 493 738 l 617 738 l 617 0 "},k:{x_min:0,x_max:612.484375,ha:697,o:"m 612 738 l 338 465 l 608 0 l 469 0 l 251 382 l 121 251 l 121 0 l 0 0 l 0 1013 l 121 1013 l 121 402 l 456 738 l 612 738 "},Η:{x_min:0,x_max:803,ha:917,o:"m 803 0 l 667 0 l 667 475 l 140 475 l 140 0 l 0 0 l 0 1013 l 140 1013 l 140 599 l 667 599 l 667 1013 l 803 1013 l 803 0 "},Α:{x_min:0,x_max:906.953125,ha:985,o:"m 906 0 l 756 0 l 650 303 l 251 303 l 143 0 l 0 0 l 376 1013 l 529 1013 l 906 0 m 609 421 l 452 866 l 293 421 l 609 421 "},s:{x_min:0,x_max:604,ha:697,o:"m 604 217 q 501 36 604 104 q 292 -23 411 -23 q 86 43 166 -23 q 0 238 0 114 l 121 237 q 175 122 121 164 q 300 85 223 85 q 415 112 363 85 q 479 207 479 147 q 361 309 479 276 q 140 372 141 370 q 21 544 21 426 q 111 708 21 647 q 298 761 190 761 q 492 705 413 761 q 583 531 583 643 l 462 531 q 412 625 462 594 q 298 657 363 657 q 199 636 242 657 q 143 558 143 608 q 262 454 143 486 q 484 394 479 397 q 604 217 604 341 "},B:{x_min:0,x_max:778,ha:876,o:"m 580 546 q 724 469 670 535 q 778 311 778 403 q 673 83 778 171 q 432 0 575 0 l 0 0 l 0 1013 l 411 1013 q 629 957 541 1013 q 732 768 732 892 q 691 633 732 693 q 580 546 650 572 m 393 899 l 139 899 l 139 588 l 379 588 q 521 624 462 588 q 592 744 592 667 q 531 859 592 819 q 393 899 471 899 m 419 124 q 566 169 504 124 q 635 303 635 219 q 559 436 635 389 q 402 477 494 477 l 139 477 l 139 124 l 419 124 "},"…":{x_min:0,x_max:614,ha:708,o:"m 142 0 l 0 0 l 0 151 l 142 151 l 142 0 m 378 0 l 236 0 l 236 151 l 378 151 l 378 0 m 614 0 l 472 0 l 472 151 l 614 151 l 614 0 "},"?":{x_min:0,x_max:607,ha:704,o:"m 607 777 q 543 599 607 674 q 422 474 482 537 q 357 272 357 391 l 236 272 q 297 487 236 395 q 411 619 298 490 q 474 762 474 691 q 422 885 474 838 q 301 933 371 933 q 179 880 228 933 q 124 706 124 819 l 0 706 q 94 963 0 872 q 302 1044 177 1044 q 511 973 423 1044 q 607 777 607 895 m 370 0 l 230 0 l 230 151 l 370 151 l 370 0 "},H:{x_min:0,x_max:803,ha:915,o:"m 803 0 l 667 0 l 667 475 l 140 475 l 140 0 l 0 0 l 0 1013 l 140 1013 l 140 599 l 667 599 l 667 1013 l 803 1013 l 803 0 "},ν:{x_min:0,x_max:675,ha:761,o:"m 675 738 l 404 0 l 272 0 l 0 738 l 133 738 l 340 147 l 541 738 l 675 738 "},c:{x_min:1,x_max:701.390625,ha:775,o:"m 701 264 q 584 53 681 133 q 353 -26 487 -26 q 91 91 188 -26 q 1 370 1 201 q 92 645 1 537 q 353 761 190 761 q 572 688 479 761 q 690 493 666 615 l 556 493 q 487 606 545 562 q 356 650 428 650 q 186 563 246 650 q 134 372 134 487 q 188 179 134 258 q 359 88 250 88 q 492 136 437 88 q 566 264 548 185 l 701 264 "},"¶":{x_min:0,x_max:566.671875,ha:678,o:"m 21 892 l 52 892 l 98 761 l 145 892 l 176 892 l 178 741 l 157 741 l 157 867 l 108 741 l 88 741 l 40 871 l 40 741 l 21 741 l 21 892 m 308 854 l 308 731 q 252 691 308 691 q 227 691 240 691 q 207 696 213 695 l 207 712 l 253 706 q 288 733 288 706 l 288 763 q 244 741 279 741 q 193 797 193 741 q 261 860 193 860 q 287 860 273 860 q 308 854 302 855 m 288 842 l 263 843 q 213 796 213 843 q 248 756 213 756 q 288 796 288 756 l 288 842 m 566 988 l 502 988 l 502 -1 l 439 -1 l 439 988 l 317 988 l 317 -1 l 252 -1 l 252 602 q 81 653 155 602 q 0 805 0 711 q 101 989 0 918 q 309 1053 194 1053 l 566 1053 l 566 988 "},β:{x_min:0,x_max:660,ha:745,o:"m 471 550 q 610 450 561 522 q 660 280 660 378 q 578 64 660 151 q 367 -22 497 -22 q 239 5 299 -22 q 126 82 178 32 l 126 -278 l 0 -278 l 0 593 q 54 903 0 801 q 318 1042 127 1042 q 519 964 436 1042 q 603 771 603 887 q 567 644 603 701 q 471 550 532 586 m 337 79 q 476 138 418 79 q 535 279 535 198 q 427 437 535 386 q 226 477 344 477 l 226 583 q 398 620 329 583 q 486 762 486 668 q 435 884 486 833 q 312 935 384 935 q 169 861 219 935 q 126 698 126 797 l 126 362 q 170 169 126 242 q 337 79 224 79 "},Μ:{x_min:0,x_max:954,ha:1068,o:"m 954 0 l 819 0 l 819 868 l 537 0 l 405 0 l 128 865 l 128 0 l 0 0 l 0 1013 l 199 1013 l 472 158 l 758 1013 l 954 1013 l 954 0 "},Ό:{x_min:.109375,x_max:1120,ha:1217,o:"m 1120 505 q 994 132 1120 282 q 642 -29 861 -29 q 290 130 422 -29 q 167 505 167 280 q 294 883 167 730 q 650 1046 430 1046 q 999 882 868 1046 q 1120 505 1120 730 m 977 504 q 896 784 977 669 q 644 915 804 915 q 391 785 484 915 q 307 504 307 669 q 391 224 307 339 q 644 95 486 95 q 894 224 803 95 q 977 504 977 339 m 277 1040 l 83 799 l 0 799 l 140 1040 l 277 1040 "},Ή:{x_min:0,x_max:1158,ha:1275,o:"m 1158 0 l 1022 0 l 1022 475 l 496 475 l 496 0 l 356 0 l 356 1012 l 496 1012 l 496 599 l 1022 599 l 1022 1012 l 1158 1012 l 1158 0 m 277 1040 l 83 799 l 0 799 l 140 1040 l 277 1040 "},"•":{x_min:0,x_max:663.890625,ha:775,o:"m 663 529 q 566 293 663 391 q 331 196 469 196 q 97 294 194 196 q 0 529 0 393 q 96 763 0 665 q 331 861 193 861 q 566 763 469 861 q 663 529 663 665 "},"¥":{x_min:.1875,x_max:819.546875,ha:886,o:"m 563 561 l 697 561 l 696 487 l 520 487 l 482 416 l 482 380 l 697 380 l 695 308 l 482 308 l 482 0 l 342 0 l 342 308 l 125 308 l 125 380 l 342 380 l 342 417 l 303 487 l 125 487 l 125 561 l 258 561 l 0 1013 l 140 1013 l 411 533 l 679 1013 l 819 1013 l 563 561 "},"(":{x_min:0,x_max:318.0625,ha:415,o:"m 318 -290 l 230 -290 q 61 23 122 -142 q 0 365 0 190 q 62 712 0 540 q 230 1024 119 869 l 318 1024 q 175 705 219 853 q 125 360 125 542 q 176 22 125 187 q 318 -290 223 -127 "},U:{x_min:0,x_max:796,ha:904,o:"m 796 393 q 681 93 796 212 q 386 -25 566 -25 q 101 95 208 -25 q 0 393 0 211 l 0 1013 l 138 1013 l 138 391 q 204 191 138 270 q 394 107 276 107 q 586 191 512 107 q 656 391 656 270 l 656 1013 l 796 1013 l 796 393 "},γ:{x_min:.5,x_max:744.953125,ha:822,o:"m 744 737 l 463 54 l 463 -278 l 338 -278 l 338 54 l 154 495 q 104 597 124 569 q 13 651 67 651 l 0 651 l 0 751 l 39 753 q 168 711 121 753 q 242 594 207 676 l 403 208 l 617 737 l 744 737 "},α:{x_min:0,x_max:765.5625,ha:809,o:"m 765 -4 q 698 -14 726 -14 q 564 97 586 -14 q 466 7 525 40 q 337 -26 407 -26 q 88 98 186 -26 q 0 369 0 212 q 88 637 0 525 q 337 760 184 760 q 465 728 407 760 q 563 637 524 696 l 563 739 l 685 739 l 685 222 q 693 141 685 168 q 748 94 708 94 q 765 96 760 94 l 765 -4 m 584 371 q 531 562 584 485 q 360 653 470 653 q 192 566 254 653 q 135 379 135 489 q 186 181 135 261 q 358 84 247 84 q 528 176 465 84 q 584 371 584 260 "},F:{x_min:0,x_max:683.328125,ha:717,o:"m 683 888 l 140 888 l 140 583 l 613 583 l 613 458 l 140 458 l 140 0 l 0 0 l 0 1013 l 683 1013 l 683 888 "},"­":{x_min:0,x_max:705.5625,ha:803,o:"m 705 334 l 0 334 l 0 410 l 705 410 l 705 334 "},":":{x_min:0,x_max:142,ha:239,o:"m 142 585 l 0 585 l 0 738 l 142 738 l 142 585 m 142 0 l 0 0 l 0 151 l 142 151 l 142 0 "},Χ:{x_min:0,x_max:854.171875,ha:935,o:"m 854 0 l 683 0 l 423 409 l 166 0 l 0 0 l 347 519 l 18 1013 l 186 1013 l 427 637 l 675 1013 l 836 1013 l 504 521 l 854 0 "},"*":{x_min:116,x_max:674,ha:792,o:"m 674 768 l 475 713 l 610 544 l 517 477 l 394 652 l 272 478 l 178 544 l 314 713 l 116 766 l 153 876 l 341 812 l 342 1013 l 446 1013 l 446 811 l 635 874 l 674 768 "},"†":{x_min:0,x_max:777,ha:835,o:"m 458 804 l 777 804 l 777 683 l 458 683 l 458 0 l 319 0 l 319 681 l 0 683 l 0 804 l 319 804 l 319 1015 l 458 1013 l 458 804 "},"°":{x_min:0,x_max:347,ha:444,o:"m 173 802 q 43 856 91 802 q 0 977 0 905 q 45 1101 0 1049 q 173 1153 90 1153 q 303 1098 255 1153 q 347 977 347 1049 q 303 856 347 905 q 173 802 256 802 m 173 884 q 238 910 214 884 q 262 973 262 937 q 239 1038 262 1012 q 173 1064 217 1064 q 108 1037 132 1064 q 85 973 85 1010 q 108 910 85 937 q 173 884 132 884 "},V:{x_min:0,x_max:862.71875,ha:940,o:"m 862 1013 l 505 0 l 361 0 l 0 1013 l 143 1013 l 434 165 l 718 1012 l 862 1013 "},Ξ:{x_min:0,x_max:734.71875,ha:763,o:"m 723 889 l 9 889 l 9 1013 l 723 1013 l 723 889 m 673 463 l 61 463 l 61 589 l 673 589 l 673 463 m 734 0 l 0 0 l 0 124 l 734 124 l 734 0 "}," ":{x_min:0,x_max:0,ha:853},Ϋ:{x_min:.328125,x_max:819.515625,ha:889,o:"m 588 1046 l 460 1046 l 460 1189 l 588 1189 l 588 1046 m 360 1046 l 232 1046 l 232 1189 l 360 1189 l 360 1046 m 819 1012 l 482 416 l 482 0 l 342 0 l 342 416 l 0 1012 l 140 1012 l 411 533 l 679 1012 l 819 1012 "},"”":{x_min:0,x_max:347,ha:454,o:"m 139 851 q 102 737 139 784 q 0 669 65 690 l 0 734 q 59 787 42 741 q 72 873 72 821 l 0 873 l 0 1013 l 139 1013 l 139 851 m 347 851 q 310 737 347 784 q 208 669 273 690 l 208 734 q 267 787 250 741 q 280 873 280 821 l 208 873 l 208 1013 l 347 1013 l 347 851 "},"@":{x_min:0,x_max:1260,ha:1357,o:"m 1098 -45 q 877 -160 1001 -117 q 633 -203 752 -203 q 155 -29 327 -203 q 0 360 0 127 q 176 802 0 616 q 687 1008 372 1008 q 1123 854 969 1008 q 1260 517 1260 718 q 1155 216 1260 341 q 868 82 1044 82 q 772 106 801 82 q 737 202 737 135 q 647 113 700 144 q 527 82 594 82 q 367 147 420 82 q 314 312 314 212 q 401 565 314 452 q 639 690 498 690 q 810 588 760 690 l 849 668 l 938 668 q 877 441 900 532 q 833 226 833 268 q 853 182 833 198 q 902 167 873 167 q 1088 272 1012 167 q 1159 512 1159 372 q 1051 793 1159 681 q 687 925 925 925 q 248 747 415 925 q 97 361 97 586 q 226 26 97 159 q 627 -122 370 -122 q 856 -87 737 -122 q 1061 8 976 -53 l 1098 -45 m 786 488 q 738 580 777 545 q 643 615 700 615 q 483 517 548 615 q 425 322 425 430 q 457 203 425 250 q 552 156 490 156 q 722 273 665 156 q 786 488 738 309 "},Ί:{x_min:0,x_max:499,ha:613,o:"m 277 1040 l 83 799 l 0 799 l 140 1040 l 277 1040 m 499 0 l 360 0 l 360 1012 l 499 1012 l 499 0 "},i:{x_min:14,x_max:136,ha:275,o:"m 136 873 l 14 873 l 14 1013 l 136 1013 l 136 873 m 136 0 l 14 0 l 14 737 l 136 737 l 136 0 "},Β:{x_min:0,x_max:778,ha:877,o:"m 580 545 q 724 468 671 534 q 778 310 778 402 q 673 83 778 170 q 432 0 575 0 l 0 0 l 0 1013 l 411 1013 q 629 957 541 1013 q 732 768 732 891 q 691 632 732 692 q 580 545 650 571 m 393 899 l 139 899 l 139 587 l 379 587 q 521 623 462 587 q 592 744 592 666 q 531 859 592 819 q 393 899 471 899 m 419 124 q 566 169 504 124 q 635 302 635 219 q 559 435 635 388 q 402 476 494 476 l 139 476 l 139 124 l 419 124 "},υ:{x_min:0,x_max:617,ha:725,o:"m 617 352 q 540 94 617 199 q 308 -24 455 -24 q 76 94 161 -24 q 0 352 0 199 l 0 739 l 126 739 l 126 355 q 169 185 126 257 q 312 98 220 98 q 451 185 402 98 q 492 355 492 257 l 492 739 l 617 739 l 617 352 "},"]":{x_min:0,x_max:275,ha:372,o:"m 275 -281 l 0 -281 l 0 -187 l 151 -187 l 151 920 l 0 920 l 0 1013 l 275 1013 l 275 -281 "},m:{x_min:0,x_max:1019,ha:1128,o:"m 1019 0 l 897 0 l 897 454 q 860 591 897 536 q 739 660 816 660 q 613 586 659 660 q 573 436 573 522 l 573 0 l 447 0 l 447 455 q 412 591 447 535 q 294 657 372 657 q 165 586 213 657 q 122 437 122 521 l 122 0 l 0 0 l 0 738 l 117 738 l 117 640 q 202 730 150 697 q 316 763 254 763 q 437 730 381 763 q 525 642 494 697 q 621 731 559 700 q 753 763 682 763 q 943 694 867 763 q 1019 512 1019 625 l 1019 0 "},χ:{x_min:8.328125,x_max:780.5625,ha:815,o:"m 780 -278 q 715 -294 747 -294 q 616 -257 663 -294 q 548 -175 576 -227 l 379 133 l 143 -277 l 9 -277 l 313 254 l 163 522 q 127 586 131 580 q 36 640 91 640 q 8 637 27 640 l 8 752 l 52 757 q 162 719 113 757 q 236 627 200 690 l 383 372 l 594 737 l 726 737 l 448 250 l 625 -69 q 670 -153 647 -110 q 743 -188 695 -188 q 780 -184 759 -188 l 780 -278 "},ί:{x_min:42,x_max:326.71875,ha:361,o:"m 284 3 q 233 -10 258 -5 q 182 -15 207 -15 q 85 26 119 -15 q 42 200 42 79 l 42 737 l 167 737 l 168 215 q 172 141 168 157 q 226 101 183 101 q 248 102 239 101 q 284 112 257 104 l 284 3 m 326 1040 l 137 819 l 54 819 l 189 1040 l 326 1040 "},Ζ:{x_min:0,x_max:779.171875,ha:850,o:"m 779 0 l 0 0 l 0 113 l 620 896 l 40 896 l 40 1013 l 779 1013 l 779 887 l 170 124 l 779 124 l 779 0 "},R:{x_min:0,x_max:781.953125,ha:907,o:"m 781 0 l 623 0 q 587 242 590 52 q 407 433 585 433 l 138 433 l 138 0 l 0 0 l 0 1013 l 396 1013 q 636 946 539 1013 q 749 731 749 868 q 711 597 749 659 q 608 502 674 534 q 718 370 696 474 q 729 207 722 352 q 781 26 736 62 l 781 0 m 373 551 q 533 594 465 551 q 614 731 614 645 q 532 859 614 815 q 373 896 465 896 l 138 896 l 138 551 l 373 551 "},o:{x_min:0,x_max:713,ha:821,o:"m 357 -25 q 94 91 194 -25 q 0 368 0 202 q 93 642 0 533 q 357 761 193 761 q 618 644 518 761 q 713 368 713 533 q 619 91 713 201 q 357 -25 521 -25 m 357 85 q 528 175 465 85 q 584 369 584 255 q 529 562 584 484 q 357 651 467 651 q 189 560 250 651 q 135 369 135 481 q 187 177 135 257 q 357 85 250 85 "},K:{x_min:0,x_max:819.46875,ha:906,o:"m 819 0 l 649 0 l 294 509 l 139 355 l 139 0 l 0 0 l 0 1013 l 139 1013 l 139 526 l 626 1013 l 809 1013 l 395 600 l 819 0 "},",":{x_min:0,x_max:142,ha:239,o:"m 142 -12 q 105 -132 142 -82 q 0 -205 68 -182 l 0 -138 q 57 -82 40 -124 q 70 0 70 -51 l 0 0 l 0 151 l 142 151 l 142 -12 "},d:{x_min:0,x_max:683,ha:796,o:"m 683 0 l 564 0 l 564 93 q 456 6 516 38 q 327 -25 395 -25 q 87 100 181 -25 q 0 365 0 215 q 90 639 0 525 q 343 763 187 763 q 564 647 486 763 l 564 1013 l 683 1013 l 683 0 m 582 373 q 529 562 582 484 q 361 653 468 653 q 190 561 253 653 q 135 365 135 479 q 189 175 135 254 q 358 85 251 85 q 529 178 468 85 q 582 373 582 258 "},"¨":{x_min:-109,x_max:247,ha:232,o:"m 247 1046 l 119 1046 l 119 1189 l 247 1189 l 247 1046 m 19 1046 l -109 1046 l -109 1189 l 19 1189 l 19 1046 "},E:{x_min:0,x_max:736.109375,ha:789,o:"m 736 0 l 0 0 l 0 1013 l 725 1013 l 725 889 l 139 889 l 139 585 l 677 585 l 677 467 l 139 467 l 139 125 l 736 125 l 736 0 "},Y:{x_min:0,x_max:820,ha:886,o:"m 820 1013 l 482 416 l 482 0 l 342 0 l 342 416 l 0 1013 l 140 1013 l 411 534 l 679 1012 l 820 1013 "},'"':{x_min:0,x_max:299,ha:396,o:"m 299 606 l 203 606 l 203 988 l 299 988 l 299 606 m 96 606 l 0 606 l 0 988 l 96 988 l 96 606 "},"‹":{x_min:17.984375,x_max:773.609375,ha:792,o:"m 773 40 l 18 376 l 17 465 l 773 799 l 773 692 l 159 420 l 773 149 l 773 40 "},"„":{x_min:0,x_max:364,ha:467,o:"m 141 -12 q 104 -132 141 -82 q 0 -205 67 -182 l 0 -138 q 56 -82 40 -124 q 69 0 69 -51 l 0 0 l 0 151 l 141 151 l 141 -12 m 364 -12 q 327 -132 364 -82 q 222 -205 290 -182 l 222 -138 q 279 -82 262 -124 q 292 0 292 -51 l 222 0 l 222 151 l 364 151 l 364 -12 "},δ:{x_min:1,x_max:710,ha:810,o:"m 710 360 q 616 87 710 196 q 356 -28 518 -28 q 99 82 197 -28 q 1 356 1 192 q 100 606 1 509 q 355 703 199 703 q 180 829 288 754 q 70 903 124 866 l 70 1012 l 643 1012 l 643 901 l 258 901 q 462 763 422 794 q 636 592 577 677 q 710 360 710 485 m 584 365 q 552 501 584 447 q 451 602 521 555 q 372 611 411 611 q 197 541 258 611 q 136 355 136 472 q 190 171 136 245 q 358 85 252 85 q 528 173 465 85 q 584 365 584 252 "},έ:{x_min:0,x_max:634.71875,ha:714,o:"m 634 234 q 527 38 634 110 q 300 -25 433 -25 q 98 29 183 -25 q 0 204 0 93 q 37 313 0 265 q 128 390 67 352 q 56 459 82 419 q 26 555 26 505 q 114 712 26 654 q 295 763 191 763 q 499 700 416 763 q 589 515 589 631 l 478 515 q 419 618 464 580 q 307 657 374 657 q 207 630 253 657 q 151 547 151 598 q 238 445 151 469 q 389 434 280 434 l 389 331 l 349 331 q 206 315 255 331 q 125 210 125 287 q 183 107 125 145 q 302 76 233 76 q 436 117 379 76 q 509 234 493 159 l 634 234 m 520 1040 l 331 819 l 248 819 l 383 1040 l 520 1040 "},ω:{x_min:0,x_max:922,ha:1031,o:"m 922 339 q 856 97 922 203 q 650 -26 780 -26 q 538 9 587 -26 q 461 103 489 44 q 387 12 436 46 q 277 -22 339 -22 q 69 97 147 -22 q 0 339 0 203 q 45 551 0 444 q 161 738 84 643 l 302 738 q 175 553 219 647 q 124 336 124 446 q 155 179 124 249 q 275 88 197 88 q 375 163 341 88 q 400 294 400 219 l 400 572 l 524 572 l 524 294 q 561 135 524 192 q 643 88 591 88 q 762 182 719 88 q 797 342 797 257 q 745 556 797 450 q 619 738 705 638 l 760 738 q 874 551 835 640 q 922 339 922 444 "},"´":{x_min:0,x_max:96,ha:251,o:"m 96 606 l 0 606 l 0 988 l 96 988 l 96 606 "},"±":{x_min:11,x_max:781,ha:792,o:"m 781 490 l 446 490 l 446 255 l 349 255 l 349 490 l 11 490 l 11 586 l 349 586 l 349 819 l 446 819 l 446 586 l 781 586 l 781 490 m 781 21 l 11 21 l 11 115 l 781 115 l 781 21 "},"|":{x_min:343,x_max:449,ha:792,o:"m 449 462 l 343 462 l 343 986 l 449 986 l 449 462 m 449 -242 l 343 -242 l 343 280 l 449 280 l 449 -242 "},ϋ:{x_min:0,x_max:617,ha:725,o:"m 482 800 l 372 800 l 372 925 l 482 925 l 482 800 m 239 800 l 129 800 l 129 925 l 239 925 l 239 800 m 617 352 q 540 93 617 199 q 308 -24 455 -24 q 76 93 161 -24 q 0 352 0 199 l 0 738 l 126 738 l 126 354 q 169 185 126 257 q 312 98 220 98 q 451 185 402 98 q 492 354 492 257 l 492 738 l 617 738 l 617 352 "},"§":{x_min:0,x_max:593,ha:690,o:"m 593 425 q 554 312 593 369 q 467 233 516 254 q 537 83 537 172 q 459 -74 537 -12 q 288 -133 387 -133 q 115 -69 184 -133 q 47 96 47 -6 l 166 96 q 199 7 166 40 q 288 -26 232 -26 q 371 -5 332 -26 q 420 60 420 21 q 311 201 420 139 q 108 309 210 255 q 0 490 0 383 q 33 602 0 551 q 124 687 66 654 q 75 743 93 712 q 58 812 58 773 q 133 984 58 920 q 300 1043 201 1043 q 458 987 394 1043 q 529 814 529 925 l 411 814 q 370 908 404 877 q 289 939 336 939 q 213 911 246 939 q 180 841 180 883 q 286 720 180 779 q 484 612 480 615 q 593 425 593 534 m 467 409 q 355 544 467 473 q 196 630 228 612 q 146 587 162 609 q 124 525 124 558 q 239 387 124 462 q 398 298 369 315 q 448 345 429 316 q 467 409 467 375 "},b:{x_min:0,x_max:685,ha:783,o:"m 685 372 q 597 99 685 213 q 347 -25 501 -25 q 219 5 277 -25 q 121 93 161 36 l 121 0 l 0 0 l 0 1013 l 121 1013 l 121 634 q 214 723 157 692 q 341 754 272 754 q 591 637 493 754 q 685 372 685 526 m 554 356 q 499 550 554 470 q 328 644 437 644 q 162 556 223 644 q 108 369 108 478 q 160 176 108 256 q 330 83 221 83 q 498 169 435 83 q 554 356 554 245 "},q:{x_min:0,x_max:683,ha:876,o:"m 683 -278 l 564 -278 l 564 97 q 474 8 533 39 q 345 -23 415 -23 q 91 93 188 -23 q 0 364 0 203 q 87 635 0 522 q 337 760 184 760 q 466 727 408 760 q 564 637 523 695 l 564 737 l 683 737 l 683 -278 m 582 375 q 527 564 582 488 q 358 652 466 652 q 190 565 253 652 q 135 377 135 488 q 189 179 135 261 q 361 84 251 84 q 530 179 469 84 q 582 375 582 260 "},Ω:{x_min:-.171875,x_max:969.5625,ha:1068,o:"m 969 0 l 555 0 l 555 123 q 744 308 675 194 q 814 558 814 423 q 726 812 814 709 q 484 922 633 922 q 244 820 334 922 q 154 567 154 719 q 223 316 154 433 q 412 123 292 199 l 412 0 l 0 0 l 0 124 l 217 124 q 68 327 122 210 q 15 572 15 444 q 144 911 15 781 q 484 1041 274 1041 q 822 909 691 1041 q 953 569 953 777 q 899 326 953 443 q 750 124 846 210 l 969 124 l 969 0 "},ύ:{x_min:0,x_max:617,ha:725,o:"m 617 352 q 540 93 617 199 q 308 -24 455 -24 q 76 93 161 -24 q 0 352 0 199 l 0 738 l 126 738 l 126 354 q 169 185 126 257 q 312 98 220 98 q 451 185 402 98 q 492 354 492 257 l 492 738 l 617 738 l 617 352 m 535 1040 l 346 819 l 262 819 l 397 1040 l 535 1040 "},z:{x_min:-.015625,x_max:613.890625,ha:697,o:"m 613 0 l 0 0 l 0 100 l 433 630 l 20 630 l 20 738 l 594 738 l 593 636 l 163 110 l 613 110 l 613 0 "},"™":{x_min:0,x_max:894,ha:1e3,o:"m 389 951 l 229 951 l 229 503 l 160 503 l 160 951 l 0 951 l 0 1011 l 389 1011 l 389 951 m 894 503 l 827 503 l 827 939 l 685 503 l 620 503 l 481 937 l 481 503 l 417 503 l 417 1011 l 517 1011 l 653 580 l 796 1010 l 894 1011 l 894 503 "},ή:{x_min:.78125,x_max:697,ha:810,o:"m 697 -278 l 572 -278 l 572 454 q 540 587 572 536 q 425 650 501 650 q 271 579 337 650 q 206 420 206 509 l 206 0 l 81 0 l 81 489 q 73 588 81 562 q 0 644 56 644 l 0 741 q 68 755 38 755 q 158 721 124 755 q 200 630 193 687 q 297 726 234 692 q 434 761 359 761 q 620 692 544 761 q 697 516 697 624 l 697 -278 m 479 1040 l 290 819 l 207 819 l 341 1040 l 479 1040 "},Θ:{x_min:0,x_max:960,ha:1056,o:"m 960 507 q 833 129 960 280 q 476 -32 698 -32 q 123 129 255 -32 q 0 507 0 280 q 123 883 0 732 q 476 1045 255 1045 q 832 883 696 1045 q 960 507 960 732 m 817 500 q 733 789 817 669 q 476 924 639 924 q 223 792 317 924 q 142 507 142 675 q 222 222 142 339 q 476 89 315 89 q 730 218 636 89 q 817 500 817 334 m 716 449 l 243 449 l 243 571 l 716 571 l 716 449 "},"®":{x_min:-3,x_max:1008,ha:1106,o:"m 503 532 q 614 562 566 532 q 672 658 672 598 q 614 747 672 716 q 503 772 569 772 l 338 772 l 338 532 l 503 532 m 502 -7 q 123 151 263 -7 q -3 501 -3 294 q 123 851 -3 706 q 502 1011 263 1011 q 881 851 739 1011 q 1008 501 1008 708 q 883 151 1008 292 q 502 -7 744 -7 m 502 60 q 830 197 709 60 q 940 501 940 322 q 831 805 940 681 q 502 944 709 944 q 174 805 296 944 q 65 501 65 680 q 173 197 65 320 q 502 60 294 60 m 788 146 l 678 146 q 653 316 655 183 q 527 449 652 449 l 338 449 l 338 146 l 241 146 l 241 854 l 518 854 q 688 808 621 854 q 766 658 766 755 q 739 563 766 607 q 668 497 713 519 q 751 331 747 472 q 788 164 756 190 l 788 146 "},"~":{x_min:0,x_max:833,ha:931,o:"m 833 958 q 778 753 833 831 q 594 665 716 665 q 402 761 502 665 q 240 857 302 857 q 131 795 166 857 q 104 665 104 745 l 0 665 q 54 867 0 789 q 237 958 116 958 q 429 861 331 958 q 594 765 527 765 q 704 827 670 765 q 729 958 729 874 l 833 958 "},Ε:{x_min:0,x_max:736.21875,ha:778,o:"m 736 0 l 0 0 l 0 1013 l 725 1013 l 725 889 l 139 889 l 139 585 l 677 585 l 677 467 l 139 467 l 139 125 l 736 125 l 736 0 "},"³":{x_min:0,x_max:450,ha:547,o:"m 450 552 q 379 413 450 464 q 220 366 313 366 q 69 414 130 366 q 0 567 0 470 l 85 567 q 126 470 85 504 q 225 437 168 437 q 320 467 280 437 q 360 552 360 498 q 318 632 360 608 q 213 657 276 657 q 195 657 203 657 q 176 657 181 657 l 176 722 q 279 733 249 722 q 334 815 334 752 q 300 881 334 856 q 220 907 267 907 q 133 875 169 907 q 97 781 97 844 l 15 781 q 78 926 15 875 q 220 972 135 972 q 364 930 303 972 q 426 817 426 888 q 344 697 426 733 q 421 642 392 681 q 450 552 450 603 "},"[":{x_min:0,x_max:273.609375,ha:371,o:"m 273 -281 l 0 -281 l 0 1013 l 273 1013 l 273 920 l 124 920 l 124 -187 l 273 -187 l 273 -281 "},L:{x_min:0,x_max:645.828125,ha:696,o:"m 645 0 l 0 0 l 0 1013 l 140 1013 l 140 126 l 645 126 l 645 0 "},σ:{x_min:0,x_max:803.390625,ha:894,o:"m 803 628 l 633 628 q 713 368 713 512 q 618 93 713 204 q 357 -25 518 -25 q 94 91 194 -25 q 0 368 0 201 q 94 644 0 533 q 356 761 194 761 q 481 750 398 761 q 608 739 564 739 l 803 739 l 803 628 m 360 85 q 529 180 467 85 q 584 374 584 262 q 527 566 584 490 q 352 651 463 651 q 187 559 247 651 q 135 368 135 478 q 189 175 135 254 q 360 85 251 85 "},ζ:{x_min:0,x_max:573,ha:642,o:"m 573 -40 q 553 -162 573 -97 q 510 -278 543 -193 l 400 -278 q 441 -187 428 -219 q 462 -90 462 -132 q 378 -14 462 -14 q 108 45 197 -14 q 0 290 0 117 q 108 631 0 462 q 353 901 194 767 l 55 901 l 55 1012 l 561 1012 l 561 924 q 261 669 382 831 q 128 301 128 489 q 243 117 128 149 q 458 98 350 108 q 573 -40 573 80 "},θ:{x_min:0,x_max:674,ha:778,o:"m 674 496 q 601 160 674 304 q 336 -26 508 -26 q 73 153 165 -26 q 0 485 0 296 q 72 840 0 683 q 343 1045 166 1045 q 605 844 516 1045 q 674 496 674 692 m 546 579 q 498 798 546 691 q 336 935 437 935 q 178 798 237 935 q 126 579 137 701 l 546 579 m 546 475 l 126 475 q 170 233 126 348 q 338 80 230 80 q 504 233 447 80 q 546 475 546 346 "},Ο:{x_min:0,x_max:958,ha:1054,o:"m 485 1042 q 834 883 703 1042 q 958 511 958 735 q 834 136 958 287 q 481 -26 701 -26 q 126 130 261 -26 q 0 504 0 279 q 127 880 0 729 q 485 1042 263 1042 m 480 98 q 731 225 638 98 q 815 504 815 340 q 733 783 815 670 q 480 913 640 913 q 226 785 321 913 q 142 504 142 671 q 226 224 142 339 q 480 98 319 98 "},Γ:{x_min:0,x_max:705.28125,ha:749,o:"m 705 886 l 140 886 l 140 0 l 0 0 l 0 1012 l 705 1012 l 705 886 "}," ":{x_min:0,x_max:0,ha:375},"%":{x_min:-3,x_max:1089,ha:1186,o:"m 845 0 q 663 76 731 0 q 602 244 602 145 q 661 412 602 344 q 845 489 728 489 q 1027 412 959 489 q 1089 244 1089 343 q 1029 76 1089 144 q 845 0 962 0 m 844 103 q 945 143 909 103 q 981 243 981 184 q 947 340 981 301 q 844 385 909 385 q 744 342 781 385 q 708 243 708 300 q 741 147 708 186 q 844 103 780 103 m 888 986 l 284 -25 l 199 -25 l 803 986 l 888 986 m 241 468 q 58 545 126 468 q -3 715 -3 615 q 56 881 -3 813 q 238 958 124 958 q 421 881 353 958 q 483 712 483 813 q 423 544 483 612 q 241 468 356 468 m 241 855 q 137 811 175 855 q 100 710 100 768 q 136 612 100 653 q 240 572 172 572 q 344 614 306 572 q 382 713 382 656 q 347 810 382 771 q 241 855 308 855 "},P:{x_min:0,x_max:726,ha:806,o:"m 424 1013 q 640 931 555 1013 q 726 719 726 850 q 637 506 726 587 q 413 426 548 426 l 140 426 l 140 0 l 0 0 l 0 1013 l 424 1013 m 379 889 l 140 889 l 140 548 l 372 548 q 522 589 459 548 q 593 720 593 637 q 528 845 593 801 q 379 889 463 889 "},Έ:{x_min:0,x_max:1078.21875,ha:1118,o:"m 1078 0 l 342 0 l 342 1013 l 1067 1013 l 1067 889 l 481 889 l 481 585 l 1019 585 l 1019 467 l 481 467 l 481 125 l 1078 125 l 1078 0 m 277 1040 l 83 799 l 0 799 l 140 1040 l 277 1040 "},Ώ:{x_min:.125,x_max:1136.546875,ha:1235,o:"m 1136 0 l 722 0 l 722 123 q 911 309 842 194 q 981 558 981 423 q 893 813 981 710 q 651 923 800 923 q 411 821 501 923 q 321 568 321 720 q 390 316 321 433 q 579 123 459 200 l 579 0 l 166 0 l 166 124 l 384 124 q 235 327 289 210 q 182 572 182 444 q 311 912 182 782 q 651 1042 441 1042 q 989 910 858 1042 q 1120 569 1120 778 q 1066 326 1120 443 q 917 124 1013 210 l 1136 124 l 1136 0 m 277 1040 l 83 800 l 0 800 l 140 1041 l 277 1040 "},_:{x_min:0,x_max:705.5625,ha:803,o:"m 705 -334 l 0 -334 l 0 -234 l 705 -234 l 705 -334 "},Ϊ:{x_min:-110,x_max:246,ha:275,o:"m 246 1046 l 118 1046 l 118 1189 l 246 1189 l 246 1046 m 18 1046 l -110 1046 l -110 1189 l 18 1189 l 18 1046 m 136 0 l 0 0 l 0 1012 l 136 1012 l 136 0 "},"+":{x_min:23,x_max:768,ha:792,o:"m 768 372 l 444 372 l 444 0 l 347 0 l 347 372 l 23 372 l 23 468 l 347 468 l 347 840 l 444 840 l 444 468 l 768 468 l 768 372 "},"½":{x_min:0,x_max:1050,ha:1149,o:"m 1050 0 l 625 0 q 712 178 625 108 q 878 277 722 187 q 967 385 967 328 q 932 456 967 429 q 850 484 897 484 q 759 450 798 484 q 721 352 721 416 l 640 352 q 706 502 640 448 q 851 551 766 551 q 987 509 931 551 q 1050 385 1050 462 q 976 251 1050 301 q 829 179 902 215 q 717 68 740 133 l 1050 68 l 1050 0 m 834 985 l 215 -28 l 130 -28 l 750 984 l 834 985 m 224 422 l 142 422 l 142 811 l 0 811 l 0 867 q 104 889 62 867 q 164 973 157 916 l 224 973 l 224 422 "},Ρ:{x_min:0,x_max:720,ha:783,o:"m 424 1013 q 637 933 554 1013 q 720 723 720 853 q 633 508 720 591 q 413 426 546 426 l 140 426 l 140 0 l 0 0 l 0 1013 l 424 1013 m 378 889 l 140 889 l 140 548 l 371 548 q 521 589 458 548 q 592 720 592 637 q 527 845 592 801 q 378 889 463 889 "},"'":{x_min:0,x_max:139,ha:236,o:"m 139 851 q 102 737 139 784 q 0 669 65 690 l 0 734 q 59 787 42 741 q 72 873 72 821 l 0 873 l 0 1013 l 139 1013 l 139 851 "},ª:{x_min:0,x_max:350,ha:397,o:"m 350 625 q 307 616 328 616 q 266 631 281 616 q 247 673 251 645 q 190 628 225 644 q 116 613 156 613 q 32 641 64 613 q 0 722 0 669 q 72 826 0 800 q 247 866 159 846 l 247 887 q 220 934 247 916 q 162 953 194 953 q 104 934 129 953 q 76 882 80 915 l 16 882 q 60 976 16 941 q 166 1011 104 1011 q 266 979 224 1011 q 308 891 308 948 l 308 706 q 311 679 308 688 q 331 670 315 670 l 350 672 l 350 625 m 247 757 l 247 811 q 136 790 175 798 q 64 726 64 773 q 83 682 64 697 q 132 667 103 667 q 207 690 174 667 q 247 757 247 718 "},"΅":{x_min:0,x_max:450,ha:553,o:"m 450 800 l 340 800 l 340 925 l 450 925 l 450 800 m 406 1040 l 212 800 l 129 800 l 269 1040 l 406 1040 m 110 800 l 0 800 l 0 925 l 110 925 l 110 800 "},T:{x_min:0,x_max:777,ha:835,o:"m 777 894 l 458 894 l 458 0 l 319 0 l 319 894 l 0 894 l 0 1013 l 777 1013 l 777 894 "},Φ:{x_min:0,x_max:915,ha:997,o:"m 527 0 l 389 0 l 389 122 q 110 231 220 122 q 0 509 0 340 q 110 785 0 677 q 389 893 220 893 l 389 1013 l 527 1013 l 527 893 q 804 786 693 893 q 915 509 915 679 q 805 231 915 341 q 527 122 696 122 l 527 0 m 527 226 q 712 310 641 226 q 779 507 779 389 q 712 705 779 627 q 527 787 641 787 l 527 226 m 389 226 l 389 787 q 205 698 275 775 q 136 505 136 620 q 206 308 136 391 q 389 226 276 226 "},"⁋":{x_min:0,x_max:0,ha:694},j:{x_min:-77.78125,x_max:167,ha:349,o:"m 167 871 l 42 871 l 42 1013 l 167 1013 l 167 871 m 167 -80 q 121 -231 167 -184 q -26 -278 76 -278 l -77 -278 l -77 -164 l -41 -164 q 26 -143 11 -164 q 42 -65 42 -122 l 42 737 l 167 737 l 167 -80 "},Σ:{x_min:0,x_max:756.953125,ha:819,o:"m 756 0 l 0 0 l 0 107 l 395 523 l 22 904 l 22 1013 l 745 1013 l 745 889 l 209 889 l 566 523 l 187 125 l 756 125 l 756 0 "},"›":{x_min:18.0625,x_max:774,ha:792,o:"m 774 376 l 18 40 l 18 149 l 631 421 l 18 692 l 18 799 l 774 465 l 774 376 "},"<":{x_min:17.984375,x_max:773.609375,ha:792,o:"m 773 40 l 18 376 l 17 465 l 773 799 l 773 692 l 159 420 l 773 149 l 773 40 "},"£":{x_min:0,x_max:704.484375,ha:801,o:"m 704 41 q 623 -10 664 5 q 543 -26 583 -26 q 359 15 501 -26 q 243 36 288 36 q 158 23 197 36 q 73 -21 119 10 l 6 76 q 125 195 90 150 q 175 331 175 262 q 147 443 175 383 l 0 443 l 0 512 l 108 512 q 43 734 43 623 q 120 929 43 854 q 358 1010 204 1010 q 579 936 487 1010 q 678 729 678 857 l 678 684 l 552 684 q 504 838 552 780 q 362 896 457 896 q 216 852 263 896 q 176 747 176 815 q 199 627 176 697 q 248 512 217 574 l 468 512 l 468 443 l 279 443 q 297 356 297 398 q 230 194 297 279 q 153 107 211 170 q 227 133 190 125 q 293 142 264 142 q 410 119 339 142 q 516 96 482 96 q 579 105 550 96 q 648 142 608 115 l 704 41 "},t:{x_min:0,x_max:367,ha:458,o:"m 367 0 q 312 -5 339 -2 q 262 -8 284 -8 q 145 28 183 -8 q 108 143 108 64 l 108 638 l 0 638 l 0 738 l 108 738 l 108 944 l 232 944 l 232 738 l 367 738 l 367 638 l 232 638 l 232 185 q 248 121 232 140 q 307 102 264 102 q 345 104 330 102 q 367 107 360 107 l 367 0 "},"¬":{x_min:0,x_max:706,ha:803,o:"m 706 411 l 706 158 l 630 158 l 630 335 l 0 335 l 0 411 l 706 411 "},λ:{x_min:0,x_max:750,ha:803,o:"m 750 -7 q 679 -15 716 -15 q 538 59 591 -15 q 466 214 512 97 l 336 551 l 126 0 l 0 0 l 270 705 q 223 837 247 770 q 116 899 190 899 q 90 898 100 899 l 90 1004 q 152 1011 125 1011 q 298 938 244 1011 q 373 783 326 901 l 605 192 q 649 115 629 136 q 716 95 669 95 l 736 95 q 750 97 745 97 l 750 -7 "},W:{x_min:0,x_max:1263.890625,ha:1351,o:"m 1263 1013 l 995 0 l 859 0 l 627 837 l 405 0 l 265 0 l 0 1013 l 136 1013 l 342 202 l 556 1013 l 701 1013 l 921 207 l 1133 1012 l 1263 1013 "},">":{x_min:18.0625,x_max:774,ha:792,o:"m 774 376 l 18 40 l 18 149 l 631 421 l 18 692 l 18 799 l 774 465 l 774 376 "},v:{x_min:0,x_max:675.15625,ha:761,o:"m 675 738 l 404 0 l 272 0 l 0 738 l 133 737 l 340 147 l 541 737 l 675 738 "},τ:{x_min:.28125,x_max:644.5,ha:703,o:"m 644 628 l 382 628 l 382 179 q 388 120 382 137 q 436 91 401 91 q 474 94 447 91 q 504 97 501 97 l 504 0 q 454 -9 482 -5 q 401 -14 426 -14 q 278 67 308 -14 q 260 233 260 118 l 260 628 l 0 628 l 0 739 l 644 739 l 644 628 "},ξ:{x_min:0,x_max:624.9375,ha:699,o:"m 624 -37 q 608 -153 624 -96 q 563 -278 593 -211 l 454 -278 q 491 -183 486 -200 q 511 -83 511 -126 q 484 -23 511 -44 q 370 1 452 1 q 323 0 354 1 q 283 -1 293 -1 q 84 76 169 -1 q 0 266 0 154 q 56 431 0 358 q 197 538 108 498 q 94 613 134 562 q 54 730 54 665 q 77 823 54 780 q 143 901 101 867 l 27 901 l 27 1012 l 576 1012 l 576 901 l 380 901 q 244 863 303 901 q 178 745 178 820 q 312 600 178 636 q 532 582 380 582 l 532 479 q 276 455 361 479 q 118 281 118 410 q 165 173 118 217 q 274 120 208 133 q 494 101 384 110 q 624 -37 624 76 "},"&":{x_min:-3,x_max:894.25,ha:992,o:"m 894 0 l 725 0 l 624 123 q 471 0 553 40 q 306 -41 390 -41 q 168 -7 231 -41 q 62 92 105 26 q 14 187 31 139 q -3 276 -3 235 q 55 433 -3 358 q 248 581 114 508 q 170 689 196 640 q 137 817 137 751 q 214 985 137 922 q 384 1041 284 1041 q 548 988 483 1041 q 622 824 622 928 q 563 666 622 739 q 431 556 516 608 l 621 326 q 649 407 639 361 q 663 493 653 426 l 781 493 q 703 229 781 352 l 894 0 m 504 818 q 468 908 504 877 q 384 940 433 940 q 293 907 331 940 q 255 818 255 875 q 289 714 255 767 q 363 628 313 678 q 477 729 446 682 q 504 818 504 771 m 556 209 l 314 499 q 179 395 223 449 q 135 283 135 341 q 146 222 135 253 q 183 158 158 192 q 333 80 241 80 q 556 209 448 80 "},Λ:{x_min:0,x_max:862.5,ha:942,o:"m 862 0 l 719 0 l 426 847 l 143 0 l 0 0 l 356 1013 l 501 1013 l 862 0 "},I:{x_min:41,x_max:180,ha:293,o:"m 180 0 l 41 0 l 41 1013 l 180 1013 l 180 0 "},G:{x_min:0,x_max:921,ha:1011,o:"m 921 0 l 832 0 l 801 136 q 655 15 741 58 q 470 -28 568 -28 q 126 133 259 -28 q 0 499 0 284 q 125 881 0 731 q 486 1043 259 1043 q 763 957 647 1043 q 905 709 890 864 l 772 709 q 668 866 747 807 q 486 926 589 926 q 228 795 322 926 q 142 507 142 677 q 228 224 142 342 q 483 94 323 94 q 712 195 625 94 q 796 435 796 291 l 477 435 l 477 549 l 921 549 l 921 0 "},ΰ:{x_min:0,x_max:617,ha:725,o:"m 524 800 l 414 800 l 414 925 l 524 925 l 524 800 m 183 800 l 73 800 l 73 925 l 183 925 l 183 800 m 617 352 q 540 93 617 199 q 308 -24 455 -24 q 76 93 161 -24 q 0 352 0 199 l 0 738 l 126 738 l 126 354 q 169 185 126 257 q 312 98 220 98 q 451 185 402 98 q 492 354 492 257 l 492 738 l 617 738 l 617 352 m 489 1040 l 300 819 l 216 819 l 351 1040 l 489 1040 "},"`":{x_min:0,x_max:138.890625,ha:236,o:"m 138 699 l 0 699 l 0 861 q 36 974 0 929 q 138 1041 72 1020 l 138 977 q 82 931 95 969 q 69 839 69 893 l 138 839 l 138 699 "},"·":{x_min:0,x_max:142,ha:239,o:"m 142 585 l 0 585 l 0 738 l 142 738 l 142 585 "},Υ:{x_min:.328125,x_max:819.515625,ha:889,o:"m 819 1013 l 482 416 l 482 0 l 342 0 l 342 416 l 0 1013 l 140 1013 l 411 533 l 679 1013 l 819 1013 "},r:{x_min:0,x_max:355.5625,ha:432,o:"m 355 621 l 343 621 q 179 569 236 621 q 122 411 122 518 l 122 0 l 0 0 l 0 737 l 117 737 l 117 604 q 204 719 146 686 q 355 753 262 753 l 355 621 "},x:{x_min:0,x_max:675,ha:764,o:"m 675 0 l 525 0 l 331 286 l 144 0 l 0 0 l 256 379 l 12 738 l 157 737 l 336 473 l 516 738 l 661 738 l 412 380 l 675 0 "},μ:{x_min:0,x_max:696.609375,ha:747,o:"m 696 -4 q 628 -14 657 -14 q 498 97 513 -14 q 422 8 470 41 q 313 -24 374 -24 q 207 3 258 -24 q 120 80 157 31 l 120 -278 l 0 -278 l 0 738 l 124 738 l 124 343 q 165 172 124 246 q 308 82 216 82 q 451 177 402 82 q 492 358 492 254 l 492 738 l 616 738 l 616 214 q 623 136 616 160 q 673 92 636 92 q 696 95 684 92 l 696 -4 "},h:{x_min:0,x_max:615,ha:724,o:"m 615 472 l 615 0 l 490 0 l 490 454 q 456 590 490 535 q 338 654 416 654 q 186 588 251 654 q 122 436 122 522 l 122 0 l 0 0 l 0 1013 l 122 1013 l 122 633 q 218 727 149 694 q 362 760 287 760 q 552 676 484 760 q 615 472 615 600 "},".":{x_min:0,x_max:142,ha:239,o:"m 142 0 l 0 0 l 0 151 l 142 151 l 142 0 "},φ:{x_min:-2,x_max:878,ha:974,o:"m 496 -279 l 378 -279 l 378 -17 q 101 88 204 -17 q -2 367 -2 194 q 68 626 -2 510 q 283 758 151 758 l 283 646 q 167 537 209 626 q 133 373 133 462 q 192 177 133 254 q 378 93 259 93 l 378 758 q 445 764 426 763 q 476 765 464 765 q 765 659 653 765 q 878 377 878 553 q 771 96 878 209 q 496 -17 665 -17 l 496 -279 m 496 93 l 514 93 q 687 183 623 93 q 746 380 746 265 q 691 569 746 491 q 522 658 629 658 l 496 656 l 496 93 "},";":{x_min:0,x_max:142,ha:239,o:"m 142 585 l 0 585 l 0 738 l 142 738 l 142 585 m 142 -12 q 105 -132 142 -82 q 0 -206 68 -182 l 0 -138 q 58 -82 43 -123 q 68 0 68 -56 l 0 0 l 0 151 l 142 151 l 142 -12 "},f:{x_min:0,x_max:378,ha:472,o:"m 378 638 l 246 638 l 246 0 l 121 0 l 121 638 l 0 638 l 0 738 l 121 738 q 137 935 121 887 q 290 1028 171 1028 q 320 1027 305 1028 q 378 1021 334 1026 l 378 908 q 323 918 346 918 q 257 870 273 918 q 246 780 246 840 l 246 738 l 378 738 l 378 638 "},"“":{x_min:1,x_max:348.21875,ha:454,o:"m 140 670 l 1 670 l 1 830 q 37 943 1 897 q 140 1011 74 990 l 140 947 q 82 900 97 940 q 68 810 68 861 l 140 810 l 140 670 m 348 670 l 209 670 l 209 830 q 245 943 209 897 q 348 1011 282 990 l 348 947 q 290 900 305 940 q 276 810 276 861 l 348 810 l 348 670 "},A:{x_min:.03125,x_max:906.953125,ha:1008,o:"m 906 0 l 756 0 l 648 303 l 251 303 l 142 0 l 0 0 l 376 1013 l 529 1013 l 906 0 m 610 421 l 452 867 l 293 421 l 610 421 "},"‘":{x_min:1,x_max:139.890625,ha:236,o:"m 139 670 l 1 670 l 1 830 q 37 943 1 897 q 139 1011 74 990 l 139 947 q 82 900 97 940 q 68 810 68 861 l 139 810 l 139 670 "},ϊ:{x_min:-70,x_max:283,ha:361,o:"m 283 800 l 173 800 l 173 925 l 283 925 l 283 800 m 40 800 l -70 800 l -70 925 l 40 925 l 40 800 m 283 3 q 232 -10 257 -5 q 181 -15 206 -15 q 84 26 118 -15 q 41 200 41 79 l 41 737 l 166 737 l 167 215 q 171 141 167 157 q 225 101 182 101 q 247 103 238 101 q 283 112 256 104 l 283 3 "},π:{x_min:-.21875,x_max:773.21875,ha:857,o:"m 773 -7 l 707 -11 q 575 40 607 -11 q 552 174 552 77 l 552 226 l 552 626 l 222 626 l 222 0 l 97 0 l 97 626 l 0 626 l 0 737 l 773 737 l 773 626 l 676 626 l 676 171 q 695 103 676 117 q 773 90 714 90 l 773 -7 "},ά:{x_min:0,x_max:765.5625,ha:809,o:"m 765 -4 q 698 -14 726 -14 q 564 97 586 -14 q 466 7 525 40 q 337 -26 407 -26 q 88 98 186 -26 q 0 369 0 212 q 88 637 0 525 q 337 760 184 760 q 465 727 407 760 q 563 637 524 695 l 563 738 l 685 738 l 685 222 q 693 141 685 168 q 748 94 708 94 q 765 95 760 94 l 765 -4 m 584 371 q 531 562 584 485 q 360 653 470 653 q 192 566 254 653 q 135 379 135 489 q 186 181 135 261 q 358 84 247 84 q 528 176 465 84 q 584 371 584 260 m 604 1040 l 415 819 l 332 819 l 466 1040 l 604 1040 "},O:{x_min:0,x_max:958,ha:1057,o:"m 485 1041 q 834 882 702 1041 q 958 512 958 734 q 834 136 958 287 q 481 -26 702 -26 q 126 130 261 -26 q 0 504 0 279 q 127 880 0 728 q 485 1041 263 1041 m 480 98 q 731 225 638 98 q 815 504 815 340 q 733 783 815 669 q 480 912 640 912 q 226 784 321 912 q 142 504 142 670 q 226 224 142 339 q 480 98 319 98 "},n:{x_min:0,x_max:615,ha:724,o:"m 615 463 l 615 0 l 490 0 l 490 454 q 453 592 490 537 q 331 656 410 656 q 178 585 240 656 q 117 421 117 514 l 117 0 l 0 0 l 0 738 l 117 738 l 117 630 q 218 728 150 693 q 359 764 286 764 q 552 675 484 764 q 615 463 615 593 "},l:{x_min:41,x_max:166,ha:279,o:"m 166 0 l 41 0 l 41 1013 l 166 1013 l 166 0 "},"¤":{x_min:40.09375,x_max:728.796875,ha:825,o:"m 728 304 l 649 224 l 512 363 q 383 331 458 331 q 256 363 310 331 l 119 224 l 40 304 l 177 441 q 150 553 150 493 q 184 673 150 621 l 40 818 l 119 898 l 267 749 q 321 766 291 759 q 384 773 351 773 q 447 766 417 773 q 501 749 477 759 l 649 898 l 728 818 l 585 675 q 612 618 604 648 q 621 553 621 587 q 591 441 621 491 l 728 304 m 384 682 q 280 643 318 682 q 243 551 243 604 q 279 461 243 499 q 383 423 316 423 q 487 461 449 423 q 525 553 525 500 q 490 641 525 605 q 384 682 451 682 "},κ:{x_min:0,x_max:632.328125,ha:679,o:"m 632 0 l 482 0 l 225 384 l 124 288 l 124 0 l 0 0 l 0 738 l 124 738 l 124 446 l 433 738 l 596 738 l 312 466 l 632 0 "},p:{x_min:0,x_max:685,ha:786,o:"m 685 364 q 598 96 685 205 q 350 -23 504 -23 q 121 89 205 -23 l 121 -278 l 0 -278 l 0 738 l 121 738 l 121 633 q 220 726 159 691 q 351 761 280 761 q 598 636 504 761 q 685 364 685 522 m 557 371 q 501 560 557 481 q 330 651 437 651 q 162 559 223 651 q 108 366 108 479 q 162 177 108 254 q 333 87 224 87 q 502 178 441 87 q 557 371 557 258 "},"‡":{x_min:0,x_max:777,ha:835,o:"m 458 238 l 458 0 l 319 0 l 319 238 l 0 238 l 0 360 l 319 360 l 319 681 l 0 683 l 0 804 l 319 804 l 319 1015 l 458 1013 l 458 804 l 777 804 l 777 683 l 458 683 l 458 360 l 777 360 l 777 238 l 458 238 "},ψ:{x_min:0,x_max:808,ha:907,o:"m 465 -278 l 341 -278 l 341 -15 q 87 102 180 -15 q 0 378 0 210 l 0 739 l 133 739 l 133 379 q 182 195 133 275 q 341 98 242 98 l 341 922 l 465 922 l 465 98 q 623 195 563 98 q 675 382 675 278 l 675 742 l 808 742 l 808 381 q 720 104 808 213 q 466 -13 627 -13 l 465 -278 "},η:{x_min:.78125,x_max:697,ha:810,o:"m 697 -278 l 572 -278 l 572 454 q 540 587 572 536 q 425 650 501 650 q 271 579 337 650 q 206 420 206 509 l 206 0 l 81 0 l 81 489 q 73 588 81 562 q 0 644 56 644 l 0 741 q 68 755 38 755 q 158 720 124 755 q 200 630 193 686 q 297 726 234 692 q 434 761 359 761 q 620 692 544 761 q 697 516 697 624 l 697 -278 "}},due="normal",pue=1189,mue=-100,gue="normal",vue={yMin:-334,xMin:-111,yMax:1189,xMax:1672},_ue=1e3,yue={postscript_name:"Helvetiker-Regular",version_string:"Version 1.00 2004 initial release",vendor_url:"http://www.magenta.gr/",full_font_name:"Helvetiker",font_family_name:"Helvetiker",copyright:"Copyright (c) Μagenta ltd, 2004",description:"",trademark:"",designer:"",designer_url:"",unique_font_identifier:"Μagenta ltd:Helvetiker:22-10-104",license_url:"http://www.ellak.gr/fonts/MgOpen/license.html",license_description:`Copyright (c) 2004 by MAGENTA Ltd. All Rights Reserved.\r -\r -Permission is hereby granted, free of charge, to any person obtaining a copy of the fonts accompanying this license ("Fonts") and associated documentation files (the "Font Software"), to reproduce and distribute the Font Software, including without limitation the rights to use, copy, merge, publish, distribute, and/or sell copies of the Font Software, and to permit persons to whom the Font Software is furnished to do so, subject to the following conditions: \r -\r -The above copyright and this permission notice shall be included in all copies of one or more of the Font Software typefaces.\r -\r -The Font Software may be modified, altered, or added to, and in particular the designs of glyphs or characters in the Fonts may be modified and additional glyphs or characters may be added to the Fonts, only if the fonts are renamed to names not containing the word "MgOpen", or if the modifications are accepted for inclusion in the Font Software itself by the each appointed Administrator.\r -\r -This License becomes null and void to the extent applicable to Fonts or Font Software that has been modified and is distributed under the "MgOpen" name.\r -\r -The Font Software may be sold as part of a larger software package but no copy of one or more of the Font Software typefaces may be sold by itself. \r -\r -THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL MAGENTA OR PERSONS OR BODIES IN CHARGE OF ADMINISTRATION AND MAINTENANCE OF THE FONT SOFTWARE BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE FONT SOFTWARE.`,manufacturer_name:"Μagenta ltd",font_sub_family_name:"Regular"},xue=-334,bue="Helvetiker",Sue=1522,Tue=50,wue={glyphs:Aue,cssFontWeight:due,ascender:pue,underlinePosition:mue,cssFontStyle:gue,boundingBox:vue,resolution:_ue,original_font_information:yue,descender:xue,familyName:bue,lineHeight:Sue,underlineThickness:Tue},xl=Hi(Hi({},window.THREE?window.THREE:{BoxGeometry:$h,CircleGeometry:by,DoubleSide:as,Group:ja,Mesh:zi,MeshLambertMaterial:Vc,TextGeometry:zN,Vector3:ce}),{},{Font:Sle,TextGeometry:zN}),MO=xs({props:{labelsData:{default:[]},labelLat:{default:"lat"},labelLng:{default:"lng"},labelAltitude:{default:.002},labelText:{default:"text"},labelSize:{default:.5},labelTypeFace:{default:wue,onChange:function(e,t){t.font=new xl.Font(e)}},labelColor:{default:function(){return"lightgrey"}},labelRotation:{default:0},labelResolution:{default:3},labelIncludeDot:{default:!0},labelDotRadius:{default:.1},labelDotOrientation:{default:function(){return"bottom"}},labelsTransitionDuration:{default:1e3,triggerUpdate:!1}},init:function(e,t,n){var r=n.tweenGroup;nr(e),t.scene=e,t.tweenGroup=r;var s=new xl.CircleGeometry(1,32);t.dataMapper=new ao(e,{objBindAttr:"__threeObjLabel"}).onCreateObj(function(){var a=new xl.MeshLambertMaterial;a.side=as;var l=new xl.Group;l.add(new xl.Mesh(s,a));var u=new xl.Mesh(void 0,a);l.add(u);var h=new xl.Mesh;return h.visible=!1,u.add(h),l.__globeObjType="label",l})},update:function(e){var t=Mt(e.labelLat),n=Mt(e.labelLng),r=Mt(e.labelAltitude),s=Mt(e.labelText),a=Mt(e.labelSize),l=Mt(e.labelRotation),u=Mt(e.labelColor),h=Mt(e.labelIncludeDot),g=Mt(e.labelDotRadius),v=Mt(e.labelDotOrientation),x=new Set(["right","top","bottom"]),S=2*Math.PI*cr/360;e.dataMapper.onUpdateObj(function(w,R){var C=gr(w.children,2),E=C[0],B=C[1],L=gr(B.children,1),O=L[0],z=u(R),G=Rl(z);B.material.color.set(wu(z)),B.material.transparent=G<1,B.material.opacity=G;var k=h(R),H=v(R);!k||!x.has(H)&&(H="bottom");var F=k?+g(R)*S:1e-12;E.scale.x=E.scale.y=F;var V=+a(R)*S;if(B.geometry&&B.geometry.dispose(),B.geometry=new xl.TextGeometry(s(R),{font:e.font,size:V,depth:0,bevelEnabled:!0,bevelThickness:0,bevelSize:0,curveSegments:e.labelResolution}),O.geometry&&O.geometry.dispose(),B.geometry.computeBoundingBox(),O.geometry=VE(xl.BoxGeometry,Qi(new xl.Vector3().subVectors(B.geometry.boundingBox.max,B.geometry.boundingBox.min).clampScalar(0,1/0).toArray())),H!=="right"&&B.geometry.center(),k){var Y=F+V/2;H==="right"&&(B.position.x=Y),B.position.y={right:-V/2,top:Y+V/2,bottom:-Y-V/2}[H]}var ee=function(Q){var le=w.__currentTargetD=Q,de=le.lat,Te=le.lng,Se=le.alt,ue=le.rot,be=le.scale;Object.assign(w.position,el(de,Te,Se)),w.lookAt(e.scene.localToWorld(new xl.Vector3(0,0,0))),w.rotateY(Math.PI),w.rotateZ(-ue*Math.PI/180),w.scale.x=w.scale.y=w.scale.z=be},ne={lat:+t(R),lng:+n(R),alt:+r(R),rot:+l(R),scale:1},se=w.__currentTargetD||Object.assign({},ne,{scale:1e-12});Object.keys(ne).some(function(te){return se[te]!==ne[te]})&&(!e.labelsTransitionDuration||e.labelsTransitionDuration<0?ee(ne):e.tweenGroup.add(new ca(se).to(ne,e.labelsTransitionDuration).easing(os.Quadratic.InOut).onUpdate(ee).start()))}).digest(e.labelsData)}}),Mue=Hi(Hi({},window.THREE?window.THREE:{}),{},{CSS2DObject:Uj}),EO=xs({props:{htmlElementsData:{default:[]},htmlLat:{default:"lat"},htmlLng:{default:"lng"},htmlAltitude:{default:0},htmlElement:{},htmlElementVisibilityModifier:{triggerUpdate:!1},htmlTransitionDuration:{default:1e3,triggerUpdate:!1},isBehindGlobe:{onChange:function(){this.updateObjVisibility()},triggerUpdate:!1}},methods:{updateObjVisibility:function(e,t){if(e.dataMapper){var n=t?[t]:e.dataMapper.entries().map(function(r){var s=gr(r,2),a=s[1];return a}).filter(function(r){return r});n.forEach(function(r){var s=!e.isBehindGlobe||!e.isBehindGlobe(r.position);e.htmlElementVisibilityModifier?(r.visible=!0,e.htmlElementVisibilityModifier(r.element,s)):r.visible=s})}}},init:function(e,t,n){var r=n.tweenGroup;nr(e),t.scene=e,t.tweenGroup=r,t.dataMapper=new ao(e,{objBindAttr:"__threeObjHtml"}).onCreateObj(function(s){var a=Mt(t.htmlElement)(s),l=new Mue.CSS2DObject(a);return l.__globeObjType="html",l})},update:function(e,t){var n=this,r=Mt(e.htmlLat),s=Mt(e.htmlLng),a=Mt(e.htmlAltitude);t.hasOwnProperty("htmlElement")&&e.dataMapper.clear(),e.dataMapper.onUpdateObj(function(l,u){var h=function(x){var S=l.__currentTargetD=x,w=S.alt,R=S.lat,C=S.lng;Object.assign(l.position,el(R,C,w)),n.updateObjVisibility(l)},g={lat:+r(u),lng:+s(u),alt:+a(u)};!e.htmlTransitionDuration||e.htmlTransitionDuration<0||!l.__currentTargetD?h(g):e.tweenGroup.add(new ca(l.__currentTargetD).to(g,e.htmlTransitionDuration).easing(os.Quadratic.InOut).onUpdate(h).start())}).digest(e.htmlElementsData)}}),Pv=window.THREE?window.THREE:{Group:ja,Mesh:zi,MeshLambertMaterial:Vc,SphereGeometry:Eu},CO=xs({props:{objectsData:{default:[]},objectLat:{default:"lat"},objectLng:{default:"lng"},objectAltitude:{default:.01},objectFacesSurface:{default:!0},objectRotation:{},objectThreeObject:{default:new Pv.Mesh(new Pv.SphereGeometry(1,16,8),new Pv.MeshLambertMaterial({color:"#ffffaa",transparent:!0,opacity:.7}))}},init:function(e,t){nr(e),t.scene=e,t.dataMapper=new ao(e,{objBindAttr:"__threeObjObject"}).onCreateObj(function(n){var r=Mt(t.objectThreeObject)(n);t.objectThreeObject===r&&(r=r.clone());var s=new Pv.Group;return s.add(r),s.__globeObjType="object",s})},update:function(e,t){var n=Mt(e.objectLat),r=Mt(e.objectLng),s=Mt(e.objectAltitude),a=Mt(e.objectFacesSurface),l=Mt(e.objectRotation);t.hasOwnProperty("objectThreeObject")&&e.dataMapper.clear(),e.dataMapper.onUpdateObj(function(u,h){var g=+n(h),v=+r(h),x=+s(h);Object.assign(u.position,el(g,v,x)),a(h)?u.setRotationFromEuler(new la(Vf(-g),Vf(v),0,"YXZ")):u.rotation.set(0,0,0);var S=u.children[0],w=l(h);w&&S.setRotationFromEuler(new la(Vf(w.x||0),Vf(w.y||0),Vf(w.z||0)))}).digest(e.objectsData)}}),RO=xs({props:{customLayerData:{default:[]},customThreeObject:{},customThreeObjectUpdate:{triggerUpdate:!1}},init:function(e,t){nr(e),t.scene=e,t.dataMapper=new ao(e,{objBindAttr:"__threeObjCustom"}).onCreateObj(function(n){var r=Mt(t.customThreeObject)(n,cr);return r&&(t.customThreeObject===r&&(r=r.clone()),r.__globeObjType="custom"),r})},update:function(e,t){e.customThreeObjectUpdate||nr(e.scene);var n=Mt(e.customThreeObjectUpdate);t.hasOwnProperty("customThreeObject")&&e.dataMapper.clear(),e.dataMapper.onUpdateObj(function(r,s){return n(r,s,cr)}).digest(e.customLayerData)}}),Lv=window.THREE?window.THREE:{Camera:_y,Group:ja,Vector2:ft,Vector3:ce},Eue=["globeLayer","pointsLayer","arcsLayer","hexBinLayer","heatmapsLayer","polygonsLayer","hexedPolygonsLayer","pathsLayer","tilesLayer","particlesLayer","ringsLayer","labelsLayer","htmlElementsLayer","objectsLayer","customLayer"],NO=wa("globeLayer",AO),Cue=Object.assign.apply(Object,Qi(["globeImageUrl","bumpImageUrl","globeCurvatureResolution","globeTileEngineUrl","globeTileEngineMaxLevel","showGlobe","showGraticules","showAtmosphere","atmosphereColor","atmosphereAltitude"].map(function(i){return Ps({},i,NO.linkProp(i))}))),Rue=Object.assign.apply(Object,Qi(["globeMaterial","globeTileEngineClearCache"].map(function(i){return Ps({},i,NO.linkMethod(i))}))),Nue=wa("pointsLayer",dO),Due=Object.assign.apply(Object,Qi(["pointsData","pointLat","pointLng","pointColor","pointAltitude","pointRadius","pointResolution","pointsMerge","pointsTransitionDuration"].map(function(i){return Ps({},i,Nue.linkProp(i))}))),Pue=wa("arcsLayer",mO),Lue=Object.assign.apply(Object,Qi(["arcsData","arcStartLat","arcStartLng","arcStartAltitude","arcEndLat","arcEndLng","arcEndAltitude","arcColor","arcAltitude","arcAltitudeAutoScale","arcStroke","arcCurveResolution","arcCircularResolution","arcDashLength","arcDashGap","arcDashInitialGap","arcDashAnimateTime","arcsTransitionDuration"].map(function(i){return Ps({},i,Pue.linkProp(i))}))),Uue=wa("hexBinLayer",gO),Bue=Object.assign.apply(Object,Qi(["hexBinPointsData","hexBinPointLat","hexBinPointLng","hexBinPointWeight","hexBinResolution","hexMargin","hexTopCurvatureResolution","hexTopColor","hexSideColor","hexAltitude","hexBinMerge","hexTransitionDuration"].map(function(i){return Ps({},i,Uue.linkProp(i))}))),Oue=wa("heatmapsLayer",_O),Iue=Object.assign.apply(Object,Qi(["heatmapsData","heatmapPoints","heatmapPointLat","heatmapPointLng","heatmapPointWeight","heatmapBandwidth","heatmapColorFn","heatmapColorSaturation","heatmapBaseAltitude","heatmapTopAltitude","heatmapsTransitionDuration"].map(function(i){return Ps({},i,Oue.linkProp(i))}))),Fue=wa("hexedPolygonsLayer",xO),kue=Object.assign.apply(Object,Qi(["hexPolygonsData","hexPolygonGeoJsonGeometry","hexPolygonColor","hexPolygonAltitude","hexPolygonResolution","hexPolygonMargin","hexPolygonUseDots","hexPolygonCurvatureResolution","hexPolygonDotResolution","hexPolygonsTransitionDuration"].map(function(i){return Ps({},i,Fue.linkProp(i))}))),zue=wa("polygonsLayer",yO),Gue=Object.assign.apply(Object,Qi(["polygonsData","polygonGeoJsonGeometry","polygonCapColor","polygonCapMaterial","polygonSideColor","polygonSideMaterial","polygonStrokeColor","polygonAltitude","polygonCapCurvatureResolution","polygonsTransitionDuration"].map(function(i){return Ps({},i,zue.linkProp(i))}))),que=wa("pathsLayer",bO),Vue=Object.assign.apply(Object,Qi(["pathsData","pathPoints","pathPointLat","pathPointLng","pathPointAlt","pathResolution","pathColor","pathStroke","pathDashLength","pathDashGap","pathDashInitialGap","pathDashAnimateTime","pathTransitionDuration"].map(function(i){return Ps({},i,que.linkProp(i))}))),Hue=wa("tilesLayer",SO),jue=Object.assign.apply(Object,Qi(["tilesData","tileLat","tileLng","tileAltitude","tileWidth","tileHeight","tileUseGlobeProjection","tileMaterial","tileCurvatureResolution","tilesTransitionDuration"].map(function(i){return Ps({},i,Hue.linkProp(i))}))),Wue=wa("particlesLayer",TO),$ue=Object.assign.apply(Object,Qi(["particlesData","particlesList","particleLat","particleLng","particleAltitude","particlesSize","particlesSizeAttenuation","particlesColor","particlesTexture"].map(function(i){return Ps({},i,Wue.linkProp(i))}))),Xue=wa("ringsLayer",wO),Yue=Object.assign.apply(Object,Qi(["ringsData","ringLat","ringLng","ringAltitude","ringColor","ringResolution","ringMaxRadius","ringPropagationSpeed","ringRepeatPeriod"].map(function(i){return Ps({},i,Xue.linkProp(i))}))),Que=wa("labelsLayer",MO),Kue=Object.assign.apply(Object,Qi(["labelsData","labelLat","labelLng","labelAltitude","labelRotation","labelText","labelSize","labelTypeFace","labelColor","labelResolution","labelIncludeDot","labelDotRadius","labelDotOrientation","labelsTransitionDuration"].map(function(i){return Ps({},i,Que.linkProp(i))}))),Zue=wa("htmlElementsLayer",EO),Jue=Object.assign.apply(Object,Qi(["htmlElementsData","htmlLat","htmlLng","htmlAltitude","htmlElement","htmlElementVisibilityModifier","htmlTransitionDuration"].map(function(i){return Ps({},i,Zue.linkProp(i))}))),ece=wa("objectsLayer",CO),tce=Object.assign.apply(Object,Qi(["objectsData","objectLat","objectLng","objectAltitude","objectRotation","objectFacesSurface","objectThreeObject"].map(function(i){return Ps({},i,ece.linkProp(i))}))),nce=wa("customLayer",RO),ice=Object.assign.apply(Object,Qi(["customLayerData","customThreeObject","customThreeObjectUpdate"].map(function(i){return Ps({},i,nce.linkProp(i))}))),rce=xs({props:Hi(Hi(Hi(Hi(Hi(Hi(Hi(Hi(Hi(Hi(Hi(Hi(Hi(Hi(Hi({onGlobeReady:{triggerUpdate:!1},rendererSize:{default:new Lv.Vector2(window.innerWidth,window.innerHeight),onChange:function(e,t){t.pathsLayer.rendererSize(e)},triggerUpdate:!1}},Cue),Due),Lue),Bue),Iue),Gue),kue),Vue),jue),$ue),Yue),Kue),Jue),tce),ice),methods:Hi({getGlobeRadius:VN,getCoords:function(e){for(var t=arguments.length,n=new Array(t>1?t-1:0),r=1;r1?t-1:0),r=1;r1&&arguments[1]!==void 0?arguments[1]:Object,t=arguments.length>2&&arguments[2]!==void 0?arguments[2]:!1,n=(function(r){function s(){var a;nx(this,s);for(var l=arguments.length,u=new Array(l),h=0;hZN&&(this.dispatchEvent(US),this._lastPosition.copy(this.object.position))):this.object.isOrthographicCamera?(this.object.lookAt(this.target),(this._lastPosition.distanceToSquared(this.object.position)>ZN||this._lastZoom!==this.object.zoom)&&(this.dispatchEvent(US),this._lastPosition.copy(this.object.position),this._lastZoom=this.object.zoom)):console.warn("THREE.TrackballControls: Unsupported camera type.")}reset(){this.state=Ii.NONE,this.keyState=Ii.NONE,this.target.copy(this._target0),this.object.position.copy(this._position0),this.object.up.copy(this._up0),this.object.zoom=this._zoom0,this.object.updateProjectionMatrix(),this._eye.subVectors(this.object.position,this.target),this.object.lookAt(this.target),this.dispatchEvent(US),this._lastPosition.copy(this.object.position),this._lastZoom=this.object.zoom}_panCamera(){if(Eh.copy(this._panEnd).sub(this._panStart),Eh.lengthSq()){if(this.object.isOrthographicCamera){const e=(this.object.right-this.object.left)/this.object.zoom/this.domElement.clientWidth,t=(this.object.top-this.object.bottom)/this.object.zoom/this.domElement.clientWidth;Eh.x*=e,Eh.y*=t}Eh.multiplyScalar(this._eye.length()*this.panSpeed),Bv.copy(this._eye).cross(this.object.up).setLength(Eh.x),Bv.add(oce.copy(this.object.up).setLength(Eh.y)),this.object.position.add(Bv),this.target.add(Bv),this.staticMoving?this._panStart.copy(this._panEnd):this._panStart.add(Eh.subVectors(this._panEnd,this._panStart).multiplyScalar(this.dynamicDampingFactor))}}_rotateCamera(){Iv.set(this._moveCurr.x-this._movePrev.x,this._moveCurr.y-this._movePrev.y,0);let e=Iv.length();e?(this._eye.copy(this.object.position).sub(this.target),JN.copy(this._eye).normalize(),Ov.copy(this.object.up).normalize(),OS.crossVectors(Ov,JN).normalize(),Ov.setLength(this._moveCurr.y-this._movePrev.y),OS.setLength(this._moveCurr.x-this._movePrev.x),Iv.copy(Ov.add(OS)),BS.crossVectors(Iv,this._eye).normalize(),e*=this.rotateSpeed,Fd.setFromAxisAngle(BS,e),this._eye.applyQuaternion(Fd),this.object.up.applyQuaternion(Fd),this._lastAxis.copy(BS),this._lastAngle=e):!this.staticMoving&&this._lastAngle&&(this._lastAngle*=Math.sqrt(1-this.dynamicDampingFactor),this._eye.copy(this.object.position).sub(this.target),Fd.setFromAxisAngle(this._lastAxis,this._lastAngle),this._eye.applyQuaternion(Fd),this.object.up.applyQuaternion(Fd)),this._movePrev.copy(this._moveCurr)}_zoomCamera(){let e;this.state===Ii.TOUCH_ZOOM_PAN?(e=this._touchZoomDistanceStart/this._touchZoomDistanceEnd,this._touchZoomDistanceStart=this._touchZoomDistanceEnd,this.object.isPerspectiveCamera?this._eye.multiplyScalar(e):this.object.isOrthographicCamera?(this.object.zoom=M0.clamp(this.object.zoom/e,this.minZoom,this.maxZoom),this._lastZoom!==this.object.zoom&&this.object.updateProjectionMatrix()):console.warn("THREE.TrackballControls: Unsupported camera type")):(e=1+(this._zoomEnd.y-this._zoomStart.y)*this.zoomSpeed,e!==1&&e>0&&(this.object.isPerspectiveCamera?this._eye.multiplyScalar(e):this.object.isOrthographicCamera?(this.object.zoom=M0.clamp(this.object.zoom/e,this.minZoom,this.maxZoom),this._lastZoom!==this.object.zoom&&this.object.updateProjectionMatrix()):console.warn("THREE.TrackballControls: Unsupported camera type")),this.staticMoving?this._zoomStart.copy(this._zoomEnd):this._zoomStart.y+=(this._zoomEnd.y-this._zoomStart.y)*this.dynamicDampingFactor)}_getMouseOnScreen(e,t){return Uv.set((e-this.screen.left)/this.screen.width,(t-this.screen.top)/this.screen.height),Uv}_getMouseOnCircle(e,t){return Uv.set((e-this.screen.width*.5-this.screen.left)/(this.screen.width*.5),(this.screen.height+2*(this.screen.top-t))/this.screen.width),Uv}_addPointer(e){this._pointers.push(e)}_removePointer(e){delete this._pointerPositions[e.pointerId];for(let t=0;tthis.maxDistance*this.maxDistance&&(this.object.position.addVectors(this.target,this._eye.setLength(this.maxDistance)),this._zoomStart.copy(this._zoomEnd)),this._eye.lengthSq()Math.PI&&(n-=Fa),r<-Math.PI?r+=Fa:r>Math.PI&&(r-=Fa),n<=r?this._spherical.theta=Math.max(n,Math.min(r,this._spherical.theta)):this._spherical.theta=this._spherical.theta>(n+r)/2?Math.max(n,this._spherical.theta):Math.min(r,this._spherical.theta)),this._spherical.phi=Math.max(this.minPolarAngle,Math.min(this.maxPolarAngle,this._spherical.phi)),this._spherical.makeSafe(),this.enableDamping===!0?this.target.addScaledVector(this._panOffset,this.dampingFactor):this.target.add(this._panOffset),this.target.sub(this.cursor),this.target.clampLength(this.minTargetRadius,this.maxTargetRadius),this.target.add(this.cursor);let s=!1;if(this.zoomToCursor&&this._performCursorZoom||this.object.isOrthographicCamera)this._spherical.radius=this._clampDistance(this._spherical.radius);else{const a=this._spherical.radius;this._spherical.radius=this._clampDistance(this._spherical.radius*this._scale),s=a!=this._spherical.radius}if(ps.setFromSpherical(this._spherical),ps.applyQuaternion(this._quatInverse),t.copy(this.target).add(ps),this.object.lookAt(this.target),this.enableDamping===!0?(this._sphericalDelta.theta*=1-this.dampingFactor,this._sphericalDelta.phi*=1-this.dampingFactor,this._panOffset.multiplyScalar(1-this.dampingFactor)):(this._sphericalDelta.set(0,0,0),this._panOffset.set(0,0,0)),this.zoomToCursor&&this._performCursorZoom){let a=null;if(this.object.isPerspectiveCamera){const l=ps.length();a=this._clampDistance(l*this._scale);const u=l-a;this.object.position.addScaledVector(this._dollyDirection,u),this.object.updateMatrixWorld(),s=!!u}else if(this.object.isOrthographicCamera){const l=new ce(this._mouse.x,this._mouse.y,0);l.unproject(this.object);const u=this.object.zoom;this.object.zoom=Math.max(this.minZoom,Math.min(this.maxZoom,this.object.zoom/this._scale)),this.object.updateProjectionMatrix(),s=u!==this.object.zoom;const h=new ce(this._mouse.x,this._mouse.y,0);h.unproject(this.object),this.object.position.sub(h).add(l),this.object.updateMatrixWorld(),a=ps.length()}else console.warn("WARNING: OrbitControls.js encountered an unknown camera type - zoom to cursor disabled."),this.zoomToCursor=!1;a!==null&&(this.screenSpacePanning?this.target.set(0,0,-1).transformDirection(this.object.matrix).multiplyScalar(a).add(this.object.position):(Fv.origin.copy(this.object.position),Fv.direction.set(0,0,-1).transformDirection(this.object.matrix),Math.abs(this.object.up.dot(Fv.direction))IS||8*(1-this._lastQuaternion.dot(this.object.quaternion))>IS||this._lastTargetPosition.distanceToSquared(this.target)>IS?(this.dispatchEvent(e7),this._lastPosition.copy(this.object.position),this._lastQuaternion.copy(this.object.quaternion),this._lastTargetPosition.copy(this.target),!0):!1}_getAutoRotationAngle(e){return e!==null?Fa/60*this.autoRotateSpeed*e:Fa/60/60*this.autoRotateSpeed}_getZoomScale(e){const t=Math.abs(e*.01);return Math.pow(.95,this.zoomSpeed*t)}_rotateLeft(e){this._sphericalDelta.theta-=e}_rotateUp(e){this._sphericalDelta.phi-=e}_panLeft(e,t){ps.setFromMatrixColumn(t,0),ps.multiplyScalar(-e),this._panOffset.add(ps)}_panUp(e,t){this.screenSpacePanning===!0?ps.setFromMatrixColumn(t,1):(ps.setFromMatrixColumn(t,0),ps.crossVectors(this.object.up,ps)),ps.multiplyScalar(e),this._panOffset.add(ps)}_pan(e,t){const n=this.domElement;if(this.object.isPerspectiveCamera){const r=this.object.position;ps.copy(r).sub(this.target);let s=ps.length();s*=Math.tan(this.object.fov/2*Math.PI/180),this._panLeft(2*e*s/n.clientHeight,this.object.matrix),this._panUp(2*t*s/n.clientHeight,this.object.matrix)}else this.object.isOrthographicCamera?(this._panLeft(e*(this.object.right-this.object.left)/this.object.zoom/n.clientWidth,this.object.matrix),this._panUp(t*(this.object.top-this.object.bottom)/this.object.zoom/n.clientHeight,this.object.matrix)):(console.warn("WARNING: OrbitControls.js encountered an unknown camera type - pan disabled."),this.enablePan=!1)}_dollyOut(e){this.object.isPerspectiveCamera||this.object.isOrthographicCamera?this._scale/=e:(console.warn("WARNING: OrbitControls.js encountered an unknown camera type - dolly/zoom disabled."),this.enableZoom=!1)}_dollyIn(e){this.object.isPerspectiveCamera||this.object.isOrthographicCamera?this._scale*=e:(console.warn("WARNING: OrbitControls.js encountered an unknown camera type - dolly/zoom disabled."),this.enableZoom=!1)}_updateZoomParameters(e,t){if(!this.zoomToCursor)return;this._performCursorZoom=!0;const n=this.domElement.getBoundingClientRect(),r=e-n.left,s=t-n.top,a=n.width,l=n.height;this._mouse.x=r/a*2-1,this._mouse.y=-(s/l)*2+1,this._dollyDirection.set(this._mouse.x,this._mouse.y,1).unproject(this.object).sub(this.object.position).normalize()}_clampDistance(e){return Math.max(this.minDistance,Math.min(this.maxDistance,e))}_handleMouseDownRotate(e){this._rotateStart.set(e.clientX,e.clientY)}_handleMouseDownDolly(e){this._updateZoomParameters(e.clientX,e.clientX),this._dollyStart.set(e.clientX,e.clientY)}_handleMouseDownPan(e){this._panStart.set(e.clientX,e.clientY)}_handleMouseMoveRotate(e){this._rotateEnd.set(e.clientX,e.clientY),this._rotateDelta.subVectors(this._rotateEnd,this._rotateStart).multiplyScalar(this.rotateSpeed);const t=this.domElement;this._rotateLeft(Fa*this._rotateDelta.x/t.clientHeight),this._rotateUp(Fa*this._rotateDelta.y/t.clientHeight),this._rotateStart.copy(this._rotateEnd),this.update()}_handleMouseMoveDolly(e){this._dollyEnd.set(e.clientX,e.clientY),this._dollyDelta.subVectors(this._dollyEnd,this._dollyStart),this._dollyDelta.y>0?this._dollyOut(this._getZoomScale(this._dollyDelta.y)):this._dollyDelta.y<0&&this._dollyIn(this._getZoomScale(this._dollyDelta.y)),this._dollyStart.copy(this._dollyEnd),this.update()}_handleMouseMovePan(e){this._panEnd.set(e.clientX,e.clientY),this._panDelta.subVectors(this._panEnd,this._panStart).multiplyScalar(this.panSpeed),this._pan(this._panDelta.x,this._panDelta.y),this._panStart.copy(this._panEnd),this.update()}_handleMouseWheel(e){this._updateZoomParameters(e.clientX,e.clientY),e.deltaY<0?this._dollyIn(this._getZoomScale(e.deltaY)):e.deltaY>0&&this._dollyOut(this._getZoomScale(e.deltaY)),this.update()}_handleKeyDown(e){let t=!1;switch(e.code){case this.keys.UP:e.ctrlKey||e.metaKey||e.shiftKey?this.enableRotate&&this._rotateUp(Fa*this.keyRotateSpeed/this.domElement.clientHeight):this.enablePan&&this._pan(0,this.keyPanSpeed),t=!0;break;case this.keys.BOTTOM:e.ctrlKey||e.metaKey||e.shiftKey?this.enableRotate&&this._rotateUp(-Fa*this.keyRotateSpeed/this.domElement.clientHeight):this.enablePan&&this._pan(0,-this.keyPanSpeed),t=!0;break;case this.keys.LEFT:e.ctrlKey||e.metaKey||e.shiftKey?this.enableRotate&&this._rotateLeft(Fa*this.keyRotateSpeed/this.domElement.clientHeight):this.enablePan&&this._pan(this.keyPanSpeed,0),t=!0;break;case this.keys.RIGHT:e.ctrlKey||e.metaKey||e.shiftKey?this.enableRotate&&this._rotateLeft(-Fa*this.keyRotateSpeed/this.domElement.clientHeight):this.enablePan&&this._pan(-this.keyPanSpeed,0),t=!0;break}t&&(e.preventDefault(),this.update())}_handleTouchStartRotate(e){if(this._pointers.length===1)this._rotateStart.set(e.pageX,e.pageY);else{const t=this._getSecondPointerPosition(e),n=.5*(e.pageX+t.x),r=.5*(e.pageY+t.y);this._rotateStart.set(n,r)}}_handleTouchStartPan(e){if(this._pointers.length===1)this._panStart.set(e.pageX,e.pageY);else{const t=this._getSecondPointerPosition(e),n=.5*(e.pageX+t.x),r=.5*(e.pageY+t.y);this._panStart.set(n,r)}}_handleTouchStartDolly(e){const t=this._getSecondPointerPosition(e),n=e.pageX-t.x,r=e.pageY-t.y,s=Math.sqrt(n*n+r*r);this._dollyStart.set(0,s)}_handleTouchStartDollyPan(e){this.enableZoom&&this._handleTouchStartDolly(e),this.enablePan&&this._handleTouchStartPan(e)}_handleTouchStartDollyRotate(e){this.enableZoom&&this._handleTouchStartDolly(e),this.enableRotate&&this._handleTouchStartRotate(e)}_handleTouchMoveRotate(e){if(this._pointers.length==1)this._rotateEnd.set(e.pageX,e.pageY);else{const n=this._getSecondPointerPosition(e),r=.5*(e.pageX+n.x),s=.5*(e.pageY+n.y);this._rotateEnd.set(r,s)}this._rotateDelta.subVectors(this._rotateEnd,this._rotateStart).multiplyScalar(this.rotateSpeed);const t=this.domElement;this._rotateLeft(Fa*this._rotateDelta.x/t.clientHeight),this._rotateUp(Fa*this._rotateDelta.y/t.clientHeight),this._rotateStart.copy(this._rotateEnd)}_handleTouchMovePan(e){if(this._pointers.length===1)this._panEnd.set(e.pageX,e.pageY);else{const t=this._getSecondPointerPosition(e),n=.5*(e.pageX+t.x),r=.5*(e.pageY+t.y);this._panEnd.set(n,r)}this._panDelta.subVectors(this._panEnd,this._panStart).multiplyScalar(this.panSpeed),this._pan(this._panDelta.x,this._panDelta.y),this._panStart.copy(this._panEnd)}_handleTouchMoveDolly(e){const t=this._getSecondPointerPosition(e),n=e.pageX-t.x,r=e.pageY-t.y,s=Math.sqrt(n*n+r*r);this._dollyEnd.set(0,s),this._dollyDelta.set(0,Math.pow(this._dollyEnd.y/this._dollyStart.y,this.zoomSpeed)),this._dollyOut(this._dollyDelta.y),this._dollyStart.copy(this._dollyEnd);const a=(e.pageX+t.x)*.5,l=(e.pageY+t.y)*.5;this._updateZoomParameters(a,l)}_handleTouchMoveDollyPan(e){this.enableZoom&&this._handleTouchMoveDolly(e),this.enablePan&&this._handleTouchMovePan(e)}_handleTouchMoveDollyRotate(e){this.enableZoom&&this._handleTouchMoveDolly(e),this.enableRotate&&this._handleTouchMoveRotate(e)}_addPointer(e){this._pointers.push(e.pointerId)}_removePointer(e){delete this._pointerPositions[e.pointerId];for(let t=0;tn7||8*(1-this._lastQuaternion.dot(t.quaternion))>n7)&&(this.dispatchEvent(Ice),this._lastQuaternion.copy(t.quaternion),this._lastPosition.copy(t.position))}_updateMovementVector(){const e=this._moveState.forward||this.autoForward&&!this._moveState.back?1:0;this._moveVector.x=-this._moveState.left+this._moveState.right,this._moveVector.y=-this._moveState.down+this._moveState.up,this._moveVector.z=-e+this._moveState.back}_updateRotationVector(){this._rotationVector.x=-this._moveState.pitchDown+this._moveState.pitchUp,this._rotationVector.y=-this._moveState.yawRight+this._moveState.yawLeft,this._rotationVector.z=-this._moveState.rollRight+this._moveState.rollLeft}_getContainerDimensions(){return this.domElement!=document?{size:[this.domElement.offsetWidth,this.domElement.offsetHeight],offset:[this.domElement.offsetLeft,this.domElement.offsetTop]}:{size:[window.innerWidth,window.innerHeight],offset:[0,0]}}}function kce(i){if(!(i.altKey||this.enabled===!1)){switch(i.code){case"ShiftLeft":case"ShiftRight":this.movementSpeedMultiplier=.1;break;case"KeyW":this._moveState.forward=1;break;case"KeyS":this._moveState.back=1;break;case"KeyA":this._moveState.left=1;break;case"KeyD":this._moveState.right=1;break;case"KeyR":this._moveState.up=1;break;case"KeyF":this._moveState.down=1;break;case"ArrowUp":this._moveState.pitchUp=1;break;case"ArrowDown":this._moveState.pitchDown=1;break;case"ArrowLeft":this._moveState.yawLeft=1;break;case"ArrowRight":this._moveState.yawRight=1;break;case"KeyQ":this._moveState.rollLeft=1;break;case"KeyE":this._moveState.rollRight=1;break}this._updateMovementVector(),this._updateRotationVector()}}function zce(i){if(this.enabled!==!1){switch(i.code){case"ShiftLeft":case"ShiftRight":this.movementSpeedMultiplier=1;break;case"KeyW":this._moveState.forward=0;break;case"KeyS":this._moveState.back=0;break;case"KeyA":this._moveState.left=0;break;case"KeyD":this._moveState.right=0;break;case"KeyR":this._moveState.up=0;break;case"KeyF":this._moveState.down=0;break;case"ArrowUp":this._moveState.pitchUp=0;break;case"ArrowDown":this._moveState.pitchDown=0;break;case"ArrowLeft":this._moveState.yawLeft=0;break;case"ArrowRight":this._moveState.yawRight=0;break;case"KeyQ":this._moveState.rollLeft=0;break;case"KeyE":this._moveState.rollRight=0;break}this._updateMovementVector(),this._updateRotationVector()}}function Gce(i){if(this.enabled!==!1)if(this.dragToLook)this._status++;else{switch(i.button){case 0:this._moveState.forward=1;break;case 2:this._moveState.back=1;break}this._updateMovementVector()}}function qce(i){if(this.enabled!==!1&&(!this.dragToLook||this._status>0)){const e=this._getContainerDimensions(),t=e.size[0]/2,n=e.size[1]/2;this._moveState.yawLeft=-(i.pageX-e.offset[0]-t)/t,this._moveState.pitchDown=(i.pageY-e.offset[1]-n)/n,this._updateRotationVector()}}function Vce(i){if(this.enabled!==!1){if(this.dragToLook)this._status--,this._moveState.yawLeft=this._moveState.pitchDown=0;else{switch(i.button){case 0:this._moveState.forward=0;break;case 2:this._moveState.back=0;break}this._updateMovementVector()}this._updateRotationVector()}}function Hce(){this.enabled!==!1&&(this.dragToLook?(this._status=0,this._moveState.yawLeft=this._moveState.pitchDown=0):(this._moveState.forward=0,this._moveState.back=0,this._updateMovementVector()),this._updateRotationVector())}function jce(i){this.enabled!==!1&&i.preventDefault()}const Wce={name:"CopyShader",uniforms:{tDiffuse:{value:null},opacity:{value:1}},vertexShader:` - - varying vec2 vUv; - - void main() { - - vUv = uv; - gl_Position = projectionMatrix * modelViewMatrix * vec4( position, 1.0 ); - - }`,fragmentShader:` - - uniform float opacity; - - uniform sampler2D tDiffuse; - - varying vec2 vUv; - - void main() { - - vec4 texel = texture2D( tDiffuse, vUv ); - gl_FragColor = opacity * texel; - - - }`};class sx{constructor(){this.isPass=!0,this.enabled=!0,this.needsSwap=!0,this.clear=!1,this.renderToScreen=!1}setSize(){}render(){console.error("THREE.Pass: .render() must be implemented in derived pass.")}dispose(){}}const $ce=new kg(-1,1,1,-1,0,1);class Xce extends Ki{constructor(){super(),this.setAttribute("position",new wi([-1,3,0,-1,-1,0,3,-1,0],3)),this.setAttribute("uv",new wi([0,2,0,0,2,0],2))}}const Yce=new Xce;class Qce{constructor(e){this._mesh=new zi(Yce,e)}dispose(){this._mesh.geometry.dispose()}render(e){e.render(this._mesh,$ce)}get material(){return this._mesh.material}set material(e){this._mesh.material=e}}class Kce extends sx{constructor(e,t){super(),this.textureID=t!==void 0?t:"tDiffuse",e instanceof Ja?(this.uniforms=e.uniforms,this.material=e):e&&(this.uniforms=vy.clone(e.uniforms),this.material=new Ja({name:e.name!==void 0?e.name:"unspecified",defines:Object.assign({},e.defines),uniforms:this.uniforms,vertexShader:e.vertexShader,fragmentShader:e.fragmentShader})),this.fsQuad=new Qce(this.material)}render(e,t,n){this.uniforms[this.textureID]&&(this.uniforms[this.textureID].value=n.texture),this.fsQuad.material=this.material,this.renderToScreen?(e.setRenderTarget(null),this.fsQuad.render(e)):(e.setRenderTarget(t),this.clear&&e.clear(e.autoClearColor,e.autoClearDepth,e.autoClearStencil),this.fsQuad.render(e))}dispose(){this.material.dispose(),this.fsQuad.dispose()}}class r7 extends sx{constructor(e,t){super(),this.scene=e,this.camera=t,this.clear=!0,this.needsSwap=!1,this.inverse=!1}render(e,t,n){const r=e.getContext(),s=e.state;s.buffers.color.setMask(!1),s.buffers.depth.setMask(!1),s.buffers.color.setLocked(!0),s.buffers.depth.setLocked(!0);let a,l;this.inverse?(a=0,l=1):(a=1,l=0),s.buffers.stencil.setTest(!0),s.buffers.stencil.setOp(r.REPLACE,r.REPLACE,r.REPLACE),s.buffers.stencil.setFunc(r.ALWAYS,a,4294967295),s.buffers.stencil.setClear(l),s.buffers.stencil.setLocked(!0),e.setRenderTarget(n),this.clear&&e.clear(),e.render(this.scene,this.camera),e.setRenderTarget(t),this.clear&&e.clear(),e.render(this.scene,this.camera),s.buffers.color.setLocked(!1),s.buffers.depth.setLocked(!1),s.buffers.color.setMask(!0),s.buffers.depth.setMask(!0),s.buffers.stencil.setLocked(!1),s.buffers.stencil.setFunc(r.EQUAL,1,4294967295),s.buffers.stencil.setOp(r.KEEP,r.KEEP,r.KEEP),s.buffers.stencil.setLocked(!0)}}class Zce extends sx{constructor(){super(),this.needsSwap=!1}render(e){e.state.buffers.stencil.setLocked(!1),e.state.buffers.stencil.setTest(!1)}}class Jce{constructor(e,t){if(this.renderer=e,this._pixelRatio=e.getPixelRatio(),t===void 0){const n=e.getSize(new ft);this._width=n.width,this._height=n.height,t=new qh(this._width*this._pixelRatio,this._height*this._pixelRatio,{type:Gs}),t.texture.name="EffectComposer.rt1"}else this._width=t.width,this._height=t.height;this.renderTarget1=t,this.renderTarget2=t.clone(),this.renderTarget2.texture.name="EffectComposer.rt2",this.writeBuffer=this.renderTarget1,this.readBuffer=this.renderTarget2,this.renderToScreen=!0,this.passes=[],this.copyPass=new Kce(Wce),this.copyPass.material.blending=Qa,this.clock=new aD}swapBuffers(){const e=this.readBuffer;this.readBuffer=this.writeBuffer,this.writeBuffer=e}addPass(e){this.passes.push(e),e.setSize(this._width*this._pixelRatio,this._height*this._pixelRatio)}insertPass(e,t){this.passes.splice(t,0,e),e.setSize(this._width*this._pixelRatio,this._height*this._pixelRatio)}removePass(e){const t=this.passes.indexOf(e);t!==-1&&this.passes.splice(t,1)}isLastEnabledPass(e){for(let t=e+1;t=0&&r<1?(l=s,u=a):r>=1&&r<2?(l=a,u=s):r>=2&&r<3?(u=s,h=a):r>=3&&r<4?(u=a,h=s):r>=4&&r<5?(l=a,h=s):r>=5&&r<6&&(l=s,h=a);var g=t-s/2,v=l+g,x=u+g,S=h+g;return n(v,x,S)}var s7={aliceblue:"f0f8ff",antiquewhite:"faebd7",aqua:"00ffff",aquamarine:"7fffd4",azure:"f0ffff",beige:"f5f5dc",bisque:"ffe4c4",black:"000",blanchedalmond:"ffebcd",blue:"0000ff",blueviolet:"8a2be2",brown:"a52a2a",burlywood:"deb887",cadetblue:"5f9ea0",chartreuse:"7fff00",chocolate:"d2691e",coral:"ff7f50",cornflowerblue:"6495ed",cornsilk:"fff8dc",crimson:"dc143c",cyan:"00ffff",darkblue:"00008b",darkcyan:"008b8b",darkgoldenrod:"b8860b",darkgray:"a9a9a9",darkgreen:"006400",darkgrey:"a9a9a9",darkkhaki:"bdb76b",darkmagenta:"8b008b",darkolivegreen:"556b2f",darkorange:"ff8c00",darkorchid:"9932cc",darkred:"8b0000",darksalmon:"e9967a",darkseagreen:"8fbc8f",darkslateblue:"483d8b",darkslategray:"2f4f4f",darkslategrey:"2f4f4f",darkturquoise:"00ced1",darkviolet:"9400d3",deeppink:"ff1493",deepskyblue:"00bfff",dimgray:"696969",dimgrey:"696969",dodgerblue:"1e90ff",firebrick:"b22222",floralwhite:"fffaf0",forestgreen:"228b22",fuchsia:"ff00ff",gainsboro:"dcdcdc",ghostwhite:"f8f8ff",gold:"ffd700",goldenrod:"daa520",gray:"808080",green:"008000",greenyellow:"adff2f",grey:"808080",honeydew:"f0fff0",hotpink:"ff69b4",indianred:"cd5c5c",indigo:"4b0082",ivory:"fffff0",khaki:"f0e68c",lavender:"e6e6fa",lavenderblush:"fff0f5",lawngreen:"7cfc00",lemonchiffon:"fffacd",lightblue:"add8e6",lightcoral:"f08080",lightcyan:"e0ffff",lightgoldenrodyellow:"fafad2",lightgray:"d3d3d3",lightgreen:"90ee90",lightgrey:"d3d3d3",lightpink:"ffb6c1",lightsalmon:"ffa07a",lightseagreen:"20b2aa",lightskyblue:"87cefa",lightslategray:"789",lightslategrey:"789",lightsteelblue:"b0c4de",lightyellow:"ffffe0",lime:"0f0",limegreen:"32cd32",linen:"faf0e6",magenta:"f0f",maroon:"800000",mediumaquamarine:"66cdaa",mediumblue:"0000cd",mediumorchid:"ba55d3",mediumpurple:"9370db",mediumseagreen:"3cb371",mediumslateblue:"7b68ee",mediumspringgreen:"00fa9a",mediumturquoise:"48d1cc",mediumvioletred:"c71585",midnightblue:"191970",mintcream:"f5fffa",mistyrose:"ffe4e1",moccasin:"ffe4b5",navajowhite:"ffdead",navy:"000080",oldlace:"fdf5e6",olive:"808000",olivedrab:"6b8e23",orange:"ffa500",orangered:"ff4500",orchid:"da70d6",palegoldenrod:"eee8aa",palegreen:"98fb98",paleturquoise:"afeeee",palevioletred:"db7093",papayawhip:"ffefd5",peachpuff:"ffdab9",peru:"cd853f",pink:"ffc0cb",plum:"dda0dd",powderblue:"b0e0e6",purple:"800080",rebeccapurple:"639",red:"f00",rosybrown:"bc8f8f",royalblue:"4169e1",saddlebrown:"8b4513",salmon:"fa8072",sandybrown:"f4a460",seagreen:"2e8b57",seashell:"fff5ee",sienna:"a0522d",silver:"c0c0c0",skyblue:"87ceeb",slateblue:"6a5acd",slategray:"708090",slategrey:"708090",snow:"fffafa",springgreen:"00ff7f",steelblue:"4682b4",tan:"d2b48c",teal:"008080",thistle:"d8bfd8",tomato:"ff6347",turquoise:"40e0d0",violet:"ee82ee",wheat:"f5deb3",white:"fff",whitesmoke:"f5f5f5",yellow:"ff0",yellowgreen:"9acd32"};function ahe(i){if(typeof i!="string")return i;var e=i.toLowerCase();return s7[e]?"#"+s7[e]:i}var ohe=/^#[a-fA-F0-9]{6}$/,lhe=/^#[a-fA-F0-9]{8}$/,uhe=/^#[a-fA-F0-9]{3}$/,che=/^#[a-fA-F0-9]{4}$/,kS=/^rgb\(\s*(\d{1,3})\s*(?:,)?\s*(\d{1,3})\s*(?:,)?\s*(\d{1,3})\s*\)$/i,hhe=/^rgb(?:a)?\(\s*(\d{1,3})\s*(?:,)?\s*(\d{1,3})\s*(?:,)?\s*(\d{1,3})\s*(?:,|\/)\s*([-+]?\d*[.]?\d+[%]?)\s*\)$/i,fhe=/^hsl\(\s*(\d{0,3}[.]?[0-9]+(?:deg)?)\s*(?:,)?\s*(\d{1,3}[.]?[0-9]?)%\s*(?:,)?\s*(\d{1,3}[.]?[0-9]?)%\s*\)$/i,Ahe=/^hsl(?:a)?\(\s*(\d{0,3}[.]?[0-9]+(?:deg)?)\s*(?:,)?\s*(\d{1,3}[.]?[0-9]?)%\s*(?:,)?\s*(\d{1,3}[.]?[0-9]?)%\s*(?:,|\/)\s*([-+]?\d*[.]?\d+[%]?)\s*\)$/i;function G0(i){if(typeof i!="string")throw new ru(3);var e=ahe(i);if(e.match(ohe))return{red:parseInt(""+e[1]+e[2],16),green:parseInt(""+e[3]+e[4],16),blue:parseInt(""+e[5]+e[6],16)};if(e.match(lhe)){var t=parseFloat((parseInt(""+e[7]+e[8],16)/255).toFixed(2));return{red:parseInt(""+e[1]+e[2],16),green:parseInt(""+e[3]+e[4],16),blue:parseInt(""+e[5]+e[6],16),alpha:t}}if(e.match(uhe))return{red:parseInt(""+e[1]+e[1],16),green:parseInt(""+e[2]+e[2],16),blue:parseInt(""+e[3]+e[3],16)};if(e.match(che)){var n=parseFloat((parseInt(""+e[4]+e[4],16)/255).toFixed(2));return{red:parseInt(""+e[1]+e[1],16),green:parseInt(""+e[2]+e[2],16),blue:parseInt(""+e[3]+e[3],16),alpha:n}}var r=kS.exec(e);if(r)return{red:parseInt(""+r[1],10),green:parseInt(""+r[2],10),blue:parseInt(""+r[3],10)};var s=hhe.exec(e.substring(0,50));if(s)return{red:parseInt(""+s[1],10),green:parseInt(""+s[2],10),blue:parseInt(""+s[3],10),alpha:parseFloat(""+s[4])>1?parseFloat(""+s[4])/100:parseFloat(""+s[4])};var a=fhe.exec(e);if(a){var l=parseInt(""+a[1],10),u=parseInt(""+a[2],10)/100,h=parseInt(""+a[3],10)/100,g="rgb("+oy(l,u,h)+")",v=kS.exec(g);if(!v)throw new ru(4,e,g);return{red:parseInt(""+v[1],10),green:parseInt(""+v[2],10),blue:parseInt(""+v[3],10)}}var x=Ahe.exec(e.substring(0,50));if(x){var S=parseInt(""+x[1],10),w=parseInt(""+x[2],10)/100,R=parseInt(""+x[3],10)/100,C="rgb("+oy(S,w,R)+")",E=kS.exec(C);if(!E)throw new ru(4,e,C);return{red:parseInt(""+E[1],10),green:parseInt(""+E[2],10),blue:parseInt(""+E[3],10),alpha:parseFloat(""+x[4])>1?parseFloat(""+x[4])/100:parseFloat(""+x[4])}}throw new ru(5)}function dhe(i){var e=i.red/255,t=i.green/255,n=i.blue/255,r=Math.max(e,t,n),s=Math.min(e,t,n),a=(r+s)/2;if(r===s)return i.alpha!==void 0?{hue:0,saturation:0,lightness:a,alpha:i.alpha}:{hue:0,saturation:0,lightness:a};var l,u=r-s,h=a>.5?u/(2-r-s):u/(r+s);switch(r){case e:l=(t-n)/u+(t=1?UO(i.hue,i.saturation,i.lightness):"rgba("+oy(i.hue,i.saturation,i.lightness)+","+i.alpha+")";throw new ru(2)}function BO(i,e,t){if(typeof i=="number"&&typeof e=="number"&&typeof t=="number")return hw("#"+Ff(i)+Ff(e)+Ff(t));if(typeof i=="object"&&e===void 0&&t===void 0)return hw("#"+Ff(i.red)+Ff(i.green)+Ff(i.blue));throw new ru(6)}function ax(i,e,t,n){if(typeof i=="object"&&e===void 0&&t===void 0&&n===void 0)return i.alpha>=1?BO(i.red,i.green,i.blue):"rgba("+i.red+","+i.green+","+i.blue+","+i.alpha+")";throw new ru(7)}var _he=function(e){return typeof e.red=="number"&&typeof e.green=="number"&&typeof e.blue=="number"&&(typeof e.alpha!="number"||typeof e.alpha>"u")},yhe=function(e){return typeof e.red=="number"&&typeof e.green=="number"&&typeof e.blue=="number"&&typeof e.alpha=="number"},xhe=function(e){return typeof e.hue=="number"&&typeof e.saturation=="number"&&typeof e.lightness=="number"&&(typeof e.alpha!="number"||typeof e.alpha>"u")},bhe=function(e){return typeof e.hue=="number"&&typeof e.saturation=="number"&&typeof e.lightness=="number"&&typeof e.alpha=="number"};function Kh(i){if(typeof i!="object")throw new ru(8);if(yhe(i))return ax(i);if(_he(i))return BO(i);if(bhe(i))return vhe(i);if(xhe(i))return ghe(i);throw new ru(8)}function OO(i,e,t){return function(){var r=t.concat(Array.prototype.slice.call(arguments));return r.length>=e?i.apply(this,r):OO(i,e,r)}}function Do(i){return OO(i,i.length,[])}function She(i,e){if(e==="transparent")return e;var t=Qh(e);return Kh(io({},t,{hue:t.hue+parseFloat(i)}))}Do(She);function J0(i,e,t){return Math.max(i,Math.min(e,t))}function The(i,e){if(e==="transparent")return e;var t=Qh(e);return Kh(io({},t,{lightness:J0(0,1,t.lightness-parseFloat(i))}))}Do(The);function whe(i,e){if(e==="transparent")return e;var t=Qh(e);return Kh(io({},t,{saturation:J0(0,1,t.saturation-parseFloat(i))}))}Do(whe);function Mhe(i,e){if(e==="transparent")return e;var t=Qh(e);return Kh(io({},t,{lightness:J0(0,1,t.lightness+parseFloat(i))}))}Do(Mhe);function Ehe(i,e,t){if(e==="transparent")return t;if(t==="transparent")return e;if(i===0)return t;var n=G0(e),r=io({},n,{alpha:typeof n.alpha=="number"?n.alpha:1}),s=G0(t),a=io({},s,{alpha:typeof s.alpha=="number"?s.alpha:1}),l=r.alpha-a.alpha,u=parseFloat(i)*2-1,h=u*l===-1?u:u+l,g=1+u*l,v=(h/g+1)/2,x=1-v,S={red:Math.floor(r.red*v+a.red*x),green:Math.floor(r.green*v+a.green*x),blue:Math.floor(r.blue*v+a.blue*x),alpha:r.alpha*parseFloat(i)+a.alpha*(1-parseFloat(i))};return ax(S)}var Che=Do(Ehe),IO=Che;function Rhe(i,e){if(e==="transparent")return e;var t=G0(e),n=typeof t.alpha=="number"?t.alpha:1,r=io({},t,{alpha:J0(0,1,(n*100+parseFloat(i)*100)/100)});return ax(r)}var Nhe=Do(Rhe),Dhe=Nhe;function Phe(i,e){if(e==="transparent")return e;var t=Qh(e);return Kh(io({},t,{saturation:J0(0,1,t.saturation+parseFloat(i))}))}Do(Phe);function Lhe(i,e){return e==="transparent"?e:Kh(io({},Qh(e),{hue:parseFloat(i)}))}Do(Lhe);function Uhe(i,e){return e==="transparent"?e:Kh(io({},Qh(e),{lightness:parseFloat(i)}))}Do(Uhe);function Bhe(i,e){return e==="transparent"?e:Kh(io({},Qh(e),{saturation:parseFloat(i)}))}Do(Bhe);function Ohe(i,e){return e==="transparent"?e:IO(parseFloat(i),"rgb(0, 0, 0)",e)}Do(Ohe);function Ihe(i,e){return e==="transparent"?e:IO(parseFloat(i),"rgb(255, 255, 255)",e)}Do(Ihe);function Fhe(i,e){if(e==="transparent")return e;var t=G0(e),n=typeof t.alpha=="number"?t.alpha:1,r=io({},t,{alpha:J0(0,1,+(n*100-parseFloat(i)*100).toFixed(2)/100)});return ax(r)}Do(Fhe);var fw="http://www.w3.org/1999/xhtml";const a7={svg:"http://www.w3.org/2000/svg",xhtml:fw,xlink:"http://www.w3.org/1999/xlink",xml:"http://www.w3.org/XML/1998/namespace",xmlns:"http://www.w3.org/2000/xmlns/"};function FO(i){var e=i+="",t=e.indexOf(":");return t>=0&&(e=i.slice(0,t))!=="xmlns"&&(i=i.slice(t+1)),a7.hasOwnProperty(e)?{space:a7[e],local:i}:i}function khe(i){return function(){var e=this.ownerDocument,t=this.namespaceURI;return t===fw&&e.documentElement.namespaceURI===fw?e.createElement(i):e.createElementNS(t,i)}}function zhe(i){return function(){return this.ownerDocument.createElementNS(i.space,i.local)}}function kO(i){var e=FO(i);return(e.local?zhe:khe)(e)}function Ghe(){}function zO(i){return i==null?Ghe:function(){return this.querySelector(i)}}function qhe(i){typeof i!="function"&&(i=zO(i));for(var e=this._groups,t=e.length,n=new Array(t),r=0;r=L&&(L=B+1);!(z=C[L])&&++L=0;)(a=n[r])&&(s&&a.compareDocumentPosition(s)^4&&s.parentNode.insertBefore(a,s),s=a);return this}function pfe(i){i||(i=mfe);function e(v,x){return v&&x?i(v.__data__,x.__data__):!v-!x}for(var t=this._groups,n=t.length,r=new Array(n),s=0;se?1:i>=e?0:NaN}function gfe(){var i=arguments[0];return arguments[0]=this,i.apply(null,arguments),this}function vfe(){return Array.from(this)}function _fe(){for(var i=this._groups,e=0,t=i.length;e1?this.each((e==null?Nfe:typeof e=="function"?Pfe:Dfe)(i,e,t??"")):Ufe(this.node(),i)}function Ufe(i,e){return i.style.getPropertyValue(e)||VO(i).getComputedStyle(i,null).getPropertyValue(e)}function Bfe(i){return function(){delete this[i]}}function Ofe(i,e){return function(){this[i]=e}}function Ife(i,e){return function(){var t=e.apply(this,arguments);t==null?delete this[i]:this[i]=t}}function Ffe(i,e){return arguments.length>1?this.each((e==null?Bfe:typeof e=="function"?Ife:Ofe)(i,e)):this.node()[i]}function HO(i){return i.trim().split(/^|\s+/)}function QE(i){return i.classList||new jO(i)}function jO(i){this._node=i,this._names=HO(i.getAttribute("class")||"")}jO.prototype={add:function(i){var e=this._names.indexOf(i);e<0&&(this._names.push(i),this._node.setAttribute("class",this._names.join(" ")))},remove:function(i){var e=this._names.indexOf(i);e>=0&&(this._names.splice(e,1),this._node.setAttribute("class",this._names.join(" ")))},contains:function(i){return this._names.indexOf(i)>=0}};function WO(i,e){for(var t=QE(i),n=-1,r=e.length;++n=0&&(t=e.slice(n+1),e=e.slice(0,n)),{type:e,name:t}})}function fAe(i){return function(){var e=this.__on;if(e){for(var t=0,n=-1,r=e.length,s;t2&&(a.children=arguments.length>3?i1.call(arguments,2):t),typeof i=="function"&&i.defaultProps!=null)for(s in i.defaultProps)a[s]===void 0&&(a[s]=i.defaultProps[s]);return Gm(i,a,n,r,null)}function Gm(i,e,t,n,r){var s={type:i,props:e,key:t,ref:n,__k:null,__:null,__b:0,__e:null,__c:null,constructor:void 0,__v:r??++YO,__i:-1,__u:0};return r==null&&Tr.vnode!=null&&Tr.vnode(s),s}function lx(i){return i.children}function r_(i,e){this.props=i,this.context=e}function q0(i,e){if(e==null)return i.__?q0(i.__,i.__i+1):null;for(var t;ee&&Hf.sort(ZO),i=Hf.shift(),e=Hf.length,MAe(i);hy.__r=0}function tI(i,e,t,n,r,s,a,l,u,h,g){var v,x,S,w,R,C,E,B=n&&n.__k||cy,L=e.length;for(u=EAe(t,e,B,u,L),v=0;v0?a=i.__k[s]=Gm(a.type,a.props,a.key,a.ref?a.ref:null,a.__v):i.__k[s]=a,u=s+x,a.__=i,a.__b=i.__b+1,l=null,(h=a.__i=CAe(a,t,u,v))!=-1&&(v--,(l=t[h])&&(l.__u|=2)),l==null||l.__v==null?(h==-1&&(r>g?x--:ru?x--:x++,a.__u|=4))):i.__k[s]=null;if(v)for(s=0;s(g?1:0)){for(r=t-1,s=t+1;r>=0||s=0?r--:s++])!=null&&(2&h.__u)==0&&l==h.key&&u==h.type)return a}return-1}function u7(i,e,t){e[0]=="-"?i.setProperty(e,t??""):i[e]=t==null?"":typeof t!="number"||TAe.test(e)?t:t+"px"}function kv(i,e,t,n,r){var s,a;e:if(e=="style")if(typeof t=="string")i.style.cssText=t;else{if(typeof n=="string"&&(i.style.cssText=n=""),n)for(e in n)t&&e in t||u7(i.style,e,"");if(t)for(e in t)n&&t[e]==n[e]||u7(i.style,e,t[e])}else if(e[0]=="o"&&e[1]=="n")s=e!=(e=e.replace(JO,"$1")),a=e.toLowerCase(),e=a in i||e=="onFocusOut"||e=="onFocusIn"?a.slice(2):e.slice(2),i.l||(i.l={}),i.l[e+s]=t,t?n?t.u=n.u:(t.u=KE,i.addEventListener(e,s?dw:Aw,s)):i.removeEventListener(e,s?dw:Aw,s);else{if(r=="http://www.w3.org/2000/svg")e=e.replace(/xlink(H|:h)/,"h").replace(/sName$/,"s");else if(e!="width"&&e!="height"&&e!="href"&&e!="list"&&e!="form"&&e!="tabIndex"&&e!="download"&&e!="rowSpan"&&e!="colSpan"&&e!="role"&&e!="popover"&&e in i)try{i[e]=t??"";break e}catch{}typeof t=="function"||(t==null||t===!1&&e[4]!="-"?i.removeAttribute(e):i.setAttribute(e,e=="popover"&&t==1?"":t))}}function c7(i){return function(e){if(this.l){var t=this.l[e.type+i];if(e.t==null)e.t=KE++;else if(e.t0?i:ox(i)?i.map(rI):su({},i)}function RAe(i,e,t,n,r,s,a,l,u){var h,g,v,x,S,w,R,C=t.props||uy,E=e.props,B=e.type;if(B=="svg"?r="http://www.w3.org/2000/svg":B=="math"?r="http://www.w3.org/1998/Math/MathML":r||(r="http://www.w3.org/1999/xhtml"),s!=null){for(h=0;h2&&(l.children=arguments.length>3?i1.call(arguments,2):t),Gm(i.type,l,n||i.key,r||i.ref,null)}i1=cy.slice,Tr={__e:function(i,e,t,n){for(var r,s,a;e=e.__;)if((r=e.__c)&&!r.__)try{if((s=r.constructor)&&s.getDerivedStateFromError!=null&&(r.setState(s.getDerivedStateFromError(i)),a=r.__d),r.componentDidCatch!=null&&(r.componentDidCatch(i,n||{}),a=r.__d),a)return r.__E=r}catch(l){i=l}throw i}},YO=0,QO=function(i){return i!=null&&i.constructor===void 0},r_.prototype.setState=function(i,e){var t;t=this.__s!=null&&this.__s!=this.state?this.__s:this.__s=su({},this.state),typeof i=="function"&&(i=i(su({},t),this.props)),i&&su(t,i),i!=null&&this.__v&&(e&&this._sb.push(e),l7(this))},r_.prototype.forceUpdate=function(i){this.__v&&(this.__e=!0,i&&this.__h.push(i),l7(this))},r_.prototype.render=lx,Hf=[],KO=typeof Promise=="function"?Promise.prototype.then.bind(Promise.resolve()):setTimeout,ZO=function(i,e){return i.__v.__b-e.__v.__b},hy.__r=0,JO=/(PointerCapture)$|Capture$/i,KE=0,Aw=c7(!1),dw=c7(!0);function h7(i,e){(e==null||e>i.length)&&(e=i.length);for(var t=0,n=Array(e);t"u")){var n=document.head||document.getElementsByTagName("head")[0],r=document.createElement("style");r.type="text/css",t==="top"&&n.firstChild?n.insertBefore(r,n.firstChild):n.appendChild(r),r.styleSheet?r.styleSheet.cssText=i:r.appendChild(document.createTextNode(i))}}var HAe=`.float-tooltip-kap { - position: absolute; - width: max-content; /* prevent shrinking near right edge */ - max-width: max(50%, 150px); - padding: 3px 5px; - border-radius: 3px; - font: 12px sans-serif; - color: #eee; - background: rgba(0,0,0,0.6); - pointer-events: none; -} -`;VAe(HAe);var jAe=xs({props:{content:{default:!1},offsetX:{triggerUpdate:!1},offsetY:{triggerUpdate:!1}},init:function(e,t){var n=arguments.length>2&&arguments[2]!==void 0?arguments[2]:{},r=n.style,s=r===void 0?{}:r,a=!!e&&fy(e)==="object"&&!!e.node&&typeof e.node=="function",l=xAe(a?e.node():e);l.style("position")==="static"&&l.style("position","relative"),t.tooltipEl=l.append("div").attr("class","float-tooltip-kap"),Object.entries(s).forEach(function(h){var g=IAe(h,2),v=g[0],x=g[1];return t.tooltipEl.style(v,x)}),t.tooltipEl.style("left","-10000px").style("display","none");var u="tooltip-".concat(Math.round(Math.random()*1e12));t.mouseInside=!1,l.on("mousemove.".concat(u),function(h){t.mouseInside=!0;var g=SAe(h),v=l.node(),x=v.offsetWidth,S=v.offsetHeight,w=[t.offsetX===null||t.offsetX===void 0?"-".concat(g[0]/x*100,"%"):typeof t.offsetX=="number"?"calc(-50% + ".concat(t.offsetX,"px)"):t.offsetX,t.offsetY===null||t.offsetY===void 0?S>130&&S-g[1]<100?"calc(-100% - 6px)":"21px":typeof t.offsetY=="number"?t.offsetY<0?"calc(-100% - ".concat(Math.abs(t.offsetY),"px)"):"".concat(t.offsetY,"px"):t.offsetY];t.tooltipEl.style("left",g[0]+"px").style("top",g[1]+"px").style("transform","translate(".concat(w.join(","),")")),t.content&&t.tooltipEl.style("display","inline")}),l.on("mouseover.".concat(u),function(){t.mouseInside=!0,t.content&&t.tooltipEl.style("display","inline")}),l.on("mouseout.".concat(u),function(){t.mouseInside=!1,t.tooltipEl.style("display","none")})},update:function(e){e.tooltipEl.style("display",e.content&&e.mouseInside?"inline":"none"),e.content?e.content instanceof HTMLElement?(e.tooltipEl.text(""),e.tooltipEl.append(function(){return e.content})):typeof e.content=="string"?e.tooltipEl.html(e.content):GAe(e.content)?(e.tooltipEl.text(""),qAe(e.content,e.tooltipEl.node())):(e.tooltipEl.style("display","none"),console.warn("Tooltip content is invalid, skipping.",e.content,e.content.toString())):e.tooltipEl.text("")}});function WAe(i,e){e===void 0&&(e={});var t=e.insertAt;if(!(typeof document>"u")){var n=document.head||document.getElementsByTagName("head")[0],r=document.createElement("style");r.type="text/css",t==="top"&&n.firstChild?n.insertBefore(r,n.firstChild):n.appendChild(r),r.styleSheet?r.styleSheet.cssText=i:r.appendChild(document.createTextNode(i))}}var $Ae=`.scene-nav-info { - position: absolute; - bottom: 5px; - width: 100%; - text-align: center; - color: slategrey; - opacity: 0.7; - font-size: 10px; - font-family: sans-serif; - pointer-events: none; - user-select: none; -} - -.scene-container canvas:focus { - outline: none; -}`;WAe($Ae);function gw(i,e){(e==null||e>i.length)&&(e=i.length);for(var t=0,n=Array(e);t=e.pointerRaycasterThrottleMs){e.lastRaycasterCheck=t;var n=null;if(e.hoverDuringDrag||!e.isPointerDragging){var r=this.intersectingObjects(e.pointerPos.x,e.pointerPos.y);e.hoverOrderComparator&&r.sort(function(a,l){return e.hoverOrderComparator(a.object,l.object)});var s=r.find(function(a){return e.hoverFilter(a.object)})||null;n=s?s.object:null,e.intersection=s||null}n!==e.hoverObj&&(e.onHover(n,e.hoverObj,e.intersection),e.tooltip.content(n&&Mt(e.tooltipContent)(n,e.intersection)||null),e.hoverObj=n)}e.tweenGroup.update()}return this},getPointerPos:function(e){var t=e.pointerPos,n=t.x,r=t.y;return{x:n,y:r}},cameraPosition:function(e,t,n,r){var s=e.camera;if(t&&e.initialised){var a=t,l=n||{x:0,y:0,z:0};if(!r)g(a),v(l);else{var u=Object.assign({},s.position),h=x();e.tweenGroup.add(new ca(u).to(a,r).easing(os.Quadratic.Out).onUpdate(g).start()),e.tweenGroup.add(new ca(h).to(l,r/3).easing(os.Quadratic.Out).onUpdate(v).start())}return this}return Object.assign({},s.position,{lookAt:x()});function g(S){var w=S.x,R=S.y,C=S.z;w!==void 0&&(s.position.x=w),R!==void 0&&(s.position.y=R),C!==void 0&&(s.position.z=C)}function v(S){var w=new br.Vector3(S.x,S.y,S.z);e.controls.enabled&&e.controls.target?e.controls.target=w:s.lookAt(w)}function x(){return Object.assign(new br.Vector3(0,0,-1e3).applyQuaternion(s.quaternion).add(s.position))}},zoomToFit:function(e){for(var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:0,n=arguments.length>2&&arguments[2]!==void 0?arguments[2]:10,r=arguments.length,s=new Array(r>3?r-3:0),a=3;a2&&arguments[2]!==void 0?arguments[2]:0,r=arguments.length>3&&arguments[3]!==void 0?arguments[3]:10,s=e.camera;if(t){var a=new br.Vector3(0,0,0),l=Math.max.apply(Math,Lf(Object.entries(t).map(function(S){var w=tde(S,2),R=w[0],C=w[1];return Math.max.apply(Math,Lf(C.map(function(E){return Math.abs(a[R]-E)})))})))*2,u=(1-r*2/e.height)*s.fov,h=l/Math.atan(u*Math.PI/180),g=h/s.aspect,v=Math.max(h,g);if(v>0){var x=a.clone().sub(s.position).normalize().multiplyScalar(-v);this.cameraPosition(x,a,n)}}return this},getBbox:function(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:function(){return!0},n=new br.Box3(new br.Vector3(0,0,0),new br.Vector3(0,0,0)),r=e.objects.filter(t);return r.length?(r.forEach(function(s){return n.expandByObject(s)}),Object.assign.apply(Object,Lf(["x","y","z"].map(function(s){return QAe({},s,[n.min[s],n.max[s]])})))):null},getScreenCoords:function(e,t,n,r){var s=new br.Vector3(t,n,r);return s.project(this.camera()),{x:(s.x+1)*e.width/2,y:-(s.y-1)*e.height/2}},getSceneCoords:function(e,t,n){var r=arguments.length>3&&arguments[3]!==void 0?arguments[3]:0,s=new br.Vector2(t/e.width*2-1,-(n/e.height)*2+1),a=new br.Raycaster;return a.setFromCamera(s,e.camera),Object.assign({},a.ray.at(r,new br.Vector3))},intersectingObjects:function(e,t,n){var r=new br.Vector2(t/e.width*2-1,-(n/e.height)*2+1),s=new br.Raycaster;return s.params.Line.threshold=e.lineHoverPrecision,s.params.Points.threshold=e.pointsHoverPrecision,s.setFromCamera(r,e.camera),s.intersectObjects(e.objects,!0)},renderer:function(e){return e.renderer},scene:function(e){return e.scene},camera:function(e){return e.camera},postProcessingComposer:function(e){return e.postProcessingComposer},controls:function(e){return e.controls},tbControls:function(e){return e.controls}},stateInit:function(){return{scene:new br.Scene,camera:new br.PerspectiveCamera,clock:new br.Clock,tweenGroup:new My,lastRaycasterCheck:0}},init:function(e,t){var n=arguments.length>2&&arguments[2]!==void 0?arguments[2]:{},r=n.controlType,s=r===void 0?"trackball":r,a=n.useWebGPU,l=a===void 0?!1:a,u=n.rendererConfig,h=u===void 0?{}:u,g=n.extraRenderers,v=g===void 0?[]:g,x=n.waitForLoadComplete,S=x===void 0?!0:x;e.innerHTML="",e.appendChild(t.container=document.createElement("div")),t.container.className="scene-container",t.container.style.position="relative",t.container.appendChild(t.navInfo=document.createElement("div")),t.navInfo.className="scene-nav-info",t.navInfo.textContent={orbit:"Left-click: rotate, Mouse-wheel/middle-click: zoom, Right-click: pan",trackball:"Left-click: rotate, Mouse-wheel/middle-click: zoom, Right-click: pan",fly:"WASD: move, R|F: up | down, Q|E: roll, up|down: pitch, left|right: yaw"}[s]||"",t.navInfo.style.display=t.showNavInfo?null:"none",t.tooltip=new jAe(t.container),t.pointerPos=new br.Vector2,t.pointerPos.x=-2,t.pointerPos.y=-2,["pointermove","pointerdown"].forEach(function(w){return t.container.addEventListener(w,function(R){if(w==="pointerdown"&&(t.isPointerPressed=!0),!t.isPointerDragging&&R.type==="pointermove"&&(R.pressure>0||t.isPointerPressed)&&(R.pointerType==="mouse"||R.movementX===void 0||[R.movementX,R.movementY].some(function(B){return Math.abs(B)>1}))&&(t.isPointerDragging=!0),t.enablePointerInteraction){var C=E(t.container);t.pointerPos.x=R.pageX-C.left,t.pointerPos.y=R.pageY-C.top}function E(B){var L=B.getBoundingClientRect(),O=window.pageXOffset||document.documentElement.scrollLeft,z=window.pageYOffset||document.documentElement.scrollTop;return{top:L.top+z,left:L.left+O}}},{passive:!0})}),t.container.addEventListener("pointerup",function(w){t.isPointerPressed&&(t.isPointerPressed=!1,!(t.isPointerDragging&&(t.isPointerDragging=!1,!t.clickAfterDrag))&&requestAnimationFrame(function(){w.button===0&&t.onClick(t.hoverObj||null,w,t.intersection),w.button===2&&t.onRightClick&&t.onRightClick(t.hoverObj||null,w,t.intersection)}))},{passive:!0,capture:!0}),t.container.addEventListener("contextmenu",function(w){t.onRightClick&&w.preventDefault()}),t.renderer=new(l?sO:br.WebGLRenderer)(Object.assign({antialias:!0,alpha:!0},h)),t.renderer.setPixelRatio(Math.min(2,window.devicePixelRatio)),t.container.appendChild(t.renderer.domElement),t.extraRenderers=v,t.extraRenderers.forEach(function(w){w.domElement.style.position="absolute",w.domElement.style.top="0px",w.domElement.style.pointerEvents="none",t.container.appendChild(w.domElement)}),t.postProcessingComposer=new Jce(t.renderer),t.postProcessingComposer.addPass(new ehe(t.scene,t.camera)),t.controls=new{trackball:lce,orbit:Tce,fly:Fce}[s](t.camera,t.renderer.domElement),s==="fly"&&(t.controls.movementSpeed=300,t.controls.rollSpeed=Math.PI/6,t.controls.dragToLook=!0),(s==="trackball"||s==="orbit")&&(t.controls.minDistance=.1,t.controls.maxDistance=t.skyRadius,t.controls.addEventListener("start",function(){t.controlsEngaged=!0}),t.controls.addEventListener("change",function(){t.controlsEngaged&&(t.controlsDragging=!0)}),t.controls.addEventListener("end",function(){t.controlsEngaged=!1,t.controlsDragging=!1})),[t.renderer,t.postProcessingComposer].concat(Lf(t.extraRenderers)).forEach(function(w){return w.setSize(t.width,t.height)}),t.camera.aspect=t.width/t.height,t.camera.updateProjectionMatrix(),t.camera.position.z=1e3,t.scene.add(t.skysphere=new br.Mesh),t.skysphere.visible=!1,t.loadComplete=t.scene.visible=!S,window.scene=t.scene},update:function(e,t){if(e.width&&e.height&&(t.hasOwnProperty("width")||t.hasOwnProperty("height"))){var n,r=e.width,s=e.height;e.container.style.width="".concat(r,"px"),e.container.style.height="".concat(s,"px"),[e.renderer,e.postProcessingComposer].concat(Lf(e.extraRenderers)).forEach(function(S){return S.setSize(r,s)}),e.camera.aspect=r/s;var a=e.viewOffset.slice(0,2);a.some(function(S){return S})&&(n=e.camera).setViewOffset.apply(n,[r,s].concat(Lf(a),[r,s])),e.camera.updateProjectionMatrix()}if(t.hasOwnProperty("viewOffset")){var l,u=e.width,h=e.height,g=e.viewOffset.slice(0,2);g.some(function(S){return S})?(l=e.camera).setViewOffset.apply(l,[u,h].concat(Lf(g),[u,h])):e.camera.clearViewOffset()}if(t.hasOwnProperty("skyRadius")&&e.skyRadius&&(e.controls.hasOwnProperty("maxDistance")&&t.skyRadius&&(e.controls.maxDistance=Math.min(e.controls.maxDistance,e.skyRadius)),e.camera.far=e.skyRadius*2.5,e.camera.updateProjectionMatrix(),e.skysphere.geometry=new br.SphereGeometry(e.skyRadius)),t.hasOwnProperty("backgroundColor")){var v=G0(e.backgroundColor).alpha;v===void 0&&(v=1),e.renderer.setClearColor(new br.Color(Dhe(1,e.backgroundColor)),v)}t.hasOwnProperty("backgroundImageUrl")&&(e.backgroundImageUrl?new br.TextureLoader().load(e.backgroundImageUrl,function(S){S.colorSpace=br.SRGBColorSpace,e.skysphere.material=new br.MeshBasicMaterial({map:S,side:br.BackSide}),e.skysphere.visible=!0,e.onBackgroundImageLoaded&&setTimeout(e.onBackgroundImageLoaded),!e.loadComplete&&x()}):(e.skysphere.visible=!1,e.skysphere.material.map=null,!e.loadComplete&&x())),t.hasOwnProperty("showNavInfo")&&(e.navInfo.style.display=e.showNavInfo?null:"none"),t.hasOwnProperty("lights")&&((t.lights||[]).forEach(function(S){return e.scene.remove(S)}),e.lights.forEach(function(S){return e.scene.add(S)})),t.hasOwnProperty("objects")&&((t.objects||[]).forEach(function(S){return e.scene.remove(S)}),e.objects.forEach(function(S){return e.scene.add(S)}));function x(){e.loadComplete=e.scene.visible=!0}}});function rde(i,e){e===void 0&&(e={});var t=e.insertAt;if(!(typeof document>"u")){var n=document.head||document.getElementsByTagName("head")[0],r=document.createElement("style");r.type="text/css",t==="top"&&n.firstChild?n.insertBefore(r,n.firstChild):n.appendChild(r),r.styleSheet?r.styleSheet.cssText=i:r.appendChild(document.createTextNode(i))}}var sde=`.scene-container .clickable { - cursor: pointer; -}`;rde(sde);function vw(i,e){(e==null||e>i.length)&&(e=i.length);for(var t=0,n=Array(e);t1?l-1:0),h=1;h1&&arguments[1]!==void 0?arguments[1]:{},n=arguments.length>2&&arguments[2]!==void 0?arguments[2]:0,r=a();if(t.lat===void 0&&t.lng===void 0&&t.altitude===void 0)return r;var s=Object.assign({},r,t);if(["lat","lng","altitude"].forEach(function(u){return s[u]=+s[u]}),!n)l(s);else{for(;r.lng-s.lng>180;)r.lng-=360;for(;r.lng-s.lng<-180;)r.lng+=360;e.tweenGroup.add(new ca(r).to(s,n).easing(os.Cubic.InOut).onUpdate(l).start())}return this;function a(){return e.globe.toGeoCoords(e.renderObjs.cameraPosition())}function l(u){var h=u.lat,g=u.lng,v=u.altitude;e.renderObjs.cameraPosition(e.globe.getCoords(h,g,v)),e.globe.setPointOfView(e.renderObjs.camera())}},getScreenCoords:function(e){for(var t,n=arguments.length,r=new Array(n>1?n-1:0),s=1;slocalStorage.getItem("radio-theme")||"default"),[a,l]=Le.useState([]),[u,h]=Le.useState(null),[g,v]=Le.useState([]),[x,S]=Le.useState(!1),[w,R]=Le.useState({}),[C,E]=Le.useState([]),[B,L]=Le.useState(""),[O,z]=Le.useState(""),[G,k]=Le.useState(""),[H,F]=Le.useState([]),[V,Y]=Le.useState(!1),[ee,ne]=Le.useState([]),[se,te]=Le.useState(!1),[Q,le]=Le.useState(!1),[de,Te]=Le.useState(.5),[Se,ue]=Le.useState(null),[be,We]=Le.useState(!1),[Ee,Ge]=Le.useState(!1),ye=Le.useRef(void 0),Pe=Le.useRef(void 0),pt=Le.useRef(B);Le.useEffect(()=>{fetch("/api/radio/places").then(X=>X.json()).then(l).catch(console.error),fetch("/api/radio/guilds").then(X=>X.json()).then(X=>{if(E(X),X.length>0){L(X[0].id);const oe=X[0].voiceChannels.find(Me=>Me.members>0)??X[0].voiceChannels[0];oe&&z(oe.id)}}).catch(console.error),fetch("/api/radio/favorites").then(X=>X.json()).then(ne).catch(console.error)},[]),Le.useEffect(()=>{pt.current=B},[B]),Le.useEffect(()=>{i!=null&&i.guildId&&"playing"in i&&i.type!=="radio_voicestats"?R(X=>{if(i.playing)return{...X,[i.guildId]:i.playing};const oe={...X};return delete oe[i.guildId],oe}):i!=null&&i.playing&&!(i!=null&&i.guildId)&&R(i.playing),i!=null&&i.favorites&&ne(i.favorites),i!=null&&i.volumes&&B&&i.volumes[B]!=null&&Te(i.volumes[B]),(i==null?void 0:i.volume)!=null&&(i==null?void 0:i.guildId)===B&&Te(i.volume),(i==null?void 0:i.type)==="radio_voicestats"&&i.guildId===pt.current&&ue({voicePing:i.voicePing,gatewayPing:i.gatewayPing,status:i.status,channelName:i.channelName,connectedSince:i.connectedSince})},[i,B]),Le.useEffect(()=>{if(localStorage.setItem("radio-theme",r),t.current&&e.current){const oe=getComputedStyle(e.current.parentElement).getPropertyValue("--accent-rgb").trim();t.current.pointColor(()=>`rgba(${oe}, 0.85)`).atmosphereColor(`rgba(${oe}, 0.25)`)}},[r]);const vt=Le.useRef(u);vt.current=u;const Tt=Le.useRef(se);Tt.current=se;const It=Le.useCallback(()=>{var oe;const X=(oe=t.current)==null?void 0:oe.controls();X&&(X.autoRotate=!1),n.current&&clearTimeout(n.current),n.current=setTimeout(()=>{var Fe;if(vt.current||Tt.current)return;const Me=(Fe=t.current)==null?void 0:Fe.controls();Me&&(Me.autoRotate=!0)},5e3)},[]);Le.useEffect(()=>{var oe;const X=(oe=t.current)==null?void 0:oe.controls();X&&(u||se?(X.autoRotate=!1,n.current&&clearTimeout(n.current)):X.autoRotate=!0)},[u,se]);const Qe=Le.useRef(void 0);Qe.current=X=>{h(X),te(!1),S(!0),v([]),It(),t.current&&t.current.pointOfView({lat:X.geo[1],lng:X.geo[0],altitude:.4},800),fetch(`/api/radio/place/${X.id}/channels`).then(oe=>oe.json()).then(oe=>{v(oe),S(!1)}).catch(()=>S(!1))},Le.useEffect(()=>{const X=e.current;if(!X)return;X.clientWidth>0&&X.clientHeight>0&&Ge(!0);const oe=new ResizeObserver(Me=>{for(const Fe of Me){const{width:ze,height:Et}=Fe.contentRect;ze>0&&Et>0&&Ge(!0)}});return oe.observe(X),()=>oe.disconnect()},[]),Le.useEffect(()=>{if(!e.current||a.length===0)return;const X=e.current.clientWidth,oe=e.current.clientHeight;if(t.current){t.current.pointsData(a),X>0&&oe>0&&t.current.width(X).height(oe);return}if(X===0||oe===0)return;const Fe=getComputedStyle(e.current.parentElement).getPropertyValue("--accent-rgb").trim()||"230, 126, 34",ze=new _de(e.current).backgroundColor("rgba(0,0,0,0)").atmosphereColor(`rgba(${Fe}, 0.25)`).atmosphereAltitude(.12).globeImageUrl("/nasa-blue-marble.jpg").pointsData(a).pointLat(jt=>jt.geo[1]).pointLng(jt=>jt.geo[0]).pointColor(()=>`rgba(${Fe}, 0.85)`).pointRadius(jt=>Math.max(.12,Math.min(.45,.06+(jt.size??1)*.005))).pointAltitude(.001).pointResolution(24).pointLabel(jt=>`

`).onPointClick(jt=>{var kt;return(kt=Qe.current)==null?void 0:kt.call(Qe,jt)}).width(e.current.clientWidth).height(e.current.clientHeight);ze.renderer().setPixelRatio(window.devicePixelRatio),ze.pointOfView({lat:48,lng:10,altitude:GS});const Et=ze.controls();Et&&(Et.autoRotate=!0,Et.autoRotateSpeed=.3);let Rt=GS;const Ht=()=>{const kt=ze.pointOfView().altitude;if(Math.abs(kt-Rt)/Rt<.05)return;Rt=kt;const qt=Math.sqrt(kt/GS);ze.pointRadius(In=>Math.max(.12,Math.min(.45,.06+(In.size??1)*.005))*Math.max(.15,Math.min(2.5,qt)))};Et.addEventListener("change",Ht),t.current=ze;const Xt=e.current,yt=()=>It();Xt.addEventListener("mousedown",yt),Xt.addEventListener("touchstart",yt),Xt.addEventListener("wheel",yt);const Zt=()=>{if(e.current&&t.current){const jt=e.current.clientWidth,kt=e.current.clientHeight;jt>0&&kt>0&&t.current.width(jt).height(kt)}};window.addEventListener("resize",Zt);const sn=new ResizeObserver(()=>Zt());return sn.observe(Xt),()=>{Et.removeEventListener("change",Ht),Xt.removeEventListener("mousedown",yt),Xt.removeEventListener("touchstart",yt),Xt.removeEventListener("wheel",yt),window.removeEventListener("resize",Zt),sn.disconnect()}},[a,It,Ee]);const it=Le.useCallback(async(X,oe,Me,Fe)=>{if(!(!B||!O)){le(!0);try{(await(await fetch("/api/radio/play",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({guildId:B,voiceChannelId:O,stationId:X,stationName:oe,placeName:Me??(u==null?void 0:u.title)??"",country:Fe??(u==null?void 0:u.country)??""})})).json()).ok&&(R(Rt=>{var Ht,Xt;return{...Rt,[B]:{stationId:X,stationName:oe,placeName:Me??(u==null?void 0:u.title)??"",country:Fe??(u==null?void 0:u.country)??"",startedAt:new Date().toISOString(),channelName:((Xt=(Ht=C.find(yt=>yt.id===B))==null?void 0:Ht.voiceChannels.find(yt=>yt.id===O))==null?void 0:Xt.name)??""}}}),It())}catch(ze){console.error(ze)}le(!1)}},[B,O,u,C]),he=Le.useCallback(async()=>{B&&(await fetch("/api/radio/stop",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({guildId:B})}),R(X=>{const oe={...X};return delete oe[B],oe}))},[B]),Ft=Le.useCallback(X=>{if(k(X),ye.current&&clearTimeout(ye.current),!X.trim()){F([]),Y(!1);return}ye.current=setTimeout(async()=>{try{const Me=await(await fetch(`/api/radio/search?q=${encodeURIComponent(X)}`)).json();F(Me),Y(!0)}catch{F([])}},350)},[]),ct=Le.useCallback(X=>{var oe,Me,Fe;if(Y(!1),k(""),F([]),X.type==="channel"){const ze=(oe=X.url.match(/\/listen\/[^/]+\/([^/]+)/))==null?void 0:oe[1];ze&&it(ze,X.title,X.subtitle,"")}else if(X.type==="place"){const ze=(Me=X.url.match(/\/visit\/[^/]+\/([^/]+)/))==null?void 0:Me[1],Et=a.find(Rt=>Rt.id===ze);Et&&((Fe=Qe.current)==null||Fe.call(Qe,Et))}},[a,it]),Dt=Le.useCallback(async(X,oe)=>{try{const Fe=await(await fetch("/api/radio/favorites",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({stationId:X,stationName:oe,placeName:(u==null?void 0:u.title)??"",country:(u==null?void 0:u.country)??"",placeId:(u==null?void 0:u.id)??""})})).json();Fe.favorites&&ne(Fe.favorites)}catch{}},[u]),gt=Le.useCallback(X=>{Te(X),B&&(Pe.current&&clearTimeout(Pe.current),Pe.current=setTimeout(()=>{fetch("/api/radio/volume",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({guildId:B,volume:X})}).catch(console.error)},100))},[B]),tn=X=>ee.some(oe=>oe.stationId===X),_t=B?w[B]:null,fe=C.find(X=>X.id===B);return W.jsxs("div",{className:"radio-container","data-theme":r,children:[W.jsxs("header",{className:"radio-topbar",children:[W.jsxs("div",{className:"radio-topbar-left",children:[W.jsx("span",{className:"radio-topbar-logo",children:"🌍"}),W.jsx("span",{className:"radio-topbar-title",children:"World Radio"}),C.length>1&&W.jsx("select",{className:"radio-sel",value:B,onChange:X=>{L(X.target.value);const oe=C.find(Fe=>Fe.id===X.target.value),Me=(oe==null?void 0:oe.voiceChannels.find(Fe=>Fe.members>0))??(oe==null?void 0:oe.voiceChannels[0]);z((Me==null?void 0:Me.id)??"")},children:C.map(X=>W.jsx("option",{value:X.id,children:X.name},X.id))}),W.jsxs("select",{className:"radio-sel",value:O,onChange:X=>z(X.target.value),children:[W.jsx("option",{value:"",children:"Voice Channel..."}),fe==null?void 0:fe.voiceChannels.map(X=>W.jsxs("option",{value:X.id,children:["🔊"," ",X.name,X.members>0?` (${X.members})`:""]},X.id))]})]}),_t&&W.jsxs("div",{className:"radio-topbar-np",children:[W.jsxs("div",{className:"radio-eq radio-eq-np",children:[W.jsx("span",{}),W.jsx("span",{}),W.jsx("span",{})]}),W.jsxs("div",{className:"radio-np-info",children:[W.jsx("span",{className:"radio-np-name",children:_t.stationName}),W.jsxs("span",{className:"radio-np-loc",children:[_t.placeName,_t.country?`, ${_t.country}`:""]})]})]}),W.jsxs("div",{className:"radio-topbar-right",children:[_t&&W.jsxs(W.Fragment,{children:[W.jsxs("div",{className:"radio-volume",children:[W.jsx("span",{className:"radio-volume-icon",children:de===0?"🔇":de<.4?"🔉":"🔊"}),W.jsx("input",{type:"range",className:"radio-volume-slider",min:0,max:1,step:.01,value:de,onChange:X=>gt(Number(X.target.value))}),W.jsxs("span",{className:"radio-volume-val",children:[Math.round(de*100),"%"]})]}),W.jsxs("div",{className:"radio-conn",onClick:()=>We(!0),title:"Verbindungsdetails",children:[W.jsx("span",{className:"radio-conn-dot"}),"Verbunden",(Se==null?void 0:Se.voicePing)!=null&&W.jsxs("span",{className:"radio-conn-ping",children:[Se.voicePing,"ms"]})]}),W.jsxs("button",{className:"radio-topbar-stop",onClick:he,children:["⏹"," Stop"]})]}),W.jsx("div",{className:"radio-theme-inline",children:yde.map(X=>W.jsx("div",{className:`radio-theme-dot ${r===X.id?"active":""}`,style:{background:X.color},title:X.label,onClick:()=>s(X.id)},X.id))})]})]}),W.jsxs("div",{className:"radio-globe-wrap",children:[W.jsx("div",{className:"radio-globe",ref:e}),W.jsxs("div",{className:"radio-search",children:[W.jsxs("div",{className:"radio-search-wrap",children:[W.jsx("span",{className:"radio-search-icon",children:"🔍"}),W.jsx("input",{className:"radio-search-input",type:"text",placeholder:"Sender oder Stadt suchen...",value:G,onChange:X=>Ft(X.target.value),onFocus:()=>{H.length&&Y(!0)}}),G&&W.jsx("button",{className:"radio-search-clear",onClick:()=>{k(""),F([]),Y(!1)},children:"✕"})]}),V&&H.length>0&&W.jsx("div",{className:"radio-search-results",children:H.slice(0,12).map(X=>W.jsxs("button",{className:"radio-search-result",onClick:()=>ct(X),children:[W.jsx("span",{className:"radio-search-result-icon",children:X.type==="channel"?"📻":X.type==="place"?"📍":"🌍"}),W.jsxs("div",{className:"radio-search-result-text",children:[W.jsx("span",{className:"radio-search-result-title",children:X.title}),W.jsx("span",{className:"radio-search-result-sub",children:X.subtitle})]})]},X.id+X.url))})]}),!u&&!se&&W.jsxs("button",{className:"radio-fab",onClick:()=>{te(!0),h(null)},title:"Favoriten",children:["⭐",ee.length>0&&W.jsx("span",{className:"radio-fab-badge",children:ee.length})]}),se&&W.jsxs("div",{className:"radio-panel open",children:[W.jsxs("div",{className:"radio-panel-header",children:[W.jsxs("h3",{children:["⭐"," Favoriten"]}),W.jsx("button",{className:"radio-panel-close",onClick:()=>te(!1),children:"✕"})]}),W.jsx("div",{className:"radio-panel-body",children:ee.length===0?W.jsx("div",{className:"radio-panel-empty",children:"Noch keine Favoriten"}):ee.map(X=>W.jsxs("div",{className:`radio-station ${(_t==null?void 0:_t.stationId)===X.stationId?"playing":""}`,children:[W.jsxs("div",{className:"radio-station-info",children:[W.jsx("span",{className:"radio-station-name",children:X.stationName}),W.jsxs("span",{className:"radio-station-loc",children:[X.placeName,", ",X.country]})]}),W.jsxs("div",{className:"radio-station-btns",children:[W.jsx("button",{className:"radio-btn-play",onClick:()=>it(X.stationId,X.stationName,X.placeName,X.country),disabled:!O||Q,children:"▶"}),W.jsx("button",{className:"radio-btn-fav active",onClick:()=>Dt(X.stationId,X.stationName),children:"★"})]})]},X.stationId))})]}),u&&!se&&W.jsxs("div",{className:"radio-panel open",children:[W.jsxs("div",{className:"radio-panel-header",children:[W.jsxs("div",{children:[W.jsx("h3",{children:u.title}),W.jsx("span",{className:"radio-panel-sub",children:u.country})]}),W.jsx("button",{className:"radio-panel-close",onClick:()=>h(null),children:"✕"})]}),W.jsx("div",{className:"radio-panel-body",children:x?W.jsxs("div",{className:"radio-panel-loading",children:[W.jsx("div",{className:"radio-spinner"}),"Sender werden geladen..."]}):g.length===0?W.jsx("div",{className:"radio-panel-empty",children:"Keine Sender gefunden"}):g.map(X=>W.jsxs("div",{className:`radio-station ${(_t==null?void 0:_t.stationId)===X.id?"playing":""}`,children:[W.jsxs("div",{className:"radio-station-info",children:[W.jsx("span",{className:"radio-station-name",children:X.title}),(_t==null?void 0:_t.stationId)===X.id&&W.jsxs("span",{className:"radio-station-live",children:[W.jsxs("span",{className:"radio-eq",children:[W.jsx("span",{}),W.jsx("span",{}),W.jsx("span",{})]}),"Live"]})]}),W.jsxs("div",{className:"radio-station-btns",children:[(_t==null?void 0:_t.stationId)===X.id?W.jsx("button",{className:"radio-btn-stop",onClick:he,children:"⏹"}):W.jsx("button",{className:"radio-btn-play",onClick:()=>it(X.id,X.title),disabled:!O||Q,children:"▶"}),W.jsx("button",{className:`radio-btn-fav ${tn(X.id)?"active":""}`,onClick:()=>Dt(X.id,X.title),children:tn(X.id)?"★":"☆"})]})]},X.id))})]}),W.jsxs("div",{className:"radio-counter",children:["📻"," ",a.length.toLocaleString("de-DE")," Sender weltweit"]}),W.jsx("a",{className:"radio-attribution",href:"https://science.nasa.gov/earth/earth-observatory/blue-marble-next-generation/",target:"_blank",rel:"noreferrer",children:"Imagery © NASA Blue Marble"})]}),be&&(()=>{const X=Se!=null&&Se.connectedSince?Math.floor((Date.now()-new Date(Se.connectedSince).getTime())/1e3):0,oe=Math.floor(X/3600),Me=Math.floor(X%3600/60),Fe=X%60,ze=oe>0?`${oe}h ${String(Me).padStart(2,"0")}m ${String(Fe).padStart(2,"0")}s`:Me>0?`${Me}m ${String(Fe).padStart(2,"0")}s`:`${Fe}s`,Et=Rt=>Rt==null?"var(--text-faint)":Rt<80?"var(--success)":Rt<150?"#f0a830":"#e04040";return W.jsx("div",{className:"radio-modal-overlay",onClick:()=>We(!1),children:W.jsxs("div",{className:"radio-modal",onClick:Rt=>Rt.stopPropagation(),children:[W.jsxs("div",{className:"radio-modal-header",children:[W.jsx("span",{children:"📡"}),W.jsx("span",{children:"Verbindungsdetails"}),W.jsx("button",{className:"radio-modal-close",onClick:()=>We(!1),children:"✕"})]}),W.jsxs("div",{className:"radio-modal-body",children:[W.jsxs("div",{className:"radio-modal-stat",children:[W.jsx("span",{className:"radio-modal-label",children:"Voice Ping"}),W.jsxs("span",{className:"radio-modal-value",children:[W.jsx("span",{className:"radio-modal-dot",style:{background:Et((Se==null?void 0:Se.voicePing)??null)}}),(Se==null?void 0:Se.voicePing)!=null?`${Se.voicePing} ms`:"---"]})]}),W.jsxs("div",{className:"radio-modal-stat",children:[W.jsx("span",{className:"radio-modal-label",children:"Gateway Ping"}),W.jsxs("span",{className:"radio-modal-value",children:[W.jsx("span",{className:"radio-modal-dot",style:{background:Et((Se==null?void 0:Se.gatewayPing)??null)}}),Se&&Se.gatewayPing>=0?`${Se.gatewayPing} ms`:"---"]})]}),W.jsxs("div",{className:"radio-modal-stat",children:[W.jsx("span",{className:"radio-modal-label",children:"Status"}),W.jsx("span",{className:"radio-modal-value",style:{color:(Se==null?void 0:Se.status)==="ready"?"var(--success)":"#f0a830"},children:(Se==null?void 0:Se.status)==="ready"?"Verbunden":(Se==null?void 0:Se.status)??"Warte auf Verbindung"})]}),W.jsxs("div",{className:"radio-modal-stat",children:[W.jsx("span",{className:"radio-modal-label",children:"Kanal"}),W.jsx("span",{className:"radio-modal-value",children:(Se==null?void 0:Se.channelName)||"---"})]}),W.jsxs("div",{className:"radio-modal-stat",children:[W.jsx("span",{className:"radio-modal-label",children:"Verbunden seit"}),W.jsx("span",{className:"radio-modal-value",children:ze||"---"})]})]})]})})})()]})}function bde(i,e,t=365){const n=new Date(Date.now()+t*24*60*60*1e3).toUTCString();document.cookie=`${encodeURIComponent(i)}=${encodeURIComponent(e)}; expires=${n}; path=/; SameSite=Lax`}function Sde(i){const e=`${encodeURIComponent(i)}=`,t=document.cookie.split(";");for(const n of t){const r=n.trim();if(r.startsWith(e))return decodeURIComponent(r.slice(e.length))}return null}const us="/api/soundboard";async function d7(i,e,t,n){const r=new URL(`${us}/sounds`,window.location.origin);i&&r.searchParams.set("q",i),e!==void 0&&r.searchParams.set("folder",e),r.searchParams.set("fuzzy","0");const s=await fetch(r.toString());if(!s.ok)throw new Error("Fehler beim Laden der Sounds");return s.json()}async function Tde(){const i=await fetch(`${us}/analytics`);if(!i.ok)throw new Error("Fehler beim Laden der Analytics");return i.json()}async function wde(){const i=await fetch(`${us}/categories`,{credentials:"include"});if(!i.ok)throw new Error("Fehler beim Laden der Kategorien");return i.json()}async function Mde(){const i=await fetch(`${us}/channels`);if(!i.ok)throw new Error("Fehler beim Laden der Channels");return i.json()}async function Ede(){const i=await fetch(`${us}/selected-channels`);if(!i.ok)throw new Error("Fehler beim Laden der Channel-Auswahl");const e=await i.json();return(e==null?void 0:e.selected)||{}}async function Cde(i,e){if(!(await fetch(`${us}/selected-channel`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({guildId:i,channelId:e})})).ok)throw new Error("Channel-Auswahl setzen fehlgeschlagen")}async function Rde(i,e,t,n,r){const s=await fetch(`${us}/play`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({soundName:i,guildId:e,channelId:t,volume:n,relativePath:r})});if(!s.ok){const a=await s.json().catch(()=>({}));throw new Error((a==null?void 0:a.error)||"Play fehlgeschlagen")}}async function Nde(i,e,t,n,r){const s=await fetch(`${us}/play-url`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({url:i,guildId:e,channelId:t,volume:n,filename:r})}),a=await s.json().catch(()=>({}));if(!s.ok)throw new Error((a==null?void 0:a.error)||"Play-URL fehlgeschlagen");return a}async function Dde(i,e){const t=await fetch(`${us}/download-url`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({url:i,filename:e})}),n=await t.json().catch(()=>({}));if(!t.ok)throw new Error((n==null?void 0:n.error)||"Download fehlgeschlagen");return n}async function Pde(i,e){if(!(await fetch(`${us}/party/start`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({guildId:i,channelId:e})})).ok)throw new Error("Partymode Start fehlgeschlagen")}async function Lde(i){if(!(await fetch(`${us}/party/stop`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({guildId:i})})).ok)throw new Error("Partymode Stop fehlgeschlagen")}async function p7(i,e){const t=await fetch(`${us}/volume`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({guildId:i,volume:e})});if(!t.ok){const n=await t.json().catch(()=>({}));throw new Error((n==null?void 0:n.error)||"Volume aendern fehlgeschlagen")}}async function Ude(i){const e=new URL(`${us}/volume`,window.location.origin);e.searchParams.set("guildId",i);const t=await fetch(e.toString());if(!t.ok)throw new Error("Fehler beim Laden der Lautstaerke");const n=await t.json();return typeof(n==null?void 0:n.volume)=="number"?n.volume:1}async function Bde(){const i=await fetch(`${us}/admin/status`,{credentials:"include"});if(!i.ok)return!1;const e=await i.json();return!!(e!=null&&e.authenticated)}async function Ode(i){return(await fetch(`${us}/admin/login`,{method:"POST",headers:{"Content-Type":"application/json"},credentials:"include",body:JSON.stringify({password:i})})).ok}async function Ide(){await fetch(`${us}/admin/logout`,{method:"POST",credentials:"include"})}async function Fde(i){if(!(await fetch(`${us}/admin/sounds/delete`,{method:"POST",headers:{"Content-Type":"application/json"},credentials:"include",body:JSON.stringify({paths:i})})).ok)throw new Error("Loeschen fehlgeschlagen")}async function kde(i,e){const t=await fetch(`${us}/admin/sounds/rename`,{method:"POST",headers:{"Content-Type":"application/json"},credentials:"include",body:JSON.stringify({from:i,to:e})});if(!t.ok)throw new Error("Umbenennen fehlgeschlagen");const n=await t.json();return n==null?void 0:n.to}function zde(i,e){return new Promise((t,n)=>{const r=new FormData;r.append("files",i);const s=new XMLHttpRequest;s.open("POST",`${us}/upload`),s.upload.onprogress=a=>{a.lengthComputable&&e(Math.round(a.loaded/a.total*100))},s.onload=()=>{var a,l;if(s.status===200)try{const u=JSON.parse(s.responseText);t(((l=(a=u.files)==null?void 0:a[0])==null?void 0:l.name)??i.name)}catch{t(i.name)}else try{n(new Error(JSON.parse(s.responseText).error))}catch{n(new Error(`HTTP ${s.status}`))}},s.onerror=()=>n(new Error("Netzwerkfehler")),s.send(r)})}const Gde=[{id:"default",color:"#5865f2",label:"Discord"},{id:"purple",color:"#9b59b6",label:"Midnight"},{id:"forest",color:"#2ecc71",label:"Forest"},{id:"sunset",color:"#e67e22",label:"Sunset"},{id:"ocean",color:"#3498db",label:"Ocean"}],m7=["#3b82f6","#f59e0b","#8b5cf6","#ec4899","#14b8a6","#f97316","#06b6d4","#ef4444","#a855f7","#84cc16","#d946ef","#0ea5e9","#f43f5e","#10b981"];function qde({data:i}){const[e,t]=Le.useState([]),[n,r]=Le.useState(0),[s,a]=Le.useState([]),[l,u]=Le.useState([]),[h,g]=Le.useState({totalSounds:0,totalPlays:0,mostPlayed:[]}),[v,x]=Le.useState("all"),[S,w]=Le.useState(""),[R,C]=Le.useState(""),[E,B]=Le.useState(""),[L,O]=Le.useState(!1),[z,G]=Le.useState(null),[k,H]=Le.useState([]),[F,V]=Le.useState(""),Y=Le.useRef(""),[ee,ne]=Le.useState(!1),[se,te]=Le.useState(1),[Q,le]=Le.useState(""),[de,Te]=Le.useState({}),[Se,ue]=Le.useState(()=>localStorage.getItem("jb-theme")||"default"),[be,We]=Le.useState(()=>parseInt(localStorage.getItem("jb-card-size")||"110")),[Ee,Ge]=Le.useState(!1),[ye,Pe]=Le.useState([]),pt=Le.useRef(!1),vt=Le.useRef(void 0),[Tt,It]=Le.useState(!1),[Qe,it]=Le.useState(!1),[he,Ft]=Le.useState(""),[ct,Dt]=Le.useState([]),[gt,tn]=Le.useState(!1),[_t,fe]=Le.useState(""),[X,oe]=Le.useState({}),[Me,Fe]=Le.useState(""),[ze,Et]=Le.useState(""),[Rt,Ht]=Le.useState(!1),[Xt,yt]=Le.useState([]),[Zt,sn]=Le.useState(!1),jt=Le.useRef(0),kt=Le.useRef(void 0),[qt,In]=Le.useState(null),[Mi,ge]=Le.useState(!1),[Wt,nt]=Le.useState(null),[xt,$t]=Le.useState(""),[zt,xn]=Le.useState(null),[qi,rr]=Le.useState(0);Le.useEffect(()=>{pt.current=Ee},[Ee]),Le.useEffect(()=>{Y.current=F},[F]),Le.useEffect(()=>{const _e=cn=>{var Yn;Array.from(((Yn=cn.dataTransfer)==null?void 0:Yn.items)??[]).some(yi=>yi.kind==="file")&&(jt.current++,Ht(!0))},at=()=>{jt.current=Math.max(0,jt.current-1),jt.current===0&&Ht(!1)},Ct=cn=>cn.preventDefault(),Jt=cn=>{var yi;cn.preventDefault(),jt.current=0,Ht(!1);const Yn=Array.from(((yi=cn.dataTransfer)==null?void 0:yi.files)??[]).filter(js=>/\.(mp3|wav)$/i.test(js.name));Yn.length&&Hs(Yn)};return window.addEventListener("dragenter",_e),window.addEventListener("dragleave",at),window.addEventListener("dragover",Ct),window.addEventListener("drop",Jt),()=>{window.removeEventListener("dragenter",_e),window.removeEventListener("dragleave",at),window.removeEventListener("dragover",Ct),window.removeEventListener("drop",Jt)}},[Tt]);const pn=Le.useCallback((_e,at="info")=>{nt({msg:_e,type:at}),setTimeout(()=>nt(null),3e3)},[]),$i=Le.useCallback(_e=>_e.relativePath??_e.fileName,[]),Jr=["youtube.com","www.youtube.com","m.youtube.com","youtu.be","music.youtube.com","instagram.com","www.instagram.com"],Ze=Le.useCallback(_e=>{const at=_e.trim();return!at||/^https?:\/\//i.test(at)?at:"https://"+at},[]),At=Le.useCallback(_e=>{try{const at=new URL(Ze(_e)),Ct=at.hostname.toLowerCase();return!!(at.pathname.toLowerCase().endsWith(".mp3")||Jr.some(Jt=>Ct===Jt||Ct.endsWith("."+Jt)))}catch{return!1}},[Ze]),Ot=Le.useCallback(_e=>{try{const at=new URL(Ze(_e)),Ct=at.hostname.toLowerCase();return Ct.includes("youtube")||Ct==="youtu.be"?"youtube":Ct.includes("instagram")?"instagram":at.pathname.toLowerCase().endsWith(".mp3")?"mp3":null}catch{return null}},[Ze]),st=F?F.split(":")[0]:"",d=F?F.split(":")[1]:"",J=Le.useMemo(()=>k.find(_e=>`${_e.guildId}:${_e.channelId}`===F),[k,F]);Le.useEffect(()=>{const _e=()=>{const Ct=new Date,Jt=String(Ct.getHours()).padStart(2,"0"),cn=String(Ct.getMinutes()).padStart(2,"0"),Yn=String(Ct.getSeconds()).padStart(2,"0");$t(`${Jt}:${cn}:${Yn}`)};_e();const at=setInterval(_e,1e3);return()=>clearInterval(at)},[]),Le.useEffect(()=>{(async()=>{try{const[_e,at]=await Promise.all([Mde(),Ede()]);if(H(_e),_e.length){const Ct=_e[0].guildId,Jt=at[Ct],cn=Jt&&_e.find(Yn=>Yn.guildId===Ct&&Yn.channelId===Jt);V(cn?`${Ct}:${Jt}`:`${_e[0].guildId}:${_e[0].channelId}`)}}catch(_e){pn((_e==null?void 0:_e.message)||"Channel-Fehler","error")}try{It(await Bde())}catch{}try{const _e=await wde();u(_e.categories||[])}catch{}})()},[]),Le.useEffect(()=>{localStorage.setItem("jb-theme",Se)},[Se]);const $n=Le.useRef(null);Le.useEffect(()=>{const _e=$n.current;if(!_e)return;_e.style.setProperty("--card-size",be+"px");const at=be/110;_e.style.setProperty("--card-emoji",Math.round(28*at)+"px"),_e.style.setProperty("--card-font",Math.max(9,Math.round(11*at))+"px"),localStorage.setItem("jb-card-size",String(be))},[be]),Le.useEffect(()=>{var _e,at,Ct,Jt,cn,Yn,yi,js;if(i){if(i.soundboard){const pi=i.soundboard;Array.isArray(pi.party)&&Pe(pi.party);try{const Pr=pi.selected||{},Ei=(_e=Y.current)==null?void 0:_e.split(":")[0];Ei&&Pr[Ei]&&V(`${Ei}:${Pr[Ei]}`)}catch{}try{const Pr=pi.volumes||{},Ei=(at=Y.current)==null?void 0:at.split(":")[0];Ei&&typeof Pr[Ei]=="number"&&te(Pr[Ei])}catch{}try{const Pr=pi.nowplaying||{},Ei=(Ct=Y.current)==null?void 0:Ct.split(":")[0];Ei&&typeof Pr[Ei]=="string"&&le(Pr[Ei])}catch{}try{const Pr=pi.voicestats||{},Ei=(Jt=Y.current)==null?void 0:Jt.split(":")[0];Ei&&Pr[Ei]&&In(Pr[Ei])}catch{}}if(i.type==="soundboard_party")Pe(pi=>{const Pr=new Set(pi);return i.active?Pr.add(i.guildId):Pr.delete(i.guildId),Array.from(Pr)});else if(i.type==="soundboard_channel"){const pi=(cn=Y.current)==null?void 0:cn.split(":")[0];i.guildId===pi&&V(`${i.guildId}:${i.channelId}`)}else if(i.type==="soundboard_volume"){const pi=(Yn=Y.current)==null?void 0:Yn.split(":")[0];i.guildId===pi&&typeof i.volume=="number"&&te(i.volume)}else if(i.type==="soundboard_nowplaying"){const pi=(yi=Y.current)==null?void 0:yi.split(":")[0];i.guildId===pi&&le(i.name||"")}else if(i.type==="soundboard_voicestats"){const pi=(js=Y.current)==null?void 0:js.split(":")[0];i.guildId===pi&&In({voicePing:i.voicePing,gatewayPing:i.gatewayPing,status:i.status,channelName:i.channelName,connectedSince:i.connectedSince})}}},[i]),Le.useEffect(()=>{Ge(st?ye.includes(st):!1)},[F,ye,st]),Le.useEffect(()=>{(async()=>{try{let _e="__all__";v==="recent"?_e="__recent__":S&&(_e=S);const at=await d7(R,_e,void 0,!1);t(at.items),r(at.total),a(at.folders)}catch(_e){pn((_e==null?void 0:_e.message)||"Sounds-Fehler","error")}})()},[v,S,R,qi,pn]),Le.useEffect(()=>{Gn()},[qi]),Le.useEffect(()=>{const _e=Sde("favs");if(_e)try{Te(JSON.parse(_e))}catch{}},[]),Le.useEffect(()=>{try{bde("favs",JSON.stringify(de))}catch{}},[de]),Le.useEffect(()=>{F&&(async()=>{try{const _e=await Ude(st);te(_e)}catch{}})()},[F]),Le.useEffect(()=>{const _e=()=>{ne(!1),xn(null)};return document.addEventListener("click",_e),()=>document.removeEventListener("click",_e)},[]),Le.useEffect(()=>{Qe&&Tt&&ae()},[Qe,Tt]);async function Gn(){try{const _e=await Tde();g(_e)}catch{}}async function Xn(_e){if(!F)return pn("Bitte einen Voice-Channel auswaehlen","error");try{await Rde(_e.name,st,d,se,_e.relativePath),le(_e.name),Gn()}catch(at){pn((at==null?void 0:at.message)||"Play fehlgeschlagen","error")}}function un(){var Jt;const _e=Ze(E);if(!_e)return pn("Bitte einen Link eingeben","error");if(!At(_e))return pn("Nur YouTube, Instagram oder direkte MP3-Links","error");const at=Ot(_e);let Ct="";if(at==="mp3")try{Ct=((Jt=new URL(_e).pathname.split("/").pop())==null?void 0:Jt.replace(/\.mp3$/i,""))??""}catch{}G({url:_e,type:at,filename:Ct,phase:"input"})}async function qn(){if(z){G(_e=>_e?{..._e,phase:"downloading"}:null);try{let _e;const at=z.filename.trim()||void 0;F&&st&&d?_e=(await Nde(z.url,st,d,se,at)).saved:_e=(await Dde(z.url,at)).saved,G(Ct=>Ct?{...Ct,phase:"done",savedName:_e}:null),B(""),rr(Ct=>Ct+1),Gn(),setTimeout(()=>G(null),2500)}catch(_e){G(at=>at?{...at,phase:"error",error:(_e==null?void 0:_e.message)||"Fehler"}:null)}}}async function Hs(_e){if(!Tt){pn("Admin-Login erforderlich zum Hochladen","error");return}kt.current&&clearTimeout(kt.current);const at=_e.map(Jt=>({id:Math.random().toString(36).slice(2),file:Jt,status:"waiting",progress:0}));yt(at),sn(!0);const Ct=[...at];for(let Jt=0;Jt{Ct[Jt]={...Ct[Jt],progress:Yn},yt([...Ct])});Ct[Jt]={...Ct[Jt],status:"done",progress:100,savedName:cn}}catch(cn){Ct[Jt]={...Ct[Jt],status:"error",error:(cn==null?void 0:cn.message)??"Fehler"}}yt([...Ct])}rr(Jt=>Jt+1),Gn(),kt.current=setTimeout(()=>{sn(!1),yt([])},3500)}async function li(){if(F){le("");try{await fetch(`${us}/stop?guildId=${encodeURIComponent(st)}`,{method:"POST"})}catch{}}}async function Fn(){if(!Z.length||!F)return;const _e=Z[Math.floor(Math.random()*Z.length)];Xn(_e)}async function cs(){if(Ee){await li();try{await Lde(st)}catch{}}else{if(!F)return pn("Bitte einen Channel auswaehlen","error");try{await Pde(st,d)}catch{}}}async function Ma(_e){const at=`${_e.guildId}:${_e.channelId}`;V(at),ne(!1);try{await Cde(_e.guildId,_e.channelId)}catch{}}function Ul(_e){Te(at=>({...at,[_e]:!at[_e]}))}async function ae(){tn(!0);try{const _e=await d7("","__all__",void 0,!1);Dt(_e.items||[])}catch(_e){pn((_e==null?void 0:_e.message)||"Admin-Sounds konnten nicht geladen werden","error")}finally{tn(!1)}}function Oe(_e){oe(at=>({...at,[_e]:!at[_e]}))}function Ye(_e){Fe($i(_e)),Et(_e.name)}function $e(){Fe(""),Et("")}async function Ie(){if(!Me)return;const _e=ze.trim().replace(/\.(mp3|wav)$/i,"");if(!_e){pn("Bitte einen gueltigen Namen eingeben","error");return}try{await kde(Me,_e),pn("Sound umbenannt"),$e(),rr(at=>at+1),Qe&&await ae()}catch(at){pn((at==null?void 0:at.message)||"Umbenennen fehlgeschlagen","error")}}async function Bt(_e){if(_e.length!==0)try{await Fde(_e),pn(_e.length===1?"Sound geloescht":`${_e.length} Sounds geloescht`),oe({}),$e(),rr(at=>at+1),Qe&&await ae()}catch(at){pn((at==null?void 0:at.message)||"Loeschen fehlgeschlagen","error")}}async function Vt(){try{await Ode(he)?(It(!0),Ft(""),pn("Admin eingeloggt")):pn("Falsches Passwort","error")}catch{pn("Login fehlgeschlagen","error")}}async function ht(){try{await Ide(),It(!1),oe({}),$e(),pn("Ausgeloggt")}catch{}}const Z=Le.useMemo(()=>v==="favorites"?e.filter(_e=>de[_e.relativePath??_e.fileName]):e,[e,v,de]),Ut=Le.useMemo(()=>Object.values(de).filter(Boolean).length,[de]),bn=Le.useMemo(()=>s.filter(_e=>!["__all__","__recent__","__top3__"].includes(_e.key)),[s]),fn=Le.useMemo(()=>{const _e={};return bn.forEach((at,Ct)=>{_e[at.key]=m7[Ct%m7.length]}),_e},[bn]),ui=Le.useMemo(()=>{const _e=new Set,at=new Set;return Z.forEach((Ct,Jt)=>{const cn=Ct.name.charAt(0).toUpperCase();_e.has(cn)||(_e.add(cn),at.add(Jt))}),at},[Z]),ci=Le.useMemo(()=>{const _e={};return k.forEach(at=>{_e[at.guildName]||(_e[at.guildName]=[]),_e[at.guildName].push(at)}),_e},[k]),_i=Le.useMemo(()=>{const _e=_t.trim().toLowerCase();return _e?ct.filter(at=>{const Ct=$i(at).toLowerCase();return at.name.toLowerCase().includes(_e)||(at.folder||"").toLowerCase().includes(_e)||Ct.includes(_e)}):ct},[_t,ct,$i]),K=Le.useMemo(()=>Object.keys(X).filter(_e=>X[_e]),[X]),Ln=Le.useMemo(()=>_i.filter(_e=>!!X[$i(_e)]).length,[_i,X,$i]),mn=_i.length>0&&Ln===_i.length,yr=h.mostPlayed.slice(0,10),hi=h.totalSounds||n,bs=xt.slice(0,5),fa=xt.slice(5);return W.jsxs("div",{className:"sb-app","data-theme":Se,ref:$n,children:[Ee&&W.jsx("div",{className:"party-overlay active"}),W.jsxs("header",{className:"topbar",children:[W.jsxs("div",{className:"topbar-left",children:[W.jsx("div",{className:"sb-app-logo",children:W.jsx("span",{className:"material-icons",style:{fontSize:16,color:"white"},children:"music_note"})}),W.jsx("span",{className:"sb-app-title",children:"Soundboard"}),W.jsxs("div",{className:"channel-dropdown",onClick:_e=>_e.stopPropagation(),children:[W.jsxs("button",{className:`channel-btn ${ee?"open":""}`,onClick:()=>ne(!ee),children:[W.jsx("span",{className:"material-icons cb-icon",children:"headset"}),F&&W.jsx("span",{className:"channel-status"}),W.jsx("span",{className:"channel-label",children:J?`${J.channelName}${J.members?` (${J.members})`:""}`:"Channel..."}),W.jsx("span",{className:"material-icons chevron",children:"expand_more"})]}),ee&&W.jsxs("div",{className:"channel-menu visible",children:[Object.entries(ci).map(([_e,at])=>W.jsxs(LF.Fragment,{children:[W.jsx("div",{className:"channel-menu-header",children:_e}),at.map(Ct=>W.jsxs("div",{className:`channel-option ${`${Ct.guildId}:${Ct.channelId}`===F?"active":""}`,onClick:()=>Ma(Ct),children:[W.jsx("span",{className:"material-icons co-icon",children:"volume_up"}),Ct.channelName,Ct.members?` (${Ct.members})`:""]},`${Ct.guildId}:${Ct.channelId}`))]},_e)),k.length===0&&W.jsx("div",{className:"channel-option",style:{color:"var(--text-faint)",cursor:"default"},children:"Keine Channels verfuegbar"})]})]})]}),W.jsx("div",{className:"clock-wrap",children:W.jsxs("div",{className:"clock",children:[bs,W.jsx("span",{className:"clock-seconds",children:fa})]})}),W.jsxs("div",{className:"topbar-right",children:[Q&&W.jsxs("div",{className:"now-playing",children:[W.jsxs("div",{className:"np-waves active",children:[W.jsx("div",{className:"np-wave-bar"}),W.jsx("div",{className:"np-wave-bar"}),W.jsx("div",{className:"np-wave-bar"}),W.jsx("div",{className:"np-wave-bar"})]}),W.jsx("span",{className:"np-label",children:"Last Played:"})," ",W.jsx("span",{className:"np-name",children:Q})]}),F&&W.jsxs("div",{className:"connection",onClick:()=>ge(!0),style:{cursor:"pointer"},title:"Verbindungsdetails",children:[W.jsx("span",{className:"conn-dot"}),"Verbunden",(qt==null?void 0:qt.voicePing)!=null&&W.jsxs("span",{className:"conn-ping",children:[qt.voicePing,"ms"]})]}),W.jsx("button",{className:`admin-btn-icon ${Tt?"active":""}`,onClick:()=>it(!0),title:"Admin",children:W.jsx("span",{className:"material-icons",children:"settings"})})]})]}),W.jsxs("div",{className:"toolbar",children:[W.jsxs("div",{className:"cat-tabs",children:[W.jsxs("button",{className:`cat-tab ${v==="all"?"active":""}`,onClick:()=>{x("all"),w("")},children:["Alle",W.jsx("span",{className:"tab-count",children:n})]}),W.jsx("button",{className:`cat-tab ${v==="recent"?"active":""}`,onClick:()=>{x("recent"),w("")},children:"Neu hinzugefuegt"}),W.jsxs("button",{className:`cat-tab ${v==="favorites"?"active":""}`,onClick:()=>{x("favorites"),w("")},children:["Favoriten",Ut>0&&W.jsx("span",{className:"tab-count",children:Ut})]})]}),W.jsxs("div",{className:"search-wrap",children:[W.jsx("span",{className:"material-icons search-icon",children:"search"}),W.jsx("input",{className:"search-input",type:"text",placeholder:"Suchen...",value:R,onChange:_e=>C(_e.target.value)}),R&&W.jsx("button",{className:"search-clear",onClick:()=>C(""),children:W.jsx("span",{className:"material-icons",style:{fontSize:14},children:"close"})})]}),W.jsxs("div",{className:"url-import-wrap",children:[W.jsx("span",{className:"material-icons url-import-icon",children:Ot(E)==="youtube"?"smart_display":Ot(E)==="instagram"?"photo_camera":"link"}),W.jsx("input",{className:"url-import-input",type:"text",placeholder:"YouTube / Instagram / MP3-Link...",value:E,onChange:_e=>B(_e.target.value),onKeyDown:_e=>{_e.key==="Enter"&&un()}}),E&&W.jsx("span",{className:`url-import-tag ${At(E)?"valid":"invalid"}`,children:Ot(E)==="youtube"?"YT":Ot(E)==="instagram"?"IG":Ot(E)==="mp3"?"MP3":"?"}),W.jsx("button",{className:"url-import-btn",onClick:()=>{un()},disabled:L||!!E&&!At(E),title:"Sound herunterladen",children:L?"Laedt...":"Download"})]}),W.jsx("div",{className:"toolbar-spacer"}),W.jsxs("div",{className:"volume-control",children:[W.jsx("span",{className:"material-icons vol-icon",onClick:()=>{const _e=se>0?0:.5;te(_e),st&&p7(st,_e).catch(()=>{})},children:se===0?"volume_off":se<.5?"volume_down":"volume_up"}),W.jsx("input",{type:"range",className:"vol-slider",min:0,max:1,step:.01,value:se,onChange:_e=>{const at=parseFloat(_e.target.value);te(at),st&&(vt.current&&clearTimeout(vt.current),vt.current=setTimeout(()=>{p7(st,at).catch(()=>{})},120))},style:{"--vol":`${Math.round(se*100)}%`}}),W.jsxs("span",{className:"vol-pct",children:[Math.round(se*100),"%"]})]}),W.jsxs("button",{className:"tb-btn random",onClick:Fn,title:"Zufaelliger Sound",children:[W.jsx("span",{className:"material-icons tb-icon",children:"shuffle"}),"Random"]}),W.jsxs("button",{className:`tb-btn party ${Ee?"active":""}`,onClick:cs,title:"Party Mode",children:[W.jsx("span",{className:"material-icons tb-icon",children:Ee?"celebration":"auto_awesome"}),Ee?"Party!":"Party"]}),W.jsxs("button",{className:"tb-btn stop",onClick:li,title:"Alle stoppen",children:[W.jsx("span",{className:"material-icons tb-icon",children:"stop"}),"Stop"]}),W.jsxs("div",{className:"size-control",title:"Button-Groesse",children:[W.jsx("span",{className:"material-icons sc-icon",children:"grid_view"}),W.jsx("input",{type:"range",className:"size-slider",min:80,max:160,value:be,onChange:_e=>We(parseInt(_e.target.value))})]}),W.jsx("div",{className:"theme-selector",children:Gde.map(_e=>W.jsx("div",{className:`theme-dot ${Se===_e.id?"active":""}`,style:{background:_e.color},title:_e.label,onClick:()=>ue(_e.id)},_e.id))})]}),W.jsxs("div",{className:"analytics-strip",children:[W.jsxs("div",{className:"analytics-card",children:[W.jsx("span",{className:"material-icons analytics-icon",children:"library_music"}),W.jsxs("div",{className:"analytics-copy",children:[W.jsx("span",{className:"analytics-label",children:"Sounds gesamt"}),W.jsx("strong",{className:"analytics-value",children:hi})]})]}),W.jsxs("div",{className:"analytics-card analytics-wide",children:[W.jsx("span",{className:"material-icons analytics-icon",children:"leaderboard"}),W.jsxs("div",{className:"analytics-copy",children:[W.jsx("span",{className:"analytics-label",children:"Most Played"}),W.jsx("div",{className:"analytics-top-list",children:yr.length===0?W.jsx("span",{className:"analytics-muted",children:"Noch keine Plays"}):yr.map((_e,at)=>W.jsxs("span",{className:"analytics-chip",children:[at+1,". ",_e.name," (",_e.count,")"]},_e.relativePath))})]})]})]}),v==="all"&&bn.length>0&&W.jsx("div",{className:"category-strip",children:bn.map(_e=>{const at=fn[_e.key]||"#888",Ct=S===_e.key;return W.jsxs("button",{className:`cat-chip ${Ct?"active":""}`,onClick:()=>w(Ct?"":_e.key),style:Ct?{borderColor:at,color:at}:void 0,children:[W.jsx("span",{className:"cat-dot",style:{background:at}}),_e.name.replace(/\s*\(\d+\)\s*$/,""),W.jsx("span",{className:"cat-count",children:_e.count})]},_e.key)})}),W.jsx("main",{className:"main",children:Z.length===0?W.jsxs("div",{className:"empty-state visible",children:[W.jsx("div",{className:"empty-emoji",children:v==="favorites"?"⭐":"🔇"}),W.jsx("div",{className:"empty-title",children:v==="favorites"?"Noch keine Favoriten":R?`Kein Sound fuer "${R}" gefunden`:"Keine Sounds vorhanden"}),W.jsx("div",{className:"empty-desc",children:v==="favorites"?"Klick den Stern auf einem Sound!":"Hier gibt's noch nichts zu hoeren."})]}):W.jsx("div",{className:"sound-grid",children:Z.map((_e,at)=>{var Pr;const Ct=_e.relativePath??_e.fileName,Jt=!!de[Ct],cn=Q===_e.name,Yn=_e.isRecent||((Pr=_e.badges)==null?void 0:Pr.includes("new")),yi=_e.name.charAt(0).toUpperCase(),js=ui.has(at),pi=_e.folder&&fn[_e.folder]||"var(--accent)";return W.jsxs("div",{className:`sound-card ${cn?"playing":""} ${js?"has-initial":""}`,style:{animationDelay:`${Math.min(at*20,400)}ms`},onClick:Ei=>{const Zh=Ei.currentTarget,Bl=Zh.getBoundingClientRect(),nl=document.createElement("div");nl.className="ripple";const Bi=Math.max(Bl.width,Bl.height);nl.style.width=nl.style.height=Bi+"px",nl.style.left=Ei.clientX-Bl.left-Bi/2+"px",nl.style.top=Ei.clientY-Bl.top-Bi/2+"px",Zh.appendChild(nl),setTimeout(()=>nl.remove(),500),Xn(_e)},onContextMenu:Ei=>{Ei.preventDefault(),Ei.stopPropagation(),xn({x:Math.min(Ei.clientX,window.innerWidth-170),y:Math.min(Ei.clientY,window.innerHeight-140),sound:_e})},title:`${_e.name}${_e.folder?` (${_e.folder})`:""}`,children:[Yn&&W.jsx("span",{className:"new-badge",children:"NEU"}),W.jsx("span",{className:`fav-star ${Jt?"active":""}`,onClick:Ei=>{Ei.stopPropagation(),Ul(Ct)},children:W.jsx("span",{className:"material-icons fav-icon",children:Jt?"star":"star_border"})}),js&&W.jsx("span",{className:"sound-emoji",style:{color:pi},children:yi}),W.jsx("span",{className:"sound-name",children:_e.name}),_e.folder&&W.jsx("span",{className:"sound-duration",children:_e.folder}),W.jsxs("div",{className:"playing-indicator",children:[W.jsx("div",{className:"wave-bar"}),W.jsx("div",{className:"wave-bar"}),W.jsx("div",{className:"wave-bar"}),W.jsx("div",{className:"wave-bar"})]})]},Ct)})})}),zt&&W.jsxs("div",{className:"ctx-menu visible",style:{left:zt.x,top:zt.y},onClick:_e=>_e.stopPropagation(),children:[W.jsxs("div",{className:"ctx-item",onClick:()=>{Xn(zt.sound),xn(null)},children:[W.jsx("span",{className:"material-icons ctx-icon",children:"play_arrow"}),"Abspielen"]}),W.jsxs("div",{className:"ctx-item",onClick:()=>{Ul(zt.sound.relativePath??zt.sound.fileName),xn(null)},children:[W.jsx("span",{className:"material-icons ctx-icon",children:de[zt.sound.relativePath??zt.sound.fileName]?"star":"star_border"}),"Favorit"]}),Tt&&W.jsxs(W.Fragment,{children:[W.jsx("div",{className:"ctx-sep"}),W.jsxs("div",{className:"ctx-item danger",onClick:async()=>{const _e=zt.sound.relativePath??zt.sound.fileName;await Bt([_e]),xn(null)},children:[W.jsx("span",{className:"material-icons ctx-icon",children:"delete"}),"Loeschen"]})]})]}),Mi&&(()=>{const _e=qt!=null&&qt.connectedSince?Math.floor((Date.now()-new Date(qt.connectedSince).getTime())/1e3):0,at=Math.floor(_e/3600),Ct=Math.floor(_e%3600/60),Jt=_e%60,cn=at>0?`${at}h ${String(Ct).padStart(2,"0")}m ${String(Jt).padStart(2,"0")}s`:Ct>0?`${Ct}m ${String(Jt).padStart(2,"0")}s`:`${Jt}s`,Yn=yi=>yi==null?"var(--muted)":yi<80?"var(--green)":yi<150?"#f0a830":"#e04040";return W.jsx("div",{className:"conn-modal-overlay",onClick:()=>ge(!1),children:W.jsxs("div",{className:"conn-modal",onClick:yi=>yi.stopPropagation(),children:[W.jsxs("div",{className:"conn-modal-header",children:[W.jsx("span",{className:"material-icons",style:{fontSize:20,color:"var(--green)"},children:"cell_tower"}),W.jsx("span",{children:"Verbindungsdetails"}),W.jsx("button",{className:"conn-modal-close",onClick:()=>ge(!1),children:W.jsx("span",{className:"material-icons",children:"close"})})]}),W.jsxs("div",{className:"conn-modal-body",children:[W.jsxs("div",{className:"conn-stat",children:[W.jsx("span",{className:"conn-stat-label",children:"Voice Ping"}),W.jsxs("span",{className:"conn-stat-value",children:[W.jsx("span",{className:"conn-ping-dot",style:{background:Yn((qt==null?void 0:qt.voicePing)??null)}}),(qt==null?void 0:qt.voicePing)!=null?`${qt.voicePing} ms`:"---"]})]}),W.jsxs("div",{className:"conn-stat",children:[W.jsx("span",{className:"conn-stat-label",children:"Gateway Ping"}),W.jsxs("span",{className:"conn-stat-value",children:[W.jsx("span",{className:"conn-ping-dot",style:{background:Yn((qt==null?void 0:qt.gatewayPing)??null)}}),qt&&qt.gatewayPing>=0?`${qt.gatewayPing} ms`:"---"]})]}),W.jsxs("div",{className:"conn-stat",children:[W.jsx("span",{className:"conn-stat-label",children:"Status"}),W.jsx("span",{className:"conn-stat-value",style:{color:(qt==null?void 0:qt.status)==="ready"?"var(--green)":"#f0a830"},children:(qt==null?void 0:qt.status)==="ready"?"Verbunden":(qt==null?void 0:qt.status)??"Warte auf Verbindung"})]}),W.jsxs("div",{className:"conn-stat",children:[W.jsx("span",{className:"conn-stat-label",children:"Kanal"}),W.jsx("span",{className:"conn-stat-value",children:(qt==null?void 0:qt.channelName)||"---"})]}),W.jsxs("div",{className:"conn-stat",children:[W.jsx("span",{className:"conn-stat-label",children:"Verbunden seit"}),W.jsx("span",{className:"conn-stat-value",children:cn||"---"})]})]})]})})})(),Wt&&W.jsxs("div",{className:`toast ${Wt.type}`,children:[W.jsx("span",{className:"material-icons toast-icon",children:Wt.type==="error"?"error_outline":"check_circle"}),Wt.msg]}),Qe&&W.jsx("div",{className:"admin-overlay",onClick:_e=>{_e.target===_e.currentTarget&&it(!1)},children:W.jsxs("div",{className:"admin-panel",children:[W.jsxs("h3",{children:["Admin",W.jsx("button",{className:"admin-close",onClick:()=>it(!1),children:W.jsx("span",{className:"material-icons",style:{fontSize:18},children:"close"})})]}),Tt?W.jsxs("div",{className:"admin-shell",children:[W.jsxs("div",{className:"admin-header-row",children:[W.jsx("p",{className:"admin-status",children:"Eingeloggt als Admin"}),W.jsxs("div",{className:"admin-actions-inline",children:[W.jsx("button",{className:"admin-btn-action outline",onClick:()=>{ae()},disabled:gt,children:"Aktualisieren"}),W.jsx("button",{className:"admin-btn-action outline",onClick:ht,children:"Logout"})]})]}),W.jsxs("div",{className:"admin-field admin-search-field",children:[W.jsx("label",{children:"Sounds verwalten"}),W.jsx("input",{type:"text",value:_t,onChange:_e=>fe(_e.target.value),placeholder:"Nach Name, Ordner oder Pfad filtern..."})]}),W.jsxs("div",{className:"admin-bulk-row",children:[W.jsxs("label",{className:"admin-select-all",children:[W.jsx("input",{type:"checkbox",checked:mn,onChange:_e=>{const at=_e.target.checked,Ct={...X};_i.forEach(Jt=>{Ct[$i(Jt)]=at}),oe(Ct)}}),W.jsxs("span",{children:["Alle sichtbaren auswaehlen (",Ln,"/",_i.length,")"]})]}),W.jsx("button",{className:"admin-btn-action danger",disabled:K.length===0,onClick:async()=>{window.confirm(`Wirklich ${K.length} Sound(s) loeschen?`)&&await Bt(K)},children:"Ausgewaehlte loeschen"})]}),W.jsx("div",{className:"admin-list-wrap",children:gt?W.jsx("div",{className:"admin-empty",children:"Lade Sounds..."}):_i.length===0?W.jsx("div",{className:"admin-empty",children:"Keine Sounds gefunden."}):W.jsx("div",{className:"admin-list",children:_i.map(_e=>{const at=$i(_e),Ct=Me===at;return W.jsxs("div",{className:"admin-item",children:[W.jsx("label",{className:"admin-item-check",children:W.jsx("input",{type:"checkbox",checked:!!X[at],onChange:()=>Oe(at)})}),W.jsxs("div",{className:"admin-item-main",children:[W.jsx("div",{className:"admin-item-name",children:_e.name}),W.jsxs("div",{className:"admin-item-meta",children:[_e.folder?`Ordner: ${_e.folder}`:"Root"," · ",at]}),Ct&&W.jsxs("div",{className:"admin-rename-row",children:[W.jsx("input",{value:ze,onChange:Jt=>Et(Jt.target.value),onKeyDown:Jt=>{Jt.key==="Enter"&&Ie(),Jt.key==="Escape"&&$e()},placeholder:"Neuer Name..."}),W.jsx("button",{className:"admin-btn-action primary",onClick:()=>{Ie()},children:"Speichern"}),W.jsx("button",{className:"admin-btn-action outline",onClick:$e,children:"Abbrechen"})]})]}),!Ct&&W.jsxs("div",{className:"admin-item-actions",children:[W.jsx("button",{className:"admin-btn-action outline",onClick:()=>Ye(_e),children:"Umbenennen"}),W.jsx("button",{className:"admin-btn-action danger ghost",onClick:async()=>{window.confirm(`Sound "${_e.name}" loeschen?`)&&await Bt([at])},children:"Loeschen"})]})]},at)})})})]}):W.jsxs("div",{children:[W.jsxs("div",{className:"admin-field",children:[W.jsx("label",{children:"Passwort"}),W.jsx("input",{type:"password",value:he,onChange:_e=>Ft(_e.target.value),onKeyDown:_e=>_e.key==="Enter"&&Vt(),placeholder:"Admin-Passwort..."})]}),W.jsx("button",{className:"admin-btn-action primary",onClick:Vt,children:"Login"})]})]})}),Rt&&W.jsx("div",{className:"drop-overlay",children:W.jsxs("div",{className:"drop-zone",children:[W.jsx("span",{className:"material-icons drop-icon",children:"cloud_upload"}),W.jsx("div",{className:"drop-title",children:"MP3 & WAV hier ablegen"}),W.jsx("div",{className:"drop-sub",children:"Mehrere Dateien gleichzeitig moeglich"})]})}),Zt&&Xt.length>0&&W.jsxs("div",{className:"upload-queue",children:[W.jsxs("div",{className:"uq-header",children:[W.jsx("span",{className:"material-icons",style:{fontSize:16},children:"upload"}),W.jsx("span",{children:Xt.every(_e=>_e.status==="done"||_e.status==="error")?`${Xt.filter(_e=>_e.status==="done").length} von ${Xt.length} hochgeladen`:`Lade hoch… (${Xt.filter(_e=>_e.status==="done").length}/${Xt.length})`}),W.jsx("button",{className:"uq-close",onClick:()=>{sn(!1),yt([])},children:W.jsx("span",{className:"material-icons",style:{fontSize:14},children:"close"})})]}),W.jsx("div",{className:"uq-list",children:Xt.map(_e=>W.jsxs("div",{className:`uq-item uq-${_e.status}`,children:[W.jsx("span",{className:"material-icons uq-file-icon",children:"audio_file"}),W.jsxs("div",{className:"uq-info",children:[W.jsx("div",{className:"uq-name",title:_e.savedName??_e.file.name,children:_e.savedName??_e.file.name}),W.jsxs("div",{className:"uq-size",children:[(_e.file.size/1024).toFixed(0)," KB"]})]}),(_e.status==="waiting"||_e.status==="uploading")&&W.jsx("div",{className:"uq-progress-wrap",children:W.jsx("div",{className:"uq-progress-bar",style:{width:`${_e.progress}%`}})}),W.jsx("span",{className:`material-icons uq-status-icon uq-status-${_e.status}`,children:_e.status==="done"?"check_circle":_e.status==="error"?"error":_e.status==="uploading"?"sync":"schedule"}),_e.status==="error"&&W.jsx("div",{className:"uq-error",children:_e.error})]},_e.id))})]}),z&&W.jsx("div",{className:"dl-modal-overlay",onClick:()=>z.phase!=="downloading"&&G(null),children:W.jsxs("div",{className:"dl-modal",onClick:_e=>_e.stopPropagation(),children:[W.jsxs("div",{className:"dl-modal-header",children:[W.jsx("span",{className:"material-icons",style:{fontSize:20},children:z.type==="youtube"?"smart_display":z.type==="instagram"?"photo_camera":"audio_file"}),W.jsx("span",{children:z.phase==="input"?"Sound herunterladen":z.phase==="downloading"?"Wird heruntergeladen...":z.phase==="done"?"Fertig!":"Fehler"}),z.phase!=="downloading"&&W.jsx("button",{className:"dl-modal-close",onClick:()=>G(null),children:W.jsx("span",{className:"material-icons",style:{fontSize:16},children:"close"})})]}),W.jsxs("div",{className:"dl-modal-body",children:[W.jsxs("div",{className:"dl-modal-url",children:[W.jsx("span",{className:`dl-modal-tag ${z.type??""}`,children:z.type==="youtube"?"YouTube":z.type==="instagram"?"Instagram":"MP3"}),W.jsx("span",{className:"dl-modal-url-text",title:z.url,children:z.url.length>60?z.url.slice(0,57)+"...":z.url})]}),z.phase==="input"&&W.jsxs("div",{className:"dl-modal-field",children:[W.jsx("label",{className:"dl-modal-label",children:"Dateiname"}),W.jsxs("div",{className:"dl-modal-input-wrap",children:[W.jsx("input",{className:"dl-modal-input",type:"text",placeholder:z.type==="mp3"?"Dateiname...":"Wird automatisch erkannt...",value:z.filename,onChange:_e=>G(at=>at?{...at,filename:_e.target.value}:null),onKeyDown:_e=>{_e.key==="Enter"&&qn()},autoFocus:!0}),W.jsx("span",{className:"dl-modal-ext",children:".mp3"})]}),W.jsx("span",{className:"dl-modal-hint",children:"Leer lassen = automatischer Name"})]}),z.phase==="downloading"&&W.jsxs("div",{className:"dl-modal-progress",children:[W.jsx("div",{className:"dl-modal-spinner"}),W.jsx("span",{children:z.type==="youtube"||z.type==="instagram"?"Audio wird extrahiert...":"MP3 wird heruntergeladen..."})]}),z.phase==="done"&&W.jsxs("div",{className:"dl-modal-success",children:[W.jsx("span",{className:"material-icons dl-modal-check",children:"check_circle"}),W.jsxs("span",{children:["Gespeichert als ",W.jsx("b",{children:z.savedName})]})]}),z.phase==="error"&&W.jsxs("div",{className:"dl-modal-error",children:[W.jsx("span",{className:"material-icons",style:{color:"#e74c3c"},children:"error"}),W.jsx("span",{children:z.error})]})]}),z.phase==="input"&&W.jsxs("div",{className:"dl-modal-actions",children:[W.jsx("button",{className:"dl-modal-cancel",onClick:()=>G(null),children:"Abbrechen"}),W.jsxs("button",{className:"dl-modal-submit",onClick:()=>void qn(),children:[W.jsx("span",{className:"material-icons",style:{fontSize:16},children:"download"}),"Herunterladen"]})]}),z.phase==="error"&&W.jsxs("div",{className:"dl-modal-actions",children:[W.jsx("button",{className:"dl-modal-cancel",onClick:()=>G(null),children:"Schliessen"}),W.jsxs("button",{className:"dl-modal-submit",onClick:()=>G(_e=>_e?{..._e,phase:"input",error:void 0}:null),children:[W.jsx("span",{className:"material-icons",style:{fontSize:16},children:"refresh"}),"Nochmal"]})]})]})})]})}const g7={IRON:"#6b6b6b",BRONZE:"#8c6239",SILVER:"#8c8c8c",GOLD:"#d4a017",PLATINUM:"#28b29e",EMERALD:"#1e9e5e",DIAMOND:"#576cce",MASTER:"#9d48e0",GRANDMASTER:"#e44c3e",CHALLENGER:"#f4c874"},Vde={SOLORANKED:"Ranked Solo",FLEXRANKED:"Ranked Flex",NORMAL:"Normal",ARAM:"ARAM",ARENA:"Arena",URF:"URF",BOT:"Co-op vs AI"},Hde="https://ddragon.leagueoflegends.com/cdn/15.5.1/img";function zv(i){return`${Hde}/champion/${i}.png`}function v7(i){const e=Math.floor((Date.now()-new Date(i).getTime())/1e3);return e<60?`${e}s`:e<3600?`${Math.floor(e/60)}m`:e<86400?`${Math.floor(e/3600)}h`:`${Math.floor(e/86400)}d`}function jde(i){const e=Math.floor(i/60),t=i%60;return`${e}:${String(t).padStart(2,"0")}`}function _7(i,e,t){return e===0?"Perfect":((i+t)/e).toFixed(2)}function y7(i,e){const t=i+e;return t>0?Math.round(i/t*100):0}function Wde(i,e){if(!i)return"Unranked";const t=["","I","II","III","IV"];return`${i.charAt(0)}${i.slice(1).toLowerCase()}${e?" "+(t[e]??e):""}`}function $de({data:i}){var be,We,Ee,Ge;const[e,t]=Le.useState(""),[n,r]=Le.useState("EUW"),[s,a]=Le.useState([]),[l,u]=Le.useState(null),[h,g]=Le.useState([]),[v,x]=Le.useState(!1),[S,w]=Le.useState(null),[R,C]=Le.useState([]),[E,B]=Le.useState(null),[L,O]=Le.useState({}),[z,G]=Le.useState(!1),[k,H]=Le.useState(!1),[F,V]=Le.useState(null),Y=Le.useRef(null),ee=Le.useRef(null);Le.useEffect(()=>{fetch("/api/lolstats/regions").then(ye=>ye.json()).then(a).catch(()=>{}),fetch("/api/lolstats/recent").then(ye=>ye.json()).then(C).catch(()=>{})},[]),Le.useEffect(()=>{i&&(i.recentSearches&&C(i.recentSearches),i.regions&&!s.length&&a(i.regions))},[i]);const ne=Le.useCallback(async(ye,Pe,pt)=>{H(!0);try{const vt=`gameName=${encodeURIComponent(ye)}&tagLine=${encodeURIComponent(Pe)}®ion=${pt}`,Tt=await fetch(`/api/lolstats/renew?${vt}`,{method:"POST"});if(Tt.ok){const It=await Tt.json();return It.last_updated_at&&V(It.last_updated_at),It.renewed??!1}}catch{}return H(!1),!1},[]),se=Le.useCallback(async(ye,Pe,pt,vt=!1)=>{var it,he;let Tt=ye??"",It=Pe??"";const Qe=pt??n;if(!Tt){const Ft=e.split("#");Tt=((it=Ft[0])==null?void 0:it.trim())??"",It=((he=Ft[1])==null?void 0:he.trim())??""}if(!Tt||!It){w("Bitte im Format Name#Tag eingeben");return}x(!0),w(null),u(null),g([]),B(null),O({}),ee.current={gameName:Tt,tagLine:It,region:Qe},vt||ne(Tt,It,Qe).finally(()=>H(!1));try{const Ft=`gameName=${encodeURIComponent(Tt)}&tagLine=${encodeURIComponent(It)}®ion=${Qe}`,[ct,Dt]=await Promise.all([fetch(`/api/lolstats/profile?${Ft}`),fetch(`/api/lolstats/matches?${Ft}&limit=10`)]);if(!ct.ok){const tn=await ct.json();throw new Error(tn.error??`Fehler ${ct.status}`)}const gt=await ct.json();if(u(gt),gt.updated_at&&V(gt.updated_at),Dt.ok){const tn=await Dt.json();g(Array.isArray(tn)?tn:[])}}catch(Ft){w(Ft.message)}x(!1)},[e,n,ne]),te=Le.useCallback(async()=>{const ye=ee.current;if(!(!ye||k)){H(!0);try{await ne(ye.gameName,ye.tagLine,ye.region),await new Promise(Pe=>setTimeout(Pe,1500)),await se(ye.gameName,ye.tagLine,ye.region,!0)}finally{H(!1)}}},[ne,se,k]),Q=Le.useCallback(async()=>{if(!(!l||z)){G(!0);try{const ye=`gameName=${encodeURIComponent(l.game_name)}&tagLine=${encodeURIComponent(l.tagline)}®ion=${n}&limit=20`,Pe=await fetch(`/api/lolstats/matches?${ye}`);if(Pe.ok){const pt=await Pe.json();g(Array.isArray(pt)?pt:[])}}catch{}G(!1)}},[l,n,z]),le=Le.useCallback(async ye=>{var Pe;if(E===ye.id){B(null);return}if(B(ye.id),!(((Pe=ye.participants)==null?void 0:Pe.length)>=10||L[ye.id]))try{const pt=`region=${n}&createdAt=${encodeURIComponent(ye.created_at)}`,vt=await fetch(`/api/lolstats/match/${encodeURIComponent(ye.id)}?${pt}`);if(vt.ok){const Tt=await vt.json();O(It=>({...It,[ye.id]:Tt}))}}catch{}},[E,L,n]),de=Le.useCallback(ye=>{t(`${ye.game_name}#${ye.tag_line}`),r(ye.region),se(ye.game_name,ye.tag_line,ye.region)},[se]),Te=Le.useCallback(ye=>{var pt,vt,Tt;if(!l)return((pt=ye.participants)==null?void 0:pt[0])??null;const Pe=l.game_name.toLowerCase();return((vt=ye.participants)==null?void 0:vt.find(It=>{var Qe,it;return((it=(Qe=It.summoner)==null?void 0:Qe.game_name)==null?void 0:it.toLowerCase())===Pe}))??((Tt=ye.participants)==null?void 0:Tt[0])??null},[l]),Se=ye=>{var he,Ft,ct;const Pe=Te(ye);if(!Pe)return null;const pt=((he=Pe.stats)==null?void 0:he.result)==="WIN",vt=_7(Pe.stats.kill,Pe.stats.death,Pe.stats.assist),Tt=(Pe.stats.minion_kill??0)+(Pe.stats.neutral_minion_kill??0),It=ye.game_length_second>0?(Tt/(ye.game_length_second/60)).toFixed(1):"0",Qe=E===ye.id,it=L[ye.id]??(((Ft=ye.participants)==null?void 0:Ft.length)>=10?ye:null);return W.jsxs("div",{children:[W.jsxs("div",{className:`lol-match ${pt?"win":"loss"}`,onClick:()=>le(ye),children:[W.jsx("div",{className:"lol-match-result",children:pt?"W":"L"}),W.jsxs("div",{className:"lol-match-champ",children:[W.jsx("img",{src:zv(Pe.champion_name),alt:Pe.champion_name,title:Pe.champion_name}),W.jsx("span",{className:"lol-match-champ-level",children:Pe.stats.champion_level})]}),W.jsxs("div",{className:"lol-match-kda",children:[W.jsxs("div",{className:"lol-match-kda-nums",children:[Pe.stats.kill,"/",Pe.stats.death,"/",Pe.stats.assist]}),W.jsxs("div",{className:`lol-match-kda-ratio ${vt==="Perfect"?"perfect":Number(vt)>=4?"great":""}`,children:[vt," KDA"]})]}),W.jsxs("div",{className:"lol-match-stats",children:[W.jsxs("span",{children:[Tt," CS (",It,"/m)"]}),W.jsxs("span",{children:[Pe.stats.ward_place," wards"]})]}),W.jsx("div",{className:"lol-match-items",children:(Pe.items_names??[]).slice(0,7).map((Dt,gt)=>Dt?W.jsx("img",{src:zv("Aatrox"),alt:Dt,title:Dt,style:{background:"var(--bg-deep)"},onError:tn=>{tn.target.style.display="none"}},gt):W.jsx("div",{className:"lol-match-item-empty"},gt))}),W.jsxs("div",{className:"lol-match-meta",children:[W.jsx("div",{className:"lol-match-duration",children:jde(ye.game_length_second)}),W.jsx("div",{className:"lol-match-queue",children:Vde[ye.game_type]??ye.game_type}),W.jsxs("div",{className:"lol-match-ago",children:[v7(ye.created_at)," ago"]})]})]}),Qe&&it&&W.jsx("div",{className:"lol-match-detail",children:ue(it,(ct=Pe.summoner)==null?void 0:ct.game_name)})]},ye.id)},ue=(ye,Pe)=>{var Qe,it,he,Ft,ct;const pt=((Qe=ye.participants)==null?void 0:Qe.filter(Dt=>Dt.team_key==="BLUE"))??[],vt=((it=ye.participants)==null?void 0:it.filter(Dt=>Dt.team_key==="RED"))??[],Tt=(ct=(Ft=(he=ye.teams)==null?void 0:he.find(Dt=>Dt.key==="BLUE"))==null?void 0:Ft.game_stat)==null?void 0:ct.is_win,It=(Dt,gt,tn)=>W.jsxs("div",{className:"lol-match-detail-team",children:[W.jsxs("div",{className:`lol-match-detail-team-header ${gt?"win":"loss"}`,children:[tn," — ",gt?"Victory":"Defeat"]}),Dt.map((_t,fe)=>{var Me,Fe,ze,Et,Rt,Ht,Xt,yt,Zt,sn,jt,kt;const X=((Fe=(Me=_t.summoner)==null?void 0:Me.game_name)==null?void 0:Fe.toLowerCase())===(Pe==null?void 0:Pe.toLowerCase()),oe=(((ze=_t.stats)==null?void 0:ze.minion_kill)??0)+(((Et=_t.stats)==null?void 0:Et.neutral_minion_kill)??0);return W.jsxs("div",{className:`lol-detail-row ${X?"me":""}`,children:[W.jsx("img",{className:"lol-detail-champ",src:zv(_t.champion_name),alt:_t.champion_name}),W.jsx("span",{className:"lol-detail-name",title:`${(Rt=_t.summoner)==null?void 0:Rt.game_name}#${(Ht=_t.summoner)==null?void 0:Ht.tagline}`,children:((Xt=_t.summoner)==null?void 0:Xt.game_name)??_t.champion_name}),W.jsxs("span",{className:"lol-detail-kda",children:[(yt=_t.stats)==null?void 0:yt.kill,"/",(Zt=_t.stats)==null?void 0:Zt.death,"/",(sn=_t.stats)==null?void 0:sn.assist]}),W.jsxs("span",{className:"lol-detail-cs",children:[oe," CS"]}),W.jsxs("span",{className:"lol-detail-dmg",children:[((((jt=_t.stats)==null?void 0:jt.total_damage_dealt_to_champions)??0)/1e3).toFixed(1),"k"]}),W.jsxs("span",{className:"lol-detail-gold",children:[((((kt=_t.stats)==null?void 0:kt.gold_earned)??0)/1e3).toFixed(1),"k"]})]},fe)})]});return W.jsxs(W.Fragment,{children:[It(pt,Tt,"Blue Team"),It(vt,Tt===void 0?void 0:!Tt,"Red Team")]})};return W.jsxs("div",{className:"lol-container",children:[W.jsxs("div",{className:"lol-search",children:[W.jsx("input",{ref:Y,className:"lol-search-input",placeholder:"Summoner Name#Tag",value:e,onChange:ye=>t(ye.target.value),onKeyDown:ye=>ye.key==="Enter"&&se()}),W.jsx("select",{className:"lol-search-region",value:n,onChange:ye=>r(ye.target.value),children:s.map(ye=>W.jsx("option",{value:ye.code,children:ye.code},ye.code))}),W.jsx("button",{className:"lol-search-btn",onClick:()=>se(),disabled:v,children:v?"...":"Search"})]}),R.length>0&&W.jsx("div",{className:"lol-recent",children:R.map((ye,Pe)=>W.jsxs("button",{className:"lol-recent-chip",onClick:()=>de(ye),children:[ye.profile_image_url&&W.jsx("img",{src:ye.profile_image_url,alt:""}),ye.game_name,"#",ye.tag_line,ye.tier&&W.jsx("span",{className:"lol-recent-tier",style:{color:g7[ye.tier]},children:ye.tier})]},Pe))}),S&&W.jsx("div",{className:"lol-error",children:S}),v&&W.jsxs("div",{className:"lol-loading",children:[W.jsx("div",{className:"lol-spinner"}),"Lade Profil..."]}),l&&!v&&W.jsxs(W.Fragment,{children:[W.jsxs("div",{className:"lol-profile",children:[W.jsx("img",{className:"lol-profile-icon",src:l.profile_image_url,alt:""}),W.jsxs("div",{className:"lol-profile-info",children:[W.jsxs("h2",{children:[l.game_name,W.jsxs("span",{children:["#",l.tagline]})]}),W.jsxs("div",{className:"lol-profile-level",children:["Level ",l.level]}),((be=l.ladder_rank)==null?void 0:be.rank)&&W.jsxs("div",{className:"lol-profile-ladder",children:["Ladder Rank #",l.ladder_rank.rank.toLocaleString()," / ",(We=l.ladder_rank.total)==null?void 0:We.toLocaleString()]}),F&&W.jsxs("div",{className:"lol-profile-updated",children:["Updated ",v7(F)," ago"]})]}),W.jsxs("button",{className:`lol-update-btn ${k?"renewing":""}`,onClick:te,disabled:k,title:"Refresh data from Riot servers",children:[W.jsx("span",{className:"lol-update-icon",children:k?"⟳":"↻"}),k?"Updating...":"Update"]})]}),W.jsx("div",{className:"lol-ranked-row",children:(l.league_stats??[]).filter(ye=>ye.game_type==="SOLORANKED"||ye.game_type==="FLEXRANKED").map(ye=>{const Pe=ye.tier_info,pt=!!(Pe!=null&&Pe.tier),vt=g7[(Pe==null?void 0:Pe.tier)??""]??"var(--text-normal)";return W.jsxs("div",{className:`lol-ranked-card ${pt?"has-rank":""}`,style:{"--tier-color":vt},children:[W.jsx("div",{className:"lol-ranked-type",children:ye.game_type==="SOLORANKED"?"Ranked Solo/Duo":"Ranked Flex"}),pt?W.jsxs(W.Fragment,{children:[W.jsxs("div",{className:"lol-ranked-tier",style:{color:vt},children:[Wde(Pe.tier,Pe.division),W.jsxs("span",{className:"lol-ranked-lp",children:[Pe.lp," LP"]})]}),W.jsxs("div",{className:"lol-ranked-record",children:[ye.win,"W ",ye.lose,"L",W.jsxs("span",{className:"lol-ranked-wr",children:["(",y7(ye.win??0,ye.lose??0),"%)"]}),ye.is_hot_streak&&W.jsx("span",{className:"lol-ranked-streak",children:"🔥"})]})]}):W.jsx("div",{className:"lol-ranked-tier",children:"Unranked"})]},ye.game_type)})}),((Ge=(Ee=l.most_champions)==null?void 0:Ee.champion_stats)==null?void 0:Ge.length)>0&&W.jsxs(W.Fragment,{children:[W.jsx("div",{className:"lol-section-title",children:"Top Champions"}),W.jsx("div",{className:"lol-champs",children:l.most_champions.champion_stats.slice(0,7).map(ye=>{const Pe=y7(ye.win,ye.lose),pt=ye.play>0?_7(ye.kill/ye.play,ye.death/ye.play,ye.assist/ye.play):"0";return W.jsxs("div",{className:"lol-champ-card",children:[W.jsx("img",{className:"lol-champ-icon",src:zv(ye.champion_name),alt:ye.champion_name}),W.jsxs("div",{children:[W.jsx("div",{className:"lol-champ-name",children:ye.champion_name}),W.jsxs("div",{className:"lol-champ-stats",children:[ye.play," games · ",Pe,"% WR"]}),W.jsxs("div",{className:"lol-champ-kda",children:[pt," KDA"]})]})]},ye.champion_name)})})]}),h.length>0&&W.jsxs(W.Fragment,{children:[W.jsx("div",{className:"lol-section-title",children:"Match History"}),W.jsx("div",{className:"lol-matches",children:h.map(ye=>Se(ye))}),h.length<20&&W.jsx("button",{className:"lol-load-more",onClick:Q,disabled:z,children:z?"Laden...":"Mehr laden"})]})]}),!l&&!v&&!S&&W.jsxs("div",{className:"lol-empty",children:[W.jsx("div",{className:"lol-empty-icon",children:"⚔️"}),W.jsx("h3",{children:"League of Legends Stats"}),W.jsx("p",{children:"Gib einen Summoner Name#Tag ein und wähle die Region"})]})]})}const x7={iceServers:[{urls:"stun:stun.l.google.com:19302"},{urls:"stun:stun1.l.google.com:19302"}]};function qS(i){const e=Math.max(0,Math.floor((Date.now()-new Date(i).getTime())/1e3)),t=Math.floor(e/3600),n=Math.floor(e%3600/60),r=e%60;return t>0?`${t}:${String(n).padStart(2,"0")}:${String(r).padStart(2,"0")}`:`${n}:${String(r).padStart(2,"0")}`}function Xde({data:i}){var fe,X;const[e,t]=Le.useState([]),[n,r]=Le.useState(()=>localStorage.getItem("streaming_name")||""),[s,a]=Le.useState("Screen Share"),[l,u]=Le.useState(""),[h,g]=Le.useState(null),[v,x]=Le.useState(null),[S,w]=Le.useState(null),[R,C]=Le.useState(!1),[E,B]=Le.useState(!1),[L,O]=Le.useState(null),[,z]=Le.useState(0),[G,k]=Le.useState(null),[H,F]=Le.useState(null),V=Le.useRef(null),Y=Le.useRef(""),ee=Le.useRef(null),ne=Le.useRef(null),se=Le.useRef(null),te=Le.useRef(new Map),Q=Le.useRef(null),le=Le.useRef(new Map),de=Le.useRef(null),Te=Le.useRef(1e3),Se=Le.useRef(!1),ue=Le.useRef(null);Le.useEffect(()=>{Se.current=R},[R]),Le.useEffect(()=>{ue.current=L},[L]),Le.useEffect(()=>{if(!(e.length>0||R))return;const Me=setInterval(()=>z(Fe=>Fe+1),1e3);return()=>clearInterval(Me)},[e.length,R]),Le.useEffect(()=>{i!=null&&i.streams&&t(i.streams)},[i]),Le.useEffect(()=>{n&&localStorage.setItem("streaming_name",n)},[n]),Le.useEffect(()=>{if(!G)return;const oe=()=>k(null);return document.addEventListener("click",oe),()=>document.removeEventListener("click",oe)},[G]);const be=Le.useCallback(oe=>{var Me;((Me=V.current)==null?void 0:Me.readyState)===WebSocket.OPEN&&V.current.send(JSON.stringify(oe))},[]),We=Le.useCallback((oe,Me,Fe)=>{if(oe.remoteDescription)oe.addIceCandidate(new RTCIceCandidate(Fe)).catch(()=>{});else{let ze=le.current.get(Me);ze||(ze=[],le.current.set(Me,ze)),ze.push(Fe)}},[]),Ee=Le.useCallback((oe,Me)=>{const Fe=le.current.get(Me);if(Fe){for(const ze of Fe)oe.addIceCandidate(new RTCIceCandidate(ze)).catch(()=>{});le.current.delete(Me)}},[]),Ge=Le.useCallback(()=>{Q.current&&(Q.current.close(),Q.current=null),se.current&&(se.current.srcObject=null)},[]),ye=Le.useRef(()=>{});ye.current=oe=>{var Me;switch(oe.type){case"welcome":Y.current=oe.clientId,oe.streams&&t(oe.streams);break;case"broadcast_started":w(oe.streamId),C(!0),Se.current=!0,B(!1);break;case"stream_available":break;case"stream_ended":((Me=ue.current)==null?void 0:Me.streamId)===oe.streamId&&(Ge(),O(null));break;case"viewer_joined":{const Fe=oe.viewerId,ze=te.current.get(Fe);ze&&(ze.close(),te.current.delete(Fe)),le.current.delete(Fe);const Et=new RTCPeerConnection(x7);te.current.set(Fe,Et);const Rt=ee.current;if(Rt)for(const Xt of Rt.getTracks())Et.addTrack(Xt,Rt);Et.onicecandidate=Xt=>{Xt.candidate&&be({type:"ice_candidate",targetId:Fe,candidate:Xt.candidate.toJSON()})};const Ht=Et.getSenders().find(Xt=>{var yt;return((yt=Xt.track)==null?void 0:yt.kind)==="video"});if(Ht){const Xt=Ht.getParameters();(!Xt.encodings||Xt.encodings.length===0)&&(Xt.encodings=[{}]),Xt.encodings[0].maxFramerate=60,Xt.encodings[0].maxBitrate=8e6,Ht.setParameters(Xt).catch(()=>{})}Et.createOffer().then(Xt=>Et.setLocalDescription(Xt)).then(()=>be({type:"offer",targetId:Fe,sdp:Et.localDescription})).catch(console.error);break}case"viewer_left":{const Fe=te.current.get(oe.viewerId);Fe&&(Fe.close(),te.current.delete(oe.viewerId)),le.current.delete(oe.viewerId);break}case"offer":{const Fe=oe.fromId;Q.current&&(Q.current.close(),Q.current=null),le.current.delete(Fe);const ze=new RTCPeerConnection(x7);Q.current=ze,ze.ontrack=Et=>{se.current&&Et.streams[0]&&(se.current.srcObject=Et.streams[0]),O(Rt=>Rt&&{...Rt,phase:"connected"})},ze.onicecandidate=Et=>{Et.candidate&&be({type:"ice_candidate",targetId:Fe,candidate:Et.candidate.toJSON()})},ze.oniceconnectionstatechange=()=>{(ze.iceConnectionState==="failed"||ze.iceConnectionState==="disconnected")&&O(Et=>Et&&{...Et,phase:"error",error:"Verbindung verloren"})},ze.setRemoteDescription(new RTCSessionDescription(oe.sdp)).then(()=>(Ee(ze,Fe),ze.createAnswer())).then(Et=>ze.setLocalDescription(Et)).then(()=>be({type:"answer",targetId:Fe,sdp:ze.localDescription})).catch(console.error);break}case"answer":{const Fe=te.current.get(oe.fromId);Fe&&Fe.setRemoteDescription(new RTCSessionDescription(oe.sdp)).then(()=>Ee(Fe,oe.fromId)).catch(console.error);break}case"ice_candidate":{if(!oe.candidate)break;const Fe=te.current.get(oe.fromId);Fe?We(Fe,oe.fromId,oe.candidate):Q.current&&We(Q.current,oe.fromId,oe.candidate);break}case"error":oe.code==="WRONG_PASSWORD"?x(Fe=>Fe&&{...Fe,error:oe.message}):g(oe.message),B(!1);break}};const Pe=Le.useCallback(()=>{if(V.current&&V.current.readyState===WebSocket.OPEN)return;const oe=location.protocol==="https:"?"wss":"ws",Me=new WebSocket(`${oe}://${location.host}/ws/streaming`);V.current=Me,Me.onopen=()=>{Te.current=1e3},Me.onmessage=Fe=>{let ze;try{ze=JSON.parse(Fe.data)}catch{return}ye.current(ze)},Me.onclose=()=>{V.current=null,(Se.current||ue.current)&&(de.current=setTimeout(()=>{Te.current=Math.min(Te.current*2,1e4),Pe()},Te.current))},Me.onerror=()=>{Me.close()}},[]),pt=Le.useCallback(async()=>{var oe,Me;if(!n.trim()){g("Bitte gib einen Namen ein.");return}if(!l.trim()){g("Passwort ist Pflicht.");return}if(!((oe=navigator.mediaDevices)!=null&&oe.getDisplayMedia)){g("Dein Browser unterstützt keine Bildschirmfreigabe.");return}g(null),B(!0);try{const Fe=await navigator.mediaDevices.getDisplayMedia({video:{frameRate:{ideal:60},width:{ideal:1920},height:{ideal:1080}},audio:!0});ee.current=Fe,ne.current&&(ne.current.srcObject=Fe),(Me=Fe.getVideoTracks()[0])==null||Me.addEventListener("ended",()=>{vt()}),Pe();const ze=()=>{var Et;((Et=V.current)==null?void 0:Et.readyState)===WebSocket.OPEN?be({type:"start_broadcast",name:n.trim(),title:s.trim()||"Screen Share",password:l.trim()}):setTimeout(ze,100)};ze()}catch(Fe){B(!1),Fe.name==="NotAllowedError"?g("Bildschirmfreigabe wurde abgelehnt."):g(`Fehler: ${Fe.message}`)}},[n,s,l,Pe,be]),vt=Le.useCallback(()=>{var oe;be({type:"stop_broadcast"}),(oe=ee.current)==null||oe.getTracks().forEach(Me=>Me.stop()),ee.current=null,ne.current&&(ne.current.srcObject=null);for(const Me of te.current.values())Me.close();te.current.clear(),C(!1),Se.current=!1,w(null),u("")},[be]),Tt=Le.useCallback(oe=>{x({streamId:oe.id,streamTitle:oe.title,broadcasterName:oe.broadcasterName,password:"",error:null})},[]),It=Le.useCallback(()=>{if(!v)return;if(!v.password.trim()){x(ze=>ze&&{...ze,error:"Passwort eingeben."});return}const{streamId:oe,password:Me}=v;x(null),g(null),O({streamId:oe,phase:"connecting"}),Pe();const Fe=()=>{var ze;((ze=V.current)==null?void 0:ze.readyState)===WebSocket.OPEN?be({type:"join_viewer",name:n.trim()||"Viewer",streamId:oe,password:Me.trim()}):setTimeout(Fe,100)};Fe()},[v,n,Pe,be]),Qe=Le.useCallback(()=>{be({type:"leave_viewer"}),Ge(),O(null)},[Ge,be]);Le.useEffect(()=>{const oe=Fe=>{(Se.current||ue.current)&&Fe.preventDefault()},Me=()=>{Y.current&&navigator.sendBeacon("/api/streaming/disconnect",JSON.stringify({clientId:Y.current}))};return window.addEventListener("beforeunload",oe),window.addEventListener("pagehide",Me),()=>{window.removeEventListener("beforeunload",oe),window.removeEventListener("pagehide",Me)}},[]);const it=Le.useRef(null),[he,Ft]=Le.useState(!1),ct=Le.useCallback(()=>{const oe=it.current;oe&&(document.fullscreenElement?document.exitFullscreen().catch(()=>{}):oe.requestFullscreen().catch(()=>{}))},[]);Le.useEffect(()=>{const oe=()=>Ft(!!document.fullscreenElement);return document.addEventListener("fullscreenchange",oe),()=>document.removeEventListener("fullscreenchange",oe)},[]),Le.useEffect(()=>()=>{var oe;(oe=ee.current)==null||oe.getTracks().forEach(Me=>Me.stop());for(const Me of te.current.values())Me.close();Q.current&&Q.current.close(),V.current&&V.current.close(),de.current&&clearTimeout(de.current)},[]);const Dt=Le.useRef(null);Le.useEffect(()=>{const Me=new URLSearchParams(location.search).get("viewStream");if(Me){Dt.current=Me;const Fe=new URL(location.href);Fe.searchParams.delete("viewStream"),window.history.replaceState({},"",Fe.toString())}},[]),Le.useEffect(()=>{const oe=Dt.current;if(!oe||e.length===0)return;const Me=e.find(Fe=>Fe.id===oe);Me&&(Dt.current=null,Tt(Me))},[e,Tt]);const gt=Le.useCallback(oe=>{const Me=new URL(location.href);return Me.searchParams.set("viewStream",oe),Me.hash="",Me.toString()},[]),tn=Le.useCallback(oe=>{navigator.clipboard.writeText(gt(oe)).then(()=>{F(oe),setTimeout(()=>F(null),2e3)}).catch(()=>{})},[gt]),_t=Le.useCallback(oe=>{window.open(gt(oe),"_blank","noopener"),k(null)},[gt]);if(L){const oe=e.find(Me=>Me.id===L.streamId);return W.jsxs("div",{className:"stream-viewer-overlay",ref:it,children:[W.jsxs("div",{className:"stream-viewer-header",children:[W.jsxs("div",{className:"stream-viewer-header-left",children:[W.jsxs("span",{className:"stream-live-badge",children:[W.jsx("span",{className:"stream-live-dot"})," LIVE"]}),W.jsxs("div",{children:[W.jsx("div",{className:"stream-viewer-title",children:(oe==null?void 0:oe.title)||"Stream"}),W.jsxs("div",{className:"stream-viewer-subtitle",children:[(oe==null?void 0:oe.broadcasterName)||"..."," ",oe?` · ${oe.viewerCount} Zuschauer`:""]})]})]}),W.jsxs("div",{className:"stream-viewer-header-right",children:[W.jsx("button",{className:"stream-viewer-fullscreen",onClick:ct,title:he?"Vollbild verlassen":"Vollbild",children:he?"✖":"⛶"}),W.jsx("button",{className:"stream-viewer-close",onClick:Qe,children:"Verlassen"})]})]}),W.jsxs("div",{className:"stream-viewer-video",children:[L.phase==="connecting"?W.jsxs("div",{className:"stream-viewer-connecting",children:[W.jsx("div",{className:"stream-viewer-spinner"}),"Verbindung wird hergestellt..."]}):L.phase==="error"?W.jsxs("div",{className:"stream-viewer-connecting",children:[L.error||"Verbindungsfehler",W.jsx("button",{className:"stream-btn",onClick:Qe,children:"Zurück"})]}):null,W.jsx("video",{ref:se,autoPlay:!0,playsInline:!0,style:L.phase==="connected"?{}:{display:"none"}})]})]})}return W.jsxs("div",{className:"stream-container",children:[h&&W.jsxs("div",{className:"stream-error",children:[h,W.jsx("button",{className:"stream-error-dismiss",onClick:()=>g(null),children:"×"})]}),W.jsxs("div",{className:"stream-topbar",children:[W.jsx("input",{className:"stream-input stream-input-name",placeholder:"Dein Name",value:n,onChange:oe=>r(oe.target.value),disabled:R}),W.jsx("input",{className:"stream-input stream-input-title",placeholder:"Stream-Titel",value:s,onChange:oe=>a(oe.target.value),disabled:R}),W.jsx("input",{className:"stream-input stream-input-password",type:"password",placeholder:"Passwort",value:l,onChange:oe=>u(oe.target.value),disabled:R}),R?W.jsxs("button",{className:"stream-btn stream-btn-stop",onClick:vt,children:["⏹"," Stream beenden"]}):W.jsx("button",{className:"stream-btn",onClick:pt,disabled:E,children:E?"Starte...":"🖥️ Stream starten"})]}),e.length===0&&!R?W.jsxs("div",{className:"stream-empty",children:[W.jsx("div",{className:"stream-empty-icon",children:"📺"}),W.jsx("h3",{children:"Keine aktiven Streams"}),W.jsx("p",{children:"Starte einen Stream, um deinen Bildschirm zu teilen."})]}):W.jsxs("div",{className:"stream-grid",children:[R&&W.jsxs("div",{className:"stream-tile own broadcasting",children:[W.jsxs("div",{className:"stream-tile-preview",children:[W.jsx("video",{ref:ne,autoPlay:!0,playsInline:!0,muted:!0}),W.jsxs("span",{className:"stream-live-badge",children:[W.jsx("span",{className:"stream-live-dot"})," LIVE"]}),W.jsxs("span",{className:"stream-tile-viewers",children:["👥"," ",((fe=e.find(oe=>oe.id===S))==null?void 0:fe.viewerCount)??0]})]}),W.jsxs("div",{className:"stream-tile-info",children:[W.jsxs("div",{className:"stream-tile-meta",children:[W.jsxs("div",{className:"stream-tile-name",children:[n," (Du)"]}),W.jsx("div",{className:"stream-tile-title",children:s})]}),W.jsx("span",{className:"stream-tile-time",children:S&&((X=e.find(oe=>oe.id===S))!=null&&X.startedAt)?qS(e.find(oe=>oe.id===S).startedAt):"0:00"})]})]}),e.filter(oe=>oe.id!==S).map(oe=>W.jsxs("div",{className:"stream-tile",onClick:()=>_t(oe.id),children:[W.jsxs("div",{className:"stream-tile-preview",children:[W.jsx("span",{className:"stream-tile-icon",children:"🖥️"}),W.jsxs("span",{className:"stream-live-badge",children:[W.jsx("span",{className:"stream-live-dot"})," LIVE"]}),W.jsxs("span",{className:"stream-tile-viewers",children:["👥"," ",oe.viewerCount]}),oe.hasPassword&&W.jsx("span",{className:"stream-tile-lock",children:"🔒"})]}),W.jsxs("div",{className:"stream-tile-info",children:[W.jsxs("div",{className:"stream-tile-meta",children:[W.jsx("div",{className:"stream-tile-name",children:oe.broadcasterName}),W.jsx("div",{className:"stream-tile-title",children:oe.title})]}),W.jsx("span",{className:"stream-tile-time",children:qS(oe.startedAt)}),W.jsxs("div",{className:"stream-tile-menu-wrap",children:[W.jsx("button",{className:"stream-tile-menu",onClick:Me=>{Me.stopPropagation(),k(G===oe.id?null:oe.id)},children:"⋮"}),G===oe.id&&W.jsxs("div",{className:"stream-tile-dropdown",onClick:Me=>Me.stopPropagation(),children:[W.jsxs("div",{className:"stream-tile-dropdown-header",children:[W.jsx("div",{className:"stream-tile-dropdown-name",children:oe.broadcasterName}),W.jsx("div",{className:"stream-tile-dropdown-title",children:oe.title}),W.jsxs("div",{className:"stream-tile-dropdown-detail",children:["👥"," ",oe.viewerCount," Zuschauer · ",qS(oe.startedAt)]})]}),W.jsx("div",{className:"stream-tile-dropdown-divider"}),W.jsxs("button",{className:"stream-tile-dropdown-item",onClick:()=>_t(oe.id),children:["🗗"," In neuem Fenster öffnen"]}),W.jsx("button",{className:"stream-tile-dropdown-item",onClick:()=>{tn(oe.id),k(null)},children:H===oe.id?"✅ Kopiert!":"🔗 Link teilen"})]})]})]})]},oe.id))]}),v&&W.jsx("div",{className:"stream-pw-overlay",onClick:()=>x(null),children:W.jsxs("div",{className:"stream-pw-modal",onClick:oe=>oe.stopPropagation(),children:[W.jsx("h3",{children:v.broadcasterName}),W.jsx("p",{children:v.streamTitle}),v.error&&W.jsx("div",{className:"stream-pw-modal-error",children:v.error}),W.jsx("input",{className:"stream-input",type:"password",placeholder:"Stream-Passwort",value:v.password,onChange:oe=>x(Me=>Me&&{...Me,password:oe.target.value,error:null}),onKeyDown:oe=>{oe.key==="Enter"&&It()},autoFocus:!0}),W.jsxs("div",{className:"stream-pw-actions",children:[W.jsx("button",{className:"stream-pw-cancel",onClick:()=>x(null),children:"Abbrechen"}),W.jsx("button",{className:"stream-btn",onClick:It,children:"Beitreten"})]})]})})]})}const Yde={radio:xde,soundboard:qde,lolstats:$de,streaming:Xde};function Qde(){const[i,e]=Le.useState(!1),[t,n]=Le.useState([]),[r,s]=Le.useState(()=>localStorage.getItem("hub_activeTab")??""),a=x=>{s(x),localStorage.setItem("hub_activeTab",x)},[l,u]=Le.useState({}),h=Le.useRef(null);Le.useEffect(()=>{fetch("/api/plugins").then(x=>x.json()).then(x=>{if(n(x),new URLSearchParams(location.search).has("viewStream")&&x.some(C=>C.name==="streaming")){a("streaming");return}const w=localStorage.getItem("hub_activeTab"),R=x.some(C=>C.name===w);x.length>0&&!R&&a(x[0].name)}).catch(()=>{})},[]),Le.useEffect(()=>{let x=null,S;function w(){x=new EventSource("/api/events"),h.current=x,x.onopen=()=>e(!0),x.onmessage=R=>{try{const C=JSON.parse(R.data);C.type==="snapshot"?u(E=>({...E,...C})):C.plugin&&u(E=>({...E,[C.plugin]:{...E[C.plugin]||{},...C}}))}catch{}},x.onerror=()=>{e(!1),x==null||x.close(),S=setTimeout(w,3e3)}}return w(),()=>{x==null||x.close(),clearTimeout(S)}},[]);const g="1.0.0-dev",v={radio:"🌍",soundboard:"🎵",lolstats:"⚔️",stats:"📊",events:"📅",games:"🎲",gamevote:"🎮",streaming:"📺"};return W.jsxs("div",{className:"hub-app",children:[W.jsxs("header",{className:"hub-header",children:[W.jsxs("div",{className:"hub-header-left",children:[W.jsx("span",{className:"hub-logo",children:"🎮"}),W.jsx("span",{className:"hub-title",children:"Gaming Hub"}),W.jsx("span",{className:`hub-conn-dot ${i?"online":""}`})]}),W.jsx("nav",{className:"hub-tabs",children:t.map(x=>W.jsxs("button",{className:`hub-tab ${r===x.name?"active":""}`,onClick:()=>a(x.name),title:x.description,children:[W.jsx("span",{className:"hub-tab-icon",children:v[x.name]??"📦"}),W.jsx("span",{className:"hub-tab-label",children:x.name})]},x.name))}),W.jsx("div",{className:"hub-header-right",children:W.jsxs("span",{className:"hub-version",children:["v",g]})})]}),W.jsx("main",{className:"hub-content",children:t.length===0?W.jsxs("div",{className:"hub-empty",children:[W.jsx("span",{className:"hub-empty-icon",children:"📦"}),W.jsx("h2",{children:"Keine Plugins geladen"}),W.jsx("p",{children:"Plugins werden im Server konfiguriert."})]}):t.map(x=>{const S=Yde[x.name];if(!S)return null;const w=r===x.name;return W.jsx("div",{className:`hub-tab-panel ${w?"active":""}`,style:w?{display:"flex",flexDirection:"column",width:"100%",height:"100%"}:{display:"none"},children:W.jsx(S,{data:l[x.name]||{}})},x.name)})})]})}PF.createRoot(document.getElementById("root")).render(W.jsx(Qde,{})); diff --git a/web/dist/assets/index-ZMOZU_VE.js b/web/dist/assets/index-ZMOZU_VE.js new file mode 100644 index 0000000..fbf66b5 --- /dev/null +++ b/web/dist/assets/index-ZMOZU_VE.js @@ -0,0 +1,4830 @@ +(function(){const e=document.createElement("link").relList;if(e&&e.supports&&e.supports("modulepreload"))return;for(const r of document.querySelectorAll('link[rel="modulepreload"]'))n(r);new MutationObserver(r=>{for(const s of r)if(s.type==="childList")for(const a of s.addedNodes)a.tagName==="LINK"&&a.rel==="modulepreload"&&n(a)}).observe(document,{childList:!0,subtree:!0});function t(r){const s={};return r.integrity&&(s.integrity=r.integrity),r.referrerPolicy&&(s.referrerPolicy=r.referrerPolicy),r.crossOrigin==="use-credentials"?s.credentials="include":r.crossOrigin==="anonymous"?s.credentials="omit":s.credentials="same-origin",s}function n(r){if(r.ep)return;r.ep=!0;const s=t(r);fetch(r.href,s)}})();function S7(i){return i&&i.__esModule&&Object.prototype.hasOwnProperty.call(i,"default")?i.default:i}var $b={exports:{}},$p={};/** + * @license React + * react-jsx-runtime.production.js + * + * Copyright (c) Meta Platforms, Inc. and affiliates. + * + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. + */var BC;function TF(){if(BC)return $p;BC=1;var i=Symbol.for("react.transitional.element"),e=Symbol.for("react.fragment");function t(n,r,s){var a=null;if(s!==void 0&&(a=""+s),r.key!==void 0&&(a=""+r.key),"key"in r){s={};for(var l in r)l!=="key"&&(s[l]=r[l])}else s=r;return r=s.ref,{$$typeof:i,type:n,key:a,ref:r!==void 0?r:null,props:s}}return $p.Fragment=e,$p.jsx=t,$p.jsxs=t,$p}var OC;function wF(){return OC||(OC=1,$b.exports=TF()),$b.exports}var k=wF(),Xb={exports:{}},Xp={},Yb={exports:{}},Qb={};/** + * @license React + * scheduler.production.js + * + * Copyright (c) Meta Platforms, Inc. and affiliates. + * + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. + */var IC;function MF(){return IC||(IC=1,(function(i){function e(Q,ue){var he=Q.length;Q.push(ue);e:for(;0>>1,Te=Q[we];if(0>>1;wer(ze,he))Eer(Ge,ze)?(Q[we]=Ge,Q[Ee]=he,we=Ee):(Q[we]=ze,Q[be]=he,we=be);else if(Eer(Ge,he))Q[we]=Ge,Q[Ee]=he,we=Ee;else break e}}return ue}function r(Q,ue){var he=Q.sortIndex-ue.sortIndex;return he!==0?he:Q.id-ue.id}if(i.unstable_now=void 0,typeof performance=="object"&&typeof performance.now=="function"){var s=performance;i.unstable_now=function(){return s.now()}}else{var a=Date,l=a.now();i.unstable_now=function(){return a.now()-l}}var u=[],h=[],m=1,v=null,x=3,S=!1,w=!1,R=!1,C=!1,E=typeof setTimeout=="function"?setTimeout:null,B=typeof clearTimeout=="function"?clearTimeout:null,L=typeof setImmediate<"u"?setImmediate:null;function O(Q){for(var ue=t(h);ue!==null;){if(ue.callback===null)n(h);else if(ue.startTime<=Q)n(h),ue.sortIndex=ue.expirationTime,e(u,ue);else break;ue=t(h)}}function G(Q){if(R=!1,O(Q),!w)if(t(u)!==null)w=!0,q||(q=!0,J());else{var ue=t(h);ue!==null&&te(G,ue.startTime-Q)}}var q=!1,z=-1,j=5,F=-1;function V(){return C?!0:!(i.unstable_now()-FQ&&V());){var we=v.callback;if(typeof we=="function"){v.callback=null,x=v.priorityLevel;var Te=we(v.expirationTime<=Q);if(Q=i.unstable_now(),typeof Te=="function"){v.callback=Te,O(Q),ue=!0;break t}v===t(u)&&n(u),O(Q)}else n(u);v=t(u)}if(v!==null)ue=!0;else{var ce=t(h);ce!==null&&te(G,ce.startTime-Q),ue=!1}}break e}finally{v=null,x=he,S=!1}ue=void 0}}finally{ue?J():q=!1}}}var J;if(typeof L=="function")J=function(){L(Y)};else if(typeof MessageChannel<"u"){var ne=new MessageChannel,oe=ne.port2;ne.port1.onmessage=Y,J=function(){oe.postMessage(null)}}else J=function(){E(Y,0)};function te(Q,ue){z=E(function(){Q(i.unstable_now())},ue)}i.unstable_IdlePriority=5,i.unstable_ImmediatePriority=1,i.unstable_LowPriority=4,i.unstable_NormalPriority=3,i.unstable_Profiling=null,i.unstable_UserBlockingPriority=2,i.unstable_cancelCallback=function(Q){Q.callback=null},i.unstable_forceFrameRate=function(Q){0>Q||125we?(Q.sortIndex=he,e(h,Q),t(u)===null&&Q===t(h)&&(R?(B(z),z=-1):R=!0,te(G,he-we))):(Q.sortIndex=Te,e(u,Q),w||S||(w=!0,q||(q=!0,J()))),Q},i.unstable_shouldYield=V,i.unstable_wrapCallback=function(Q){var ue=x;return function(){var he=x;x=ue;try{return Q.apply(this,arguments)}finally{x=he}}}})(Qb)),Qb}var FC;function EF(){return FC||(FC=1,Yb.exports=MF()),Yb.exports}var Kb={exports:{}},ei={};/** + * @license React + * react.production.js + * + * Copyright (c) Meta Platforms, Inc. and affiliates. + * + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. + */var kC;function CF(){if(kC)return ei;kC=1;var i=Symbol.for("react.transitional.element"),e=Symbol.for("react.portal"),t=Symbol.for("react.fragment"),n=Symbol.for("react.strict_mode"),r=Symbol.for("react.profiler"),s=Symbol.for("react.consumer"),a=Symbol.for("react.context"),l=Symbol.for("react.forward_ref"),u=Symbol.for("react.suspense"),h=Symbol.for("react.memo"),m=Symbol.for("react.lazy"),v=Symbol.for("react.activity"),x=Symbol.iterator;function S(ce){return ce===null||typeof ce!="object"?null:(ce=x&&ce[x]||ce["@@iterator"],typeof ce=="function"?ce:null)}var w={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},R=Object.assign,C={};function E(ce,be,ze){this.props=ce,this.context=be,this.refs=C,this.updater=ze||w}E.prototype.isReactComponent={},E.prototype.setState=function(ce,be){if(typeof ce!="object"&&typeof ce!="function"&&ce!=null)throw Error("takes an object of state variables to update or a function which returns an object of state variables.");this.updater.enqueueSetState(this,ce,be,"setState")},E.prototype.forceUpdate=function(ce){this.updater.enqueueForceUpdate(this,ce,"forceUpdate")};function B(){}B.prototype=E.prototype;function L(ce,be,ze){this.props=ce,this.context=be,this.refs=C,this.updater=ze||w}var O=L.prototype=new B;O.constructor=L,R(O,E.prototype),O.isPureReactComponent=!0;var G=Array.isArray;function q(){}var z={H:null,A:null,T:null,S:null},j=Object.prototype.hasOwnProperty;function F(ce,be,ze){var Ee=ze.ref;return{$$typeof:i,type:ce,key:be,ref:Ee!==void 0?Ee:null,props:ze}}function V(ce,be){return F(ce.type,be,ce.props)}function Y(ce){return typeof ce=="object"&&ce!==null&&ce.$$typeof===i}function J(ce){var be={"=":"=0",":":"=2"};return"$"+ce.replace(/[=:]/g,function(ze){return be[ze]})}var ne=/\/+/g;function oe(ce,be){return typeof ce=="object"&&ce!==null&&ce.key!=null?J(""+ce.key):be.toString(36)}function te(ce){switch(ce.status){case"fulfilled":return ce.value;case"rejected":throw ce.reason;default:switch(typeof ce.status=="string"?ce.then(q,q):(ce.status="pending",ce.then(function(be){ce.status==="pending"&&(ce.status="fulfilled",ce.value=be)},function(be){ce.status==="pending"&&(ce.status="rejected",ce.reason=be)})),ce.status){case"fulfilled":return ce.value;case"rejected":throw ce.reason}}throw ce}function Q(ce,be,ze,Ee,Ge){var xe=typeof ce;(xe==="undefined"||xe==="boolean")&&(ce=null);var Le=!1;if(ce===null)Le=!0;else switch(xe){case"bigint":case"string":case"number":Le=!0;break;case"object":switch(ce.$$typeof){case i:case e:Le=!0;break;case m:return Le=ce._init,Q(Le(ce._payload),be,ze,Ee,Ge)}}if(Le)return Ge=Ge(ce),Le=Ee===""?"."+oe(ce,0):Ee,G(Ge)?(ze="",Le!=null&&(ze=Le.replace(ne,"$&/")+"/"),Q(Ge,be,ze,"",function(xt){return xt})):Ge!=null&&(Y(Ge)&&(Ge=V(Ge,ze+(Ge.key==null||ce&&ce.key===Ge.key?"":(""+Ge.key).replace(ne,"$&/")+"/")+Le)),be.push(Ge)),1;Le=0;var ct=Ee===""?".":Ee+":";if(G(ce))for(var _t=0;_t"u"||typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE!="function"))try{__REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE(i)}catch(e){console.error(e)}}return i(),Zb.exports=RF(),Zb.exports}/** + * @license React + * react-dom-client.production.js + * + * Copyright (c) Meta Platforms, Inc. and affiliates. + * + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. + */var VC;function DF(){if(VC)return Xp;VC=1;var i=EF(),e=_w(),t=NF();function n(o){var c="https://react.dev/errors/"+o;if(1Te||(o.current=we[Te],we[Te]=null,Te--)}function ze(o,c){Te++,we[Te]=o.current,o.current=c}var Ee=ce(null),Ge=ce(null),xe=ce(null),Le=ce(null);function ct(o,c){switch(ze(xe,c),ze(Ge,o),ze(Ee,null),c.nodeType){case 9:case 11:o=(o=c.documentElement)&&(o=o.namespaceURI)?rC(o):0;break;default:if(o=c.tagName,c=c.namespaceURI)c=rC(c),o=sC(c,o);else switch(o){case"svg":o=1;break;case"math":o=2;break;default:o=0}}be(Ee),ze(Ee,o)}function _t(){be(Ee),be(Ge),be(xe)}function xt(o){o.memoizedState!==null&&ze(Le,o);var c=Ee.current,g=sC(c,o.type);c!==g&&(ze(Ge,o),ze(Ee,g))}function Ft(o){Ge.current===o&&(be(Ee),be(Ge)),Le.current===o&&(be(Le),Vp._currentValue=he)}var Ye,rt;function fe(o){if(Ye===void 0)try{throw Error()}catch(g){var c=g.stack.trim().match(/\n( *(at )?)/);Ye=c&&c[1]||"",rt=-1)":-1D||Ce[b]!==et[D]){var ht=` +`+Ce[b].replace(" at new "," at ");return o.displayName&&ht.includes("")&&(ht=ht.replace("",o.displayName)),ht}while(1<=b&&0<=D);break}}}finally{zt=!1,Error.prepareStackTrace=g}return(g=o?o.displayName||o.name:"")?fe(g):""}function Dt(o,c){switch(o.tag){case 26:case 27:case 5:return fe(o.type);case 16:return fe("Lazy");case 13:return o.child!==c&&c!==null?fe("Suspense Fallback"):fe("Suspense");case 19:return fe("SuspenseList");case 0:case 15:return ft(o.type,!1);case 11:return ft(o.type.render,!1);case 1:return ft(o.type,!0);case 31:return fe("Activity");default:return""}}function pt(o){try{var c="",g=null;do c+=Dt(o,g),g=o,o=o.return;while(o);return c}catch(b){return` +Error generating stack: `+b.message+` +`+b.stack}}var en=Object.prototype.hasOwnProperty,Re=i.unstable_scheduleCallback,re=i.unstable_cancelCallback,$=i.unstable_shouldYield,se=i.unstable_requestPaint,Se=i.unstable_now,Fe=i.unstable_getCurrentPriorityLevel,qe=i.unstable_ImmediatePriority,wt=i.unstable_UserBlockingPriority,Mt=i.unstable_NormalPriority,Gt=i.unstable_LowPriority,$t=i.unstable_IdlePriority,vt=i.log,Yt=i.unstable_setDisableYieldValue,rn=null,Ht=null;function Pt(o){if(typeof vt=="function"&&Yt(o),Ht&&typeof Ht.setStrictMode=="function")try{Ht.setStrictMode(rn,o)}catch{}}var It=Math.clz32?Math.clz32:ge,Nn=Math.log,Jn=Math.LN2;function ge(o){return o>>>=0,o===0?32:31-(Nn(o)/Jn|0)|0}var Wt=256,it=262144,bt=4194304;function Xt(o){var c=o&42;if(c!==0)return c;switch(o&-o){case 1:return 1;case 2:return 2;case 4:return 4;case 8:return 8;case 16:return 16;case 32:return 32;case 64:return 64;case 128:return 128;case 256:case 512:case 1024:case 2048:case 4096:case 8192:case 16384:case 32768:case 65536:case 131072:return o&261888;case 262144:case 524288:case 1048576:case 2097152:return o&3932160;case 4194304:case 8388608:case 16777216:case 33554432:return o&62914560;case 67108864:return 67108864;case 134217728:return 134217728;case 268435456:return 268435456;case 536870912:return 536870912;case 1073741824:return 0;default:return o}}function qt(o,c,g){var b=o.pendingLanes;if(b===0)return 0;var D=0,P=o.suspendedLanes,X=o.pingedLanes;o=o.warmLanes;var ae=b&134217727;return ae!==0?(b=ae&~P,b!==0?D=Xt(b):(X&=ae,X!==0?D=Xt(X):g||(g=ae&~o,g!==0&&(D=Xt(g))))):(ae=b&~P,ae!==0?D=Xt(ae):X!==0?D=Xt(X):g||(g=b&~o,g!==0&&(D=Xt(g)))),D===0?0:c!==0&&c!==D&&(c&P)===0&&(P=D&-D,g=c&-c,P>=g||P===32&&(g&4194048)!==0)?c:D}function xn(o,c){return(o.pendingLanes&~(o.suspendedLanes&~o.pingedLanes)&c)===0}function qi(o,c){switch(o){case 1:case 2:case 4:case 8:case 64:return c+250;case 16:case 32:case 128:case 256:case 512:case 1024:case 2048:case 4096:case 8192:case 16384:case 32768:case 65536:case 131072:case 262144:case 524288:case 1048576:case 2097152:return c+5e3;case 4194304:case 8388608:case 16777216:case 33554432:return-1;case 67108864:case 134217728:case 268435456:case 536870912:case 1073741824:return-1;default:return-1}}function rr(){var o=bt;return bt<<=1,(bt&62914560)===0&&(bt=4194304),o}function pn(o){for(var c=[],g=0;31>g;g++)c.push(o);return c}function $i(o,c){o.pendingLanes|=c,c!==268435456&&(o.suspendedLanes=0,o.pingedLanes=0,o.warmLanes=0)}function Jr(o,c,g,b,D,P){var X=o.pendingLanes;o.pendingLanes=g,o.suspendedLanes=0,o.pingedLanes=0,o.warmLanes=0,o.expiredLanes&=g,o.entangledLanes&=g,o.errorRecoveryDisabledLanes&=g,o.shellSuspendCounter=0;var ae=o.entanglements,Ce=o.expirationTimes,et=o.hiddenUpdates;for(g=X&~g;0"u")return null;try{return o.activeElement||o.body}catch{return o.body}}var _e=/[\n"\\]/g;function ot(o){return o.replace(_e,function(c){return"\\"+c.charCodeAt(0).toString(16)+" "})}function Rt(o,c,g,b,D,P,X,ae){o.name="",X!=null&&typeof X!="function"&&typeof X!="symbol"&&typeof X!="boolean"?o.type=X:o.removeAttribute("type"),c!=null?X==="number"?(c===0&&o.value===""||o.value!=c)&&(o.value=""+Un(c)):o.value!==""+Un(c)&&(o.value=""+Un(c)):X!=="submit"&&X!=="reset"||o.removeAttribute("value"),c!=null?cn(o,X,Un(c)):g!=null?cn(o,X,Un(g)):b!=null&&o.removeAttribute("value"),D==null&&P!=null&&(o.defaultChecked=!!P),D!=null&&(o.checked=D&&typeof D!="function"&&typeof D!="symbol"),ae!=null&&typeof ae!="function"&&typeof ae!="symbol"&&typeof ae!="boolean"?o.name=""+Un(ae):o.removeAttribute("name")}function Jt(o,c,g,b,D,P,X,ae){if(P!=null&&typeof P!="function"&&typeof P!="symbol"&&typeof P!="boolean"&&(o.type=P),c!=null||g!=null){if(!(P!=="submit"&&P!=="reset"||c!=null)){fi(o);return}g=g!=null?""+Un(g):"",c=c!=null?""+Un(c):g,ae||c===o.value||(o.value=c),o.defaultValue=c}b=b??D,b=typeof b!="function"&&typeof b!="symbol"&&!!b,o.checked=ae?o.checked:!!b,o.defaultChecked=!!b,X!=null&&typeof X!="function"&&typeof X!="symbol"&&typeof X!="boolean"&&(o.name=X),fi(o)}function cn(o,c,g){c==="number"&&fa(o.ownerDocument)===o||o.defaultValue===""+g||(o.defaultValue=""+g)}function Yn(o,c,g,b){if(o=o.options,c){c={};for(var D=0;D"u"||typeof window.document>"u"||typeof window.document.createElement>"u"),TA=!1;if(il)try{var tf={};Object.defineProperty(tf,"passive",{get:function(){TA=!0}}),window.addEventListener("test",tf,tf),window.removeEventListener("test",tf,tf)}catch{TA=!1}var Lo=null,nf=null,wA=null;function np(){if(wA)return wA;var o,c=nf,g=c.length,b,D="value"in Lo?Lo.value:Lo.textContent,P=D.length;for(o=0;o=of),Ou=" ",m1=!1;function RA(o,c){switch(o){case"keyup":return xx.indexOf(c.keyCode)!==-1;case"keydown":return c.keyCode!==229;case"keypress":case"mousedown":case"focusout":return!0;default:return!1}}function op(o){return o=o.detail,typeof o=="object"&&"data"in o?o.data:null}var Qc=!1;function g1(o,c){switch(o){case"compositionend":return op(c);case"keypress":return c.which!==32?null:(m1=!0,Ou);case"textInput":return o=c.data,o===Ou&&m1?null:o;default:return null}}function bx(o,c){if(Qc)return o==="compositionend"||!Bu&&RA(o,c)?(o=np(),wA=nf=Lo=null,Qc=!1,o):null;switch(o){case"paste":return null;case"keypress":if(!(c.ctrlKey||c.altKey||c.metaKey)||c.ctrlKey&&c.altKey){if(c.char&&1=c)return{node:g,offset:c-o};o=b}e:{for(;g;){if(g.nextSibling){g=g.nextSibling;break e}g=g.parentNode}g=void 0}g=PA(g)}}function zu(o,c){return o&&c?o===c?!0:o&&o.nodeType===3?!1:c&&c.nodeType===3?zu(o,c.parentNode):"contains"in o?o.contains(c):o.compareDocumentPosition?!!(o.compareDocumentPosition(c)&16):!1:!1}function Ol(o){o=o!=null&&o.ownerDocument!=null&&o.ownerDocument.defaultView!=null?o.ownerDocument.defaultView:window;for(var c=fa(o.document);c instanceof o.HTMLIFrameElement;){try{var g=typeof c.contentWindow.location.href=="string"}catch{g=!1}if(g)o=c.contentWindow;else break;c=fa(o.document)}return c}function Il(o){var c=o&&o.nodeName&&o.nodeName.toLowerCase();return c&&(c==="input"&&(o.type==="text"||o.type==="search"||o.type==="tel"||o.type==="url"||o.type==="password")||c==="textarea"||o.contentEditable==="true")}var wx=il&&"documentMode"in document&&11>=document.documentMode,Gu=null,fp=null,qu=null,Ap=!1;function S1(o,c,g){var b=g.window===g?g.document:g.nodeType===9?g:g.ownerDocument;Ap||Gu==null||Gu!==fa(b)||(b=Gu,"selectionStart"in b&&Il(b)?b={start:b.selectionStart,end:b.selectionEnd}:(b=(b.ownerDocument&&b.ownerDocument.defaultView||window).getSelection(),b={anchorNode:b.anchorNode,anchorOffset:b.anchorOffset,focusNode:b.focusNode,focusOffset:b.focusOffset}),qu&&Ss(qu,b)||(qu=b,b=r2(fp,"onSelect"),0>=X,D-=X,Na=1<<32-It(c)+D|g<li?(Si=hn,hn=null):Si=hn.sibling;var Pi=tt(je,hn,Ze[li],yt);if(Pi===null){hn===null&&(hn=Si);break}o&&hn&&Pi.alternate===null&&c(je,hn),Be=P(Pi,Be,li),Di===null?Sn=Pi:Di.sibling=Pi,Di=Pi,hn=Si}if(li===Ze.length)return g(je,hn),gi&&Oo(je,li),Sn;if(hn===null){for(;lili?(Si=hn,hn=null):Si=hn.sibling;var dh=tt(je,hn,Pi.value,yt);if(dh===null){hn===null&&(hn=Si);break}o&&hn&&dh.alternate===null&&c(je,hn),Be=P(dh,Be,li),Di===null?Sn=dh:Di.sibling=dh,Di=dh,hn=Si}if(Pi.done)return g(je,hn),gi&&Oo(je,li),Sn;if(hn===null){for(;!Pi.done;li++,Pi=Ze.next())Pi=Tt(je,Pi.value,yt),Pi!==null&&(Be=P(Pi,Be,li),Di===null?Sn=Pi:Di.sibling=Pi,Di=Pi);return gi&&Oo(je,li),Sn}for(hn=b(hn);!Pi.done;li++,Pi=Ze.next())Pi=nt(hn,je,li,Pi.value,yt),Pi!==null&&(o&&Pi.alternate!==null&&hn.delete(Pi.key===null?li:Pi.key),Be=P(Pi,Be,li),Di===null?Sn=Pi:Di.sibling=Pi,Di=Pi);return o&&hn.forEach(function(SF){return c(je,SF)}),gi&&Oo(je,li),Sn}function er(je,Be,Ze,yt){if(typeof Ze=="object"&&Ze!==null&&Ze.type===R&&Ze.key===null&&(Ze=Ze.props.children),typeof Ze=="object"&&Ze!==null){switch(Ze.$$typeof){case S:e:{for(var Sn=Ze.key;Be!==null;){if(Be.key===Sn){if(Sn=Ze.type,Sn===R){if(Be.tag===7){g(je,Be.sibling),yt=D(Be,Ze.props.children),yt.return=je,je=yt;break e}}else if(Be.elementType===Sn||typeof Sn=="object"&&Sn!==null&&Sn.$$typeof===j&&f(Sn)===Be.type){g(je,Be.sibling),yt=D(Be,Ze.props),U(yt,Ze),yt.return=je,je=yt;break e}g(je,Be);break}else c(je,Be);Be=Be.sibling}Ze.type===R?(yt=$u(Ze.props.children,je.mode,yt,Ze.key),yt.return=je,je=yt):(yt=IA(Ze.type,Ze.key,Ze.props,null,je.mode,yt),U(yt,Ze),yt.return=je,je=yt)}return X(je);case w:e:{for(Sn=Ze.key;Be!==null;){if(Be.key===Sn)if(Be.tag===4&&Be.stateNode.containerInfo===Ze.containerInfo&&Be.stateNode.implementation===Ze.implementation){g(je,Be.sibling),yt=D(Be,Ze.children||[]),yt.return=je,je=yt;break e}else{g(je,Be);break}else c(je,Be);Be=Be.sibling}yt=Bo(Ze,je.mode,yt),yt.return=je,je=yt}return X(je);case j:return Ze=f(Ze),er(je,Be,Ze,yt)}if(te(Ze))return ln(je,Be,Ze,yt);if(J(Ze)){if(Sn=J(Ze),typeof Sn!="function")throw Error(n(150));return Ze=Sn.call(Ze),Pn(je,Be,Ze,yt)}if(typeof Ze.then=="function")return er(je,Be,N(Ze),yt);if(Ze.$$typeof===L)return er(je,Be,HA(je,Ze),yt);I(je,Ze)}return typeof Ze=="string"&&Ze!==""||typeof Ze=="number"||typeof Ze=="bigint"?(Ze=""+Ze,Be!==null&&Be.tag===6?(g(je,Be.sibling),yt=D(Be,Ze),yt.return=je,je=yt):(g(je,Be),yt=vp(Ze,je.mode,yt),yt.return=je,je=yt),X(je)):g(je,Be)}return function(je,Be,Ze,yt){try{M=0;var Sn=er(je,Be,Ze,yt);return T=null,Sn}catch(hn){if(hn===hl||hn===uo)throw hn;var Di=Ys(29,hn,null,je.mode);return Di.lanes=yt,Di.return=je,Di}finally{}}}var ie=H(!0),pe=H(!1),de=!1;function me(o){o.updateQueue={baseState:o.memoizedState,firstBaseUpdate:null,lastBaseUpdate:null,shared:{pending:null,lanes:0,hiddenCallbacks:null},callbacks:null}}function Ne(o,c){o=o.updateQueue,c.updateQueue===o&&(c.updateQueue={baseState:o.baseState,firstBaseUpdate:o.firstBaseUpdate,lastBaseUpdate:o.lastBaseUpdate,shared:o.shared,callbacks:null})}function Oe(o){return{lane:o,tag:0,payload:null,callback:null,next:null}}function Qe(o,c,g){var b=o.updateQueue;if(b===null)return null;if(b=b.shared,(Oi&2)!==0){var D=b.pending;return D===null?c.next=c:(c.next=D.next,D.next=c),b.pending=c,c=OA(o),M1(o,null,g),c}return BA(o,b,c,g),OA(o)}function He(o,c,g){if(c=c.updateQueue,c!==null&&(c=c.shared,(g&4194048)!==0)){var b=c.lanes;b&=o.pendingLanes,g|=b,c.lanes=g,mt(o,g)}}function Ve(o,c){var g=o.updateQueue,b=o.alternate;if(b!==null&&(b=b.updateQueue,g===b)){var D=null,P=null;if(g=g.firstBaseUpdate,g!==null){do{var X={lane:g.lane,tag:g.tag,payload:g.payload,callback:null,next:null};P===null?D=P=X:P=P.next=X,g=g.next}while(g!==null);P===null?D=P=c:P=P.next=c}else D=P=c;g={baseState:b.baseState,firstBaseUpdate:D,lastBaseUpdate:P,shared:b.shared,callbacks:b.callbacks},o.updateQueue=g;return}o=g.lastBaseUpdate,o===null?g.firstBaseUpdate=c:o.next=c,g.lastBaseUpdate=c}var De=!1;function Lt(){if(De){var o=fr;if(o!==null)throw o}}function sn(o,c,g,b){De=!1;var D=o.updateQueue;de=!1;var P=D.firstBaseUpdate,X=D.lastBaseUpdate,ae=D.shared.pending;if(ae!==null){D.shared.pending=null;var Ce=ae,et=Ce.next;Ce.next=null,X===null?P=et:X.next=et,X=Ce;var ht=o.alternate;ht!==null&&(ht=ht.updateQueue,ae=ht.lastBaseUpdate,ae!==X&&(ae===null?ht.firstBaseUpdate=et:ae.next=et,ht.lastBaseUpdate=Ce))}if(P!==null){var Tt=D.baseState;X=0,ht=et=Ce=null,ae=P;do{var tt=ae.lane&-536870913,nt=tt!==ae.lane;if(nt?(bi&tt)===tt:(b&tt)===tt){tt!==0&&tt===eh&&(De=!0),ht!==null&&(ht=ht.next={lane:0,tag:ae.tag,payload:ae.payload,callback:null,next:null});e:{var ln=o,Pn=ae;tt=c;var er=g;switch(Pn.tag){case 1:if(ln=Pn.payload,typeof ln=="function"){Tt=ln.call(er,Tt,tt);break e}Tt=ln;break e;case 3:ln.flags=ln.flags&-65537|128;case 0:if(ln=Pn.payload,tt=typeof ln=="function"?ln.call(er,Tt,tt):ln,tt==null)break e;Tt=v({},Tt,tt);break e;case 2:de=!0}}tt=ae.callback,tt!==null&&(o.flags|=64,nt&&(o.flags|=8192),nt=D.callbacks,nt===null?D.callbacks=[tt]:nt.push(tt))}else nt={lane:tt,tag:ae.tag,payload:ae.payload,callback:ae.callback,next:null},ht===null?(et=ht=nt,Ce=Tt):ht=ht.next=nt,X|=tt;if(ae=ae.next,ae===null){if(ae=D.shared.pending,ae===null)break;nt=ae,ae=nt.next,nt.next=null,D.lastBaseUpdate=nt,D.shared.pending=null}}while(!0);ht===null&&(Ce=Tt),D.baseState=Ce,D.firstBaseUpdate=et,D.lastBaseUpdate=ht,P===null&&(D.shared.lanes=0),rh|=X,o.lanes=X,o.memoizedState=Tt}}function tn(o,c){if(typeof o!="function")throw Error(n(191,o));o.call(c)}function Bn(o,c){var g=o.callbacks;if(g!==null)for(o.callbacks=null,o=0;oP?P:8;var X=Q.T,ae={};Q.T=ae,jx(o,!1,c,g);try{var Ce=D(),et=Q.S;if(et!==null&&et(ae,Ce),Ce!==null&&typeof Ce=="object"&&typeof Ce.then=="function"){var ht=N1(Ce,b);Mp(o,c,ht,Ao(o))}else Mp(o,c,b,Ao(o))}catch(Tt){Mp(o,c,{then:function(){},status:"rejected",reason:Tt},Ao())}finally{ue.p=P,X!==null&&ae.types!==null&&(X.types=ae.types),Q.T=X}}function vI(){}function Vx(o,c,g,b){if(o.tag!==5)throw Error(n(476));var D=N4(o).queue;R4(o,D,c,he,g===null?vI:function(){return D4(o),g(b)})}function N4(o){var c=o.memoizedState;if(c!==null)return c;c={memoizedState:he,baseState:he,baseQueue:null,queue:{pending:null,lanes:0,dispatch:null,lastRenderedReducer:nc,lastRenderedState:he},next:null};var g={};return c.next={memoizedState:g,baseState:g,baseQueue:null,queue:{pending:null,lanes:0,dispatch:null,lastRenderedReducer:nc,lastRenderedState:g},next:null},o.memoizedState=c,o=o.alternate,o!==null&&(o.memoizedState=c),c}function D4(o){var c=N4(o);c.next===null&&(c=o.alternate.memoizedState),Mp(o,c.next.queue,{},Ao())}function Hx(){return As(Vp)}function P4(){return jr().memoizedState}function L4(){return jr().memoizedState}function _I(o){for(var c=o.return;c!==null;){switch(c.tag){case 24:case 3:var g=Ao();o=Oe(g);var b=Qe(c,o,g);b!==null&&(Ia(b,c,g),He(b,c,g)),c={cache:Ur()},o.payload=c;return}c=c.return}}function yI(o,c,g){var b=Ao();g={lane:b,revertLane:0,gesture:null,action:g,hasEagerState:!1,eagerState:null,next:null},k1(o)?B4(c,g):(g=gp(o,c,g,b),g!==null&&(Ia(g,o,b),O4(g,c,b)))}function U4(o,c,g){var b=Ao();Mp(o,c,g,b)}function Mp(o,c,g,b){var D={lane:b,revertLane:0,gesture:null,action:g,hasEagerState:!1,eagerState:null,next:null};if(k1(o))B4(c,D);else{var P=o.alternate;if(o.lanes===0&&(P===null||P.lanes===0)&&(P=c.lastRenderedReducer,P!==null))try{var X=c.lastRenderedState,ae=P(X,g);if(D.hasEagerState=!0,D.eagerState=ae,Aa(ae,X))return BA(o,c,D,0),or===null&&UA(),!1}catch{}finally{}if(g=gp(o,c,D,b),g!==null)return Ia(g,o,b),O4(g,c,b),!0}return!1}function jx(o,c,g,b){if(b={lane:2,revertLane:Sb(),gesture:null,action:b,hasEagerState:!1,eagerState:null,next:null},k1(o)){if(c)throw Error(n(479))}else c=gp(o,g,b,2),c!==null&&Ia(c,o,2)}function k1(o){var c=o.alternate;return o===si||c!==null&&c===si}function B4(o,c){jA=P1=!0;var g=o.pending;g===null?c.next=c:(c.next=g.next,g.next=c),o.pending=c}function O4(o,c,g){if((g&4194048)!==0){var b=c.lanes;b&=o.pendingLanes,g|=b,c.lanes=g,mt(o,g)}}var Ep={readContext:As,use:B1,useCallback:Br,useContext:Br,useEffect:Br,useImperativeHandle:Br,useLayoutEffect:Br,useInsertionEffect:Br,useMemo:Br,useReducer:Br,useRef:Br,useState:Br,useDebugValue:Br,useDeferredValue:Br,useTransition:Br,useSyncExternalStore:Br,useId:Br,useHostTransitionStatus:Br,useFormState:Br,useActionState:Br,useOptimistic:Br,useMemoCache:Br,useCacheRefresh:Br};Ep.useEffectEvent=Br;var I4={readContext:As,use:B1,useCallback:function(o,c){return ma().memoizedState=[o,c===void 0?null:c],o},useContext:As,useEffect:y4,useImperativeHandle:function(o,c,g){g=g!=null?g.concat([o]):null,I1(4194308,4,T4.bind(null,c,o),g)},useLayoutEffect:function(o,c){return I1(4194308,4,o,c)},useInsertionEffect:function(o,c){I1(4,2,o,c)},useMemo:function(o,c){var g=ma();c=c===void 0?null:c;var b=o();if(mf){Pt(!0);try{o()}finally{Pt(!1)}}return g.memoizedState=[b,c],b},useReducer:function(o,c,g){var b=ma();if(g!==void 0){var D=g(c);if(mf){Pt(!0);try{g(c)}finally{Pt(!1)}}}else D=c;return b.memoizedState=b.baseState=D,o={pending:null,lanes:0,dispatch:null,lastRenderedReducer:o,lastRenderedState:D},b.queue=o,o=o.dispatch=yI.bind(null,si,o),[b.memoizedState,o]},useRef:function(o){var c=ma();return o={current:o},c.memoizedState=o},useState:function(o){o=Fx(o);var c=o.queue,g=U4.bind(null,si,c);return c.dispatch=g,[o.memoizedState,g]},useDebugValue:Gx,useDeferredValue:function(o,c){var g=ma();return qx(g,o,c)},useTransition:function(){var o=Fx(!1);return o=R4.bind(null,si,o.queue,!0,!1),ma().memoizedState=o,[!1,o]},useSyncExternalStore:function(o,c,g){var b=si,D=ma();if(gi){if(g===void 0)throw Error(n(407));g=g()}else{if(g=c(),or===null)throw Error(n(349));(bi&127)!==0||r4(b,c,g)}D.memoizedState=g;var P={value:g,getSnapshot:c};return D.queue=P,y4(a4.bind(null,b,P,o),[o]),b.flags|=2048,$A(9,{destroy:void 0},s4.bind(null,b,P,g,c),null),g},useId:function(){var o=ma(),c=or.identifierPrefix;if(gi){var g=Da,b=Na;g=(b&~(1<<32-It(b)-1)).toString(32)+g,c="_"+c+"R_"+g,g=L1++,0<\/script>",P=P.removeChild(P.firstChild);break;case"select":P=typeof b.is=="string"?X.createElement("select",{is:b.is}):X.createElement("select"),b.multiple?P.multiple=!0:b.size&&(P.size=b.size);break;default:P=typeof b.is=="string"?X.createElement(D,{is:b.is}):X.createElement(D)}}P[Xn]=c,P[un]=b;e:for(X=c.child;X!==null;){if(X.tag===5||X.tag===6)P.appendChild(X.stateNode);else if(X.tag!==4&&X.tag!==27&&X.child!==null){X.child.return=X,X=X.child;continue}if(X===c)break e;for(;X.sibling===null;){if(X.return===null||X.return===c)break e;X=X.return}X.sibling.return=X.return,X=X.sibling}c.stateNode=P;e:switch(Us(P,D,b),D){case"button":case"input":case"select":case"textarea":b=!!b.autoFocus;break e;case"img":b=!0;break e;default:b=!1}b&&rc(c)}}return Ar(c),sb(c,c.type,o===null?null:o.memoizedProps,c.pendingProps,g),null;case 6:if(o&&c.stateNode!=null)o.memoizedProps!==b&&rc(c);else{if(typeof b!="string"&&c.stateNode===null)throw Error(n(166));if(o=xe.current,ar(c)){if(o=c.stateNode,g=c.memoizedProps,b=null,D=fs,D!==null)switch(D.tag){case 27:case 5:b=D.memoizedProps}o[Xn]=c,o=!!(o.nodeValue===g||b!==null&&b.suppressHydrationWarning===!0||nC(o.nodeValue,g)),o||zl(c,!0)}else o=s2(o).createTextNode(b),o[Xn]=c,c.stateNode=o}return Ar(c),null;case 31:if(g=c.memoizedState,o===null||o.memoizedState!==null){if(b=ar(c),g!==null){if(o===null){if(!b)throw Error(n(318));if(o=c.memoizedState,o=o!==null?o.dehydrated:null,!o)throw Error(n(557));o[Xn]=c}else Yu(),(c.flags&128)===0&&(c.memoizedState=null),c.flags|=4;Ar(c),o=!1}else g=Sp(),o!==null&&o.memoizedState!==null&&(o.memoizedState.hydrationErrors=g),o=!0;if(!o)return c.flags&256?(co(c),c):(co(c),null);if((c.flags&128)!==0)throw Error(n(558))}return Ar(c),null;case 13:if(b=c.memoizedState,o===null||o.memoizedState!==null&&o.memoizedState.dehydrated!==null){if(D=ar(c),b!==null&&b.dehydrated!==null){if(o===null){if(!D)throw Error(n(318));if(D=c.memoizedState,D=D!==null?D.dehydrated:null,!D)throw Error(n(317));D[Xn]=c}else Yu(),(c.flags&128)===0&&(c.memoizedState=null),c.flags|=4;Ar(c),D=!1}else D=Sp(),o!==null&&o.memoizedState!==null&&(o.memoizedState.hydrationErrors=D),D=!0;if(!D)return c.flags&256?(co(c),c):(co(c),null)}return co(c),(c.flags&128)!==0?(c.lanes=g,c):(g=b!==null,o=o!==null&&o.memoizedState!==null,g&&(b=c.child,D=null,b.alternate!==null&&b.alternate.memoizedState!==null&&b.alternate.memoizedState.cachePool!==null&&(D=b.alternate.memoizedState.cachePool.pool),P=null,b.memoizedState!==null&&b.memoizedState.cachePool!==null&&(P=b.memoizedState.cachePool.pool),P!==D&&(b.flags|=2048)),g!==o&&g&&(c.child.flags|=8192),H1(c,c.updateQueue),Ar(c),null);case 4:return _t(),o===null&&Eb(c.stateNode.containerInfo),Ar(c),null;case 10:return Io(c.type),Ar(c),null;case 19:if(be(Hr),b=c.memoizedState,b===null)return Ar(c),null;if(D=(c.flags&128)!==0,P=b.rendering,P===null)if(D)Rp(b,!1);else{if(Or!==0||o!==null&&(o.flags&128)!==0)for(o=c.child;o!==null;){if(P=D1(o),P!==null){for(c.flags|=128,Rp(b,!1),o=P.updateQueue,c.updateQueue=o,H1(c,o),c.subtreeFlags=0,o=g,g=c.child;g!==null;)E1(g,o),g=g.sibling;return ze(Hr,Hr.current&1|2),gi&&Oo(c,b.treeForkCount),c.child}o=o.sibling}b.tail!==null&&Se()>Y1&&(c.flags|=128,D=!0,Rp(b,!1),c.lanes=4194304)}else{if(!D)if(o=D1(P),o!==null){if(c.flags|=128,D=!0,o=o.updateQueue,c.updateQueue=o,H1(c,o),Rp(b,!0),b.tail===null&&b.tailMode==="hidden"&&!P.alternate&&!gi)return Ar(c),null}else 2*Se()-b.renderingStartTime>Y1&&g!==536870912&&(c.flags|=128,D=!0,Rp(b,!1),c.lanes=4194304);b.isBackwards?(P.sibling=c.child,c.child=P):(o=b.last,o!==null?o.sibling=P:c.child=P,b.last=P)}return b.tail!==null?(o=b.tail,b.rendering=o,b.tail=o.sibling,b.renderingStartTime=Se(),o.sibling=null,g=Hr.current,ze(Hr,D?g&1|2:g&1),gi&&Oo(c,b.treeForkCount),o):(Ar(c),null);case 22:case 23:return co(c),Ut(),b=c.memoizedState!==null,o!==null?o.memoizedState!==null!==b&&(c.flags|=8192):b&&(c.flags|=8192),b?(g&536870912)!==0&&(c.flags&128)===0&&(Ar(c),c.subtreeFlags&6&&(c.flags|=8192)):Ar(c),g=c.updateQueue,g!==null&&H1(c,g.retryQueue),g=null,o!==null&&o.memoizedState!==null&&o.memoizedState.cachePool!==null&&(g=o.memoizedState.cachePool.pool),b=null,c.memoizedState!==null&&c.memoizedState.cachePool!==null&&(b=c.memoizedState.cachePool.pool),b!==g&&(c.flags|=2048),o!==null&&be(Nt),null;case 24:return g=null,o!==null&&(g=o.memoizedState.cache),c.memoizedState.cache!==g&&(c.flags|=2048),Io(Qt),Ar(c),null;case 25:return null;case 30:return null}throw Error(n(156,c.tag))}function wI(o,c){switch(_p(c),c.tag){case 1:return o=c.flags,o&65536?(c.flags=o&-65537|128,c):null;case 3:return Io(Qt),_t(),o=c.flags,(o&65536)!==0&&(o&128)===0?(c.flags=o&-65537|128,c):null;case 26:case 27:case 5:return Ft(c),null;case 31:if(c.memoizedState!==null){if(co(c),c.alternate===null)throw Error(n(340));Yu()}return o=c.flags,o&65536?(c.flags=o&-65537|128,c):null;case 13:if(co(c),o=c.memoizedState,o!==null&&o.dehydrated!==null){if(c.alternate===null)throw Error(n(340));Yu()}return o=c.flags,o&65536?(c.flags=o&-65537|128,c):null;case 19:return be(Hr),null;case 4:return _t(),null;case 10:return Io(c.type),null;case 22:case 23:return co(c),Ut(),o!==null&&be(Nt),o=c.flags,o&65536?(c.flags=o&-65537|128,c):null;case 24:return Io(Qt),null;case 25:return null;default:return null}}function o8(o,c){switch(_p(c),c.tag){case 3:Io(Qt),_t();break;case 26:case 27:case 5:Ft(c);break;case 4:_t();break;case 31:c.memoizedState!==null&&co(c);break;case 13:co(c);break;case 19:be(Hr);break;case 10:Io(c.type);break;case 22:case 23:co(c),Ut(),o!==null&&be(Nt);break;case 24:Io(Qt)}}function Np(o,c){try{var g=c.updateQueue,b=g!==null?g.lastEffect:null;if(b!==null){var D=b.next;g=D;do{if((g.tag&o)===o){b=void 0;var P=g.create,X=g.inst;b=P(),X.destroy=b}g=g.next}while(g!==D)}}catch(ae){Yi(c,c.return,ae)}}function nh(o,c,g){try{var b=c.updateQueue,D=b!==null?b.lastEffect:null;if(D!==null){var P=D.next;b=P;do{if((b.tag&o)===o){var X=b.inst,ae=X.destroy;if(ae!==void 0){X.destroy=void 0,D=c;var Ce=g,et=ae;try{et()}catch(ht){Yi(D,Ce,ht)}}}b=b.next}while(b!==P)}}catch(ht){Yi(c,c.return,ht)}}function l8(o){var c=o.updateQueue;if(c!==null){var g=o.stateNode;try{Bn(c,g)}catch(b){Yi(o,o.return,b)}}}function u8(o,c,g){g.props=gf(o.type,o.memoizedProps),g.state=o.memoizedState;try{g.componentWillUnmount()}catch(b){Yi(o,c,b)}}function Dp(o,c){try{var g=o.ref;if(g!==null){switch(o.tag){case 26:case 27:case 5:var b=o.stateNode;break;case 30:b=o.stateNode;break;default:b=o.stateNode}typeof g=="function"?o.refCleanup=g(b):g.current=b}}catch(D){Yi(o,c,D)}}function ql(o,c){var g=o.ref,b=o.refCleanup;if(g!==null)if(typeof b=="function")try{b()}catch(D){Yi(o,c,D)}finally{o.refCleanup=null,o=o.alternate,o!=null&&(o.refCleanup=null)}else if(typeof g=="function")try{g(null)}catch(D){Yi(o,c,D)}else g.current=null}function c8(o){var c=o.type,g=o.memoizedProps,b=o.stateNode;try{e:switch(c){case"button":case"input":case"select":case"textarea":g.autoFocus&&b.focus();break e;case"img":g.src?b.src=g.src:g.srcSet&&(b.srcset=g.srcSet)}}catch(D){Yi(o,o.return,D)}}function ab(o,c,g){try{var b=o.stateNode;$I(b,o.type,g,c),b[un]=c}catch(D){Yi(o,o.return,D)}}function h8(o){return o.tag===5||o.tag===3||o.tag===26||o.tag===27&&uh(o.type)||o.tag===4}function ob(o){e:for(;;){for(;o.sibling===null;){if(o.return===null||h8(o.return))return null;o=o.return}for(o.sibling.return=o.return,o=o.sibling;o.tag!==5&&o.tag!==6&&o.tag!==18;){if(o.tag===27&&uh(o.type)||o.flags&2||o.child===null||o.tag===4)continue e;o.child.return=o,o=o.child}if(!(o.flags&2))return o.stateNode}}function lb(o,c,g){var b=o.tag;if(b===5||b===6)o=o.stateNode,c?(g.nodeType===9?g.body:g.nodeName==="HTML"?g.ownerDocument.body:g).insertBefore(o,c):(c=g.nodeType===9?g.body:g.nodeName==="HTML"?g.ownerDocument.body:g,c.appendChild(o),g=g._reactRootContainer,g!=null||c.onclick!==null||(c.onclick=Po));else if(b!==4&&(b===27&&uh(o.type)&&(g=o.stateNode,c=null),o=o.child,o!==null))for(lb(o,c,g),o=o.sibling;o!==null;)lb(o,c,g),o=o.sibling}function j1(o,c,g){var b=o.tag;if(b===5||b===6)o=o.stateNode,c?g.insertBefore(o,c):g.appendChild(o);else if(b!==4&&(b===27&&uh(o.type)&&(g=o.stateNode),o=o.child,o!==null))for(j1(o,c,g),o=o.sibling;o!==null;)j1(o,c,g),o=o.sibling}function f8(o){var c=o.stateNode,g=o.memoizedProps;try{for(var b=o.type,D=c.attributes;D.length;)c.removeAttributeNode(D[0]);Us(c,b,g),c[Xn]=o,c[un]=g}catch(P){Yi(o,o.return,P)}}var sc=!1,ns=!1,ub=!1,A8=typeof WeakSet=="function"?WeakSet:Set,Ms=null;function MI(o,c){if(o=o.containerInfo,Nb=f2,o=Ol(o),Il(o)){if("selectionStart"in o)var g={start:o.selectionStart,end:o.selectionEnd};else e:{g=(g=o.ownerDocument)&&g.defaultView||window;var b=g.getSelection&&g.getSelection();if(b&&b.rangeCount!==0){g=b.anchorNode;var D=b.anchorOffset,P=b.focusNode;b=b.focusOffset;try{g.nodeType,P.nodeType}catch{g=null;break e}var X=0,ae=-1,Ce=-1,et=0,ht=0,Tt=o,tt=null;t:for(;;){for(var nt;Tt!==g||D!==0&&Tt.nodeType!==3||(ae=X+D),Tt!==P||b!==0&&Tt.nodeType!==3||(Ce=X+b),Tt.nodeType===3&&(X+=Tt.nodeValue.length),(nt=Tt.firstChild)!==null;)tt=Tt,Tt=nt;for(;;){if(Tt===o)break t;if(tt===g&&++et===D&&(ae=X),tt===P&&++ht===b&&(Ce=X),(nt=Tt.nextSibling)!==null)break;Tt=tt,tt=Tt.parentNode}Tt=nt}g=ae===-1||Ce===-1?null:{start:ae,end:Ce}}else g=null}g=g||{start:0,end:0}}else g=null;for(Db={focusedElem:o,selectionRange:g},f2=!1,Ms=c;Ms!==null;)if(c=Ms,o=c.child,(c.subtreeFlags&1028)!==0&&o!==null)o.return=c,Ms=o;else for(;Ms!==null;){switch(c=Ms,P=c.alternate,o=c.flags,c.tag){case 0:if((o&4)!==0&&(o=c.updateQueue,o=o!==null?o.events:null,o!==null))for(g=0;g title"))),Us(P,b,g),P[Xn]=o,ke(P),b=P;break e;case"link":var X=_C("link","href",D).get(b+(g.href||""));if(X){for(var ae=0;aeer&&(X=er,er=Pn,Pn=X);var je=LA(ae,Pn),Be=LA(ae,er);if(je&&Be&&(nt.rangeCount!==1||nt.anchorNode!==je.node||nt.anchorOffset!==je.offset||nt.focusNode!==Be.node||nt.focusOffset!==Be.offset)){var Ze=Tt.createRange();Ze.setStart(je.node,je.offset),nt.removeAllRanges(),Pn>er?(nt.addRange(Ze),nt.extend(Be.node,Be.offset)):(Ze.setEnd(Be.node,Be.offset),nt.addRange(Ze))}}}}for(Tt=[],nt=ae;nt=nt.parentNode;)nt.nodeType===1&&Tt.push({element:nt,left:nt.scrollLeft,top:nt.scrollTop});for(typeof ae.focus=="function"&&ae.focus(),ae=0;aeg?32:g,Q.T=null,g=mb,mb=null;var P=ah,X=cc;if(ds=0,ZA=ah=null,cc=0,(Oi&6)!==0)throw Error(n(331));var ae=Oi;if(Oi|=4,T8(P.current),x8(P,P.current,X,g),Oi=ae,Ip(0,!1),Ht&&typeof Ht.onPostCommitFiberRoot=="function")try{Ht.onPostCommitFiberRoot(rn,P)}catch{}return!0}finally{ue.p=D,Q.T=b,q8(o,c)}}function H8(o,c,g){c=Ca(g,c),c=Yx(o.stateNode,c,2),o=Qe(o,c,2),o!==null&&($i(o,2),Vl(o))}function Yi(o,c,g){if(o.tag===3)H8(o,o,g);else for(;c!==null;){if(c.tag===3){H8(c,o,g);break}else if(c.tag===1){var b=c.stateNode;if(typeof c.type.getDerivedStateFromError=="function"||typeof b.componentDidCatch=="function"&&(sh===null||!sh.has(b))){o=Ca(g,o),g=j4(2),b=Qe(c,g,2),b!==null&&(W4(g,b,c,o),$i(b,2),Vl(b));break}}c=c.return}}function yb(o,c,g){var b=o.pingCache;if(b===null){b=o.pingCache=new RI;var D=new Set;b.set(c,D)}else D=b.get(c),D===void 0&&(D=new Set,b.set(c,D));D.has(g)||(fb=!0,D.add(g),o=UI.bind(null,o,c,g),c.then(o,o))}function UI(o,c,g){var b=o.pingCache;b!==null&&b.delete(c),o.pingedLanes|=o.suspendedLanes&g,o.warmLanes&=~g,or===o&&(bi&g)===g&&(Or===4||Or===3&&(bi&62914560)===bi&&300>Se()-X1?(Oi&2)===0&&JA(o,0):Ab|=g,KA===bi&&(KA=0)),Vl(o)}function j8(o,c){c===0&&(c=rr()),o=ju(o,c),o!==null&&($i(o,c),Vl(o))}function BI(o){var c=o.memoizedState,g=0;c!==null&&(g=c.retryLane),j8(o,g)}function OI(o,c){var g=0;switch(o.tag){case 31:case 13:var b=o.stateNode,D=o.memoizedState;D!==null&&(g=D.retryLane);break;case 19:b=o.stateNode;break;case 22:b=o.stateNode._retryCache;break;default:throw Error(n(314))}b!==null&&b.delete(c),j8(o,g)}function II(o,c){return Re(o,c)}var t2=null,td=null,xb=!1,n2=!1,bb=!1,lh=0;function Vl(o){o!==td&&o.next===null&&(td===null?t2=td=o:td=td.next=o),n2=!0,xb||(xb=!0,kI())}function Ip(o,c){if(!bb&&n2){bb=!0;do for(var g=!1,b=t2;b!==null;){if(o!==0){var D=b.pendingLanes;if(D===0)var P=0;else{var X=b.suspendedLanes,ae=b.pingedLanes;P=(1<<31-It(42|o)+1)-1,P&=D&~(X&~ae),P=P&201326741?P&201326741|1:P?P|2:0}P!==0&&(g=!0,Y8(b,P))}else P=bi,P=qt(b,b===or?P:0,b.cancelPendingCommit!==null||b.timeoutHandle!==-1),(P&3)===0||xn(b,P)||(g=!0,Y8(b,P));b=b.next}while(g);bb=!1}}function FI(){W8()}function W8(){n2=xb=!1;var o=0;lh!==0&&YI()&&(o=lh);for(var c=Se(),g=null,b=t2;b!==null;){var D=b.next,P=$8(b,c);P===0?(b.next=null,g===null?t2=D:g.next=D,D===null&&(td=g)):(g=b,(o!==0||(P&3)!==0)&&(n2=!0)),b=D}ds!==0&&ds!==5||Ip(o),lh!==0&&(lh=0)}function $8(o,c){for(var g=o.suspendedLanes,b=o.pingedLanes,D=o.expirationTimes,P=o.pendingLanes&-62914561;0ae)break;var ht=Ce.transferSize,Tt=Ce.initiatorType;ht&&iC(Tt)&&(Ce=Ce.responseEnd,X+=ht*(Ce"u"?null:document;function pC(o,c,g){var b=nd;if(b&&typeof c=="string"&&c){var D=ot(c);D='link[rel="'+o+'"][href="'+D+'"]',typeof g=="string"&&(D+='[crossorigin="'+g+'"]'),dC.has(D)||(dC.add(D),o={rel:o,crossOrigin:g,href:c},b.querySelector(D)===null&&(c=b.createElement("link"),Us(c,"link",o),ke(c),b.head.appendChild(c)))}}function rF(o){hc.D(o),pC("dns-prefetch",o,null)}function sF(o,c){hc.C(o,c),pC("preconnect",o,c)}function aF(o,c,g){hc.L(o,c,g);var b=nd;if(b&&o&&c){var D='link[rel="preload"][as="'+ot(c)+'"]';c==="image"&&g&&g.imageSrcSet?(D+='[imagesrcset="'+ot(g.imageSrcSet)+'"]',typeof g.imageSizes=="string"&&(D+='[imagesizes="'+ot(g.imageSizes)+'"]')):D+='[href="'+ot(o)+'"]';var P=D;switch(c){case"style":P=id(o);break;case"script":P=rd(o)}Go.has(P)||(o=v({rel:"preload",href:c==="image"&&g&&g.imageSrcSet?void 0:o,as:c},g),Go.set(P,o),b.querySelector(D)!==null||c==="style"&&b.querySelector(Gp(P))||c==="script"&&b.querySelector(qp(P))||(c=b.createElement("link"),Us(c,"link",o),ke(c),b.head.appendChild(c)))}}function oF(o,c){hc.m(o,c);var g=nd;if(g&&o){var b=c&&typeof c.as=="string"?c.as:"script",D='link[rel="modulepreload"][as="'+ot(b)+'"][href="'+ot(o)+'"]',P=D;switch(b){case"audioworklet":case"paintworklet":case"serviceworker":case"sharedworker":case"worker":case"script":P=rd(o)}if(!Go.has(P)&&(o=v({rel:"modulepreload",href:o},c),Go.set(P,o),g.querySelector(D)===null)){switch(b){case"audioworklet":case"paintworklet":case"serviceworker":case"sharedworker":case"worker":case"script":if(g.querySelector(qp(P)))return}b=g.createElement("link"),Us(b,"link",o),ke(b),g.head.appendChild(b)}}}function lF(o,c,g){hc.S(o,c,g);var b=nd;if(b&&o){var D=Xe(b).hoistableStyles,P=id(o);c=c||"default";var X=D.get(P);if(!X){var ae={loading:0,preload:null};if(X=b.querySelector(Gp(P)))ae.loading=5;else{o=v({rel:"stylesheet",href:o,"data-precedence":c},g),(g=Go.get(P))&&Fb(o,g);var Ce=X=b.createElement("link");ke(Ce),Us(Ce,"link",o),Ce._p=new Promise(function(et,ht){Ce.onload=et,Ce.onerror=ht}),Ce.addEventListener("load",function(){ae.loading|=1}),Ce.addEventListener("error",function(){ae.loading|=2}),ae.loading|=4,o2(X,c,b)}X={type:"stylesheet",instance:X,count:1,state:ae},D.set(P,X)}}}function uF(o,c){hc.X(o,c);var g=nd;if(g&&o){var b=Xe(g).hoistableScripts,D=rd(o),P=b.get(D);P||(P=g.querySelector(qp(D)),P||(o=v({src:o,async:!0},c),(c=Go.get(D))&&kb(o,c),P=g.createElement("script"),ke(P),Us(P,"link",o),g.head.appendChild(P)),P={type:"script",instance:P,count:1,state:null},b.set(D,P))}}function cF(o,c){hc.M(o,c);var g=nd;if(g&&o){var b=Xe(g).hoistableScripts,D=rd(o),P=b.get(D);P||(P=g.querySelector(qp(D)),P||(o=v({src:o,async:!0,type:"module"},c),(c=Go.get(D))&&kb(o,c),P=g.createElement("script"),ke(P),Us(P,"link",o),g.head.appendChild(P)),P={type:"script",instance:P,count:1,state:null},b.set(D,P))}}function mC(o,c,g,b){var D=(D=xe.current)?a2(D):null;if(!D)throw Error(n(446));switch(o){case"meta":case"title":return null;case"style":return typeof g.precedence=="string"&&typeof g.href=="string"?(c=id(g.href),g=Xe(D).hoistableStyles,b=g.get(c),b||(b={type:"style",instance:null,count:0,state:null},g.set(c,b)),b):{type:"void",instance:null,count:0,state:null};case"link":if(g.rel==="stylesheet"&&typeof g.href=="string"&&typeof g.precedence=="string"){o=id(g.href);var P=Xe(D).hoistableStyles,X=P.get(o);if(X||(D=D.ownerDocument||D,X={type:"stylesheet",instance:null,count:0,state:{loading:0,preload:null}},P.set(o,X),(P=D.querySelector(Gp(o)))&&!P._p&&(X.instance=P,X.state.loading=5),Go.has(o)||(g={rel:"preload",as:"style",href:g.href,crossOrigin:g.crossOrigin,integrity:g.integrity,media:g.media,hrefLang:g.hrefLang,referrerPolicy:g.referrerPolicy},Go.set(o,g),P||hF(D,o,g,X.state))),c&&b===null)throw Error(n(528,""));return X}if(c&&b!==null)throw Error(n(529,""));return null;case"script":return c=g.async,g=g.src,typeof g=="string"&&c&&typeof c!="function"&&typeof c!="symbol"?(c=rd(g),g=Xe(D).hoistableScripts,b=g.get(c),b||(b={type:"script",instance:null,count:0,state:null},g.set(c,b)),b):{type:"void",instance:null,count:0,state:null};default:throw Error(n(444,o))}}function id(o){return'href="'+ot(o)+'"'}function Gp(o){return'link[rel="stylesheet"]['+o+"]"}function gC(o){return v({},o,{"data-precedence":o.precedence,precedence:null})}function hF(o,c,g,b){o.querySelector('link[rel="preload"][as="style"]['+c+"]")?b.loading=1:(c=o.createElement("link"),b.preload=c,c.addEventListener("load",function(){return b.loading|=1}),c.addEventListener("error",function(){return b.loading|=2}),Us(c,"link",g),ke(c),o.head.appendChild(c))}function rd(o){return'[src="'+ot(o)+'"]'}function qp(o){return"script[async]"+o}function vC(o,c,g){if(c.count++,c.instance===null)switch(c.type){case"style":var b=o.querySelector('style[data-href~="'+ot(g.href)+'"]');if(b)return c.instance=b,ke(b),b;var D=v({},g,{"data-href":g.href,"data-precedence":g.precedence,href:null,precedence:null});return b=(o.ownerDocument||o).createElement("style"),ke(b),Us(b,"style",D),o2(b,g.precedence,o),c.instance=b;case"stylesheet":D=id(g.href);var P=o.querySelector(Gp(D));if(P)return c.state.loading|=4,c.instance=P,ke(P),P;b=gC(g),(D=Go.get(D))&&Fb(b,D),P=(o.ownerDocument||o).createElement("link"),ke(P);var X=P;return X._p=new Promise(function(ae,Ce){X.onload=ae,X.onerror=Ce}),Us(P,"link",b),c.state.loading|=4,o2(P,g.precedence,o),c.instance=P;case"script":return P=rd(g.src),(D=o.querySelector(qp(P)))?(c.instance=D,ke(D),D):(b=g,(D=Go.get(P))&&(b=v({},g),kb(b,D)),o=o.ownerDocument||o,D=o.createElement("script"),ke(D),Us(D,"link",b),o.head.appendChild(D),c.instance=D);case"void":return null;default:throw Error(n(443,c.type))}else c.type==="stylesheet"&&(c.state.loading&4)===0&&(b=c.instance,c.state.loading|=4,o2(b,g.precedence,o));return c.instance}function o2(o,c,g){for(var b=g.querySelectorAll('link[rel="stylesheet"][data-precedence],style[data-precedence]'),D=b.length?b[b.length-1]:null,P=D,X=0;X title"):null)}function fF(o,c,g){if(g===1||c.itemProp!=null)return!1;switch(o){case"meta":case"title":return!0;case"style":if(typeof c.precedence!="string"||typeof c.href!="string"||c.href==="")break;return!0;case"link":if(typeof c.rel!="string"||typeof c.href!="string"||c.href===""||c.onLoad||c.onError)break;switch(c.rel){case"stylesheet":return o=c.disabled,typeof c.precedence=="string"&&o==null;default:return!0}case"script":if(c.async&&typeof c.async!="function"&&typeof c.async!="symbol"&&!c.onLoad&&!c.onError&&c.src&&typeof c.src=="string")return!0}return!1}function xC(o){return!(o.type==="stylesheet"&&(o.state.loading&3)===0)}function AF(o,c,g,b){if(g.type==="stylesheet"&&(typeof b.media!="string"||matchMedia(b.media).matches!==!1)&&(g.state.loading&4)===0){if(g.instance===null){var D=id(b.href),P=c.querySelector(Gp(D));if(P){c=P._p,c!==null&&typeof c=="object"&&typeof c.then=="function"&&(o.count++,o=u2.bind(o),c.then(o,o)),g.state.loading|=4,g.instance=P,ke(P);return}P=c.ownerDocument||c,b=gC(b),(D=Go.get(D))&&Fb(b,D),P=P.createElement("link"),ke(P);var X=P;X._p=new Promise(function(ae,Ce){X.onload=ae,X.onerror=Ce}),Us(P,"link",b),g.instance=P}o.stylesheets===null&&(o.stylesheets=new Map),o.stylesheets.set(g,c),(c=g.state.preload)&&(g.state.loading&3)===0&&(o.count++,g=u2.bind(o),c.addEventListener("load",g),c.addEventListener("error",g))}}var zb=0;function dF(o,c){return o.stylesheets&&o.count===0&&h2(o,o.stylesheets),0zb?50:800)+c);return o.unsuspend=g,function(){o.unsuspend=null,clearTimeout(b),clearTimeout(D)}}:null}function u2(){if(this.count--,this.count===0&&(this.imgCount===0||!this.waitingForImages)){if(this.stylesheets)h2(this,this.stylesheets);else if(this.unsuspend){var o=this.unsuspend;this.unsuspend=null,o()}}}var c2=null;function h2(o,c){o.stylesheets=null,o.unsuspend!==null&&(o.count++,c2=new Map,c.forEach(pF,o),c2=null,u2.call(o))}function pF(o,c){if(!(c.state.loading&4)){var g=c2.get(o);if(g)var b=g.get(null);else{g=new Map,c2.set(o,g);for(var D=o.querySelectorAll("link[data-precedence],style[data-precedence]"),P=0;P"u"||typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE!="function"))try{__REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE(i)}catch(e){console.error(e)}}return i(),Xb.exports=DF(),Xb.exports}var LF=PF(),ye=_w();const UF=S7(ye);/** + * @license + * Copyright 2010-2024 Three.js Authors + * SPDX-License-Identifier: MIT + */const V0="172",Xo={ROTATE:0,DOLLY:1,PAN:2},Gd={ROTATE:0,PAN:1,DOLLY_PAN:2,DOLLY_ROTATE:3},T7=0,VS=1,w7=2,BF=0,yw=1,OF=2,xo=3,Nl=0,hr=1,as=2,Qa=0,Ka=1,a0=2,o0=3,l0=4,xw=5,Eo=100,bw=101,Sw=102,M7=103,E7=104,Tw=200,ww=201,Mw=202,Ew=203,qm=204,Vm=205,Cw=206,Rw=207,Nw=208,Dw=209,Pw=210,IF=211,FF=212,kF=213,zF=214,Hm=0,jm=1,Wm=2,kh=3,$m=4,Xm=5,Ym=6,Qm=7,Lg=0,C7=1,R7=2,Za=0,N7=1,D7=2,P7=3,L7=4,GF=5,U7=6,B7=7,Lw=300,Qo=301,Ko=302,zh=303,Gh=304,sA=306,aA=1e3,eu=1001,oA=1002,mr=1003,s_=1004,tu=1005,gs=1006,Jd=1007,Va=1008,qF=1008,aa=1009,Qf=1010,Kf=1011,wl=1012,Ns=1013,Rr=1014,$r=1015,Gs=1016,Ay=1017,dy=1018,Au=1020,py=35902,Uw=1021,Ug=1022,ks=1023,Bw=1024,Ow=1025,au=1026,du=1027,Bg=1028,H0=1029,lA=1030,j0=1031,VF=1032,W0=1033,Zf=33776,Bh=33777,Oh=33778,Ih=33779,Km=35840,Zm=35841,Jm=35842,eg=35843,tg=36196,u0=37492,c0=37496,h0=37808,f0=37809,A0=37810,d0=37811,p0=37812,m0=37813,g0=37814,v0=37815,_0=37816,y0=37817,x0=37818,b0=37819,S0=37820,T0=37821,Jf=36492,HS=36494,jS=36495,Iw=36283,ng=36284,ig=36285,rg=36286,HF=0,jF=1,jC=2,WF=3200,$F=3201,Dc=0,O7=1,Co="",_n="srgb",Ro="srgb-linear",a_="linear",Vi="srgb",XF=0,Uf=7680,YF=7681,QF=7682,KF=7683,ZF=34055,JF=34056,ek=5386,tk=512,nk=513,ik=514,rk=515,sk=516,ak=517,ok=518,WS=519,Fw=512,my=513,kw=514,gy=515,zw=516,Gw=517,qw=518,Vw=519,o_=35044,qd=35048,WC="300 es",Ha=2e3,pu=2001;class zc{addEventListener(e,t){this._listeners===void 0&&(this._listeners={});const n=this._listeners;n[e]===void 0&&(n[e]=[]),n[e].indexOf(t)===-1&&n[e].push(t)}hasEventListener(e,t){if(this._listeners===void 0)return!1;const n=this._listeners;return n[e]!==void 0&&n[e].indexOf(t)!==-1}removeEventListener(e,t){if(this._listeners===void 0)return;const r=this._listeners[e];if(r!==void 0){const s=r.indexOf(t);s!==-1&&r.splice(s,1)}}dispatchEvent(e){if(this._listeners===void 0)return;const n=this._listeners[e.type];if(n!==void 0){e.target=this;const r=n.slice(0);for(let s=0,a=r.length;s>8&255]+Js[i>>16&255]+Js[i>>24&255]+"-"+Js[e&255]+Js[e>>8&255]+"-"+Js[e>>16&15|64]+Js[e>>24&255]+"-"+Js[t&63|128]+Js[t>>8&255]+"-"+Js[t>>16&255]+Js[t>>24&255]+Js[n&255]+Js[n>>8&255]+Js[n>>16&255]+Js[n>>24&255]).toLowerCase()}function ii(i,e,t){return Math.max(e,Math.min(t,i))}function Hw(i,e){return(i%e+e)%e}function lk(i,e,t,n,r){return n+(i-e)*(r-n)/(t-e)}function uk(i,e,t){return i!==e?(t-i)/(e-i):0}function Cm(i,e,t){return(1-t)*i+t*e}function ck(i,e,t,n){return Cm(i,e,1-Math.exp(-t*n))}function hk(i,e=1){return e-Math.abs(Hw(i,e*2)-e)}function fk(i,e,t){return i<=e?0:i>=t?1:(i=(i-e)/(t-e),i*i*(3-2*i))}function Ak(i,e,t){return i<=e?0:i>=t?1:(i=(i-e)/(t-e),i*i*i*(i*(i*6-15)+10))}function dk(i,e){return i+Math.floor(Math.random()*(e-i+1))}function pk(i,e){return i+Math.random()*(e-i)}function mk(i){return i*(.5-Math.random())}function gk(i){i!==void 0&&($C=i);let e=$C+=1831565813;return e=Math.imul(e^e>>>15,e|1),e^=e+Math.imul(e^e>>>7,e|61),((e^e>>>14)>>>0)/4294967296}function vk(i){return i*Em}function _k(i){return i*w0}function yk(i){return(i&i-1)===0&&i!==0}function xk(i){return Math.pow(2,Math.ceil(Math.log(i)/Math.LN2))}function bk(i){return Math.pow(2,Math.floor(Math.log(i)/Math.LN2))}function Sk(i,e,t,n,r){const s=Math.cos,a=Math.sin,l=s(t/2),u=a(t/2),h=s((e+n)/2),m=a((e+n)/2),v=s((e-n)/2),x=a((e-n)/2),S=s((n-e)/2),w=a((n-e)/2);switch(r){case"XYX":i.set(l*m,u*v,u*x,l*h);break;case"YZY":i.set(u*x,l*m,u*v,l*h);break;case"ZXZ":i.set(u*v,u*x,l*m,l*h);break;case"XZX":i.set(l*m,u*w,u*S,l*h);break;case"YXY":i.set(u*S,l*m,u*w,l*h);break;case"ZYZ":i.set(u*w,u*S,l*m,l*h);break;default:console.warn("THREE.MathUtils: .setQuaternionFromProperEuler() encountered an unknown order: "+r)}}function Ta(i,e){switch(e.constructor){case Float32Array:return i;case Uint32Array:return i/4294967295;case Uint16Array:return i/65535;case Uint8Array:return i/255;case Int32Array:return Math.max(i/2147483647,-1);case Int16Array:return Math.max(i/32767,-1);case Int8Array:return Math.max(i/127,-1);default:throw new Error("Invalid component type.")}}function ai(i,e){switch(e.constructor){case Float32Array:return i;case Uint32Array:return Math.round(i*4294967295);case Uint16Array:return Math.round(i*65535);case Uint8Array:return Math.round(i*255);case Int32Array:return Math.round(i*2147483647);case Int16Array:return Math.round(i*32767);case Int8Array:return Math.round(i*127);default:throw new Error("Invalid component type.")}}const M0={DEG2RAD:Em,RAD2DEG:w0,generateUUID:ou,clamp:ii,euclideanModulo:Hw,mapLinear:lk,inverseLerp:uk,lerp:Cm,damp:ck,pingpong:hk,smoothstep:fk,smootherstep:Ak,randInt:dk,randFloat:pk,randFloatSpread:mk,seededRandom:gk,degToRad:vk,radToDeg:_k,isPowerOfTwo:yk,ceilPowerOfTwo:xk,floorPowerOfTwo:bk,setQuaternionFromProperEuler:Sk,normalize:ai,denormalize:Ta};class dt{constructor(e=0,t=0){dt.prototype.isVector2=!0,this.x=e,this.y=t}get width(){return this.x}set width(e){this.x=e}get height(){return this.y}set height(e){this.y=e}set(e,t){return this.x=e,this.y=t,this}setScalar(e){return this.x=e,this.y=e,this}setX(e){return this.x=e,this}setY(e){return this.y=e,this}setComponent(e,t){switch(e){case 0:this.x=t;break;case 1:this.y=t;break;default:throw new Error("index is out of range: "+e)}return this}getComponent(e){switch(e){case 0:return this.x;case 1:return this.y;default:throw new Error("index is out of range: "+e)}}clone(){return new this.constructor(this.x,this.y)}copy(e){return this.x=e.x,this.y=e.y,this}add(e){return this.x+=e.x,this.y+=e.y,this}addScalar(e){return this.x+=e,this.y+=e,this}addVectors(e,t){return this.x=e.x+t.x,this.y=e.y+t.y,this}addScaledVector(e,t){return this.x+=e.x*t,this.y+=e.y*t,this}sub(e){return this.x-=e.x,this.y-=e.y,this}subScalar(e){return this.x-=e,this.y-=e,this}subVectors(e,t){return this.x=e.x-t.x,this.y=e.y-t.y,this}multiply(e){return this.x*=e.x,this.y*=e.y,this}multiplyScalar(e){return this.x*=e,this.y*=e,this}divide(e){return this.x/=e.x,this.y/=e.y,this}divideScalar(e){return this.multiplyScalar(1/e)}applyMatrix3(e){const t=this.x,n=this.y,r=e.elements;return this.x=r[0]*t+r[3]*n+r[6],this.y=r[1]*t+r[4]*n+r[7],this}min(e){return this.x=Math.min(this.x,e.x),this.y=Math.min(this.y,e.y),this}max(e){return this.x=Math.max(this.x,e.x),this.y=Math.max(this.y,e.y),this}clamp(e,t){return this.x=ii(this.x,e.x,t.x),this.y=ii(this.y,e.y,t.y),this}clampScalar(e,t){return this.x=ii(this.x,e,t),this.y=ii(this.y,e,t),this}clampLength(e,t){const n=this.length();return this.divideScalar(n||1).multiplyScalar(ii(n,e,t))}floor(){return this.x=Math.floor(this.x),this.y=Math.floor(this.y),this}ceil(){return this.x=Math.ceil(this.x),this.y=Math.ceil(this.y),this}round(){return this.x=Math.round(this.x),this.y=Math.round(this.y),this}roundToZero(){return this.x=Math.trunc(this.x),this.y=Math.trunc(this.y),this}negate(){return this.x=-this.x,this.y=-this.y,this}dot(e){return this.x*e.x+this.y*e.y}cross(e){return this.x*e.y-this.y*e.x}lengthSq(){return this.x*this.x+this.y*this.y}length(){return Math.sqrt(this.x*this.x+this.y*this.y)}manhattanLength(){return Math.abs(this.x)+Math.abs(this.y)}normalize(){return this.divideScalar(this.length()||1)}angle(){return Math.atan2(-this.y,-this.x)+Math.PI}angleTo(e){const t=Math.sqrt(this.lengthSq()*e.lengthSq());if(t===0)return Math.PI/2;const n=this.dot(e)/t;return Math.acos(ii(n,-1,1))}distanceTo(e){return Math.sqrt(this.distanceToSquared(e))}distanceToSquared(e){const t=this.x-e.x,n=this.y-e.y;return t*t+n*n}manhattanDistanceTo(e){return Math.abs(this.x-e.x)+Math.abs(this.y-e.y)}setLength(e){return this.normalize().multiplyScalar(e)}lerp(e,t){return this.x+=(e.x-this.x)*t,this.y+=(e.y-this.y)*t,this}lerpVectors(e,t,n){return this.x=e.x+(t.x-e.x)*n,this.y=e.y+(t.y-e.y)*n,this}equals(e){return e.x===this.x&&e.y===this.y}fromArray(e,t=0){return this.x=e[t],this.y=e[t+1],this}toArray(e=[],t=0){return e[t]=this.x,e[t+1]=this.y,e}fromBufferAttribute(e,t){return this.x=e.getX(t),this.y=e.getY(t),this}rotateAround(e,t){const n=Math.cos(t),r=Math.sin(t),s=this.x-e.x,a=this.y-e.y;return this.x=s*n-a*r+e.x,this.y=s*r+a*n+e.y,this}random(){return this.x=Math.random(),this.y=Math.random(),this}*[Symbol.iterator](){yield this.x,yield this.y}}class Vn{constructor(e,t,n,r,s,a,l,u,h){Vn.prototype.isMatrix3=!0,this.elements=[1,0,0,0,1,0,0,0,1],e!==void 0&&this.set(e,t,n,r,s,a,l,u,h)}set(e,t,n,r,s,a,l,u,h){const m=this.elements;return m[0]=e,m[1]=r,m[2]=l,m[3]=t,m[4]=s,m[5]=u,m[6]=n,m[7]=a,m[8]=h,this}identity(){return this.set(1,0,0,0,1,0,0,0,1),this}copy(e){const t=this.elements,n=e.elements;return t[0]=n[0],t[1]=n[1],t[2]=n[2],t[3]=n[3],t[4]=n[4],t[5]=n[5],t[6]=n[6],t[7]=n[7],t[8]=n[8],this}extractBasis(e,t,n){return e.setFromMatrix3Column(this,0),t.setFromMatrix3Column(this,1),n.setFromMatrix3Column(this,2),this}setFromMatrix4(e){const t=e.elements;return this.set(t[0],t[4],t[8],t[1],t[5],t[9],t[2],t[6],t[10]),this}multiply(e){return this.multiplyMatrices(this,e)}premultiply(e){return this.multiplyMatrices(e,this)}multiplyMatrices(e,t){const n=e.elements,r=t.elements,s=this.elements,a=n[0],l=n[3],u=n[6],h=n[1],m=n[4],v=n[7],x=n[2],S=n[5],w=n[8],R=r[0],C=r[3],E=r[6],B=r[1],L=r[4],O=r[7],G=r[2],q=r[5],z=r[8];return s[0]=a*R+l*B+u*G,s[3]=a*C+l*L+u*q,s[6]=a*E+l*O+u*z,s[1]=h*R+m*B+v*G,s[4]=h*C+m*L+v*q,s[7]=h*E+m*O+v*z,s[2]=x*R+S*B+w*G,s[5]=x*C+S*L+w*q,s[8]=x*E+S*O+w*z,this}multiplyScalar(e){const t=this.elements;return t[0]*=e,t[3]*=e,t[6]*=e,t[1]*=e,t[4]*=e,t[7]*=e,t[2]*=e,t[5]*=e,t[8]*=e,this}determinant(){const e=this.elements,t=e[0],n=e[1],r=e[2],s=e[3],a=e[4],l=e[5],u=e[6],h=e[7],m=e[8];return t*a*m-t*l*h-n*s*m+n*l*u+r*s*h-r*a*u}invert(){const e=this.elements,t=e[0],n=e[1],r=e[2],s=e[3],a=e[4],l=e[5],u=e[6],h=e[7],m=e[8],v=m*a-l*h,x=l*u-m*s,S=h*s-a*u,w=t*v+n*x+r*S;if(w===0)return this.set(0,0,0,0,0,0,0,0,0);const R=1/w;return e[0]=v*R,e[1]=(r*h-m*n)*R,e[2]=(l*n-r*a)*R,e[3]=x*R,e[4]=(m*t-r*u)*R,e[5]=(r*s-l*t)*R,e[6]=S*R,e[7]=(n*u-h*t)*R,e[8]=(a*t-n*s)*R,this}transpose(){let e;const t=this.elements;return e=t[1],t[1]=t[3],t[3]=e,e=t[2],t[2]=t[6],t[6]=e,e=t[5],t[5]=t[7],t[7]=e,this}getNormalMatrix(e){return this.setFromMatrix4(e).invert().transpose()}transposeIntoArray(e){const t=this.elements;return e[0]=t[0],e[1]=t[3],e[2]=t[6],e[3]=t[1],e[4]=t[4],e[5]=t[7],e[6]=t[2],e[7]=t[5],e[8]=t[8],this}setUvTransform(e,t,n,r,s,a,l){const u=Math.cos(s),h=Math.sin(s);return this.set(n*u,n*h,-n*(u*a+h*l)+a+e,-r*h,r*u,-r*(-h*a+u*l)+l+t,0,0,1),this}scale(e,t){return this.premultiply(Jb.makeScale(e,t)),this}rotate(e){return this.premultiply(Jb.makeRotation(-e)),this}translate(e,t){return this.premultiply(Jb.makeTranslation(e,t)),this}makeTranslation(e,t){return e.isVector2?this.set(1,0,e.x,0,1,e.y,0,0,1):this.set(1,0,e,0,1,t,0,0,1),this}makeRotation(e){const t=Math.cos(e),n=Math.sin(e);return this.set(t,-n,0,n,t,0,0,0,1),this}makeScale(e,t){return this.set(e,0,0,0,t,0,0,0,1),this}equals(e){const t=this.elements,n=e.elements;for(let r=0;r<9;r++)if(t[r]!==n[r])return!1;return!0}fromArray(e,t=0){for(let n=0;n<9;n++)this.elements[n]=e[n+t];return this}toArray(e=[],t=0){const n=this.elements;return e[t]=n[0],e[t+1]=n[1],e[t+2]=n[2],e[t+3]=n[3],e[t+4]=n[4],e[t+5]=n[5],e[t+6]=n[6],e[t+7]=n[7],e[t+8]=n[8],e}clone(){return new this.constructor().fromArray(this.elements)}}const Jb=new Vn;function I7(i){for(let e=i.length-1;e>=0;--e)if(i[e]>=65535)return!0;return!1}function sg(i){return document.createElementNS("http://www.w3.org/1999/xhtml",i)}function F7(){const i=sg("canvas");return i.style.display="block",i}const XC={};function kf(i){i in XC||(XC[i]=!0,console.warn(i))}function Tk(i,e,t){return new Promise(function(n,r){function s(){switch(i.clientWaitSync(e,i.SYNC_FLUSH_COMMANDS_BIT,0)){case i.WAIT_FAILED:r();break;case i.TIMEOUT_EXPIRED:setTimeout(s,t);break;default:n()}}setTimeout(s,t)})}function wk(i){const e=i.elements;e[2]=.5*e[2]+.5*e[3],e[6]=.5*e[6]+.5*e[7],e[10]=.5*e[10]+.5*e[11],e[14]=.5*e[14]+.5*e[15]}function Mk(i){const e=i.elements;e[11]===-1?(e[10]=-e[10]-1,e[14]=-e[14]):(e[10]=-e[10],e[14]=-e[14]+1)}const YC=new Vn().set(.4123908,.3575843,.1804808,.212639,.7151687,.0721923,.0193308,.1191948,.9505322),QC=new Vn().set(3.2409699,-1.5373832,-.4986108,-.9692436,1.8759675,.0415551,.0556301,-.203977,1.0569715);function Ek(){const i={enabled:!0,workingColorSpace:Ro,spaces:{},convert:function(r,s,a){return this.enabled===!1||s===a||!s||!a||(this.spaces[s].transfer===Vi&&(r.r=Mc(r.r),r.g=Mc(r.g),r.b=Mc(r.b)),this.spaces[s].primaries!==this.spaces[a].primaries&&(r.applyMatrix3(this.spaces[s].toXYZ),r.applyMatrix3(this.spaces[a].fromXYZ)),this.spaces[a].transfer===Vi&&(r.r=e0(r.r),r.g=e0(r.g),r.b=e0(r.b))),r},fromWorkingColorSpace:function(r,s){return this.convert(r,this.workingColorSpace,s)},toWorkingColorSpace:function(r,s){return this.convert(r,s,this.workingColorSpace)},getPrimaries:function(r){return this.spaces[r].primaries},getTransfer:function(r){return r===Co?a_:this.spaces[r].transfer},getLuminanceCoefficients:function(r,s=this.workingColorSpace){return r.fromArray(this.spaces[s].luminanceCoefficients)},define:function(r){Object.assign(this.spaces,r)},_getMatrix:function(r,s,a){return r.copy(this.spaces[s].toXYZ).multiply(this.spaces[a].fromXYZ)},_getDrawingBufferColorSpace:function(r){return this.spaces[r].outputColorSpaceConfig.drawingBufferColorSpace},_getUnpackColorSpace:function(r=this.workingColorSpace){return this.spaces[r].workingColorSpaceConfig.unpackColorSpace}},e=[.64,.33,.3,.6,.15,.06],t=[.2126,.7152,.0722],n=[.3127,.329];return i.define({[Ro]:{primaries:e,whitePoint:n,transfer:a_,toXYZ:YC,fromXYZ:QC,luminanceCoefficients:t,workingColorSpaceConfig:{unpackColorSpace:_n},outputColorSpaceConfig:{drawingBufferColorSpace:_n}},[_n]:{primaries:e,whitePoint:n,transfer:Vi,toXYZ:YC,fromXYZ:QC,luminanceCoefficients:t,outputColorSpaceConfig:{drawingBufferColorSpace:_n}}}),i}const oi=Ek();function Mc(i){return i<.04045?i*.0773993808:Math.pow(i*.9478672986+.0521327014,2.4)}function e0(i){return i<.0031308?i*12.92:1.055*Math.pow(i,.41666)-.055}let ad;class Ck{static getDataURL(e){if(/^data:/i.test(e.src)||typeof HTMLCanvasElement>"u")return e.src;let t;if(e instanceof HTMLCanvasElement)t=e;else{ad===void 0&&(ad=sg("canvas")),ad.width=e.width,ad.height=e.height;const n=ad.getContext("2d");e instanceof ImageData?n.putImageData(e,0,0):n.drawImage(e,0,0,e.width,e.height),t=ad}return t.width>2048||t.height>2048?(console.warn("THREE.ImageUtils.getDataURL: Image converted to jpg for performance reasons",e),t.toDataURL("image/jpeg",.6)):t.toDataURL("image/png")}static sRGBToLinear(e){if(typeof HTMLImageElement<"u"&&e instanceof HTMLImageElement||typeof HTMLCanvasElement<"u"&&e instanceof HTMLCanvasElement||typeof ImageBitmap<"u"&&e instanceof ImageBitmap){const t=sg("canvas");t.width=e.width,t.height=e.height;const n=t.getContext("2d");n.drawImage(e,0,0,e.width,e.height);const r=n.getImageData(0,0,e.width,e.height),s=r.data;for(let a=0;a0&&(n.userData=this.userData),t||(e.textures[this.uuid]=n),n}dispose(){this.dispatchEvent({type:"dispose"})}transformUv(e){if(this.mapping!==Lw)return e;if(e.applyMatrix3(this.matrix),e.x<0||e.x>1)switch(this.wrapS){case aA:e.x=e.x-Math.floor(e.x);break;case eu:e.x=e.x<0?0:1;break;case oA:Math.abs(Math.floor(e.x)%2)===1?e.x=Math.ceil(e.x)-e.x:e.x=e.x-Math.floor(e.x);break}if(e.y<0||e.y>1)switch(this.wrapT){case aA:e.y=e.y-Math.floor(e.y);break;case eu:e.y=e.y<0?0:1;break;case oA:Math.abs(Math.floor(e.y)%2)===1?e.y=Math.ceil(e.y)-e.y:e.y=e.y-Math.floor(e.y);break}return this.flipY&&(e.y=1-e.y),e}set needsUpdate(e){e===!0&&(this.version++,this.source.needsUpdate=!0)}set needsPMREMUpdate(e){e===!0&&this.pmremVersion++}}vs.DEFAULT_IMAGE=null;vs.DEFAULT_MAPPING=Lw;vs.DEFAULT_ANISOTROPY=1;class Ln{constructor(e=0,t=0,n=0,r=1){Ln.prototype.isVector4=!0,this.x=e,this.y=t,this.z=n,this.w=r}get width(){return this.z}set width(e){this.z=e}get height(){return this.w}set height(e){this.w=e}set(e,t,n,r){return this.x=e,this.y=t,this.z=n,this.w=r,this}setScalar(e){return this.x=e,this.y=e,this.z=e,this.w=e,this}setX(e){return this.x=e,this}setY(e){return this.y=e,this}setZ(e){return this.z=e,this}setW(e){return this.w=e,this}setComponent(e,t){switch(e){case 0:this.x=t;break;case 1:this.y=t;break;case 2:this.z=t;break;case 3:this.w=t;break;default:throw new Error("index is out of range: "+e)}return this}getComponent(e){switch(e){case 0:return this.x;case 1:return this.y;case 2:return this.z;case 3:return this.w;default:throw new Error("index is out of range: "+e)}}clone(){return new this.constructor(this.x,this.y,this.z,this.w)}copy(e){return this.x=e.x,this.y=e.y,this.z=e.z,this.w=e.w!==void 0?e.w:1,this}add(e){return this.x+=e.x,this.y+=e.y,this.z+=e.z,this.w+=e.w,this}addScalar(e){return this.x+=e,this.y+=e,this.z+=e,this.w+=e,this}addVectors(e,t){return this.x=e.x+t.x,this.y=e.y+t.y,this.z=e.z+t.z,this.w=e.w+t.w,this}addScaledVector(e,t){return this.x+=e.x*t,this.y+=e.y*t,this.z+=e.z*t,this.w+=e.w*t,this}sub(e){return this.x-=e.x,this.y-=e.y,this.z-=e.z,this.w-=e.w,this}subScalar(e){return this.x-=e,this.y-=e,this.z-=e,this.w-=e,this}subVectors(e,t){return this.x=e.x-t.x,this.y=e.y-t.y,this.z=e.z-t.z,this.w=e.w-t.w,this}multiply(e){return this.x*=e.x,this.y*=e.y,this.z*=e.z,this.w*=e.w,this}multiplyScalar(e){return this.x*=e,this.y*=e,this.z*=e,this.w*=e,this}applyMatrix4(e){const t=this.x,n=this.y,r=this.z,s=this.w,a=e.elements;return this.x=a[0]*t+a[4]*n+a[8]*r+a[12]*s,this.y=a[1]*t+a[5]*n+a[9]*r+a[13]*s,this.z=a[2]*t+a[6]*n+a[10]*r+a[14]*s,this.w=a[3]*t+a[7]*n+a[11]*r+a[15]*s,this}divide(e){return this.x/=e.x,this.y/=e.y,this.z/=e.z,this.w/=e.w,this}divideScalar(e){return this.multiplyScalar(1/e)}setAxisAngleFromQuaternion(e){this.w=2*Math.acos(e.w);const t=Math.sqrt(1-e.w*e.w);return t<1e-4?(this.x=1,this.y=0,this.z=0):(this.x=e.x/t,this.y=e.y/t,this.z=e.z/t),this}setAxisAngleFromRotationMatrix(e){let t,n,r,s;const u=e.elements,h=u[0],m=u[4],v=u[8],x=u[1],S=u[5],w=u[9],R=u[2],C=u[6],E=u[10];if(Math.abs(m-x)<.01&&Math.abs(v-R)<.01&&Math.abs(w-C)<.01){if(Math.abs(m+x)<.1&&Math.abs(v+R)<.1&&Math.abs(w+C)<.1&&Math.abs(h+S+E-3)<.1)return this.set(1,0,0,0),this;t=Math.PI;const L=(h+1)/2,O=(S+1)/2,G=(E+1)/2,q=(m+x)/4,z=(v+R)/4,j=(w+C)/4;return L>O&&L>G?L<.01?(n=0,r=.707106781,s=.707106781):(n=Math.sqrt(L),r=q/n,s=z/n):O>G?O<.01?(n=.707106781,r=0,s=.707106781):(r=Math.sqrt(O),n=q/r,s=j/r):G<.01?(n=.707106781,r=.707106781,s=0):(s=Math.sqrt(G),n=z/s,r=j/s),this.set(n,r,s,t),this}let B=Math.sqrt((C-w)*(C-w)+(v-R)*(v-R)+(x-m)*(x-m));return Math.abs(B)<.001&&(B=1),this.x=(C-w)/B,this.y=(v-R)/B,this.z=(x-m)/B,this.w=Math.acos((h+S+E-1)/2),this}setFromMatrixPosition(e){const t=e.elements;return this.x=t[12],this.y=t[13],this.z=t[14],this.w=t[15],this}min(e){return this.x=Math.min(this.x,e.x),this.y=Math.min(this.y,e.y),this.z=Math.min(this.z,e.z),this.w=Math.min(this.w,e.w),this}max(e){return this.x=Math.max(this.x,e.x),this.y=Math.max(this.y,e.y),this.z=Math.max(this.z,e.z),this.w=Math.max(this.w,e.w),this}clamp(e,t){return this.x=ii(this.x,e.x,t.x),this.y=ii(this.y,e.y,t.y),this.z=ii(this.z,e.z,t.z),this.w=ii(this.w,e.w,t.w),this}clampScalar(e,t){return this.x=ii(this.x,e,t),this.y=ii(this.y,e,t),this.z=ii(this.z,e,t),this.w=ii(this.w,e,t),this}clampLength(e,t){const n=this.length();return this.divideScalar(n||1).multiplyScalar(ii(n,e,t))}floor(){return this.x=Math.floor(this.x),this.y=Math.floor(this.y),this.z=Math.floor(this.z),this.w=Math.floor(this.w),this}ceil(){return this.x=Math.ceil(this.x),this.y=Math.ceil(this.y),this.z=Math.ceil(this.z),this.w=Math.ceil(this.w),this}round(){return this.x=Math.round(this.x),this.y=Math.round(this.y),this.z=Math.round(this.z),this.w=Math.round(this.w),this}roundToZero(){return this.x=Math.trunc(this.x),this.y=Math.trunc(this.y),this.z=Math.trunc(this.z),this.w=Math.trunc(this.w),this}negate(){return this.x=-this.x,this.y=-this.y,this.z=-this.z,this.w=-this.w,this}dot(e){return this.x*e.x+this.y*e.y+this.z*e.z+this.w*e.w}lengthSq(){return this.x*this.x+this.y*this.y+this.z*this.z+this.w*this.w}length(){return Math.sqrt(this.x*this.x+this.y*this.y+this.z*this.z+this.w*this.w)}manhattanLength(){return Math.abs(this.x)+Math.abs(this.y)+Math.abs(this.z)+Math.abs(this.w)}normalize(){return this.divideScalar(this.length()||1)}setLength(e){return this.normalize().multiplyScalar(e)}lerp(e,t){return this.x+=(e.x-this.x)*t,this.y+=(e.y-this.y)*t,this.z+=(e.z-this.z)*t,this.w+=(e.w-this.w)*t,this}lerpVectors(e,t,n){return this.x=e.x+(t.x-e.x)*n,this.y=e.y+(t.y-e.y)*n,this.z=e.z+(t.z-e.z)*n,this.w=e.w+(t.w-e.w)*n,this}equals(e){return e.x===this.x&&e.y===this.y&&e.z===this.z&&e.w===this.w}fromArray(e,t=0){return this.x=e[t],this.y=e[t+1],this.z=e[t+2],this.w=e[t+3],this}toArray(e=[],t=0){return e[t]=this.x,e[t+1]=this.y,e[t+2]=this.z,e[t+3]=this.w,e}fromBufferAttribute(e,t){return this.x=e.getX(t),this.y=e.getY(t),this.z=e.getZ(t),this.w=e.getW(t),this}random(){return this.x=Math.random(),this.y=Math.random(),this.z=Math.random(),this.w=Math.random(),this}*[Symbol.iterator](){yield this.x,yield this.y,yield this.z,yield this.w}}class Wh extends zc{constructor(e=1,t=1,n={}){super(),this.isRenderTarget=!0,this.width=e,this.height=t,this.depth=1,this.scissor=new Ln(0,0,e,t),this.scissorTest=!1,this.viewport=new Ln(0,0,e,t);const r={width:e,height:t,depth:1};n=Object.assign({generateMipmaps:!1,internalFormat:null,minFilter:gs,depthBuffer:!0,stencilBuffer:!1,resolveDepthBuffer:!0,resolveStencilBuffer:!0,depthTexture:null,samples:0,count:1},n);const s=new vs(r,n.mapping,n.wrapS,n.wrapT,n.magFilter,n.minFilter,n.format,n.type,n.anisotropy,n.colorSpace);s.flipY=!1,s.generateMipmaps=n.generateMipmaps,s.internalFormat=n.internalFormat,this.textures=[];const a=n.count;for(let l=0;l=0?1:-1,L=1-E*E;if(L>Number.EPSILON){const G=Math.sqrt(L),q=Math.atan2(G,E*B);C=Math.sin(C*q)/G,l=Math.sin(l*q)/G}const O=l*B;if(u=u*C+x*O,h=h*C+S*O,m=m*C+w*O,v=v*C+R*O,C===1-l){const G=1/Math.sqrt(u*u+h*h+m*m+v*v);u*=G,h*=G,m*=G,v*=G}}e[t]=u,e[t+1]=h,e[t+2]=m,e[t+3]=v}static multiplyQuaternionsFlat(e,t,n,r,s,a){const l=n[r],u=n[r+1],h=n[r+2],m=n[r+3],v=s[a],x=s[a+1],S=s[a+2],w=s[a+3];return e[t]=l*w+m*v+u*S-h*x,e[t+1]=u*w+m*x+h*v-l*S,e[t+2]=h*w+m*S+l*x-u*v,e[t+3]=m*w-l*v-u*x-h*S,e}get x(){return this._x}set x(e){this._x=e,this._onChangeCallback()}get y(){return this._y}set y(e){this._y=e,this._onChangeCallback()}get z(){return this._z}set z(e){this._z=e,this._onChangeCallback()}get w(){return this._w}set w(e){this._w=e,this._onChangeCallback()}set(e,t,n,r){return this._x=e,this._y=t,this._z=n,this._w=r,this._onChangeCallback(),this}clone(){return new this.constructor(this._x,this._y,this._z,this._w)}copy(e){return this._x=e.x,this._y=e.y,this._z=e.z,this._w=e.w,this._onChangeCallback(),this}setFromEuler(e,t=!0){const n=e._x,r=e._y,s=e._z,a=e._order,l=Math.cos,u=Math.sin,h=l(n/2),m=l(r/2),v=l(s/2),x=u(n/2),S=u(r/2),w=u(s/2);switch(a){case"XYZ":this._x=x*m*v+h*S*w,this._y=h*S*v-x*m*w,this._z=h*m*w+x*S*v,this._w=h*m*v-x*S*w;break;case"YXZ":this._x=x*m*v+h*S*w,this._y=h*S*v-x*m*w,this._z=h*m*w-x*S*v,this._w=h*m*v+x*S*w;break;case"ZXY":this._x=x*m*v-h*S*w,this._y=h*S*v+x*m*w,this._z=h*m*w+x*S*v,this._w=h*m*v-x*S*w;break;case"ZYX":this._x=x*m*v-h*S*w,this._y=h*S*v+x*m*w,this._z=h*m*w-x*S*v,this._w=h*m*v+x*S*w;break;case"YZX":this._x=x*m*v+h*S*w,this._y=h*S*v+x*m*w,this._z=h*m*w-x*S*v,this._w=h*m*v-x*S*w;break;case"XZY":this._x=x*m*v-h*S*w,this._y=h*S*v-x*m*w,this._z=h*m*w+x*S*v,this._w=h*m*v+x*S*w;break;default:console.warn("THREE.Quaternion: .setFromEuler() encountered an unknown order: "+a)}return t===!0&&this._onChangeCallback(),this}setFromAxisAngle(e,t){const n=t/2,r=Math.sin(n);return this._x=e.x*r,this._y=e.y*r,this._z=e.z*r,this._w=Math.cos(n),this._onChangeCallback(),this}setFromRotationMatrix(e){const t=e.elements,n=t[0],r=t[4],s=t[8],a=t[1],l=t[5],u=t[9],h=t[2],m=t[6],v=t[10],x=n+l+v;if(x>0){const S=.5/Math.sqrt(x+1);this._w=.25/S,this._x=(m-u)*S,this._y=(s-h)*S,this._z=(a-r)*S}else if(n>l&&n>v){const S=2*Math.sqrt(1+n-l-v);this._w=(m-u)/S,this._x=.25*S,this._y=(r+a)/S,this._z=(s+h)/S}else if(l>v){const S=2*Math.sqrt(1+l-n-v);this._w=(s-h)/S,this._x=(r+a)/S,this._y=.25*S,this._z=(u+m)/S}else{const S=2*Math.sqrt(1+v-n-l);this._w=(a-r)/S,this._x=(s+h)/S,this._y=(u+m)/S,this._z=.25*S}return this._onChangeCallback(),this}setFromUnitVectors(e,t){let n=e.dot(t)+1;return nMath.abs(e.z)?(this._x=-e.y,this._y=e.x,this._z=0,this._w=n):(this._x=0,this._y=-e.z,this._z=e.y,this._w=n)):(this._x=e.y*t.z-e.z*t.y,this._y=e.z*t.x-e.x*t.z,this._z=e.x*t.y-e.y*t.x,this._w=n),this.normalize()}angleTo(e){return 2*Math.acos(Math.abs(ii(this.dot(e),-1,1)))}rotateTowards(e,t){const n=this.angleTo(e);if(n===0)return this;const r=Math.min(1,t/n);return this.slerp(e,r),this}identity(){return this.set(0,0,0,1)}invert(){return this.conjugate()}conjugate(){return this._x*=-1,this._y*=-1,this._z*=-1,this._onChangeCallback(),this}dot(e){return this._x*e._x+this._y*e._y+this._z*e._z+this._w*e._w}lengthSq(){return this._x*this._x+this._y*this._y+this._z*this._z+this._w*this._w}length(){return Math.sqrt(this._x*this._x+this._y*this._y+this._z*this._z+this._w*this._w)}normalize(){let e=this.length();return e===0?(this._x=0,this._y=0,this._z=0,this._w=1):(e=1/e,this._x=this._x*e,this._y=this._y*e,this._z=this._z*e,this._w=this._w*e),this._onChangeCallback(),this}multiply(e){return this.multiplyQuaternions(this,e)}premultiply(e){return this.multiplyQuaternions(e,this)}multiplyQuaternions(e,t){const n=e._x,r=e._y,s=e._z,a=e._w,l=t._x,u=t._y,h=t._z,m=t._w;return this._x=n*m+a*l+r*h-s*u,this._y=r*m+a*u+s*l-n*h,this._z=s*m+a*h+n*u-r*l,this._w=a*m-n*l-r*u-s*h,this._onChangeCallback(),this}slerp(e,t){if(t===0)return this;if(t===1)return this.copy(e);const n=this._x,r=this._y,s=this._z,a=this._w;let l=a*e._w+n*e._x+r*e._y+s*e._z;if(l<0?(this._w=-e._w,this._x=-e._x,this._y=-e._y,this._z=-e._z,l=-l):this.copy(e),l>=1)return this._w=a,this._x=n,this._y=r,this._z=s,this;const u=1-l*l;if(u<=Number.EPSILON){const S=1-t;return this._w=S*a+t*this._w,this._x=S*n+t*this._x,this._y=S*r+t*this._y,this._z=S*s+t*this._z,this.normalize(),this}const h=Math.sqrt(u),m=Math.atan2(h,l),v=Math.sin((1-t)*m)/h,x=Math.sin(t*m)/h;return this._w=a*v+this._w*x,this._x=n*v+this._x*x,this._y=r*v+this._y*x,this._z=s*v+this._z*x,this._onChangeCallback(),this}slerpQuaternions(e,t,n){return this.copy(e).slerp(t,n)}random(){const e=2*Math.PI*Math.random(),t=2*Math.PI*Math.random(),n=Math.random(),r=Math.sqrt(1-n),s=Math.sqrt(n);return this.set(r*Math.sin(e),r*Math.cos(e),s*Math.sin(t),s*Math.cos(t))}equals(e){return e._x===this._x&&e._y===this._y&&e._z===this._z&&e._w===this._w}fromArray(e,t=0){return this._x=e[t],this._y=e[t+1],this._z=e[t+2],this._w=e[t+3],this._onChangeCallback(),this}toArray(e=[],t=0){return e[t]=this._x,e[t+1]=this._y,e[t+2]=this._z,e[t+3]=this._w,e}fromBufferAttribute(e,t){return this._x=e.getX(t),this._y=e.getY(t),this._z=e.getZ(t),this._w=e.getW(t),this._onChangeCallback(),this}toJSON(){return this.toArray()}_onChange(e){return this._onChangeCallback=e,this}_onChangeCallback(){}*[Symbol.iterator](){yield this._x,yield this._y,yield this._z,yield this._w}}class Ae{constructor(e=0,t=0,n=0){Ae.prototype.isVector3=!0,this.x=e,this.y=t,this.z=n}set(e,t,n){return n===void 0&&(n=this.z),this.x=e,this.y=t,this.z=n,this}setScalar(e){return this.x=e,this.y=e,this.z=e,this}setX(e){return this.x=e,this}setY(e){return this.y=e,this}setZ(e){return this.z=e,this}setComponent(e,t){switch(e){case 0:this.x=t;break;case 1:this.y=t;break;case 2:this.z=t;break;default:throw new Error("index is out of range: "+e)}return this}getComponent(e){switch(e){case 0:return this.x;case 1:return this.y;case 2:return this.z;default:throw new Error("index is out of range: "+e)}}clone(){return new this.constructor(this.x,this.y,this.z)}copy(e){return this.x=e.x,this.y=e.y,this.z=e.z,this}add(e){return this.x+=e.x,this.y+=e.y,this.z+=e.z,this}addScalar(e){return this.x+=e,this.y+=e,this.z+=e,this}addVectors(e,t){return this.x=e.x+t.x,this.y=e.y+t.y,this.z=e.z+t.z,this}addScaledVector(e,t){return this.x+=e.x*t,this.y+=e.y*t,this.z+=e.z*t,this}sub(e){return this.x-=e.x,this.y-=e.y,this.z-=e.z,this}subScalar(e){return this.x-=e,this.y-=e,this.z-=e,this}subVectors(e,t){return this.x=e.x-t.x,this.y=e.y-t.y,this.z=e.z-t.z,this}multiply(e){return this.x*=e.x,this.y*=e.y,this.z*=e.z,this}multiplyScalar(e){return this.x*=e,this.y*=e,this.z*=e,this}multiplyVectors(e,t){return this.x=e.x*t.x,this.y=e.y*t.y,this.z=e.z*t.z,this}applyEuler(e){return this.applyQuaternion(KC.setFromEuler(e))}applyAxisAngle(e,t){return this.applyQuaternion(KC.setFromAxisAngle(e,t))}applyMatrix3(e){const t=this.x,n=this.y,r=this.z,s=e.elements;return this.x=s[0]*t+s[3]*n+s[6]*r,this.y=s[1]*t+s[4]*n+s[7]*r,this.z=s[2]*t+s[5]*n+s[8]*r,this}applyNormalMatrix(e){return this.applyMatrix3(e).normalize()}applyMatrix4(e){const t=this.x,n=this.y,r=this.z,s=e.elements,a=1/(s[3]*t+s[7]*n+s[11]*r+s[15]);return this.x=(s[0]*t+s[4]*n+s[8]*r+s[12])*a,this.y=(s[1]*t+s[5]*n+s[9]*r+s[13])*a,this.z=(s[2]*t+s[6]*n+s[10]*r+s[14])*a,this}applyQuaternion(e){const t=this.x,n=this.y,r=this.z,s=e.x,a=e.y,l=e.z,u=e.w,h=2*(a*r-l*n),m=2*(l*t-s*r),v=2*(s*n-a*t);return this.x=t+u*h+a*v-l*m,this.y=n+u*m+l*h-s*v,this.z=r+u*v+s*m-a*h,this}project(e){return this.applyMatrix4(e.matrixWorldInverse).applyMatrix4(e.projectionMatrix)}unproject(e){return this.applyMatrix4(e.projectionMatrixInverse).applyMatrix4(e.matrixWorld)}transformDirection(e){const t=this.x,n=this.y,r=this.z,s=e.elements;return this.x=s[0]*t+s[4]*n+s[8]*r,this.y=s[1]*t+s[5]*n+s[9]*r,this.z=s[2]*t+s[6]*n+s[10]*r,this.normalize()}divide(e){return this.x/=e.x,this.y/=e.y,this.z/=e.z,this}divideScalar(e){return this.multiplyScalar(1/e)}min(e){return this.x=Math.min(this.x,e.x),this.y=Math.min(this.y,e.y),this.z=Math.min(this.z,e.z),this}max(e){return this.x=Math.max(this.x,e.x),this.y=Math.max(this.y,e.y),this.z=Math.max(this.z,e.z),this}clamp(e,t){return this.x=ii(this.x,e.x,t.x),this.y=ii(this.y,e.y,t.y),this.z=ii(this.z,e.z,t.z),this}clampScalar(e,t){return this.x=ii(this.x,e,t),this.y=ii(this.y,e,t),this.z=ii(this.z,e,t),this}clampLength(e,t){const n=this.length();return this.divideScalar(n||1).multiplyScalar(ii(n,e,t))}floor(){return this.x=Math.floor(this.x),this.y=Math.floor(this.y),this.z=Math.floor(this.z),this}ceil(){return this.x=Math.ceil(this.x),this.y=Math.ceil(this.y),this.z=Math.ceil(this.z),this}round(){return this.x=Math.round(this.x),this.y=Math.round(this.y),this.z=Math.round(this.z),this}roundToZero(){return this.x=Math.trunc(this.x),this.y=Math.trunc(this.y),this.z=Math.trunc(this.z),this}negate(){return this.x=-this.x,this.y=-this.y,this.z=-this.z,this}dot(e){return this.x*e.x+this.y*e.y+this.z*e.z}lengthSq(){return this.x*this.x+this.y*this.y+this.z*this.z}length(){return Math.sqrt(this.x*this.x+this.y*this.y+this.z*this.z)}manhattanLength(){return Math.abs(this.x)+Math.abs(this.y)+Math.abs(this.z)}normalize(){return this.divideScalar(this.length()||1)}setLength(e){return this.normalize().multiplyScalar(e)}lerp(e,t){return this.x+=(e.x-this.x)*t,this.y+=(e.y-this.y)*t,this.z+=(e.z-this.z)*t,this}lerpVectors(e,t,n){return this.x=e.x+(t.x-e.x)*n,this.y=e.y+(t.y-e.y)*n,this.z=e.z+(t.z-e.z)*n,this}cross(e){return this.crossVectors(this,e)}crossVectors(e,t){const n=e.x,r=e.y,s=e.z,a=t.x,l=t.y,u=t.z;return this.x=r*u-s*l,this.y=s*a-n*u,this.z=n*l-r*a,this}projectOnVector(e){const t=e.lengthSq();if(t===0)return this.set(0,0,0);const n=e.dot(this)/t;return this.copy(e).multiplyScalar(n)}projectOnPlane(e){return t3.copy(this).projectOnVector(e),this.sub(t3)}reflect(e){return this.sub(t3.copy(e).multiplyScalar(2*this.dot(e)))}angleTo(e){const t=Math.sqrt(this.lengthSq()*e.lengthSq());if(t===0)return Math.PI/2;const n=this.dot(e)/t;return Math.acos(ii(n,-1,1))}distanceTo(e){return Math.sqrt(this.distanceToSquared(e))}distanceToSquared(e){const t=this.x-e.x,n=this.y-e.y,r=this.z-e.z;return t*t+n*n+r*r}manhattanDistanceTo(e){return Math.abs(this.x-e.x)+Math.abs(this.y-e.y)+Math.abs(this.z-e.z)}setFromSpherical(e){return this.setFromSphericalCoords(e.radius,e.phi,e.theta)}setFromSphericalCoords(e,t,n){const r=Math.sin(t)*e;return this.x=r*Math.sin(n),this.y=Math.cos(t)*e,this.z=r*Math.cos(n),this}setFromCylindrical(e){return this.setFromCylindricalCoords(e.radius,e.theta,e.y)}setFromCylindricalCoords(e,t,n){return this.x=e*Math.sin(t),this.y=n,this.z=e*Math.cos(t),this}setFromMatrixPosition(e){const t=e.elements;return this.x=t[12],this.y=t[13],this.z=t[14],this}setFromMatrixScale(e){const t=this.setFromMatrixColumn(e,0).length(),n=this.setFromMatrixColumn(e,1).length(),r=this.setFromMatrixColumn(e,2).length();return this.x=t,this.y=n,this.z=r,this}setFromMatrixColumn(e,t){return this.fromArray(e.elements,t*4)}setFromMatrix3Column(e,t){return this.fromArray(e.elements,t*3)}setFromEuler(e){return this.x=e._x,this.y=e._y,this.z=e._z,this}setFromColor(e){return this.x=e.r,this.y=e.g,this.z=e.b,this}equals(e){return e.x===this.x&&e.y===this.y&&e.z===this.z}fromArray(e,t=0){return this.x=e[t],this.y=e[t+1],this.z=e[t+2],this}toArray(e=[],t=0){return e[t]=this.x,e[t+1]=this.y,e[t+2]=this.z,e}fromBufferAttribute(e,t){return this.x=e.getX(t),this.y=e.getY(t),this.z=e.getZ(t),this}random(){return this.x=Math.random(),this.y=Math.random(),this.z=Math.random(),this}randomDirection(){const e=Math.random()*Math.PI*2,t=Math.random()*2-1,n=Math.sqrt(1-t*t);return this.x=n*Math.cos(e),this.y=t,this.z=n*Math.sin(e),this}*[Symbol.iterator](){yield this.x,yield this.y,yield this.z}}const t3=new Ae,KC=new mu;class Gc{constructor(e=new Ae(1/0,1/0,1/0),t=new Ae(-1/0,-1/0,-1/0)){this.isBox3=!0,this.min=e,this.max=t}set(e,t){return this.min.copy(e),this.max.copy(t),this}setFromArray(e){this.makeEmpty();for(let t=0,n=e.length;t=this.min.x&&e.x<=this.max.x&&e.y>=this.min.y&&e.y<=this.max.y&&e.z>=this.min.z&&e.z<=this.max.z}containsBox(e){return this.min.x<=e.min.x&&e.max.x<=this.max.x&&this.min.y<=e.min.y&&e.max.y<=this.max.y&&this.min.z<=e.min.z&&e.max.z<=this.max.z}getParameter(e,t){return t.set((e.x-this.min.x)/(this.max.x-this.min.x),(e.y-this.min.y)/(this.max.y-this.min.y),(e.z-this.min.z)/(this.max.z-this.min.z))}intersectsBox(e){return e.max.x>=this.min.x&&e.min.x<=this.max.x&&e.max.y>=this.min.y&&e.min.y<=this.max.y&&e.max.z>=this.min.z&&e.min.z<=this.max.z}intersectsSphere(e){return this.clampPoint(e.center,ml),ml.distanceToSquared(e.center)<=e.radius*e.radius}intersectsPlane(e){let t,n;return e.normal.x>0?(t=e.normal.x*this.min.x,n=e.normal.x*this.max.x):(t=e.normal.x*this.max.x,n=e.normal.x*this.min.x),e.normal.y>0?(t+=e.normal.y*this.min.y,n+=e.normal.y*this.max.y):(t+=e.normal.y*this.max.y,n+=e.normal.y*this.min.y),e.normal.z>0?(t+=e.normal.z*this.min.z,n+=e.normal.z*this.max.z):(t+=e.normal.z*this.max.z,n+=e.normal.z*this.min.z),t<=-e.constant&&n>=-e.constant}intersectsTriangle(e){if(this.isEmpty())return!1;this.getCenter(Yp),y2.subVectors(this.max,Yp),od.subVectors(e.a,Yp),ld.subVectors(e.b,Yp),ud.subVectors(e.c,Yp),ph.subVectors(ld,od),mh.subVectors(ud,ld),yf.subVectors(od,ud);let t=[0,-ph.z,ph.y,0,-mh.z,mh.y,0,-yf.z,yf.y,ph.z,0,-ph.x,mh.z,0,-mh.x,yf.z,0,-yf.x,-ph.y,ph.x,0,-mh.y,mh.x,0,-yf.y,yf.x,0];return!n3(t,od,ld,ud,y2)||(t=[1,0,0,0,1,0,0,0,1],!n3(t,od,ld,ud,y2))?!1:(x2.crossVectors(ph,mh),t=[x2.x,x2.y,x2.z],n3(t,od,ld,ud,y2))}clampPoint(e,t){return t.copy(e).clamp(this.min,this.max)}distanceToPoint(e){return this.clampPoint(e,ml).distanceTo(e)}getBoundingSphere(e){return this.isEmpty()?e.makeEmpty():(this.getCenter(e.center),e.radius=this.getSize(ml).length()*.5),e}intersect(e){return this.min.max(e.min),this.max.min(e.max),this.isEmpty()&&this.makeEmpty(),this}union(e){return this.min.min(e.min),this.max.max(e.max),this}applyMatrix4(e){return this.isEmpty()?this:(fc[0].set(this.min.x,this.min.y,this.min.z).applyMatrix4(e),fc[1].set(this.min.x,this.min.y,this.max.z).applyMatrix4(e),fc[2].set(this.min.x,this.max.y,this.min.z).applyMatrix4(e),fc[3].set(this.min.x,this.max.y,this.max.z).applyMatrix4(e),fc[4].set(this.max.x,this.min.y,this.min.z).applyMatrix4(e),fc[5].set(this.max.x,this.min.y,this.max.z).applyMatrix4(e),fc[6].set(this.max.x,this.max.y,this.min.z).applyMatrix4(e),fc[7].set(this.max.x,this.max.y,this.max.z).applyMatrix4(e),this.setFromPoints(fc),this)}translate(e){return this.min.add(e),this.max.add(e),this}equals(e){return e.min.equals(this.min)&&e.max.equals(this.max)}}const fc=[new Ae,new Ae,new Ae,new Ae,new Ae,new Ae,new Ae,new Ae],ml=new Ae,_2=new Gc,od=new Ae,ld=new Ae,ud=new Ae,ph=new Ae,mh=new Ae,yf=new Ae,Yp=new Ae,y2=new Ae,x2=new Ae,xf=new Ae;function n3(i,e,t,n,r){for(let s=0,a=i.length-3;s<=a;s+=3){xf.fromArray(i,s);const l=r.x*Math.abs(xf.x)+r.y*Math.abs(xf.y)+r.z*Math.abs(xf.z),u=e.dot(xf),h=t.dot(xf),m=n.dot(xf);if(Math.max(-Math.max(u,h,m),Math.min(u,h,m))>l)return!1}return!0}const Pk=new Gc,Qp=new Ae,i3=new Ae;class dA{constructor(e=new Ae,t=-1){this.isSphere=!0,this.center=e,this.radius=t}set(e,t){return this.center.copy(e),this.radius=t,this}setFromPoints(e,t){const n=this.center;t!==void 0?n.copy(t):Pk.setFromPoints(e).getCenter(n);let r=0;for(let s=0,a=e.length;sthis.radius*this.radius&&(t.sub(this.center).normalize(),t.multiplyScalar(this.radius).add(this.center)),t}getBoundingBox(e){return this.isEmpty()?(e.makeEmpty(),e):(e.set(this.center,this.center),e.expandByScalar(this.radius),e)}applyMatrix4(e){return this.center.applyMatrix4(e),this.radius=this.radius*e.getMaxScaleOnAxis(),this}translate(e){return this.center.add(e),this}expandByPoint(e){if(this.isEmpty())return this.center.copy(e),this.radius=0,this;Qp.subVectors(e,this.center);const t=Qp.lengthSq();if(t>this.radius*this.radius){const n=Math.sqrt(t),r=(n-this.radius)*.5;this.center.addScaledVector(Qp,r/n),this.radius+=r}return this}union(e){return e.isEmpty()?this:this.isEmpty()?(this.copy(e),this):(this.center.equals(e.center)===!0?this.radius=Math.max(this.radius,e.radius):(i3.subVectors(e.center,this.center).setLength(e.radius),this.expandByPoint(Qp.copy(e.center).add(i3)),this.expandByPoint(Qp.copy(e.center).sub(i3))),this)}equals(e){return e.center.equals(this.center)&&e.radius===this.radius}clone(){return new this.constructor().copy(this)}}const Ac=new Ae,r3=new Ae,b2=new Ae,gh=new Ae,s3=new Ae,S2=new Ae,a3=new Ae;class Og{constructor(e=new Ae,t=new Ae(0,0,-1)){this.origin=e,this.direction=t}set(e,t){return this.origin.copy(e),this.direction.copy(t),this}copy(e){return this.origin.copy(e.origin),this.direction.copy(e.direction),this}at(e,t){return t.copy(this.origin).addScaledVector(this.direction,e)}lookAt(e){return this.direction.copy(e).sub(this.origin).normalize(),this}recast(e){return this.origin.copy(this.at(e,Ac)),this}closestPointToPoint(e,t){t.subVectors(e,this.origin);const n=t.dot(this.direction);return n<0?t.copy(this.origin):t.copy(this.origin).addScaledVector(this.direction,n)}distanceToPoint(e){return Math.sqrt(this.distanceSqToPoint(e))}distanceSqToPoint(e){const t=Ac.subVectors(e,this.origin).dot(this.direction);return t<0?this.origin.distanceToSquared(e):(Ac.copy(this.origin).addScaledVector(this.direction,t),Ac.distanceToSquared(e))}distanceSqToSegment(e,t,n,r){r3.copy(e).add(t).multiplyScalar(.5),b2.copy(t).sub(e).normalize(),gh.copy(this.origin).sub(r3);const s=e.distanceTo(t)*.5,a=-this.direction.dot(b2),l=gh.dot(this.direction),u=-gh.dot(b2),h=gh.lengthSq(),m=Math.abs(1-a*a);let v,x,S,w;if(m>0)if(v=a*u-l,x=a*l-u,w=s*m,v>=0)if(x>=-w)if(x<=w){const R=1/m;v*=R,x*=R,S=v*(v+a*x+2*l)+x*(a*v+x+2*u)+h}else x=s,v=Math.max(0,-(a*x+l)),S=-v*v+x*(x+2*u)+h;else x=-s,v=Math.max(0,-(a*x+l)),S=-v*v+x*(x+2*u)+h;else x<=-w?(v=Math.max(0,-(-a*s+l)),x=v>0?-s:Math.min(Math.max(-s,-u),s),S=-v*v+x*(x+2*u)+h):x<=w?(v=0,x=Math.min(Math.max(-s,-u),s),S=x*(x+2*u)+h):(v=Math.max(0,-(a*s+l)),x=v>0?s:Math.min(Math.max(-s,-u),s),S=-v*v+x*(x+2*u)+h);else x=a>0?-s:s,v=Math.max(0,-(a*x+l)),S=-v*v+x*(x+2*u)+h;return n&&n.copy(this.origin).addScaledVector(this.direction,v),r&&r.copy(r3).addScaledVector(b2,x),S}intersectSphere(e,t){Ac.subVectors(e.center,this.origin);const n=Ac.dot(this.direction),r=Ac.dot(Ac)-n*n,s=e.radius*e.radius;if(r>s)return null;const a=Math.sqrt(s-r),l=n-a,u=n+a;return u<0?null:l<0?this.at(u,t):this.at(l,t)}intersectsSphere(e){return this.distanceSqToPoint(e.center)<=e.radius*e.radius}distanceToPlane(e){const t=e.normal.dot(this.direction);if(t===0)return e.distanceToPoint(this.origin)===0?0:null;const n=-(this.origin.dot(e.normal)+e.constant)/t;return n>=0?n:null}intersectPlane(e,t){const n=this.distanceToPlane(e);return n===null?null:this.at(n,t)}intersectsPlane(e){const t=e.distanceToPoint(this.origin);return t===0||e.normal.dot(this.direction)*t<0}intersectBox(e,t){let n,r,s,a,l,u;const h=1/this.direction.x,m=1/this.direction.y,v=1/this.direction.z,x=this.origin;return h>=0?(n=(e.min.x-x.x)*h,r=(e.max.x-x.x)*h):(n=(e.max.x-x.x)*h,r=(e.min.x-x.x)*h),m>=0?(s=(e.min.y-x.y)*m,a=(e.max.y-x.y)*m):(s=(e.max.y-x.y)*m,a=(e.min.y-x.y)*m),n>a||s>r||((s>n||isNaN(n))&&(n=s),(a=0?(l=(e.min.z-x.z)*v,u=(e.max.z-x.z)*v):(l=(e.max.z-x.z)*v,u=(e.min.z-x.z)*v),n>u||l>r)||((l>n||n!==n)&&(n=l),(u=0?n:r,t)}intersectsBox(e){return this.intersectBox(e,Ac)!==null}intersectTriangle(e,t,n,r,s){s3.subVectors(t,e),S2.subVectors(n,e),a3.crossVectors(s3,S2);let a=this.direction.dot(a3),l;if(a>0){if(r)return null;l=1}else if(a<0)l=-1,a=-a;else return null;gh.subVectors(this.origin,e);const u=l*this.direction.dot(S2.crossVectors(gh,S2));if(u<0)return null;const h=l*this.direction.dot(s3.cross(gh));if(h<0||u+h>a)return null;const m=-l*gh.dot(a3);return m<0?null:this.at(m/a,s)}applyMatrix4(e){return this.origin.applyMatrix4(e),this.direction.transformDirection(e),this}equals(e){return e.origin.equals(this.origin)&&e.direction.equals(this.direction)}clone(){return new this.constructor().copy(this)}}class kn{constructor(e,t,n,r,s,a,l,u,h,m,v,x,S,w,R,C){kn.prototype.isMatrix4=!0,this.elements=[1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1],e!==void 0&&this.set(e,t,n,r,s,a,l,u,h,m,v,x,S,w,R,C)}set(e,t,n,r,s,a,l,u,h,m,v,x,S,w,R,C){const E=this.elements;return E[0]=e,E[4]=t,E[8]=n,E[12]=r,E[1]=s,E[5]=a,E[9]=l,E[13]=u,E[2]=h,E[6]=m,E[10]=v,E[14]=x,E[3]=S,E[7]=w,E[11]=R,E[15]=C,this}identity(){return this.set(1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1),this}clone(){return new kn().fromArray(this.elements)}copy(e){const t=this.elements,n=e.elements;return t[0]=n[0],t[1]=n[1],t[2]=n[2],t[3]=n[3],t[4]=n[4],t[5]=n[5],t[6]=n[6],t[7]=n[7],t[8]=n[8],t[9]=n[9],t[10]=n[10],t[11]=n[11],t[12]=n[12],t[13]=n[13],t[14]=n[14],t[15]=n[15],this}copyPosition(e){const t=this.elements,n=e.elements;return t[12]=n[12],t[13]=n[13],t[14]=n[14],this}setFromMatrix3(e){const t=e.elements;return this.set(t[0],t[3],t[6],0,t[1],t[4],t[7],0,t[2],t[5],t[8],0,0,0,0,1),this}extractBasis(e,t,n){return e.setFromMatrixColumn(this,0),t.setFromMatrixColumn(this,1),n.setFromMatrixColumn(this,2),this}makeBasis(e,t,n){return this.set(e.x,t.x,n.x,0,e.y,t.y,n.y,0,e.z,t.z,n.z,0,0,0,0,1),this}extractRotation(e){const t=this.elements,n=e.elements,r=1/cd.setFromMatrixColumn(e,0).length(),s=1/cd.setFromMatrixColumn(e,1).length(),a=1/cd.setFromMatrixColumn(e,2).length();return t[0]=n[0]*r,t[1]=n[1]*r,t[2]=n[2]*r,t[3]=0,t[4]=n[4]*s,t[5]=n[5]*s,t[6]=n[6]*s,t[7]=0,t[8]=n[8]*a,t[9]=n[9]*a,t[10]=n[10]*a,t[11]=0,t[12]=0,t[13]=0,t[14]=0,t[15]=1,this}makeRotationFromEuler(e){const t=this.elements,n=e.x,r=e.y,s=e.z,a=Math.cos(n),l=Math.sin(n),u=Math.cos(r),h=Math.sin(r),m=Math.cos(s),v=Math.sin(s);if(e.order==="XYZ"){const x=a*m,S=a*v,w=l*m,R=l*v;t[0]=u*m,t[4]=-u*v,t[8]=h,t[1]=S+w*h,t[5]=x-R*h,t[9]=-l*u,t[2]=R-x*h,t[6]=w+S*h,t[10]=a*u}else if(e.order==="YXZ"){const x=u*m,S=u*v,w=h*m,R=h*v;t[0]=x+R*l,t[4]=w*l-S,t[8]=a*h,t[1]=a*v,t[5]=a*m,t[9]=-l,t[2]=S*l-w,t[6]=R+x*l,t[10]=a*u}else if(e.order==="ZXY"){const x=u*m,S=u*v,w=h*m,R=h*v;t[0]=x-R*l,t[4]=-a*v,t[8]=w+S*l,t[1]=S+w*l,t[5]=a*m,t[9]=R-x*l,t[2]=-a*h,t[6]=l,t[10]=a*u}else if(e.order==="ZYX"){const x=a*m,S=a*v,w=l*m,R=l*v;t[0]=u*m,t[4]=w*h-S,t[8]=x*h+R,t[1]=u*v,t[5]=R*h+x,t[9]=S*h-w,t[2]=-h,t[6]=l*u,t[10]=a*u}else if(e.order==="YZX"){const x=a*u,S=a*h,w=l*u,R=l*h;t[0]=u*m,t[4]=R-x*v,t[8]=w*v+S,t[1]=v,t[5]=a*m,t[9]=-l*m,t[2]=-h*m,t[6]=S*v+w,t[10]=x-R*v}else if(e.order==="XZY"){const x=a*u,S=a*h,w=l*u,R=l*h;t[0]=u*m,t[4]=-v,t[8]=h*m,t[1]=x*v+R,t[5]=a*m,t[9]=S*v-w,t[2]=w*v-S,t[6]=l*m,t[10]=R*v+x}return t[3]=0,t[7]=0,t[11]=0,t[12]=0,t[13]=0,t[14]=0,t[15]=1,this}makeRotationFromQuaternion(e){return this.compose(Lk,e,Uk)}lookAt(e,t,n){const r=this.elements;return po.subVectors(e,t),po.lengthSq()===0&&(po.z=1),po.normalize(),vh.crossVectors(n,po),vh.lengthSq()===0&&(Math.abs(n.z)===1?po.x+=1e-4:po.z+=1e-4,po.normalize(),vh.crossVectors(n,po)),vh.normalize(),T2.crossVectors(po,vh),r[0]=vh.x,r[4]=T2.x,r[8]=po.x,r[1]=vh.y,r[5]=T2.y,r[9]=po.y,r[2]=vh.z,r[6]=T2.z,r[10]=po.z,this}multiply(e){return this.multiplyMatrices(this,e)}premultiply(e){return this.multiplyMatrices(e,this)}multiplyMatrices(e,t){const n=e.elements,r=t.elements,s=this.elements,a=n[0],l=n[4],u=n[8],h=n[12],m=n[1],v=n[5],x=n[9],S=n[13],w=n[2],R=n[6],C=n[10],E=n[14],B=n[3],L=n[7],O=n[11],G=n[15],q=r[0],z=r[4],j=r[8],F=r[12],V=r[1],Y=r[5],J=r[9],ne=r[13],oe=r[2],te=r[6],Q=r[10],ue=r[14],he=r[3],we=r[7],Te=r[11],ce=r[15];return s[0]=a*q+l*V+u*oe+h*he,s[4]=a*z+l*Y+u*te+h*we,s[8]=a*j+l*J+u*Q+h*Te,s[12]=a*F+l*ne+u*ue+h*ce,s[1]=m*q+v*V+x*oe+S*he,s[5]=m*z+v*Y+x*te+S*we,s[9]=m*j+v*J+x*Q+S*Te,s[13]=m*F+v*ne+x*ue+S*ce,s[2]=w*q+R*V+C*oe+E*he,s[6]=w*z+R*Y+C*te+E*we,s[10]=w*j+R*J+C*Q+E*Te,s[14]=w*F+R*ne+C*ue+E*ce,s[3]=B*q+L*V+O*oe+G*he,s[7]=B*z+L*Y+O*te+G*we,s[11]=B*j+L*J+O*Q+G*Te,s[15]=B*F+L*ne+O*ue+G*ce,this}multiplyScalar(e){const t=this.elements;return t[0]*=e,t[4]*=e,t[8]*=e,t[12]*=e,t[1]*=e,t[5]*=e,t[9]*=e,t[13]*=e,t[2]*=e,t[6]*=e,t[10]*=e,t[14]*=e,t[3]*=e,t[7]*=e,t[11]*=e,t[15]*=e,this}determinant(){const e=this.elements,t=e[0],n=e[4],r=e[8],s=e[12],a=e[1],l=e[5],u=e[9],h=e[13],m=e[2],v=e[6],x=e[10],S=e[14],w=e[3],R=e[7],C=e[11],E=e[15];return w*(+s*u*v-r*h*v-s*l*x+n*h*x+r*l*S-n*u*S)+R*(+t*u*S-t*h*x+s*a*x-r*a*S+r*h*m-s*u*m)+C*(+t*h*v-t*l*S-s*a*v+n*a*S+s*l*m-n*h*m)+E*(-r*l*m-t*u*v+t*l*x+r*a*v-n*a*x+n*u*m)}transpose(){const e=this.elements;let t;return t=e[1],e[1]=e[4],e[4]=t,t=e[2],e[2]=e[8],e[8]=t,t=e[6],e[6]=e[9],e[9]=t,t=e[3],e[3]=e[12],e[12]=t,t=e[7],e[7]=e[13],e[13]=t,t=e[11],e[11]=e[14],e[14]=t,this}setPosition(e,t,n){const r=this.elements;return e.isVector3?(r[12]=e.x,r[13]=e.y,r[14]=e.z):(r[12]=e,r[13]=t,r[14]=n),this}invert(){const e=this.elements,t=e[0],n=e[1],r=e[2],s=e[3],a=e[4],l=e[5],u=e[6],h=e[7],m=e[8],v=e[9],x=e[10],S=e[11],w=e[12],R=e[13],C=e[14],E=e[15],B=v*C*h-R*x*h+R*u*S-l*C*S-v*u*E+l*x*E,L=w*x*h-m*C*h-w*u*S+a*C*S+m*u*E-a*x*E,O=m*R*h-w*v*h+w*l*S-a*R*S-m*l*E+a*v*E,G=w*v*u-m*R*u-w*l*x+a*R*x+m*l*C-a*v*C,q=t*B+n*L+r*O+s*G;if(q===0)return this.set(0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0);const z=1/q;return e[0]=B*z,e[1]=(R*x*s-v*C*s-R*r*S+n*C*S+v*r*E-n*x*E)*z,e[2]=(l*C*s-R*u*s+R*r*h-n*C*h-l*r*E+n*u*E)*z,e[3]=(v*u*s-l*x*s-v*r*h+n*x*h+l*r*S-n*u*S)*z,e[4]=L*z,e[5]=(m*C*s-w*x*s+w*r*S-t*C*S-m*r*E+t*x*E)*z,e[6]=(w*u*s-a*C*s-w*r*h+t*C*h+a*r*E-t*u*E)*z,e[7]=(a*x*s-m*u*s+m*r*h-t*x*h-a*r*S+t*u*S)*z,e[8]=O*z,e[9]=(w*v*s-m*R*s-w*n*S+t*R*S+m*n*E-t*v*E)*z,e[10]=(a*R*s-w*l*s+w*n*h-t*R*h-a*n*E+t*l*E)*z,e[11]=(m*l*s-a*v*s-m*n*h+t*v*h+a*n*S-t*l*S)*z,e[12]=G*z,e[13]=(m*R*r-w*v*r+w*n*x-t*R*x-m*n*C+t*v*C)*z,e[14]=(w*l*r-a*R*r-w*n*u+t*R*u+a*n*C-t*l*C)*z,e[15]=(a*v*r-m*l*r+m*n*u-t*v*u-a*n*x+t*l*x)*z,this}scale(e){const t=this.elements,n=e.x,r=e.y,s=e.z;return t[0]*=n,t[4]*=r,t[8]*=s,t[1]*=n,t[5]*=r,t[9]*=s,t[2]*=n,t[6]*=r,t[10]*=s,t[3]*=n,t[7]*=r,t[11]*=s,this}getMaxScaleOnAxis(){const e=this.elements,t=e[0]*e[0]+e[1]*e[1]+e[2]*e[2],n=e[4]*e[4]+e[5]*e[5]+e[6]*e[6],r=e[8]*e[8]+e[9]*e[9]+e[10]*e[10];return Math.sqrt(Math.max(t,n,r))}makeTranslation(e,t,n){return e.isVector3?this.set(1,0,0,e.x,0,1,0,e.y,0,0,1,e.z,0,0,0,1):this.set(1,0,0,e,0,1,0,t,0,0,1,n,0,0,0,1),this}makeRotationX(e){const t=Math.cos(e),n=Math.sin(e);return this.set(1,0,0,0,0,t,-n,0,0,n,t,0,0,0,0,1),this}makeRotationY(e){const t=Math.cos(e),n=Math.sin(e);return this.set(t,0,n,0,0,1,0,0,-n,0,t,0,0,0,0,1),this}makeRotationZ(e){const t=Math.cos(e),n=Math.sin(e);return this.set(t,-n,0,0,n,t,0,0,0,0,1,0,0,0,0,1),this}makeRotationAxis(e,t){const n=Math.cos(t),r=Math.sin(t),s=1-n,a=e.x,l=e.y,u=e.z,h=s*a,m=s*l;return this.set(h*a+n,h*l-r*u,h*u+r*l,0,h*l+r*u,m*l+n,m*u-r*a,0,h*u-r*l,m*u+r*a,s*u*u+n,0,0,0,0,1),this}makeScale(e,t,n){return this.set(e,0,0,0,0,t,0,0,0,0,n,0,0,0,0,1),this}makeShear(e,t,n,r,s,a){return this.set(1,n,s,0,e,1,a,0,t,r,1,0,0,0,0,1),this}compose(e,t,n){const r=this.elements,s=t._x,a=t._y,l=t._z,u=t._w,h=s+s,m=a+a,v=l+l,x=s*h,S=s*m,w=s*v,R=a*m,C=a*v,E=l*v,B=u*h,L=u*m,O=u*v,G=n.x,q=n.y,z=n.z;return r[0]=(1-(R+E))*G,r[1]=(S+O)*G,r[2]=(w-L)*G,r[3]=0,r[4]=(S-O)*q,r[5]=(1-(x+E))*q,r[6]=(C+B)*q,r[7]=0,r[8]=(w+L)*z,r[9]=(C-B)*z,r[10]=(1-(x+R))*z,r[11]=0,r[12]=e.x,r[13]=e.y,r[14]=e.z,r[15]=1,this}decompose(e,t,n){const r=this.elements;let s=cd.set(r[0],r[1],r[2]).length();const a=cd.set(r[4],r[5],r[6]).length(),l=cd.set(r[8],r[9],r[10]).length();this.determinant()<0&&(s=-s),e.x=r[12],e.y=r[13],e.z=r[14],gl.copy(this);const h=1/s,m=1/a,v=1/l;return gl.elements[0]*=h,gl.elements[1]*=h,gl.elements[2]*=h,gl.elements[4]*=m,gl.elements[5]*=m,gl.elements[6]*=m,gl.elements[8]*=v,gl.elements[9]*=v,gl.elements[10]*=v,t.setFromRotationMatrix(gl),n.x=s,n.y=a,n.z=l,this}makePerspective(e,t,n,r,s,a,l=Ha){const u=this.elements,h=2*s/(t-e),m=2*s/(n-r),v=(t+e)/(t-e),x=(n+r)/(n-r);let S,w;if(l===Ha)S=-(a+s)/(a-s),w=-2*a*s/(a-s);else if(l===pu)S=-a/(a-s),w=-a*s/(a-s);else throw new Error("THREE.Matrix4.makePerspective(): Invalid coordinate system: "+l);return u[0]=h,u[4]=0,u[8]=v,u[12]=0,u[1]=0,u[5]=m,u[9]=x,u[13]=0,u[2]=0,u[6]=0,u[10]=S,u[14]=w,u[3]=0,u[7]=0,u[11]=-1,u[15]=0,this}makeOrthographic(e,t,n,r,s,a,l=Ha){const u=this.elements,h=1/(t-e),m=1/(n-r),v=1/(a-s),x=(t+e)*h,S=(n+r)*m;let w,R;if(l===Ha)w=(a+s)*v,R=-2*v;else if(l===pu)w=s*v,R=-1*v;else throw new Error("THREE.Matrix4.makeOrthographic(): Invalid coordinate system: "+l);return u[0]=2*h,u[4]=0,u[8]=0,u[12]=-x,u[1]=0,u[5]=2*m,u[9]=0,u[13]=-S,u[2]=0,u[6]=0,u[10]=R,u[14]=-w,u[3]=0,u[7]=0,u[11]=0,u[15]=1,this}equals(e){const t=this.elements,n=e.elements;for(let r=0;r<16;r++)if(t[r]!==n[r])return!1;return!0}fromArray(e,t=0){for(let n=0;n<16;n++)this.elements[n]=e[n+t];return this}toArray(e=[],t=0){const n=this.elements;return e[t]=n[0],e[t+1]=n[1],e[t+2]=n[2],e[t+3]=n[3],e[t+4]=n[4],e[t+5]=n[5],e[t+6]=n[6],e[t+7]=n[7],e[t+8]=n[8],e[t+9]=n[9],e[t+10]=n[10],e[t+11]=n[11],e[t+12]=n[12],e[t+13]=n[13],e[t+14]=n[14],e[t+15]=n[15],e}}const cd=new Ae,gl=new kn,Lk=new Ae(0,0,0),Uk=new Ae(1,1,1),vh=new Ae,T2=new Ae,po=new Ae,ZC=new kn,JC=new mu;class la{constructor(e=0,t=0,n=0,r=la.DEFAULT_ORDER){this.isEuler=!0,this._x=e,this._y=t,this._z=n,this._order=r}get x(){return this._x}set x(e){this._x=e,this._onChangeCallback()}get y(){return this._y}set y(e){this._y=e,this._onChangeCallback()}get z(){return this._z}set z(e){this._z=e,this._onChangeCallback()}get order(){return this._order}set order(e){this._order=e,this._onChangeCallback()}set(e,t,n,r=this._order){return this._x=e,this._y=t,this._z=n,this._order=r,this._onChangeCallback(),this}clone(){return new this.constructor(this._x,this._y,this._z,this._order)}copy(e){return this._x=e._x,this._y=e._y,this._z=e._z,this._order=e._order,this._onChangeCallback(),this}setFromRotationMatrix(e,t=this._order,n=!0){const r=e.elements,s=r[0],a=r[4],l=r[8],u=r[1],h=r[5],m=r[9],v=r[2],x=r[6],S=r[10];switch(t){case"XYZ":this._y=Math.asin(ii(l,-1,1)),Math.abs(l)<.9999999?(this._x=Math.atan2(-m,S),this._z=Math.atan2(-a,s)):(this._x=Math.atan2(x,h),this._z=0);break;case"YXZ":this._x=Math.asin(-ii(m,-1,1)),Math.abs(m)<.9999999?(this._y=Math.atan2(l,S),this._z=Math.atan2(u,h)):(this._y=Math.atan2(-v,s),this._z=0);break;case"ZXY":this._x=Math.asin(ii(x,-1,1)),Math.abs(x)<.9999999?(this._y=Math.atan2(-v,S),this._z=Math.atan2(-a,h)):(this._y=0,this._z=Math.atan2(u,s));break;case"ZYX":this._y=Math.asin(-ii(v,-1,1)),Math.abs(v)<.9999999?(this._x=Math.atan2(x,S),this._z=Math.atan2(u,s)):(this._x=0,this._z=Math.atan2(-a,h));break;case"YZX":this._z=Math.asin(ii(u,-1,1)),Math.abs(u)<.9999999?(this._x=Math.atan2(-m,h),this._y=Math.atan2(-v,s)):(this._x=0,this._y=Math.atan2(l,S));break;case"XZY":this._z=Math.asin(-ii(a,-1,1)),Math.abs(a)<.9999999?(this._x=Math.atan2(x,h),this._y=Math.atan2(l,s)):(this._x=Math.atan2(-m,S),this._y=0);break;default:console.warn("THREE.Euler: .setFromRotationMatrix() encountered an unknown order: "+t)}return this._order=t,n===!0&&this._onChangeCallback(),this}setFromQuaternion(e,t,n){return ZC.makeRotationFromQuaternion(e),this.setFromRotationMatrix(ZC,t,n)}setFromVector3(e,t=this._order){return this.set(e.x,e.y,e.z,t)}reorder(e){return JC.setFromEuler(this),this.setFromQuaternion(JC,e)}equals(e){return e._x===this._x&&e._y===this._y&&e._z===this._z&&e._order===this._order}fromArray(e){return this._x=e[0],this._y=e[1],this._z=e[2],e[3]!==void 0&&(this._order=e[3]),this._onChangeCallback(),this}toArray(e=[],t=0){return e[t]=this._x,e[t+1]=this._y,e[t+2]=this._z,e[t+3]=this._order,e}_onChange(e){return this._onChangeCallback=e,this}_onChangeCallback(){}*[Symbol.iterator](){yield this._x,yield this._y,yield this._z,yield this._order}}la.DEFAULT_ORDER="XYZ";class Ww{constructor(){this.mask=1}set(e){this.mask=(1<>>0}enable(e){this.mask|=1<1){for(let t=0;t1){for(let n=0;n0&&(r.userData=this.userData),r.layers=this.layers.mask,r.matrix=this.matrix.toArray(),r.up=this.up.toArray(),this.matrixAutoUpdate===!1&&(r.matrixAutoUpdate=!1),this.isInstancedMesh&&(r.type="InstancedMesh",r.count=this.count,r.instanceMatrix=this.instanceMatrix.toJSON(),this.instanceColor!==null&&(r.instanceColor=this.instanceColor.toJSON())),this.isBatchedMesh&&(r.type="BatchedMesh",r.perObjectFrustumCulled=this.perObjectFrustumCulled,r.sortObjects=this.sortObjects,r.drawRanges=this._drawRanges,r.reservedRanges=this._reservedRanges,r.visibility=this._visibility,r.active=this._active,r.bounds=this._bounds.map(l=>({boxInitialized:l.boxInitialized,boxMin:l.box.min.toArray(),boxMax:l.box.max.toArray(),sphereInitialized:l.sphereInitialized,sphereRadius:l.sphere.radius,sphereCenter:l.sphere.center.toArray()})),r.maxInstanceCount=this._maxInstanceCount,r.maxVertexCount=this._maxVertexCount,r.maxIndexCount=this._maxIndexCount,r.geometryInitialized=this._geometryInitialized,r.geometryCount=this._geometryCount,r.matricesTexture=this._matricesTexture.toJSON(e),this._colorsTexture!==null&&(r.colorsTexture=this._colorsTexture.toJSON(e)),this.boundingSphere!==null&&(r.boundingSphere={center:r.boundingSphere.center.toArray(),radius:r.boundingSphere.radius}),this.boundingBox!==null&&(r.boundingBox={min:r.boundingBox.min.toArray(),max:r.boundingBox.max.toArray()}));function s(l,u){return l[u.uuid]===void 0&&(l[u.uuid]=u.toJSON(e)),u.uuid}if(this.isScene)this.background&&(this.background.isColor?r.background=this.background.toJSON():this.background.isTexture&&(r.background=this.background.toJSON(e).uuid)),this.environment&&this.environment.isTexture&&this.environment.isRenderTargetTexture!==!0&&(r.environment=this.environment.toJSON(e).uuid);else if(this.isMesh||this.isLine||this.isPoints){r.geometry=s(e.geometries,this.geometry);const l=this.geometry.parameters;if(l!==void 0&&l.shapes!==void 0){const u=l.shapes;if(Array.isArray(u))for(let h=0,m=u.length;h0){r.children=[];for(let l=0;l0){r.animations=[];for(let l=0;l0&&(n.geometries=l),u.length>0&&(n.materials=u),h.length>0&&(n.textures=h),m.length>0&&(n.images=m),v.length>0&&(n.shapes=v),x.length>0&&(n.skeletons=x),S.length>0&&(n.animations=S),w.length>0&&(n.nodes=w)}return n.object=r,n;function a(l){const u=[];for(const h in l){const m=l[h];delete m.metadata,u.push(m)}return u}}clone(e){return new this.constructor().copy(this,e)}copy(e,t=!0){if(this.name=e.name,this.up.copy(e.up),this.position.copy(e.position),this.rotation.order=e.rotation.order,this.quaternion.copy(e.quaternion),this.scale.copy(e.scale),this.matrix.copy(e.matrix),this.matrixWorld.copy(e.matrixWorld),this.matrixAutoUpdate=e.matrixAutoUpdate,this.matrixWorldAutoUpdate=e.matrixWorldAutoUpdate,this.matrixWorldNeedsUpdate=e.matrixWorldNeedsUpdate,this.layers.mask=e.layers.mask,this.visible=e.visible,this.castShadow=e.castShadow,this.receiveShadow=e.receiveShadow,this.frustumCulled=e.frustumCulled,this.renderOrder=e.renderOrder,this.animations=e.animations.slice(),this.userData=JSON.parse(JSON.stringify(e.userData)),t===!0)for(let n=0;n0?r.multiplyScalar(1/Math.sqrt(s)):r.set(0,0,0)}static getBarycoord(e,t,n,r,s){vl.subVectors(r,t),pc.subVectors(n,t),l3.subVectors(e,t);const a=vl.dot(vl),l=vl.dot(pc),u=vl.dot(l3),h=pc.dot(pc),m=pc.dot(l3),v=a*h-l*l;if(v===0)return s.set(0,0,0),null;const x=1/v,S=(h*u-l*m)*x,w=(a*m-l*u)*x;return s.set(1-S-w,w,S)}static containsPoint(e,t,n,r){return this.getBarycoord(e,t,n,r,mc)===null?!1:mc.x>=0&&mc.y>=0&&mc.x+mc.y<=1}static getInterpolation(e,t,n,r,s,a,l,u){return this.getBarycoord(e,t,n,r,mc)===null?(u.x=0,u.y=0,"z"in u&&(u.z=0),"w"in u&&(u.w=0),null):(u.setScalar(0),u.addScaledVector(s,mc.x),u.addScaledVector(a,mc.y),u.addScaledVector(l,mc.z),u)}static getInterpolatedAttribute(e,t,n,r,s,a){return f3.setScalar(0),A3.setScalar(0),d3.setScalar(0),f3.fromBufferAttribute(e,t),A3.fromBufferAttribute(e,n),d3.fromBufferAttribute(e,r),a.setScalar(0),a.addScaledVector(f3,s.x),a.addScaledVector(A3,s.y),a.addScaledVector(d3,s.z),a}static isFrontFacing(e,t,n,r){return vl.subVectors(n,t),pc.subVectors(e,t),vl.cross(pc).dot(r)<0}set(e,t,n){return this.a.copy(e),this.b.copy(t),this.c.copy(n),this}setFromPointsAndIndices(e,t,n,r){return this.a.copy(e[t]),this.b.copy(e[n]),this.c.copy(e[r]),this}setFromAttributeAndIndices(e,t,n,r){return this.a.fromBufferAttribute(e,t),this.b.fromBufferAttribute(e,n),this.c.fromBufferAttribute(e,r),this}clone(){return new this.constructor().copy(this)}copy(e){return this.a.copy(e.a),this.b.copy(e.b),this.c.copy(e.c),this}getArea(){return vl.subVectors(this.c,this.b),pc.subVectors(this.a,this.b),vl.cross(pc).length()*.5}getMidpoint(e){return e.addVectors(this.a,this.b).add(this.c).multiplyScalar(1/3)}getNormal(e){return Sl.getNormal(this.a,this.b,this.c,e)}getPlane(e){return e.setFromCoplanarPoints(this.a,this.b,this.c)}getBarycoord(e,t){return Sl.getBarycoord(e,this.a,this.b,this.c,t)}getInterpolation(e,t,n,r,s){return Sl.getInterpolation(e,this.a,this.b,this.c,t,n,r,s)}containsPoint(e){return Sl.containsPoint(e,this.a,this.b,this.c)}isFrontFacing(e){return Sl.isFrontFacing(this.a,this.b,this.c,e)}intersectsBox(e){return e.intersectsTriangle(this)}closestPointToPoint(e,t){const n=this.a,r=this.b,s=this.c;let a,l;Ad.subVectors(r,n),dd.subVectors(s,n),u3.subVectors(e,n);const u=Ad.dot(u3),h=dd.dot(u3);if(u<=0&&h<=0)return t.copy(n);c3.subVectors(e,r);const m=Ad.dot(c3),v=dd.dot(c3);if(m>=0&&v<=m)return t.copy(r);const x=u*v-m*h;if(x<=0&&u>=0&&m<=0)return a=u/(u-m),t.copy(n).addScaledVector(Ad,a);h3.subVectors(e,s);const S=Ad.dot(h3),w=dd.dot(h3);if(w>=0&&S<=w)return t.copy(s);const R=S*h-u*w;if(R<=0&&h>=0&&w<=0)return l=h/(h-w),t.copy(n).addScaledVector(dd,l);const C=m*w-S*v;if(C<=0&&v-m>=0&&S-w>=0)return s5.subVectors(s,r),l=(v-m)/(v-m+(S-w)),t.copy(r).addScaledVector(s5,l);const E=1/(C+R+x);return a=R*E,l=x*E,t.copy(n).addScaledVector(Ad,a).addScaledVector(dd,l)}equals(e){return e.a.equals(this.a)&&e.b.equals(this.b)&&e.c.equals(this.c)}}const z7={aliceblue:15792383,antiquewhite:16444375,aqua:65535,aquamarine:8388564,azure:15794175,beige:16119260,bisque:16770244,black:0,blanchedalmond:16772045,blue:255,blueviolet:9055202,brown:10824234,burlywood:14596231,cadetblue:6266528,chartreuse:8388352,chocolate:13789470,coral:16744272,cornflowerblue:6591981,cornsilk:16775388,crimson:14423100,cyan:65535,darkblue:139,darkcyan:35723,darkgoldenrod:12092939,darkgray:11119017,darkgreen:25600,darkgrey:11119017,darkkhaki:12433259,darkmagenta:9109643,darkolivegreen:5597999,darkorange:16747520,darkorchid:10040012,darkred:9109504,darksalmon:15308410,darkseagreen:9419919,darkslateblue:4734347,darkslategray:3100495,darkslategrey:3100495,darkturquoise:52945,darkviolet:9699539,deeppink:16716947,deepskyblue:49151,dimgray:6908265,dimgrey:6908265,dodgerblue:2003199,firebrick:11674146,floralwhite:16775920,forestgreen:2263842,fuchsia:16711935,gainsboro:14474460,ghostwhite:16316671,gold:16766720,goldenrod:14329120,gray:8421504,green:32768,greenyellow:11403055,grey:8421504,honeydew:15794160,hotpink:16738740,indianred:13458524,indigo:4915330,ivory:16777200,khaki:15787660,lavender:15132410,lavenderblush:16773365,lawngreen:8190976,lemonchiffon:16775885,lightblue:11393254,lightcoral:15761536,lightcyan:14745599,lightgoldenrodyellow:16448210,lightgray:13882323,lightgreen:9498256,lightgrey:13882323,lightpink:16758465,lightsalmon:16752762,lightseagreen:2142890,lightskyblue:8900346,lightslategray:7833753,lightslategrey:7833753,lightsteelblue:11584734,lightyellow:16777184,lime:65280,limegreen:3329330,linen:16445670,magenta:16711935,maroon:8388608,mediumaquamarine:6737322,mediumblue:205,mediumorchid:12211667,mediumpurple:9662683,mediumseagreen:3978097,mediumslateblue:8087790,mediumspringgreen:64154,mediumturquoise:4772300,mediumvioletred:13047173,midnightblue:1644912,mintcream:16121850,mistyrose:16770273,moccasin:16770229,navajowhite:16768685,navy:128,oldlace:16643558,olive:8421376,olivedrab:7048739,orange:16753920,orangered:16729344,orchid:14315734,palegoldenrod:15657130,palegreen:10025880,paleturquoise:11529966,palevioletred:14381203,papayawhip:16773077,peachpuff:16767673,peru:13468991,pink:16761035,plum:14524637,powderblue:11591910,purple:8388736,rebeccapurple:6697881,red:16711680,rosybrown:12357519,royalblue:4286945,saddlebrown:9127187,salmon:16416882,sandybrown:16032864,seagreen:3050327,seashell:16774638,sienna:10506797,silver:12632256,skyblue:8900331,slateblue:6970061,slategray:7372944,slategrey:7372944,snow:16775930,springgreen:65407,steelblue:4620980,tan:13808780,teal:32896,thistle:14204888,tomato:16737095,turquoise:4251856,violet:15631086,wheat:16113331,white:16777215,whitesmoke:16119285,yellow:16776960,yellowgreen:10145074},_h={h:0,s:0,l:0},M2={h:0,s:0,l:0};function p3(i,e,t){return t<0&&(t+=1),t>1&&(t-=1),t<1/6?i+(e-i)*6*t:t<1/2?e:t<2/3?i+(e-i)*6*(2/3-t):i}let an=class{constructor(e,t,n){return this.isColor=!0,this.r=1,this.g=1,this.b=1,this.set(e,t,n)}set(e,t,n){if(t===void 0&&n===void 0){const r=e;r&&r.isColor?this.copy(r):typeof r=="number"?this.setHex(r):typeof r=="string"&&this.setStyle(r)}else this.setRGB(e,t,n);return this}setScalar(e){return this.r=e,this.g=e,this.b=e,this}setHex(e,t=_n){return e=Math.floor(e),this.r=(e>>16&255)/255,this.g=(e>>8&255)/255,this.b=(e&255)/255,oi.toWorkingColorSpace(this,t),this}setRGB(e,t,n,r=oi.workingColorSpace){return this.r=e,this.g=t,this.b=n,oi.toWorkingColorSpace(this,r),this}setHSL(e,t,n,r=oi.workingColorSpace){if(e=Hw(e,1),t=ii(t,0,1),n=ii(n,0,1),t===0)this.r=this.g=this.b=n;else{const s=n<=.5?n*(1+t):n+t-n*t,a=2*n-s;this.r=p3(a,s,e+1/3),this.g=p3(a,s,e),this.b=p3(a,s,e-1/3)}return oi.toWorkingColorSpace(this,r),this}setStyle(e,t=_n){function n(s){s!==void 0&&parseFloat(s)<1&&console.warn("THREE.Color: Alpha component of "+e+" will be ignored.")}let r;if(r=/^(\w+)\(([^\)]*)\)/.exec(e)){let s;const a=r[1],l=r[2];switch(a){case"rgb":case"rgba":if(s=/^\s*(\d+)\s*,\s*(\d+)\s*,\s*(\d+)\s*(?:,\s*(\d*\.?\d+)\s*)?$/.exec(l))return n(s[4]),this.setRGB(Math.min(255,parseInt(s[1],10))/255,Math.min(255,parseInt(s[2],10))/255,Math.min(255,parseInt(s[3],10))/255,t);if(s=/^\s*(\d+)\%\s*,\s*(\d+)\%\s*,\s*(\d+)\%\s*(?:,\s*(\d*\.?\d+)\s*)?$/.exec(l))return n(s[4]),this.setRGB(Math.min(100,parseInt(s[1],10))/100,Math.min(100,parseInt(s[2],10))/100,Math.min(100,parseInt(s[3],10))/100,t);break;case"hsl":case"hsla":if(s=/^\s*(\d*\.?\d+)\s*,\s*(\d*\.?\d+)\%\s*,\s*(\d*\.?\d+)\%\s*(?:,\s*(\d*\.?\d+)\s*)?$/.exec(l))return n(s[4]),this.setHSL(parseFloat(s[1])/360,parseFloat(s[2])/100,parseFloat(s[3])/100,t);break;default:console.warn("THREE.Color: Unknown color model "+e)}}else if(r=/^\#([A-Fa-f\d]+)$/.exec(e)){const s=r[1],a=s.length;if(a===3)return this.setRGB(parseInt(s.charAt(0),16)/15,parseInt(s.charAt(1),16)/15,parseInt(s.charAt(2),16)/15,t);if(a===6)return this.setHex(parseInt(s,16),t);console.warn("THREE.Color: Invalid hex color "+e)}else if(e&&e.length>0)return this.setColorName(e,t);return this}setColorName(e,t=_n){const n=z7[e.toLowerCase()];return n!==void 0?this.setHex(n,t):console.warn("THREE.Color: Unknown color "+e),this}clone(){return new this.constructor(this.r,this.g,this.b)}copy(e){return this.r=e.r,this.g=e.g,this.b=e.b,this}copySRGBToLinear(e){return this.r=Mc(e.r),this.g=Mc(e.g),this.b=Mc(e.b),this}copyLinearToSRGB(e){return this.r=e0(e.r),this.g=e0(e.g),this.b=e0(e.b),this}convertSRGBToLinear(){return this.copySRGBToLinear(this),this}convertLinearToSRGB(){return this.copyLinearToSRGB(this),this}getHex(e=_n){return oi.fromWorkingColorSpace(ea.copy(this),e),Math.round(ii(ea.r*255,0,255))*65536+Math.round(ii(ea.g*255,0,255))*256+Math.round(ii(ea.b*255,0,255))}getHexString(e=_n){return("000000"+this.getHex(e).toString(16)).slice(-6)}getHSL(e,t=oi.workingColorSpace){oi.fromWorkingColorSpace(ea.copy(this),t);const n=ea.r,r=ea.g,s=ea.b,a=Math.max(n,r,s),l=Math.min(n,r,s);let u,h;const m=(l+a)/2;if(l===a)u=0,h=0;else{const v=a-l;switch(h=m<=.5?v/(a+l):v/(2-a-l),a){case n:u=(r-s)/v+(r0!=e>0&&this.version++,this._alphaTest=e}onBeforeRender(){}onBeforeCompile(){}customProgramCacheKey(){return this.onBeforeCompile.toString()}setValues(e){if(e!==void 0)for(const t in e){const n=e[t];if(n===void 0){console.warn(`THREE.Material: parameter '${t}' has value of undefined.`);continue}const r=this[t];if(r===void 0){console.warn(`THREE.Material: '${t}' is not a property of THREE.${this.type}.`);continue}r&&r.isColor?r.set(n):r&&r.isVector3&&n&&n.isVector3?r.copy(n):this[t]=n}}toJSON(e){const t=e===void 0||typeof e=="string";t&&(e={textures:{},images:{}});const n={metadata:{version:4.6,type:"Material",generator:"Material.toJSON"}};n.uuid=this.uuid,n.type=this.type,this.name!==""&&(n.name=this.name),this.color&&this.color.isColor&&(n.color=this.color.getHex()),this.roughness!==void 0&&(n.roughness=this.roughness),this.metalness!==void 0&&(n.metalness=this.metalness),this.sheen!==void 0&&(n.sheen=this.sheen),this.sheenColor&&this.sheenColor.isColor&&(n.sheenColor=this.sheenColor.getHex()),this.sheenRoughness!==void 0&&(n.sheenRoughness=this.sheenRoughness),this.emissive&&this.emissive.isColor&&(n.emissive=this.emissive.getHex()),this.emissiveIntensity!==void 0&&this.emissiveIntensity!==1&&(n.emissiveIntensity=this.emissiveIntensity),this.specular&&this.specular.isColor&&(n.specular=this.specular.getHex()),this.specularIntensity!==void 0&&(n.specularIntensity=this.specularIntensity),this.specularColor&&this.specularColor.isColor&&(n.specularColor=this.specularColor.getHex()),this.shininess!==void 0&&(n.shininess=this.shininess),this.clearcoat!==void 0&&(n.clearcoat=this.clearcoat),this.clearcoatRoughness!==void 0&&(n.clearcoatRoughness=this.clearcoatRoughness),this.clearcoatMap&&this.clearcoatMap.isTexture&&(n.clearcoatMap=this.clearcoatMap.toJSON(e).uuid),this.clearcoatRoughnessMap&&this.clearcoatRoughnessMap.isTexture&&(n.clearcoatRoughnessMap=this.clearcoatRoughnessMap.toJSON(e).uuid),this.clearcoatNormalMap&&this.clearcoatNormalMap.isTexture&&(n.clearcoatNormalMap=this.clearcoatNormalMap.toJSON(e).uuid,n.clearcoatNormalScale=this.clearcoatNormalScale.toArray()),this.dispersion!==void 0&&(n.dispersion=this.dispersion),this.iridescence!==void 0&&(n.iridescence=this.iridescence),this.iridescenceIOR!==void 0&&(n.iridescenceIOR=this.iridescenceIOR),this.iridescenceThicknessRange!==void 0&&(n.iridescenceThicknessRange=this.iridescenceThicknessRange),this.iridescenceMap&&this.iridescenceMap.isTexture&&(n.iridescenceMap=this.iridescenceMap.toJSON(e).uuid),this.iridescenceThicknessMap&&this.iridescenceThicknessMap.isTexture&&(n.iridescenceThicknessMap=this.iridescenceThicknessMap.toJSON(e).uuid),this.anisotropy!==void 0&&(n.anisotropy=this.anisotropy),this.anisotropyRotation!==void 0&&(n.anisotropyRotation=this.anisotropyRotation),this.anisotropyMap&&this.anisotropyMap.isTexture&&(n.anisotropyMap=this.anisotropyMap.toJSON(e).uuid),this.map&&this.map.isTexture&&(n.map=this.map.toJSON(e).uuid),this.matcap&&this.matcap.isTexture&&(n.matcap=this.matcap.toJSON(e).uuid),this.alphaMap&&this.alphaMap.isTexture&&(n.alphaMap=this.alphaMap.toJSON(e).uuid),this.lightMap&&this.lightMap.isTexture&&(n.lightMap=this.lightMap.toJSON(e).uuid,n.lightMapIntensity=this.lightMapIntensity),this.aoMap&&this.aoMap.isTexture&&(n.aoMap=this.aoMap.toJSON(e).uuid,n.aoMapIntensity=this.aoMapIntensity),this.bumpMap&&this.bumpMap.isTexture&&(n.bumpMap=this.bumpMap.toJSON(e).uuid,n.bumpScale=this.bumpScale),this.normalMap&&this.normalMap.isTexture&&(n.normalMap=this.normalMap.toJSON(e).uuid,n.normalMapType=this.normalMapType,n.normalScale=this.normalScale.toArray()),this.displacementMap&&this.displacementMap.isTexture&&(n.displacementMap=this.displacementMap.toJSON(e).uuid,n.displacementScale=this.displacementScale,n.displacementBias=this.displacementBias),this.roughnessMap&&this.roughnessMap.isTexture&&(n.roughnessMap=this.roughnessMap.toJSON(e).uuid),this.metalnessMap&&this.metalnessMap.isTexture&&(n.metalnessMap=this.metalnessMap.toJSON(e).uuid),this.emissiveMap&&this.emissiveMap.isTexture&&(n.emissiveMap=this.emissiveMap.toJSON(e).uuid),this.specularMap&&this.specularMap.isTexture&&(n.specularMap=this.specularMap.toJSON(e).uuid),this.specularIntensityMap&&this.specularIntensityMap.isTexture&&(n.specularIntensityMap=this.specularIntensityMap.toJSON(e).uuid),this.specularColorMap&&this.specularColorMap.isTexture&&(n.specularColorMap=this.specularColorMap.toJSON(e).uuid),this.envMap&&this.envMap.isTexture&&(n.envMap=this.envMap.toJSON(e).uuid,this.combine!==void 0&&(n.combine=this.combine)),this.envMapRotation!==void 0&&(n.envMapRotation=this.envMapRotation.toArray()),this.envMapIntensity!==void 0&&(n.envMapIntensity=this.envMapIntensity),this.reflectivity!==void 0&&(n.reflectivity=this.reflectivity),this.refractionRatio!==void 0&&(n.refractionRatio=this.refractionRatio),this.gradientMap&&this.gradientMap.isTexture&&(n.gradientMap=this.gradientMap.toJSON(e).uuid),this.transmission!==void 0&&(n.transmission=this.transmission),this.transmissionMap&&this.transmissionMap.isTexture&&(n.transmissionMap=this.transmissionMap.toJSON(e).uuid),this.thickness!==void 0&&(n.thickness=this.thickness),this.thicknessMap&&this.thicknessMap.isTexture&&(n.thicknessMap=this.thicknessMap.toJSON(e).uuid),this.attenuationDistance!==void 0&&this.attenuationDistance!==1/0&&(n.attenuationDistance=this.attenuationDistance),this.attenuationColor!==void 0&&(n.attenuationColor=this.attenuationColor.getHex()),this.size!==void 0&&(n.size=this.size),this.shadowSide!==null&&(n.shadowSide=this.shadowSide),this.sizeAttenuation!==void 0&&(n.sizeAttenuation=this.sizeAttenuation),this.blending!==Ka&&(n.blending=this.blending),this.side!==Nl&&(n.side=this.side),this.vertexColors===!0&&(n.vertexColors=!0),this.opacity<1&&(n.opacity=this.opacity),this.transparent===!0&&(n.transparent=!0),this.blendSrc!==qm&&(n.blendSrc=this.blendSrc),this.blendDst!==Vm&&(n.blendDst=this.blendDst),this.blendEquation!==Eo&&(n.blendEquation=this.blendEquation),this.blendSrcAlpha!==null&&(n.blendSrcAlpha=this.blendSrcAlpha),this.blendDstAlpha!==null&&(n.blendDstAlpha=this.blendDstAlpha),this.blendEquationAlpha!==null&&(n.blendEquationAlpha=this.blendEquationAlpha),this.blendColor&&this.blendColor.isColor&&(n.blendColor=this.blendColor.getHex()),this.blendAlpha!==0&&(n.blendAlpha=this.blendAlpha),this.depthFunc!==kh&&(n.depthFunc=this.depthFunc),this.depthTest===!1&&(n.depthTest=this.depthTest),this.depthWrite===!1&&(n.depthWrite=this.depthWrite),this.colorWrite===!1&&(n.colorWrite=this.colorWrite),this.stencilWriteMask!==255&&(n.stencilWriteMask=this.stencilWriteMask),this.stencilFunc!==WS&&(n.stencilFunc=this.stencilFunc),this.stencilRef!==0&&(n.stencilRef=this.stencilRef),this.stencilFuncMask!==255&&(n.stencilFuncMask=this.stencilFuncMask),this.stencilFail!==Uf&&(n.stencilFail=this.stencilFail),this.stencilZFail!==Uf&&(n.stencilZFail=this.stencilZFail),this.stencilZPass!==Uf&&(n.stencilZPass=this.stencilZPass),this.stencilWrite===!0&&(n.stencilWrite=this.stencilWrite),this.rotation!==void 0&&this.rotation!==0&&(n.rotation=this.rotation),this.polygonOffset===!0&&(n.polygonOffset=!0),this.polygonOffsetFactor!==0&&(n.polygonOffsetFactor=this.polygonOffsetFactor),this.polygonOffsetUnits!==0&&(n.polygonOffsetUnits=this.polygonOffsetUnits),this.linewidth!==void 0&&this.linewidth!==1&&(n.linewidth=this.linewidth),this.dashSize!==void 0&&(n.dashSize=this.dashSize),this.gapSize!==void 0&&(n.gapSize=this.gapSize),this.scale!==void 0&&(n.scale=this.scale),this.dithering===!0&&(n.dithering=!0),this.alphaTest>0&&(n.alphaTest=this.alphaTest),this.alphaHash===!0&&(n.alphaHash=!0),this.alphaToCoverage===!0&&(n.alphaToCoverage=!0),this.premultipliedAlpha===!0&&(n.premultipliedAlpha=!0),this.forceSinglePass===!0&&(n.forceSinglePass=!0),this.wireframe===!0&&(n.wireframe=!0),this.wireframeLinewidth>1&&(n.wireframeLinewidth=this.wireframeLinewidth),this.wireframeLinecap!=="round"&&(n.wireframeLinecap=this.wireframeLinecap),this.wireframeLinejoin!=="round"&&(n.wireframeLinejoin=this.wireframeLinejoin),this.flatShading===!0&&(n.flatShading=!0),this.visible===!1&&(n.visible=!1),this.toneMapped===!1&&(n.toneMapped=!1),this.fog===!1&&(n.fog=!1),Object.keys(this.userData).length>0&&(n.userData=this.userData);function r(s){const a=[];for(const l in s){const u=s[l];delete u.metadata,a.push(u)}return a}if(t){const s=r(e.textures),a=r(e.images);s.length>0&&(n.textures=s),a.length>0&&(n.images=a)}return n}clone(){return new this.constructor().copy(this)}copy(e){this.name=e.name,this.blending=e.blending,this.side=e.side,this.vertexColors=e.vertexColors,this.opacity=e.opacity,this.transparent=e.transparent,this.blendSrc=e.blendSrc,this.blendDst=e.blendDst,this.blendEquation=e.blendEquation,this.blendSrcAlpha=e.blendSrcAlpha,this.blendDstAlpha=e.blendDstAlpha,this.blendEquationAlpha=e.blendEquationAlpha,this.blendColor.copy(e.blendColor),this.blendAlpha=e.blendAlpha,this.depthFunc=e.depthFunc,this.depthTest=e.depthTest,this.depthWrite=e.depthWrite,this.stencilWriteMask=e.stencilWriteMask,this.stencilFunc=e.stencilFunc,this.stencilRef=e.stencilRef,this.stencilFuncMask=e.stencilFuncMask,this.stencilFail=e.stencilFail,this.stencilZFail=e.stencilZFail,this.stencilZPass=e.stencilZPass,this.stencilWrite=e.stencilWrite;const t=e.clippingPlanes;let n=null;if(t!==null){const r=t.length;n=new Array(r);for(let s=0;s!==r;++s)n[s]=t[s].clone()}return this.clippingPlanes=n,this.clipIntersection=e.clipIntersection,this.clipShadows=e.clipShadows,this.shadowSide=e.shadowSide,this.colorWrite=e.colorWrite,this.precision=e.precision,this.polygonOffset=e.polygonOffset,this.polygonOffsetFactor=e.polygonOffsetFactor,this.polygonOffsetUnits=e.polygonOffsetUnits,this.dithering=e.dithering,this.alphaTest=e.alphaTest,this.alphaHash=e.alphaHash,this.alphaToCoverage=e.alphaToCoverage,this.premultipliedAlpha=e.premultipliedAlpha,this.forceSinglePass=e.forceSinglePass,this.visible=e.visible,this.toneMapped=e.toneMapped,this.userData=JSON.parse(JSON.stringify(e.userData)),this}dispose(){this.dispatchEvent({type:"dispose"})}set needsUpdate(e){e===!0&&this.version++}onBuild(){console.warn("Material: onBuild() has been removed.")}}class pA extends ua{constructor(e){super(),this.isMeshBasicMaterial=!0,this.type="MeshBasicMaterial",this.color=new an(16777215),this.map=null,this.lightMap=null,this.lightMapIntensity=1,this.aoMap=null,this.aoMapIntensity=1,this.specularMap=null,this.alphaMap=null,this.envMap=null,this.envMapRotation=new la,this.combine=Lg,this.reflectivity=1,this.refractionRatio=.98,this.wireframe=!1,this.wireframeLinewidth=1,this.wireframeLinecap="round",this.wireframeLinejoin="round",this.fog=!0,this.setValues(e)}copy(e){return super.copy(e),this.color.copy(e.color),this.map=e.map,this.lightMap=e.lightMap,this.lightMapIntensity=e.lightMapIntensity,this.aoMap=e.aoMap,this.aoMapIntensity=e.aoMapIntensity,this.specularMap=e.specularMap,this.alphaMap=e.alphaMap,this.envMap=e.envMap,this.envMapRotation.copy(e.envMapRotation),this.combine=e.combine,this.reflectivity=e.reflectivity,this.refractionRatio=e.refractionRatio,this.wireframe=e.wireframe,this.wireframeLinewidth=e.wireframeLinewidth,this.wireframeLinecap=e.wireframeLinecap,this.wireframeLinejoin=e.wireframeLinejoin,this.fog=e.fog,this}}const bc=zk();function zk(){const i=new ArrayBuffer(4),e=new Float32Array(i),t=new Uint32Array(i),n=new Uint32Array(512),r=new Uint32Array(512);for(let u=0;u<256;++u){const h=u-127;h<-27?(n[u]=0,n[u|256]=32768,r[u]=24,r[u|256]=24):h<-14?(n[u]=1024>>-h-14,n[u|256]=1024>>-h-14|32768,r[u]=-h-1,r[u|256]=-h-1):h<=15?(n[u]=h+15<<10,n[u|256]=h+15<<10|32768,r[u]=13,r[u|256]=13):h<128?(n[u]=31744,n[u|256]=64512,r[u]=24,r[u|256]=24):(n[u]=31744,n[u|256]=64512,r[u]=13,r[u|256]=13)}const s=new Uint32Array(2048),a=new Uint32Array(64),l=new Uint32Array(64);for(let u=1;u<1024;++u){let h=u<<13,m=0;for(;(h&8388608)===0;)h<<=1,m-=8388608;h&=-8388609,m+=947912704,s[u]=h|m}for(let u=1024;u<2048;++u)s[u]=939524096+(u-1024<<13);for(let u=1;u<31;++u)a[u]=u<<23;a[31]=1199570944,a[32]=2147483648;for(let u=33;u<63;++u)a[u]=2147483648+(u-32<<23);a[63]=3347054592;for(let u=1;u<64;++u)u!==32&&(l[u]=1024);return{floatView:e,uint32View:t,baseTable:n,shiftTable:r,mantissaTable:s,exponentTable:a,offsetTable:l}}function mo(i){Math.abs(i)>65504&&console.warn("THREE.DataUtils.toHalfFloat(): Value out of range."),i=ii(i,-65504,65504),bc.floatView[0]=i;const e=bc.uint32View[0],t=e>>23&511;return bc.baseTable[t]+((e&8388607)>>bc.shiftTable[t])}function E2(i){const e=i>>10;return bc.uint32View[0]=bc.mantissaTable[bc.offsetTable[e]+(i&1023)]+bc.exponentTable[e],bc.floatView[0]}const is=new Ae,C2=new dt;class wr{constructor(e,t,n=!1){if(Array.isArray(e))throw new TypeError("THREE.BufferAttribute: array should be a Typed Array.");this.isBufferAttribute=!0,this.name="",this.array=e,this.itemSize=t,this.count=e!==void 0?e.length/t:0,this.normalized=n,this.usage=o_,this.updateRanges=[],this.gpuType=$r,this.version=0}onUploadCallback(){}set needsUpdate(e){e===!0&&this.version++}setUsage(e){return this.usage=e,this}addUpdateRange(e,t){this.updateRanges.push({start:e,count:t})}clearUpdateRanges(){this.updateRanges.length=0}copy(e){return this.name=e.name,this.array=new e.array.constructor(e.array),this.itemSize=e.itemSize,this.count=e.count,this.normalized=e.normalized,this.usage=e.usage,this.gpuType=e.gpuType,this}copyAt(e,t,n){e*=this.itemSize,n*=t.itemSize;for(let r=0,s=this.itemSize;rt.count&&console.warn("THREE.BufferGeometry: Buffer size too small for points data. Use .dispose() and create a new geometry."),t.needsUpdate=!0}return this}computeBoundingBox(){this.boundingBox===null&&(this.boundingBox=new Gc);const e=this.attributes.position,t=this.morphAttributes.position;if(e&&e.isGLBufferAttribute){console.error("THREE.BufferGeometry.computeBoundingBox(): GLBufferAttribute requires a manual bounding box.",this),this.boundingBox.set(new Ae(-1/0,-1/0,-1/0),new Ae(1/0,1/0,1/0));return}if(e!==void 0){if(this.boundingBox.setFromBufferAttribute(e),t)for(let n=0,r=t.length;n0&&(e.userData=this.userData),this.parameters!==void 0){const u=this.parameters;for(const h in u)u[h]!==void 0&&(e[h]=u[h]);return e}e.data={attributes:{}};const t=this.index;t!==null&&(e.data.index={type:t.array.constructor.name,array:Array.prototype.slice.call(t.array)});const n=this.attributes;for(const u in n){const h=n[u];e.data.attributes[u]=h.toJSON(e.data)}const r={};let s=!1;for(const u in this.morphAttributes){const h=this.morphAttributes[u],m=[];for(let v=0,x=h.length;v0&&(r[u]=m,s=!0)}s&&(e.data.morphAttributes=r,e.data.morphTargetsRelative=this.morphTargetsRelative);const a=this.groups;a.length>0&&(e.data.groups=JSON.parse(JSON.stringify(a)));const l=this.boundingSphere;return l!==null&&(e.data.boundingSphere={center:l.center.toArray(),radius:l.radius}),e}clone(){return new this.constructor().copy(this)}copy(e){this.index=null,this.attributes={},this.morphAttributes={},this.groups=[],this.boundingBox=null,this.boundingSphere=null;const t={};this.name=e.name;const n=e.index;n!==null&&this.setIndex(n.clone(t));const r=e.attributes;for(const h in r){const m=r[h];this.setAttribute(h,m.clone(t))}const s=e.morphAttributes;for(const h in s){const m=[],v=s[h];for(let x=0,S=v.length;x0){const r=t[n[0]];if(r!==void 0){this.morphTargetInfluences=[],this.morphTargetDictionary={};for(let s=0,a=r.length;s(e.far-e.near)**2))&&(a5.copy(s).invert(),bf.copy(e.ray).applyMatrix4(a5),!(n.boundingBox!==null&&bf.intersectsBox(n.boundingBox)===!1)&&this._computeIntersections(e,t,bf)))}_computeIntersections(e,t,n){let r;const s=this.geometry,a=this.material,l=s.index,u=s.attributes.position,h=s.attributes.uv,m=s.attributes.uv1,v=s.attributes.normal,x=s.groups,S=s.drawRange;if(l!==null)if(Array.isArray(a))for(let w=0,R=x.length;wt.far?null:{distance:h,point:U2.clone(),object:i}}function B2(i,e,t,n,r,s,a,l,u,h){i.getVertexPosition(l,N2),i.getVertexPosition(u,D2),i.getVertexPosition(h,P2);const m=qk(i,e,t,n,N2,D2,P2,l5);if(m){const v=new Ae;Sl.getBarycoord(l5,N2,D2,P2,v),r&&(m.uv=Sl.getInterpolatedAttribute(r,l,u,h,v,new dt)),s&&(m.uv1=Sl.getInterpolatedAttribute(s,l,u,h,v,new dt)),a&&(m.normal=Sl.getInterpolatedAttribute(a,l,u,h,v,new Ae),m.normal.dot(n.direction)>0&&m.normal.multiplyScalar(-1));const x={a:l,b:u,c:h,normal:new Ae,materialIndex:0};Sl.getNormal(N2,D2,P2,x.normal),m.face=x,m.barycoord=v}return m}class $h extends Ki{constructor(e=1,t=1,n=1,r=1,s=1,a=1){super(),this.type="BoxGeometry",this.parameters={width:e,height:t,depth:n,widthSegments:r,heightSegments:s,depthSegments:a};const l=this;r=Math.floor(r),s=Math.floor(s),a=Math.floor(a);const u=[],h=[],m=[],v=[];let x=0,S=0;w("z","y","x",-1,-1,n,t,e,a,s,0),w("z","y","x",1,-1,n,t,-e,a,s,1),w("x","z","y",1,1,e,n,t,r,a,2),w("x","z","y",1,-1,e,n,-t,r,a,3),w("x","y","z",1,-1,e,t,n,r,s,4),w("x","y","z",-1,-1,e,t,-n,r,s,5),this.setIndex(u),this.setAttribute("position",new Mi(h,3)),this.setAttribute("normal",new Mi(m,3)),this.setAttribute("uv",new Mi(v,2));function w(R,C,E,B,L,O,G,q,z,j,F){const V=O/z,Y=G/j,J=O/2,ne=G/2,oe=q/2,te=z+1,Q=j+1;let ue=0,he=0;const we=new Ae;for(let Te=0;Te0?1:-1,m.push(we.x,we.y,we.z),v.push(be/z),v.push(1-Te/j),ue+=1}}for(let Te=0;Te0&&(t.defines=this.defines),t.vertexShader=this.vertexShader,t.fragmentShader=this.fragmentShader,t.lights=this.lights,t.clipping=this.clipping;const n={};for(const r in this.extensions)this.extensions[r]===!0&&(n[r]=!0);return Object.keys(n).length>0&&(t.extensions=n),t}}class _y extends vr{constructor(){super(),this.isCamera=!0,this.type="Camera",this.matrixWorldInverse=new kn,this.projectionMatrix=new kn,this.projectionMatrixInverse=new kn,this.coordinateSystem=Ha}copy(e,t){return super.copy(e,t),this.matrixWorldInverse.copy(e.matrixWorldInverse),this.projectionMatrix.copy(e.projectionMatrix),this.projectionMatrixInverse.copy(e.projectionMatrixInverse),this.coordinateSystem=e.coordinateSystem,this}getWorldDirection(e){return super.getWorldDirection(e).negate()}updateMatrixWorld(e){super.updateMatrixWorld(e),this.matrixWorldInverse.copy(this.matrixWorld).invert()}updateWorldMatrix(e,t){super.updateWorldMatrix(e,t),this.matrixWorldInverse.copy(this.matrixWorld).invert()}clone(){return new this.constructor().copy(this)}}const yh=new Ae,u5=new dt,c5=new dt;class ya extends _y{constructor(e=50,t=1,n=.1,r=2e3){super(),this.isPerspectiveCamera=!0,this.type="PerspectiveCamera",this.fov=e,this.zoom=1,this.near=n,this.far=r,this.focus=10,this.aspect=t,this.view=null,this.filmGauge=35,this.filmOffset=0,this.updateProjectionMatrix()}copy(e,t){return super.copy(e,t),this.fov=e.fov,this.zoom=e.zoom,this.near=e.near,this.far=e.far,this.focus=e.focus,this.aspect=e.aspect,this.view=e.view===null?null:Object.assign({},e.view),this.filmGauge=e.filmGauge,this.filmOffset=e.filmOffset,this}setFocalLength(e){const t=.5*this.getFilmHeight()/e;this.fov=w0*2*Math.atan(t),this.updateProjectionMatrix()}getFocalLength(){const e=Math.tan(Em*.5*this.fov);return .5*this.getFilmHeight()/e}getEffectiveFOV(){return w0*2*Math.atan(Math.tan(Em*.5*this.fov)/this.zoom)}getFilmWidth(){return this.filmGauge*Math.min(this.aspect,1)}getFilmHeight(){return this.filmGauge/Math.max(this.aspect,1)}getViewBounds(e,t,n){yh.set(-1,-1,.5).applyMatrix4(this.projectionMatrixInverse),t.set(yh.x,yh.y).multiplyScalar(-e/yh.z),yh.set(1,1,.5).applyMatrix4(this.projectionMatrixInverse),n.set(yh.x,yh.y).multiplyScalar(-e/yh.z)}getViewSize(e,t){return this.getViewBounds(e,u5,c5),t.subVectors(c5,u5)}setViewOffset(e,t,n,r,s,a){this.aspect=e/t,this.view===null&&(this.view={enabled:!0,fullWidth:1,fullHeight:1,offsetX:0,offsetY:0,width:1,height:1}),this.view.enabled=!0,this.view.fullWidth=e,this.view.fullHeight=t,this.view.offsetX=n,this.view.offsetY=r,this.view.width=s,this.view.height=a,this.updateProjectionMatrix()}clearViewOffset(){this.view!==null&&(this.view.enabled=!1),this.updateProjectionMatrix()}updateProjectionMatrix(){const e=this.near;let t=e*Math.tan(Em*.5*this.fov)/this.zoom,n=2*t,r=this.aspect*n,s=-.5*r;const a=this.view;if(this.view!==null&&this.view.enabled){const u=a.fullWidth,h=a.fullHeight;s+=a.offsetX*r/u,t-=a.offsetY*n/h,r*=a.width/u,n*=a.height/h}const l=this.filmOffset;l!==0&&(s+=e*l/this.getFilmWidth()),this.projectionMatrix.makePerspective(s,s+r,t,t-n,e,this.far,this.coordinateSystem),this.projectionMatrixInverse.copy(this.projectionMatrix).invert()}toJSON(e){const t=super.toJSON(e);return t.object.fov=this.fov,t.object.zoom=this.zoom,t.object.near=this.near,t.object.far=this.far,t.object.focus=this.focus,t.object.aspect=this.aspect,this.view!==null&&(t.object.view=Object.assign({},this.view)),t.object.filmGauge=this.filmGauge,t.object.filmOffset=this.filmOffset,t}}const md=-90,gd=1;class V7 extends vr{constructor(e,t,n){super(),this.type="CubeCamera",this.renderTarget=n,this.coordinateSystem=null,this.activeMipmapLevel=0;const r=new ya(md,gd,e,t);r.layers=this.layers,this.add(r);const s=new ya(md,gd,e,t);s.layers=this.layers,this.add(s);const a=new ya(md,gd,e,t);a.layers=this.layers,this.add(a);const l=new ya(md,gd,e,t);l.layers=this.layers,this.add(l);const u=new ya(md,gd,e,t);u.layers=this.layers,this.add(u);const h=new ya(md,gd,e,t);h.layers=this.layers,this.add(h)}updateCoordinateSystem(){const e=this.coordinateSystem,t=this.children.concat(),[n,r,s,a,l,u]=t;for(const h of t)this.remove(h);if(e===Ha)n.up.set(0,1,0),n.lookAt(1,0,0),r.up.set(0,1,0),r.lookAt(-1,0,0),s.up.set(0,0,-1),s.lookAt(0,1,0),a.up.set(0,0,1),a.lookAt(0,-1,0),l.up.set(0,1,0),l.lookAt(0,0,1),u.up.set(0,1,0),u.lookAt(0,0,-1);else if(e===pu)n.up.set(0,-1,0),n.lookAt(-1,0,0),r.up.set(0,-1,0),r.lookAt(1,0,0),s.up.set(0,0,1),s.lookAt(0,1,0),a.up.set(0,0,-1),a.lookAt(0,-1,0),l.up.set(0,-1,0),l.lookAt(0,0,1),u.up.set(0,-1,0),u.lookAt(0,0,-1);else throw new Error("THREE.CubeCamera.updateCoordinateSystem(): Invalid coordinate system: "+e);for(const h of t)this.add(h),h.updateMatrixWorld()}update(e,t){this.parent===null&&this.updateMatrixWorld();const{renderTarget:n,activeMipmapLevel:r}=this;this.coordinateSystem!==e.coordinateSystem&&(this.coordinateSystem=e.coordinateSystem,this.updateCoordinateSystem());const[s,a,l,u,h,m]=this.children,v=e.getRenderTarget(),x=e.getActiveCubeFace(),S=e.getActiveMipmapLevel(),w=e.xr.enabled;e.xr.enabled=!1;const R=n.texture.generateMipmaps;n.texture.generateMipmaps=!1,e.setRenderTarget(n,0,r),e.render(t,s),e.setRenderTarget(n,1,r),e.render(t,a),e.setRenderTarget(n,2,r),e.render(t,l),e.setRenderTarget(n,3,r),e.render(t,u),e.setRenderTarget(n,4,r),e.render(t,h),n.texture.generateMipmaps=R,e.setRenderTarget(n,5,r),e.render(t,m),e.setRenderTarget(v,x,S),e.xr.enabled=w,n.texture.needsPMREMUpdate=!0}}class yy extends vs{constructor(e,t,n,r,s,a,l,u,h,m){e=e!==void 0?e:[],t=t!==void 0?t:Qo,super(e,t,n,r,s,a,l,u,h,m),this.isCubeTexture=!0,this.flipY=!1}get images(){return this.image}set images(e){this.image=e}}class H7 extends qh{constructor(e=1,t={}){super(e,e,t),this.isWebGLCubeRenderTarget=!0;const n={width:e,height:e,depth:1},r=[n,n,n,n,n,n];this.texture=new yy(r,t.mapping,t.wrapS,t.wrapT,t.magFilter,t.minFilter,t.format,t.type,t.anisotropy,t.colorSpace),this.texture.isRenderTargetTexture=!0,this.texture.generateMipmaps=t.generateMipmaps!==void 0?t.generateMipmaps:!1,this.texture.minFilter=t.minFilter!==void 0?t.minFilter:gs}fromEquirectangularTexture(e,t){this.texture.type=t.type,this.texture.colorSpace=t.colorSpace,this.texture.generateMipmaps=t.generateMipmaps,this.texture.minFilter=t.minFilter,this.texture.magFilter=t.magFilter;const n={uniforms:{tEquirect:{value:null}},vertexShader:` + + varying vec3 vWorldDirection; + + vec3 transformDirection( in vec3 dir, in mat4 matrix ) { + + return normalize( ( matrix * vec4( dir, 0.0 ) ).xyz ); + + } + + void main() { + + vWorldDirection = transformDirection( position, modelMatrix ); + + #include + #include + + } + `,fragmentShader:` + + uniform sampler2D tEquirect; + + varying vec3 vWorldDirection; + + #include + + void main() { + + vec3 direction = normalize( vWorldDirection ); + + vec2 sampleUV = equirectUv( direction ); + + gl_FragColor = texture2D( tEquirect, sampleUV ); + + } + `},r=new $h(5,5,5),s=new Ja({name:"CubemapFromEquirect",uniforms:E0(n.uniforms),vertexShader:n.vertexShader,fragmentShader:n.fragmentShader,side:hr,blending:Qa});s.uniforms.tEquirect.value=t;const a=new zi(r,s),l=t.minFilter;return t.minFilter===Va&&(t.minFilter=gs),new V7(1,10,this).update(e,a),t.minFilter=l,a.geometry.dispose(),a.material.dispose(),this}clear(e,t,n,r){const s=e.getRenderTarget();for(let a=0;a<6;a++)e.setRenderTarget(this,a),e.clear(t,n,r);e.setRenderTarget(s)}}class Yw extends vr{constructor(){super(),this.isScene=!0,this.type="Scene",this.background=null,this.environment=null,this.fog=null,this.backgroundBlurriness=0,this.backgroundIntensity=1,this.backgroundRotation=new la,this.environmentIntensity=1,this.environmentRotation=new la,this.overrideMaterial=null,typeof __THREE_DEVTOOLS__<"u"&&__THREE_DEVTOOLS__.dispatchEvent(new CustomEvent("observe",{detail:this}))}copy(e,t){return super.copy(e,t),e.background!==null&&(this.background=e.background.clone()),e.environment!==null&&(this.environment=e.environment.clone()),e.fog!==null&&(this.fog=e.fog.clone()),this.backgroundBlurriness=e.backgroundBlurriness,this.backgroundIntensity=e.backgroundIntensity,this.backgroundRotation.copy(e.backgroundRotation),this.environmentIntensity=e.environmentIntensity,this.environmentRotation.copy(e.environmentRotation),e.overrideMaterial!==null&&(this.overrideMaterial=e.overrideMaterial.clone()),this.matrixAutoUpdate=e.matrixAutoUpdate,this}toJSON(e){const t=super.toJSON(e);return this.fog!==null&&(t.object.fog=this.fog.toJSON()),this.backgroundBlurriness>0&&(t.object.backgroundBlurriness=this.backgroundBlurriness),this.backgroundIntensity!==1&&(t.object.backgroundIntensity=this.backgroundIntensity),t.object.backgroundRotation=this.backgroundRotation.toArray(),this.environmentIntensity!==1&&(t.object.environmentIntensity=this.environmentIntensity),t.object.environmentRotation=this.environmentRotation.toArray(),t}}class Qw{constructor(e,t){this.isInterleavedBuffer=!0,this.array=e,this.stride=t,this.count=e!==void 0?e.length/t:0,this.usage=o_,this.updateRanges=[],this.version=0,this.uuid=ou()}onUploadCallback(){}set needsUpdate(e){e===!0&&this.version++}setUsage(e){return this.usage=e,this}addUpdateRange(e,t){this.updateRanges.push({start:e,count:t})}clearUpdateRanges(){this.updateRanges.length=0}copy(e){return this.array=new e.array.constructor(e.array),this.count=e.count,this.stride=e.stride,this.usage=e.usage,this}copyAt(e,t,n){e*=this.stride,n*=t.stride;for(let r=0,s=this.stride;r1?null:t.copy(e.start).addScaledVector(n,s)}intersectsLine(e){const t=this.distanceToPoint(e.start),n=this.distanceToPoint(e.end);return t<0&&n>0||n<0&&t>0}intersectsBox(e){return e.intersectsPlane(this)}intersectsSphere(e){return e.intersectsPlane(this)}coplanarPoint(e){return e.copy(this.normal).multiplyScalar(-this.constant)}applyMatrix4(e,t){const n=t||Yk.getNormalMatrix(e),r=this.coplanarPoint(v3).applyMatrix4(e),s=this.normal.applyMatrix3(n).normalize();return this.constant=-r.dot(s),this}translate(e){return this.constant-=e.dot(this.normal),this}equals(e){return e.normal.equals(this.normal)&&e.constant===this.constant}clone(){return new this.constructor().copy(this)}}const Sf=new dA,O2=new Ae;class Fg{constructor(e=new Yl,t=new Yl,n=new Yl,r=new Yl,s=new Yl,a=new Yl){this.planes=[e,t,n,r,s,a]}set(e,t,n,r,s,a){const l=this.planes;return l[0].copy(e),l[1].copy(t),l[2].copy(n),l[3].copy(r),l[4].copy(s),l[5].copy(a),this}copy(e){const t=this.planes;for(let n=0;n<6;n++)t[n].copy(e.planes[n]);return this}setFromProjectionMatrix(e,t=Ha){const n=this.planes,r=e.elements,s=r[0],a=r[1],l=r[2],u=r[3],h=r[4],m=r[5],v=r[6],x=r[7],S=r[8],w=r[9],R=r[10],C=r[11],E=r[12],B=r[13],L=r[14],O=r[15];if(n[0].setComponents(u-s,x-h,C-S,O-E).normalize(),n[1].setComponents(u+s,x+h,C+S,O+E).normalize(),n[2].setComponents(u+a,x+m,C+w,O+B).normalize(),n[3].setComponents(u-a,x-m,C-w,O-B).normalize(),n[4].setComponents(u-l,x-v,C-R,O-L).normalize(),t===Ha)n[5].setComponents(u+l,x+v,C+R,O+L).normalize();else if(t===pu)n[5].setComponents(l,v,R,L).normalize();else throw new Error("THREE.Frustum.setFromProjectionMatrix(): Invalid coordinate system: "+t);return this}intersectsObject(e){if(e.boundingSphere!==void 0)e.boundingSphere===null&&e.computeBoundingSphere(),Sf.copy(e.boundingSphere).applyMatrix4(e.matrixWorld);else{const t=e.geometry;t.boundingSphere===null&&t.computeBoundingSphere(),Sf.copy(t.boundingSphere).applyMatrix4(e.matrixWorld)}return this.intersectsSphere(Sf)}intersectsSprite(e){return Sf.center.set(0,0,0),Sf.radius=.7071067811865476,Sf.applyMatrix4(e.matrixWorld),this.intersectsSphere(Sf)}intersectsSphere(e){const t=this.planes,n=e.center,r=-e.radius;for(let s=0;s<6;s++)if(t[s].distanceToPoint(n)0?e.max.x:e.min.x,O2.y=r.normal.y>0?e.max.y:e.min.y,O2.z=r.normal.z>0?e.max.z:e.min.z,r.distanceToPoint(O2)<0)return!1}return!0}containsPoint(e){const t=this.planes;for(let n=0;n<6;n++)if(t[n].distanceToPoint(e)<0)return!1;return!0}clone(){return new this.constructor().copy(this)}}class $0 extends ua{constructor(e){super(),this.isLineBasicMaterial=!0,this.type="LineBasicMaterial",this.color=new an(16777215),this.map=null,this.linewidth=1,this.linecap="round",this.linejoin="round",this.fog=!0,this.setValues(e)}copy(e){return super.copy(e),this.color.copy(e.color),this.map=e.map,this.linewidth=e.linewidth,this.linecap=e.linecap,this.linejoin=e.linejoin,this.fog=e.fog,this}}const l_=new Ae,u_=new Ae,h5=new kn,Jp=new Og,I2=new dA,_3=new Ae,f5=new Ae;class xy extends vr{constructor(e=new Ki,t=new $0){super(),this.isLine=!0,this.type="Line",this.geometry=e,this.material=t,this.updateMorphTargets()}copy(e,t){return super.copy(e,t),this.material=Array.isArray(e.material)?e.material.slice():e.material,this.geometry=e.geometry,this}computeLineDistances(){const e=this.geometry;if(e.index===null){const t=e.attributes.position,n=[0];for(let r=1,s=t.count;r0){const r=t[n[0]];if(r!==void 0){this.morphTargetInfluences=[],this.morphTargetDictionary={};for(let s=0,a=r.length;sn)return;_3.applyMatrix4(i.matrixWorld);const u=e.ray.origin.distanceTo(_3);if(!(ue.far))return{distance:u,point:f5.clone().applyMatrix4(i.matrixWorld),index:r,face:null,faceIndex:null,barycoord:null,object:i}}const A5=new Ae,d5=new Ae;class j7 extends xy{constructor(e,t){super(e,t),this.isLineSegments=!0,this.type="LineSegments"}computeLineDistances(){const e=this.geometry;if(e.index===null){const t=e.attributes.position,n=[];for(let r=0,s=t.count;r0){const r=t[n[0]];if(r!==void 0){this.morphTargetInfluences=[],this.morphTargetDictionary={};for(let s=0,a=r.length;sr.far)return;s.push({distance:h,distanceToRay:Math.sqrt(l),point:u,index:e,face:null,faceIndex:null,barycoord:null,object:a})}}let ja=class extends vr{constructor(){super(),this.isGroup=!0,this.type="Group"}};class W7 extends vs{constructor(e,t){super({width:e,height:t}),this.isFramebufferTexture=!0,this.magFilter=mr,this.minFilter=mr,this.generateMipmaps=!1,this.needsUpdate=!0}}class qc extends vs{constructor(e,t,n,r,s,a,l,u,h,m=au){if(m!==au&&m!==du)throw new Error("DepthTexture format must be either THREE.DepthFormat or THREE.DepthStencilFormat");n===void 0&&m===au&&(n=Rr),n===void 0&&m===du&&(n=Au),super(null,r,s,a,l,u,m,n,h),this.isDepthTexture=!0,this.image={width:e,height:t},this.magFilter=l!==void 0?l:mr,this.minFilter=u!==void 0?u:mr,this.flipY=!1,this.generateMipmaps=!1,this.compareFunction=null}copy(e){return super.copy(e),this.compareFunction=e.compareFunction,this}toJSON(e){const t=super.toJSON(e);return this.compareFunction!==null&&(t.compareFunction=this.compareFunction),t}}class Pl{constructor(){this.type="Curve",this.arcLengthDivisions=200}getPoint(){return console.warn("THREE.Curve: .getPoint() not implemented."),null}getPointAt(e,t){const n=this.getUtoTmapping(e);return this.getPoint(n,t)}getPoints(e=5){const t=[];for(let n=0;n<=e;n++)t.push(this.getPoint(n/e));return t}getSpacedPoints(e=5){const t=[];for(let n=0;n<=e;n++)t.push(this.getPointAt(n/e));return t}getLength(){const e=this.getLengths();return e[e.length-1]}getLengths(e=this.arcLengthDivisions){if(this.cacheArcLengths&&this.cacheArcLengths.length===e+1&&!this.needsUpdate)return this.cacheArcLengths;this.needsUpdate=!1;const t=[];let n,r=this.getPoint(0),s=0;t.push(0);for(let a=1;a<=e;a++)n=this.getPoint(a/e),s+=n.distanceTo(r),t.push(s),r=n;return this.cacheArcLengths=t,t}updateArcLengths(){this.needsUpdate=!0,this.getLengths()}getUtoTmapping(e,t){const n=this.getLengths();let r=0;const s=n.length;let a;t?a=t:a=e*n[s-1];let l=0,u=s-1,h;for(;l<=u;)if(r=Math.floor(l+(u-l)/2),h=n[r]-a,h<0)l=r+1;else if(h>0)u=r-1;else{u=r;break}if(r=u,n[r]===a)return r/(s-1);const m=n[r],x=n[r+1]-m,S=(a-m)/x;return(r+S)/(s-1)}getTangent(e,t){let r=e-1e-4,s=e+1e-4;r<0&&(r=0),s>1&&(s=1);const a=this.getPoint(r),l=this.getPoint(s),u=t||(a.isVector2?new dt:new Ae);return u.copy(l).sub(a).normalize(),u}getTangentAt(e,t){const n=this.getUtoTmapping(e);return this.getTangent(n,t)}computeFrenetFrames(e,t){const n=new Ae,r=[],s=[],a=[],l=new Ae,u=new kn;for(let S=0;S<=e;S++){const w=S/e;r[S]=this.getTangentAt(w,new Ae)}s[0]=new Ae,a[0]=new Ae;let h=Number.MAX_VALUE;const m=Math.abs(r[0].x),v=Math.abs(r[0].y),x=Math.abs(r[0].z);m<=h&&(h=m,n.set(1,0,0)),v<=h&&(h=v,n.set(0,1,0)),x<=h&&n.set(0,0,1),l.crossVectors(r[0],n).normalize(),s[0].crossVectors(r[0],l),a[0].crossVectors(r[0],s[0]);for(let S=1;S<=e;S++){if(s[S]=s[S-1].clone(),a[S]=a[S-1].clone(),l.crossVectors(r[S-1],r[S]),l.length()>Number.EPSILON){l.normalize();const w=Math.acos(ii(r[S-1].dot(r[S]),-1,1));s[S].applyMatrix4(u.makeRotationAxis(l,w))}a[S].crossVectors(r[S],s[S])}if(t===!0){let S=Math.acos(ii(s[0].dot(s[e]),-1,1));S/=e,r[0].dot(l.crossVectors(s[0],s[e]))>0&&(S=-S);for(let w=1;w<=e;w++)s[w].applyMatrix4(u.makeRotationAxis(r[w],S*w)),a[w].crossVectors(r[w],s[w])}return{tangents:r,normals:s,binormals:a}}clone(){return new this.constructor().copy(this)}copy(e){return this.arcLengthDivisions=e.arcLengthDivisions,this}toJSON(){const e={metadata:{version:4.6,type:"Curve",generator:"Curve.toJSON"}};return e.arcLengthDivisions=this.arcLengthDivisions,e.type=this.type,e}fromJSON(e){return this.arcLengthDivisions=e.arcLengthDivisions,this}}class Zw extends Pl{constructor(e=0,t=0,n=1,r=1,s=0,a=Math.PI*2,l=!1,u=0){super(),this.isEllipseCurve=!0,this.type="EllipseCurve",this.aX=e,this.aY=t,this.xRadius=n,this.yRadius=r,this.aStartAngle=s,this.aEndAngle=a,this.aClockwise=l,this.aRotation=u}getPoint(e,t=new dt){const n=t,r=Math.PI*2;let s=this.aEndAngle-this.aStartAngle;const a=Math.abs(s)r;)s-=r;s0?0:(Math.floor(Math.abs(l)/s)+1)*s:u===0&&l===s-1&&(l=s-2,u=1);let h,m;this.closed||l>0?h=r[(l-1)%s]:(G2.subVectors(r[0],r[1]).add(r[0]),h=G2);const v=r[l%s],x=r[(l+1)%s];if(this.closed||l+2r.length-2?r.length-1:a+1],v=r[a>r.length-3?r.length-1:a+2];return n.set(g5(l,u.x,h.x,m.x,v.x),g5(l,u.y,h.y,m.y,v.y)),n}copy(e){super.copy(e),this.points=[];for(let t=0,n=e.points.length;t=n){const a=r[s]-n,l=this.curves[s],u=l.getLength(),h=u===0?0:1-a/u;return l.getPointAt(h,t)}s++}return null}getLength(){const e=this.getCurveLengths();return e[e.length-1]}updateArcLengths(){this.needsUpdate=!0,this.cacheLengths=null,this.getCurveLengths()}getCurveLengths(){if(this.cacheLengths&&this.cacheLengths.length===this.curves.length)return this.cacheLengths;const e=[];let t=0;for(let n=0,r=this.curves.length;n1&&!t[t.length-1].equals(t[0])&&t.push(t[0]),t}copy(e){super.copy(e),this.curves=[];for(let t=0,n=e.curves.length;t0){const v=h.getPoint(0);v.equals(this.currentPoint)||this.lineTo(v.x,v.y)}this.curves.push(h);const m=h.getPoint(1);return this.currentPoint.copy(m),this}copy(e){return super.copy(e),this.currentPoint.copy(e.currentPoint),this}toJSON(){const e=super.toJSON();return e.currentPoint=this.currentPoint.toArray(),e}fromJSON(e){return super.fromJSON(e),this.currentPoint.fromArray(e.currentPoint),this}};class by extends Ki{constructor(e=1,t=32,n=0,r=Math.PI*2){super(),this.type="CircleGeometry",this.parameters={radius:e,segments:t,thetaStart:n,thetaLength:r},t=Math.max(3,t);const s=[],a=[],l=[],u=[],h=new Ae,m=new dt;a.push(0,0,0),l.push(0,0,1),u.push(.5,.5);for(let v=0,x=3;v<=t;v++,x+=3){const S=n+v/t*r;h.x=e*Math.cos(S),h.y=e*Math.sin(S),a.push(h.x,h.y,h.z),l.push(0,0,1),m.x=(a[x]/e+1)/2,m.y=(a[x+1]/e+1)/2,u.push(m.x,m.y)}for(let v=1;v<=t;v++)s.push(v,v+1,0);this.setIndex(s),this.setAttribute("position",new Mi(a,3)),this.setAttribute("normal",new Mi(l,3)),this.setAttribute("uv",new Mi(u,2))}copy(e){return super.copy(e),this.parameters=Object.assign({},e.parameters),this}static fromJSON(e){return new by(e.radius,e.segments,e.thetaStart,e.thetaLength)}}class eM extends Ki{constructor(e=1,t=1,n=1,r=32,s=1,a=!1,l=0,u=Math.PI*2){super(),this.type="CylinderGeometry",this.parameters={radiusTop:e,radiusBottom:t,height:n,radialSegments:r,heightSegments:s,openEnded:a,thetaStart:l,thetaLength:u};const h=this;r=Math.floor(r),s=Math.floor(s);const m=[],v=[],x=[],S=[];let w=0;const R=[],C=n/2;let E=0;B(),a===!1&&(e>0&&L(!0),t>0&&L(!1)),this.setIndex(m),this.setAttribute("position",new Mi(v,3)),this.setAttribute("normal",new Mi(x,3)),this.setAttribute("uv",new Mi(S,2));function B(){const O=new Ae,G=new Ae;let q=0;const z=(t-e)/n;for(let j=0;j<=s;j++){const F=[],V=j/s,Y=V*(t-e)+e;for(let J=0;J<=r;J++){const ne=J/r,oe=ne*u+l,te=Math.sin(oe),Q=Math.cos(oe);G.x=Y*te,G.y=-V*n+C,G.z=Y*Q,v.push(G.x,G.y,G.z),O.set(te,z,Q).normalize(),x.push(O.x,O.y,O.z),S.push(ne,1-V),F.push(w++)}R.push(F)}for(let j=0;j0||F!==0)&&(m.push(V,Y,ne),q+=3),(t>0||F!==s-1)&&(m.push(Y,J,ne),q+=3)}h.addGroup(E,q,0),E+=q}function L(O){const G=w,q=new dt,z=new Ae;let j=0;const F=O===!0?e:t,V=O===!0?1:-1;for(let J=1;J<=r;J++)v.push(0,C*V,0),x.push(0,V,0),S.push(.5,.5),w++;const Y=w;for(let J=0;J<=r;J++){const oe=J/r*u+l,te=Math.cos(oe),Q=Math.sin(oe);z.x=F*Q,z.y=C*V,z.z=F*te,v.push(z.x,z.y,z.z),x.push(0,V,0),q.x=te*.5+.5,q.y=Q*.5*V+.5,S.push(q.x,q.y),w++}for(let J=0;J80*t){l=h=i[0],u=m=i[1];for(let w=t;wh&&(h=v),x>m&&(m=x);S=Math.max(h-l,m-u),S=S!==0?32767/S:0}return ag(s,a,t,l,u,S,0),a}};function J7(i,e,t,n,r){let s,a;if(r===Tz(i,e,t,n)>0)for(s=e;s=e;s-=n)a=v5(s,i[s],i[s+1],a);return a&&Sy(a,a.next)&&(lg(a),a=a.next),a}function uA(i,e){if(!i)return i;e||(e=i);let t=i,n;do if(n=!1,!t.steiner&&(Sy(t,t.next)||Nr(t.prev,t,t.next)===0)){if(lg(t),t=e=t.prev,t===t.next)break;n=!0}else t=t.next;while(n||t!==e);return e}function ag(i,e,t,n,r,s,a){if(!i)return;!a&&s&&vz(i,n,r,s);let l=i,u,h;for(;i.prev!==i.next;){if(u=i.prev,h=i.next,s?cz(i,n,r,s):uz(i)){e.push(u.i/t|0),e.push(i.i/t|0),e.push(h.i/t|0),lg(i),i=h.next,l=h.next;continue}if(i=h,i===l){a?a===1?(i=hz(uA(i),e,t),ag(i,e,t,n,r,s,2)):a===2&&fz(i,e,t,n,r,s):ag(uA(i),e,t,n,r,s,1);break}}}function uz(i){const e=i.prev,t=i,n=i.next;if(Nr(e,t,n)>=0)return!1;const r=e.x,s=t.x,a=n.x,l=e.y,u=t.y,h=n.y,m=rs?r>a?r:a:s>a?s:a,S=l>u?l>h?l:h:u>h?u:h;let w=n.next;for(;w!==e;){if(w.x>=m&&w.x<=x&&w.y>=v&&w.y<=S&&Vd(r,l,s,u,a,h,w.x,w.y)&&Nr(w.prev,w,w.next)>=0)return!1;w=w.next}return!0}function cz(i,e,t,n){const r=i.prev,s=i,a=i.next;if(Nr(r,s,a)>=0)return!1;const l=r.x,u=s.x,h=a.x,m=r.y,v=s.y,x=a.y,S=lu?l>h?l:h:u>h?u:h,C=m>v?m>x?m:x:v>x?v:x,E=YS(S,w,e,t,n),B=YS(R,C,e,t,n);let L=i.prevZ,O=i.nextZ;for(;L&&L.z>=E&&O&&O.z<=B;){if(L.x>=S&&L.x<=R&&L.y>=w&&L.y<=C&&L!==r&&L!==a&&Vd(l,m,u,v,h,x,L.x,L.y)&&Nr(L.prev,L,L.next)>=0||(L=L.prevZ,O.x>=S&&O.x<=R&&O.y>=w&&O.y<=C&&O!==r&&O!==a&&Vd(l,m,u,v,h,x,O.x,O.y)&&Nr(O.prev,O,O.next)>=0))return!1;O=O.nextZ}for(;L&&L.z>=E;){if(L.x>=S&&L.x<=R&&L.y>=w&&L.y<=C&&L!==r&&L!==a&&Vd(l,m,u,v,h,x,L.x,L.y)&&Nr(L.prev,L,L.next)>=0)return!1;L=L.prevZ}for(;O&&O.z<=B;){if(O.x>=S&&O.x<=R&&O.y>=w&&O.y<=C&&O!==r&&O!==a&&Vd(l,m,u,v,h,x,O.x,O.y)&&Nr(O.prev,O,O.next)>=0)return!1;O=O.nextZ}return!0}function hz(i,e,t){let n=i;do{const r=n.prev,s=n.next.next;!Sy(r,s)&&eD(r,n,n.next,s)&&og(r,s)&&og(s,r)&&(e.push(r.i/t|0),e.push(n.i/t|0),e.push(s.i/t|0),lg(n),lg(n.next),n=i=s),n=n.next}while(n!==i);return uA(n)}function fz(i,e,t,n,r,s){let a=i;do{let l=a.next.next;for(;l!==a.prev;){if(a.i!==l.i&&xz(a,l)){let u=tD(a,l);a=uA(a,a.next),u=uA(u,u.next),ag(a,e,t,n,r,s,0),ag(u,e,t,n,r,s,0);return}l=l.next}a=a.next}while(a!==i)}function Az(i,e,t,n){const r=[];let s,a,l,u,h;for(s=0,a=e.length;s=t.next.y&&t.next.y!==t.y){const x=t.x+(a-t.y)*(t.next.x-t.x)/(t.next.y-t.y);if(x<=s&&x>n&&(n=x,r=t.x=t.x&&t.x>=u&&s!==t.x&&Vd(ar.x||t.x===r.x&&gz(r,t)))&&(r=t,m=v)),t=t.next;while(t!==l);return r}function gz(i,e){return Nr(i.prev,i,e.prev)<0&&Nr(e.next,i,i.next)<0}function vz(i,e,t,n){let r=i;do r.z===0&&(r.z=YS(r.x,r.y,e,t,n)),r.prevZ=r.prev,r.nextZ=r.next,r=r.next;while(r!==i);r.prevZ.nextZ=null,r.prevZ=null,_z(r)}function _z(i){let e,t,n,r,s,a,l,u,h=1;do{for(t=i,i=null,s=null,a=0;t;){for(a++,n=t,l=0,e=0;e0||u>0&&n;)l!==0&&(u===0||!n||t.z<=n.z)?(r=t,t=t.nextZ,l--):(r=n,n=n.nextZ,u--),s?s.nextZ=r:i=r,r.prevZ=s,s=r;t=n}s.nextZ=null,h*=2}while(a>1);return i}function YS(i,e,t,n,r){return i=(i-t)*r|0,e=(e-n)*r|0,i=(i|i<<8)&16711935,i=(i|i<<4)&252645135,i=(i|i<<2)&858993459,i=(i|i<<1)&1431655765,e=(e|e<<8)&16711935,e=(e|e<<4)&252645135,e=(e|e<<2)&858993459,e=(e|e<<1)&1431655765,i|e<<1}function yz(i){let e=i,t=i;do(e.x=(i-a)*(s-l)&&(i-a)*(n-l)>=(t-a)*(e-l)&&(t-a)*(s-l)>=(r-a)*(n-l)}function xz(i,e){return i.next.i!==e.i&&i.prev.i!==e.i&&!bz(i,e)&&(og(i,e)&&og(e,i)&&Sz(i,e)&&(Nr(i.prev,i,e.prev)||Nr(i,e.prev,e))||Sy(i,e)&&Nr(i.prev,i,i.next)>0&&Nr(e.prev,e,e.next)>0)}function Nr(i,e,t){return(e.y-i.y)*(t.x-e.x)-(e.x-i.x)*(t.y-e.y)}function Sy(i,e){return i.x===e.x&&i.y===e.y}function eD(i,e,t,n){const r=V2(Nr(i,e,t)),s=V2(Nr(i,e,n)),a=V2(Nr(t,n,i)),l=V2(Nr(t,n,e));return!!(r!==s&&a!==l||r===0&&q2(i,t,e)||s===0&&q2(i,n,e)||a===0&&q2(t,i,n)||l===0&&q2(t,e,n))}function q2(i,e,t){return e.x<=Math.max(i.x,t.x)&&e.x>=Math.min(i.x,t.x)&&e.y<=Math.max(i.y,t.y)&&e.y>=Math.min(i.y,t.y)}function V2(i){return i>0?1:i<0?-1:0}function bz(i,e){let t=i;do{if(t.i!==i.i&&t.next.i!==i.i&&t.i!==e.i&&t.next.i!==e.i&&eD(t,t.next,i,e))return!0;t=t.next}while(t!==i);return!1}function og(i,e){return Nr(i.prev,i,i.next)<0?Nr(i,e,i.next)>=0&&Nr(i,i.prev,e)>=0:Nr(i,e,i.prev)<0||Nr(i,i.next,e)<0}function Sz(i,e){let t=i,n=!1;const r=(i.x+e.x)/2,s=(i.y+e.y)/2;do t.y>s!=t.next.y>s&&t.next.y!==t.y&&r<(t.next.x-t.x)*(s-t.y)/(t.next.y-t.y)+t.x&&(n=!n),t=t.next;while(t!==i);return n}function tD(i,e){const t=new QS(i.i,i.x,i.y),n=new QS(e.i,e.x,e.y),r=i.next,s=e.prev;return i.next=e,e.prev=i,t.next=r,r.prev=t,n.next=t,t.prev=n,s.next=n,n.prev=s,n}function v5(i,e,t,n){const r=new QS(i,e,t);return n?(r.next=n.next,r.prev=n,n.next.prev=r,n.next=r):(r.prev=r,r.next=r),r}function lg(i){i.next.prev=i.prev,i.prev.next=i.next,i.prevZ&&(i.prevZ.nextZ=i.nextZ),i.nextZ&&(i.nextZ.prevZ=i.prevZ)}function QS(i,e,t){this.i=i,this.x=e,this.y=t,this.prev=null,this.next=null,this.z=0,this.prevZ=null,this.nextZ=null,this.steiner=!1}function Tz(i,e,t,n){let r=0;for(let s=e,a=t-n;s2&&i[e-1].equals(i[0])&&i.pop()}function y5(i,e){for(let t=0;tNumber.EPSILON){const Se=Math.sqrt($),Fe=Math.sqrt(Re*Re+re*re),qe=rt.x-en/Se,wt=rt.y+pt/Se,Mt=fe.x-re/Fe,Gt=fe.y+Re/Fe,$t=((Mt-qe)*re-(Gt-wt)*Re)/(pt*re-en*Re);zt=qe+pt*$t-Ye.x,ft=wt+en*$t-Ye.y;const vt=zt*zt+ft*ft;if(vt<=2)return new dt(zt,ft);Dt=Math.sqrt(vt/2)}else{let Se=!1;pt>Number.EPSILON?Re>Number.EPSILON&&(Se=!0):pt<-Number.EPSILON?Re<-Number.EPSILON&&(Se=!0):Math.sign(en)===Math.sign(re)&&(Se=!0),Se?(zt=-en,ft=pt,Dt=Math.sqrt($)):(zt=pt,ft=en,Dt=Math.sqrt($/2))}return new dt(zt/Dt,ft/Dt)}const we=[];for(let Ye=0,rt=oe.length,fe=rt-1,zt=Ye+1;Ye=0;Ye--){const rt=Ye/C,fe=S*Math.cos(rt*Math.PI/2),zt=w*Math.sin(rt*Math.PI/2)+R;for(let ft=0,Dt=oe.length;ft=0;){const zt=fe;let ft=fe-1;ft<0&&(ft=Ye.length-1);for(let Dt=0,pt=m+C*2;Dt0)&&S.push(L,O,q),(E!==n-1||u0!=e>0&&this.version++,this._anisotropy=e}get clearcoat(){return this._clearcoat}set clearcoat(e){this._clearcoat>0!=e>0&&this.version++,this._clearcoat=e}get iridescence(){return this._iridescence}set iridescence(e){this._iridescence>0!=e>0&&this.version++,this._iridescence=e}get dispersion(){return this._dispersion}set dispersion(e){this._dispersion>0!=e>0&&this.version++,this._dispersion=e}get sheen(){return this._sheen}set sheen(e){this._sheen>0!=e>0&&this.version++,this._sheen=e}get transmission(){return this._transmission}set transmission(e){this._transmission>0!=e>0&&this.version++,this._transmission=e}copy(e){return super.copy(e),this.defines={STANDARD:"",PHYSICAL:""},this.anisotropy=e.anisotropy,this.anisotropyRotation=e.anisotropyRotation,this.anisotropyMap=e.anisotropyMap,this.clearcoat=e.clearcoat,this.clearcoatMap=e.clearcoatMap,this.clearcoatRoughness=e.clearcoatRoughness,this.clearcoatRoughnessMap=e.clearcoatRoughnessMap,this.clearcoatNormalMap=e.clearcoatNormalMap,this.clearcoatNormalScale.copy(e.clearcoatNormalScale),this.dispersion=e.dispersion,this.ior=e.ior,this.iridescence=e.iridescence,this.iridescenceMap=e.iridescenceMap,this.iridescenceIOR=e.iridescenceIOR,this.iridescenceThicknessRange=[...e.iridescenceThicknessRange],this.iridescenceThicknessMap=e.iridescenceThicknessMap,this.sheen=e.sheen,this.sheenColor.copy(e.sheenColor),this.sheenColorMap=e.sheenColorMap,this.sheenRoughness=e.sheenRoughness,this.sheenRoughnessMap=e.sheenRoughnessMap,this.transmission=e.transmission,this.transmissionMap=e.transmissionMap,this.thickness=e.thickness,this.thicknessMap=e.thicknessMap,this.attenuationDistance=e.attenuationDistance,this.attenuationColor.copy(e.attenuationColor),this.specularIntensity=e.specularIntensity,this.specularIntensityMap=e.specularIntensityMap,this.specularColor.copy(e.specularColor),this.specularColorMap=e.specularColorMap,this}}class iD extends ua{constructor(e){super(),this.isMeshPhongMaterial=!0,this.type="MeshPhongMaterial",this.color=new an(16777215),this.specular=new an(1118481),this.shininess=30,this.map=null,this.lightMap=null,this.lightMapIntensity=1,this.aoMap=null,this.aoMapIntensity=1,this.emissive=new an(0),this.emissiveIntensity=1,this.emissiveMap=null,this.bumpMap=null,this.bumpScale=1,this.normalMap=null,this.normalMapType=Dc,this.normalScale=new dt(1,1),this.displacementMap=null,this.displacementScale=1,this.displacementBias=0,this.specularMap=null,this.alphaMap=null,this.envMap=null,this.envMapRotation=new la,this.combine=Lg,this.reflectivity=1,this.refractionRatio=.98,this.wireframe=!1,this.wireframeLinewidth=1,this.wireframeLinecap="round",this.wireframeLinejoin="round",this.flatShading=!1,this.fog=!0,this.setValues(e)}copy(e){return super.copy(e),this.color.copy(e.color),this.specular.copy(e.specular),this.shininess=e.shininess,this.map=e.map,this.lightMap=e.lightMap,this.lightMapIntensity=e.lightMapIntensity,this.aoMap=e.aoMap,this.aoMapIntensity=e.aoMapIntensity,this.emissive.copy(e.emissive),this.emissiveMap=e.emissiveMap,this.emissiveIntensity=e.emissiveIntensity,this.bumpMap=e.bumpMap,this.bumpScale=e.bumpScale,this.normalMap=e.normalMap,this.normalMapType=e.normalMapType,this.normalScale.copy(e.normalScale),this.displacementMap=e.displacementMap,this.displacementScale=e.displacementScale,this.displacementBias=e.displacementBias,this.specularMap=e.specularMap,this.alphaMap=e.alphaMap,this.envMap=e.envMap,this.envMapRotation.copy(e.envMapRotation),this.combine=e.combine,this.reflectivity=e.reflectivity,this.refractionRatio=e.refractionRatio,this.wireframe=e.wireframe,this.wireframeLinewidth=e.wireframeLinewidth,this.wireframeLinecap=e.wireframeLinecap,this.wireframeLinejoin=e.wireframeLinejoin,this.flatShading=e.flatShading,this.fog=e.fog,this}}class Nz extends ua{constructor(e){super(),this.isMeshToonMaterial=!0,this.defines={TOON:""},this.type="MeshToonMaterial",this.color=new an(16777215),this.map=null,this.gradientMap=null,this.lightMap=null,this.lightMapIntensity=1,this.aoMap=null,this.aoMapIntensity=1,this.emissive=new an(0),this.emissiveIntensity=1,this.emissiveMap=null,this.bumpMap=null,this.bumpScale=1,this.normalMap=null,this.normalMapType=Dc,this.normalScale=new dt(1,1),this.displacementMap=null,this.displacementScale=1,this.displacementBias=0,this.alphaMap=null,this.wireframe=!1,this.wireframeLinewidth=1,this.wireframeLinecap="round",this.wireframeLinejoin="round",this.fog=!0,this.setValues(e)}copy(e){return super.copy(e),this.color.copy(e.color),this.map=e.map,this.gradientMap=e.gradientMap,this.lightMap=e.lightMap,this.lightMapIntensity=e.lightMapIntensity,this.aoMap=e.aoMap,this.aoMapIntensity=e.aoMapIntensity,this.emissive.copy(e.emissive),this.emissiveMap=e.emissiveMap,this.emissiveIntensity=e.emissiveIntensity,this.bumpMap=e.bumpMap,this.bumpScale=e.bumpScale,this.normalMap=e.normalMap,this.normalMapType=e.normalMapType,this.normalScale.copy(e.normalScale),this.displacementMap=e.displacementMap,this.displacementScale=e.displacementScale,this.displacementBias=e.displacementBias,this.alphaMap=e.alphaMap,this.wireframe=e.wireframe,this.wireframeLinewidth=e.wireframeLinewidth,this.wireframeLinecap=e.wireframeLinecap,this.wireframeLinejoin=e.wireframeLinejoin,this.fog=e.fog,this}}class Dz extends ua{constructor(e){super(),this.isMeshNormalMaterial=!0,this.type="MeshNormalMaterial",this.bumpMap=null,this.bumpScale=1,this.normalMap=null,this.normalMapType=Dc,this.normalScale=new dt(1,1),this.displacementMap=null,this.displacementScale=1,this.displacementBias=0,this.wireframe=!1,this.wireframeLinewidth=1,this.flatShading=!1,this.setValues(e)}copy(e){return super.copy(e),this.bumpMap=e.bumpMap,this.bumpScale=e.bumpScale,this.normalMap=e.normalMap,this.normalMapType=e.normalMapType,this.normalScale.copy(e.normalScale),this.displacementMap=e.displacementMap,this.displacementScale=e.displacementScale,this.displacementBias=e.displacementBias,this.wireframe=e.wireframe,this.wireframeLinewidth=e.wireframeLinewidth,this.flatShading=e.flatShading,this}}class Vc extends ua{constructor(e){super(),this.isMeshLambertMaterial=!0,this.type="MeshLambertMaterial",this.color=new an(16777215),this.map=null,this.lightMap=null,this.lightMapIntensity=1,this.aoMap=null,this.aoMapIntensity=1,this.emissive=new an(0),this.emissiveIntensity=1,this.emissiveMap=null,this.bumpMap=null,this.bumpScale=1,this.normalMap=null,this.normalMapType=Dc,this.normalScale=new dt(1,1),this.displacementMap=null,this.displacementScale=1,this.displacementBias=0,this.specularMap=null,this.alphaMap=null,this.envMap=null,this.envMapRotation=new la,this.combine=Lg,this.reflectivity=1,this.refractionRatio=.98,this.wireframe=!1,this.wireframeLinewidth=1,this.wireframeLinecap="round",this.wireframeLinejoin="round",this.flatShading=!1,this.fog=!0,this.setValues(e)}copy(e){return super.copy(e),this.color.copy(e.color),this.map=e.map,this.lightMap=e.lightMap,this.lightMapIntensity=e.lightMapIntensity,this.aoMap=e.aoMap,this.aoMapIntensity=e.aoMapIntensity,this.emissive.copy(e.emissive),this.emissiveMap=e.emissiveMap,this.emissiveIntensity=e.emissiveIntensity,this.bumpMap=e.bumpMap,this.bumpScale=e.bumpScale,this.normalMap=e.normalMap,this.normalMapType=e.normalMapType,this.normalScale.copy(e.normalScale),this.displacementMap=e.displacementMap,this.displacementScale=e.displacementScale,this.displacementBias=e.displacementBias,this.specularMap=e.specularMap,this.alphaMap=e.alphaMap,this.envMap=e.envMap,this.envMapRotation.copy(e.envMapRotation),this.combine=e.combine,this.reflectivity=e.reflectivity,this.refractionRatio=e.refractionRatio,this.wireframe=e.wireframe,this.wireframeLinewidth=e.wireframeLinewidth,this.wireframeLinecap=e.wireframeLinecap,this.wireframeLinejoin=e.wireframeLinejoin,this.flatShading=e.flatShading,this.fog=e.fog,this}}class Pz extends ua{constructor(e){super(),this.isMeshDepthMaterial=!0,this.type="MeshDepthMaterial",this.depthPacking=WF,this.map=null,this.alphaMap=null,this.displacementMap=null,this.displacementScale=1,this.displacementBias=0,this.wireframe=!1,this.wireframeLinewidth=1,this.setValues(e)}copy(e){return super.copy(e),this.depthPacking=e.depthPacking,this.map=e.map,this.alphaMap=e.alphaMap,this.displacementMap=e.displacementMap,this.displacementScale=e.displacementScale,this.displacementBias=e.displacementBias,this.wireframe=e.wireframe,this.wireframeLinewidth=e.wireframeLinewidth,this}}class Lz extends ua{constructor(e){super(),this.isMeshDistanceMaterial=!0,this.type="MeshDistanceMaterial",this.map=null,this.alphaMap=null,this.displacementMap=null,this.displacementScale=1,this.displacementBias=0,this.setValues(e)}copy(e){return super.copy(e),this.map=e.map,this.alphaMap=e.alphaMap,this.displacementMap=e.displacementMap,this.displacementScale=e.displacementScale,this.displacementBias=e.displacementBias,this}}class Uz extends ua{constructor(e){super(),this.isMeshMatcapMaterial=!0,this.defines={MATCAP:""},this.type="MeshMatcapMaterial",this.color=new an(16777215),this.matcap=null,this.map=null,this.bumpMap=null,this.bumpScale=1,this.normalMap=null,this.normalMapType=Dc,this.normalScale=new dt(1,1),this.displacementMap=null,this.displacementScale=1,this.displacementBias=0,this.alphaMap=null,this.flatShading=!1,this.fog=!0,this.setValues(e)}copy(e){return super.copy(e),this.defines={MATCAP:""},this.color.copy(e.color),this.matcap=e.matcap,this.map=e.map,this.bumpMap=e.bumpMap,this.bumpScale=e.bumpScale,this.normalMap=e.normalMap,this.normalMapType=e.normalMapType,this.normalScale.copy(e.normalScale),this.displacementMap=e.displacementMap,this.displacementScale=e.displacementScale,this.displacementBias=e.displacementBias,this.alphaMap=e.alphaMap,this.flatShading=e.flatShading,this.fog=e.fog,this}}class Bz extends $0{constructor(e){super(),this.isLineDashedMaterial=!0,this.type="LineDashedMaterial",this.scale=1,this.dashSize=3,this.gapSize=1,this.setValues(e)}copy(e){return super.copy(e),this.scale=e.scale,this.dashSize=e.dashSize,this.gapSize=e.gapSize,this}}const b5={enabled:!1,files:{},add:function(i,e){this.enabled!==!1&&(this.files[i]=e)},get:function(i){if(this.enabled!==!1)return this.files[i]},remove:function(i){delete this.files[i]},clear:function(){this.files={}}};class Oz{constructor(e,t,n){const r=this;let s=!1,a=0,l=0,u;const h=[];this.onStart=void 0,this.onLoad=e,this.onProgress=t,this.onError=n,this.itemStart=function(m){l++,s===!1&&r.onStart!==void 0&&r.onStart(m,a,l),s=!0},this.itemEnd=function(m){a++,r.onProgress!==void 0&&r.onProgress(m,a,l),a===l&&(s=!1,r.onLoad!==void 0&&r.onLoad())},this.itemError=function(m){r.onError!==void 0&&r.onError(m)},this.resolveURL=function(m){return u?u(m):m},this.setURLModifier=function(m){return u=m,this},this.addHandler=function(m,v){return h.push(m,v),this},this.removeHandler=function(m){const v=h.indexOf(m);return v!==-1&&h.splice(v,2),this},this.getHandler=function(m){for(let v=0,x=h.length;vNumber.EPSILON){if(V<0&&(z=B[q],F=-F,j=B[G],V=-V),E.yj.y)continue;if(E.y===z.y){if(E.x===z.x)return!0}else{const Y=V*(E.x-z.x)-F*(E.y-z.y);if(Y===0)return!0;if(Y<0)continue;O=!O}}else{if(E.y!==z.y)continue;if(j.x<=E.x&&E.x<=z.x||z.x<=E.x&&E.x<=j.x)return!0}}return O}const r=t0.isClockWise,s=this.subPaths;if(s.length===0)return[];let a,l,u;const h=[];if(s.length===1)return l=s[0],u=new Gv,u.curves=l.curves,h.push(u),h;let m=!r(s[0].getPoints());m=e?!m:m;const v=[],x=[];let S=[],w=0,R;x[w]=void 0,S[w]=[];for(let E=0,B=s.length;E1){let E=!1,B=0;for(let L=0,O=x.length;L0&&E===!1&&(S=v)}let C;for(let E=0,B=x.length;ES.start-w.start);let x=0;for(let S=1;S 0 + vec4 plane; + #ifdef ALPHA_TO_COVERAGE + float distanceToPlane, distanceGradient; + float clipOpacity = 1.0; + #pragma unroll_loop_start + for ( int i = 0; i < UNION_CLIPPING_PLANES; i ++ ) { + plane = clippingPlanes[ i ]; + distanceToPlane = - dot( vClipPosition, plane.xyz ) + plane.w; + distanceGradient = fwidth( distanceToPlane ) / 2.0; + clipOpacity *= smoothstep( - distanceGradient, distanceGradient, distanceToPlane ); + if ( clipOpacity == 0.0 ) discard; + } + #pragma unroll_loop_end + #if UNION_CLIPPING_PLANES < NUM_CLIPPING_PLANES + float unionClipOpacity = 1.0; + #pragma unroll_loop_start + for ( int i = UNION_CLIPPING_PLANES; i < NUM_CLIPPING_PLANES; i ++ ) { + plane = clippingPlanes[ i ]; + distanceToPlane = - dot( vClipPosition, plane.xyz ) + plane.w; + distanceGradient = fwidth( distanceToPlane ) / 2.0; + unionClipOpacity *= 1.0 - smoothstep( - distanceGradient, distanceGradient, distanceToPlane ); + } + #pragma unroll_loop_end + clipOpacity *= 1.0 - unionClipOpacity; + #endif + diffuseColor.a *= clipOpacity; + if ( diffuseColor.a == 0.0 ) discard; + #else + #pragma unroll_loop_start + for ( int i = 0; i < UNION_CLIPPING_PLANES; i ++ ) { + plane = clippingPlanes[ i ]; + if ( dot( vClipPosition, plane.xyz ) > plane.w ) discard; + } + #pragma unroll_loop_end + #if UNION_CLIPPING_PLANES < NUM_CLIPPING_PLANES + bool clipped = true; + #pragma unroll_loop_start + for ( int i = UNION_CLIPPING_PLANES; i < NUM_CLIPPING_PLANES; i ++ ) { + plane = clippingPlanes[ i ]; + clipped = ( dot( vClipPosition, plane.xyz ) > plane.w ) && clipped; + } + #pragma unroll_loop_end + if ( clipped ) discard; + #endif + #endif +#endif`,mG=`#if NUM_CLIPPING_PLANES > 0 + varying vec3 vClipPosition; + uniform vec4 clippingPlanes[ NUM_CLIPPING_PLANES ]; +#endif`,gG=`#if NUM_CLIPPING_PLANES > 0 + varying vec3 vClipPosition; +#endif`,vG=`#if NUM_CLIPPING_PLANES > 0 + vClipPosition = - mvPosition.xyz; +#endif`,_G=`#if defined( USE_COLOR_ALPHA ) + diffuseColor *= vColor; +#elif defined( USE_COLOR ) + diffuseColor.rgb *= vColor; +#endif`,yG=`#if defined( USE_COLOR_ALPHA ) + varying vec4 vColor; +#elif defined( USE_COLOR ) + varying vec3 vColor; +#endif`,xG=`#if defined( USE_COLOR_ALPHA ) + varying vec4 vColor; +#elif defined( USE_COLOR ) || defined( USE_INSTANCING_COLOR ) || defined( USE_BATCHING_COLOR ) + varying vec3 vColor; +#endif`,bG=`#if defined( USE_COLOR_ALPHA ) + vColor = vec4( 1.0 ); +#elif defined( USE_COLOR ) || defined( USE_INSTANCING_COLOR ) || defined( USE_BATCHING_COLOR ) + vColor = vec3( 1.0 ); +#endif +#ifdef USE_COLOR + vColor *= color; +#endif +#ifdef USE_INSTANCING_COLOR + vColor.xyz *= instanceColor.xyz; +#endif +#ifdef USE_BATCHING_COLOR + vec3 batchingColor = getBatchingColor( getIndirectIndex( gl_DrawID ) ); + vColor.xyz *= batchingColor.xyz; +#endif`,SG=`#define PI 3.141592653589793 +#define PI2 6.283185307179586 +#define PI_HALF 1.5707963267948966 +#define RECIPROCAL_PI 0.3183098861837907 +#define RECIPROCAL_PI2 0.15915494309189535 +#define EPSILON 1e-6 +#ifndef saturate +#define saturate( a ) clamp( a, 0.0, 1.0 ) +#endif +#define whiteComplement( a ) ( 1.0 - saturate( a ) ) +float pow2( const in float x ) { return x*x; } +vec3 pow2( const in vec3 x ) { return x*x; } +float pow3( const in float x ) { return x*x*x; } +float pow4( const in float x ) { float x2 = x*x; return x2*x2; } +float max3( const in vec3 v ) { return max( max( v.x, v.y ), v.z ); } +float average( const in vec3 v ) { return dot( v, vec3( 0.3333333 ) ); } +highp float rand( const in vec2 uv ) { + const highp float a = 12.9898, b = 78.233, c = 43758.5453; + highp float dt = dot( uv.xy, vec2( a,b ) ), sn = mod( dt, PI ); + return fract( sin( sn ) * c ); +} +#ifdef HIGH_PRECISION + float precisionSafeLength( vec3 v ) { return length( v ); } +#else + float precisionSafeLength( vec3 v ) { + float maxComponent = max3( abs( v ) ); + return length( v / maxComponent ) * maxComponent; + } +#endif +struct IncidentLight { + vec3 color; + vec3 direction; + bool visible; +}; +struct ReflectedLight { + vec3 directDiffuse; + vec3 directSpecular; + vec3 indirectDiffuse; + vec3 indirectSpecular; +}; +#ifdef USE_ALPHAHASH + varying vec3 vPosition; +#endif +vec3 transformDirection( in vec3 dir, in mat4 matrix ) { + return normalize( ( matrix * vec4( dir, 0.0 ) ).xyz ); +} +vec3 inverseTransformDirection( in vec3 dir, in mat4 matrix ) { + return normalize( ( vec4( dir, 0.0 ) * matrix ).xyz ); +} +mat3 transposeMat3( const in mat3 m ) { + mat3 tmp; + tmp[ 0 ] = vec3( m[ 0 ].x, m[ 1 ].x, m[ 2 ].x ); + tmp[ 1 ] = vec3( m[ 0 ].y, m[ 1 ].y, m[ 2 ].y ); + tmp[ 2 ] = vec3( m[ 0 ].z, m[ 1 ].z, m[ 2 ].z ); + return tmp; +} +bool isPerspectiveMatrix( mat4 m ) { + return m[ 2 ][ 3 ] == - 1.0; +} +vec2 equirectUv( in vec3 dir ) { + float u = atan( dir.z, dir.x ) * RECIPROCAL_PI2 + 0.5; + float v = asin( clamp( dir.y, - 1.0, 1.0 ) ) * RECIPROCAL_PI + 0.5; + return vec2( u, v ); +} +vec3 BRDF_Lambert( const in vec3 diffuseColor ) { + return RECIPROCAL_PI * diffuseColor; +} +vec3 F_Schlick( const in vec3 f0, const in float f90, const in float dotVH ) { + float fresnel = exp2( ( - 5.55473 * dotVH - 6.98316 ) * dotVH ); + return f0 * ( 1.0 - fresnel ) + ( f90 * fresnel ); +} +float F_Schlick( const in float f0, const in float f90, const in float dotVH ) { + float fresnel = exp2( ( - 5.55473 * dotVH - 6.98316 ) * dotVH ); + return f0 * ( 1.0 - fresnel ) + ( f90 * fresnel ); +} // validated`,TG=`#ifdef ENVMAP_TYPE_CUBE_UV + #define cubeUV_minMipLevel 4.0 + #define cubeUV_minTileSize 16.0 + float getFace( vec3 direction ) { + vec3 absDirection = abs( direction ); + float face = - 1.0; + if ( absDirection.x > absDirection.z ) { + if ( absDirection.x > absDirection.y ) + face = direction.x > 0.0 ? 0.0 : 3.0; + else + face = direction.y > 0.0 ? 1.0 : 4.0; + } else { + if ( absDirection.z > absDirection.y ) + face = direction.z > 0.0 ? 2.0 : 5.0; + else + face = direction.y > 0.0 ? 1.0 : 4.0; + } + return face; + } + vec2 getUV( vec3 direction, float face ) { + vec2 uv; + if ( face == 0.0 ) { + uv = vec2( direction.z, direction.y ) / abs( direction.x ); + } else if ( face == 1.0 ) { + uv = vec2( - direction.x, - direction.z ) / abs( direction.y ); + } else if ( face == 2.0 ) { + uv = vec2( - direction.x, direction.y ) / abs( direction.z ); + } else if ( face == 3.0 ) { + uv = vec2( - direction.z, direction.y ) / abs( direction.x ); + } else if ( face == 4.0 ) { + uv = vec2( - direction.x, direction.z ) / abs( direction.y ); + } else { + uv = vec2( direction.x, direction.y ) / abs( direction.z ); + } + return 0.5 * ( uv + 1.0 ); + } + vec3 bilinearCubeUV( sampler2D envMap, vec3 direction, float mipInt ) { + float face = getFace( direction ); + float filterInt = max( cubeUV_minMipLevel - mipInt, 0.0 ); + mipInt = max( mipInt, cubeUV_minMipLevel ); + float faceSize = exp2( mipInt ); + highp vec2 uv = getUV( direction, face ) * ( faceSize - 2.0 ) + 1.0; + if ( face > 2.0 ) { + uv.y += faceSize; + face -= 3.0; + } + uv.x += face * faceSize; + uv.x += filterInt * 3.0 * cubeUV_minTileSize; + uv.y += 4.0 * ( exp2( CUBEUV_MAX_MIP ) - faceSize ); + uv.x *= CUBEUV_TEXEL_WIDTH; + uv.y *= CUBEUV_TEXEL_HEIGHT; + #ifdef texture2DGradEXT + return texture2DGradEXT( envMap, uv, vec2( 0.0 ), vec2( 0.0 ) ).rgb; + #else + return texture2D( envMap, uv ).rgb; + #endif + } + #define cubeUV_r0 1.0 + #define cubeUV_m0 - 2.0 + #define cubeUV_r1 0.8 + #define cubeUV_m1 - 1.0 + #define cubeUV_r4 0.4 + #define cubeUV_m4 2.0 + #define cubeUV_r5 0.305 + #define cubeUV_m5 3.0 + #define cubeUV_r6 0.21 + #define cubeUV_m6 4.0 + float roughnessToMip( float roughness ) { + float mip = 0.0; + if ( roughness >= cubeUV_r1 ) { + mip = ( cubeUV_r0 - roughness ) * ( cubeUV_m1 - cubeUV_m0 ) / ( cubeUV_r0 - cubeUV_r1 ) + cubeUV_m0; + } else if ( roughness >= cubeUV_r4 ) { + mip = ( cubeUV_r1 - roughness ) * ( cubeUV_m4 - cubeUV_m1 ) / ( cubeUV_r1 - cubeUV_r4 ) + cubeUV_m1; + } else if ( roughness >= cubeUV_r5 ) { + mip = ( cubeUV_r4 - roughness ) * ( cubeUV_m5 - cubeUV_m4 ) / ( cubeUV_r4 - cubeUV_r5 ) + cubeUV_m4; + } else if ( roughness >= cubeUV_r6 ) { + mip = ( cubeUV_r5 - roughness ) * ( cubeUV_m6 - cubeUV_m5 ) / ( cubeUV_r5 - cubeUV_r6 ) + cubeUV_m5; + } else { + mip = - 2.0 * log2( 1.16 * roughness ); } + return mip; + } + vec4 textureCubeUV( sampler2D envMap, vec3 sampleDir, float roughness ) { + float mip = clamp( roughnessToMip( roughness ), cubeUV_m0, CUBEUV_MAX_MIP ); + float mipF = fract( mip ); + float mipInt = floor( mip ); + vec3 color0 = bilinearCubeUV( envMap, sampleDir, mipInt ); + if ( mipF == 0.0 ) { + return vec4( color0, 1.0 ); + } else { + vec3 color1 = bilinearCubeUV( envMap, sampleDir, mipInt + 1.0 ); + return vec4( mix( color0, color1, mipF ), 1.0 ); + } + } +#endif`,wG=`vec3 transformedNormal = objectNormal; +#ifdef USE_TANGENT + vec3 transformedTangent = objectTangent; +#endif +#ifdef USE_BATCHING + mat3 bm = mat3( batchingMatrix ); + transformedNormal /= vec3( dot( bm[ 0 ], bm[ 0 ] ), dot( bm[ 1 ], bm[ 1 ] ), dot( bm[ 2 ], bm[ 2 ] ) ); + transformedNormal = bm * transformedNormal; + #ifdef USE_TANGENT + transformedTangent = bm * transformedTangent; + #endif +#endif +#ifdef USE_INSTANCING + mat3 im = mat3( instanceMatrix ); + transformedNormal /= vec3( dot( im[ 0 ], im[ 0 ] ), dot( im[ 1 ], im[ 1 ] ), dot( im[ 2 ], im[ 2 ] ) ); + transformedNormal = im * transformedNormal; + #ifdef USE_TANGENT + transformedTangent = im * transformedTangent; + #endif +#endif +transformedNormal = normalMatrix * transformedNormal; +#ifdef FLIP_SIDED + transformedNormal = - transformedNormal; +#endif +#ifdef USE_TANGENT + transformedTangent = ( modelViewMatrix * vec4( transformedTangent, 0.0 ) ).xyz; + #ifdef FLIP_SIDED + transformedTangent = - transformedTangent; + #endif +#endif`,MG=`#ifdef USE_DISPLACEMENTMAP + uniform sampler2D displacementMap; + uniform float displacementScale; + uniform float displacementBias; +#endif`,EG=`#ifdef USE_DISPLACEMENTMAP + transformed += normalize( objectNormal ) * ( texture2D( displacementMap, vDisplacementMapUv ).x * displacementScale + displacementBias ); +#endif`,CG=`#ifdef USE_EMISSIVEMAP + vec4 emissiveColor = texture2D( emissiveMap, vEmissiveMapUv ); + #ifdef DECODE_VIDEO_TEXTURE_EMISSIVE + emissiveColor = sRGBTransferEOTF( emissiveColor ); + #endif + totalEmissiveRadiance *= emissiveColor.rgb; +#endif`,RG=`#ifdef USE_EMISSIVEMAP + uniform sampler2D emissiveMap; +#endif`,NG="gl_FragColor = linearToOutputTexel( gl_FragColor );",DG=`vec4 LinearTransferOETF( in vec4 value ) { + return value; +} +vec4 sRGBTransferEOTF( in vec4 value ) { + return vec4( mix( pow( value.rgb * 0.9478672986 + vec3( 0.0521327014 ), vec3( 2.4 ) ), value.rgb * 0.0773993808, vec3( lessThanEqual( value.rgb, vec3( 0.04045 ) ) ) ), value.a ); +} +vec4 sRGBTransferOETF( in vec4 value ) { + return vec4( mix( pow( value.rgb, vec3( 0.41666 ) ) * 1.055 - vec3( 0.055 ), value.rgb * 12.92, vec3( lessThanEqual( value.rgb, vec3( 0.0031308 ) ) ) ), value.a ); +}`,PG=`#ifdef USE_ENVMAP + #ifdef ENV_WORLDPOS + vec3 cameraToFrag; + if ( isOrthographic ) { + cameraToFrag = normalize( vec3( - viewMatrix[ 0 ][ 2 ], - viewMatrix[ 1 ][ 2 ], - viewMatrix[ 2 ][ 2 ] ) ); + } else { + cameraToFrag = normalize( vWorldPosition - cameraPosition ); + } + vec3 worldNormal = inverseTransformDirection( normal, viewMatrix ); + #ifdef ENVMAP_MODE_REFLECTION + vec3 reflectVec = reflect( cameraToFrag, worldNormal ); + #else + vec3 reflectVec = refract( cameraToFrag, worldNormal, refractionRatio ); + #endif + #else + vec3 reflectVec = vReflect; + #endif + #ifdef ENVMAP_TYPE_CUBE + vec4 envColor = textureCube( envMap, envMapRotation * vec3( flipEnvMap * reflectVec.x, reflectVec.yz ) ); + #else + vec4 envColor = vec4( 0.0 ); + #endif + #ifdef ENVMAP_BLENDING_MULTIPLY + outgoingLight = mix( outgoingLight, outgoingLight * envColor.xyz, specularStrength * reflectivity ); + #elif defined( ENVMAP_BLENDING_MIX ) + outgoingLight = mix( outgoingLight, envColor.xyz, specularStrength * reflectivity ); + #elif defined( ENVMAP_BLENDING_ADD ) + outgoingLight += envColor.xyz * specularStrength * reflectivity; + #endif +#endif`,LG=`#ifdef USE_ENVMAP + uniform float envMapIntensity; + uniform float flipEnvMap; + uniform mat3 envMapRotation; + #ifdef ENVMAP_TYPE_CUBE + uniform samplerCube envMap; + #else + uniform sampler2D envMap; + #endif + +#endif`,UG=`#ifdef USE_ENVMAP + uniform float reflectivity; + #if defined( USE_BUMPMAP ) || defined( USE_NORMALMAP ) || defined( PHONG ) || defined( LAMBERT ) + #define ENV_WORLDPOS + #endif + #ifdef ENV_WORLDPOS + varying vec3 vWorldPosition; + uniform float refractionRatio; + #else + varying vec3 vReflect; + #endif +#endif`,BG=`#ifdef USE_ENVMAP + #if defined( USE_BUMPMAP ) || defined( USE_NORMALMAP ) || defined( PHONG ) || defined( LAMBERT ) + #define ENV_WORLDPOS + #endif + #ifdef ENV_WORLDPOS + + varying vec3 vWorldPosition; + #else + varying vec3 vReflect; + uniform float refractionRatio; + #endif +#endif`,OG=`#ifdef USE_ENVMAP + #ifdef ENV_WORLDPOS + vWorldPosition = worldPosition.xyz; + #else + vec3 cameraToVertex; + if ( isOrthographic ) { + cameraToVertex = normalize( vec3( - viewMatrix[ 0 ][ 2 ], - viewMatrix[ 1 ][ 2 ], - viewMatrix[ 2 ][ 2 ] ) ); + } else { + cameraToVertex = normalize( worldPosition.xyz - cameraPosition ); + } + vec3 worldNormal = inverseTransformDirection( transformedNormal, viewMatrix ); + #ifdef ENVMAP_MODE_REFLECTION + vReflect = reflect( cameraToVertex, worldNormal ); + #else + vReflect = refract( cameraToVertex, worldNormal, refractionRatio ); + #endif + #endif +#endif`,IG=`#ifdef USE_FOG + vFogDepth = - mvPosition.z; +#endif`,FG=`#ifdef USE_FOG + varying float vFogDepth; +#endif`,kG=`#ifdef USE_FOG + #ifdef FOG_EXP2 + float fogFactor = 1.0 - exp( - fogDensity * fogDensity * vFogDepth * vFogDepth ); + #else + float fogFactor = smoothstep( fogNear, fogFar, vFogDepth ); + #endif + gl_FragColor.rgb = mix( gl_FragColor.rgb, fogColor, fogFactor ); +#endif`,zG=`#ifdef USE_FOG + uniform vec3 fogColor; + varying float vFogDepth; + #ifdef FOG_EXP2 + uniform float fogDensity; + #else + uniform float fogNear; + uniform float fogFar; + #endif +#endif`,GG=`#ifdef USE_GRADIENTMAP + uniform sampler2D gradientMap; +#endif +vec3 getGradientIrradiance( vec3 normal, vec3 lightDirection ) { + float dotNL = dot( normal, lightDirection ); + vec2 coord = vec2( dotNL * 0.5 + 0.5, 0.0 ); + #ifdef USE_GRADIENTMAP + return vec3( texture2D( gradientMap, coord ).r ); + #else + vec2 fw = fwidth( coord ) * 0.5; + return mix( vec3( 0.7 ), vec3( 1.0 ), smoothstep( 0.7 - fw.x, 0.7 + fw.x, coord.x ) ); + #endif +}`,qG=`#ifdef USE_LIGHTMAP + uniform sampler2D lightMap; + uniform float lightMapIntensity; +#endif`,VG=`LambertMaterial material; +material.diffuseColor = diffuseColor.rgb; +material.specularStrength = specularStrength;`,HG=`varying vec3 vViewPosition; +struct LambertMaterial { + vec3 diffuseColor; + float specularStrength; +}; +void RE_Direct_Lambert( const in IncidentLight directLight, const in vec3 geometryPosition, const in vec3 geometryNormal, const in vec3 geometryViewDir, const in vec3 geometryClearcoatNormal, const in LambertMaterial material, inout ReflectedLight reflectedLight ) { + float dotNL = saturate( dot( geometryNormal, directLight.direction ) ); + vec3 irradiance = dotNL * directLight.color; + reflectedLight.directDiffuse += irradiance * BRDF_Lambert( material.diffuseColor ); +} +void RE_IndirectDiffuse_Lambert( const in vec3 irradiance, const in vec3 geometryPosition, const in vec3 geometryNormal, const in vec3 geometryViewDir, const in vec3 geometryClearcoatNormal, const in LambertMaterial material, inout ReflectedLight reflectedLight ) { + reflectedLight.indirectDiffuse += irradiance * BRDF_Lambert( material.diffuseColor ); +} +#define RE_Direct RE_Direct_Lambert +#define RE_IndirectDiffuse RE_IndirectDiffuse_Lambert`,jG=`uniform bool receiveShadow; +uniform vec3 ambientLightColor; +#if defined( USE_LIGHT_PROBES ) + uniform vec3 lightProbe[ 9 ]; +#endif +vec3 shGetIrradianceAt( in vec3 normal, in vec3 shCoefficients[ 9 ] ) { + float x = normal.x, y = normal.y, z = normal.z; + vec3 result = shCoefficients[ 0 ] * 0.886227; + result += shCoefficients[ 1 ] * 2.0 * 0.511664 * y; + result += shCoefficients[ 2 ] * 2.0 * 0.511664 * z; + result += shCoefficients[ 3 ] * 2.0 * 0.511664 * x; + result += shCoefficients[ 4 ] * 2.0 * 0.429043 * x * y; + result += shCoefficients[ 5 ] * 2.0 * 0.429043 * y * z; + result += shCoefficients[ 6 ] * ( 0.743125 * z * z - 0.247708 ); + result += shCoefficients[ 7 ] * 2.0 * 0.429043 * x * z; + result += shCoefficients[ 8 ] * 0.429043 * ( x * x - y * y ); + return result; +} +vec3 getLightProbeIrradiance( const in vec3 lightProbe[ 9 ], const in vec3 normal ) { + vec3 worldNormal = inverseTransformDirection( normal, viewMatrix ); + vec3 irradiance = shGetIrradianceAt( worldNormal, lightProbe ); + return irradiance; +} +vec3 getAmbientLightIrradiance( const in vec3 ambientLightColor ) { + vec3 irradiance = ambientLightColor; + return irradiance; +} +float getDistanceAttenuation( const in float lightDistance, const in float cutoffDistance, const in float decayExponent ) { + float distanceFalloff = 1.0 / max( pow( lightDistance, decayExponent ), 0.01 ); + if ( cutoffDistance > 0.0 ) { + distanceFalloff *= pow2( saturate( 1.0 - pow4( lightDistance / cutoffDistance ) ) ); + } + return distanceFalloff; +} +float getSpotAttenuation( const in float coneCosine, const in float penumbraCosine, const in float angleCosine ) { + return smoothstep( coneCosine, penumbraCosine, angleCosine ); +} +#if NUM_DIR_LIGHTS > 0 + struct DirectionalLight { + vec3 direction; + vec3 color; + }; + uniform DirectionalLight directionalLights[ NUM_DIR_LIGHTS ]; + void getDirectionalLightInfo( const in DirectionalLight directionalLight, out IncidentLight light ) { + light.color = directionalLight.color; + light.direction = directionalLight.direction; + light.visible = true; + } +#endif +#if NUM_POINT_LIGHTS > 0 + struct PointLight { + vec3 position; + vec3 color; + float distance; + float decay; + }; + uniform PointLight pointLights[ NUM_POINT_LIGHTS ]; + void getPointLightInfo( const in PointLight pointLight, const in vec3 geometryPosition, out IncidentLight light ) { + vec3 lVector = pointLight.position - geometryPosition; + light.direction = normalize( lVector ); + float lightDistance = length( lVector ); + light.color = pointLight.color; + light.color *= getDistanceAttenuation( lightDistance, pointLight.distance, pointLight.decay ); + light.visible = ( light.color != vec3( 0.0 ) ); + } +#endif +#if NUM_SPOT_LIGHTS > 0 + struct SpotLight { + vec3 position; + vec3 direction; + vec3 color; + float distance; + float decay; + float coneCos; + float penumbraCos; + }; + uniform SpotLight spotLights[ NUM_SPOT_LIGHTS ]; + void getSpotLightInfo( const in SpotLight spotLight, const in vec3 geometryPosition, out IncidentLight light ) { + vec3 lVector = spotLight.position - geometryPosition; + light.direction = normalize( lVector ); + float angleCos = dot( light.direction, spotLight.direction ); + float spotAttenuation = getSpotAttenuation( spotLight.coneCos, spotLight.penumbraCos, angleCos ); + if ( spotAttenuation > 0.0 ) { + float lightDistance = length( lVector ); + light.color = spotLight.color * spotAttenuation; + light.color *= getDistanceAttenuation( lightDistance, spotLight.distance, spotLight.decay ); + light.visible = ( light.color != vec3( 0.0 ) ); + } else { + light.color = vec3( 0.0 ); + light.visible = false; + } + } +#endif +#if NUM_RECT_AREA_LIGHTS > 0 + struct RectAreaLight { + vec3 color; + vec3 position; + vec3 halfWidth; + vec3 halfHeight; + }; + uniform sampler2D ltc_1; uniform sampler2D ltc_2; + uniform RectAreaLight rectAreaLights[ NUM_RECT_AREA_LIGHTS ]; +#endif +#if NUM_HEMI_LIGHTS > 0 + struct HemisphereLight { + vec3 direction; + vec3 skyColor; + vec3 groundColor; + }; + uniform HemisphereLight hemisphereLights[ NUM_HEMI_LIGHTS ]; + vec3 getHemisphereLightIrradiance( const in HemisphereLight hemiLight, const in vec3 normal ) { + float dotNL = dot( normal, hemiLight.direction ); + float hemiDiffuseWeight = 0.5 * dotNL + 0.5; + vec3 irradiance = mix( hemiLight.groundColor, hemiLight.skyColor, hemiDiffuseWeight ); + return irradiance; + } +#endif`,WG=`#ifdef USE_ENVMAP + vec3 getIBLIrradiance( const in vec3 normal ) { + #ifdef ENVMAP_TYPE_CUBE_UV + vec3 worldNormal = inverseTransformDirection( normal, viewMatrix ); + vec4 envMapColor = textureCubeUV( envMap, envMapRotation * worldNormal, 1.0 ); + return PI * envMapColor.rgb * envMapIntensity; + #else + return vec3( 0.0 ); + #endif + } + vec3 getIBLRadiance( const in vec3 viewDir, const in vec3 normal, const in float roughness ) { + #ifdef ENVMAP_TYPE_CUBE_UV + vec3 reflectVec = reflect( - viewDir, normal ); + reflectVec = normalize( mix( reflectVec, normal, roughness * roughness) ); + reflectVec = inverseTransformDirection( reflectVec, viewMatrix ); + vec4 envMapColor = textureCubeUV( envMap, envMapRotation * reflectVec, roughness ); + return envMapColor.rgb * envMapIntensity; + #else + return vec3( 0.0 ); + #endif + } + #ifdef USE_ANISOTROPY + vec3 getIBLAnisotropyRadiance( const in vec3 viewDir, const in vec3 normal, const in float roughness, const in vec3 bitangent, const in float anisotropy ) { + #ifdef ENVMAP_TYPE_CUBE_UV + vec3 bentNormal = cross( bitangent, viewDir ); + bentNormal = normalize( cross( bentNormal, bitangent ) ); + bentNormal = normalize( mix( bentNormal, normal, pow2( pow2( 1.0 - anisotropy * ( 1.0 - roughness ) ) ) ) ); + return getIBLRadiance( viewDir, bentNormal, roughness ); + #else + return vec3( 0.0 ); + #endif + } + #endif +#endif`,$G=`ToonMaterial material; +material.diffuseColor = diffuseColor.rgb;`,XG=`varying vec3 vViewPosition; +struct ToonMaterial { + vec3 diffuseColor; +}; +void RE_Direct_Toon( const in IncidentLight directLight, const in vec3 geometryPosition, const in vec3 geometryNormal, const in vec3 geometryViewDir, const in vec3 geometryClearcoatNormal, const in ToonMaterial material, inout ReflectedLight reflectedLight ) { + vec3 irradiance = getGradientIrradiance( geometryNormal, directLight.direction ) * directLight.color; + reflectedLight.directDiffuse += irradiance * BRDF_Lambert( material.diffuseColor ); +} +void RE_IndirectDiffuse_Toon( const in vec3 irradiance, const in vec3 geometryPosition, const in vec3 geometryNormal, const in vec3 geometryViewDir, const in vec3 geometryClearcoatNormal, const in ToonMaterial material, inout ReflectedLight reflectedLight ) { + reflectedLight.indirectDiffuse += irradiance * BRDF_Lambert( material.diffuseColor ); +} +#define RE_Direct RE_Direct_Toon +#define RE_IndirectDiffuse RE_IndirectDiffuse_Toon`,YG=`BlinnPhongMaterial material; +material.diffuseColor = diffuseColor.rgb; +material.specularColor = specular; +material.specularShininess = shininess; +material.specularStrength = specularStrength;`,QG=`varying vec3 vViewPosition; +struct BlinnPhongMaterial { + vec3 diffuseColor; + vec3 specularColor; + float specularShininess; + float specularStrength; +}; +void RE_Direct_BlinnPhong( const in IncidentLight directLight, const in vec3 geometryPosition, const in vec3 geometryNormal, const in vec3 geometryViewDir, const in vec3 geometryClearcoatNormal, const in BlinnPhongMaterial material, inout ReflectedLight reflectedLight ) { + float dotNL = saturate( dot( geometryNormal, directLight.direction ) ); + vec3 irradiance = dotNL * directLight.color; + reflectedLight.directDiffuse += irradiance * BRDF_Lambert( material.diffuseColor ); + reflectedLight.directSpecular += irradiance * BRDF_BlinnPhong( directLight.direction, geometryViewDir, geometryNormal, material.specularColor, material.specularShininess ) * material.specularStrength; +} +void RE_IndirectDiffuse_BlinnPhong( const in vec3 irradiance, const in vec3 geometryPosition, const in vec3 geometryNormal, const in vec3 geometryViewDir, const in vec3 geometryClearcoatNormal, const in BlinnPhongMaterial material, inout ReflectedLight reflectedLight ) { + reflectedLight.indirectDiffuse += irradiance * BRDF_Lambert( material.diffuseColor ); +} +#define RE_Direct RE_Direct_BlinnPhong +#define RE_IndirectDiffuse RE_IndirectDiffuse_BlinnPhong`,KG=`PhysicalMaterial material; +material.diffuseColor = diffuseColor.rgb * ( 1.0 - metalnessFactor ); +vec3 dxy = max( abs( dFdx( nonPerturbedNormal ) ), abs( dFdy( nonPerturbedNormal ) ) ); +float geometryRoughness = max( max( dxy.x, dxy.y ), dxy.z ); +material.roughness = max( roughnessFactor, 0.0525 );material.roughness += geometryRoughness; +material.roughness = min( material.roughness, 1.0 ); +#ifdef IOR + material.ior = ior; + #ifdef USE_SPECULAR + float specularIntensityFactor = specularIntensity; + vec3 specularColorFactor = specularColor; + #ifdef USE_SPECULAR_COLORMAP + specularColorFactor *= texture2D( specularColorMap, vSpecularColorMapUv ).rgb; + #endif + #ifdef USE_SPECULAR_INTENSITYMAP + specularIntensityFactor *= texture2D( specularIntensityMap, vSpecularIntensityMapUv ).a; + #endif + material.specularF90 = mix( specularIntensityFactor, 1.0, metalnessFactor ); + #else + float specularIntensityFactor = 1.0; + vec3 specularColorFactor = vec3( 1.0 ); + material.specularF90 = 1.0; + #endif + material.specularColor = mix( min( pow2( ( material.ior - 1.0 ) / ( material.ior + 1.0 ) ) * specularColorFactor, vec3( 1.0 ) ) * specularIntensityFactor, diffuseColor.rgb, metalnessFactor ); +#else + material.specularColor = mix( vec3( 0.04 ), diffuseColor.rgb, metalnessFactor ); + material.specularF90 = 1.0; +#endif +#ifdef USE_CLEARCOAT + material.clearcoat = clearcoat; + material.clearcoatRoughness = clearcoatRoughness; + material.clearcoatF0 = vec3( 0.04 ); + material.clearcoatF90 = 1.0; + #ifdef USE_CLEARCOATMAP + material.clearcoat *= texture2D( clearcoatMap, vClearcoatMapUv ).x; + #endif + #ifdef USE_CLEARCOAT_ROUGHNESSMAP + material.clearcoatRoughness *= texture2D( clearcoatRoughnessMap, vClearcoatRoughnessMapUv ).y; + #endif + material.clearcoat = saturate( material.clearcoat ); material.clearcoatRoughness = max( material.clearcoatRoughness, 0.0525 ); + material.clearcoatRoughness += geometryRoughness; + material.clearcoatRoughness = min( material.clearcoatRoughness, 1.0 ); +#endif +#ifdef USE_DISPERSION + material.dispersion = dispersion; +#endif +#ifdef USE_IRIDESCENCE + material.iridescence = iridescence; + material.iridescenceIOR = iridescenceIOR; + #ifdef USE_IRIDESCENCEMAP + material.iridescence *= texture2D( iridescenceMap, vIridescenceMapUv ).r; + #endif + #ifdef USE_IRIDESCENCE_THICKNESSMAP + material.iridescenceThickness = (iridescenceThicknessMaximum - iridescenceThicknessMinimum) * texture2D( iridescenceThicknessMap, vIridescenceThicknessMapUv ).g + iridescenceThicknessMinimum; + #else + material.iridescenceThickness = iridescenceThicknessMaximum; + #endif +#endif +#ifdef USE_SHEEN + material.sheenColor = sheenColor; + #ifdef USE_SHEEN_COLORMAP + material.sheenColor *= texture2D( sheenColorMap, vSheenColorMapUv ).rgb; + #endif + material.sheenRoughness = clamp( sheenRoughness, 0.07, 1.0 ); + #ifdef USE_SHEEN_ROUGHNESSMAP + material.sheenRoughness *= texture2D( sheenRoughnessMap, vSheenRoughnessMapUv ).a; + #endif +#endif +#ifdef USE_ANISOTROPY + #ifdef USE_ANISOTROPYMAP + mat2 anisotropyMat = mat2( anisotropyVector.x, anisotropyVector.y, - anisotropyVector.y, anisotropyVector.x ); + vec3 anisotropyPolar = texture2D( anisotropyMap, vAnisotropyMapUv ).rgb; + vec2 anisotropyV = anisotropyMat * normalize( 2.0 * anisotropyPolar.rg - vec2( 1.0 ) ) * anisotropyPolar.b; + #else + vec2 anisotropyV = anisotropyVector; + #endif + material.anisotropy = length( anisotropyV ); + if( material.anisotropy == 0.0 ) { + anisotropyV = vec2( 1.0, 0.0 ); + } else { + anisotropyV /= material.anisotropy; + material.anisotropy = saturate( material.anisotropy ); + } + material.alphaT = mix( pow2( material.roughness ), 1.0, pow2( material.anisotropy ) ); + material.anisotropyT = tbn[ 0 ] * anisotropyV.x + tbn[ 1 ] * anisotropyV.y; + material.anisotropyB = tbn[ 1 ] * anisotropyV.x - tbn[ 0 ] * anisotropyV.y; +#endif`,ZG=`struct PhysicalMaterial { + vec3 diffuseColor; + float roughness; + vec3 specularColor; + float specularF90; + float dispersion; + #ifdef USE_CLEARCOAT + float clearcoat; + float clearcoatRoughness; + vec3 clearcoatF0; + float clearcoatF90; + #endif + #ifdef USE_IRIDESCENCE + float iridescence; + float iridescenceIOR; + float iridescenceThickness; + vec3 iridescenceFresnel; + vec3 iridescenceF0; + #endif + #ifdef USE_SHEEN + vec3 sheenColor; + float sheenRoughness; + #endif + #ifdef IOR + float ior; + #endif + #ifdef USE_TRANSMISSION + float transmission; + float transmissionAlpha; + float thickness; + float attenuationDistance; + vec3 attenuationColor; + #endif + #ifdef USE_ANISOTROPY + float anisotropy; + float alphaT; + vec3 anisotropyT; + vec3 anisotropyB; + #endif +}; +vec3 clearcoatSpecularDirect = vec3( 0.0 ); +vec3 clearcoatSpecularIndirect = vec3( 0.0 ); +vec3 sheenSpecularDirect = vec3( 0.0 ); +vec3 sheenSpecularIndirect = vec3(0.0 ); +vec3 Schlick_to_F0( const in vec3 f, const in float f90, const in float dotVH ) { + float x = clamp( 1.0 - dotVH, 0.0, 1.0 ); + float x2 = x * x; + float x5 = clamp( x * x2 * x2, 0.0, 0.9999 ); + return ( f - vec3( f90 ) * x5 ) / ( 1.0 - x5 ); +} +float V_GGX_SmithCorrelated( const in float alpha, const in float dotNL, const in float dotNV ) { + float a2 = pow2( alpha ); + float gv = dotNL * sqrt( a2 + ( 1.0 - a2 ) * pow2( dotNV ) ); + float gl = dotNV * sqrt( a2 + ( 1.0 - a2 ) * pow2( dotNL ) ); + return 0.5 / max( gv + gl, EPSILON ); +} +float D_GGX( const in float alpha, const in float dotNH ) { + float a2 = pow2( alpha ); + float denom = pow2( dotNH ) * ( a2 - 1.0 ) + 1.0; + return RECIPROCAL_PI * a2 / pow2( denom ); +} +#ifdef USE_ANISOTROPY + float V_GGX_SmithCorrelated_Anisotropic( const in float alphaT, const in float alphaB, const in float dotTV, const in float dotBV, const in float dotTL, const in float dotBL, const in float dotNV, const in float dotNL ) { + float gv = dotNL * length( vec3( alphaT * dotTV, alphaB * dotBV, dotNV ) ); + float gl = dotNV * length( vec3( alphaT * dotTL, alphaB * dotBL, dotNL ) ); + float v = 0.5 / ( gv + gl ); + return saturate(v); + } + float D_GGX_Anisotropic( const in float alphaT, const in float alphaB, const in float dotNH, const in float dotTH, const in float dotBH ) { + float a2 = alphaT * alphaB; + highp vec3 v = vec3( alphaB * dotTH, alphaT * dotBH, a2 * dotNH ); + highp float v2 = dot( v, v ); + float w2 = a2 / v2; + return RECIPROCAL_PI * a2 * pow2 ( w2 ); + } +#endif +#ifdef USE_CLEARCOAT + vec3 BRDF_GGX_Clearcoat( const in vec3 lightDir, const in vec3 viewDir, const in vec3 normal, const in PhysicalMaterial material) { + vec3 f0 = material.clearcoatF0; + float f90 = material.clearcoatF90; + float roughness = material.clearcoatRoughness; + float alpha = pow2( roughness ); + vec3 halfDir = normalize( lightDir + viewDir ); + float dotNL = saturate( dot( normal, lightDir ) ); + float dotNV = saturate( dot( normal, viewDir ) ); + float dotNH = saturate( dot( normal, halfDir ) ); + float dotVH = saturate( dot( viewDir, halfDir ) ); + vec3 F = F_Schlick( f0, f90, dotVH ); + float V = V_GGX_SmithCorrelated( alpha, dotNL, dotNV ); + float D = D_GGX( alpha, dotNH ); + return F * ( V * D ); + } +#endif +vec3 BRDF_GGX( const in vec3 lightDir, const in vec3 viewDir, const in vec3 normal, const in PhysicalMaterial material ) { + vec3 f0 = material.specularColor; + float f90 = material.specularF90; + float roughness = material.roughness; + float alpha = pow2( roughness ); + vec3 halfDir = normalize( lightDir + viewDir ); + float dotNL = saturate( dot( normal, lightDir ) ); + float dotNV = saturate( dot( normal, viewDir ) ); + float dotNH = saturate( dot( normal, halfDir ) ); + float dotVH = saturate( dot( viewDir, halfDir ) ); + vec3 F = F_Schlick( f0, f90, dotVH ); + #ifdef USE_IRIDESCENCE + F = mix( F, material.iridescenceFresnel, material.iridescence ); + #endif + #ifdef USE_ANISOTROPY + float dotTL = dot( material.anisotropyT, lightDir ); + float dotTV = dot( material.anisotropyT, viewDir ); + float dotTH = dot( material.anisotropyT, halfDir ); + float dotBL = dot( material.anisotropyB, lightDir ); + float dotBV = dot( material.anisotropyB, viewDir ); + float dotBH = dot( material.anisotropyB, halfDir ); + float V = V_GGX_SmithCorrelated_Anisotropic( material.alphaT, alpha, dotTV, dotBV, dotTL, dotBL, dotNV, dotNL ); + float D = D_GGX_Anisotropic( material.alphaT, alpha, dotNH, dotTH, dotBH ); + #else + float V = V_GGX_SmithCorrelated( alpha, dotNL, dotNV ); + float D = D_GGX( alpha, dotNH ); + #endif + return F * ( V * D ); +} +vec2 LTC_Uv( const in vec3 N, const in vec3 V, const in float roughness ) { + const float LUT_SIZE = 64.0; + const float LUT_SCALE = ( LUT_SIZE - 1.0 ) / LUT_SIZE; + const float LUT_BIAS = 0.5 / LUT_SIZE; + float dotNV = saturate( dot( N, V ) ); + vec2 uv = vec2( roughness, sqrt( 1.0 - dotNV ) ); + uv = uv * LUT_SCALE + LUT_BIAS; + return uv; +} +float LTC_ClippedSphereFormFactor( const in vec3 f ) { + float l = length( f ); + return max( ( l * l + f.z ) / ( l + 1.0 ), 0.0 ); +} +vec3 LTC_EdgeVectorFormFactor( const in vec3 v1, const in vec3 v2 ) { + float x = dot( v1, v2 ); + float y = abs( x ); + float a = 0.8543985 + ( 0.4965155 + 0.0145206 * y ) * y; + float b = 3.4175940 + ( 4.1616724 + y ) * y; + float v = a / b; + float theta_sintheta = ( x > 0.0 ) ? v : 0.5 * inversesqrt( max( 1.0 - x * x, 1e-7 ) ) - v; + return cross( v1, v2 ) * theta_sintheta; +} +vec3 LTC_Evaluate( const in vec3 N, const in vec3 V, const in vec3 P, const in mat3 mInv, const in vec3 rectCoords[ 4 ] ) { + vec3 v1 = rectCoords[ 1 ] - rectCoords[ 0 ]; + vec3 v2 = rectCoords[ 3 ] - rectCoords[ 0 ]; + vec3 lightNormal = cross( v1, v2 ); + if( dot( lightNormal, P - rectCoords[ 0 ] ) < 0.0 ) return vec3( 0.0 ); + vec3 T1, T2; + T1 = normalize( V - N * dot( V, N ) ); + T2 = - cross( N, T1 ); + mat3 mat = mInv * transposeMat3( mat3( T1, T2, N ) ); + vec3 coords[ 4 ]; + coords[ 0 ] = mat * ( rectCoords[ 0 ] - P ); + coords[ 1 ] = mat * ( rectCoords[ 1 ] - P ); + coords[ 2 ] = mat * ( rectCoords[ 2 ] - P ); + coords[ 3 ] = mat * ( rectCoords[ 3 ] - P ); + coords[ 0 ] = normalize( coords[ 0 ] ); + coords[ 1 ] = normalize( coords[ 1 ] ); + coords[ 2 ] = normalize( coords[ 2 ] ); + coords[ 3 ] = normalize( coords[ 3 ] ); + vec3 vectorFormFactor = vec3( 0.0 ); + vectorFormFactor += LTC_EdgeVectorFormFactor( coords[ 0 ], coords[ 1 ] ); + vectorFormFactor += LTC_EdgeVectorFormFactor( coords[ 1 ], coords[ 2 ] ); + vectorFormFactor += LTC_EdgeVectorFormFactor( coords[ 2 ], coords[ 3 ] ); + vectorFormFactor += LTC_EdgeVectorFormFactor( coords[ 3 ], coords[ 0 ] ); + float result = LTC_ClippedSphereFormFactor( vectorFormFactor ); + return vec3( result ); +} +#if defined( USE_SHEEN ) +float D_Charlie( float roughness, float dotNH ) { + float alpha = pow2( roughness ); + float invAlpha = 1.0 / alpha; + float cos2h = dotNH * dotNH; + float sin2h = max( 1.0 - cos2h, 0.0078125 ); + return ( 2.0 + invAlpha ) * pow( sin2h, invAlpha * 0.5 ) / ( 2.0 * PI ); +} +float V_Neubelt( float dotNV, float dotNL ) { + return saturate( 1.0 / ( 4.0 * ( dotNL + dotNV - dotNL * dotNV ) ) ); +} +vec3 BRDF_Sheen( const in vec3 lightDir, const in vec3 viewDir, const in vec3 normal, vec3 sheenColor, const in float sheenRoughness ) { + vec3 halfDir = normalize( lightDir + viewDir ); + float dotNL = saturate( dot( normal, lightDir ) ); + float dotNV = saturate( dot( normal, viewDir ) ); + float dotNH = saturate( dot( normal, halfDir ) ); + float D = D_Charlie( sheenRoughness, dotNH ); + float V = V_Neubelt( dotNV, dotNL ); + return sheenColor * ( D * V ); +} +#endif +float IBLSheenBRDF( const in vec3 normal, const in vec3 viewDir, const in float roughness ) { + float dotNV = saturate( dot( normal, viewDir ) ); + float r2 = roughness * roughness; + float a = roughness < 0.25 ? -339.2 * r2 + 161.4 * roughness - 25.9 : -8.48 * r2 + 14.3 * roughness - 9.95; + float b = roughness < 0.25 ? 44.0 * r2 - 23.7 * roughness + 3.26 : 1.97 * r2 - 3.27 * roughness + 0.72; + float DG = exp( a * dotNV + b ) + ( roughness < 0.25 ? 0.0 : 0.1 * ( roughness - 0.25 ) ); + return saturate( DG * RECIPROCAL_PI ); +} +vec2 DFGApprox( const in vec3 normal, const in vec3 viewDir, const in float roughness ) { + float dotNV = saturate( dot( normal, viewDir ) ); + const vec4 c0 = vec4( - 1, - 0.0275, - 0.572, 0.022 ); + const vec4 c1 = vec4( 1, 0.0425, 1.04, - 0.04 ); + vec4 r = roughness * c0 + c1; + float a004 = min( r.x * r.x, exp2( - 9.28 * dotNV ) ) * r.x + r.y; + vec2 fab = vec2( - 1.04, 1.04 ) * a004 + r.zw; + return fab; +} +vec3 EnvironmentBRDF( const in vec3 normal, const in vec3 viewDir, const in vec3 specularColor, const in float specularF90, const in float roughness ) { + vec2 fab = DFGApprox( normal, viewDir, roughness ); + return specularColor * fab.x + specularF90 * fab.y; +} +#ifdef USE_IRIDESCENCE +void computeMultiscatteringIridescence( const in vec3 normal, const in vec3 viewDir, const in vec3 specularColor, const in float specularF90, const in float iridescence, const in vec3 iridescenceF0, const in float roughness, inout vec3 singleScatter, inout vec3 multiScatter ) { +#else +void computeMultiscattering( const in vec3 normal, const in vec3 viewDir, const in vec3 specularColor, const in float specularF90, const in float roughness, inout vec3 singleScatter, inout vec3 multiScatter ) { +#endif + vec2 fab = DFGApprox( normal, viewDir, roughness ); + #ifdef USE_IRIDESCENCE + vec3 Fr = mix( specularColor, iridescenceF0, iridescence ); + #else + vec3 Fr = specularColor; + #endif + vec3 FssEss = Fr * fab.x + specularF90 * fab.y; + float Ess = fab.x + fab.y; + float Ems = 1.0 - Ess; + vec3 Favg = Fr + ( 1.0 - Fr ) * 0.047619; vec3 Fms = FssEss * Favg / ( 1.0 - Ems * Favg ); + singleScatter += FssEss; + multiScatter += Fms * Ems; +} +#if NUM_RECT_AREA_LIGHTS > 0 + void RE_Direct_RectArea_Physical( const in RectAreaLight rectAreaLight, const in vec3 geometryPosition, const in vec3 geometryNormal, const in vec3 geometryViewDir, const in vec3 geometryClearcoatNormal, const in PhysicalMaterial material, inout ReflectedLight reflectedLight ) { + vec3 normal = geometryNormal; + vec3 viewDir = geometryViewDir; + vec3 position = geometryPosition; + vec3 lightPos = rectAreaLight.position; + vec3 halfWidth = rectAreaLight.halfWidth; + vec3 halfHeight = rectAreaLight.halfHeight; + vec3 lightColor = rectAreaLight.color; + float roughness = material.roughness; + vec3 rectCoords[ 4 ]; + rectCoords[ 0 ] = lightPos + halfWidth - halfHeight; rectCoords[ 1 ] = lightPos - halfWidth - halfHeight; + rectCoords[ 2 ] = lightPos - halfWidth + halfHeight; + rectCoords[ 3 ] = lightPos + halfWidth + halfHeight; + vec2 uv = LTC_Uv( normal, viewDir, roughness ); + vec4 t1 = texture2D( ltc_1, uv ); + vec4 t2 = texture2D( ltc_2, uv ); + mat3 mInv = mat3( + vec3( t1.x, 0, t1.y ), + vec3( 0, 1, 0 ), + vec3( t1.z, 0, t1.w ) + ); + vec3 fresnel = ( material.specularColor * t2.x + ( vec3( 1.0 ) - material.specularColor ) * t2.y ); + reflectedLight.directSpecular += lightColor * fresnel * LTC_Evaluate( normal, viewDir, position, mInv, rectCoords ); + reflectedLight.directDiffuse += lightColor * material.diffuseColor * LTC_Evaluate( normal, viewDir, position, mat3( 1.0 ), rectCoords ); + } +#endif +void RE_Direct_Physical( const in IncidentLight directLight, const in vec3 geometryPosition, const in vec3 geometryNormal, const in vec3 geometryViewDir, const in vec3 geometryClearcoatNormal, const in PhysicalMaterial material, inout ReflectedLight reflectedLight ) { + float dotNL = saturate( dot( geometryNormal, directLight.direction ) ); + vec3 irradiance = dotNL * directLight.color; + #ifdef USE_CLEARCOAT + float dotNLcc = saturate( dot( geometryClearcoatNormal, directLight.direction ) ); + vec3 ccIrradiance = dotNLcc * directLight.color; + clearcoatSpecularDirect += ccIrradiance * BRDF_GGX_Clearcoat( directLight.direction, geometryViewDir, geometryClearcoatNormal, material ); + #endif + #ifdef USE_SHEEN + sheenSpecularDirect += irradiance * BRDF_Sheen( directLight.direction, geometryViewDir, geometryNormal, material.sheenColor, material.sheenRoughness ); + #endif + reflectedLight.directSpecular += irradiance * BRDF_GGX( directLight.direction, geometryViewDir, geometryNormal, material ); + reflectedLight.directDiffuse += irradiance * BRDF_Lambert( material.diffuseColor ); +} +void RE_IndirectDiffuse_Physical( const in vec3 irradiance, const in vec3 geometryPosition, const in vec3 geometryNormal, const in vec3 geometryViewDir, const in vec3 geometryClearcoatNormal, const in PhysicalMaterial material, inout ReflectedLight reflectedLight ) { + reflectedLight.indirectDiffuse += irradiance * BRDF_Lambert( material.diffuseColor ); +} +void RE_IndirectSpecular_Physical( const in vec3 radiance, const in vec3 irradiance, const in vec3 clearcoatRadiance, const in vec3 geometryPosition, const in vec3 geometryNormal, const in vec3 geometryViewDir, const in vec3 geometryClearcoatNormal, const in PhysicalMaterial material, inout ReflectedLight reflectedLight) { + #ifdef USE_CLEARCOAT + clearcoatSpecularIndirect += clearcoatRadiance * EnvironmentBRDF( geometryClearcoatNormal, geometryViewDir, material.clearcoatF0, material.clearcoatF90, material.clearcoatRoughness ); + #endif + #ifdef USE_SHEEN + sheenSpecularIndirect += irradiance * material.sheenColor * IBLSheenBRDF( geometryNormal, geometryViewDir, material.sheenRoughness ); + #endif + vec3 singleScattering = vec3( 0.0 ); + vec3 multiScattering = vec3( 0.0 ); + vec3 cosineWeightedIrradiance = irradiance * RECIPROCAL_PI; + #ifdef USE_IRIDESCENCE + computeMultiscatteringIridescence( geometryNormal, geometryViewDir, material.specularColor, material.specularF90, material.iridescence, material.iridescenceFresnel, material.roughness, singleScattering, multiScattering ); + #else + computeMultiscattering( geometryNormal, geometryViewDir, material.specularColor, material.specularF90, material.roughness, singleScattering, multiScattering ); + #endif + vec3 totalScattering = singleScattering + multiScattering; + vec3 diffuse = material.diffuseColor * ( 1.0 - max( max( totalScattering.r, totalScattering.g ), totalScattering.b ) ); + reflectedLight.indirectSpecular += radiance * singleScattering; + reflectedLight.indirectSpecular += multiScattering * cosineWeightedIrradiance; + reflectedLight.indirectDiffuse += diffuse * cosineWeightedIrradiance; +} +#define RE_Direct RE_Direct_Physical +#define RE_Direct_RectArea RE_Direct_RectArea_Physical +#define RE_IndirectDiffuse RE_IndirectDiffuse_Physical +#define RE_IndirectSpecular RE_IndirectSpecular_Physical +float computeSpecularOcclusion( const in float dotNV, const in float ambientOcclusion, const in float roughness ) { + return saturate( pow( dotNV + ambientOcclusion, exp2( - 16.0 * roughness - 1.0 ) ) - 1.0 + ambientOcclusion ); +}`,JG=` +vec3 geometryPosition = - vViewPosition; +vec3 geometryNormal = normal; +vec3 geometryViewDir = ( isOrthographic ) ? vec3( 0, 0, 1 ) : normalize( vViewPosition ); +vec3 geometryClearcoatNormal = vec3( 0.0 ); +#ifdef USE_CLEARCOAT + geometryClearcoatNormal = clearcoatNormal; +#endif +#ifdef USE_IRIDESCENCE + float dotNVi = saturate( dot( normal, geometryViewDir ) ); + if ( material.iridescenceThickness == 0.0 ) { + material.iridescence = 0.0; + } else { + material.iridescence = saturate( material.iridescence ); + } + if ( material.iridescence > 0.0 ) { + material.iridescenceFresnel = evalIridescence( 1.0, material.iridescenceIOR, dotNVi, material.iridescenceThickness, material.specularColor ); + material.iridescenceF0 = Schlick_to_F0( material.iridescenceFresnel, 1.0, dotNVi ); + } +#endif +IncidentLight directLight; +#if ( NUM_POINT_LIGHTS > 0 ) && defined( RE_Direct ) + PointLight pointLight; + #if defined( USE_SHADOWMAP ) && NUM_POINT_LIGHT_SHADOWS > 0 + PointLightShadow pointLightShadow; + #endif + #pragma unroll_loop_start + for ( int i = 0; i < NUM_POINT_LIGHTS; i ++ ) { + pointLight = pointLights[ i ]; + getPointLightInfo( pointLight, geometryPosition, directLight ); + #if defined( USE_SHADOWMAP ) && ( UNROLLED_LOOP_INDEX < NUM_POINT_LIGHT_SHADOWS ) + pointLightShadow = pointLightShadows[ i ]; + directLight.color *= ( directLight.visible && receiveShadow ) ? getPointShadow( pointShadowMap[ i ], pointLightShadow.shadowMapSize, pointLightShadow.shadowIntensity, pointLightShadow.shadowBias, pointLightShadow.shadowRadius, vPointShadowCoord[ i ], pointLightShadow.shadowCameraNear, pointLightShadow.shadowCameraFar ) : 1.0; + #endif + RE_Direct( directLight, geometryPosition, geometryNormal, geometryViewDir, geometryClearcoatNormal, material, reflectedLight ); + } + #pragma unroll_loop_end +#endif +#if ( NUM_SPOT_LIGHTS > 0 ) && defined( RE_Direct ) + SpotLight spotLight; + vec4 spotColor; + vec3 spotLightCoord; + bool inSpotLightMap; + #if defined( USE_SHADOWMAP ) && NUM_SPOT_LIGHT_SHADOWS > 0 + SpotLightShadow spotLightShadow; + #endif + #pragma unroll_loop_start + for ( int i = 0; i < NUM_SPOT_LIGHTS; i ++ ) { + spotLight = spotLights[ i ]; + getSpotLightInfo( spotLight, geometryPosition, directLight ); + #if ( UNROLLED_LOOP_INDEX < NUM_SPOT_LIGHT_SHADOWS_WITH_MAPS ) + #define SPOT_LIGHT_MAP_INDEX UNROLLED_LOOP_INDEX + #elif ( UNROLLED_LOOP_INDEX < NUM_SPOT_LIGHT_SHADOWS ) + #define SPOT_LIGHT_MAP_INDEX NUM_SPOT_LIGHT_MAPS + #else + #define SPOT_LIGHT_MAP_INDEX ( UNROLLED_LOOP_INDEX - NUM_SPOT_LIGHT_SHADOWS + NUM_SPOT_LIGHT_SHADOWS_WITH_MAPS ) + #endif + #if ( SPOT_LIGHT_MAP_INDEX < NUM_SPOT_LIGHT_MAPS ) + spotLightCoord = vSpotLightCoord[ i ].xyz / vSpotLightCoord[ i ].w; + inSpotLightMap = all( lessThan( abs( spotLightCoord * 2. - 1. ), vec3( 1.0 ) ) ); + spotColor = texture2D( spotLightMap[ SPOT_LIGHT_MAP_INDEX ], spotLightCoord.xy ); + directLight.color = inSpotLightMap ? directLight.color * spotColor.rgb : directLight.color; + #endif + #undef SPOT_LIGHT_MAP_INDEX + #if defined( USE_SHADOWMAP ) && ( UNROLLED_LOOP_INDEX < NUM_SPOT_LIGHT_SHADOWS ) + spotLightShadow = spotLightShadows[ i ]; + directLight.color *= ( directLight.visible && receiveShadow ) ? getShadow( spotShadowMap[ i ], spotLightShadow.shadowMapSize, spotLightShadow.shadowIntensity, spotLightShadow.shadowBias, spotLightShadow.shadowRadius, vSpotLightCoord[ i ] ) : 1.0; + #endif + RE_Direct( directLight, geometryPosition, geometryNormal, geometryViewDir, geometryClearcoatNormal, material, reflectedLight ); + } + #pragma unroll_loop_end +#endif +#if ( NUM_DIR_LIGHTS > 0 ) && defined( RE_Direct ) + DirectionalLight directionalLight; + #if defined( USE_SHADOWMAP ) && NUM_DIR_LIGHT_SHADOWS > 0 + DirectionalLightShadow directionalLightShadow; + #endif + #pragma unroll_loop_start + for ( int i = 0; i < NUM_DIR_LIGHTS; i ++ ) { + directionalLight = directionalLights[ i ]; + getDirectionalLightInfo( directionalLight, directLight ); + #if defined( USE_SHADOWMAP ) && ( UNROLLED_LOOP_INDEX < NUM_DIR_LIGHT_SHADOWS ) + directionalLightShadow = directionalLightShadows[ i ]; + directLight.color *= ( directLight.visible && receiveShadow ) ? getShadow( directionalShadowMap[ i ], directionalLightShadow.shadowMapSize, directionalLightShadow.shadowIntensity, directionalLightShadow.shadowBias, directionalLightShadow.shadowRadius, vDirectionalShadowCoord[ i ] ) : 1.0; + #endif + RE_Direct( directLight, geometryPosition, geometryNormal, geometryViewDir, geometryClearcoatNormal, material, reflectedLight ); + } + #pragma unroll_loop_end +#endif +#if ( NUM_RECT_AREA_LIGHTS > 0 ) && defined( RE_Direct_RectArea ) + RectAreaLight rectAreaLight; + #pragma unroll_loop_start + for ( int i = 0; i < NUM_RECT_AREA_LIGHTS; i ++ ) { + rectAreaLight = rectAreaLights[ i ]; + RE_Direct_RectArea( rectAreaLight, geometryPosition, geometryNormal, geometryViewDir, geometryClearcoatNormal, material, reflectedLight ); + } + #pragma unroll_loop_end +#endif +#if defined( RE_IndirectDiffuse ) + vec3 iblIrradiance = vec3( 0.0 ); + vec3 irradiance = getAmbientLightIrradiance( ambientLightColor ); + #if defined( USE_LIGHT_PROBES ) + irradiance += getLightProbeIrradiance( lightProbe, geometryNormal ); + #endif + #if ( NUM_HEMI_LIGHTS > 0 ) + #pragma unroll_loop_start + for ( int i = 0; i < NUM_HEMI_LIGHTS; i ++ ) { + irradiance += getHemisphereLightIrradiance( hemisphereLights[ i ], geometryNormal ); + } + #pragma unroll_loop_end + #endif +#endif +#if defined( RE_IndirectSpecular ) + vec3 radiance = vec3( 0.0 ); + vec3 clearcoatRadiance = vec3( 0.0 ); +#endif`,eq=`#if defined( RE_IndirectDiffuse ) + #ifdef USE_LIGHTMAP + vec4 lightMapTexel = texture2D( lightMap, vLightMapUv ); + vec3 lightMapIrradiance = lightMapTexel.rgb * lightMapIntensity; + irradiance += lightMapIrradiance; + #endif + #if defined( USE_ENVMAP ) && defined( STANDARD ) && defined( ENVMAP_TYPE_CUBE_UV ) + iblIrradiance += getIBLIrradiance( geometryNormal ); + #endif +#endif +#if defined( USE_ENVMAP ) && defined( RE_IndirectSpecular ) + #ifdef USE_ANISOTROPY + radiance += getIBLAnisotropyRadiance( geometryViewDir, geometryNormal, material.roughness, material.anisotropyB, material.anisotropy ); + #else + radiance += getIBLRadiance( geometryViewDir, geometryNormal, material.roughness ); + #endif + #ifdef USE_CLEARCOAT + clearcoatRadiance += getIBLRadiance( geometryViewDir, geometryClearcoatNormal, material.clearcoatRoughness ); + #endif +#endif`,tq=`#if defined( RE_IndirectDiffuse ) + RE_IndirectDiffuse( irradiance, geometryPosition, geometryNormal, geometryViewDir, geometryClearcoatNormal, material, reflectedLight ); +#endif +#if defined( RE_IndirectSpecular ) + RE_IndirectSpecular( radiance, iblIrradiance, clearcoatRadiance, geometryPosition, geometryNormal, geometryViewDir, geometryClearcoatNormal, material, reflectedLight ); +#endif`,nq=`#if defined( USE_LOGDEPTHBUF ) + gl_FragDepth = vIsPerspective == 0.0 ? gl_FragCoord.z : log2( vFragDepth ) * logDepthBufFC * 0.5; +#endif`,iq=`#if defined( USE_LOGDEPTHBUF ) + uniform float logDepthBufFC; + varying float vFragDepth; + varying float vIsPerspective; +#endif`,rq=`#ifdef USE_LOGDEPTHBUF + varying float vFragDepth; + varying float vIsPerspective; +#endif`,sq=`#ifdef USE_LOGDEPTHBUF + vFragDepth = 1.0 + gl_Position.w; + vIsPerspective = float( isPerspectiveMatrix( projectionMatrix ) ); +#endif`,aq=`#ifdef USE_MAP + vec4 sampledDiffuseColor = texture2D( map, vMapUv ); + #ifdef DECODE_VIDEO_TEXTURE + sampledDiffuseColor = sRGBTransferEOTF( sampledDiffuseColor ); + #endif + diffuseColor *= sampledDiffuseColor; +#endif`,oq=`#ifdef USE_MAP + uniform sampler2D map; +#endif`,lq=`#if defined( USE_MAP ) || defined( USE_ALPHAMAP ) + #if defined( USE_POINTS_UV ) + vec2 uv = vUv; + #else + vec2 uv = ( uvTransform * vec3( gl_PointCoord.x, 1.0 - gl_PointCoord.y, 1 ) ).xy; + #endif +#endif +#ifdef USE_MAP + diffuseColor *= texture2D( map, uv ); +#endif +#ifdef USE_ALPHAMAP + diffuseColor.a *= texture2D( alphaMap, uv ).g; +#endif`,uq=`#if defined( USE_POINTS_UV ) + varying vec2 vUv; +#else + #if defined( USE_MAP ) || defined( USE_ALPHAMAP ) + uniform mat3 uvTransform; + #endif +#endif +#ifdef USE_MAP + uniform sampler2D map; +#endif +#ifdef USE_ALPHAMAP + uniform sampler2D alphaMap; +#endif`,cq=`float metalnessFactor = metalness; +#ifdef USE_METALNESSMAP + vec4 texelMetalness = texture2D( metalnessMap, vMetalnessMapUv ); + metalnessFactor *= texelMetalness.b; +#endif`,hq=`#ifdef USE_METALNESSMAP + uniform sampler2D metalnessMap; +#endif`,fq=`#ifdef USE_INSTANCING_MORPH + float morphTargetInfluences[ MORPHTARGETS_COUNT ]; + float morphTargetBaseInfluence = texelFetch( morphTexture, ivec2( 0, gl_InstanceID ), 0 ).r; + for ( int i = 0; i < MORPHTARGETS_COUNT; i ++ ) { + morphTargetInfluences[i] = texelFetch( morphTexture, ivec2( i + 1, gl_InstanceID ), 0 ).r; + } +#endif`,Aq=`#if defined( USE_MORPHCOLORS ) + vColor *= morphTargetBaseInfluence; + for ( int i = 0; i < MORPHTARGETS_COUNT; i ++ ) { + #if defined( USE_COLOR_ALPHA ) + if ( morphTargetInfluences[ i ] != 0.0 ) vColor += getMorph( gl_VertexID, i, 2 ) * morphTargetInfluences[ i ]; + #elif defined( USE_COLOR ) + if ( morphTargetInfluences[ i ] != 0.0 ) vColor += getMorph( gl_VertexID, i, 2 ).rgb * morphTargetInfluences[ i ]; + #endif + } +#endif`,dq=`#ifdef USE_MORPHNORMALS + objectNormal *= morphTargetBaseInfluence; + for ( int i = 0; i < MORPHTARGETS_COUNT; i ++ ) { + if ( morphTargetInfluences[ i ] != 0.0 ) objectNormal += getMorph( gl_VertexID, i, 1 ).xyz * morphTargetInfluences[ i ]; + } +#endif`,pq=`#ifdef USE_MORPHTARGETS + #ifndef USE_INSTANCING_MORPH + uniform float morphTargetBaseInfluence; + uniform float morphTargetInfluences[ MORPHTARGETS_COUNT ]; + #endif + uniform sampler2DArray morphTargetsTexture; + uniform ivec2 morphTargetsTextureSize; + vec4 getMorph( const in int vertexIndex, const in int morphTargetIndex, const in int offset ) { + int texelIndex = vertexIndex * MORPHTARGETS_TEXTURE_STRIDE + offset; + int y = texelIndex / morphTargetsTextureSize.x; + int x = texelIndex - y * morphTargetsTextureSize.x; + ivec3 morphUV = ivec3( x, y, morphTargetIndex ); + return texelFetch( morphTargetsTexture, morphUV, 0 ); + } +#endif`,mq=`#ifdef USE_MORPHTARGETS + transformed *= morphTargetBaseInfluence; + for ( int i = 0; i < MORPHTARGETS_COUNT; i ++ ) { + if ( morphTargetInfluences[ i ] != 0.0 ) transformed += getMorph( gl_VertexID, i, 0 ).xyz * morphTargetInfluences[ i ]; + } +#endif`,gq=`float faceDirection = gl_FrontFacing ? 1.0 : - 1.0; +#ifdef FLAT_SHADED + vec3 fdx = dFdx( vViewPosition ); + vec3 fdy = dFdy( vViewPosition ); + vec3 normal = normalize( cross( fdx, fdy ) ); +#else + vec3 normal = normalize( vNormal ); + #ifdef DOUBLE_SIDED + normal *= faceDirection; + #endif +#endif +#if defined( USE_NORMALMAP_TANGENTSPACE ) || defined( USE_CLEARCOAT_NORMALMAP ) || defined( USE_ANISOTROPY ) + #ifdef USE_TANGENT + mat3 tbn = mat3( normalize( vTangent ), normalize( vBitangent ), normal ); + #else + mat3 tbn = getTangentFrame( - vViewPosition, normal, + #if defined( USE_NORMALMAP ) + vNormalMapUv + #elif defined( USE_CLEARCOAT_NORMALMAP ) + vClearcoatNormalMapUv + #else + vUv + #endif + ); + #endif + #if defined( DOUBLE_SIDED ) && ! defined( FLAT_SHADED ) + tbn[0] *= faceDirection; + tbn[1] *= faceDirection; + #endif +#endif +#ifdef USE_CLEARCOAT_NORMALMAP + #ifdef USE_TANGENT + mat3 tbn2 = mat3( normalize( vTangent ), normalize( vBitangent ), normal ); + #else + mat3 tbn2 = getTangentFrame( - vViewPosition, normal, vClearcoatNormalMapUv ); + #endif + #if defined( DOUBLE_SIDED ) && ! defined( FLAT_SHADED ) + tbn2[0] *= faceDirection; + tbn2[1] *= faceDirection; + #endif +#endif +vec3 nonPerturbedNormal = normal;`,vq=`#ifdef USE_NORMALMAP_OBJECTSPACE + normal = texture2D( normalMap, vNormalMapUv ).xyz * 2.0 - 1.0; + #ifdef FLIP_SIDED + normal = - normal; + #endif + #ifdef DOUBLE_SIDED + normal = normal * faceDirection; + #endif + normal = normalize( normalMatrix * normal ); +#elif defined( USE_NORMALMAP_TANGENTSPACE ) + vec3 mapN = texture2D( normalMap, vNormalMapUv ).xyz * 2.0 - 1.0; + mapN.xy *= normalScale; + normal = normalize( tbn * mapN ); +#elif defined( USE_BUMPMAP ) + normal = perturbNormalArb( - vViewPosition, normal, dHdxy_fwd(), faceDirection ); +#endif`,_q=`#ifndef FLAT_SHADED + varying vec3 vNormal; + #ifdef USE_TANGENT + varying vec3 vTangent; + varying vec3 vBitangent; + #endif +#endif`,yq=`#ifndef FLAT_SHADED + varying vec3 vNormal; + #ifdef USE_TANGENT + varying vec3 vTangent; + varying vec3 vBitangent; + #endif +#endif`,xq=`#ifndef FLAT_SHADED + vNormal = normalize( transformedNormal ); + #ifdef USE_TANGENT + vTangent = normalize( transformedTangent ); + vBitangent = normalize( cross( vNormal, vTangent ) * tangent.w ); + #endif +#endif`,bq=`#ifdef USE_NORMALMAP + uniform sampler2D normalMap; + uniform vec2 normalScale; +#endif +#ifdef USE_NORMALMAP_OBJECTSPACE + uniform mat3 normalMatrix; +#endif +#if ! defined ( USE_TANGENT ) && ( defined ( USE_NORMALMAP_TANGENTSPACE ) || defined ( USE_CLEARCOAT_NORMALMAP ) || defined( USE_ANISOTROPY ) ) + mat3 getTangentFrame( vec3 eye_pos, vec3 surf_norm, vec2 uv ) { + vec3 q0 = dFdx( eye_pos.xyz ); + vec3 q1 = dFdy( eye_pos.xyz ); + vec2 st0 = dFdx( uv.st ); + vec2 st1 = dFdy( uv.st ); + vec3 N = surf_norm; + vec3 q1perp = cross( q1, N ); + vec3 q0perp = cross( N, q0 ); + vec3 T = q1perp * st0.x + q0perp * st1.x; + vec3 B = q1perp * st0.y + q0perp * st1.y; + float det = max( dot( T, T ), dot( B, B ) ); + float scale = ( det == 0.0 ) ? 0.0 : inversesqrt( det ); + return mat3( T * scale, B * scale, N ); + } +#endif`,Sq=`#ifdef USE_CLEARCOAT + vec3 clearcoatNormal = nonPerturbedNormal; +#endif`,Tq=`#ifdef USE_CLEARCOAT_NORMALMAP + vec3 clearcoatMapN = texture2D( clearcoatNormalMap, vClearcoatNormalMapUv ).xyz * 2.0 - 1.0; + clearcoatMapN.xy *= clearcoatNormalScale; + clearcoatNormal = normalize( tbn2 * clearcoatMapN ); +#endif`,wq=`#ifdef USE_CLEARCOATMAP + uniform sampler2D clearcoatMap; +#endif +#ifdef USE_CLEARCOAT_NORMALMAP + uniform sampler2D clearcoatNormalMap; + uniform vec2 clearcoatNormalScale; +#endif +#ifdef USE_CLEARCOAT_ROUGHNESSMAP + uniform sampler2D clearcoatRoughnessMap; +#endif`,Mq=`#ifdef USE_IRIDESCENCEMAP + uniform sampler2D iridescenceMap; +#endif +#ifdef USE_IRIDESCENCE_THICKNESSMAP + uniform sampler2D iridescenceThicknessMap; +#endif`,Eq=`#ifdef OPAQUE +diffuseColor.a = 1.0; +#endif +#ifdef USE_TRANSMISSION +diffuseColor.a *= material.transmissionAlpha; +#endif +gl_FragColor = vec4( outgoingLight, diffuseColor.a );`,Cq=`vec3 packNormalToRGB( const in vec3 normal ) { + return normalize( normal ) * 0.5 + 0.5; +} +vec3 unpackRGBToNormal( const in vec3 rgb ) { + return 2.0 * rgb.xyz - 1.0; +} +const float PackUpscale = 256. / 255.;const float UnpackDownscale = 255. / 256.;const float ShiftRight8 = 1. / 256.; +const float Inv255 = 1. / 255.; +const vec4 PackFactors = vec4( 1.0, 256.0, 256.0 * 256.0, 256.0 * 256.0 * 256.0 ); +const vec2 UnpackFactors2 = vec2( UnpackDownscale, 1.0 / PackFactors.g ); +const vec3 UnpackFactors3 = vec3( UnpackDownscale / PackFactors.rg, 1.0 / PackFactors.b ); +const vec4 UnpackFactors4 = vec4( UnpackDownscale / PackFactors.rgb, 1.0 / PackFactors.a ); +vec4 packDepthToRGBA( const in float v ) { + if( v <= 0.0 ) + return vec4( 0., 0., 0., 0. ); + if( v >= 1.0 ) + return vec4( 1., 1., 1., 1. ); + float vuf; + float af = modf( v * PackFactors.a, vuf ); + float bf = modf( vuf * ShiftRight8, vuf ); + float gf = modf( vuf * ShiftRight8, vuf ); + return vec4( vuf * Inv255, gf * PackUpscale, bf * PackUpscale, af ); +} +vec3 packDepthToRGB( const in float v ) { + if( v <= 0.0 ) + return vec3( 0., 0., 0. ); + if( v >= 1.0 ) + return vec3( 1., 1., 1. ); + float vuf; + float bf = modf( v * PackFactors.b, vuf ); + float gf = modf( vuf * ShiftRight8, vuf ); + return vec3( vuf * Inv255, gf * PackUpscale, bf ); +} +vec2 packDepthToRG( const in float v ) { + if( v <= 0.0 ) + return vec2( 0., 0. ); + if( v >= 1.0 ) + return vec2( 1., 1. ); + float vuf; + float gf = modf( v * 256., vuf ); + return vec2( vuf * Inv255, gf ); +} +float unpackRGBAToDepth( const in vec4 v ) { + return dot( v, UnpackFactors4 ); +} +float unpackRGBToDepth( const in vec3 v ) { + return dot( v, UnpackFactors3 ); +} +float unpackRGToDepth( const in vec2 v ) { + return v.r * UnpackFactors2.r + v.g * UnpackFactors2.g; +} +vec4 pack2HalfToRGBA( const in vec2 v ) { + vec4 r = vec4( v.x, fract( v.x * 255.0 ), v.y, fract( v.y * 255.0 ) ); + return vec4( r.x - r.y / 255.0, r.y, r.z - r.w / 255.0, r.w ); +} +vec2 unpackRGBATo2Half( const in vec4 v ) { + return vec2( v.x + ( v.y / 255.0 ), v.z + ( v.w / 255.0 ) ); +} +float viewZToOrthographicDepth( const in float viewZ, const in float near, const in float far ) { + return ( viewZ + near ) / ( near - far ); +} +float orthographicDepthToViewZ( const in float depth, const in float near, const in float far ) { + return depth * ( near - far ) - near; +} +float viewZToPerspectiveDepth( const in float viewZ, const in float near, const in float far ) { + return ( ( near + viewZ ) * far ) / ( ( far - near ) * viewZ ); +} +float perspectiveDepthToViewZ( const in float depth, const in float near, const in float far ) { + return ( near * far ) / ( ( far - near ) * depth - far ); +}`,Rq=`#ifdef PREMULTIPLIED_ALPHA + gl_FragColor.rgb *= gl_FragColor.a; +#endif`,Nq=`vec4 mvPosition = vec4( transformed, 1.0 ); +#ifdef USE_BATCHING + mvPosition = batchingMatrix * mvPosition; +#endif +#ifdef USE_INSTANCING + mvPosition = instanceMatrix * mvPosition; +#endif +mvPosition = modelViewMatrix * mvPosition; +gl_Position = projectionMatrix * mvPosition;`,Dq=`#ifdef DITHERING + gl_FragColor.rgb = dithering( gl_FragColor.rgb ); +#endif`,Pq=`#ifdef DITHERING + vec3 dithering( vec3 color ) { + float grid_position = rand( gl_FragCoord.xy ); + vec3 dither_shift_RGB = vec3( 0.25 / 255.0, -0.25 / 255.0, 0.25 / 255.0 ); + dither_shift_RGB = mix( 2.0 * dither_shift_RGB, -2.0 * dither_shift_RGB, grid_position ); + return color + dither_shift_RGB; + } +#endif`,Lq=`float roughnessFactor = roughness; +#ifdef USE_ROUGHNESSMAP + vec4 texelRoughness = texture2D( roughnessMap, vRoughnessMapUv ); + roughnessFactor *= texelRoughness.g; +#endif`,Uq=`#ifdef USE_ROUGHNESSMAP + uniform sampler2D roughnessMap; +#endif`,Bq=`#if NUM_SPOT_LIGHT_COORDS > 0 + varying vec4 vSpotLightCoord[ NUM_SPOT_LIGHT_COORDS ]; +#endif +#if NUM_SPOT_LIGHT_MAPS > 0 + uniform sampler2D spotLightMap[ NUM_SPOT_LIGHT_MAPS ]; +#endif +#ifdef USE_SHADOWMAP + #if NUM_DIR_LIGHT_SHADOWS > 0 + uniform sampler2D directionalShadowMap[ NUM_DIR_LIGHT_SHADOWS ]; + varying vec4 vDirectionalShadowCoord[ NUM_DIR_LIGHT_SHADOWS ]; + struct DirectionalLightShadow { + float shadowIntensity; + float shadowBias; + float shadowNormalBias; + float shadowRadius; + vec2 shadowMapSize; + }; + uniform DirectionalLightShadow directionalLightShadows[ NUM_DIR_LIGHT_SHADOWS ]; + #endif + #if NUM_SPOT_LIGHT_SHADOWS > 0 + uniform sampler2D spotShadowMap[ NUM_SPOT_LIGHT_SHADOWS ]; + struct SpotLightShadow { + float shadowIntensity; + float shadowBias; + float shadowNormalBias; + float shadowRadius; + vec2 shadowMapSize; + }; + uniform SpotLightShadow spotLightShadows[ NUM_SPOT_LIGHT_SHADOWS ]; + #endif + #if NUM_POINT_LIGHT_SHADOWS > 0 + uniform sampler2D pointShadowMap[ NUM_POINT_LIGHT_SHADOWS ]; + varying vec4 vPointShadowCoord[ NUM_POINT_LIGHT_SHADOWS ]; + struct PointLightShadow { + float shadowIntensity; + float shadowBias; + float shadowNormalBias; + float shadowRadius; + vec2 shadowMapSize; + float shadowCameraNear; + float shadowCameraFar; + }; + uniform PointLightShadow pointLightShadows[ NUM_POINT_LIGHT_SHADOWS ]; + #endif + float texture2DCompare( sampler2D depths, vec2 uv, float compare ) { + return step( compare, unpackRGBAToDepth( texture2D( depths, uv ) ) ); + } + vec2 texture2DDistribution( sampler2D shadow, vec2 uv ) { + return unpackRGBATo2Half( texture2D( shadow, uv ) ); + } + float VSMShadow (sampler2D shadow, vec2 uv, float compare ){ + float occlusion = 1.0; + vec2 distribution = texture2DDistribution( shadow, uv ); + float hard_shadow = step( compare , distribution.x ); + if (hard_shadow != 1.0 ) { + float distance = compare - distribution.x ; + float variance = max( 0.00000, distribution.y * distribution.y ); + float softness_probability = variance / (variance + distance * distance ); softness_probability = clamp( ( softness_probability - 0.3 ) / ( 0.95 - 0.3 ), 0.0, 1.0 ); occlusion = clamp( max( hard_shadow, softness_probability ), 0.0, 1.0 ); + } + return occlusion; + } + float getShadow( sampler2D shadowMap, vec2 shadowMapSize, float shadowIntensity, float shadowBias, float shadowRadius, vec4 shadowCoord ) { + float shadow = 1.0; + shadowCoord.xyz /= shadowCoord.w; + shadowCoord.z += shadowBias; + bool inFrustum = shadowCoord.x >= 0.0 && shadowCoord.x <= 1.0 && shadowCoord.y >= 0.0 && shadowCoord.y <= 1.0; + bool frustumTest = inFrustum && shadowCoord.z <= 1.0; + if ( frustumTest ) { + #if defined( SHADOWMAP_TYPE_PCF ) + vec2 texelSize = vec2( 1.0 ) / shadowMapSize; + float dx0 = - texelSize.x * shadowRadius; + float dy0 = - texelSize.y * shadowRadius; + float dx1 = + texelSize.x * shadowRadius; + float dy1 = + texelSize.y * shadowRadius; + float dx2 = dx0 / 2.0; + float dy2 = dy0 / 2.0; + float dx3 = dx1 / 2.0; + float dy3 = dy1 / 2.0; + shadow = ( + texture2DCompare( shadowMap, shadowCoord.xy + vec2( dx0, dy0 ), shadowCoord.z ) + + texture2DCompare( shadowMap, shadowCoord.xy + vec2( 0.0, dy0 ), shadowCoord.z ) + + texture2DCompare( shadowMap, shadowCoord.xy + vec2( dx1, dy0 ), shadowCoord.z ) + + texture2DCompare( shadowMap, shadowCoord.xy + vec2( dx2, dy2 ), shadowCoord.z ) + + texture2DCompare( shadowMap, shadowCoord.xy + vec2( 0.0, dy2 ), shadowCoord.z ) + + texture2DCompare( shadowMap, shadowCoord.xy + vec2( dx3, dy2 ), shadowCoord.z ) + + texture2DCompare( shadowMap, shadowCoord.xy + vec2( dx0, 0.0 ), shadowCoord.z ) + + texture2DCompare( shadowMap, shadowCoord.xy + vec2( dx2, 0.0 ), shadowCoord.z ) + + texture2DCompare( shadowMap, shadowCoord.xy, shadowCoord.z ) + + texture2DCompare( shadowMap, shadowCoord.xy + vec2( dx3, 0.0 ), shadowCoord.z ) + + texture2DCompare( shadowMap, shadowCoord.xy + vec2( dx1, 0.0 ), shadowCoord.z ) + + texture2DCompare( shadowMap, shadowCoord.xy + vec2( dx2, dy3 ), shadowCoord.z ) + + texture2DCompare( shadowMap, shadowCoord.xy + vec2( 0.0, dy3 ), shadowCoord.z ) + + texture2DCompare( shadowMap, shadowCoord.xy + vec2( dx3, dy3 ), shadowCoord.z ) + + texture2DCompare( shadowMap, shadowCoord.xy + vec2( dx0, dy1 ), shadowCoord.z ) + + texture2DCompare( shadowMap, shadowCoord.xy + vec2( 0.0, dy1 ), shadowCoord.z ) + + texture2DCompare( shadowMap, shadowCoord.xy + vec2( dx1, dy1 ), shadowCoord.z ) + ) * ( 1.0 / 17.0 ); + #elif defined( SHADOWMAP_TYPE_PCF_SOFT ) + vec2 texelSize = vec2( 1.0 ) / shadowMapSize; + float dx = texelSize.x; + float dy = texelSize.y; + vec2 uv = shadowCoord.xy; + vec2 f = fract( uv * shadowMapSize + 0.5 ); + uv -= f * texelSize; + shadow = ( + texture2DCompare( shadowMap, uv, shadowCoord.z ) + + texture2DCompare( shadowMap, uv + vec2( dx, 0.0 ), shadowCoord.z ) + + texture2DCompare( shadowMap, uv + vec2( 0.0, dy ), shadowCoord.z ) + + texture2DCompare( shadowMap, uv + texelSize, shadowCoord.z ) + + mix( texture2DCompare( shadowMap, uv + vec2( -dx, 0.0 ), shadowCoord.z ), + texture2DCompare( shadowMap, uv + vec2( 2.0 * dx, 0.0 ), shadowCoord.z ), + f.x ) + + mix( texture2DCompare( shadowMap, uv + vec2( -dx, dy ), shadowCoord.z ), + texture2DCompare( shadowMap, uv + vec2( 2.0 * dx, dy ), shadowCoord.z ), + f.x ) + + mix( texture2DCompare( shadowMap, uv + vec2( 0.0, -dy ), shadowCoord.z ), + texture2DCompare( shadowMap, uv + vec2( 0.0, 2.0 * dy ), shadowCoord.z ), + f.y ) + + mix( texture2DCompare( shadowMap, uv + vec2( dx, -dy ), shadowCoord.z ), + texture2DCompare( shadowMap, uv + vec2( dx, 2.0 * dy ), shadowCoord.z ), + f.y ) + + mix( mix( texture2DCompare( shadowMap, uv + vec2( -dx, -dy ), shadowCoord.z ), + texture2DCompare( shadowMap, uv + vec2( 2.0 * dx, -dy ), shadowCoord.z ), + f.x ), + mix( texture2DCompare( shadowMap, uv + vec2( -dx, 2.0 * dy ), shadowCoord.z ), + texture2DCompare( shadowMap, uv + vec2( 2.0 * dx, 2.0 * dy ), shadowCoord.z ), + f.x ), + f.y ) + ) * ( 1.0 / 9.0 ); + #elif defined( SHADOWMAP_TYPE_VSM ) + shadow = VSMShadow( shadowMap, shadowCoord.xy, shadowCoord.z ); + #else + shadow = texture2DCompare( shadowMap, shadowCoord.xy, shadowCoord.z ); + #endif + } + return mix( 1.0, shadow, shadowIntensity ); + } + vec2 cubeToUV( vec3 v, float texelSizeY ) { + vec3 absV = abs( v ); + float scaleToCube = 1.0 / max( absV.x, max( absV.y, absV.z ) ); + absV *= scaleToCube; + v *= scaleToCube * ( 1.0 - 2.0 * texelSizeY ); + vec2 planar = v.xy; + float almostATexel = 1.5 * texelSizeY; + float almostOne = 1.0 - almostATexel; + if ( absV.z >= almostOne ) { + if ( v.z > 0.0 ) + planar.x = 4.0 - v.x; + } else if ( absV.x >= almostOne ) { + float signX = sign( v.x ); + planar.x = v.z * signX + 2.0 * signX; + } else if ( absV.y >= almostOne ) { + float signY = sign( v.y ); + planar.x = v.x + 2.0 * signY + 2.0; + planar.y = v.z * signY - 2.0; + } + return vec2( 0.125, 0.25 ) * planar + vec2( 0.375, 0.75 ); + } + float getPointShadow( sampler2D shadowMap, vec2 shadowMapSize, float shadowIntensity, float shadowBias, float shadowRadius, vec4 shadowCoord, float shadowCameraNear, float shadowCameraFar ) { + float shadow = 1.0; + vec3 lightToPosition = shadowCoord.xyz; + + float lightToPositionLength = length( lightToPosition ); + if ( lightToPositionLength - shadowCameraFar <= 0.0 && lightToPositionLength - shadowCameraNear >= 0.0 ) { + float dp = ( lightToPositionLength - shadowCameraNear ) / ( shadowCameraFar - shadowCameraNear ); dp += shadowBias; + vec3 bd3D = normalize( lightToPosition ); + vec2 texelSize = vec2( 1.0 ) / ( shadowMapSize * vec2( 4.0, 2.0 ) ); + #if defined( SHADOWMAP_TYPE_PCF ) || defined( SHADOWMAP_TYPE_PCF_SOFT ) || defined( SHADOWMAP_TYPE_VSM ) + vec2 offset = vec2( - 1, 1 ) * shadowRadius * texelSize.y; + shadow = ( + texture2DCompare( shadowMap, cubeToUV( bd3D + offset.xyy, texelSize.y ), dp ) + + texture2DCompare( shadowMap, cubeToUV( bd3D + offset.yyy, texelSize.y ), dp ) + + texture2DCompare( shadowMap, cubeToUV( bd3D + offset.xyx, texelSize.y ), dp ) + + texture2DCompare( shadowMap, cubeToUV( bd3D + offset.yyx, texelSize.y ), dp ) + + texture2DCompare( shadowMap, cubeToUV( bd3D, texelSize.y ), dp ) + + texture2DCompare( shadowMap, cubeToUV( bd3D + offset.xxy, texelSize.y ), dp ) + + texture2DCompare( shadowMap, cubeToUV( bd3D + offset.yxy, texelSize.y ), dp ) + + texture2DCompare( shadowMap, cubeToUV( bd3D + offset.xxx, texelSize.y ), dp ) + + texture2DCompare( shadowMap, cubeToUV( bd3D + offset.yxx, texelSize.y ), dp ) + ) * ( 1.0 / 9.0 ); + #else + shadow = texture2DCompare( shadowMap, cubeToUV( bd3D, texelSize.y ), dp ); + #endif + } + return mix( 1.0, shadow, shadowIntensity ); + } +#endif`,Oq=`#if NUM_SPOT_LIGHT_COORDS > 0 + uniform mat4 spotLightMatrix[ NUM_SPOT_LIGHT_COORDS ]; + varying vec4 vSpotLightCoord[ NUM_SPOT_LIGHT_COORDS ]; +#endif +#ifdef USE_SHADOWMAP + #if NUM_DIR_LIGHT_SHADOWS > 0 + uniform mat4 directionalShadowMatrix[ NUM_DIR_LIGHT_SHADOWS ]; + varying vec4 vDirectionalShadowCoord[ NUM_DIR_LIGHT_SHADOWS ]; + struct DirectionalLightShadow { + float shadowIntensity; + float shadowBias; + float shadowNormalBias; + float shadowRadius; + vec2 shadowMapSize; + }; + uniform DirectionalLightShadow directionalLightShadows[ NUM_DIR_LIGHT_SHADOWS ]; + #endif + #if NUM_SPOT_LIGHT_SHADOWS > 0 + struct SpotLightShadow { + float shadowIntensity; + float shadowBias; + float shadowNormalBias; + float shadowRadius; + vec2 shadowMapSize; + }; + uniform SpotLightShadow spotLightShadows[ NUM_SPOT_LIGHT_SHADOWS ]; + #endif + #if NUM_POINT_LIGHT_SHADOWS > 0 + uniform mat4 pointShadowMatrix[ NUM_POINT_LIGHT_SHADOWS ]; + varying vec4 vPointShadowCoord[ NUM_POINT_LIGHT_SHADOWS ]; + struct PointLightShadow { + float shadowIntensity; + float shadowBias; + float shadowNormalBias; + float shadowRadius; + vec2 shadowMapSize; + float shadowCameraNear; + float shadowCameraFar; + }; + uniform PointLightShadow pointLightShadows[ NUM_POINT_LIGHT_SHADOWS ]; + #endif +#endif`,Iq=`#if ( defined( USE_SHADOWMAP ) && ( NUM_DIR_LIGHT_SHADOWS > 0 || NUM_POINT_LIGHT_SHADOWS > 0 ) ) || ( NUM_SPOT_LIGHT_COORDS > 0 ) + vec3 shadowWorldNormal = inverseTransformDirection( transformedNormal, viewMatrix ); + vec4 shadowWorldPosition; +#endif +#if defined( USE_SHADOWMAP ) + #if NUM_DIR_LIGHT_SHADOWS > 0 + #pragma unroll_loop_start + for ( int i = 0; i < NUM_DIR_LIGHT_SHADOWS; i ++ ) { + shadowWorldPosition = worldPosition + vec4( shadowWorldNormal * directionalLightShadows[ i ].shadowNormalBias, 0 ); + vDirectionalShadowCoord[ i ] = directionalShadowMatrix[ i ] * shadowWorldPosition; + } + #pragma unroll_loop_end + #endif + #if NUM_POINT_LIGHT_SHADOWS > 0 + #pragma unroll_loop_start + for ( int i = 0; i < NUM_POINT_LIGHT_SHADOWS; i ++ ) { + shadowWorldPosition = worldPosition + vec4( shadowWorldNormal * pointLightShadows[ i ].shadowNormalBias, 0 ); + vPointShadowCoord[ i ] = pointShadowMatrix[ i ] * shadowWorldPosition; + } + #pragma unroll_loop_end + #endif +#endif +#if NUM_SPOT_LIGHT_COORDS > 0 + #pragma unroll_loop_start + for ( int i = 0; i < NUM_SPOT_LIGHT_COORDS; i ++ ) { + shadowWorldPosition = worldPosition; + #if ( defined( USE_SHADOWMAP ) && UNROLLED_LOOP_INDEX < NUM_SPOT_LIGHT_SHADOWS ) + shadowWorldPosition.xyz += shadowWorldNormal * spotLightShadows[ i ].shadowNormalBias; + #endif + vSpotLightCoord[ i ] = spotLightMatrix[ i ] * shadowWorldPosition; + } + #pragma unroll_loop_end +#endif`,Fq=`float getShadowMask() { + float shadow = 1.0; + #ifdef USE_SHADOWMAP + #if NUM_DIR_LIGHT_SHADOWS > 0 + DirectionalLightShadow directionalLight; + #pragma unroll_loop_start + for ( int i = 0; i < NUM_DIR_LIGHT_SHADOWS; i ++ ) { + directionalLight = directionalLightShadows[ i ]; + shadow *= receiveShadow ? getShadow( directionalShadowMap[ i ], directionalLight.shadowMapSize, directionalLight.shadowIntensity, directionalLight.shadowBias, directionalLight.shadowRadius, vDirectionalShadowCoord[ i ] ) : 1.0; + } + #pragma unroll_loop_end + #endif + #if NUM_SPOT_LIGHT_SHADOWS > 0 + SpotLightShadow spotLight; + #pragma unroll_loop_start + for ( int i = 0; i < NUM_SPOT_LIGHT_SHADOWS; i ++ ) { + spotLight = spotLightShadows[ i ]; + shadow *= receiveShadow ? getShadow( spotShadowMap[ i ], spotLight.shadowMapSize, spotLight.shadowIntensity, spotLight.shadowBias, spotLight.shadowRadius, vSpotLightCoord[ i ] ) : 1.0; + } + #pragma unroll_loop_end + #endif + #if NUM_POINT_LIGHT_SHADOWS > 0 + PointLightShadow pointLight; + #pragma unroll_loop_start + for ( int i = 0; i < NUM_POINT_LIGHT_SHADOWS; i ++ ) { + pointLight = pointLightShadows[ i ]; + shadow *= receiveShadow ? getPointShadow( pointShadowMap[ i ], pointLight.shadowMapSize, pointLight.shadowIntensity, pointLight.shadowBias, pointLight.shadowRadius, vPointShadowCoord[ i ], pointLight.shadowCameraNear, pointLight.shadowCameraFar ) : 1.0; + } + #pragma unroll_loop_end + #endif + #endif + return shadow; +}`,kq=`#ifdef USE_SKINNING + mat4 boneMatX = getBoneMatrix( skinIndex.x ); + mat4 boneMatY = getBoneMatrix( skinIndex.y ); + mat4 boneMatZ = getBoneMatrix( skinIndex.z ); + mat4 boneMatW = getBoneMatrix( skinIndex.w ); +#endif`,zq=`#ifdef USE_SKINNING + uniform mat4 bindMatrix; + uniform mat4 bindMatrixInverse; + uniform highp sampler2D boneTexture; + mat4 getBoneMatrix( const in float i ) { + int size = textureSize( boneTexture, 0 ).x; + int j = int( i ) * 4; + int x = j % size; + int y = j / size; + vec4 v1 = texelFetch( boneTexture, ivec2( x, y ), 0 ); + vec4 v2 = texelFetch( boneTexture, ivec2( x + 1, y ), 0 ); + vec4 v3 = texelFetch( boneTexture, ivec2( x + 2, y ), 0 ); + vec4 v4 = texelFetch( boneTexture, ivec2( x + 3, y ), 0 ); + return mat4( v1, v2, v3, v4 ); + } +#endif`,Gq=`#ifdef USE_SKINNING + vec4 skinVertex = bindMatrix * vec4( transformed, 1.0 ); + vec4 skinned = vec4( 0.0 ); + skinned += boneMatX * skinVertex * skinWeight.x; + skinned += boneMatY * skinVertex * skinWeight.y; + skinned += boneMatZ * skinVertex * skinWeight.z; + skinned += boneMatW * skinVertex * skinWeight.w; + transformed = ( bindMatrixInverse * skinned ).xyz; +#endif`,qq=`#ifdef USE_SKINNING + mat4 skinMatrix = mat4( 0.0 ); + skinMatrix += skinWeight.x * boneMatX; + skinMatrix += skinWeight.y * boneMatY; + skinMatrix += skinWeight.z * boneMatZ; + skinMatrix += skinWeight.w * boneMatW; + skinMatrix = bindMatrixInverse * skinMatrix * bindMatrix; + objectNormal = vec4( skinMatrix * vec4( objectNormal, 0.0 ) ).xyz; + #ifdef USE_TANGENT + objectTangent = vec4( skinMatrix * vec4( objectTangent, 0.0 ) ).xyz; + #endif +#endif`,Vq=`float specularStrength; +#ifdef USE_SPECULARMAP + vec4 texelSpecular = texture2D( specularMap, vSpecularMapUv ); + specularStrength = texelSpecular.r; +#else + specularStrength = 1.0; +#endif`,Hq=`#ifdef USE_SPECULARMAP + uniform sampler2D specularMap; +#endif`,jq=`#if defined( TONE_MAPPING ) + gl_FragColor.rgb = toneMapping( gl_FragColor.rgb ); +#endif`,Wq=`#ifndef saturate +#define saturate( a ) clamp( a, 0.0, 1.0 ) +#endif +uniform float toneMappingExposure; +vec3 LinearToneMapping( vec3 color ) { + return saturate( toneMappingExposure * color ); +} +vec3 ReinhardToneMapping( vec3 color ) { + color *= toneMappingExposure; + return saturate( color / ( vec3( 1.0 ) + color ) ); +} +vec3 CineonToneMapping( vec3 color ) { + color *= toneMappingExposure; + color = max( vec3( 0.0 ), color - 0.004 ); + return pow( ( color * ( 6.2 * color + 0.5 ) ) / ( color * ( 6.2 * color + 1.7 ) + 0.06 ), vec3( 2.2 ) ); +} +vec3 RRTAndODTFit( vec3 v ) { + vec3 a = v * ( v + 0.0245786 ) - 0.000090537; + vec3 b = v * ( 0.983729 * v + 0.4329510 ) + 0.238081; + return a / b; +} +vec3 ACESFilmicToneMapping( vec3 color ) { + const mat3 ACESInputMat = mat3( + vec3( 0.59719, 0.07600, 0.02840 ), vec3( 0.35458, 0.90834, 0.13383 ), + vec3( 0.04823, 0.01566, 0.83777 ) + ); + const mat3 ACESOutputMat = mat3( + vec3( 1.60475, -0.10208, -0.00327 ), vec3( -0.53108, 1.10813, -0.07276 ), + vec3( -0.07367, -0.00605, 1.07602 ) + ); + color *= toneMappingExposure / 0.6; + color = ACESInputMat * color; + color = RRTAndODTFit( color ); + color = ACESOutputMat * color; + return saturate( color ); +} +const mat3 LINEAR_REC2020_TO_LINEAR_SRGB = mat3( + vec3( 1.6605, - 0.1246, - 0.0182 ), + vec3( - 0.5876, 1.1329, - 0.1006 ), + vec3( - 0.0728, - 0.0083, 1.1187 ) +); +const mat3 LINEAR_SRGB_TO_LINEAR_REC2020 = mat3( + vec3( 0.6274, 0.0691, 0.0164 ), + vec3( 0.3293, 0.9195, 0.0880 ), + vec3( 0.0433, 0.0113, 0.8956 ) +); +vec3 agxDefaultContrastApprox( vec3 x ) { + vec3 x2 = x * x; + vec3 x4 = x2 * x2; + return + 15.5 * x4 * x2 + - 40.14 * x4 * x + + 31.96 * x4 + - 6.868 * x2 * x + + 0.4298 * x2 + + 0.1191 * x + - 0.00232; +} +vec3 AgXToneMapping( vec3 color ) { + const mat3 AgXInsetMatrix = mat3( + vec3( 0.856627153315983, 0.137318972929847, 0.11189821299995 ), + vec3( 0.0951212405381588, 0.761241990602591, 0.0767994186031903 ), + vec3( 0.0482516061458583, 0.101439036467562, 0.811302368396859 ) + ); + const mat3 AgXOutsetMatrix = mat3( + vec3( 1.1271005818144368, - 0.1413297634984383, - 0.14132976349843826 ), + vec3( - 0.11060664309660323, 1.157823702216272, - 0.11060664309660294 ), + vec3( - 0.016493938717834573, - 0.016493938717834257, 1.2519364065950405 ) + ); + const float AgxMinEv = - 12.47393; const float AgxMaxEv = 4.026069; + color *= toneMappingExposure; + color = LINEAR_SRGB_TO_LINEAR_REC2020 * color; + color = AgXInsetMatrix * color; + color = max( color, 1e-10 ); color = log2( color ); + color = ( color - AgxMinEv ) / ( AgxMaxEv - AgxMinEv ); + color = clamp( color, 0.0, 1.0 ); + color = agxDefaultContrastApprox( color ); + color = AgXOutsetMatrix * color; + color = pow( max( vec3( 0.0 ), color ), vec3( 2.2 ) ); + color = LINEAR_REC2020_TO_LINEAR_SRGB * color; + color = clamp( color, 0.0, 1.0 ); + return color; +} +vec3 NeutralToneMapping( vec3 color ) { + const float StartCompression = 0.8 - 0.04; + const float Desaturation = 0.15; + color *= toneMappingExposure; + float x = min( color.r, min( color.g, color.b ) ); + float offset = x < 0.08 ? x - 6.25 * x * x : 0.04; + color -= offset; + float peak = max( color.r, max( color.g, color.b ) ); + if ( peak < StartCompression ) return color; + float d = 1. - StartCompression; + float newPeak = 1. - d * d / ( peak + d - StartCompression ); + color *= newPeak / peak; + float g = 1. - 1. / ( Desaturation * ( peak - newPeak ) + 1. ); + return mix( color, vec3( newPeak ), g ); +} +vec3 CustomToneMapping( vec3 color ) { return color; }`,$q=`#ifdef USE_TRANSMISSION + material.transmission = transmission; + material.transmissionAlpha = 1.0; + material.thickness = thickness; + material.attenuationDistance = attenuationDistance; + material.attenuationColor = attenuationColor; + #ifdef USE_TRANSMISSIONMAP + material.transmission *= texture2D( transmissionMap, vTransmissionMapUv ).r; + #endif + #ifdef USE_THICKNESSMAP + material.thickness *= texture2D( thicknessMap, vThicknessMapUv ).g; + #endif + vec3 pos = vWorldPosition; + vec3 v = normalize( cameraPosition - pos ); + vec3 n = inverseTransformDirection( normal, viewMatrix ); + vec4 transmitted = getIBLVolumeRefraction( + n, v, material.roughness, material.diffuseColor, material.specularColor, material.specularF90, + pos, modelMatrix, viewMatrix, projectionMatrix, material.dispersion, material.ior, material.thickness, + material.attenuationColor, material.attenuationDistance ); + material.transmissionAlpha = mix( material.transmissionAlpha, transmitted.a, material.transmission ); + totalDiffuse = mix( totalDiffuse, transmitted.rgb, material.transmission ); +#endif`,Xq=`#ifdef USE_TRANSMISSION + uniform float transmission; + uniform float thickness; + uniform float attenuationDistance; + uniform vec3 attenuationColor; + #ifdef USE_TRANSMISSIONMAP + uniform sampler2D transmissionMap; + #endif + #ifdef USE_THICKNESSMAP + uniform sampler2D thicknessMap; + #endif + uniform vec2 transmissionSamplerSize; + uniform sampler2D transmissionSamplerMap; + uniform mat4 modelMatrix; + uniform mat4 projectionMatrix; + varying vec3 vWorldPosition; + float w0( float a ) { + return ( 1.0 / 6.0 ) * ( a * ( a * ( - a + 3.0 ) - 3.0 ) + 1.0 ); + } + float w1( float a ) { + return ( 1.0 / 6.0 ) * ( a * a * ( 3.0 * a - 6.0 ) + 4.0 ); + } + float w2( float a ){ + return ( 1.0 / 6.0 ) * ( a * ( a * ( - 3.0 * a + 3.0 ) + 3.0 ) + 1.0 ); + } + float w3( float a ) { + return ( 1.0 / 6.0 ) * ( a * a * a ); + } + float g0( float a ) { + return w0( a ) + w1( a ); + } + float g1( float a ) { + return w2( a ) + w3( a ); + } + float h0( float a ) { + return - 1.0 + w1( a ) / ( w0( a ) + w1( a ) ); + } + float h1( float a ) { + return 1.0 + w3( a ) / ( w2( a ) + w3( a ) ); + } + vec4 bicubic( sampler2D tex, vec2 uv, vec4 texelSize, float lod ) { + uv = uv * texelSize.zw + 0.5; + vec2 iuv = floor( uv ); + vec2 fuv = fract( uv ); + float g0x = g0( fuv.x ); + float g1x = g1( fuv.x ); + float h0x = h0( fuv.x ); + float h1x = h1( fuv.x ); + float h0y = h0( fuv.y ); + float h1y = h1( fuv.y ); + vec2 p0 = ( vec2( iuv.x + h0x, iuv.y + h0y ) - 0.5 ) * texelSize.xy; + vec2 p1 = ( vec2( iuv.x + h1x, iuv.y + h0y ) - 0.5 ) * texelSize.xy; + vec2 p2 = ( vec2( iuv.x + h0x, iuv.y + h1y ) - 0.5 ) * texelSize.xy; + vec2 p3 = ( vec2( iuv.x + h1x, iuv.y + h1y ) - 0.5 ) * texelSize.xy; + return g0( fuv.y ) * ( g0x * textureLod( tex, p0, lod ) + g1x * textureLod( tex, p1, lod ) ) + + g1( fuv.y ) * ( g0x * textureLod( tex, p2, lod ) + g1x * textureLod( tex, p3, lod ) ); + } + vec4 textureBicubic( sampler2D sampler, vec2 uv, float lod ) { + vec2 fLodSize = vec2( textureSize( sampler, int( lod ) ) ); + vec2 cLodSize = vec2( textureSize( sampler, int( lod + 1.0 ) ) ); + vec2 fLodSizeInv = 1.0 / fLodSize; + vec2 cLodSizeInv = 1.0 / cLodSize; + vec4 fSample = bicubic( sampler, uv, vec4( fLodSizeInv, fLodSize ), floor( lod ) ); + vec4 cSample = bicubic( sampler, uv, vec4( cLodSizeInv, cLodSize ), ceil( lod ) ); + return mix( fSample, cSample, fract( lod ) ); + } + vec3 getVolumeTransmissionRay( const in vec3 n, const in vec3 v, const in float thickness, const in float ior, const in mat4 modelMatrix ) { + vec3 refractionVector = refract( - v, normalize( n ), 1.0 / ior ); + vec3 modelScale; + modelScale.x = length( vec3( modelMatrix[ 0 ].xyz ) ); + modelScale.y = length( vec3( modelMatrix[ 1 ].xyz ) ); + modelScale.z = length( vec3( modelMatrix[ 2 ].xyz ) ); + return normalize( refractionVector ) * thickness * modelScale; + } + float applyIorToRoughness( const in float roughness, const in float ior ) { + return roughness * clamp( ior * 2.0 - 2.0, 0.0, 1.0 ); + } + vec4 getTransmissionSample( const in vec2 fragCoord, const in float roughness, const in float ior ) { + float lod = log2( transmissionSamplerSize.x ) * applyIorToRoughness( roughness, ior ); + return textureBicubic( transmissionSamplerMap, fragCoord.xy, lod ); + } + vec3 volumeAttenuation( const in float transmissionDistance, const in vec3 attenuationColor, const in float attenuationDistance ) { + if ( isinf( attenuationDistance ) ) { + return vec3( 1.0 ); + } else { + vec3 attenuationCoefficient = -log( attenuationColor ) / attenuationDistance; + vec3 transmittance = exp( - attenuationCoefficient * transmissionDistance ); return transmittance; + } + } + vec4 getIBLVolumeRefraction( const in vec3 n, const in vec3 v, const in float roughness, const in vec3 diffuseColor, + const in vec3 specularColor, const in float specularF90, const in vec3 position, const in mat4 modelMatrix, + const in mat4 viewMatrix, const in mat4 projMatrix, const in float dispersion, const in float ior, const in float thickness, + const in vec3 attenuationColor, const in float attenuationDistance ) { + vec4 transmittedLight; + vec3 transmittance; + #ifdef USE_DISPERSION + float halfSpread = ( ior - 1.0 ) * 0.025 * dispersion; + vec3 iors = vec3( ior - halfSpread, ior, ior + halfSpread ); + for ( int i = 0; i < 3; i ++ ) { + vec3 transmissionRay = getVolumeTransmissionRay( n, v, thickness, iors[ i ], modelMatrix ); + vec3 refractedRayExit = position + transmissionRay; + vec4 ndcPos = projMatrix * viewMatrix * vec4( refractedRayExit, 1.0 ); + vec2 refractionCoords = ndcPos.xy / ndcPos.w; + refractionCoords += 1.0; + refractionCoords /= 2.0; + vec4 transmissionSample = getTransmissionSample( refractionCoords, roughness, iors[ i ] ); + transmittedLight[ i ] = transmissionSample[ i ]; + transmittedLight.a += transmissionSample.a; + transmittance[ i ] = diffuseColor[ i ] * volumeAttenuation( length( transmissionRay ), attenuationColor, attenuationDistance )[ i ]; + } + transmittedLight.a /= 3.0; + #else + vec3 transmissionRay = getVolumeTransmissionRay( n, v, thickness, ior, modelMatrix ); + vec3 refractedRayExit = position + transmissionRay; + vec4 ndcPos = projMatrix * viewMatrix * vec4( refractedRayExit, 1.0 ); + vec2 refractionCoords = ndcPos.xy / ndcPos.w; + refractionCoords += 1.0; + refractionCoords /= 2.0; + transmittedLight = getTransmissionSample( refractionCoords, roughness, ior ); + transmittance = diffuseColor * volumeAttenuation( length( transmissionRay ), attenuationColor, attenuationDistance ); + #endif + vec3 attenuatedColor = transmittance * transmittedLight.rgb; + vec3 F = EnvironmentBRDF( n, v, specularColor, specularF90, roughness ); + float transmittanceFactor = ( transmittance.r + transmittance.g + transmittance.b ) / 3.0; + return vec4( ( 1.0 - F ) * attenuatedColor, 1.0 - ( 1.0 - transmittedLight.a ) * transmittanceFactor ); + } +#endif`,Yq=`#if defined( USE_UV ) || defined( USE_ANISOTROPY ) + varying vec2 vUv; +#endif +#ifdef USE_MAP + varying vec2 vMapUv; +#endif +#ifdef USE_ALPHAMAP + varying vec2 vAlphaMapUv; +#endif +#ifdef USE_LIGHTMAP + varying vec2 vLightMapUv; +#endif +#ifdef USE_AOMAP + varying vec2 vAoMapUv; +#endif +#ifdef USE_BUMPMAP + varying vec2 vBumpMapUv; +#endif +#ifdef USE_NORMALMAP + varying vec2 vNormalMapUv; +#endif +#ifdef USE_EMISSIVEMAP + varying vec2 vEmissiveMapUv; +#endif +#ifdef USE_METALNESSMAP + varying vec2 vMetalnessMapUv; +#endif +#ifdef USE_ROUGHNESSMAP + varying vec2 vRoughnessMapUv; +#endif +#ifdef USE_ANISOTROPYMAP + varying vec2 vAnisotropyMapUv; +#endif +#ifdef USE_CLEARCOATMAP + varying vec2 vClearcoatMapUv; +#endif +#ifdef USE_CLEARCOAT_NORMALMAP + varying vec2 vClearcoatNormalMapUv; +#endif +#ifdef USE_CLEARCOAT_ROUGHNESSMAP + varying vec2 vClearcoatRoughnessMapUv; +#endif +#ifdef USE_IRIDESCENCEMAP + varying vec2 vIridescenceMapUv; +#endif +#ifdef USE_IRIDESCENCE_THICKNESSMAP + varying vec2 vIridescenceThicknessMapUv; +#endif +#ifdef USE_SHEEN_COLORMAP + varying vec2 vSheenColorMapUv; +#endif +#ifdef USE_SHEEN_ROUGHNESSMAP + varying vec2 vSheenRoughnessMapUv; +#endif +#ifdef USE_SPECULARMAP + varying vec2 vSpecularMapUv; +#endif +#ifdef USE_SPECULAR_COLORMAP + varying vec2 vSpecularColorMapUv; +#endif +#ifdef USE_SPECULAR_INTENSITYMAP + varying vec2 vSpecularIntensityMapUv; +#endif +#ifdef USE_TRANSMISSIONMAP + uniform mat3 transmissionMapTransform; + varying vec2 vTransmissionMapUv; +#endif +#ifdef USE_THICKNESSMAP + uniform mat3 thicknessMapTransform; + varying vec2 vThicknessMapUv; +#endif`,Qq=`#if defined( USE_UV ) || defined( USE_ANISOTROPY ) + varying vec2 vUv; +#endif +#ifdef USE_MAP + uniform mat3 mapTransform; + varying vec2 vMapUv; +#endif +#ifdef USE_ALPHAMAP + uniform mat3 alphaMapTransform; + varying vec2 vAlphaMapUv; +#endif +#ifdef USE_LIGHTMAP + uniform mat3 lightMapTransform; + varying vec2 vLightMapUv; +#endif +#ifdef USE_AOMAP + uniform mat3 aoMapTransform; + varying vec2 vAoMapUv; +#endif +#ifdef USE_BUMPMAP + uniform mat3 bumpMapTransform; + varying vec2 vBumpMapUv; +#endif +#ifdef USE_NORMALMAP + uniform mat3 normalMapTransform; + varying vec2 vNormalMapUv; +#endif +#ifdef USE_DISPLACEMENTMAP + uniform mat3 displacementMapTransform; + varying vec2 vDisplacementMapUv; +#endif +#ifdef USE_EMISSIVEMAP + uniform mat3 emissiveMapTransform; + varying vec2 vEmissiveMapUv; +#endif +#ifdef USE_METALNESSMAP + uniform mat3 metalnessMapTransform; + varying vec2 vMetalnessMapUv; +#endif +#ifdef USE_ROUGHNESSMAP + uniform mat3 roughnessMapTransform; + varying vec2 vRoughnessMapUv; +#endif +#ifdef USE_ANISOTROPYMAP + uniform mat3 anisotropyMapTransform; + varying vec2 vAnisotropyMapUv; +#endif +#ifdef USE_CLEARCOATMAP + uniform mat3 clearcoatMapTransform; + varying vec2 vClearcoatMapUv; +#endif +#ifdef USE_CLEARCOAT_NORMALMAP + uniform mat3 clearcoatNormalMapTransform; + varying vec2 vClearcoatNormalMapUv; +#endif +#ifdef USE_CLEARCOAT_ROUGHNESSMAP + uniform mat3 clearcoatRoughnessMapTransform; + varying vec2 vClearcoatRoughnessMapUv; +#endif +#ifdef USE_SHEEN_COLORMAP + uniform mat3 sheenColorMapTransform; + varying vec2 vSheenColorMapUv; +#endif +#ifdef USE_SHEEN_ROUGHNESSMAP + uniform mat3 sheenRoughnessMapTransform; + varying vec2 vSheenRoughnessMapUv; +#endif +#ifdef USE_IRIDESCENCEMAP + uniform mat3 iridescenceMapTransform; + varying vec2 vIridescenceMapUv; +#endif +#ifdef USE_IRIDESCENCE_THICKNESSMAP + uniform mat3 iridescenceThicknessMapTransform; + varying vec2 vIridescenceThicknessMapUv; +#endif +#ifdef USE_SPECULARMAP + uniform mat3 specularMapTransform; + varying vec2 vSpecularMapUv; +#endif +#ifdef USE_SPECULAR_COLORMAP + uniform mat3 specularColorMapTransform; + varying vec2 vSpecularColorMapUv; +#endif +#ifdef USE_SPECULAR_INTENSITYMAP + uniform mat3 specularIntensityMapTransform; + varying vec2 vSpecularIntensityMapUv; +#endif +#ifdef USE_TRANSMISSIONMAP + uniform mat3 transmissionMapTransform; + varying vec2 vTransmissionMapUv; +#endif +#ifdef USE_THICKNESSMAP + uniform mat3 thicknessMapTransform; + varying vec2 vThicknessMapUv; +#endif`,Kq=`#if defined( USE_UV ) || defined( USE_ANISOTROPY ) + vUv = vec3( uv, 1 ).xy; +#endif +#ifdef USE_MAP + vMapUv = ( mapTransform * vec3( MAP_UV, 1 ) ).xy; +#endif +#ifdef USE_ALPHAMAP + vAlphaMapUv = ( alphaMapTransform * vec3( ALPHAMAP_UV, 1 ) ).xy; +#endif +#ifdef USE_LIGHTMAP + vLightMapUv = ( lightMapTransform * vec3( LIGHTMAP_UV, 1 ) ).xy; +#endif +#ifdef USE_AOMAP + vAoMapUv = ( aoMapTransform * vec3( AOMAP_UV, 1 ) ).xy; +#endif +#ifdef USE_BUMPMAP + vBumpMapUv = ( bumpMapTransform * vec3( BUMPMAP_UV, 1 ) ).xy; +#endif +#ifdef USE_NORMALMAP + vNormalMapUv = ( normalMapTransform * vec3( NORMALMAP_UV, 1 ) ).xy; +#endif +#ifdef USE_DISPLACEMENTMAP + vDisplacementMapUv = ( displacementMapTransform * vec3( DISPLACEMENTMAP_UV, 1 ) ).xy; +#endif +#ifdef USE_EMISSIVEMAP + vEmissiveMapUv = ( emissiveMapTransform * vec3( EMISSIVEMAP_UV, 1 ) ).xy; +#endif +#ifdef USE_METALNESSMAP + vMetalnessMapUv = ( metalnessMapTransform * vec3( METALNESSMAP_UV, 1 ) ).xy; +#endif +#ifdef USE_ROUGHNESSMAP + vRoughnessMapUv = ( roughnessMapTransform * vec3( ROUGHNESSMAP_UV, 1 ) ).xy; +#endif +#ifdef USE_ANISOTROPYMAP + vAnisotropyMapUv = ( anisotropyMapTransform * vec3( ANISOTROPYMAP_UV, 1 ) ).xy; +#endif +#ifdef USE_CLEARCOATMAP + vClearcoatMapUv = ( clearcoatMapTransform * vec3( CLEARCOATMAP_UV, 1 ) ).xy; +#endif +#ifdef USE_CLEARCOAT_NORMALMAP + vClearcoatNormalMapUv = ( clearcoatNormalMapTransform * vec3( CLEARCOAT_NORMALMAP_UV, 1 ) ).xy; +#endif +#ifdef USE_CLEARCOAT_ROUGHNESSMAP + vClearcoatRoughnessMapUv = ( clearcoatRoughnessMapTransform * vec3( CLEARCOAT_ROUGHNESSMAP_UV, 1 ) ).xy; +#endif +#ifdef USE_IRIDESCENCEMAP + vIridescenceMapUv = ( iridescenceMapTransform * vec3( IRIDESCENCEMAP_UV, 1 ) ).xy; +#endif +#ifdef USE_IRIDESCENCE_THICKNESSMAP + vIridescenceThicknessMapUv = ( iridescenceThicknessMapTransform * vec3( IRIDESCENCE_THICKNESSMAP_UV, 1 ) ).xy; +#endif +#ifdef USE_SHEEN_COLORMAP + vSheenColorMapUv = ( sheenColorMapTransform * vec3( SHEEN_COLORMAP_UV, 1 ) ).xy; +#endif +#ifdef USE_SHEEN_ROUGHNESSMAP + vSheenRoughnessMapUv = ( sheenRoughnessMapTransform * vec3( SHEEN_ROUGHNESSMAP_UV, 1 ) ).xy; +#endif +#ifdef USE_SPECULARMAP + vSpecularMapUv = ( specularMapTransform * vec3( SPECULARMAP_UV, 1 ) ).xy; +#endif +#ifdef USE_SPECULAR_COLORMAP + vSpecularColorMapUv = ( specularColorMapTransform * vec3( SPECULAR_COLORMAP_UV, 1 ) ).xy; +#endif +#ifdef USE_SPECULAR_INTENSITYMAP + vSpecularIntensityMapUv = ( specularIntensityMapTransform * vec3( SPECULAR_INTENSITYMAP_UV, 1 ) ).xy; +#endif +#ifdef USE_TRANSMISSIONMAP + vTransmissionMapUv = ( transmissionMapTransform * vec3( TRANSMISSIONMAP_UV, 1 ) ).xy; +#endif +#ifdef USE_THICKNESSMAP + vThicknessMapUv = ( thicknessMapTransform * vec3( THICKNESSMAP_UV, 1 ) ).xy; +#endif`,Zq=`#if defined( USE_ENVMAP ) || defined( DISTANCE ) || defined ( USE_SHADOWMAP ) || defined ( USE_TRANSMISSION ) || NUM_SPOT_LIGHT_COORDS > 0 + vec4 worldPosition = vec4( transformed, 1.0 ); + #ifdef USE_BATCHING + worldPosition = batchingMatrix * worldPosition; + #endif + #ifdef USE_INSTANCING + worldPosition = instanceMatrix * worldPosition; + #endif + worldPosition = modelMatrix * worldPosition; +#endif`;const Jq=`varying vec2 vUv; +uniform mat3 uvTransform; +void main() { + vUv = ( uvTransform * vec3( uv, 1 ) ).xy; + gl_Position = vec4( position.xy, 1.0, 1.0 ); +}`,eV=`uniform sampler2D t2D; +uniform float backgroundIntensity; +varying vec2 vUv; +void main() { + vec4 texColor = texture2D( t2D, vUv ); + #ifdef DECODE_VIDEO_TEXTURE + texColor = vec4( mix( pow( texColor.rgb * 0.9478672986 + vec3( 0.0521327014 ), vec3( 2.4 ) ), texColor.rgb * 0.0773993808, vec3( lessThanEqual( texColor.rgb, vec3( 0.04045 ) ) ) ), texColor.w ); + #endif + texColor.rgb *= backgroundIntensity; + gl_FragColor = texColor; + #include + #include +}`,tV=`varying vec3 vWorldDirection; +#include +void main() { + vWorldDirection = transformDirection( position, modelMatrix ); + #include + #include + gl_Position.z = gl_Position.w; +}`,nV=`#ifdef ENVMAP_TYPE_CUBE + uniform samplerCube envMap; +#elif defined( ENVMAP_TYPE_CUBE_UV ) + uniform sampler2D envMap; +#endif +uniform float flipEnvMap; +uniform float backgroundBlurriness; +uniform float backgroundIntensity; +uniform mat3 backgroundRotation; +varying vec3 vWorldDirection; +#include +void main() { + #ifdef ENVMAP_TYPE_CUBE + vec4 texColor = textureCube( envMap, backgroundRotation * vec3( flipEnvMap * vWorldDirection.x, vWorldDirection.yz ) ); + #elif defined( ENVMAP_TYPE_CUBE_UV ) + vec4 texColor = textureCubeUV( envMap, backgroundRotation * vWorldDirection, backgroundBlurriness ); + #else + vec4 texColor = vec4( 0.0, 0.0, 0.0, 1.0 ); + #endif + texColor.rgb *= backgroundIntensity; + gl_FragColor = texColor; + #include + #include +}`,iV=`varying vec3 vWorldDirection; +#include +void main() { + vWorldDirection = transformDirection( position, modelMatrix ); + #include + #include + gl_Position.z = gl_Position.w; +}`,rV=`uniform samplerCube tCube; +uniform float tFlip; +uniform float opacity; +varying vec3 vWorldDirection; +void main() { + vec4 texColor = textureCube( tCube, vec3( tFlip * vWorldDirection.x, vWorldDirection.yz ) ); + gl_FragColor = texColor; + gl_FragColor.a *= opacity; + #include + #include +}`,sV=`#include +#include +#include +#include +#include +#include +#include +#include +varying vec2 vHighPrecisionZW; +void main() { + #include + #include + #include + #include + #ifdef USE_DISPLACEMENTMAP + #include + #include + #include + #endif + #include + #include + #include + #include + #include + #include + #include + vHighPrecisionZW = gl_Position.zw; +}`,aV=`#if DEPTH_PACKING == 3200 + uniform float opacity; +#endif +#include +#include +#include +#include +#include +#include +#include +#include +#include +varying vec2 vHighPrecisionZW; +void main() { + vec4 diffuseColor = vec4( 1.0 ); + #include + #if DEPTH_PACKING == 3200 + diffuseColor.a = opacity; + #endif + #include + #include + #include + #include + #include + float fragCoordZ = 0.5 * vHighPrecisionZW[0] / vHighPrecisionZW[1] + 0.5; + #if DEPTH_PACKING == 3200 + gl_FragColor = vec4( vec3( 1.0 - fragCoordZ ), opacity ); + #elif DEPTH_PACKING == 3201 + gl_FragColor = packDepthToRGBA( fragCoordZ ); + #elif DEPTH_PACKING == 3202 + gl_FragColor = vec4( packDepthToRGB( fragCoordZ ), 1.0 ); + #elif DEPTH_PACKING == 3203 + gl_FragColor = vec4( packDepthToRG( fragCoordZ ), 0.0, 1.0 ); + #endif +}`,oV=`#define DISTANCE +varying vec3 vWorldPosition; +#include +#include +#include +#include +#include +#include +#include +void main() { + #include + #include + #include + #include + #ifdef USE_DISPLACEMENTMAP + #include + #include + #include + #endif + #include + #include + #include + #include + #include + #include + #include + vWorldPosition = worldPosition.xyz; +}`,lV=`#define DISTANCE +uniform vec3 referencePosition; +uniform float nearDistance; +uniform float farDistance; +varying vec3 vWorldPosition; +#include +#include +#include +#include +#include +#include +#include +#include +void main () { + vec4 diffuseColor = vec4( 1.0 ); + #include + #include + #include + #include + #include + float dist = length( vWorldPosition - referencePosition ); + dist = ( dist - nearDistance ) / ( farDistance - nearDistance ); + dist = saturate( dist ); + gl_FragColor = packDepthToRGBA( dist ); +}`,uV=`varying vec3 vWorldDirection; +#include +void main() { + vWorldDirection = transformDirection( position, modelMatrix ); + #include + #include +}`,cV=`uniform sampler2D tEquirect; +varying vec3 vWorldDirection; +#include +void main() { + vec3 direction = normalize( vWorldDirection ); + vec2 sampleUV = equirectUv( direction ); + gl_FragColor = texture2D( tEquirect, sampleUV ); + #include + #include +}`,hV=`uniform float scale; +attribute float lineDistance; +varying float vLineDistance; +#include +#include +#include +#include +#include +#include +#include +void main() { + vLineDistance = scale * lineDistance; + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include +}`,fV=`uniform vec3 diffuse; +uniform float opacity; +uniform float dashSize; +uniform float totalSize; +varying float vLineDistance; +#include +#include +#include +#include +#include +#include +#include +void main() { + vec4 diffuseColor = vec4( diffuse, opacity ); + #include + if ( mod( vLineDistance, totalSize ) > dashSize ) { + discard; + } + vec3 outgoingLight = vec3( 0.0 ); + #include + #include + #include + outgoingLight = diffuseColor.rgb; + #include + #include + #include + #include + #include +}`,AV=`#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +void main() { + #include + #include + #include + #include + #include + #if defined ( USE_ENVMAP ) || defined ( USE_SKINNING ) + #include + #include + #include + #include + #include + #endif + #include + #include + #include + #include + #include + #include + #include + #include + #include +}`,dV=`uniform vec3 diffuse; +uniform float opacity; +#ifndef FLAT_SHADED + varying vec3 vNormal; +#endif +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +void main() { + vec4 diffuseColor = vec4( diffuse, opacity ); + #include + #include + #include + #include + #include + #include + #include + #include + ReflectedLight reflectedLight = ReflectedLight( vec3( 0.0 ), vec3( 0.0 ), vec3( 0.0 ), vec3( 0.0 ) ); + #ifdef USE_LIGHTMAP + vec4 lightMapTexel = texture2D( lightMap, vLightMapUv ); + reflectedLight.indirectDiffuse += lightMapTexel.rgb * lightMapIntensity * RECIPROCAL_PI; + #else + reflectedLight.indirectDiffuse += vec3( 1.0 ); + #endif + #include + reflectedLight.indirectDiffuse *= diffuseColor.rgb; + vec3 outgoingLight = reflectedLight.indirectDiffuse; + #include + #include + #include + #include + #include + #include + #include +}`,pV=`#define LAMBERT +varying vec3 vViewPosition; +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +void main() { + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + vViewPosition = - mvPosition.xyz; + #include + #include + #include + #include +}`,mV=`#define LAMBERT +uniform vec3 diffuse; +uniform vec3 emissive; +uniform float opacity; +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +void main() { + vec4 diffuseColor = vec4( diffuse, opacity ); + #include + ReflectedLight reflectedLight = ReflectedLight( vec3( 0.0 ), vec3( 0.0 ), vec3( 0.0 ), vec3( 0.0 ) ); + vec3 totalEmissiveRadiance = emissive; + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + vec3 outgoingLight = reflectedLight.directDiffuse + reflectedLight.indirectDiffuse + totalEmissiveRadiance; + #include + #include + #include + #include + #include + #include + #include +}`,gV=`#define MATCAP +varying vec3 vViewPosition; +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +void main() { + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + vViewPosition = - mvPosition.xyz; +}`,vV=`#define MATCAP +uniform vec3 diffuse; +uniform float opacity; +uniform sampler2D matcap; +varying vec3 vViewPosition; +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +void main() { + vec4 diffuseColor = vec4( diffuse, opacity ); + #include + #include + #include + #include + #include + #include + #include + #include + #include + vec3 viewDir = normalize( vViewPosition ); + vec3 x = normalize( vec3( viewDir.z, 0.0, - viewDir.x ) ); + vec3 y = cross( viewDir, x ); + vec2 uv = vec2( dot( x, normal ), dot( y, normal ) ) * 0.495 + 0.5; + #ifdef USE_MATCAP + vec4 matcapColor = texture2D( matcap, uv ); + #else + vec4 matcapColor = vec4( vec3( mix( 0.2, 0.8, uv.y ) ), 1.0 ); + #endif + vec3 outgoingLight = diffuseColor.rgb * matcapColor.rgb; + #include + #include + #include + #include + #include + #include +}`,_V=`#define NORMAL +#if defined( FLAT_SHADED ) || defined( USE_BUMPMAP ) || defined( USE_NORMALMAP_TANGENTSPACE ) + varying vec3 vViewPosition; +#endif +#include +#include +#include +#include +#include +#include +#include +#include +#include +void main() { + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include +#if defined( FLAT_SHADED ) || defined( USE_BUMPMAP ) || defined( USE_NORMALMAP_TANGENTSPACE ) + vViewPosition = - mvPosition.xyz; +#endif +}`,yV=`#define NORMAL +uniform float opacity; +#if defined( FLAT_SHADED ) || defined( USE_BUMPMAP ) || defined( USE_NORMALMAP_TANGENTSPACE ) + varying vec3 vViewPosition; +#endif +#include +#include +#include +#include +#include +#include +#include +void main() { + vec4 diffuseColor = vec4( 0.0, 0.0, 0.0, opacity ); + #include + #include + #include + #include + gl_FragColor = vec4( packNormalToRGB( normal ), diffuseColor.a ); + #ifdef OPAQUE + gl_FragColor.a = 1.0; + #endif +}`,xV=`#define PHONG +varying vec3 vViewPosition; +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +void main() { + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + vViewPosition = - mvPosition.xyz; + #include + #include + #include + #include +}`,bV=`#define PHONG +uniform vec3 diffuse; +uniform vec3 emissive; +uniform vec3 specular; +uniform float shininess; +uniform float opacity; +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +void main() { + vec4 diffuseColor = vec4( diffuse, opacity ); + #include + ReflectedLight reflectedLight = ReflectedLight( vec3( 0.0 ), vec3( 0.0 ), vec3( 0.0 ), vec3( 0.0 ) ); + vec3 totalEmissiveRadiance = emissive; + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + vec3 outgoingLight = reflectedLight.directDiffuse + reflectedLight.indirectDiffuse + reflectedLight.directSpecular + reflectedLight.indirectSpecular + totalEmissiveRadiance; + #include + #include + #include + #include + #include + #include + #include +}`,SV=`#define STANDARD +varying vec3 vViewPosition; +#ifdef USE_TRANSMISSION + varying vec3 vWorldPosition; +#endif +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +void main() { + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + vViewPosition = - mvPosition.xyz; + #include + #include + #include +#ifdef USE_TRANSMISSION + vWorldPosition = worldPosition.xyz; +#endif +}`,TV=`#define STANDARD +#ifdef PHYSICAL + #define IOR + #define USE_SPECULAR +#endif +uniform vec3 diffuse; +uniform vec3 emissive; +uniform float roughness; +uniform float metalness; +uniform float opacity; +#ifdef IOR + uniform float ior; +#endif +#ifdef USE_SPECULAR + uniform float specularIntensity; + uniform vec3 specularColor; + #ifdef USE_SPECULAR_COLORMAP + uniform sampler2D specularColorMap; + #endif + #ifdef USE_SPECULAR_INTENSITYMAP + uniform sampler2D specularIntensityMap; + #endif +#endif +#ifdef USE_CLEARCOAT + uniform float clearcoat; + uniform float clearcoatRoughness; +#endif +#ifdef USE_DISPERSION + uniform float dispersion; +#endif +#ifdef USE_IRIDESCENCE + uniform float iridescence; + uniform float iridescenceIOR; + uniform float iridescenceThicknessMinimum; + uniform float iridescenceThicknessMaximum; +#endif +#ifdef USE_SHEEN + uniform vec3 sheenColor; + uniform float sheenRoughness; + #ifdef USE_SHEEN_COLORMAP + uniform sampler2D sheenColorMap; + #endif + #ifdef USE_SHEEN_ROUGHNESSMAP + uniform sampler2D sheenRoughnessMap; + #endif +#endif +#ifdef USE_ANISOTROPY + uniform vec2 anisotropyVector; + #ifdef USE_ANISOTROPYMAP + uniform sampler2D anisotropyMap; + #endif +#endif +varying vec3 vViewPosition; +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +void main() { + vec4 diffuseColor = vec4( diffuse, opacity ); + #include + ReflectedLight reflectedLight = ReflectedLight( vec3( 0.0 ), vec3( 0.0 ), vec3( 0.0 ), vec3( 0.0 ) ); + vec3 totalEmissiveRadiance = emissive; + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + vec3 totalDiffuse = reflectedLight.directDiffuse + reflectedLight.indirectDiffuse; + vec3 totalSpecular = reflectedLight.directSpecular + reflectedLight.indirectSpecular; + #include + vec3 outgoingLight = totalDiffuse + totalSpecular + totalEmissiveRadiance; + #ifdef USE_SHEEN + float sheenEnergyComp = 1.0 - 0.157 * max3( material.sheenColor ); + outgoingLight = outgoingLight * sheenEnergyComp + sheenSpecularDirect + sheenSpecularIndirect; + #endif + #ifdef USE_CLEARCOAT + float dotNVcc = saturate( dot( geometryClearcoatNormal, geometryViewDir ) ); + vec3 Fcc = F_Schlick( material.clearcoatF0, material.clearcoatF90, dotNVcc ); + outgoingLight = outgoingLight * ( 1.0 - material.clearcoat * Fcc ) + ( clearcoatSpecularDirect + clearcoatSpecularIndirect ) * material.clearcoat; + #endif + #include + #include + #include + #include + #include + #include +}`,wV=`#define TOON +varying vec3 vViewPosition; +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +void main() { + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + vViewPosition = - mvPosition.xyz; + #include + #include + #include +}`,MV=`#define TOON +uniform vec3 diffuse; +uniform vec3 emissive; +uniform float opacity; +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +void main() { + vec4 diffuseColor = vec4( diffuse, opacity ); + #include + ReflectedLight reflectedLight = ReflectedLight( vec3( 0.0 ), vec3( 0.0 ), vec3( 0.0 ), vec3( 0.0 ) ); + vec3 totalEmissiveRadiance = emissive; + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + vec3 outgoingLight = reflectedLight.directDiffuse + reflectedLight.indirectDiffuse + totalEmissiveRadiance; + #include + #include + #include + #include + #include + #include +}`,EV=`uniform float size; +uniform float scale; +#include +#include +#include +#include +#include +#include +#ifdef USE_POINTS_UV + varying vec2 vUv; + uniform mat3 uvTransform; +#endif +void main() { + #ifdef USE_POINTS_UV + vUv = ( uvTransform * vec3( uv, 1 ) ).xy; + #endif + #include + #include + #include + #include + #include + #include + gl_PointSize = size; + #ifdef USE_SIZEATTENUATION + bool isPerspective = isPerspectiveMatrix( projectionMatrix ); + if ( isPerspective ) gl_PointSize *= ( scale / - mvPosition.z ); + #endif + #include + #include + #include + #include +}`,CV=`uniform vec3 diffuse; +uniform float opacity; +#include +#include +#include +#include +#include +#include +#include +#include +void main() { + vec4 diffuseColor = vec4( diffuse, opacity ); + #include + vec3 outgoingLight = vec3( 0.0 ); + #include + #include + #include + #include + #include + outgoingLight = diffuseColor.rgb; + #include + #include + #include + #include + #include +}`,RV=`#include +#include +#include +#include +#include +#include +#include +void main() { + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include + #include +}`,NV=`uniform vec3 color; +uniform float opacity; +#include +#include +#include +#include +#include +#include +#include +#include +void main() { + #include + gl_FragColor = vec4( color, opacity * ( 1.0 - getShadowMask() ) ); + #include + #include + #include +}`,DV=`uniform float rotation; +uniform vec2 center; +#include +#include +#include +#include +#include +void main() { + #include + vec4 mvPosition = modelViewMatrix[ 3 ]; + vec2 scale = vec2( length( modelMatrix[ 0 ].xyz ), length( modelMatrix[ 1 ].xyz ) ); + #ifndef USE_SIZEATTENUATION + bool isPerspective = isPerspectiveMatrix( projectionMatrix ); + if ( isPerspective ) scale *= - mvPosition.z; + #endif + vec2 alignedPosition = ( position.xy - ( center - vec2( 0.5 ) ) ) * scale; + vec2 rotatedPosition; + rotatedPosition.x = cos( rotation ) * alignedPosition.x - sin( rotation ) * alignedPosition.y; + rotatedPosition.y = sin( rotation ) * alignedPosition.x + cos( rotation ) * alignedPosition.y; + mvPosition.xy += rotatedPosition; + gl_Position = projectionMatrix * mvPosition; + #include + #include + #include +}`,PV=`uniform vec3 diffuse; +uniform float opacity; +#include +#include +#include +#include +#include +#include +#include +#include +#include +void main() { + vec4 diffuseColor = vec4( diffuse, opacity ); + #include + vec3 outgoingLight = vec3( 0.0 ); + #include + #include + #include + #include + #include + outgoingLight = diffuseColor.rgb; + #include + #include + #include + #include +}`,Zn={alphahash_fragment:eG,alphahash_pars_fragment:tG,alphamap_fragment:nG,alphamap_pars_fragment:iG,alphatest_fragment:rG,alphatest_pars_fragment:sG,aomap_fragment:aG,aomap_pars_fragment:oG,batching_pars_vertex:lG,batching_vertex:uG,begin_vertex:cG,beginnormal_vertex:hG,bsdfs:fG,iridescence_fragment:AG,bumpmap_pars_fragment:dG,clipping_planes_fragment:pG,clipping_planes_pars_fragment:mG,clipping_planes_pars_vertex:gG,clipping_planes_vertex:vG,color_fragment:_G,color_pars_fragment:yG,color_pars_vertex:xG,color_vertex:bG,common:SG,cube_uv_reflection_fragment:TG,defaultnormal_vertex:wG,displacementmap_pars_vertex:MG,displacementmap_vertex:EG,emissivemap_fragment:CG,emissivemap_pars_fragment:RG,colorspace_fragment:NG,colorspace_pars_fragment:DG,envmap_fragment:PG,envmap_common_pars_fragment:LG,envmap_pars_fragment:UG,envmap_pars_vertex:BG,envmap_physical_pars_fragment:WG,envmap_vertex:OG,fog_vertex:IG,fog_pars_vertex:FG,fog_fragment:kG,fog_pars_fragment:zG,gradientmap_pars_fragment:GG,lightmap_pars_fragment:qG,lights_lambert_fragment:VG,lights_lambert_pars_fragment:HG,lights_pars_begin:jG,lights_toon_fragment:$G,lights_toon_pars_fragment:XG,lights_phong_fragment:YG,lights_phong_pars_fragment:QG,lights_physical_fragment:KG,lights_physical_pars_fragment:ZG,lights_fragment_begin:JG,lights_fragment_maps:eq,lights_fragment_end:tq,logdepthbuf_fragment:nq,logdepthbuf_pars_fragment:iq,logdepthbuf_pars_vertex:rq,logdepthbuf_vertex:sq,map_fragment:aq,map_pars_fragment:oq,map_particle_fragment:lq,map_particle_pars_fragment:uq,metalnessmap_fragment:cq,metalnessmap_pars_fragment:hq,morphinstance_vertex:fq,morphcolor_vertex:Aq,morphnormal_vertex:dq,morphtarget_pars_vertex:pq,morphtarget_vertex:mq,normal_fragment_begin:gq,normal_fragment_maps:vq,normal_pars_fragment:_q,normal_pars_vertex:yq,normal_vertex:xq,normalmap_pars_fragment:bq,clearcoat_normal_fragment_begin:Sq,clearcoat_normal_fragment_maps:Tq,clearcoat_pars_fragment:wq,iridescence_pars_fragment:Mq,opaque_fragment:Eq,packing:Cq,premultiplied_alpha_fragment:Rq,project_vertex:Nq,dithering_fragment:Dq,dithering_pars_fragment:Pq,roughnessmap_fragment:Lq,roughnessmap_pars_fragment:Uq,shadowmap_pars_fragment:Bq,shadowmap_pars_vertex:Oq,shadowmap_vertex:Iq,shadowmask_pars_fragment:Fq,skinbase_vertex:kq,skinning_pars_vertex:zq,skinning_vertex:Gq,skinnormal_vertex:qq,specularmap_fragment:Vq,specularmap_pars_fragment:Hq,tonemapping_fragment:jq,tonemapping_pars_fragment:Wq,transmission_fragment:$q,transmission_pars_fragment:Xq,uv_pars_fragment:Yq,uv_pars_vertex:Qq,uv_vertex:Kq,worldpos_vertex:Zq,background_vert:Jq,background_frag:eV,backgroundCube_vert:tV,backgroundCube_frag:nV,cube_vert:iV,cube_frag:rV,depth_vert:sV,depth_frag:aV,distanceRGBA_vert:oV,distanceRGBA_frag:lV,equirect_vert:uV,equirect_frag:cV,linedashed_vert:hV,linedashed_frag:fV,meshbasic_vert:AV,meshbasic_frag:dV,meshlambert_vert:pV,meshlambert_frag:mV,meshmatcap_vert:gV,meshmatcap_frag:vV,meshnormal_vert:_V,meshnormal_frag:yV,meshphong_vert:xV,meshphong_frag:bV,meshphysical_vert:SV,meshphysical_frag:TV,meshtoon_vert:wV,meshtoon_frag:MV,points_vert:EV,points_frag:CV,shadow_vert:RV,shadow_frag:NV,sprite_vert:DV,sprite_frag:PV},Kt={common:{diffuse:{value:new an(16777215)},opacity:{value:1},map:{value:null},mapTransform:{value:new Vn},alphaMap:{value:null},alphaMapTransform:{value:new Vn},alphaTest:{value:0}},specularmap:{specularMap:{value:null},specularMapTransform:{value:new Vn}},envmap:{envMap:{value:null},envMapRotation:{value:new Vn},flipEnvMap:{value:-1},reflectivity:{value:1},ior:{value:1.5},refractionRatio:{value:.98}},aomap:{aoMap:{value:null},aoMapIntensity:{value:1},aoMapTransform:{value:new Vn}},lightmap:{lightMap:{value:null},lightMapIntensity:{value:1},lightMapTransform:{value:new Vn}},bumpmap:{bumpMap:{value:null},bumpMapTransform:{value:new Vn},bumpScale:{value:1}},normalmap:{normalMap:{value:null},normalMapTransform:{value:new Vn},normalScale:{value:new dt(1,1)}},displacementmap:{displacementMap:{value:null},displacementMapTransform:{value:new Vn},displacementScale:{value:1},displacementBias:{value:0}},emissivemap:{emissiveMap:{value:null},emissiveMapTransform:{value:new Vn}},metalnessmap:{metalnessMap:{value:null},metalnessMapTransform:{value:new Vn}},roughnessmap:{roughnessMap:{value:null},roughnessMapTransform:{value:new Vn}},gradientmap:{gradientMap:{value:null}},fog:{fogDensity:{value:25e-5},fogNear:{value:1},fogFar:{value:2e3},fogColor:{value:new an(16777215)}},lights:{ambientLightColor:{value:[]},lightProbe:{value:[]},directionalLights:{value:[],properties:{direction:{},color:{}}},directionalLightShadows:{value:[],properties:{shadowIntensity:1,shadowBias:{},shadowNormalBias:{},shadowRadius:{},shadowMapSize:{}}},directionalShadowMap:{value:[]},directionalShadowMatrix:{value:[]},spotLights:{value:[],properties:{color:{},position:{},direction:{},distance:{},coneCos:{},penumbraCos:{},decay:{}}},spotLightShadows:{value:[],properties:{shadowIntensity:1,shadowBias:{},shadowNormalBias:{},shadowRadius:{},shadowMapSize:{}}},spotLightMap:{value:[]},spotShadowMap:{value:[]},spotLightMatrix:{value:[]},pointLights:{value:[],properties:{color:{},position:{},decay:{},distance:{}}},pointLightShadows:{value:[],properties:{shadowIntensity:1,shadowBias:{},shadowNormalBias:{},shadowRadius:{},shadowMapSize:{},shadowCameraNear:{},shadowCameraFar:{}}},pointShadowMap:{value:[]},pointShadowMatrix:{value:[]},hemisphereLights:{value:[],properties:{direction:{},skyColor:{},groundColor:{}}},rectAreaLights:{value:[],properties:{color:{},position:{},width:{},height:{}}},ltc_1:{value:null},ltc_2:{value:null}},points:{diffuse:{value:new an(16777215)},opacity:{value:1},size:{value:1},scale:{value:1},map:{value:null},alphaMap:{value:null},alphaMapTransform:{value:new Vn},alphaTest:{value:0},uvTransform:{value:new Vn}},sprite:{diffuse:{value:new an(16777215)},opacity:{value:1},center:{value:new dt(.5,.5)},rotation:{value:0},map:{value:null},mapTransform:{value:new Vn},alphaMap:{value:null},alphaMapTransform:{value:new Vn},alphaTest:{value:0}}},Ga={basic:{uniforms:_a([Kt.common,Kt.specularmap,Kt.envmap,Kt.aomap,Kt.lightmap,Kt.fog]),vertexShader:Zn.meshbasic_vert,fragmentShader:Zn.meshbasic_frag},lambert:{uniforms:_a([Kt.common,Kt.specularmap,Kt.envmap,Kt.aomap,Kt.lightmap,Kt.emissivemap,Kt.bumpmap,Kt.normalmap,Kt.displacementmap,Kt.fog,Kt.lights,{emissive:{value:new an(0)}}]),vertexShader:Zn.meshlambert_vert,fragmentShader:Zn.meshlambert_frag},phong:{uniforms:_a([Kt.common,Kt.specularmap,Kt.envmap,Kt.aomap,Kt.lightmap,Kt.emissivemap,Kt.bumpmap,Kt.normalmap,Kt.displacementmap,Kt.fog,Kt.lights,{emissive:{value:new an(0)},specular:{value:new an(1118481)},shininess:{value:30}}]),vertexShader:Zn.meshphong_vert,fragmentShader:Zn.meshphong_frag},standard:{uniforms:_a([Kt.common,Kt.envmap,Kt.aomap,Kt.lightmap,Kt.emissivemap,Kt.bumpmap,Kt.normalmap,Kt.displacementmap,Kt.roughnessmap,Kt.metalnessmap,Kt.fog,Kt.lights,{emissive:{value:new an(0)},roughness:{value:1},metalness:{value:0},envMapIntensity:{value:1}}]),vertexShader:Zn.meshphysical_vert,fragmentShader:Zn.meshphysical_frag},toon:{uniforms:_a([Kt.common,Kt.aomap,Kt.lightmap,Kt.emissivemap,Kt.bumpmap,Kt.normalmap,Kt.displacementmap,Kt.gradientmap,Kt.fog,Kt.lights,{emissive:{value:new an(0)}}]),vertexShader:Zn.meshtoon_vert,fragmentShader:Zn.meshtoon_frag},matcap:{uniforms:_a([Kt.common,Kt.bumpmap,Kt.normalmap,Kt.displacementmap,Kt.fog,{matcap:{value:null}}]),vertexShader:Zn.meshmatcap_vert,fragmentShader:Zn.meshmatcap_frag},points:{uniforms:_a([Kt.points,Kt.fog]),vertexShader:Zn.points_vert,fragmentShader:Zn.points_frag},dashed:{uniforms:_a([Kt.common,Kt.fog,{scale:{value:1},dashSize:{value:1},totalSize:{value:2}}]),vertexShader:Zn.linedashed_vert,fragmentShader:Zn.linedashed_frag},depth:{uniforms:_a([Kt.common,Kt.displacementmap]),vertexShader:Zn.depth_vert,fragmentShader:Zn.depth_frag},normal:{uniforms:_a([Kt.common,Kt.bumpmap,Kt.normalmap,Kt.displacementmap,{opacity:{value:1}}]),vertexShader:Zn.meshnormal_vert,fragmentShader:Zn.meshnormal_frag},sprite:{uniforms:_a([Kt.sprite,Kt.fog]),vertexShader:Zn.sprite_vert,fragmentShader:Zn.sprite_frag},background:{uniforms:{uvTransform:{value:new Vn},t2D:{value:null},backgroundIntensity:{value:1}},vertexShader:Zn.background_vert,fragmentShader:Zn.background_frag},backgroundCube:{uniforms:{envMap:{value:null},flipEnvMap:{value:-1},backgroundBlurriness:{value:0},backgroundIntensity:{value:1},backgroundRotation:{value:new Vn}},vertexShader:Zn.backgroundCube_vert,fragmentShader:Zn.backgroundCube_frag},cube:{uniforms:{tCube:{value:null},tFlip:{value:-1},opacity:{value:1}},vertexShader:Zn.cube_vert,fragmentShader:Zn.cube_frag},equirect:{uniforms:{tEquirect:{value:null}},vertexShader:Zn.equirect_vert,fragmentShader:Zn.equirect_frag},distanceRGBA:{uniforms:_a([Kt.common,Kt.displacementmap,{referencePosition:{value:new Ae},nearDistance:{value:1},farDistance:{value:1e3}}]),vertexShader:Zn.distanceRGBA_vert,fragmentShader:Zn.distanceRGBA_frag},shadow:{uniforms:_a([Kt.lights,Kt.fog,{color:{value:new an(0)},opacity:{value:1}}]),vertexShader:Zn.shadow_vert,fragmentShader:Zn.shadow_frag}};Ga.physical={uniforms:_a([Ga.standard.uniforms,{clearcoat:{value:0},clearcoatMap:{value:null},clearcoatMapTransform:{value:new Vn},clearcoatNormalMap:{value:null},clearcoatNormalMapTransform:{value:new Vn},clearcoatNormalScale:{value:new dt(1,1)},clearcoatRoughness:{value:0},clearcoatRoughnessMap:{value:null},clearcoatRoughnessMapTransform:{value:new Vn},dispersion:{value:0},iridescence:{value:0},iridescenceMap:{value:null},iridescenceMapTransform:{value:new Vn},iridescenceIOR:{value:1.3},iridescenceThicknessMinimum:{value:100},iridescenceThicknessMaximum:{value:400},iridescenceThicknessMap:{value:null},iridescenceThicknessMapTransform:{value:new Vn},sheen:{value:0},sheenColor:{value:new an(0)},sheenColorMap:{value:null},sheenColorMapTransform:{value:new Vn},sheenRoughness:{value:1},sheenRoughnessMap:{value:null},sheenRoughnessMapTransform:{value:new Vn},transmission:{value:0},transmissionMap:{value:null},transmissionMapTransform:{value:new Vn},transmissionSamplerSize:{value:new dt},transmissionSamplerMap:{value:null},thickness:{value:0},thicknessMap:{value:null},thicknessMapTransform:{value:new Vn},attenuationDistance:{value:0},attenuationColor:{value:new an(0)},specularColor:{value:new an(1,1,1)},specularColorMap:{value:null},specularColorMapTransform:{value:new Vn},specularIntensity:{value:1},specularIntensityMap:{value:null},specularIntensityMapTransform:{value:new Vn},anisotropyVector:{value:new dt},anisotropyMap:{value:null},anisotropyMapTransform:{value:new Vn}}]),vertexShader:Zn.meshphysical_vert,fragmentShader:Zn.meshphysical_frag};const j2={r:0,b:0,g:0},Tf=new la,LV=new kn;function UV(i,e,t,n,r,s,a){const l=new an(0);let u=s===!0?0:1,h,m,v=null,x=0,S=null;function w(L){let O=L.isScene===!0?L.background:null;return O&&O.isTexture&&(O=(L.backgroundBlurriness>0?t:e).get(O)),O}function R(L){let O=!1;const G=w(L);G===null?E(l,u):G&&G.isColor&&(E(G,1),O=!0);const q=i.xr.getEnvironmentBlendMode();q==="additive"?n.buffers.color.setClear(0,0,0,1,a):q==="alpha-blend"&&n.buffers.color.setClear(0,0,0,0,a),(i.autoClear||O)&&(n.buffers.depth.setTest(!0),n.buffers.depth.setMask(!0),n.buffers.color.setMask(!0),i.clear(i.autoClearColor,i.autoClearDepth,i.autoClearStencil))}function C(L,O){const G=w(O);G&&(G.isCubeTexture||G.mapping===sA)?(m===void 0&&(m=new zi(new $h(1,1,1),new Ja({name:"BackgroundCubeMaterial",uniforms:E0(Ga.backgroundCube.uniforms),vertexShader:Ga.backgroundCube.vertexShader,fragmentShader:Ga.backgroundCube.fragmentShader,side:hr,depthTest:!1,depthWrite:!1,fog:!1})),m.geometry.deleteAttribute("normal"),m.geometry.deleteAttribute("uv"),m.onBeforeRender=function(q,z,j){this.matrixWorld.copyPosition(j.matrixWorld)},Object.defineProperty(m.material,"envMap",{get:function(){return this.uniforms.envMap.value}}),r.update(m)),Tf.copy(O.backgroundRotation),Tf.x*=-1,Tf.y*=-1,Tf.z*=-1,G.isCubeTexture&&G.isRenderTargetTexture===!1&&(Tf.y*=-1,Tf.z*=-1),m.material.uniforms.envMap.value=G,m.material.uniforms.flipEnvMap.value=G.isCubeTexture&&G.isRenderTargetTexture===!1?-1:1,m.material.uniforms.backgroundBlurriness.value=O.backgroundBlurriness,m.material.uniforms.backgroundIntensity.value=O.backgroundIntensity,m.material.uniforms.backgroundRotation.value.setFromMatrix4(LV.makeRotationFromEuler(Tf)),m.material.toneMapped=oi.getTransfer(G.colorSpace)!==Vi,(v!==G||x!==G.version||S!==i.toneMapping)&&(m.material.needsUpdate=!0,v=G,x=G.version,S=i.toneMapping),m.layers.enableAll(),L.unshift(m,m.geometry,m.material,0,0,null)):G&&G.isTexture&&(h===void 0&&(h=new zi(new Ty(2,2),new Ja({name:"BackgroundMaterial",uniforms:E0(Ga.background.uniforms),vertexShader:Ga.background.vertexShader,fragmentShader:Ga.background.fragmentShader,side:Nl,depthTest:!1,depthWrite:!1,fog:!1})),h.geometry.deleteAttribute("normal"),Object.defineProperty(h.material,"map",{get:function(){return this.uniforms.t2D.value}}),r.update(h)),h.material.uniforms.t2D.value=G,h.material.uniforms.backgroundIntensity.value=O.backgroundIntensity,h.material.toneMapped=oi.getTransfer(G.colorSpace)!==Vi,G.matrixAutoUpdate===!0&&G.updateMatrix(),h.material.uniforms.uvTransform.value.copy(G.matrix),(v!==G||x!==G.version||S!==i.toneMapping)&&(h.material.needsUpdate=!0,v=G,x=G.version,S=i.toneMapping),h.layers.enableAll(),L.unshift(h,h.geometry,h.material,0,0,null))}function E(L,O){L.getRGB(j2,q7(i)),n.buffers.color.setClear(j2.r,j2.g,j2.b,O,a)}function B(){m!==void 0&&(m.geometry.dispose(),m.material.dispose()),h!==void 0&&(h.geometry.dispose(),h.material.dispose())}return{getClearColor:function(){return l},setClearColor:function(L,O=1){l.set(L),u=O,E(l,u)},getClearAlpha:function(){return u},setClearAlpha:function(L){u=L,E(l,u)},render:R,addToRenderList:C,dispose:B}}function BV(i,e){const t=i.getParameter(i.MAX_VERTEX_ATTRIBS),n={},r=x(null);let s=r,a=!1;function l(V,Y,J,ne,oe){let te=!1;const Q=v(ne,J,Y);s!==Q&&(s=Q,h(s.object)),te=S(V,ne,J,oe),te&&w(V,ne,J,oe),oe!==null&&e.update(oe,i.ELEMENT_ARRAY_BUFFER),(te||a)&&(a=!1,O(V,Y,J,ne),oe!==null&&i.bindBuffer(i.ELEMENT_ARRAY_BUFFER,e.get(oe).buffer))}function u(){return i.createVertexArray()}function h(V){return i.bindVertexArray(V)}function m(V){return i.deleteVertexArray(V)}function v(V,Y,J){const ne=J.wireframe===!0;let oe=n[V.id];oe===void 0&&(oe={},n[V.id]=oe);let te=oe[Y.id];te===void 0&&(te={},oe[Y.id]=te);let Q=te[ne];return Q===void 0&&(Q=x(u()),te[ne]=Q),Q}function x(V){const Y=[],J=[],ne=[];for(let oe=0;oe=0){const Te=oe[he];let ce=te[he];if(ce===void 0&&(he==="instanceMatrix"&&V.instanceMatrix&&(ce=V.instanceMatrix),he==="instanceColor"&&V.instanceColor&&(ce=V.instanceColor)),Te===void 0||Te.attribute!==ce||ce&&Te.data!==ce.data)return!0;Q++}return s.attributesNum!==Q||s.index!==ne}function w(V,Y,J,ne){const oe={},te=Y.attributes;let Q=0;const ue=J.getAttributes();for(const he in ue)if(ue[he].location>=0){let Te=te[he];Te===void 0&&(he==="instanceMatrix"&&V.instanceMatrix&&(Te=V.instanceMatrix),he==="instanceColor"&&V.instanceColor&&(Te=V.instanceColor));const ce={};ce.attribute=Te,Te&&Te.data&&(ce.data=Te.data),oe[he]=ce,Q++}s.attributes=oe,s.attributesNum=Q,s.index=ne}function R(){const V=s.newAttributes;for(let Y=0,J=V.length;Y=0){let we=oe[ue];if(we===void 0&&(ue==="instanceMatrix"&&V.instanceMatrix&&(we=V.instanceMatrix),ue==="instanceColor"&&V.instanceColor&&(we=V.instanceColor)),we!==void 0){const Te=we.normalized,ce=we.itemSize,be=e.get(we);if(be===void 0)continue;const ze=be.buffer,Ee=be.type,Ge=be.bytesPerElement,xe=Ee===i.INT||Ee===i.UNSIGNED_INT||we.gpuType===Ns;if(we.isInterleavedBufferAttribute){const Le=we.data,ct=Le.stride,_t=we.offset;if(Le.isInstancedInterleavedBuffer){for(let xt=0;xt0&&i.getShaderPrecisionFormat(i.FRAGMENT_SHADER,i.HIGH_FLOAT).precision>0)return"highp";z="mediump"}return z==="mediump"&&i.getShaderPrecisionFormat(i.VERTEX_SHADER,i.MEDIUM_FLOAT).precision>0&&i.getShaderPrecisionFormat(i.FRAGMENT_SHADER,i.MEDIUM_FLOAT).precision>0?"mediump":"lowp"}let h=t.precision!==void 0?t.precision:"highp";const m=u(h);m!==h&&(console.warn("THREE.WebGLRenderer:",h,"not supported, using",m,"instead."),h=m);const v=t.logarithmicDepthBuffer===!0,x=t.reverseDepthBuffer===!0&&e.has("EXT_clip_control"),S=i.getParameter(i.MAX_TEXTURE_IMAGE_UNITS),w=i.getParameter(i.MAX_VERTEX_TEXTURE_IMAGE_UNITS),R=i.getParameter(i.MAX_TEXTURE_SIZE),C=i.getParameter(i.MAX_CUBE_MAP_TEXTURE_SIZE),E=i.getParameter(i.MAX_VERTEX_ATTRIBS),B=i.getParameter(i.MAX_VERTEX_UNIFORM_VECTORS),L=i.getParameter(i.MAX_VARYING_VECTORS),O=i.getParameter(i.MAX_FRAGMENT_UNIFORM_VECTORS),G=w>0,q=i.getParameter(i.MAX_SAMPLES);return{isWebGL2:!0,getMaxAnisotropy:s,getMaxPrecision:u,textureFormatReadable:a,textureTypeReadable:l,precision:h,logarithmicDepthBuffer:v,reverseDepthBuffer:x,maxTextures:S,maxVertexTextures:w,maxTextureSize:R,maxCubemapSize:C,maxAttributes:E,maxVertexUniforms:B,maxVaryings:L,maxFragmentUniforms:O,vertexTextures:G,maxSamples:q}}function FV(i){const e=this;let t=null,n=0,r=!1,s=!1;const a=new Yl,l=new Vn,u={value:null,needsUpdate:!1};this.uniform=u,this.numPlanes=0,this.numIntersection=0,this.init=function(v,x){const S=v.length!==0||x||n!==0||r;return r=x,n=v.length,S},this.beginShadows=function(){s=!0,m(null)},this.endShadows=function(){s=!1},this.setGlobalState=function(v,x){t=m(v,x,0)},this.setState=function(v,x,S){const w=v.clippingPlanes,R=v.clipIntersection,C=v.clipShadows,E=i.get(v);if(!r||w===null||w.length===0||s&&!C)s?m(null):h();else{const B=s?0:n,L=B*4;let O=E.clippingState||null;u.value=O,O=m(w,x,L,S);for(let G=0;G!==L;++G)O[G]=t[G];E.clippingState=O,this.numIntersection=R?this.numPlanes:0,this.numPlanes+=B}};function h(){u.value!==t&&(u.value=t,u.needsUpdate=n>0),e.numPlanes=n,e.numIntersection=0}function m(v,x,S,w){const R=v!==null?v.length:0;let C=null;if(R!==0){if(C=u.value,w!==!0||C===null){const E=S+R*4,B=x.matrixWorldInverse;l.getNormalMatrix(B),(C===null||C.length0){const h=new H7(u.height);return h.fromEquirectangularTexture(i,a),e.set(a,h),a.addEventListener("dispose",r),t(h.texture,a.mapping)}else return null}}return a}function r(a){const l=a.target;l.removeEventListener("dispose",r);const u=e.get(l);u!==void 0&&(e.delete(l),u.dispose())}function s(){e=new WeakMap}return{get:n,dispose:s}}const Hd=4,P5=[.125,.215,.35,.446,.526,.582],zf=20,w3=new kg,L5=new an;let M3=null,E3=0,C3=0,R3=!1;const Bf=(1+Math.sqrt(5))/2,vd=1/Bf,U5=[new Ae(-Bf,vd,0),new Ae(Bf,vd,0),new Ae(-vd,0,Bf),new Ae(vd,0,Bf),new Ae(0,Bf,-vd),new Ae(0,Bf,vd),new Ae(-1,1,-1),new Ae(1,1,-1),new Ae(-1,1,1),new Ae(1,1,1)];let B5=class{constructor(e){this._renderer=e,this._pingPongRenderTarget=null,this._lodMax=0,this._cubeSize=0,this._lodPlanes=[],this._sizeLods=[],this._sigmas=[],this._blurMaterial=null,this._cubemapMaterial=null,this._equirectMaterial=null,this._compileMaterial(this._blurMaterial)}fromScene(e,t=0,n=.1,r=100){M3=this._renderer.getRenderTarget(),E3=this._renderer.getActiveCubeFace(),C3=this._renderer.getActiveMipmapLevel(),R3=this._renderer.xr.enabled,this._renderer.xr.enabled=!1,this._setSize(256);const s=this._allocateTargets();return s.depthBuffer=!0,this._sceneToCubeUV(e,n,r,s),t>0&&this._blur(s,0,0,t),this._applyPMREM(s),this._cleanup(s),s}fromEquirectangular(e,t=null){return this._fromTexture(e,t)}fromCubemap(e,t=null){return this._fromTexture(e,t)}compileCubemapShader(){this._cubemapMaterial===null&&(this._cubemapMaterial=F5(),this._compileMaterial(this._cubemapMaterial))}compileEquirectangularShader(){this._equirectMaterial===null&&(this._equirectMaterial=I5(),this._compileMaterial(this._equirectMaterial))}dispose(){this._dispose(),this._cubemapMaterial!==null&&this._cubemapMaterial.dispose(),this._equirectMaterial!==null&&this._equirectMaterial.dispose()}_setSize(e){this._lodMax=Math.floor(Math.log2(e)),this._cubeSize=Math.pow(2,this._lodMax)}_dispose(){this._blurMaterial!==null&&this._blurMaterial.dispose(),this._pingPongRenderTarget!==null&&this._pingPongRenderTarget.dispose();for(let e=0;e2?L:0,L,L),m.setRenderTarget(r),R&&m.render(w,l),m.render(e,l)}w.geometry.dispose(),w.material.dispose(),m.toneMapping=x,m.autoClear=v,e.background=C}_textureToCubeUV(e,t){const n=this._renderer,r=e.mapping===Qo||e.mapping===Ko;r?(this._cubemapMaterial===null&&(this._cubemapMaterial=F5()),this._cubemapMaterial.uniforms.flipEnvMap.value=e.isRenderTargetTexture===!1?-1:1):this._equirectMaterial===null&&(this._equirectMaterial=I5());const s=r?this._cubemapMaterial:this._equirectMaterial,a=new zi(this._lodPlanes[0],s),l=s.uniforms;l.envMap.value=e;const u=this._cubeSize;W2(t,0,0,3*u,2*u),n.setRenderTarget(t),n.render(a,w3)}_applyPMREM(e){const t=this._renderer,n=t.autoClear;t.autoClear=!1;const r=this._lodPlanes.length;for(let s=1;szf&&console.warn(`sigmaRadians, ${s}, is too large and will clip, as it requested ${C} samples when the maximum is set to ${zf}`);const E=[];let B=0;for(let z=0;zL-Hd?r-L+Hd:0),q=4*(this._cubeSize-O);W2(t,G,q,3*O,2*O),u.setRenderTarget(t),u.render(v,w3)}};function zV(i){const e=[],t=[],n=[];let r=i;const s=i-Hd+1+P5.length;for(let a=0;ai-Hd?u=P5[a-i+Hd-1]:a===0&&(u=0),n.push(u);const h=1/(l-2),m=-h,v=1+h,x=[m,m,v,m,v,v,m,m,v,v,m,v],S=6,w=6,R=3,C=2,E=1,B=new Float32Array(R*w*S),L=new Float32Array(C*w*S),O=new Float32Array(E*w*S);for(let q=0;q2?0:-1,F=[z,j,0,z+2/3,j,0,z+2/3,j+1,0,z,j,0,z+2/3,j+1,0,z,j+1,0];B.set(F,R*w*q),L.set(x,C*w*q);const V=[q,q,q,q,q,q];O.set(V,E*w*q)}const G=new Ki;G.setAttribute("position",new wr(B,R)),G.setAttribute("uv",new wr(L,C)),G.setAttribute("faceIndex",new wr(O,E)),e.push(G),r>Hd&&r--}return{lodPlanes:e,sizeLods:t,sigmas:n}}function O5(i,e,t){const n=new qh(i,e,t);return n.texture.mapping=sA,n.texture.name="PMREM.cubeUv",n.scissorTest=!0,n}function W2(i,e,t,n,r){i.viewport.set(e,t,n,r),i.scissor.set(e,t,n,r)}function GV(i,e,t){const n=new Float32Array(zf),r=new Ae(0,1,0);return new Ja({name:"SphericalGaussianBlur",defines:{n:zf,CUBEUV_TEXEL_WIDTH:1/e,CUBEUV_TEXEL_HEIGHT:1/t,CUBEUV_MAX_MIP:`${i}.0`},uniforms:{envMap:{value:null},samples:{value:1},weights:{value:n},latitudinal:{value:!1},dTheta:{value:0},mipInt:{value:0},poleAxis:{value:r}},vertexShader:oM(),fragmentShader:` + + precision mediump float; + precision mediump int; + + varying vec3 vOutputDirection; + + uniform sampler2D envMap; + uniform int samples; + uniform float weights[ n ]; + uniform bool latitudinal; + uniform float dTheta; + uniform float mipInt; + uniform vec3 poleAxis; + + #define ENVMAP_TYPE_CUBE_UV + #include + + vec3 getSample( float theta, vec3 axis ) { + + float cosTheta = cos( theta ); + // Rodrigues' axis-angle rotation + vec3 sampleDirection = vOutputDirection * cosTheta + + cross( axis, vOutputDirection ) * sin( theta ) + + axis * dot( axis, vOutputDirection ) * ( 1.0 - cosTheta ); + + return bilinearCubeUV( envMap, sampleDirection, mipInt ); + + } + + void main() { + + vec3 axis = latitudinal ? poleAxis : cross( poleAxis, vOutputDirection ); + + if ( all( equal( axis, vec3( 0.0 ) ) ) ) { + + axis = vec3( vOutputDirection.z, 0.0, - vOutputDirection.x ); + + } + + axis = normalize( axis ); + + gl_FragColor = vec4( 0.0, 0.0, 0.0, 1.0 ); + gl_FragColor.rgb += weights[ 0 ] * getSample( 0.0, axis ); + + for ( int i = 1; i < n; i++ ) { + + if ( i >= samples ) { + + break; + + } + + float theta = dTheta * float( i ); + gl_FragColor.rgb += weights[ i ] * getSample( -1.0 * theta, axis ); + gl_FragColor.rgb += weights[ i ] * getSample( theta, axis ); + + } + + } + `,blending:Qa,depthTest:!1,depthWrite:!1})}function I5(){return new Ja({name:"EquirectangularToCubeUV",uniforms:{envMap:{value:null}},vertexShader:oM(),fragmentShader:` + + precision mediump float; + precision mediump int; + + varying vec3 vOutputDirection; + + uniform sampler2D envMap; + + #include + + void main() { + + vec3 outputDirection = normalize( vOutputDirection ); + vec2 uv = equirectUv( outputDirection ); + + gl_FragColor = vec4( texture2D ( envMap, uv ).rgb, 1.0 ); + + } + `,blending:Qa,depthTest:!1,depthWrite:!1})}function F5(){return new Ja({name:"CubemapToCubeUV",uniforms:{envMap:{value:null},flipEnvMap:{value:-1}},vertexShader:oM(),fragmentShader:` + + precision mediump float; + precision mediump int; + + uniform float flipEnvMap; + + varying vec3 vOutputDirection; + + uniform samplerCube envMap; + + void main() { + + gl_FragColor = textureCube( envMap, vec3( flipEnvMap * vOutputDirection.x, vOutputDirection.yz ) ); + + } + `,blending:Qa,depthTest:!1,depthWrite:!1})}function oM(){return` + + precision mediump float; + precision mediump int; + + attribute float faceIndex; + + varying vec3 vOutputDirection; + + // RH coordinate system; PMREM face-indexing convention + vec3 getDirection( vec2 uv, float face ) { + + uv = 2.0 * uv - 1.0; + + vec3 direction = vec3( uv, 1.0 ); + + if ( face == 0.0 ) { + + direction = direction.zyx; // ( 1, v, u ) pos x + + } else if ( face == 1.0 ) { + + direction = direction.xzy; + direction.xz *= -1.0; // ( -u, 1, -v ) pos y + + } else if ( face == 2.0 ) { + + direction.x *= -1.0; // ( -u, v, 1 ) pos z + + } else if ( face == 3.0 ) { + + direction = direction.zyx; + direction.xz *= -1.0; // ( -1, v, -u ) neg x + + } else if ( face == 4.0 ) { + + direction = direction.xzy; + direction.xy *= -1.0; // ( -u, -1, v ) neg y + + } else if ( face == 5.0 ) { + + direction.z *= -1.0; // ( u, v, -1 ) neg z + + } + + return direction; + + } + + void main() { + + vOutputDirection = getDirection( uv, faceIndex ); + gl_Position = vec4( position, 1.0 ); + + } + `}function qV(i){let e=new WeakMap,t=null;function n(l){if(l&&l.isTexture){const u=l.mapping,h=u===zh||u===Gh,m=u===Qo||u===Ko;if(h||m){let v=e.get(l);const x=v!==void 0?v.texture.pmremVersion:0;if(l.isRenderTargetTexture&&l.pmremVersion!==x)return t===null&&(t=new B5(i)),v=h?t.fromEquirectangular(l,v):t.fromCubemap(l,v),v.texture.pmremVersion=l.pmremVersion,e.set(l,v),v.texture;if(v!==void 0)return v.texture;{const S=l.image;return h&&S&&S.height>0||m&&S&&r(S)?(t===null&&(t=new B5(i)),v=h?t.fromEquirectangular(l):t.fromCubemap(l),v.texture.pmremVersion=l.pmremVersion,e.set(l,v),l.addEventListener("dispose",s),v.texture):null}}}return l}function r(l){let u=0;const h=6;for(let m=0;me.maxTextureSize&&(q=Math.ceil(G/e.maxTextureSize),G=e.maxTextureSize);const z=new Float32Array(G*q*4*v),j=new jw(z,G,q,v);j.type=$r,j.needsUpdate=!0;const F=O*4;for(let Y=0;Y0)return i;const r=e*t;let s=z5[r];if(s===void 0&&(s=new Float32Array(r),z5[r]=s),e!==0){n.toArray(s,0);for(let a=1,l=0;a!==e;++a)l+=t,i[a].toArray(s,l)}return s}function _s(i,e){if(i.length!==e.length)return!1;for(let t=0,n=i.length;t":" "} ${l}: ${t[a]}`)}return n.join(` +`)}const $5=new Vn;function qH(i){oi._getMatrix($5,oi.workingColorSpace,i);const e=`mat3( ${$5.elements.map(t=>t.toFixed(4))} )`;switch(oi.getTransfer(i)){case a_:return[e,"LinearTransferOETF"];case Vi:return[e,"sRGBTransferOETF"];default:return console.warn("THREE.WebGLProgram: Unsupported color space: ",i),[e,"LinearTransferOETF"]}}function X5(i,e,t){const n=i.getShaderParameter(e,i.COMPILE_STATUS),r=i.getShaderInfoLog(e).trim();if(n&&r==="")return"";const s=/ERROR: 0:(\d+)/.exec(r);if(s){const a=parseInt(s[1]);return t.toUpperCase()+` + +`+r+` + +`+GH(i.getShaderSource(e),a)}else return r}function VH(i,e){const t=qH(e);return[`vec4 ${i}( vec4 value ) {`,` return ${t[1]}( vec4( value.rgb * ${t[0]}, value.a ) );`,"}"].join(` +`)}function HH(i,e){let t;switch(e){case N7:t="Linear";break;case D7:t="Reinhard";break;case P7:t="Cineon";break;case L7:t="ACESFilmic";break;case U7:t="AgX";break;case B7:t="Neutral";break;case GF:t="Custom";break;default:console.warn("THREE.WebGLProgram: Unsupported toneMapping:",e),t="Linear"}return"vec3 "+i+"( vec3 color ) { return "+t+"ToneMapping( color ); }"}const $2=new Ae;function jH(){oi.getLuminanceCoefficients($2);const i=$2.x.toFixed(4),e=$2.y.toFixed(4),t=$2.z.toFixed(4);return["float luminance( const in vec3 rgb ) {",` const vec3 weights = vec3( ${i}, ${e}, ${t} );`," return dot( weights, rgb );","}"].join(` +`)}function WH(i){return[i.extensionClipCullDistance?"#extension GL_ANGLE_clip_cull_distance : require":"",i.extensionMultiDraw?"#extension GL_ANGLE_multi_draw : require":""].filter(_m).join(` +`)}function $H(i){const e=[];for(const t in i){const n=i[t];n!==!1&&e.push("#define "+t+" "+n)}return e.join(` +`)}function XH(i,e){const t={},n=i.getProgramParameter(e,i.ACTIVE_ATTRIBUTES);for(let r=0;r/gm;function ZS(i){return i.replace(YH,KH)}const QH=new Map;function KH(i,e){let t=Zn[e];if(t===void 0){const n=QH.get(e);if(n!==void 0)t=Zn[n],console.warn('THREE.WebGLRenderer: Shader chunk "%s" has been deprecated. Use "%s" instead.',e,n);else throw new Error("Can not resolve #include <"+e+">")}return ZS(t)}const ZH=/#pragma unroll_loop_start\s+for\s*\(\s*int\s+i\s*=\s*(\d+)\s*;\s*i\s*<\s*(\d+)\s*;\s*i\s*\+\+\s*\)\s*{([\s\S]+?)}\s+#pragma unroll_loop_end/g;function K5(i){return i.replace(ZH,JH)}function JH(i,e,t,n){let r="";for(let s=parseInt(e);s0&&(C+=` +`),E=["#define SHADER_TYPE "+t.shaderType,"#define SHADER_NAME "+t.shaderName,w].filter(_m).join(` +`),E.length>0&&(E+=` +`)):(C=[Z5(t),"#define SHADER_TYPE "+t.shaderType,"#define SHADER_NAME "+t.shaderName,w,t.extensionClipCullDistance?"#define USE_CLIP_DISTANCE":"",t.batching?"#define USE_BATCHING":"",t.batchingColor?"#define USE_BATCHING_COLOR":"",t.instancing?"#define USE_INSTANCING":"",t.instancingColor?"#define USE_INSTANCING_COLOR":"",t.instancingMorph?"#define USE_INSTANCING_MORPH":"",t.useFog&&t.fog?"#define USE_FOG":"",t.useFog&&t.fogExp2?"#define FOG_EXP2":"",t.map?"#define USE_MAP":"",t.envMap?"#define USE_ENVMAP":"",t.envMap?"#define "+m:"",t.lightMap?"#define USE_LIGHTMAP":"",t.aoMap?"#define USE_AOMAP":"",t.bumpMap?"#define USE_BUMPMAP":"",t.normalMap?"#define USE_NORMALMAP":"",t.normalMapObjectSpace?"#define USE_NORMALMAP_OBJECTSPACE":"",t.normalMapTangentSpace?"#define USE_NORMALMAP_TANGENTSPACE":"",t.displacementMap?"#define USE_DISPLACEMENTMAP":"",t.emissiveMap?"#define USE_EMISSIVEMAP":"",t.anisotropy?"#define USE_ANISOTROPY":"",t.anisotropyMap?"#define USE_ANISOTROPYMAP":"",t.clearcoatMap?"#define USE_CLEARCOATMAP":"",t.clearcoatRoughnessMap?"#define USE_CLEARCOAT_ROUGHNESSMAP":"",t.clearcoatNormalMap?"#define USE_CLEARCOAT_NORMALMAP":"",t.iridescenceMap?"#define USE_IRIDESCENCEMAP":"",t.iridescenceThicknessMap?"#define USE_IRIDESCENCE_THICKNESSMAP":"",t.specularMap?"#define USE_SPECULARMAP":"",t.specularColorMap?"#define USE_SPECULAR_COLORMAP":"",t.specularIntensityMap?"#define USE_SPECULAR_INTENSITYMAP":"",t.roughnessMap?"#define USE_ROUGHNESSMAP":"",t.metalnessMap?"#define USE_METALNESSMAP":"",t.alphaMap?"#define USE_ALPHAMAP":"",t.alphaHash?"#define USE_ALPHAHASH":"",t.transmission?"#define USE_TRANSMISSION":"",t.transmissionMap?"#define USE_TRANSMISSIONMAP":"",t.thicknessMap?"#define USE_THICKNESSMAP":"",t.sheenColorMap?"#define USE_SHEEN_COLORMAP":"",t.sheenRoughnessMap?"#define USE_SHEEN_ROUGHNESSMAP":"",t.mapUv?"#define MAP_UV "+t.mapUv:"",t.alphaMapUv?"#define ALPHAMAP_UV "+t.alphaMapUv:"",t.lightMapUv?"#define LIGHTMAP_UV "+t.lightMapUv:"",t.aoMapUv?"#define AOMAP_UV "+t.aoMapUv:"",t.emissiveMapUv?"#define EMISSIVEMAP_UV "+t.emissiveMapUv:"",t.bumpMapUv?"#define BUMPMAP_UV "+t.bumpMapUv:"",t.normalMapUv?"#define NORMALMAP_UV "+t.normalMapUv:"",t.displacementMapUv?"#define DISPLACEMENTMAP_UV "+t.displacementMapUv:"",t.metalnessMapUv?"#define METALNESSMAP_UV "+t.metalnessMapUv:"",t.roughnessMapUv?"#define ROUGHNESSMAP_UV "+t.roughnessMapUv:"",t.anisotropyMapUv?"#define ANISOTROPYMAP_UV "+t.anisotropyMapUv:"",t.clearcoatMapUv?"#define CLEARCOATMAP_UV "+t.clearcoatMapUv:"",t.clearcoatNormalMapUv?"#define CLEARCOAT_NORMALMAP_UV "+t.clearcoatNormalMapUv:"",t.clearcoatRoughnessMapUv?"#define CLEARCOAT_ROUGHNESSMAP_UV "+t.clearcoatRoughnessMapUv:"",t.iridescenceMapUv?"#define IRIDESCENCEMAP_UV "+t.iridescenceMapUv:"",t.iridescenceThicknessMapUv?"#define IRIDESCENCE_THICKNESSMAP_UV "+t.iridescenceThicknessMapUv:"",t.sheenColorMapUv?"#define SHEEN_COLORMAP_UV "+t.sheenColorMapUv:"",t.sheenRoughnessMapUv?"#define SHEEN_ROUGHNESSMAP_UV "+t.sheenRoughnessMapUv:"",t.specularMapUv?"#define SPECULARMAP_UV "+t.specularMapUv:"",t.specularColorMapUv?"#define SPECULAR_COLORMAP_UV "+t.specularColorMapUv:"",t.specularIntensityMapUv?"#define SPECULAR_INTENSITYMAP_UV "+t.specularIntensityMapUv:"",t.transmissionMapUv?"#define TRANSMISSIONMAP_UV "+t.transmissionMapUv:"",t.thicknessMapUv?"#define THICKNESSMAP_UV "+t.thicknessMapUv:"",t.vertexTangents&&t.flatShading===!1?"#define USE_TANGENT":"",t.vertexColors?"#define USE_COLOR":"",t.vertexAlphas?"#define USE_COLOR_ALPHA":"",t.vertexUv1s?"#define USE_UV1":"",t.vertexUv2s?"#define USE_UV2":"",t.vertexUv3s?"#define USE_UV3":"",t.pointsUvs?"#define USE_POINTS_UV":"",t.flatShading?"#define FLAT_SHADED":"",t.skinning?"#define USE_SKINNING":"",t.morphTargets?"#define USE_MORPHTARGETS":"",t.morphNormals&&t.flatShading===!1?"#define USE_MORPHNORMALS":"",t.morphColors?"#define USE_MORPHCOLORS":"",t.morphTargetsCount>0?"#define MORPHTARGETS_TEXTURE_STRIDE "+t.morphTextureStride:"",t.morphTargetsCount>0?"#define MORPHTARGETS_COUNT "+t.morphTargetsCount:"",t.doubleSided?"#define DOUBLE_SIDED":"",t.flipSided?"#define FLIP_SIDED":"",t.shadowMapEnabled?"#define USE_SHADOWMAP":"",t.shadowMapEnabled?"#define "+u:"",t.sizeAttenuation?"#define USE_SIZEATTENUATION":"",t.numLightProbes>0?"#define USE_LIGHT_PROBES":"",t.logarithmicDepthBuffer?"#define USE_LOGDEPTHBUF":"",t.reverseDepthBuffer?"#define USE_REVERSEDEPTHBUF":"","uniform mat4 modelMatrix;","uniform mat4 modelViewMatrix;","uniform mat4 projectionMatrix;","uniform mat4 viewMatrix;","uniform mat3 normalMatrix;","uniform vec3 cameraPosition;","uniform bool isOrthographic;","#ifdef USE_INSTANCING"," attribute mat4 instanceMatrix;","#endif","#ifdef USE_INSTANCING_COLOR"," attribute vec3 instanceColor;","#endif","#ifdef USE_INSTANCING_MORPH"," uniform sampler2D morphTexture;","#endif","attribute vec3 position;","attribute vec3 normal;","attribute vec2 uv;","#ifdef USE_UV1"," attribute vec2 uv1;","#endif","#ifdef USE_UV2"," attribute vec2 uv2;","#endif","#ifdef USE_UV3"," attribute vec2 uv3;","#endif","#ifdef USE_TANGENT"," attribute vec4 tangent;","#endif","#if defined( USE_COLOR_ALPHA )"," attribute vec4 color;","#elif defined( USE_COLOR )"," attribute vec3 color;","#endif","#ifdef USE_SKINNING"," attribute vec4 skinIndex;"," attribute vec4 skinWeight;","#endif",` +`].filter(_m).join(` +`),E=[Z5(t),"#define SHADER_TYPE "+t.shaderType,"#define SHADER_NAME "+t.shaderName,w,t.useFog&&t.fog?"#define USE_FOG":"",t.useFog&&t.fogExp2?"#define FOG_EXP2":"",t.alphaToCoverage?"#define ALPHA_TO_COVERAGE":"",t.map?"#define USE_MAP":"",t.matcap?"#define USE_MATCAP":"",t.envMap?"#define USE_ENVMAP":"",t.envMap?"#define "+h:"",t.envMap?"#define "+m:"",t.envMap?"#define "+v:"",x?"#define CUBEUV_TEXEL_WIDTH "+x.texelWidth:"",x?"#define CUBEUV_TEXEL_HEIGHT "+x.texelHeight:"",x?"#define CUBEUV_MAX_MIP "+x.maxMip+".0":"",t.lightMap?"#define USE_LIGHTMAP":"",t.aoMap?"#define USE_AOMAP":"",t.bumpMap?"#define USE_BUMPMAP":"",t.normalMap?"#define USE_NORMALMAP":"",t.normalMapObjectSpace?"#define USE_NORMALMAP_OBJECTSPACE":"",t.normalMapTangentSpace?"#define USE_NORMALMAP_TANGENTSPACE":"",t.emissiveMap?"#define USE_EMISSIVEMAP":"",t.anisotropy?"#define USE_ANISOTROPY":"",t.anisotropyMap?"#define USE_ANISOTROPYMAP":"",t.clearcoat?"#define USE_CLEARCOAT":"",t.clearcoatMap?"#define USE_CLEARCOATMAP":"",t.clearcoatRoughnessMap?"#define USE_CLEARCOAT_ROUGHNESSMAP":"",t.clearcoatNormalMap?"#define USE_CLEARCOAT_NORMALMAP":"",t.dispersion?"#define USE_DISPERSION":"",t.iridescence?"#define USE_IRIDESCENCE":"",t.iridescenceMap?"#define USE_IRIDESCENCEMAP":"",t.iridescenceThicknessMap?"#define USE_IRIDESCENCE_THICKNESSMAP":"",t.specularMap?"#define USE_SPECULARMAP":"",t.specularColorMap?"#define USE_SPECULAR_COLORMAP":"",t.specularIntensityMap?"#define USE_SPECULAR_INTENSITYMAP":"",t.roughnessMap?"#define USE_ROUGHNESSMAP":"",t.metalnessMap?"#define USE_METALNESSMAP":"",t.alphaMap?"#define USE_ALPHAMAP":"",t.alphaTest?"#define USE_ALPHATEST":"",t.alphaHash?"#define USE_ALPHAHASH":"",t.sheen?"#define USE_SHEEN":"",t.sheenColorMap?"#define USE_SHEEN_COLORMAP":"",t.sheenRoughnessMap?"#define USE_SHEEN_ROUGHNESSMAP":"",t.transmission?"#define USE_TRANSMISSION":"",t.transmissionMap?"#define USE_TRANSMISSIONMAP":"",t.thicknessMap?"#define USE_THICKNESSMAP":"",t.vertexTangents&&t.flatShading===!1?"#define USE_TANGENT":"",t.vertexColors||t.instancingColor||t.batchingColor?"#define USE_COLOR":"",t.vertexAlphas?"#define USE_COLOR_ALPHA":"",t.vertexUv1s?"#define USE_UV1":"",t.vertexUv2s?"#define USE_UV2":"",t.vertexUv3s?"#define USE_UV3":"",t.pointsUvs?"#define USE_POINTS_UV":"",t.gradientMap?"#define USE_GRADIENTMAP":"",t.flatShading?"#define FLAT_SHADED":"",t.doubleSided?"#define DOUBLE_SIDED":"",t.flipSided?"#define FLIP_SIDED":"",t.shadowMapEnabled?"#define USE_SHADOWMAP":"",t.shadowMapEnabled?"#define "+u:"",t.premultipliedAlpha?"#define PREMULTIPLIED_ALPHA":"",t.numLightProbes>0?"#define USE_LIGHT_PROBES":"",t.decodeVideoTexture?"#define DECODE_VIDEO_TEXTURE":"",t.decodeVideoTextureEmissive?"#define DECODE_VIDEO_TEXTURE_EMISSIVE":"",t.logarithmicDepthBuffer?"#define USE_LOGDEPTHBUF":"",t.reverseDepthBuffer?"#define USE_REVERSEDEPTHBUF":"","uniform mat4 viewMatrix;","uniform vec3 cameraPosition;","uniform bool isOrthographic;",t.toneMapping!==Za?"#define TONE_MAPPING":"",t.toneMapping!==Za?Zn.tonemapping_pars_fragment:"",t.toneMapping!==Za?HH("toneMapping",t.toneMapping):"",t.dithering?"#define DITHERING":"",t.opaque?"#define OPAQUE":"",Zn.colorspace_pars_fragment,VH("linearToOutputTexel",t.outputColorSpace),jH(),t.useDepthPacking?"#define DEPTH_PACKING "+t.depthPacking:"",` +`].filter(_m).join(` +`)),a=ZS(a),a=Y5(a,t),a=Q5(a,t),l=ZS(l),l=Y5(l,t),l=Q5(l,t),a=K5(a),l=K5(l),t.isRawShaderMaterial!==!0&&(B=`#version 300 es +`,C=[S,"#define attribute in","#define varying out","#define texture2D texture"].join(` +`)+` +`+C,E=["#define varying in",t.glslVersion===WC?"":"layout(location = 0) out highp vec4 pc_fragColor;",t.glslVersion===WC?"":"#define gl_FragColor pc_fragColor","#define gl_FragDepthEXT gl_FragDepth","#define texture2D texture","#define textureCube texture","#define texture2DProj textureProj","#define texture2DLodEXT textureLod","#define texture2DProjLodEXT textureProjLod","#define textureCubeLodEXT textureLod","#define texture2DGradEXT textureGrad","#define texture2DProjGradEXT textureProjGrad","#define textureCubeGradEXT textureGrad"].join(` +`)+` +`+E);const L=B+C+a,O=B+E+l,G=W5(r,r.VERTEX_SHADER,L),q=W5(r,r.FRAGMENT_SHADER,O);r.attachShader(R,G),r.attachShader(R,q),t.index0AttributeName!==void 0?r.bindAttribLocation(R,0,t.index0AttributeName):t.morphTargets===!0&&r.bindAttribLocation(R,0,"position"),r.linkProgram(R);function z(Y){if(i.debug.checkShaderErrors){const J=r.getProgramInfoLog(R).trim(),ne=r.getShaderInfoLog(G).trim(),oe=r.getShaderInfoLog(q).trim();let te=!0,Q=!0;if(r.getProgramParameter(R,r.LINK_STATUS)===!1)if(te=!1,typeof i.debug.onShaderError=="function")i.debug.onShaderError(r,R,G,q);else{const ue=X5(r,G,"vertex"),he=X5(r,q,"fragment");console.error("THREE.WebGLProgram: Shader Error "+r.getError()+" - VALIDATE_STATUS "+r.getProgramParameter(R,r.VALIDATE_STATUS)+` + +Material Name: `+Y.name+` +Material Type: `+Y.type+` + +Program Info Log: `+J+` +`+ue+` +`+he)}else J!==""?console.warn("THREE.WebGLProgram: Program Info Log:",J):(ne===""||oe==="")&&(Q=!1);Q&&(Y.diagnostics={runnable:te,programLog:J,vertexShader:{log:ne,prefix:C},fragmentShader:{log:oe,prefix:E}})}r.deleteShader(G),r.deleteShader(q),j=new qv(r,R),F=XH(r,R)}let j;this.getUniforms=function(){return j===void 0&&z(this),j};let F;this.getAttributes=function(){return F===void 0&&z(this),F};let V=t.rendererExtensionParallelShaderCompile===!1;return this.isReady=function(){return V===!1&&(V=r.getProgramParameter(R,kH)),V},this.destroy=function(){n.releaseStatesOfProgram(this),r.deleteProgram(R),this.program=void 0},this.type=t.shaderType,this.name=t.shaderName,this.id=zH++,this.cacheKey=e,this.usedTimes=1,this.program=R,this.vertexShader=G,this.fragmentShader=q,this}let aj=0;class oj{constructor(){this.shaderCache=new Map,this.materialCache=new Map}update(e){const t=e.vertexShader,n=e.fragmentShader,r=this._getShaderStage(t),s=this._getShaderStage(n),a=this._getShaderCacheForMaterial(e);return a.has(r)===!1&&(a.add(r),r.usedTimes++),a.has(s)===!1&&(a.add(s),s.usedTimes++),this}remove(e){const t=this.materialCache.get(e);for(const n of t)n.usedTimes--,n.usedTimes===0&&this.shaderCache.delete(n.code);return this.materialCache.delete(e),this}getVertexShaderID(e){return this._getShaderStage(e.vertexShader).id}getFragmentShaderID(e){return this._getShaderStage(e.fragmentShader).id}dispose(){this.shaderCache.clear(),this.materialCache.clear()}_getShaderCacheForMaterial(e){const t=this.materialCache;let n=t.get(e);return n===void 0&&(n=new Set,t.set(e,n)),n}_getShaderStage(e){const t=this.shaderCache;let n=t.get(e);return n===void 0&&(n=new lj(e),t.set(e,n)),n}}class lj{constructor(e){this.id=aj++,this.code=e,this.usedTimes=0}}function uj(i,e,t,n,r,s,a){const l=new Ww,u=new oj,h=new Set,m=[],v=r.logarithmicDepthBuffer,x=r.vertexTextures;let S=r.precision;const w={MeshDepthMaterial:"depth",MeshDistanceMaterial:"distanceRGBA",MeshNormalMaterial:"normal",MeshBasicMaterial:"basic",MeshLambertMaterial:"lambert",MeshPhongMaterial:"phong",MeshToonMaterial:"toon",MeshStandardMaterial:"physical",MeshPhysicalMaterial:"physical",MeshMatcapMaterial:"matcap",LineBasicMaterial:"basic",LineDashedMaterial:"dashed",PointsMaterial:"points",ShadowMaterial:"shadow",SpriteMaterial:"sprite"};function R(F){return h.add(F),F===0?"uv":`uv${F}`}function C(F,V,Y,J,ne){const oe=J.fog,te=ne.geometry,Q=F.isMeshStandardMaterial?J.environment:null,ue=(F.isMeshStandardMaterial?t:e).get(F.envMap||Q),he=ue&&ue.mapping===sA?ue.image.height:null,we=w[F.type];F.precision!==null&&(S=r.getMaxPrecision(F.precision),S!==F.precision&&console.warn("THREE.WebGLProgram.getParameters:",F.precision,"not supported, using",S,"instead."));const Te=te.morphAttributes.position||te.morphAttributes.normal||te.morphAttributes.color,ce=Te!==void 0?Te.length:0;let be=0;te.morphAttributes.position!==void 0&&(be=1),te.morphAttributes.normal!==void 0&&(be=2),te.morphAttributes.color!==void 0&&(be=3);let ze,Ee,Ge,xe;if(we){const pn=Ga[we];ze=pn.vertexShader,Ee=pn.fragmentShader}else ze=F.vertexShader,Ee=F.fragmentShader,u.update(F),Ge=u.getVertexShaderID(F),xe=u.getFragmentShaderID(F);const Le=i.getRenderTarget(),ct=i.state.buffers.depth.getReversed(),_t=ne.isInstancedMesh===!0,xt=ne.isBatchedMesh===!0,Ft=!!F.map,Ye=!!F.matcap,rt=!!ue,fe=!!F.aoMap,zt=!!F.lightMap,ft=!!F.bumpMap,Dt=!!F.normalMap,pt=!!F.displacementMap,en=!!F.emissiveMap,Re=!!F.metalnessMap,re=!!F.roughnessMap,$=F.anisotropy>0,se=F.clearcoat>0,Se=F.dispersion>0,Fe=F.iridescence>0,qe=F.sheen>0,wt=F.transmission>0,Mt=$&&!!F.anisotropyMap,Gt=se&&!!F.clearcoatMap,$t=se&&!!F.clearcoatNormalMap,vt=se&&!!F.clearcoatRoughnessMap,Yt=Fe&&!!F.iridescenceMap,rn=Fe&&!!F.iridescenceThicknessMap,Ht=qe&&!!F.sheenColorMap,Pt=qe&&!!F.sheenRoughnessMap,It=!!F.specularMap,Nn=!!F.specularColorMap,Jn=!!F.specularIntensityMap,ge=wt&&!!F.transmissionMap,Wt=wt&&!!F.thicknessMap,it=!!F.gradientMap,bt=!!F.alphaMap,Xt=F.alphaTest>0,qt=!!F.alphaHash,xn=!!F.extensions;let qi=Za;F.toneMapped&&(Le===null||Le.isXRRenderTarget===!0)&&(qi=i.toneMapping);const rr={shaderID:we,shaderType:F.type,shaderName:F.name,vertexShader:ze,fragmentShader:Ee,defines:F.defines,customVertexShaderID:Ge,customFragmentShaderID:xe,isRawShaderMaterial:F.isRawShaderMaterial===!0,glslVersion:F.glslVersion,precision:S,batching:xt,batchingColor:xt&&ne._colorsTexture!==null,instancing:_t,instancingColor:_t&&ne.instanceColor!==null,instancingMorph:_t&&ne.morphTexture!==null,supportsVertexTextures:x,outputColorSpace:Le===null?i.outputColorSpace:Le.isXRRenderTarget===!0?Le.texture.colorSpace:Ro,alphaToCoverage:!!F.alphaToCoverage,map:Ft,matcap:Ye,envMap:rt,envMapMode:rt&&ue.mapping,envMapCubeUVHeight:he,aoMap:fe,lightMap:zt,bumpMap:ft,normalMap:Dt,displacementMap:x&&pt,emissiveMap:en,normalMapObjectSpace:Dt&&F.normalMapType===O7,normalMapTangentSpace:Dt&&F.normalMapType===Dc,metalnessMap:Re,roughnessMap:re,anisotropy:$,anisotropyMap:Mt,clearcoat:se,clearcoatMap:Gt,clearcoatNormalMap:$t,clearcoatRoughnessMap:vt,dispersion:Se,iridescence:Fe,iridescenceMap:Yt,iridescenceThicknessMap:rn,sheen:qe,sheenColorMap:Ht,sheenRoughnessMap:Pt,specularMap:It,specularColorMap:Nn,specularIntensityMap:Jn,transmission:wt,transmissionMap:ge,thicknessMap:Wt,gradientMap:it,opaque:F.transparent===!1&&F.blending===Ka&&F.alphaToCoverage===!1,alphaMap:bt,alphaTest:Xt,alphaHash:qt,combine:F.combine,mapUv:Ft&&R(F.map.channel),aoMapUv:fe&&R(F.aoMap.channel),lightMapUv:zt&&R(F.lightMap.channel),bumpMapUv:ft&&R(F.bumpMap.channel),normalMapUv:Dt&&R(F.normalMap.channel),displacementMapUv:pt&&R(F.displacementMap.channel),emissiveMapUv:en&&R(F.emissiveMap.channel),metalnessMapUv:Re&&R(F.metalnessMap.channel),roughnessMapUv:re&&R(F.roughnessMap.channel),anisotropyMapUv:Mt&&R(F.anisotropyMap.channel),clearcoatMapUv:Gt&&R(F.clearcoatMap.channel),clearcoatNormalMapUv:$t&&R(F.clearcoatNormalMap.channel),clearcoatRoughnessMapUv:vt&&R(F.clearcoatRoughnessMap.channel),iridescenceMapUv:Yt&&R(F.iridescenceMap.channel),iridescenceThicknessMapUv:rn&&R(F.iridescenceThicknessMap.channel),sheenColorMapUv:Ht&&R(F.sheenColorMap.channel),sheenRoughnessMapUv:Pt&&R(F.sheenRoughnessMap.channel),specularMapUv:It&&R(F.specularMap.channel),specularColorMapUv:Nn&&R(F.specularColorMap.channel),specularIntensityMapUv:Jn&&R(F.specularIntensityMap.channel),transmissionMapUv:ge&&R(F.transmissionMap.channel),thicknessMapUv:Wt&&R(F.thicknessMap.channel),alphaMapUv:bt&&R(F.alphaMap.channel),vertexTangents:!!te.attributes.tangent&&(Dt||$),vertexColors:F.vertexColors,vertexAlphas:F.vertexColors===!0&&!!te.attributes.color&&te.attributes.color.itemSize===4,pointsUvs:ne.isPoints===!0&&!!te.attributes.uv&&(Ft||bt),fog:!!oe,useFog:F.fog===!0,fogExp2:!!oe&&oe.isFogExp2,flatShading:F.flatShading===!0,sizeAttenuation:F.sizeAttenuation===!0,logarithmicDepthBuffer:v,reverseDepthBuffer:ct,skinning:ne.isSkinnedMesh===!0,morphTargets:te.morphAttributes.position!==void 0,morphNormals:te.morphAttributes.normal!==void 0,morphColors:te.morphAttributes.color!==void 0,morphTargetsCount:ce,morphTextureStride:be,numDirLights:V.directional.length,numPointLights:V.point.length,numSpotLights:V.spot.length,numSpotLightMaps:V.spotLightMap.length,numRectAreaLights:V.rectArea.length,numHemiLights:V.hemi.length,numDirLightShadows:V.directionalShadowMap.length,numPointLightShadows:V.pointShadowMap.length,numSpotLightShadows:V.spotShadowMap.length,numSpotLightShadowsWithMaps:V.numSpotLightShadowsWithMaps,numLightProbes:V.numLightProbes,numClippingPlanes:a.numPlanes,numClipIntersection:a.numIntersection,dithering:F.dithering,shadowMapEnabled:i.shadowMap.enabled&&Y.length>0,shadowMapType:i.shadowMap.type,toneMapping:qi,decodeVideoTexture:Ft&&F.map.isVideoTexture===!0&&oi.getTransfer(F.map.colorSpace)===Vi,decodeVideoTextureEmissive:en&&F.emissiveMap.isVideoTexture===!0&&oi.getTransfer(F.emissiveMap.colorSpace)===Vi,premultipliedAlpha:F.premultipliedAlpha,doubleSided:F.side===as,flipSided:F.side===hr,useDepthPacking:F.depthPacking>=0,depthPacking:F.depthPacking||0,index0AttributeName:F.index0AttributeName,extensionClipCullDistance:xn&&F.extensions.clipCullDistance===!0&&n.has("WEBGL_clip_cull_distance"),extensionMultiDraw:(xn&&F.extensions.multiDraw===!0||xt)&&n.has("WEBGL_multi_draw"),rendererExtensionParallelShaderCompile:n.has("KHR_parallel_shader_compile"),customProgramCacheKey:F.customProgramCacheKey()};return rr.vertexUv1s=h.has(1),rr.vertexUv2s=h.has(2),rr.vertexUv3s=h.has(3),h.clear(),rr}function E(F){const V=[];if(F.shaderID?V.push(F.shaderID):(V.push(F.customVertexShaderID),V.push(F.customFragmentShaderID)),F.defines!==void 0)for(const Y in F.defines)V.push(Y),V.push(F.defines[Y]);return F.isRawShaderMaterial===!1&&(B(V,F),L(V,F),V.push(i.outputColorSpace)),V.push(F.customProgramCacheKey),V.join()}function B(F,V){F.push(V.precision),F.push(V.outputColorSpace),F.push(V.envMapMode),F.push(V.envMapCubeUVHeight),F.push(V.mapUv),F.push(V.alphaMapUv),F.push(V.lightMapUv),F.push(V.aoMapUv),F.push(V.bumpMapUv),F.push(V.normalMapUv),F.push(V.displacementMapUv),F.push(V.emissiveMapUv),F.push(V.metalnessMapUv),F.push(V.roughnessMapUv),F.push(V.anisotropyMapUv),F.push(V.clearcoatMapUv),F.push(V.clearcoatNormalMapUv),F.push(V.clearcoatRoughnessMapUv),F.push(V.iridescenceMapUv),F.push(V.iridescenceThicknessMapUv),F.push(V.sheenColorMapUv),F.push(V.sheenRoughnessMapUv),F.push(V.specularMapUv),F.push(V.specularColorMapUv),F.push(V.specularIntensityMapUv),F.push(V.transmissionMapUv),F.push(V.thicknessMapUv),F.push(V.combine),F.push(V.fogExp2),F.push(V.sizeAttenuation),F.push(V.morphTargetsCount),F.push(V.morphAttributeCount),F.push(V.numDirLights),F.push(V.numPointLights),F.push(V.numSpotLights),F.push(V.numSpotLightMaps),F.push(V.numHemiLights),F.push(V.numRectAreaLights),F.push(V.numDirLightShadows),F.push(V.numPointLightShadows),F.push(V.numSpotLightShadows),F.push(V.numSpotLightShadowsWithMaps),F.push(V.numLightProbes),F.push(V.shadowMapType),F.push(V.toneMapping),F.push(V.numClippingPlanes),F.push(V.numClipIntersection),F.push(V.depthPacking)}function L(F,V){l.disableAll(),V.supportsVertexTextures&&l.enable(0),V.instancing&&l.enable(1),V.instancingColor&&l.enable(2),V.instancingMorph&&l.enable(3),V.matcap&&l.enable(4),V.envMap&&l.enable(5),V.normalMapObjectSpace&&l.enable(6),V.normalMapTangentSpace&&l.enable(7),V.clearcoat&&l.enable(8),V.iridescence&&l.enable(9),V.alphaTest&&l.enable(10),V.vertexColors&&l.enable(11),V.vertexAlphas&&l.enable(12),V.vertexUv1s&&l.enable(13),V.vertexUv2s&&l.enable(14),V.vertexUv3s&&l.enable(15),V.vertexTangents&&l.enable(16),V.anisotropy&&l.enable(17),V.alphaHash&&l.enable(18),V.batching&&l.enable(19),V.dispersion&&l.enable(20),V.batchingColor&&l.enable(21),F.push(l.mask),l.disableAll(),V.fog&&l.enable(0),V.useFog&&l.enable(1),V.flatShading&&l.enable(2),V.logarithmicDepthBuffer&&l.enable(3),V.reverseDepthBuffer&&l.enable(4),V.skinning&&l.enable(5),V.morphTargets&&l.enable(6),V.morphNormals&&l.enable(7),V.morphColors&&l.enable(8),V.premultipliedAlpha&&l.enable(9),V.shadowMapEnabled&&l.enable(10),V.doubleSided&&l.enable(11),V.flipSided&&l.enable(12),V.useDepthPacking&&l.enable(13),V.dithering&&l.enable(14),V.transmission&&l.enable(15),V.sheen&&l.enable(16),V.opaque&&l.enable(17),V.pointsUvs&&l.enable(18),V.decodeVideoTexture&&l.enable(19),V.decodeVideoTextureEmissive&&l.enable(20),V.alphaToCoverage&&l.enable(21),F.push(l.mask)}function O(F){const V=w[F.type];let Y;if(V){const J=Ga[V];Y=vy.clone(J.uniforms)}else Y=F.uniforms;return Y}function G(F,V){let Y;for(let J=0,ne=m.length;J0?n.push(E):S.transparent===!0?r.push(E):t.push(E)}function u(v,x,S,w,R,C){const E=a(v,x,S,w,R,C);S.transmission>0?n.unshift(E):S.transparent===!0?r.unshift(E):t.unshift(E)}function h(v,x){t.length>1&&t.sort(v||hj),n.length>1&&n.sort(x||J5),r.length>1&&r.sort(x||J5)}function m(){for(let v=e,x=i.length;v=s.length?(a=new eR,s.push(a)):a=s[r],a}function t(){i=new WeakMap}return{get:e,dispose:t}}function Aj(){const i={};return{get:function(e){if(i[e.id]!==void 0)return i[e.id];let t;switch(e.type){case"DirectionalLight":t={direction:new Ae,color:new an};break;case"SpotLight":t={position:new Ae,direction:new Ae,color:new an,distance:0,coneCos:0,penumbraCos:0,decay:0};break;case"PointLight":t={position:new Ae,color:new an,distance:0,decay:0};break;case"HemisphereLight":t={direction:new Ae,skyColor:new an,groundColor:new an};break;case"RectAreaLight":t={color:new an,position:new Ae,halfWidth:new Ae,halfHeight:new Ae};break}return i[e.id]=t,t}}}function dj(){const i={};return{get:function(e){if(i[e.id]!==void 0)return i[e.id];let t;switch(e.type){case"DirectionalLight":t={shadowIntensity:1,shadowBias:0,shadowNormalBias:0,shadowRadius:1,shadowMapSize:new dt};break;case"SpotLight":t={shadowIntensity:1,shadowBias:0,shadowNormalBias:0,shadowRadius:1,shadowMapSize:new dt};break;case"PointLight":t={shadowIntensity:1,shadowBias:0,shadowNormalBias:0,shadowRadius:1,shadowMapSize:new dt,shadowCameraNear:1,shadowCameraFar:1e3};break}return i[e.id]=t,t}}}let pj=0;function mj(i,e){return(e.castShadow?2:0)-(i.castShadow?2:0)+(e.map?1:0)-(i.map?1:0)}function gj(i){const e=new Aj,t=dj(),n={version:0,hash:{directionalLength:-1,pointLength:-1,spotLength:-1,rectAreaLength:-1,hemiLength:-1,numDirectionalShadows:-1,numPointShadows:-1,numSpotShadows:-1,numSpotMaps:-1,numLightProbes:-1},ambient:[0,0,0],probe:[],directional:[],directionalShadow:[],directionalShadowMap:[],directionalShadowMatrix:[],spot:[],spotLightMap:[],spotShadow:[],spotShadowMap:[],spotLightMatrix:[],rectArea:[],rectAreaLTC1:null,rectAreaLTC2:null,point:[],pointShadow:[],pointShadowMap:[],pointShadowMatrix:[],hemi:[],numSpotLightShadowsWithMaps:0,numLightProbes:0};for(let h=0;h<9;h++)n.probe.push(new Ae);const r=new Ae,s=new kn,a=new kn;function l(h){let m=0,v=0,x=0;for(let F=0;F<9;F++)n.probe[F].set(0,0,0);let S=0,w=0,R=0,C=0,E=0,B=0,L=0,O=0,G=0,q=0,z=0;h.sort(mj);for(let F=0,V=h.length;F0&&(i.has("OES_texture_float_linear")===!0?(n.rectAreaLTC1=Kt.LTC_FLOAT_1,n.rectAreaLTC2=Kt.LTC_FLOAT_2):(n.rectAreaLTC1=Kt.LTC_HALF_1,n.rectAreaLTC2=Kt.LTC_HALF_2)),n.ambient[0]=m,n.ambient[1]=v,n.ambient[2]=x;const j=n.hash;(j.directionalLength!==S||j.pointLength!==w||j.spotLength!==R||j.rectAreaLength!==C||j.hemiLength!==E||j.numDirectionalShadows!==B||j.numPointShadows!==L||j.numSpotShadows!==O||j.numSpotMaps!==G||j.numLightProbes!==z)&&(n.directional.length=S,n.spot.length=R,n.rectArea.length=C,n.point.length=w,n.hemi.length=E,n.directionalShadow.length=B,n.directionalShadowMap.length=B,n.pointShadow.length=L,n.pointShadowMap.length=L,n.spotShadow.length=O,n.spotShadowMap.length=O,n.directionalShadowMatrix.length=B,n.pointShadowMatrix.length=L,n.spotLightMatrix.length=O+G-q,n.spotLightMap.length=G,n.numSpotLightShadowsWithMaps=q,n.numLightProbes=z,j.directionalLength=S,j.pointLength=w,j.spotLength=R,j.rectAreaLength=C,j.hemiLength=E,j.numDirectionalShadows=B,j.numPointShadows=L,j.numSpotShadows=O,j.numSpotMaps=G,j.numLightProbes=z,n.version=pj++)}function u(h,m){let v=0,x=0,S=0,w=0,R=0;const C=m.matrixWorldInverse;for(let E=0,B=h.length;E=a.length?(l=new tR(i),a.push(l)):l=a[s],l}function n(){e=new WeakMap}return{get:t,dispose:n}}const _j=`void main() { + gl_Position = vec4( position, 1.0 ); +}`,yj=`uniform sampler2D shadow_pass; +uniform vec2 resolution; +uniform float radius; +#include +void main() { + const float samples = float( VSM_SAMPLES ); + float mean = 0.0; + float squared_mean = 0.0; + float uvStride = samples <= 1.0 ? 0.0 : 2.0 / ( samples - 1.0 ); + float uvStart = samples <= 1.0 ? 0.0 : - 1.0; + for ( float i = 0.0; i < samples; i ++ ) { + float uvOffset = uvStart + i * uvStride; + #ifdef HORIZONTAL_PASS + vec2 distribution = unpackRGBATo2Half( texture2D( shadow_pass, ( gl_FragCoord.xy + vec2( uvOffset, 0.0 ) * radius ) / resolution ) ); + mean += distribution.x; + squared_mean += distribution.y * distribution.y + distribution.x * distribution.x; + #else + float depth = unpackRGBAToDepth( texture2D( shadow_pass, ( gl_FragCoord.xy + vec2( 0.0, uvOffset ) * radius ) / resolution ) ); + mean += depth; + squared_mean += depth * depth; + #endif + } + mean = mean / samples; + squared_mean = squared_mean / samples; + float std_dev = sqrt( squared_mean - mean * mean ); + gl_FragColor = pack2HalfToRGBA( vec2( mean, std_dev ) ); +}`;function xj(i,e,t){let n=new Fg;const r=new dt,s=new dt,a=new Ln,l=new Pz({depthPacking:$F}),u=new Lz,h={},m=t.maxTextureSize,v={[Nl]:hr,[hr]:Nl,[as]:as},x=new Ja({defines:{VSM_SAMPLES:8},uniforms:{shadow_pass:{value:null},resolution:{value:new dt},radius:{value:4}},vertexShader:_j,fragmentShader:yj}),S=x.clone();S.defines.HORIZONTAL_PASS=1;const w=new Ki;w.setAttribute("position",new wr(new Float32Array([-1,-1,.5,3,-1,.5,-1,3,.5]),3));const R=new zi(w,x),C=this;this.enabled=!1,this.autoUpdate=!0,this.needsUpdate=!1,this.type=yw;let E=this.type;this.render=function(q,z,j){if(C.enabled===!1||C.autoUpdate===!1&&C.needsUpdate===!1||q.length===0)return;const F=i.getRenderTarget(),V=i.getActiveCubeFace(),Y=i.getActiveMipmapLevel(),J=i.state;J.setBlending(Qa),J.buffers.color.setClear(1,1,1,1),J.buffers.depth.setTest(!0),J.setScissorTest(!1);const ne=E!==xo&&this.type===xo,oe=E===xo&&this.type!==xo;for(let te=0,Q=q.length;tem||r.y>m)&&(r.x>m&&(s.x=Math.floor(m/we.x),r.x=s.x*we.x,he.mapSize.x=s.x),r.y>m&&(s.y=Math.floor(m/we.y),r.y=s.y*we.y,he.mapSize.y=s.y)),he.map===null||ne===!0||oe===!0){const ce=this.type!==xo?{minFilter:mr,magFilter:mr}:{};he.map!==null&&he.map.dispose(),he.map=new qh(r.x,r.y,ce),he.map.texture.name=ue.name+".shadowMap",he.camera.updateProjectionMatrix()}i.setRenderTarget(he.map),i.clear();const Te=he.getViewportCount();for(let ce=0;ce0||z.map&&z.alphaTest>0){const J=V.uuid,ne=z.uuid;let oe=h[J];oe===void 0&&(oe={},h[J]=oe);let te=oe[ne];te===void 0&&(te=V.clone(),oe[ne]=te,z.addEventListener("dispose",G)),V=te}if(V.visible=z.visible,V.wireframe=z.wireframe,F===xo?V.side=z.shadowSide!==null?z.shadowSide:z.side:V.side=z.shadowSide!==null?z.shadowSide:v[z.side],V.alphaMap=z.alphaMap,V.alphaTest=z.alphaTest,V.map=z.map,V.clipShadows=z.clipShadows,V.clippingPlanes=z.clippingPlanes,V.clipIntersection=z.clipIntersection,V.displacementMap=z.displacementMap,V.displacementScale=z.displacementScale,V.displacementBias=z.displacementBias,V.wireframeLinewidth=z.wireframeLinewidth,V.linewidth=z.linewidth,j.isPointLight===!0&&V.isMeshDistanceMaterial===!0){const J=i.properties.get(V);J.light=j}return V}function O(q,z,j,F,V){if(q.visible===!1)return;if(q.layers.test(z.layers)&&(q.isMesh||q.isLine||q.isPoints)&&(q.castShadow||q.receiveShadow&&V===xo)&&(!q.frustumCulled||n.intersectsObject(q))){q.modelViewMatrix.multiplyMatrices(j.matrixWorldInverse,q.matrixWorld);const ne=e.update(q),oe=q.material;if(Array.isArray(oe)){const te=ne.groups;for(let Q=0,ue=te.length;Q=1):he.indexOf("OpenGL ES")!==-1&&(ue=parseFloat(/^OpenGL ES (\d)/.exec(he)[1]),Q=ue>=2);let we=null,Te={};const ce=i.getParameter(i.SCISSOR_BOX),be=i.getParameter(i.VIEWPORT),ze=new Ln().fromArray(ce),Ee=new Ln().fromArray(be);function Ge(ge,Wt,it,bt){const Xt=new Uint8Array(4),qt=i.createTexture();i.bindTexture(ge,qt),i.texParameteri(ge,i.TEXTURE_MIN_FILTER,i.NEAREST),i.texParameteri(ge,i.TEXTURE_MAG_FILTER,i.NEAREST);for(let xn=0;xn"u"?!1:/OculusBrowser/g.test(navigator.userAgent),h=new dt,m=new WeakMap;let v;const x=new WeakMap;let S=!1;try{S=typeof OffscreenCanvas<"u"&&new OffscreenCanvas(1,1).getContext("2d")!==null}catch{}function w(re,$){return S?new OffscreenCanvas(re,$):sg("canvas")}function R(re,$,se){let Se=1;const Fe=Re(re);if((Fe.width>se||Fe.height>se)&&(Se=se/Math.max(Fe.width,Fe.height)),Se<1)if(typeof HTMLImageElement<"u"&&re instanceof HTMLImageElement||typeof HTMLCanvasElement<"u"&&re instanceof HTMLCanvasElement||typeof ImageBitmap<"u"&&re instanceof ImageBitmap||typeof VideoFrame<"u"&&re instanceof VideoFrame){const qe=Math.floor(Se*Fe.width),wt=Math.floor(Se*Fe.height);v===void 0&&(v=w(qe,wt));const Mt=$?w(qe,wt):v;return Mt.width=qe,Mt.height=wt,Mt.getContext("2d").drawImage(re,0,0,qe,wt),console.warn("THREE.WebGLRenderer: Texture has been resized from ("+Fe.width+"x"+Fe.height+") to ("+qe+"x"+wt+")."),Mt}else return"data"in re&&console.warn("THREE.WebGLRenderer: Image in DataTexture is too big ("+Fe.width+"x"+Fe.height+")."),re;return re}function C(re){return re.generateMipmaps}function E(re){i.generateMipmap(re)}function B(re){return re.isWebGLCubeRenderTarget?i.TEXTURE_CUBE_MAP:re.isWebGL3DRenderTarget?i.TEXTURE_3D:re.isWebGLArrayRenderTarget||re.isCompressedArrayTexture?i.TEXTURE_2D_ARRAY:i.TEXTURE_2D}function L(re,$,se,Se,Fe=!1){if(re!==null){if(i[re]!==void 0)return i[re];console.warn("THREE.WebGLRenderer: Attempt to use non-existing WebGL internal format '"+re+"'")}let qe=$;if($===i.RED&&(se===i.FLOAT&&(qe=i.R32F),se===i.HALF_FLOAT&&(qe=i.R16F),se===i.UNSIGNED_BYTE&&(qe=i.R8)),$===i.RED_INTEGER&&(se===i.UNSIGNED_BYTE&&(qe=i.R8UI),se===i.UNSIGNED_SHORT&&(qe=i.R16UI),se===i.UNSIGNED_INT&&(qe=i.R32UI),se===i.BYTE&&(qe=i.R8I),se===i.SHORT&&(qe=i.R16I),se===i.INT&&(qe=i.R32I)),$===i.RG&&(se===i.FLOAT&&(qe=i.RG32F),se===i.HALF_FLOAT&&(qe=i.RG16F),se===i.UNSIGNED_BYTE&&(qe=i.RG8)),$===i.RG_INTEGER&&(se===i.UNSIGNED_BYTE&&(qe=i.RG8UI),se===i.UNSIGNED_SHORT&&(qe=i.RG16UI),se===i.UNSIGNED_INT&&(qe=i.RG32UI),se===i.BYTE&&(qe=i.RG8I),se===i.SHORT&&(qe=i.RG16I),se===i.INT&&(qe=i.RG32I)),$===i.RGB_INTEGER&&(se===i.UNSIGNED_BYTE&&(qe=i.RGB8UI),se===i.UNSIGNED_SHORT&&(qe=i.RGB16UI),se===i.UNSIGNED_INT&&(qe=i.RGB32UI),se===i.BYTE&&(qe=i.RGB8I),se===i.SHORT&&(qe=i.RGB16I),se===i.INT&&(qe=i.RGB32I)),$===i.RGBA_INTEGER&&(se===i.UNSIGNED_BYTE&&(qe=i.RGBA8UI),se===i.UNSIGNED_SHORT&&(qe=i.RGBA16UI),se===i.UNSIGNED_INT&&(qe=i.RGBA32UI),se===i.BYTE&&(qe=i.RGBA8I),se===i.SHORT&&(qe=i.RGBA16I),se===i.INT&&(qe=i.RGBA32I)),$===i.RGB&&se===i.UNSIGNED_INT_5_9_9_9_REV&&(qe=i.RGB9_E5),$===i.RGBA){const wt=Fe?a_:oi.getTransfer(Se);se===i.FLOAT&&(qe=i.RGBA32F),se===i.HALF_FLOAT&&(qe=i.RGBA16F),se===i.UNSIGNED_BYTE&&(qe=wt===Vi?i.SRGB8_ALPHA8:i.RGBA8),se===i.UNSIGNED_SHORT_4_4_4_4&&(qe=i.RGBA4),se===i.UNSIGNED_SHORT_5_5_5_1&&(qe=i.RGB5_A1)}return(qe===i.R16F||qe===i.R32F||qe===i.RG16F||qe===i.RG32F||qe===i.RGBA16F||qe===i.RGBA32F)&&e.get("EXT_color_buffer_float"),qe}function O(re,$){let se;return re?$===null||$===Rr||$===Au?se=i.DEPTH24_STENCIL8:$===$r?se=i.DEPTH32F_STENCIL8:$===wl&&(se=i.DEPTH24_STENCIL8,console.warn("DepthTexture: 16 bit depth attachment is not supported with stencil. Using 24-bit attachment.")):$===null||$===Rr||$===Au?se=i.DEPTH_COMPONENT24:$===$r?se=i.DEPTH_COMPONENT32F:$===wl&&(se=i.DEPTH_COMPONENT16),se}function G(re,$){return C(re)===!0||re.isFramebufferTexture&&re.minFilter!==mr&&re.minFilter!==gs?Math.log2(Math.max($.width,$.height))+1:re.mipmaps!==void 0&&re.mipmaps.length>0?re.mipmaps.length:re.isCompressedTexture&&Array.isArray(re.image)?$.mipmaps.length:1}function q(re){const $=re.target;$.removeEventListener("dispose",q),j($),$.isVideoTexture&&m.delete($)}function z(re){const $=re.target;$.removeEventListener("dispose",z),V($)}function j(re){const $=n.get(re);if($.__webglInit===void 0)return;const se=re.source,Se=x.get(se);if(Se){const Fe=Se[$.__cacheKey];Fe.usedTimes--,Fe.usedTimes===0&&F(re),Object.keys(Se).length===0&&x.delete(se)}n.remove(re)}function F(re){const $=n.get(re);i.deleteTexture($.__webglTexture);const se=re.source,Se=x.get(se);delete Se[$.__cacheKey],a.memory.textures--}function V(re){const $=n.get(re);if(re.depthTexture&&(re.depthTexture.dispose(),n.remove(re.depthTexture)),re.isWebGLCubeRenderTarget)for(let Se=0;Se<6;Se++){if(Array.isArray($.__webglFramebuffer[Se]))for(let Fe=0;Fe<$.__webglFramebuffer[Se].length;Fe++)i.deleteFramebuffer($.__webglFramebuffer[Se][Fe]);else i.deleteFramebuffer($.__webglFramebuffer[Se]);$.__webglDepthbuffer&&i.deleteRenderbuffer($.__webglDepthbuffer[Se])}else{if(Array.isArray($.__webglFramebuffer))for(let Se=0;Se<$.__webglFramebuffer.length;Se++)i.deleteFramebuffer($.__webglFramebuffer[Se]);else i.deleteFramebuffer($.__webglFramebuffer);if($.__webglDepthbuffer&&i.deleteRenderbuffer($.__webglDepthbuffer),$.__webglMultisampledFramebuffer&&i.deleteFramebuffer($.__webglMultisampledFramebuffer),$.__webglColorRenderbuffer)for(let Se=0;Se<$.__webglColorRenderbuffer.length;Se++)$.__webglColorRenderbuffer[Se]&&i.deleteRenderbuffer($.__webglColorRenderbuffer[Se]);$.__webglDepthRenderbuffer&&i.deleteRenderbuffer($.__webglDepthRenderbuffer)}const se=re.textures;for(let Se=0,Fe=se.length;Se=r.maxTextures&&console.warn("THREE.WebGLTextures: Trying to use "+re+" texture units while this GPU supports only "+r.maxTextures),Y+=1,re}function oe(re){const $=[];return $.push(re.wrapS),$.push(re.wrapT),$.push(re.wrapR||0),$.push(re.magFilter),$.push(re.minFilter),$.push(re.anisotropy),$.push(re.internalFormat),$.push(re.format),$.push(re.type),$.push(re.generateMipmaps),$.push(re.premultiplyAlpha),$.push(re.flipY),$.push(re.unpackAlignment),$.push(re.colorSpace),$.join()}function te(re,$){const se=n.get(re);if(re.isVideoTexture&&pt(re),re.isRenderTargetTexture===!1&&re.version>0&&se.__version!==re.version){const Se=re.image;if(Se===null)console.warn("THREE.WebGLRenderer: Texture marked for update but no image data found.");else if(Se.complete===!1)console.warn("THREE.WebGLRenderer: Texture marked for update but image is incomplete");else{Ee(se,re,$);return}}t.bindTexture(i.TEXTURE_2D,se.__webglTexture,i.TEXTURE0+$)}function Q(re,$){const se=n.get(re);if(re.version>0&&se.__version!==re.version){Ee(se,re,$);return}t.bindTexture(i.TEXTURE_2D_ARRAY,se.__webglTexture,i.TEXTURE0+$)}function ue(re,$){const se=n.get(re);if(re.version>0&&se.__version!==re.version){Ee(se,re,$);return}t.bindTexture(i.TEXTURE_3D,se.__webglTexture,i.TEXTURE0+$)}function he(re,$){const se=n.get(re);if(re.version>0&&se.__version!==re.version){Ge(se,re,$);return}t.bindTexture(i.TEXTURE_CUBE_MAP,se.__webglTexture,i.TEXTURE0+$)}const we={[aA]:i.REPEAT,[eu]:i.CLAMP_TO_EDGE,[oA]:i.MIRRORED_REPEAT},Te={[mr]:i.NEAREST,[s_]:i.NEAREST_MIPMAP_NEAREST,[tu]:i.NEAREST_MIPMAP_LINEAR,[gs]:i.LINEAR,[Jd]:i.LINEAR_MIPMAP_NEAREST,[Va]:i.LINEAR_MIPMAP_LINEAR},ce={[Fw]:i.NEVER,[Vw]:i.ALWAYS,[my]:i.LESS,[gy]:i.LEQUAL,[kw]:i.EQUAL,[qw]:i.GEQUAL,[zw]:i.GREATER,[Gw]:i.NOTEQUAL};function be(re,$){if($.type===$r&&e.has("OES_texture_float_linear")===!1&&($.magFilter===gs||$.magFilter===Jd||$.magFilter===tu||$.magFilter===Va||$.minFilter===gs||$.minFilter===Jd||$.minFilter===tu||$.minFilter===Va)&&console.warn("THREE.WebGLRenderer: Unable to use linear filtering with floating point textures. OES_texture_float_linear not supported on this device."),i.texParameteri(re,i.TEXTURE_WRAP_S,we[$.wrapS]),i.texParameteri(re,i.TEXTURE_WRAP_T,we[$.wrapT]),(re===i.TEXTURE_3D||re===i.TEXTURE_2D_ARRAY)&&i.texParameteri(re,i.TEXTURE_WRAP_R,we[$.wrapR]),i.texParameteri(re,i.TEXTURE_MAG_FILTER,Te[$.magFilter]),i.texParameteri(re,i.TEXTURE_MIN_FILTER,Te[$.minFilter]),$.compareFunction&&(i.texParameteri(re,i.TEXTURE_COMPARE_MODE,i.COMPARE_REF_TO_TEXTURE),i.texParameteri(re,i.TEXTURE_COMPARE_FUNC,ce[$.compareFunction])),e.has("EXT_texture_filter_anisotropic")===!0){if($.magFilter===mr||$.minFilter!==tu&&$.minFilter!==Va||$.type===$r&&e.has("OES_texture_float_linear")===!1)return;if($.anisotropy>1||n.get($).__currentAnisotropy){const se=e.get("EXT_texture_filter_anisotropic");i.texParameterf(re,se.TEXTURE_MAX_ANISOTROPY_EXT,Math.min($.anisotropy,r.getMaxAnisotropy())),n.get($).__currentAnisotropy=$.anisotropy}}}function ze(re,$){let se=!1;re.__webglInit===void 0&&(re.__webglInit=!0,$.addEventListener("dispose",q));const Se=$.source;let Fe=x.get(Se);Fe===void 0&&(Fe={},x.set(Se,Fe));const qe=oe($);if(qe!==re.__cacheKey){Fe[qe]===void 0&&(Fe[qe]={texture:i.createTexture(),usedTimes:0},a.memory.textures++,se=!0),Fe[qe].usedTimes++;const wt=Fe[re.__cacheKey];wt!==void 0&&(Fe[re.__cacheKey].usedTimes--,wt.usedTimes===0&&F($)),re.__cacheKey=qe,re.__webglTexture=Fe[qe].texture}return se}function Ee(re,$,se){let Se=i.TEXTURE_2D;($.isDataArrayTexture||$.isCompressedArrayTexture)&&(Se=i.TEXTURE_2D_ARRAY),$.isData3DTexture&&(Se=i.TEXTURE_3D);const Fe=ze(re,$),qe=$.source;t.bindTexture(Se,re.__webglTexture,i.TEXTURE0+se);const wt=n.get(qe);if(qe.version!==wt.__version||Fe===!0){t.activeTexture(i.TEXTURE0+se);const Mt=oi.getPrimaries(oi.workingColorSpace),Gt=$.colorSpace===Co?null:oi.getPrimaries($.colorSpace),$t=$.colorSpace===Co||Mt===Gt?i.NONE:i.BROWSER_DEFAULT_WEBGL;i.pixelStorei(i.UNPACK_FLIP_Y_WEBGL,$.flipY),i.pixelStorei(i.UNPACK_PREMULTIPLY_ALPHA_WEBGL,$.premultiplyAlpha),i.pixelStorei(i.UNPACK_ALIGNMENT,$.unpackAlignment),i.pixelStorei(i.UNPACK_COLORSPACE_CONVERSION_WEBGL,$t);let vt=R($.image,!1,r.maxTextureSize);vt=en($,vt);const Yt=s.convert($.format,$.colorSpace),rn=s.convert($.type);let Ht=L($.internalFormat,Yt,rn,$.colorSpace,$.isVideoTexture);be(Se,$);let Pt;const It=$.mipmaps,Nn=$.isVideoTexture!==!0,Jn=wt.__version===void 0||Fe===!0,ge=qe.dataReady,Wt=G($,vt);if($.isDepthTexture)Ht=O($.format===du,$.type),Jn&&(Nn?t.texStorage2D(i.TEXTURE_2D,1,Ht,vt.width,vt.height):t.texImage2D(i.TEXTURE_2D,0,Ht,vt.width,vt.height,0,Yt,rn,null));else if($.isDataTexture)if(It.length>0){Nn&&Jn&&t.texStorage2D(i.TEXTURE_2D,Wt,Ht,It[0].width,It[0].height);for(let it=0,bt=It.length;it0){const Xt=D5(Pt.width,Pt.height,$.format,$.type);for(const qt of $.layerUpdates){const xn=Pt.data.subarray(qt*Xt/Pt.data.BYTES_PER_ELEMENT,(qt+1)*Xt/Pt.data.BYTES_PER_ELEMENT);t.compressedTexSubImage3D(i.TEXTURE_2D_ARRAY,it,0,0,qt,Pt.width,Pt.height,1,Yt,xn)}$.clearLayerUpdates()}else t.compressedTexSubImage3D(i.TEXTURE_2D_ARRAY,it,0,0,0,Pt.width,Pt.height,vt.depth,Yt,Pt.data)}else t.compressedTexImage3D(i.TEXTURE_2D_ARRAY,it,Ht,Pt.width,Pt.height,vt.depth,0,Pt.data,0,0);else console.warn("THREE.WebGLRenderer: Attempt to load unsupported compressed texture format in .uploadTexture()");else Nn?ge&&t.texSubImage3D(i.TEXTURE_2D_ARRAY,it,0,0,0,Pt.width,Pt.height,vt.depth,Yt,rn,Pt.data):t.texImage3D(i.TEXTURE_2D_ARRAY,it,Ht,Pt.width,Pt.height,vt.depth,0,Yt,rn,Pt.data)}else{Nn&&Jn&&t.texStorage2D(i.TEXTURE_2D,Wt,Ht,It[0].width,It[0].height);for(let it=0,bt=It.length;it0){const it=D5(vt.width,vt.height,$.format,$.type);for(const bt of $.layerUpdates){const Xt=vt.data.subarray(bt*it/vt.data.BYTES_PER_ELEMENT,(bt+1)*it/vt.data.BYTES_PER_ELEMENT);t.texSubImage3D(i.TEXTURE_2D_ARRAY,0,0,0,bt,vt.width,vt.height,1,Yt,rn,Xt)}$.clearLayerUpdates()}else t.texSubImage3D(i.TEXTURE_2D_ARRAY,0,0,0,0,vt.width,vt.height,vt.depth,Yt,rn,vt.data)}else t.texImage3D(i.TEXTURE_2D_ARRAY,0,Ht,vt.width,vt.height,vt.depth,0,Yt,rn,vt.data);else if($.isData3DTexture)Nn?(Jn&&t.texStorage3D(i.TEXTURE_3D,Wt,Ht,vt.width,vt.height,vt.depth),ge&&t.texSubImage3D(i.TEXTURE_3D,0,0,0,0,vt.width,vt.height,vt.depth,Yt,rn,vt.data)):t.texImage3D(i.TEXTURE_3D,0,Ht,vt.width,vt.height,vt.depth,0,Yt,rn,vt.data);else if($.isFramebufferTexture){if(Jn)if(Nn)t.texStorage2D(i.TEXTURE_2D,Wt,Ht,vt.width,vt.height);else{let it=vt.width,bt=vt.height;for(let Xt=0;Xt>=1,bt>>=1}}else if(It.length>0){if(Nn&&Jn){const it=Re(It[0]);t.texStorage2D(i.TEXTURE_2D,Wt,Ht,it.width,it.height)}for(let it=0,bt=It.length;it0&&Wt++;const bt=Re(Yt[0]);t.texStorage2D(i.TEXTURE_CUBE_MAP,Wt,It,bt.width,bt.height)}for(let bt=0;bt<6;bt++)if(vt){Nn?ge&&t.texSubImage2D(i.TEXTURE_CUBE_MAP_POSITIVE_X+bt,0,0,0,Yt[bt].width,Yt[bt].height,Ht,Pt,Yt[bt].data):t.texImage2D(i.TEXTURE_CUBE_MAP_POSITIVE_X+bt,0,It,Yt[bt].width,Yt[bt].height,0,Ht,Pt,Yt[bt].data);for(let Xt=0;Xt>qe),rn=Math.max(1,$.height>>qe);Fe===i.TEXTURE_3D||Fe===i.TEXTURE_2D_ARRAY?t.texImage3D(Fe,qe,Gt,Yt,rn,$.depth,0,wt,Mt,null):t.texImage2D(Fe,qe,Gt,Yt,rn,0,wt,Mt,null)}t.bindFramebuffer(i.FRAMEBUFFER,re),Dt($)?l.framebufferTexture2DMultisampleEXT(i.FRAMEBUFFER,Se,Fe,vt.__webglTexture,0,ft($)):(Fe===i.TEXTURE_2D||Fe>=i.TEXTURE_CUBE_MAP_POSITIVE_X&&Fe<=i.TEXTURE_CUBE_MAP_NEGATIVE_Z)&&i.framebufferTexture2D(i.FRAMEBUFFER,Se,Fe,vt.__webglTexture,qe),t.bindFramebuffer(i.FRAMEBUFFER,null)}function Le(re,$,se){if(i.bindRenderbuffer(i.RENDERBUFFER,re),$.depthBuffer){const Se=$.depthTexture,Fe=Se&&Se.isDepthTexture?Se.type:null,qe=O($.stencilBuffer,Fe),wt=$.stencilBuffer?i.DEPTH_STENCIL_ATTACHMENT:i.DEPTH_ATTACHMENT,Mt=ft($);Dt($)?l.renderbufferStorageMultisampleEXT(i.RENDERBUFFER,Mt,qe,$.width,$.height):se?i.renderbufferStorageMultisample(i.RENDERBUFFER,Mt,qe,$.width,$.height):i.renderbufferStorage(i.RENDERBUFFER,qe,$.width,$.height),i.framebufferRenderbuffer(i.FRAMEBUFFER,wt,i.RENDERBUFFER,re)}else{const Se=$.textures;for(let Fe=0;Fe{delete $.__boundDepthTexture,delete $.__depthDisposeCallback,Se.removeEventListener("dispose",Fe)};Se.addEventListener("dispose",Fe),$.__depthDisposeCallback=Fe}$.__boundDepthTexture=Se}if(re.depthTexture&&!$.__autoAllocateDepthBuffer){if(se)throw new Error("target.depthTexture not supported in Cube render targets");ct($.__webglFramebuffer,re)}else if(se){$.__webglDepthbuffer=[];for(let Se=0;Se<6;Se++)if(t.bindFramebuffer(i.FRAMEBUFFER,$.__webglFramebuffer[Se]),$.__webglDepthbuffer[Se]===void 0)$.__webglDepthbuffer[Se]=i.createRenderbuffer(),Le($.__webglDepthbuffer[Se],re,!1);else{const Fe=re.stencilBuffer?i.DEPTH_STENCIL_ATTACHMENT:i.DEPTH_ATTACHMENT,qe=$.__webglDepthbuffer[Se];i.bindRenderbuffer(i.RENDERBUFFER,qe),i.framebufferRenderbuffer(i.FRAMEBUFFER,Fe,i.RENDERBUFFER,qe)}}else if(t.bindFramebuffer(i.FRAMEBUFFER,$.__webglFramebuffer),$.__webglDepthbuffer===void 0)$.__webglDepthbuffer=i.createRenderbuffer(),Le($.__webglDepthbuffer,re,!1);else{const Se=re.stencilBuffer?i.DEPTH_STENCIL_ATTACHMENT:i.DEPTH_ATTACHMENT,Fe=$.__webglDepthbuffer;i.bindRenderbuffer(i.RENDERBUFFER,Fe),i.framebufferRenderbuffer(i.FRAMEBUFFER,Se,i.RENDERBUFFER,Fe)}t.bindFramebuffer(i.FRAMEBUFFER,null)}function xt(re,$,se){const Se=n.get(re);$!==void 0&&xe(Se.__webglFramebuffer,re,re.texture,i.COLOR_ATTACHMENT0,i.TEXTURE_2D,0),se!==void 0&&_t(re)}function Ft(re){const $=re.texture,se=n.get(re),Se=n.get($);re.addEventListener("dispose",z);const Fe=re.textures,qe=re.isWebGLCubeRenderTarget===!0,wt=Fe.length>1;if(wt||(Se.__webglTexture===void 0&&(Se.__webglTexture=i.createTexture()),Se.__version=$.version,a.memory.textures++),qe){se.__webglFramebuffer=[];for(let Mt=0;Mt<6;Mt++)if($.mipmaps&&$.mipmaps.length>0){se.__webglFramebuffer[Mt]=[];for(let Gt=0;Gt<$.mipmaps.length;Gt++)se.__webglFramebuffer[Mt][Gt]=i.createFramebuffer()}else se.__webglFramebuffer[Mt]=i.createFramebuffer()}else{if($.mipmaps&&$.mipmaps.length>0){se.__webglFramebuffer=[];for(let Mt=0;Mt<$.mipmaps.length;Mt++)se.__webglFramebuffer[Mt]=i.createFramebuffer()}else se.__webglFramebuffer=i.createFramebuffer();if(wt)for(let Mt=0,Gt=Fe.length;Mt0&&Dt(re)===!1){se.__webglMultisampledFramebuffer=i.createFramebuffer(),se.__webglColorRenderbuffer=[],t.bindFramebuffer(i.FRAMEBUFFER,se.__webglMultisampledFramebuffer);for(let Mt=0;Mt0)for(let Gt=0;Gt<$.mipmaps.length;Gt++)xe(se.__webglFramebuffer[Mt][Gt],re,$,i.COLOR_ATTACHMENT0,i.TEXTURE_CUBE_MAP_POSITIVE_X+Mt,Gt);else xe(se.__webglFramebuffer[Mt],re,$,i.COLOR_ATTACHMENT0,i.TEXTURE_CUBE_MAP_POSITIVE_X+Mt,0);C($)&&E(i.TEXTURE_CUBE_MAP),t.unbindTexture()}else if(wt){for(let Mt=0,Gt=Fe.length;Mt0)for(let Gt=0;Gt<$.mipmaps.length;Gt++)xe(se.__webglFramebuffer[Gt],re,$,i.COLOR_ATTACHMENT0,Mt,Gt);else xe(se.__webglFramebuffer,re,$,i.COLOR_ATTACHMENT0,Mt,0);C($)&&E(Mt),t.unbindTexture()}re.depthBuffer&&_t(re)}function Ye(re){const $=re.textures;for(let se=0,Se=$.length;se0){if(Dt(re)===!1){const $=re.textures,se=re.width,Se=re.height;let Fe=i.COLOR_BUFFER_BIT;const qe=re.stencilBuffer?i.DEPTH_STENCIL_ATTACHMENT:i.DEPTH_ATTACHMENT,wt=n.get(re),Mt=$.length>1;if(Mt)for(let Gt=0;Gt<$.length;Gt++)t.bindFramebuffer(i.FRAMEBUFFER,wt.__webglMultisampledFramebuffer),i.framebufferRenderbuffer(i.FRAMEBUFFER,i.COLOR_ATTACHMENT0+Gt,i.RENDERBUFFER,null),t.bindFramebuffer(i.FRAMEBUFFER,wt.__webglFramebuffer),i.framebufferTexture2D(i.DRAW_FRAMEBUFFER,i.COLOR_ATTACHMENT0+Gt,i.TEXTURE_2D,null,0);t.bindFramebuffer(i.READ_FRAMEBUFFER,wt.__webglMultisampledFramebuffer),t.bindFramebuffer(i.DRAW_FRAMEBUFFER,wt.__webglFramebuffer);for(let Gt=0;Gt<$.length;Gt++){if(re.resolveDepthBuffer&&(re.depthBuffer&&(Fe|=i.DEPTH_BUFFER_BIT),re.stencilBuffer&&re.resolveStencilBuffer&&(Fe|=i.STENCIL_BUFFER_BIT)),Mt){i.framebufferRenderbuffer(i.READ_FRAMEBUFFER,i.COLOR_ATTACHMENT0,i.RENDERBUFFER,wt.__webglColorRenderbuffer[Gt]);const $t=n.get($[Gt]).__webglTexture;i.framebufferTexture2D(i.DRAW_FRAMEBUFFER,i.COLOR_ATTACHMENT0,i.TEXTURE_2D,$t,0)}i.blitFramebuffer(0,0,se,Se,0,0,se,Se,Fe,i.NEAREST),u===!0&&(rt.length=0,fe.length=0,rt.push(i.COLOR_ATTACHMENT0+Gt),re.depthBuffer&&re.resolveDepthBuffer===!1&&(rt.push(qe),fe.push(qe),i.invalidateFramebuffer(i.DRAW_FRAMEBUFFER,fe)),i.invalidateFramebuffer(i.READ_FRAMEBUFFER,rt))}if(t.bindFramebuffer(i.READ_FRAMEBUFFER,null),t.bindFramebuffer(i.DRAW_FRAMEBUFFER,null),Mt)for(let Gt=0;Gt<$.length;Gt++){t.bindFramebuffer(i.FRAMEBUFFER,wt.__webglMultisampledFramebuffer),i.framebufferRenderbuffer(i.FRAMEBUFFER,i.COLOR_ATTACHMENT0+Gt,i.RENDERBUFFER,wt.__webglColorRenderbuffer[Gt]);const $t=n.get($[Gt]).__webglTexture;t.bindFramebuffer(i.FRAMEBUFFER,wt.__webglFramebuffer),i.framebufferTexture2D(i.DRAW_FRAMEBUFFER,i.COLOR_ATTACHMENT0+Gt,i.TEXTURE_2D,$t,0)}t.bindFramebuffer(i.DRAW_FRAMEBUFFER,wt.__webglMultisampledFramebuffer)}else if(re.depthBuffer&&re.resolveDepthBuffer===!1&&u){const $=re.stencilBuffer?i.DEPTH_STENCIL_ATTACHMENT:i.DEPTH_ATTACHMENT;i.invalidateFramebuffer(i.DRAW_FRAMEBUFFER,[$])}}}function ft(re){return Math.min(r.maxSamples,re.samples)}function Dt(re){const $=n.get(re);return re.samples>0&&e.has("WEBGL_multisampled_render_to_texture")===!0&&$.__useRenderToTexture!==!1}function pt(re){const $=a.render.frame;m.get(re)!==$&&(m.set(re,$),re.update())}function en(re,$){const se=re.colorSpace,Se=re.format,Fe=re.type;return re.isCompressedTexture===!0||re.isVideoTexture===!0||se!==Ro&&se!==Co&&(oi.getTransfer(se)===Vi?(Se!==ks||Fe!==aa)&&console.warn("THREE.WebGLTextures: sRGB encoded textures have to use RGBAFormat and UnsignedByteType."):console.error("THREE.WebGLTextures: Unsupported texture color space:",se)),$}function Re(re){return typeof HTMLImageElement<"u"&&re instanceof HTMLImageElement?(h.width=re.naturalWidth||re.width,h.height=re.naturalHeight||re.height):typeof VideoFrame<"u"&&re instanceof VideoFrame?(h.width=re.displayWidth,h.height=re.displayHeight):(h.width=re.width,h.height=re.height),h}this.allocateTextureUnit=ne,this.resetTextureUnits=J,this.setTexture2D=te,this.setTexture2DArray=Q,this.setTexture3D=ue,this.setTextureCube=he,this.rebindTextures=xt,this.setupRenderTarget=Ft,this.updateRenderTargetMipmap=Ye,this.updateMultisampleRenderTarget=zt,this.setupDepthRenderbuffer=_t,this.setupFrameBufferTexture=xe,this.useMultisampledRTT=Dt}function wj(i,e){function t(n,r=Co){let s;const a=oi.getTransfer(r);if(n===aa)return i.UNSIGNED_BYTE;if(n===Ay)return i.UNSIGNED_SHORT_4_4_4_4;if(n===dy)return i.UNSIGNED_SHORT_5_5_5_1;if(n===py)return i.UNSIGNED_INT_5_9_9_9_REV;if(n===Qf)return i.BYTE;if(n===Kf)return i.SHORT;if(n===wl)return i.UNSIGNED_SHORT;if(n===Ns)return i.INT;if(n===Rr)return i.UNSIGNED_INT;if(n===$r)return i.FLOAT;if(n===Gs)return i.HALF_FLOAT;if(n===Uw)return i.ALPHA;if(n===Ug)return i.RGB;if(n===ks)return i.RGBA;if(n===Bw)return i.LUMINANCE;if(n===Ow)return i.LUMINANCE_ALPHA;if(n===au)return i.DEPTH_COMPONENT;if(n===du)return i.DEPTH_STENCIL;if(n===Bg)return i.RED;if(n===H0)return i.RED_INTEGER;if(n===lA)return i.RG;if(n===j0)return i.RG_INTEGER;if(n===W0)return i.RGBA_INTEGER;if(n===Zf||n===Bh||n===Oh||n===Ih)if(a===Vi)if(s=e.get("WEBGL_compressed_texture_s3tc_srgb"),s!==null){if(n===Zf)return s.COMPRESSED_SRGB_S3TC_DXT1_EXT;if(n===Bh)return s.COMPRESSED_SRGB_ALPHA_S3TC_DXT1_EXT;if(n===Oh)return s.COMPRESSED_SRGB_ALPHA_S3TC_DXT3_EXT;if(n===Ih)return s.COMPRESSED_SRGB_ALPHA_S3TC_DXT5_EXT}else return null;else if(s=e.get("WEBGL_compressed_texture_s3tc"),s!==null){if(n===Zf)return s.COMPRESSED_RGB_S3TC_DXT1_EXT;if(n===Bh)return s.COMPRESSED_RGBA_S3TC_DXT1_EXT;if(n===Oh)return s.COMPRESSED_RGBA_S3TC_DXT3_EXT;if(n===Ih)return s.COMPRESSED_RGBA_S3TC_DXT5_EXT}else return null;if(n===Km||n===Zm||n===Jm||n===eg)if(s=e.get("WEBGL_compressed_texture_pvrtc"),s!==null){if(n===Km)return s.COMPRESSED_RGB_PVRTC_4BPPV1_IMG;if(n===Zm)return s.COMPRESSED_RGB_PVRTC_2BPPV1_IMG;if(n===Jm)return s.COMPRESSED_RGBA_PVRTC_4BPPV1_IMG;if(n===eg)return s.COMPRESSED_RGBA_PVRTC_2BPPV1_IMG}else return null;if(n===tg||n===u0||n===c0)if(s=e.get("WEBGL_compressed_texture_etc"),s!==null){if(n===tg||n===u0)return a===Vi?s.COMPRESSED_SRGB8_ETC2:s.COMPRESSED_RGB8_ETC2;if(n===c0)return a===Vi?s.COMPRESSED_SRGB8_ALPHA8_ETC2_EAC:s.COMPRESSED_RGBA8_ETC2_EAC}else return null;if(n===h0||n===f0||n===A0||n===d0||n===p0||n===m0||n===g0||n===v0||n===_0||n===y0||n===x0||n===b0||n===S0||n===T0)if(s=e.get("WEBGL_compressed_texture_astc"),s!==null){if(n===h0)return a===Vi?s.COMPRESSED_SRGB8_ALPHA8_ASTC_4x4_KHR:s.COMPRESSED_RGBA_ASTC_4x4_KHR;if(n===f0)return a===Vi?s.COMPRESSED_SRGB8_ALPHA8_ASTC_5x4_KHR:s.COMPRESSED_RGBA_ASTC_5x4_KHR;if(n===A0)return a===Vi?s.COMPRESSED_SRGB8_ALPHA8_ASTC_5x5_KHR:s.COMPRESSED_RGBA_ASTC_5x5_KHR;if(n===d0)return a===Vi?s.COMPRESSED_SRGB8_ALPHA8_ASTC_6x5_KHR:s.COMPRESSED_RGBA_ASTC_6x5_KHR;if(n===p0)return a===Vi?s.COMPRESSED_SRGB8_ALPHA8_ASTC_6x6_KHR:s.COMPRESSED_RGBA_ASTC_6x6_KHR;if(n===m0)return a===Vi?s.COMPRESSED_SRGB8_ALPHA8_ASTC_8x5_KHR:s.COMPRESSED_RGBA_ASTC_8x5_KHR;if(n===g0)return a===Vi?s.COMPRESSED_SRGB8_ALPHA8_ASTC_8x6_KHR:s.COMPRESSED_RGBA_ASTC_8x6_KHR;if(n===v0)return a===Vi?s.COMPRESSED_SRGB8_ALPHA8_ASTC_8x8_KHR:s.COMPRESSED_RGBA_ASTC_8x8_KHR;if(n===_0)return a===Vi?s.COMPRESSED_SRGB8_ALPHA8_ASTC_10x5_KHR:s.COMPRESSED_RGBA_ASTC_10x5_KHR;if(n===y0)return a===Vi?s.COMPRESSED_SRGB8_ALPHA8_ASTC_10x6_KHR:s.COMPRESSED_RGBA_ASTC_10x6_KHR;if(n===x0)return a===Vi?s.COMPRESSED_SRGB8_ALPHA8_ASTC_10x8_KHR:s.COMPRESSED_RGBA_ASTC_10x8_KHR;if(n===b0)return a===Vi?s.COMPRESSED_SRGB8_ALPHA8_ASTC_10x10_KHR:s.COMPRESSED_RGBA_ASTC_10x10_KHR;if(n===S0)return a===Vi?s.COMPRESSED_SRGB8_ALPHA8_ASTC_12x10_KHR:s.COMPRESSED_RGBA_ASTC_12x10_KHR;if(n===T0)return a===Vi?s.COMPRESSED_SRGB8_ALPHA8_ASTC_12x12_KHR:s.COMPRESSED_RGBA_ASTC_12x12_KHR}else return null;if(n===Jf||n===HS||n===jS)if(s=e.get("EXT_texture_compression_bptc"),s!==null){if(n===Jf)return a===Vi?s.COMPRESSED_SRGB_ALPHA_BPTC_UNORM_EXT:s.COMPRESSED_RGBA_BPTC_UNORM_EXT;if(n===HS)return s.COMPRESSED_RGB_BPTC_SIGNED_FLOAT_EXT;if(n===jS)return s.COMPRESSED_RGB_BPTC_UNSIGNED_FLOAT_EXT}else return null;if(n===Iw||n===ng||n===ig||n===rg)if(s=e.get("EXT_texture_compression_rgtc"),s!==null){if(n===Jf)return s.COMPRESSED_RED_RGTC1_EXT;if(n===ng)return s.COMPRESSED_SIGNED_RED_RGTC1_EXT;if(n===ig)return s.COMPRESSED_RED_GREEN_RGTC2_EXT;if(n===rg)return s.COMPRESSED_SIGNED_RED_GREEN_RGTC2_EXT}else return null;return n===Au?i.UNSIGNED_INT_24_8:i[n]!==void 0?i[n]:null}return{convert:t}}const Mj={type:"move"};class D3{constructor(){this._targetRay=null,this._grip=null,this._hand=null}getHandSpace(){return this._hand===null&&(this._hand=new ja,this._hand.matrixAutoUpdate=!1,this._hand.visible=!1,this._hand.joints={},this._hand.inputState={pinching:!1}),this._hand}getTargetRaySpace(){return this._targetRay===null&&(this._targetRay=new ja,this._targetRay.matrixAutoUpdate=!1,this._targetRay.visible=!1,this._targetRay.hasLinearVelocity=!1,this._targetRay.linearVelocity=new Ae,this._targetRay.hasAngularVelocity=!1,this._targetRay.angularVelocity=new Ae),this._targetRay}getGripSpace(){return this._grip===null&&(this._grip=new ja,this._grip.matrixAutoUpdate=!1,this._grip.visible=!1,this._grip.hasLinearVelocity=!1,this._grip.linearVelocity=new Ae,this._grip.hasAngularVelocity=!1,this._grip.angularVelocity=new Ae),this._grip}dispatchEvent(e){return this._targetRay!==null&&this._targetRay.dispatchEvent(e),this._grip!==null&&this._grip.dispatchEvent(e),this._hand!==null&&this._hand.dispatchEvent(e),this}connect(e){if(e&&e.hand){const t=this._hand;if(t)for(const n of e.hand.values())this._getHandJoint(t,n)}return this.dispatchEvent({type:"connected",data:e}),this}disconnect(e){return this.dispatchEvent({type:"disconnected",data:e}),this._targetRay!==null&&(this._targetRay.visible=!1),this._grip!==null&&(this._grip.visible=!1),this._hand!==null&&(this._hand.visible=!1),this}update(e,t,n){let r=null,s=null,a=null;const l=this._targetRay,u=this._grip,h=this._hand;if(e&&t.session.visibilityState!=="visible-blurred"){if(h&&e.hand){a=!0;for(const R of e.hand.values()){const C=t.getJointPose(R,n),E=this._getHandJoint(h,R);C!==null&&(E.matrix.fromArray(C.transform.matrix),E.matrix.decompose(E.position,E.rotation,E.scale),E.matrixWorldNeedsUpdate=!0,E.jointRadius=C.radius),E.visible=C!==null}const m=h.joints["index-finger-tip"],v=h.joints["thumb-tip"],x=m.position.distanceTo(v.position),S=.02,w=.005;h.inputState.pinching&&x>S+w?(h.inputState.pinching=!1,this.dispatchEvent({type:"pinchend",handedness:e.handedness,target:this})):!h.inputState.pinching&&x<=S-w&&(h.inputState.pinching=!0,this.dispatchEvent({type:"pinchstart",handedness:e.handedness,target:this}))}else u!==null&&e.gripSpace&&(s=t.getPose(e.gripSpace,n),s!==null&&(u.matrix.fromArray(s.transform.matrix),u.matrix.decompose(u.position,u.rotation,u.scale),u.matrixWorldNeedsUpdate=!0,s.linearVelocity?(u.hasLinearVelocity=!0,u.linearVelocity.copy(s.linearVelocity)):u.hasLinearVelocity=!1,s.angularVelocity?(u.hasAngularVelocity=!0,u.angularVelocity.copy(s.angularVelocity)):u.hasAngularVelocity=!1));l!==null&&(r=t.getPose(e.targetRaySpace,n),r===null&&s!==null&&(r=s),r!==null&&(l.matrix.fromArray(r.transform.matrix),l.matrix.decompose(l.position,l.rotation,l.scale),l.matrixWorldNeedsUpdate=!0,r.linearVelocity?(l.hasLinearVelocity=!0,l.linearVelocity.copy(r.linearVelocity)):l.hasLinearVelocity=!1,r.angularVelocity?(l.hasAngularVelocity=!0,l.angularVelocity.copy(r.angularVelocity)):l.hasAngularVelocity=!1,this.dispatchEvent(Mj)))}return l!==null&&(l.visible=r!==null),u!==null&&(u.visible=s!==null),h!==null&&(h.visible=a!==null),this}_getHandJoint(e,t){if(e.joints[t.jointName]===void 0){const n=new ja;n.matrixAutoUpdate=!1,n.visible=!1,e.joints[t.jointName]=n,e.add(n)}return e.joints[t.jointName]}}const Ej=` +void main() { + + gl_Position = vec4( position, 1.0 ); + +}`,Cj=` +uniform sampler2DArray depthColor; +uniform float depthWidth; +uniform float depthHeight; + +void main() { + + vec2 coord = vec2( gl_FragCoord.x / depthWidth, gl_FragCoord.y / depthHeight ); + + if ( coord.x >= 1.0 ) { + + gl_FragDepth = texture( depthColor, vec3( coord.x - 1.0, coord.y, 1 ) ).r; + + } else { + + gl_FragDepth = texture( depthColor, vec3( coord.x, coord.y, 0 ) ).r; + + } + +}`;class Rj{constructor(){this.texture=null,this.mesh=null,this.depthNear=0,this.depthFar=0}init(e,t,n){if(this.texture===null){const r=new vs,s=e.properties.get(r);s.__webglTexture=t.texture,(t.depthNear!==n.depthNear||t.depthFar!==n.depthFar)&&(this.depthNear=t.depthNear,this.depthFar=t.depthFar),this.texture=r}}getMesh(e){if(this.texture!==null&&this.mesh===null){const t=e.cameras[0].viewport,n=new Ja({vertexShader:Ej,fragmentShader:Cj,uniforms:{depthColor:{value:this.texture},depthWidth:{value:t.z},depthHeight:{value:t.w}}});this.mesh=new zi(new Ty(20,20),n)}return this.mesh}reset(){this.texture=null,this.mesh=null}getDepthTexture(){return this.texture}}class Nj extends zc{constructor(e,t){super();const n=this;let r=null,s=1,a=null,l="local-floor",u=1,h=null,m=null,v=null,x=null,S=null,w=null;const R=new Rj,C=t.getContextAttributes();let E=null,B=null;const L=[],O=[],G=new dt;let q=null;const z=new ya;z.viewport=new Ln;const j=new ya;j.viewport=new Ln;const F=[z,j],V=new Xz;let Y=null,J=null;this.cameraAutoUpdate=!0,this.enabled=!1,this.isPresenting=!1,this.getController=function(Ee){let Ge=L[Ee];return Ge===void 0&&(Ge=new D3,L[Ee]=Ge),Ge.getTargetRaySpace()},this.getControllerGrip=function(Ee){let Ge=L[Ee];return Ge===void 0&&(Ge=new D3,L[Ee]=Ge),Ge.getGripSpace()},this.getHand=function(Ee){let Ge=L[Ee];return Ge===void 0&&(Ge=new D3,L[Ee]=Ge),Ge.getHandSpace()};function ne(Ee){const Ge=O.indexOf(Ee.inputSource);if(Ge===-1)return;const xe=L[Ge];xe!==void 0&&(xe.update(Ee.inputSource,Ee.frame,h||a),xe.dispatchEvent({type:Ee.type,data:Ee.inputSource}))}function oe(){r.removeEventListener("select",ne),r.removeEventListener("selectstart",ne),r.removeEventListener("selectend",ne),r.removeEventListener("squeeze",ne),r.removeEventListener("squeezestart",ne),r.removeEventListener("squeezeend",ne),r.removeEventListener("end",oe),r.removeEventListener("inputsourceschange",te);for(let Ee=0;Ee=0&&(O[Le]=null,L[Le].disconnect(xe))}for(let Ge=0;Ge=O.length){O.push(xe),Le=_t;break}else if(O[_t]===null){O[_t]=xe,Le=_t;break}if(Le===-1)break}const ct=L[Le];ct&&ct.connect(xe)}}const Q=new Ae,ue=new Ae;function he(Ee,Ge,xe){Q.setFromMatrixPosition(Ge.matrixWorld),ue.setFromMatrixPosition(xe.matrixWorld);const Le=Q.distanceTo(ue),ct=Ge.projectionMatrix.elements,_t=xe.projectionMatrix.elements,xt=ct[14]/(ct[10]-1),Ft=ct[14]/(ct[10]+1),Ye=(ct[9]+1)/ct[5],rt=(ct[9]-1)/ct[5],fe=(ct[8]-1)/ct[0],zt=(_t[8]+1)/_t[0],ft=xt*fe,Dt=xt*zt,pt=Le/(-fe+zt),en=pt*-fe;if(Ge.matrixWorld.decompose(Ee.position,Ee.quaternion,Ee.scale),Ee.translateX(en),Ee.translateZ(pt),Ee.matrixWorld.compose(Ee.position,Ee.quaternion,Ee.scale),Ee.matrixWorldInverse.copy(Ee.matrixWorld).invert(),ct[10]===-1)Ee.projectionMatrix.copy(Ge.projectionMatrix),Ee.projectionMatrixInverse.copy(Ge.projectionMatrixInverse);else{const Re=xt+pt,re=Ft+pt,$=ft-en,se=Dt+(Le-en),Se=Ye*Ft/re*Re,Fe=rt*Ft/re*Re;Ee.projectionMatrix.makePerspective($,se,Se,Fe,Re,re),Ee.projectionMatrixInverse.copy(Ee.projectionMatrix).invert()}}function we(Ee,Ge){Ge===null?Ee.matrixWorld.copy(Ee.matrix):Ee.matrixWorld.multiplyMatrices(Ge.matrixWorld,Ee.matrix),Ee.matrixWorldInverse.copy(Ee.matrixWorld).invert()}this.updateCamera=function(Ee){if(r===null)return;let Ge=Ee.near,xe=Ee.far;R.texture!==null&&(R.depthNear>0&&(Ge=R.depthNear),R.depthFar>0&&(xe=R.depthFar)),V.near=j.near=z.near=Ge,V.far=j.far=z.far=xe,(Y!==V.near||J!==V.far)&&(r.updateRenderState({depthNear:V.near,depthFar:V.far}),Y=V.near,J=V.far),z.layers.mask=Ee.layers.mask|2,j.layers.mask=Ee.layers.mask|4,V.layers.mask=z.layers.mask|j.layers.mask;const Le=Ee.parent,ct=V.cameras;we(V,Le);for(let _t=0;_t0&&(C.alphaTest.value=E.alphaTest);const B=e.get(E),L=B.envMap,O=B.envMapRotation;L&&(C.envMap.value=L,wf.copy(O),wf.x*=-1,wf.y*=-1,wf.z*=-1,L.isCubeTexture&&L.isRenderTargetTexture===!1&&(wf.y*=-1,wf.z*=-1),C.envMapRotation.value.setFromMatrix4(Dj.makeRotationFromEuler(wf)),C.flipEnvMap.value=L.isCubeTexture&&L.isRenderTargetTexture===!1?-1:1,C.reflectivity.value=E.reflectivity,C.ior.value=E.ior,C.refractionRatio.value=E.refractionRatio),E.lightMap&&(C.lightMap.value=E.lightMap,C.lightMapIntensity.value=E.lightMapIntensity,t(E.lightMap,C.lightMapTransform)),E.aoMap&&(C.aoMap.value=E.aoMap,C.aoMapIntensity.value=E.aoMapIntensity,t(E.aoMap,C.aoMapTransform))}function a(C,E){C.diffuse.value.copy(E.color),C.opacity.value=E.opacity,E.map&&(C.map.value=E.map,t(E.map,C.mapTransform))}function l(C,E){C.dashSize.value=E.dashSize,C.totalSize.value=E.dashSize+E.gapSize,C.scale.value=E.scale}function u(C,E,B,L){C.diffuse.value.copy(E.color),C.opacity.value=E.opacity,C.size.value=E.size*B,C.scale.value=L*.5,E.map&&(C.map.value=E.map,t(E.map,C.uvTransform)),E.alphaMap&&(C.alphaMap.value=E.alphaMap,t(E.alphaMap,C.alphaMapTransform)),E.alphaTest>0&&(C.alphaTest.value=E.alphaTest)}function h(C,E){C.diffuse.value.copy(E.color),C.opacity.value=E.opacity,C.rotation.value=E.rotation,E.map&&(C.map.value=E.map,t(E.map,C.mapTransform)),E.alphaMap&&(C.alphaMap.value=E.alphaMap,t(E.alphaMap,C.alphaMapTransform)),E.alphaTest>0&&(C.alphaTest.value=E.alphaTest)}function m(C,E){C.specular.value.copy(E.specular),C.shininess.value=Math.max(E.shininess,1e-4)}function v(C,E){E.gradientMap&&(C.gradientMap.value=E.gradientMap)}function x(C,E){C.metalness.value=E.metalness,E.metalnessMap&&(C.metalnessMap.value=E.metalnessMap,t(E.metalnessMap,C.metalnessMapTransform)),C.roughness.value=E.roughness,E.roughnessMap&&(C.roughnessMap.value=E.roughnessMap,t(E.roughnessMap,C.roughnessMapTransform)),E.envMap&&(C.envMapIntensity.value=E.envMapIntensity)}function S(C,E,B){C.ior.value=E.ior,E.sheen>0&&(C.sheenColor.value.copy(E.sheenColor).multiplyScalar(E.sheen),C.sheenRoughness.value=E.sheenRoughness,E.sheenColorMap&&(C.sheenColorMap.value=E.sheenColorMap,t(E.sheenColorMap,C.sheenColorMapTransform)),E.sheenRoughnessMap&&(C.sheenRoughnessMap.value=E.sheenRoughnessMap,t(E.sheenRoughnessMap,C.sheenRoughnessMapTransform))),E.clearcoat>0&&(C.clearcoat.value=E.clearcoat,C.clearcoatRoughness.value=E.clearcoatRoughness,E.clearcoatMap&&(C.clearcoatMap.value=E.clearcoatMap,t(E.clearcoatMap,C.clearcoatMapTransform)),E.clearcoatRoughnessMap&&(C.clearcoatRoughnessMap.value=E.clearcoatRoughnessMap,t(E.clearcoatRoughnessMap,C.clearcoatRoughnessMapTransform)),E.clearcoatNormalMap&&(C.clearcoatNormalMap.value=E.clearcoatNormalMap,t(E.clearcoatNormalMap,C.clearcoatNormalMapTransform),C.clearcoatNormalScale.value.copy(E.clearcoatNormalScale),E.side===hr&&C.clearcoatNormalScale.value.negate())),E.dispersion>0&&(C.dispersion.value=E.dispersion),E.iridescence>0&&(C.iridescence.value=E.iridescence,C.iridescenceIOR.value=E.iridescenceIOR,C.iridescenceThicknessMinimum.value=E.iridescenceThicknessRange[0],C.iridescenceThicknessMaximum.value=E.iridescenceThicknessRange[1],E.iridescenceMap&&(C.iridescenceMap.value=E.iridescenceMap,t(E.iridescenceMap,C.iridescenceMapTransform)),E.iridescenceThicknessMap&&(C.iridescenceThicknessMap.value=E.iridescenceThicknessMap,t(E.iridescenceThicknessMap,C.iridescenceThicknessMapTransform))),E.transmission>0&&(C.transmission.value=E.transmission,C.transmissionSamplerMap.value=B.texture,C.transmissionSamplerSize.value.set(B.width,B.height),E.transmissionMap&&(C.transmissionMap.value=E.transmissionMap,t(E.transmissionMap,C.transmissionMapTransform)),C.thickness.value=E.thickness,E.thicknessMap&&(C.thicknessMap.value=E.thicknessMap,t(E.thicknessMap,C.thicknessMapTransform)),C.attenuationDistance.value=E.attenuationDistance,C.attenuationColor.value.copy(E.attenuationColor)),E.anisotropy>0&&(C.anisotropyVector.value.set(E.anisotropy*Math.cos(E.anisotropyRotation),E.anisotropy*Math.sin(E.anisotropyRotation)),E.anisotropyMap&&(C.anisotropyMap.value=E.anisotropyMap,t(E.anisotropyMap,C.anisotropyMapTransform))),C.specularIntensity.value=E.specularIntensity,C.specularColor.value.copy(E.specularColor),E.specularColorMap&&(C.specularColorMap.value=E.specularColorMap,t(E.specularColorMap,C.specularColorMapTransform)),E.specularIntensityMap&&(C.specularIntensityMap.value=E.specularIntensityMap,t(E.specularIntensityMap,C.specularIntensityMapTransform))}function w(C,E){E.matcap&&(C.matcap.value=E.matcap)}function R(C,E){const B=e.get(E).light;C.referencePosition.value.setFromMatrixPosition(B.matrixWorld),C.nearDistance.value=B.shadow.camera.near,C.farDistance.value=B.shadow.camera.far}return{refreshFogUniforms:n,refreshMaterialUniforms:r}}function Lj(i,e,t,n){let r={},s={},a=[];const l=i.getParameter(i.MAX_UNIFORM_BUFFER_BINDINGS);function u(B,L){const O=L.program;n.uniformBlockBinding(B,O)}function h(B,L){let O=r[B.id];O===void 0&&(w(B),O=m(B),r[B.id]=O,B.addEventListener("dispose",C));const G=L.program;n.updateUBOMapping(B,G);const q=e.render.frame;s[B.id]!==q&&(x(B),s[B.id]=q)}function m(B){const L=v();B.__bindingPointIndex=L;const O=i.createBuffer(),G=B.__size,q=B.usage;return i.bindBuffer(i.UNIFORM_BUFFER,O),i.bufferData(i.UNIFORM_BUFFER,G,q),i.bindBuffer(i.UNIFORM_BUFFER,null),i.bindBufferBase(i.UNIFORM_BUFFER,L,O),O}function v(){for(let B=0;B0&&(O+=G-q),B.__size=O,B.__cache={},this}function R(B){const L={boundary:0,storage:0};return typeof B=="number"||typeof B=="boolean"?(L.boundary=4,L.storage=4):B.isVector2?(L.boundary=8,L.storage=8):B.isVector3||B.isColor?(L.boundary=16,L.storage=12):B.isVector4?(L.boundary=16,L.storage=16):B.isMatrix3?(L.boundary=48,L.storage=48):B.isMatrix4?(L.boundary=64,L.storage=64):B.isTexture?console.warn("THREE.WebGLRenderer: Texture samplers can not be part of an uniforms group."):console.warn("THREE.WebGLRenderer: Unsupported uniform value type.",B),L}function C(B){const L=B.target;L.removeEventListener("dispose",C);const O=a.indexOf(L.__bindingPointIndex);a.splice(O,1),i.deleteBuffer(r[L.id]),delete r[L.id],delete s[L.id]}function E(){for(const B in r)i.deleteBuffer(r[B]);a=[],r={},s={}}return{bind:u,update:h,dispose:E}}class Uj{constructor(e={}){const{canvas:t=F7(),context:n=null,depth:r=!0,stencil:s=!1,alpha:a=!1,antialias:l=!1,premultipliedAlpha:u=!0,preserveDrawingBuffer:h=!1,powerPreference:m="default",failIfMajorPerformanceCaveat:v=!1,reverseDepthBuffer:x=!1}=e;this.isWebGLRenderer=!0;let S;if(n!==null){if(typeof WebGLRenderingContext<"u"&&n instanceof WebGLRenderingContext)throw new Error("THREE.WebGLRenderer: WebGL 1 is not supported since r163.");S=n.getContextAttributes().alpha}else S=a;const w=new Uint32Array(4),R=new Int32Array(4);let C=null,E=null;const B=[],L=[];this.domElement=t,this.debug={checkShaderErrors:!0,onShaderError:null},this.autoClear=!0,this.autoClearColor=!0,this.autoClearDepth=!0,this.autoClearStencil=!0,this.sortObjects=!0,this.clippingPlanes=[],this.localClippingEnabled=!1,this._outputColorSpace=_n,this.toneMapping=Za,this.toneMappingExposure=1;const O=this;let G=!1,q=0,z=0,j=null,F=-1,V=null;const Y=new Ln,J=new Ln;let ne=null;const oe=new an(0);let te=0,Q=t.width,ue=t.height,he=1,we=null,Te=null;const ce=new Ln(0,0,Q,ue),be=new Ln(0,0,Q,ue);let ze=!1;const Ee=new Fg;let Ge=!1,xe=!1;this.transmissionResolutionScale=1;const Le=new kn,ct=new kn,_t=new Ae,xt=new Ln,Ft={background:null,fog:null,environment:null,overrideMaterial:null,isScene:!0};let Ye=!1;function rt(){return j===null?he:1}let fe=n;function zt(le,Ie){return t.getContext(le,Ie)}try{const le={alpha:!0,depth:r,stencil:s,antialias:l,premultipliedAlpha:u,preserveDrawingBuffer:h,powerPreference:m,failIfMajorPerformanceCaveat:v};if("setAttribute"in t&&t.setAttribute("data-engine",`three.js r${V0}`),t.addEventListener("webglcontextlost",bt,!1),t.addEventListener("webglcontextrestored",Xt,!1),t.addEventListener("webglcontextcreationerror",qt,!1),fe===null){const Ie="webgl2";if(fe=zt(Ie,le),fe===null)throw zt(Ie)?new Error("Error creating WebGL context with your selected attributes."):new Error("Error creating WebGL context.")}}catch(le){throw console.error("THREE.WebGLRenderer: "+le.message),le}let ft,Dt,pt,en,Re,re,$,se,Se,Fe,qe,wt,Mt,Gt,$t,vt,Yt,rn,Ht,Pt,It,Nn,Jn,ge;function Wt(){ft=new VV(fe),ft.init(),Nn=new wj(fe,ft),Dt=new IV(fe,ft,e,Nn),pt=new Sj(fe,ft),Dt.reverseDepthBuffer&&x&&pt.buffers.depth.setReversed(!0),en=new WV(fe),Re=new cj,re=new Tj(fe,ft,pt,Re,Dt,Nn,en),$=new kV(O),se=new qV(O),Se=new Jz(fe),Jn=new BV(fe,Se),Fe=new HV(fe,Se,en,Jn),qe=new XV(fe,Fe,Se,en),Ht=new $V(fe,Dt,re),vt=new FV(Re),wt=new uj(O,$,se,ft,Dt,Jn,vt),Mt=new Pj(O,Re),Gt=new fj,$t=new vj(ft),rn=new UV(O,$,se,pt,qe,S,u),Yt=new xj(O,qe,Dt),ge=new Lj(fe,en,Dt,pt),Pt=new OV(fe,ft,en),It=new jV(fe,ft,en),en.programs=wt.programs,O.capabilities=Dt,O.extensions=ft,O.properties=Re,O.renderLists=Gt,O.shadowMap=Yt,O.state=pt,O.info=en}Wt();const it=new Nj(O,fe);this.xr=it,this.getContext=function(){return fe},this.getContextAttributes=function(){return fe.getContextAttributes()},this.forceContextLoss=function(){const le=ft.get("WEBGL_lose_context");le&&le.loseContext()},this.forceContextRestore=function(){const le=ft.get("WEBGL_lose_context");le&&le.restoreContext()},this.getPixelRatio=function(){return he},this.setPixelRatio=function(le){le!==void 0&&(he=le,this.setSize(Q,ue,!1))},this.getSize=function(le){return le.set(Q,ue)},this.setSize=function(le,Ie,Ke=!0){if(it.isPresenting){console.warn("THREE.WebGLRenderer: Can't change size while VR device is presenting.");return}Q=le,ue=Ie,t.width=Math.floor(le*he),t.height=Math.floor(Ie*he),Ke===!0&&(t.style.width=le+"px",t.style.height=Ie+"px"),this.setViewport(0,0,le,Ie)},this.getDrawingBufferSize=function(le){return le.set(Q*he,ue*he).floor()},this.setDrawingBufferSize=function(le,Ie,Ke){Q=le,ue=Ie,he=Ke,t.width=Math.floor(le*Ke),t.height=Math.floor(Ie*Ke),this.setViewport(0,0,le,Ie)},this.getCurrentViewport=function(le){return le.copy(Y)},this.getViewport=function(le){return le.copy(ce)},this.setViewport=function(le,Ie,Ke,Xe){le.isVector4?ce.set(le.x,le.y,le.z,le.w):ce.set(le,Ie,Ke,Xe),pt.viewport(Y.copy(ce).multiplyScalar(he).round())},this.getScissor=function(le){return le.copy(be)},this.setScissor=function(le,Ie,Ke,Xe){le.isVector4?be.set(le.x,le.y,le.z,le.w):be.set(le,Ie,Ke,Xe),pt.scissor(J.copy(be).multiplyScalar(he).round())},this.getScissorTest=function(){return ze},this.setScissorTest=function(le){pt.setScissorTest(ze=le)},this.setOpaqueSort=function(le){we=le},this.setTransparentSort=function(le){Te=le},this.getClearColor=function(le){return le.copy(rn.getClearColor())},this.setClearColor=function(){rn.setClearColor.apply(rn,arguments)},this.getClearAlpha=function(){return rn.getClearAlpha()},this.setClearAlpha=function(){rn.setClearAlpha.apply(rn,arguments)},this.clear=function(le=!0,Ie=!0,Ke=!0){let Xe=0;if(le){let ke=!1;if(j!==null){const Ot=j.texture.format;ke=Ot===W0||Ot===j0||Ot===H0}if(ke){const Ot=j.texture.type,jt=Ot===aa||Ot===Rr||Ot===wl||Ot===Au||Ot===Ay||Ot===dy,At=rn.getClearColor(),Z=rn.getClearAlpha(),Bt=At.r,bn=At.g,fn=At.b;jt?(w[0]=Bt,w[1]=bn,w[2]=fn,w[3]=Z,fe.clearBufferuiv(fe.COLOR,0,w)):(R[0]=Bt,R[1]=bn,R[2]=fn,R[3]=Z,fe.clearBufferiv(fe.COLOR,0,R))}else Xe|=fe.COLOR_BUFFER_BIT}Ie&&(Xe|=fe.DEPTH_BUFFER_BIT),Ke&&(Xe|=fe.STENCIL_BUFFER_BIT,this.state.buffers.stencil.setMask(4294967295)),fe.clear(Xe)},this.clearColor=function(){this.clear(!0,!1,!1)},this.clearDepth=function(){this.clear(!1,!0,!1)},this.clearStencil=function(){this.clear(!1,!1,!0)},this.dispose=function(){t.removeEventListener("webglcontextlost",bt,!1),t.removeEventListener("webglcontextrestored",Xt,!1),t.removeEventListener("webglcontextcreationerror",qt,!1),rn.dispose(),Gt.dispose(),$t.dispose(),Re.dispose(),$.dispose(),se.dispose(),qe.dispose(),Jn.dispose(),ge.dispose(),wt.dispose(),it.dispose(),it.removeEventListener("sessionstart",Je),it.removeEventListener("sessionend",mt),kt.stop()};function bt(le){le.preventDefault(),console.log("THREE.WebGLRenderer: Context Lost."),G=!0}function Xt(){console.log("THREE.WebGLRenderer: Context Restored."),G=!1;const le=en.autoReset,Ie=Yt.enabled,Ke=Yt.autoUpdate,Xe=Yt.needsUpdate,ke=Yt.type;Wt(),en.autoReset=le,Yt.enabled=Ie,Yt.autoUpdate=Ke,Yt.needsUpdate=Xe,Yt.type=ke}function qt(le){console.error("THREE.WebGLRenderer: A WebGL context could not be created. Reason: ",le.statusMessage)}function xn(le){const Ie=le.target;Ie.removeEventListener("dispose",xn),qi(Ie)}function qi(le){rr(le),Re.remove(le)}function rr(le){const Ie=Re.get(le).programs;Ie!==void 0&&(Ie.forEach(function(Ke){wt.releaseProgram(Ke)}),le.isShaderMaterial&&wt.releaseShaderCache(le))}this.renderBufferDirect=function(le,Ie,Ke,Xe,ke,Ot){Ie===null&&(Ie=Ft);const jt=ke.isMesh&&ke.matrixWorld.determinant()<0,At=Hs(le,Ie,Ke,Xe,ke);pt.setMaterial(Xe,jt);let Z=Ke.index,Bt=1;if(Xe.wireframe===!0){if(Z=Fe.getWireframeAttribute(Ke),Z===void 0)return;Bt=2}const bn=Ke.drawRange,fn=Ke.attributes.position;let ci=bn.start*Bt,hi=(bn.start+bn.count)*Bt;Ot!==null&&(ci=Math.max(ci,Ot.start*Bt),hi=Math.min(hi,(Ot.start+Ot.count)*Bt)),Z!==null?(ci=Math.max(ci,0),hi=Math.min(hi,Z.count)):fn!=null&&(ci=Math.max(ci,0),hi=Math.min(hi,fn.count));const yi=hi-ci;if(yi<0||yi===1/0)return;Jn.setup(ke,Xe,At,Ke,Z);let K,Un=Pt;if(Z!==null&&(K=Se.get(Z),Un=It,Un.setIndex(K)),ke.isMesh)Xe.wireframe===!0?(pt.setLineWidth(Xe.wireframeLinewidth*rt()),Un.setMode(fe.LINES)):Un.setMode(fe.TRIANGLES);else if(ke.isLine){let mn=Xe.linewidth;mn===void 0&&(mn=1),pt.setLineWidth(mn*rt()),ke.isLineSegments?Un.setMode(fe.LINES):ke.isLineLoop?Un.setMode(fe.LINE_LOOP):Un.setMode(fe.LINE_STRIP)}else ke.isPoints?Un.setMode(fe.POINTS):ke.isSprite&&Un.setMode(fe.TRIANGLES);if(ke.isBatchedMesh)if(ke._multiDrawInstances!==null)Un.renderMultiDrawInstances(ke._multiDrawStarts,ke._multiDrawCounts,ke._multiDrawCount,ke._multiDrawInstances);else if(ft.get("WEBGL_multi_draw"))Un.renderMultiDraw(ke._multiDrawStarts,ke._multiDrawCounts,ke._multiDrawCount);else{const mn=ke._multiDrawStarts,yr=ke._multiDrawCounts,fi=ke._multiDrawCount,bs=Z?Se.get(Z).bytesPerElement:1,fa=Re.get(Xe).currentProgram.getUniforms();for(let _e=0;_e{function Ot(){if(Xe.forEach(function(jt){Re.get(jt).currentProgram.isReady()&&Xe.delete(jt)}),Xe.size===0){ke(le);return}setTimeout(Ot,10)}ft.get("KHR_parallel_shader_compile")!==null?Ot():setTimeout(Ot,10)})};let $i=null;function Jr(le){$i&&$i(le)}function Je(){kt.stop()}function mt(){kt.start()}const kt=new lD;kt.setAnimationLoop(Jr),typeof self<"u"&&kt.setContext(self),this.setAnimationLoop=function(le){$i=le,it.setAnimationLoop(le),le===null?kt.stop():kt.start()},it.addEventListener("sessionstart",Je),it.addEventListener("sessionend",mt),this.render=function(le,Ie){if(Ie!==void 0&&Ie.isCamera!==!0){console.error("THREE.WebGLRenderer.render: camera is not an instance of THREE.Camera.");return}if(G===!0)return;if(le.matrixWorldAutoUpdate===!0&&le.updateMatrixWorld(),Ie.parent===null&&Ie.matrixWorldAutoUpdate===!0&&Ie.updateMatrixWorld(),it.enabled===!0&&it.isPresenting===!0&&(it.cameraAutoUpdate===!0&&it.updateCamera(Ie),Ie=it.getCamera()),le.isScene===!0&&le.onBeforeRender(O,le,Ie,j),E=$t.get(le,L.length),E.init(Ie),L.push(E),ct.multiplyMatrices(Ie.projectionMatrix,Ie.matrixWorldInverse),Ee.setFromProjectionMatrix(ct),xe=this.localClippingEnabled,Ge=vt.init(this.clippingPlanes,xe),C=Gt.get(le,B.length),C.init(),B.push(C),it.enabled===!0&&it.isPresenting===!0){const Ot=O.xr.getDepthSensingMesh();Ot!==null&&at(Ot,Ie,-1/0,O.sortObjects)}at(le,Ie,0,O.sortObjects),C.finish(),O.sortObjects===!0&&C.sort(we,Te),Ye=it.enabled===!1||it.isPresenting===!1||it.hasDepthSensing()===!1,Ye&&rn.addToRenderList(C,le),this.info.render.frame++,Ge===!0&&vt.beginShadows();const Ke=E.state.shadowsArray;Yt.render(Ke,le,Ie),Ge===!0&&vt.endShadows(),this.info.autoReset===!0&&this.info.reset();const Xe=C.opaque,ke=C.transmissive;if(E.setupLights(),Ie.isArrayCamera){const Ot=Ie.cameras;if(ke.length>0)for(let jt=0,At=Ot.length;jt0&&ee(Xe,ke,le,Ie),Ye&&rn.render(le),d(C,le,Ie);j!==null&&z===0&&(re.updateMultisampleRenderTarget(j),re.updateRenderTargetMipmap(j)),le.isScene===!0&&le.onAfterRender(O,le,Ie),Jn.resetDefaultState(),F=-1,V=null,L.pop(),L.length>0?(E=L[L.length-1],Ge===!0&&vt.setGlobalState(O.clippingPlanes,E.state.camera)):E=null,B.pop(),B.length>0?C=B[B.length-1]:C=null};function at(le,Ie,Ke,Xe){if(le.visible===!1)return;if(le.layers.test(Ie.layers)){if(le.isGroup)Ke=le.renderOrder;else if(le.isLOD)le.autoUpdate===!0&&le.update(Ie);else if(le.isLight)E.pushLight(le),le.castShadow&&E.pushShadow(le);else if(le.isSprite){if(!le.frustumCulled||Ee.intersectsSprite(le)){Xe&&xt.setFromMatrixPosition(le.matrixWorld).applyMatrix4(ct);const jt=qe.update(le),At=le.material;At.visible&&C.push(le,jt,At,Ke,xt.z,null)}}else if((le.isMesh||le.isLine||le.isPoints)&&(!le.frustumCulled||Ee.intersectsObject(le))){const jt=qe.update(le),At=le.material;if(Xe&&(le.boundingSphere!==void 0?(le.boundingSphere===null&&le.computeBoundingSphere(),xt.copy(le.boundingSphere.center)):(jt.boundingSphere===null&&jt.computeBoundingSphere(),xt.copy(jt.boundingSphere.center)),xt.applyMatrix4(le.matrixWorld).applyMatrix4(ct)),Array.isArray(At)){const Z=jt.groups;for(let Bt=0,bn=Z.length;Bt0&&$n(ke,Ie,Ke),Ot.length>0&&$n(Ot,Ie,Ke),jt.length>0&&$n(jt,Ie,Ke),pt.buffers.depth.setTest(!0),pt.buffers.depth.setMask(!0),pt.buffers.color.setMask(!0),pt.setPolygonOffset(!1)}function ee(le,Ie,Ke,Xe){if((Ke.isScene===!0?Ke.overrideMaterial:null)!==null)return;E.state.transmissionRenderTarget[Xe.id]===void 0&&(E.state.transmissionRenderTarget[Xe.id]=new qh(1,1,{generateMipmaps:!0,type:ft.has("EXT_color_buffer_half_float")||ft.has("EXT_color_buffer_float")?Gs:aa,minFilter:Va,samples:4,stencilBuffer:s,resolveDepthBuffer:!1,resolveStencilBuffer:!1,colorSpace:oi.workingColorSpace}));const Ot=E.state.transmissionRenderTarget[Xe.id],jt=Xe.viewport||Y;Ot.setSize(jt.z*O.transmissionResolutionScale,jt.w*O.transmissionResolutionScale);const At=O.getRenderTarget();O.setRenderTarget(Ot),O.getClearColor(oe),te=O.getClearAlpha(),te<1&&O.setClearColor(16777215,.5),O.clear(),Ye&&rn.render(Ke);const Z=O.toneMapping;O.toneMapping=Za;const Bt=Xe.viewport;if(Xe.viewport!==void 0&&(Xe.viewport=void 0),E.setupLightsView(Xe),Ge===!0&&vt.setGlobalState(O.clippingPlanes,Xe),$n(le,Ke,Xe),re.updateMultisampleRenderTarget(Ot),re.updateRenderTargetMipmap(Ot),ft.has("WEBGL_multisampled_render_to_texture")===!1){let bn=!1;for(let fn=0,ci=Ie.length;fn0),fn=!!Ke.morphAttributes.position,ci=!!Ke.morphAttributes.normal,hi=!!Ke.morphAttributes.color;let yi=Za;Xe.toneMapped&&(j===null||j.isXRRenderTarget===!0)&&(yi=O.toneMapping);const K=Ke.morphAttributes.position||Ke.morphAttributes.normal||Ke.morphAttributes.color,Un=K!==void 0?K.length:0,mn=Re.get(Xe),yr=E.state.lights;if(Ge===!0&&(xe===!0||le!==V)){const Yn=le===V&&Xe.id===F;vt.setState(Xe,le,Yn)}let fi=!1;Xe.version===mn.__version?(mn.needsLights&&mn.lightsStateVersion!==yr.state.version||mn.outputColorSpace!==At||ke.isBatchedMesh&&mn.batching===!1||!ke.isBatchedMesh&&mn.batching===!0||ke.isBatchedMesh&&mn.batchingColor===!0&&ke.colorTexture===null||ke.isBatchedMesh&&mn.batchingColor===!1&&ke.colorTexture!==null||ke.isInstancedMesh&&mn.instancing===!1||!ke.isInstancedMesh&&mn.instancing===!0||ke.isSkinnedMesh&&mn.skinning===!1||!ke.isSkinnedMesh&&mn.skinning===!0||ke.isInstancedMesh&&mn.instancingColor===!0&&ke.instanceColor===null||ke.isInstancedMesh&&mn.instancingColor===!1&&ke.instanceColor!==null||ke.isInstancedMesh&&mn.instancingMorph===!0&&ke.morphTexture===null||ke.isInstancedMesh&&mn.instancingMorph===!1&&ke.morphTexture!==null||mn.envMap!==Z||Xe.fog===!0&&mn.fog!==Ot||mn.numClippingPlanes!==void 0&&(mn.numClippingPlanes!==vt.numPlanes||mn.numIntersection!==vt.numIntersection)||mn.vertexAlphas!==Bt||mn.vertexTangents!==bn||mn.morphTargets!==fn||mn.morphNormals!==ci||mn.morphColors!==hi||mn.toneMapping!==yi||mn.morphTargetsCount!==Un)&&(fi=!0):(fi=!0,mn.__version=Xe.version);let bs=mn.currentProgram;fi===!0&&(bs=Xn(Xe,Ie,ke));let fa=!1,_e=!1,ot=!1;const Rt=bs.getUniforms(),Jt=mn.uniforms;if(pt.useProgram(bs.program)&&(fa=!0,_e=!0,ot=!0),Xe.id!==F&&(F=Xe.id,_e=!0),fa||V!==le){pt.buffers.depth.getReversed()?(Le.copy(le.projectionMatrix),wk(Le),Mk(Le),Rt.setValue(fe,"projectionMatrix",Le)):Rt.setValue(fe,"projectionMatrix",le.projectionMatrix),Rt.setValue(fe,"viewMatrix",le.matrixWorldInverse);const xi=Rt.map.cameraPosition;xi!==void 0&&xi.setValue(fe,_t.setFromMatrixPosition(le.matrixWorld)),Dt.logarithmicDepthBuffer&&Rt.setValue(fe,"logDepthBufFC",2/(Math.log(le.far+1)/Math.LN2)),(Xe.isMeshPhongMaterial||Xe.isMeshToonMaterial||Xe.isMeshLambertMaterial||Xe.isMeshBasicMaterial||Xe.isMeshStandardMaterial||Xe.isShaderMaterial)&&Rt.setValue(fe,"isOrthographic",le.isOrthographicCamera===!0),V!==le&&(V=le,_e=!0,ot=!0)}if(ke.isSkinnedMesh){Rt.setOptional(fe,ke,"bindMatrix"),Rt.setOptional(fe,ke,"bindMatrixInverse");const Yn=ke.skeleton;Yn&&(Yn.boneTexture===null&&Yn.computeBoneTexture(),Rt.setValue(fe,"boneTexture",Yn.boneTexture,re))}ke.isBatchedMesh&&(Rt.setOptional(fe,ke,"batchingTexture"),Rt.setValue(fe,"batchingTexture",ke._matricesTexture,re),Rt.setOptional(fe,ke,"batchingIdTexture"),Rt.setValue(fe,"batchingIdTexture",ke._indirectTexture,re),Rt.setOptional(fe,ke,"batchingColorTexture"),ke._colorsTexture!==null&&Rt.setValue(fe,"batchingColorTexture",ke._colorsTexture,re));const cn=Ke.morphAttributes;if((cn.position!==void 0||cn.normal!==void 0||cn.color!==void 0)&&Ht.update(ke,Ke,bs),(_e||mn.receiveShadow!==ke.receiveShadow)&&(mn.receiveShadow=ke.receiveShadow,Rt.setValue(fe,"receiveShadow",ke.receiveShadow)),Xe.isMeshGouraudMaterial&&Xe.envMap!==null&&(Jt.envMap.value=Z,Jt.flipEnvMap.value=Z.isCubeTexture&&Z.isRenderTargetTexture===!1?-1:1),Xe.isMeshStandardMaterial&&Xe.envMap===null&&Ie.environment!==null&&(Jt.envMapIntensity.value=Ie.environmentIntensity),_e&&(Rt.setValue(fe,"toneMappingExposure",O.toneMappingExposure),mn.needsLights&&ui(Jt,ot),Ot&&Xe.fog===!0&&Mt.refreshFogUniforms(Jt,Ot),Mt.refreshMaterialUniforms(Jt,Xe,he,ue,E.state.transmissionRenderTarget[le.id]),qv.upload(fe,un(mn),Jt,re)),Xe.isShaderMaterial&&Xe.uniformsNeedUpdate===!0&&(qv.upload(fe,un(mn),Jt,re),Xe.uniformsNeedUpdate=!1),Xe.isSpriteMaterial&&Rt.setValue(fe,"center",ke.center),Rt.setValue(fe,"modelViewMatrix",ke.modelViewMatrix),Rt.setValue(fe,"normalMatrix",ke.normalMatrix),Rt.setValue(fe,"modelMatrix",ke.matrixWorld),Xe.isShaderMaterial||Xe.isRawShaderMaterial){const Yn=Xe.uniformsGroups;for(let xi=0,js=Yn.length;xi0&&re.useMultisampledRTT(le)===!1?ke=Re.get(le).__webglMultisampledFramebuffer:Array.isArray(bn)?ke=bn[Ke]:ke=bn,Y.copy(le.viewport),J.copy(le.scissor),ne=le.scissorTest}else Y.copy(ce).multiplyScalar(he).floor(),J.copy(be).multiplyScalar(he).floor(),ne=ze;if(Ke!==0&&(ke=cs),pt.bindFramebuffer(fe.FRAMEBUFFER,ke)&&Xe&&pt.drawBuffers(le,ke),pt.viewport(Y),pt.scissor(J),pt.setScissorTest(ne),Ot){const Z=Re.get(le.texture);fe.framebufferTexture2D(fe.FRAMEBUFFER,fe.COLOR_ATTACHMENT0,fe.TEXTURE_CUBE_MAP_POSITIVE_X+Ie,Z.__webglTexture,Ke)}else if(jt){const Z=Re.get(le.texture),Bt=Ie;fe.framebufferTextureLayer(fe.FRAMEBUFFER,fe.COLOR_ATTACHMENT0,Z.__webglTexture,Ke,Bt)}else if(le!==null&&Ke!==0){const Z=Re.get(le.texture);fe.framebufferTexture2D(fe.FRAMEBUFFER,fe.COLOR_ATTACHMENT0,fe.TEXTURE_2D,Z.__webglTexture,Ke)}F=-1},this.readRenderTargetPixels=function(le,Ie,Ke,Xe,ke,Ot,jt){if(!(le&&le.isWebGLRenderTarget)){console.error("THREE.WebGLRenderer.readRenderTargetPixels: renderTarget is not THREE.WebGLRenderTarget.");return}let At=Re.get(le).__webglFramebuffer;if(le.isWebGLCubeRenderTarget&&jt!==void 0&&(At=At[jt]),At){pt.bindFramebuffer(fe.FRAMEBUFFER,At);try{const Z=le.texture,Bt=Z.format,bn=Z.type;if(!Dt.textureFormatReadable(Bt)){console.error("THREE.WebGLRenderer.readRenderTargetPixels: renderTarget is not in RGBA or implementation defined format.");return}if(!Dt.textureTypeReadable(bn)){console.error("THREE.WebGLRenderer.readRenderTargetPixels: renderTarget is not in UnsignedByteType or implementation defined type.");return}Ie>=0&&Ie<=le.width-Xe&&Ke>=0&&Ke<=le.height-ke&&fe.readPixels(Ie,Ke,Xe,ke,Nn.convert(Bt),Nn.convert(bn),Ot)}finally{const Z=j!==null?Re.get(j).__webglFramebuffer:null;pt.bindFramebuffer(fe.FRAMEBUFFER,Z)}}},this.readRenderTargetPixelsAsync=async function(le,Ie,Ke,Xe,ke,Ot,jt){if(!(le&&le.isWebGLRenderTarget))throw new Error("THREE.WebGLRenderer.readRenderTargetPixels: renderTarget is not THREE.WebGLRenderTarget.");let At=Re.get(le).__webglFramebuffer;if(le.isWebGLCubeRenderTarget&&jt!==void 0&&(At=At[jt]),At){const Z=le.texture,Bt=Z.format,bn=Z.type;if(!Dt.textureFormatReadable(Bt))throw new Error("THREE.WebGLRenderer.readRenderTargetPixelsAsync: renderTarget is not in RGBA or implementation defined format.");if(!Dt.textureTypeReadable(bn))throw new Error("THREE.WebGLRenderer.readRenderTargetPixelsAsync: renderTarget is not in UnsignedByteType or implementation defined type.");if(Ie>=0&&Ie<=le.width-Xe&&Ke>=0&&Ke<=le.height-ke){pt.bindFramebuffer(fe.FRAMEBUFFER,At);const fn=fe.createBuffer();fe.bindBuffer(fe.PIXEL_PACK_BUFFER,fn),fe.bufferData(fe.PIXEL_PACK_BUFFER,Ot.byteLength,fe.STREAM_READ),fe.readPixels(Ie,Ke,Xe,ke,Nn.convert(Bt),Nn.convert(bn),0);const ci=j!==null?Re.get(j).__webglFramebuffer:null;pt.bindFramebuffer(fe.FRAMEBUFFER,ci);const hi=fe.fenceSync(fe.SYNC_GPU_COMMANDS_COMPLETE,0);return fe.flush(),await Tk(fe,hi,4),fe.bindBuffer(fe.PIXEL_PACK_BUFFER,fn),fe.getBufferSubData(fe.PIXEL_PACK_BUFFER,0,Ot),fe.deleteBuffer(fn),fe.deleteSync(hi),Ot}else throw new Error("THREE.WebGLRenderer.readRenderTargetPixelsAsync: requested read bounds are out of range.")}},this.copyFramebufferToTexture=function(le,Ie=null,Ke=0){le.isTexture!==!0&&(kf("WebGLRenderer: copyFramebufferToTexture function signature has changed."),Ie=arguments[0]||null,le=arguments[1]);const Xe=Math.pow(2,-Ke),ke=Math.floor(le.image.width*Xe),Ot=Math.floor(le.image.height*Xe),jt=Ie!==null?Ie.x:0,At=Ie!==null?Ie.y:0;re.setTexture2D(le,0),fe.copyTexSubImage2D(fe.TEXTURE_2D,Ke,0,0,jt,At,ke,Ot),pt.unbindTexture()};const Ma=fe.createFramebuffer(),Ul=fe.createFramebuffer();this.copyTextureToTexture=function(le,Ie,Ke=null,Xe=null,ke=0,Ot=null){le.isTexture!==!0&&(kf("WebGLRenderer: copyTextureToTexture function signature has changed."),Xe=arguments[0]||null,le=arguments[1],Ie=arguments[2],Ot=arguments[3]||0,Ke=null),Ot===null&&(ke!==0?(kf("WebGLRenderer: copyTextureToTexture function signature has changed to support src and dst mipmap levels."),Ot=ke,ke=0):Ot=0);let jt,At,Z,Bt,bn,fn,ci,hi,yi;const K=le.isCompressedTexture?le.mipmaps[Ot]:le.image;if(Ke!==null)jt=Ke.max.x-Ke.min.x,At=Ke.max.y-Ke.min.y,Z=Ke.isBox3?Ke.max.z-Ke.min.z:1,Bt=Ke.min.x,bn=Ke.min.y,fn=Ke.isBox3?Ke.min.z:0;else{const cn=Math.pow(2,-ke);jt=Math.floor(K.width*cn),At=Math.floor(K.height*cn),le.isDataArrayTexture?Z=K.depth:le.isData3DTexture?Z=Math.floor(K.depth*cn):Z=1,Bt=0,bn=0,fn=0}Xe!==null?(ci=Xe.x,hi=Xe.y,yi=Xe.z):(ci=0,hi=0,yi=0);const Un=Nn.convert(Ie.format),mn=Nn.convert(Ie.type);let yr;Ie.isData3DTexture?(re.setTexture3D(Ie,0),yr=fe.TEXTURE_3D):Ie.isDataArrayTexture||Ie.isCompressedArrayTexture?(re.setTexture2DArray(Ie,0),yr=fe.TEXTURE_2D_ARRAY):(re.setTexture2D(Ie,0),yr=fe.TEXTURE_2D),fe.pixelStorei(fe.UNPACK_FLIP_Y_WEBGL,Ie.flipY),fe.pixelStorei(fe.UNPACK_PREMULTIPLY_ALPHA_WEBGL,Ie.premultiplyAlpha),fe.pixelStorei(fe.UNPACK_ALIGNMENT,Ie.unpackAlignment);const fi=fe.getParameter(fe.UNPACK_ROW_LENGTH),bs=fe.getParameter(fe.UNPACK_IMAGE_HEIGHT),fa=fe.getParameter(fe.UNPACK_SKIP_PIXELS),_e=fe.getParameter(fe.UNPACK_SKIP_ROWS),ot=fe.getParameter(fe.UNPACK_SKIP_IMAGES);fe.pixelStorei(fe.UNPACK_ROW_LENGTH,K.width),fe.pixelStorei(fe.UNPACK_IMAGE_HEIGHT,K.height),fe.pixelStorei(fe.UNPACK_SKIP_PIXELS,Bt),fe.pixelStorei(fe.UNPACK_SKIP_ROWS,bn),fe.pixelStorei(fe.UNPACK_SKIP_IMAGES,fn);const Rt=le.isDataArrayTexture||le.isData3DTexture,Jt=Ie.isDataArrayTexture||Ie.isData3DTexture;if(le.isDepthTexture){const cn=Re.get(le),Yn=Re.get(Ie),xi=Re.get(cn.__renderTarget),js=Re.get(Yn.__renderTarget);pt.bindFramebuffer(fe.READ_FRAMEBUFFER,xi.__webglFramebuffer),pt.bindFramebuffer(fe.DRAW_FRAMEBUFFER,js.__webglFramebuffer);for(let mi=0;mi=-1&&_d.z<=1&&w.layers.test(C.layers)===!0,B=w.element;B.style.display=E===!0?"":"none",E===!0&&(w.onBeforeRender(t,R,C),B.style.transform="translate("+-100*w.center.x+"%,"+-100*w.center.y+"%)translate("+(_d.x*s+s)+"px,"+(-_d.y*a+a)+"px)",B.parentNode!==u&&u.appendChild(B),w.onAfterRender(t,R,C));const L={distanceToCameraSquared:v(C,w)};l.objects.set(w,L)}for(let E=0,B=w.children.length;E=e||z<0||v&&j>=s}function E(){var q=P3();if(C(q))return B(q);l=setTimeout(E,R(q))}function B(q){return l=void 0,x&&n?S(q):(n=r=void 0,a)}function L(){l!==void 0&&clearTimeout(l),h=0,n=u=r=l=void 0}function O(){return l===void 0?a:B(P3())}function G(){var q=P3(),z=C(q);if(n=arguments,r=this,u=q,z){if(l===void 0)return w(u);if(v)return clearTimeout(l),l=setTimeout(E,e),S(u)}return l===void 0&&(l=setTimeout(E,e)),a}return G.cancel=L,G.flush=O,G}function uR(i,e){(e==null||e>i.length)&&(e=i.length);for(var t=0,n=Array(e);t1e4?1e4:i,{In:function(e){return Math.pow(e,i)},Out:function(e){return 1-Math.pow(1-e,i)},InOut:function(e){return e<.5?Math.pow(e*2,i)/2:(1-Math.pow(2-e*2,i))/2+.5}}}}),ym=function(){return performance.now()},My=(function(){function i(){this._tweens={},this._tweensAddedDuringUpdate={}}return i.prototype.getAll=function(){var e=this;return Object.keys(this._tweens).map(function(t){return e._tweens[t]})},i.prototype.removeAll=function(){this._tweens={}},i.prototype.add=function(e){this._tweens[e.getId()]=e,this._tweensAddedDuringUpdate[e.getId()]=e},i.prototype.remove=function(e){delete this._tweens[e.getId()],delete this._tweensAddedDuringUpdate[e.getId()]},i.prototype.update=function(e,t){e===void 0&&(e=ym()),t===void 0&&(t=!1);var n=Object.keys(this._tweens);if(n.length===0)return!1;for(;n.length>0;){this._tweensAddedDuringUpdate={};for(var r=0;r1?s(i[t],i[t-1],t-n):s(i[r],i[r+1>t?t:r+1],n-r)},Utils:{Linear:function(i,e,t){return(e-i)*t+i}}},pD=(function(){function i(){}return i.nextId=function(){return i._nextId++},i._nextId=0,i})(),tT=new My,ca=(function(){function i(e,t){t===void 0&&(t=tT),this._object=e,this._group=t,this._isPaused=!1,this._pauseStart=0,this._valuesStart={},this._valuesEnd={},this._valuesStartRepeat={},this._duration=1e3,this._isDynamic=!1,this._initialRepeat=0,this._repeat=0,this._yoyo=!1,this._isPlaying=!1,this._reversed=!1,this._delayTime=0,this._startTime=0,this._easingFunction=os.Linear.None,this._interpolationFunction=eT.Linear,this._chainedTweens=[],this._onStartCallbackFired=!1,this._onEveryStartCallbackFired=!1,this._id=pD.nextId(),this._isChainStopped=!1,this._propertiesAreSetUp=!1,this._goToEnd=!1}return i.prototype.getId=function(){return this._id},i.prototype.isPlaying=function(){return this._isPlaying},i.prototype.isPaused=function(){return this._isPaused},i.prototype.getDuration=function(){return this._duration},i.prototype.to=function(e,t){if(t===void 0&&(t=1e3),this._isPlaying)throw new Error("Can not call Tween.to() while Tween is already started or paused. Stop the Tween first.");return this._valuesEnd=e,this._propertiesAreSetUp=!1,this._duration=t<0?0:t,this},i.prototype.duration=function(e){return e===void 0&&(e=1e3),this._duration=e<0?0:e,this},i.prototype.dynamic=function(e){return e===void 0&&(e=!1),this._isDynamic=e,this},i.prototype.start=function(e,t){if(e===void 0&&(e=ym()),t===void 0&&(t=!1),this._isPlaying)return this;if(this._group&&this._group.add(this),this._repeat=this._initialRepeat,this._reversed){this._reversed=!1;for(var n in this._valuesStartRepeat)this._swapEndStartRepeatValues(n),this._valuesStart[n]=this._valuesStartRepeat[n]}if(this._isPlaying=!0,this._isPaused=!1,this._onStartCallbackFired=!1,this._onEveryStartCallbackFired=!1,this._isChainStopped=!1,this._startTime=e,this._startTime+=this._delayTime,!this._propertiesAreSetUp||t){if(this._propertiesAreSetUp=!0,!this._isDynamic){var r={};for(var s in this._valuesEnd)r[s]=this._valuesEnd[s];this._valuesEnd=r}this._setupProperties(this._object,this._valuesStart,this._valuesEnd,this._valuesStartRepeat,t)}return this},i.prototype.startFromCurrentValues=function(e){return this.start(e,!0)},i.prototype._setupProperties=function(e,t,n,r,s){for(var a in n){var l=e[a],u=Array.isArray(l),h=u?"array":typeof l,m=!u&&Array.isArray(n[a]);if(!(h==="undefined"||h==="function")){if(m){var v=n[a];if(v.length===0)continue;for(var x=[l],S=0,w=v.length;S"u"||s)&&(t[a]=l),u||(t[a]*=1),m?r[a]=n[a].slice().reverse():r[a]=t[a]||0}}},i.prototype.stop=function(){return this._isChainStopped||(this._isChainStopped=!0,this.stopChainedTweens()),this._isPlaying?(this._group&&this._group.remove(this),this._isPlaying=!1,this._isPaused=!1,this._onStopCallback&&this._onStopCallback(this._object),this):this},i.prototype.end=function(){return this._goToEnd=!0,this.update(1/0),this},i.prototype.pause=function(e){return e===void 0&&(e=ym()),this._isPaused||!this._isPlaying?this:(this._isPaused=!0,this._pauseStart=e,this._group&&this._group.remove(this),this)},i.prototype.resume=function(e){return e===void 0&&(e=ym()),!this._isPaused||!this._isPlaying?this:(this._isPaused=!1,this._startTime+=e-this._pauseStart,this._pauseStart=0,this._group&&this._group.add(this),this)},i.prototype.stopChainedTweens=function(){for(var e=0,t=this._chainedTweens.length;ea)return!1;t&&this.start(e,!0)}if(this._goToEnd=!1,eh)return 1;var C=Math.trunc(l/u),E=l-C*u,B=Math.min(E/n._duration,1);return B===0&&l===n._duration?1:B},v=m(),x=this._easingFunction(v);if(this._updateProperties(this._object,this._valuesStart,this._valuesEnd,x),this._onUpdateCallback&&this._onUpdateCallback(this._object,v),this._duration===0||l>=this._duration)if(this._repeat>0){var S=Math.min(Math.trunc((l-this._duration)/u)+1,this._repeat);isFinite(this._repeat)&&(this._repeat-=S);for(s in this._valuesStartRepeat)!this._yoyo&&typeof this._valuesEnd[s]=="string"&&(this._valuesStartRepeat[s]=this._valuesStartRepeat[s]+parseFloat(this._valuesEnd[s])),this._yoyo&&this._swapEndStartRepeatValues(s),this._valuesStart[s]=this._valuesStartRepeat[s];return this._yoyo&&(this._reversed=!this._reversed),this._startTime+=u*S,this._onRepeatCallback&&this._onRepeatCallback(this._object),this._onEveryStartCallbackFired=!1,!0}else{this._onCompleteCallback&&this._onCompleteCallback(this._object);for(var w=0,R=this._chainedTweens.length;w=(w=(u+v)/2))?u=w:v=w,(G=t>=(R=(h+x)/2))?h=R:x=R,(q=n>=(C=(m+S)/2))?m=C:S=C,s=a,!(a=a[z=q<<2|G<<1|O]))return s[z]=l,i;if(E=+i._x.call(null,a.data),B=+i._y.call(null,a.data),L=+i._z.call(null,a.data),e===E&&t===B&&n===L)return l.next=a,s?s[z]=l:i._root=l,i;do s=s?s[z]=new Array(8):i._root=new Array(8),(O=e>=(w=(u+v)/2))?u=w:v=w,(G=t>=(R=(h+x)/2))?h=R:x=R,(q=n>=(C=(m+S)/2))?m=C:S=C;while((z=q<<2|G<<1|O)===(j=(L>=C)<<2|(B>=R)<<1|E>=w));return s[j]=a,s[z]=l,i}function vW(i){Array.isArray(i)||(i=Array.from(i));const e=i.length,t=new Float64Array(e),n=new Float64Array(e),r=new Float64Array(e);let s=1/0,a=1/0,l=1/0,u=-1/0,h=-1/0,m=-1/0;for(let v=0,x,S,w,R;vu&&(u=S),wh&&(h=w),Rm&&(m=R));if(s>u||a>h||l>m)return this;this.cover(s,a,l).cover(u,h,m);for(let v=0;vi||i>=a||r>e||e>=l||s>t||t>=u;)switch(x=(tw||(h=L.y0)>R||(m=L.z0)>C||(v=L.x1)=z)<<2|(e>=q)<<1|i>=G)&&(L=E[E.length-1],E[E.length-1]=E[E.length-1-O],E[E.length-1-O]=L)}else{var j=i-+this._x.call(null,B.data),F=e-+this._y.call(null,B.data),V=t-+this._z.call(null,B.data),Y=j*j+F*F+V*V;if(YMath.sqrt((i-n)**2+(e-r)**2+(t-s)**2);function TW(i,e,t,n){const r=[],s=i-n,a=e-n,l=t-n,u=i+n,h=e+n,m=t+n;return this.visit((v,x,S,w,R,C,E)=>{if(!v.length)do{const B=v.data;SW(i,e,t,this._x(B),this._y(B),this._z(B))<=n&&r.push(B)}while(v=v.next);return x>u||S>h||w>m||R=(R=(a+h)/2))?a=R:h=R,(L=S>=(C=(l+m)/2))?l=C:m=C,(O=w>=(E=(u+v)/2))?u=E:v=E,e=t,!(t=t[G=O<<2|L<<1|B]))return this;if(!t.length)break;(e[G+1&7]||e[G+2&7]||e[G+3&7]||e[G+4&7]||e[G+5&7]||e[G+6&7]||e[G+7&7])&&(n=e,q=G)}for(;t.data!==i;)if(r=t,!(t=t.next))return this;return(s=t.next)&&delete t.next,r?(s?r.next=s:delete r.next,this):e?(s?e[G]=s:delete e[G],(t=e[0]||e[1]||e[2]||e[3]||e[4]||e[5]||e[6]||e[7])&&t===(e[7]||e[6]||e[5]||e[4]||e[3]||e[2]||e[1]||e[0])&&!t.length&&(n?n[q]=t:this._root=t),this):(this._root=s,this)}function MW(i){for(var e=0,t=i.length;ee?1:i>=e?0:NaN}function IW(i,e){return i==null||e==null?NaN:ei?1:e>=i?0:NaN}function vD(i){let e,t,n;i.length!==2?(e=Vv,t=(l,u)=>Vv(i(l),u),n=(l,u)=>i(l)-u):(e=i===Vv||i===IW?i:FW,t=i,n=i);function r(l,u,h=0,m=l.length){if(h>>1;t(l[v],u)<0?h=v+1:m=v}while(h>>1;t(l[v],u)<=0?h=v+1:m=v}while(hh&&n(l[v-1],u)>-n(l[v],u)?v-1:v}return{left:r,center:a,right:s}}function FW(){return 0}function kW(i){return i===null?NaN:+i}const zW=vD(Vv),_D=zW.right;vD(kW).center;function A_(i,e){let t,n;if(e===void 0)for(const r of i)r!=null&&(t===void 0?r>=r&&(t=n=r):(t>r&&(t=r),n=s&&(t=n=s):(t>s&&(t=s),n0){for(a=e[--t];t>0&&(n=a,r=e[--t],a=n+r,s=r-(a-n),!s););t>0&&(s<0&&e[t-1]<0||s>0&&e[t-1]>0)&&(r=s*2,n=a+r,r==n-a&&(a=n))}return a}}const GW=Math.sqrt(50),qW=Math.sqrt(10),VW=Math.sqrt(2);function d_(i,e,t){const n=(e-i)/Math.max(0,t),r=Math.floor(Math.log10(n)),s=n/Math.pow(10,r),a=s>=GW?10:s>=qW?5:s>=VW?2:1;let l,u,h;return r<0?(h=Math.pow(10,-r)/a,l=Math.round(i*h),u=Math.round(e*h),l/he&&--u,h=-h):(h=Math.pow(10,r)*a,l=Math.round(i/h),u=Math.round(e/h),l*he&&--u),u0))return[];if(i===e)return[i];const n=e=r))return[];const l=s-r+1,u=new Array(l);if(n)if(a<0)for(let h=0;h=n)&&(t=n);return t}function $W(i,e){let t=0,n=0;if(e===void 0)for(let r of i)r!=null&&(r=+r)>=r&&(++t,n+=r);else{let r=-1;for(let s of i)(s=e(s,++r,i))!=null&&(s=+s)>=s&&(++t,n+=s)}if(t)return n/t}function*XW(i){for(const e of i)yield*e}function ug(i){return Array.from(XW(i))}function jd(i,e,t){i=+i,e=+e,t=(r=arguments.length)<2?(e=i,i=0,1):r<3?1:+t;for(var n=-1,r=Math.max(0,Math.ceil((e-i)/t))|0,s=new Array(r);++n>8&15|e>>4&240,e>>4&15|e&240,(e&15)<<4|e&15,1):t===8?X2(e>>24&255,e>>16&255,e>>8&255,(e&255)/255):t===4?X2(e>>12&15|e>>8&240,e>>8&15|e>>4&240,e>>4&15|e&240,((e&15)<<4|e&15)/255):null):(e=KW.exec(i))?new Wa(e[1],e[2],e[3],1):(e=ZW.exec(i))?new Wa(e[1]*255/100,e[2]*255/100,e[3]*255/100,1):(e=JW.exec(i))?X2(e[1],e[2],e[3],e[4]):(e=e$.exec(i))?X2(e[1]*255/100,e[2]*255/100,e[3]*255/100,e[4]):(e=t$.exec(i))?gR(e[1],e[2]/100,e[3]/100,1):(e=n$.exec(i))?gR(e[1],e[2]/100,e[3]/100,e[4]):hR.hasOwnProperty(i)?dR(hR[i]):i==="transparent"?new Wa(NaN,NaN,NaN,0):null}function dR(i){return new Wa(i>>16&255,i>>8&255,i&255,1)}function X2(i,e,t,n){return n<=0&&(i=e=t=NaN),new Wa(i,e,t,n)}function s$(i){return i instanceof zg||(i=cA(i)),i?(i=i.rgb(),new Wa(i.r,i.g,i.b,i.opacity)):new Wa}function iT(i,e,t,n){return arguments.length===1?s$(i):new Wa(i,e,t,n??1)}function Wa(i,e,t,n){this.r=+i,this.g=+e,this.b=+t,this.opacity=+n}uM(Wa,iT,xD(zg,{brighter(i){return i=i==null?p_:Math.pow(p_,i),new Wa(this.r*i,this.g*i,this.b*i,this.opacity)},darker(i){return i=i==null?cg:Math.pow(cg,i),new Wa(this.r*i,this.g*i,this.b*i,this.opacity)},rgb(){return this},clamp(){return new Wa(eA(this.r),eA(this.g),eA(this.b),m_(this.opacity))},displayable(){return-.5<=this.r&&this.r<255.5&&-.5<=this.g&&this.g<255.5&&-.5<=this.b&&this.b<255.5&&0<=this.opacity&&this.opacity<=1},hex:pR,formatHex:pR,formatHex8:a$,formatRgb:mR,toString:mR}));function pR(){return`#${Wf(this.r)}${Wf(this.g)}${Wf(this.b)}`}function a$(){return`#${Wf(this.r)}${Wf(this.g)}${Wf(this.b)}${Wf((isNaN(this.opacity)?1:this.opacity)*255)}`}function mR(){const i=m_(this.opacity);return`${i===1?"rgb(":"rgba("}${eA(this.r)}, ${eA(this.g)}, ${eA(this.b)}${i===1?")":`, ${i})`}`}function m_(i){return isNaN(i)?1:Math.max(0,Math.min(1,i))}function eA(i){return Math.max(0,Math.min(255,Math.round(i)||0))}function Wf(i){return i=eA(i),(i<16?"0":"")+i.toString(16)}function gR(i,e,t,n){return n<=0?i=e=t=NaN:t<=0||t>=1?i=e=NaN:e<=0&&(i=NaN),new Tl(i,e,t,n)}function bD(i){if(i instanceof Tl)return new Tl(i.h,i.s,i.l,i.opacity);if(i instanceof zg||(i=cA(i)),!i)return new Tl;if(i instanceof Tl)return i;i=i.rgb();var e=i.r/255,t=i.g/255,n=i.b/255,r=Math.min(e,t,n),s=Math.max(e,t,n),a=NaN,l=s-r,u=(s+r)/2;return l?(e===s?a=(t-n)/l+(t0&&u<1?0:a,new Tl(a,l,u,i.opacity)}function o$(i,e,t,n){return arguments.length===1?bD(i):new Tl(i,e,t,n??1)}function Tl(i,e,t,n){this.h=+i,this.s=+e,this.l=+t,this.opacity=+n}uM(Tl,o$,xD(zg,{brighter(i){return i=i==null?p_:Math.pow(p_,i),new Tl(this.h,this.s,this.l*i,this.opacity)},darker(i){return i=i==null?cg:Math.pow(cg,i),new Tl(this.h,this.s,this.l*i,this.opacity)},rgb(){var i=this.h%360+(this.h<0)*360,e=isNaN(i)||isNaN(this.s)?0:this.s,t=this.l,n=t+(t<.5?t:1-t)*e,r=2*t-n;return new Wa(L3(i>=240?i-240:i+120,r,n),L3(i,r,n),L3(i<120?i+240:i-120,r,n),this.opacity)},clamp(){return new Tl(vR(this.h),Y2(this.s),Y2(this.l),m_(this.opacity))},displayable(){return(0<=this.s&&this.s<=1||isNaN(this.s))&&0<=this.l&&this.l<=1&&0<=this.opacity&&this.opacity<=1},formatHsl(){const i=m_(this.opacity);return`${i===1?"hsl(":"hsla("}${vR(this.h)}, ${Y2(this.s)*100}%, ${Y2(this.l)*100}%${i===1?")":`, ${i})`}`}}));function vR(i){return i=(i||0)%360,i<0?i+360:i}function Y2(i){return Math.max(0,Math.min(1,i||0))}function L3(i,e,t){return(i<60?e+(t-e)*i/60:i<180?t:i<240?e+(t-e)*(240-i)/60:e)*255}const cM=i=>()=>i;function l$(i,e){return function(t){return i+t*e}}function u$(i,e,t){return i=Math.pow(i,t),e=Math.pow(e,t)-i,t=1/t,function(n){return Math.pow(i+n*e,t)}}function c$(i){return(i=+i)==1?SD:function(e,t){return t-e?u$(e,t,i):cM(isNaN(e)?t:e)}}function SD(i,e){var t=e-i;return t?l$(i,t):cM(isNaN(i)?e:i)}const _R=(function i(e){var t=c$(e);function n(r,s){var a=t((r=iT(r)).r,(s=iT(s)).r),l=t(r.g,s.g),u=t(r.b,s.b),h=SD(r.opacity,s.opacity);return function(m){return r.r=a(m),r.g=l(m),r.b=u(m),r.opacity=h(m),r+""}}return n.gamma=i,n})(1);function TD(i,e){e||(e=[]);var t=i?Math.min(e.length,i.length):0,n=e.slice(),r;return function(s){for(r=0;rt&&(s=e.slice(t,s),l[a]?l[a]+=s:l[++a]=s),(n=n[0])===(r=r[0])?l[a]?l[a]+=r:l[++a]=r:(l[++a]=null,u.push({i:a,x:fg(n,r)})),t=U3.lastIndex;return te&&(t=i,i=e,e=t),function(n){return Math.max(i,Math.min(e,n))}}function x$(i,e,t){var n=i[0],r=i[1],s=e[0],a=e[1];return r2?b$:x$,u=h=null,v}function v(x){return x==null||isNaN(x=+x)?s:(u||(u=l(i.map(n),e,t)))(n(a(x)))}return v.invert=function(x){return a(r((h||(h=l(e,i.map(n),fg)))(x)))},v.domain=function(x){return arguments.length?(i=Array.from(x,_$),m()):i.slice()},v.range=function(x){return arguments.length?(e=Array.from(x),m()):e.slice()},v.rangeRound=function(x){return e=Array.from(x),t=g$,m()},v.clamp=function(x){return arguments.length?(a=x?!0:Wd,m()):a!==Wd},v.interpolate=function(x){return arguments.length?(t=x,m()):t},v.unknown=function(x){return arguments.length?(s=x,v):s},function(x,S){return n=x,r=S,m()}}function w$(){return T$()(Wd,Wd)}function M$(i){return Math.abs(i=Math.round(i))>=1e21?i.toLocaleString("en").replace(/,/g,""):i.toString(10)}function g_(i,e){if(!isFinite(i)||i===0)return null;var t=(i=e?i.toExponential(e-1):i.toExponential()).indexOf("e"),n=i.slice(0,t);return[n.length>1?n[0]+n.slice(2):n,+i.slice(t+1)]}function C0(i){return i=g_(Math.abs(i)),i?i[1]:NaN}function E$(i,e){return function(t,n){for(var r=t.length,s=[],a=0,l=i[0],u=0;r>0&&l>0&&(u+l+1>n&&(l=Math.max(1,n-u)),s.push(t.substring(r-=l,r+l)),!((u+=l+1)>n));)l=i[a=(a+1)%i.length];return s.reverse().join(e)}}function C$(i){return function(e){return e.replace(/[0-9]/g,function(t){return i[+t]})}}var R$=/^(?:(.)?([<>=^]))?([+\-( ])?([$#])?(0)?(\d+)?(,)?(\.\d+)?(~)?([a-z%])?$/i;function v_(i){if(!(e=R$.exec(i)))throw new Error("invalid format: "+i);var e;return new fM({fill:e[1],align:e[2],sign:e[3],symbol:e[4],zero:e[5],width:e[6],comma:e[7],precision:e[8]&&e[8].slice(1),trim:e[9],type:e[10]})}v_.prototype=fM.prototype;function fM(i){this.fill=i.fill===void 0?" ":i.fill+"",this.align=i.align===void 0?">":i.align+"",this.sign=i.sign===void 0?"-":i.sign+"",this.symbol=i.symbol===void 0?"":i.symbol+"",this.zero=!!i.zero,this.width=i.width===void 0?void 0:+i.width,this.comma=!!i.comma,this.precision=i.precision===void 0?void 0:+i.precision,this.trim=!!i.trim,this.type=i.type===void 0?"":i.type+""}fM.prototype.toString=function(){return this.fill+this.align+this.sign+this.symbol+(this.zero?"0":"")+(this.width===void 0?"":Math.max(1,this.width|0))+(this.comma?",":"")+(this.precision===void 0?"":"."+Math.max(0,this.precision|0))+(this.trim?"~":"")+this.type};function N$(i){e:for(var e=i.length,t=1,n=-1,r;t0&&(n=0);break}return n>0?i.slice(0,n)+i.slice(r+1):i}var __;function D$(i,e){var t=g_(i,e);if(!t)return __=void 0,i.toPrecision(e);var n=t[0],r=t[1],s=r-(__=Math.max(-8,Math.min(8,Math.floor(r/3)))*3)+1,a=n.length;return s===a?n:s>a?n+new Array(s-a+1).join("0"):s>0?n.slice(0,s)+"."+n.slice(s):"0."+new Array(1-s).join("0")+g_(i,Math.max(0,e+s-1))[0]}function xR(i,e){var t=g_(i,e);if(!t)return i+"";var n=t[0],r=t[1];return r<0?"0."+new Array(-r).join("0")+n:n.length>r+1?n.slice(0,r+1)+"."+n.slice(r+1):n+new Array(r-n.length+2).join("0")}const bR={"%":(i,e)=>(i*100).toFixed(e),b:i=>Math.round(i).toString(2),c:i=>i+"",d:M$,e:(i,e)=>i.toExponential(e),f:(i,e)=>i.toFixed(e),g:(i,e)=>i.toPrecision(e),o:i=>Math.round(i).toString(8),p:(i,e)=>xR(i*100,e),r:xR,s:D$,X:i=>Math.round(i).toString(16).toUpperCase(),x:i=>Math.round(i).toString(16)};function SR(i){return i}var TR=Array.prototype.map,wR=["y","z","a","f","p","n","µ","m","","k","M","G","T","P","E","Z","Y"];function P$(i){var e=i.grouping===void 0||i.thousands===void 0?SR:E$(TR.call(i.grouping,Number),i.thousands+""),t=i.currency===void 0?"":i.currency[0]+"",n=i.currency===void 0?"":i.currency[1]+"",r=i.decimal===void 0?".":i.decimal+"",s=i.numerals===void 0?SR:C$(TR.call(i.numerals,String)),a=i.percent===void 0?"%":i.percent+"",l=i.minus===void 0?"−":i.minus+"",u=i.nan===void 0?"NaN":i.nan+"";function h(v,x){v=v_(v);var S=v.fill,w=v.align,R=v.sign,C=v.symbol,E=v.zero,B=v.width,L=v.comma,O=v.precision,G=v.trim,q=v.type;q==="n"?(L=!0,q="g"):bR[q]||(O===void 0&&(O=12),G=!0,q="g"),(E||S==="0"&&w==="=")&&(E=!0,S="0",w="=");var z=(x&&x.prefix!==void 0?x.prefix:"")+(C==="$"?t:C==="#"&&/[boxX]/.test(q)?"0"+q.toLowerCase():""),j=(C==="$"?n:/[%p]/.test(q)?a:"")+(x&&x.suffix!==void 0?x.suffix:""),F=bR[q],V=/[defgprs%]/.test(q);O=O===void 0?6:/[gprs]/.test(q)?Math.max(1,Math.min(21,O)):Math.max(0,Math.min(20,O));function Y(J){var ne=z,oe=j,te,Q,ue;if(q==="c")oe=F(J)+oe,J="";else{J=+J;var he=J<0||1/J<0;if(J=isNaN(J)?u:F(Math.abs(J),O),G&&(J=N$(J)),he&&+J==0&&R!=="+"&&(he=!1),ne=(he?R==="("?R:l:R==="-"||R==="("?"":R)+ne,oe=(q==="s"&&!isNaN(J)&&__!==void 0?wR[8+__/3]:"")+oe+(he&&R==="("?")":""),V){for(te=-1,Q=J.length;++teue||ue>57){oe=(ue===46?r+J.slice(te+1):J.slice(te))+oe,J=J.slice(0,te);break}}}L&&!E&&(J=e(J,1/0));var we=ne.length+J.length+oe.length,Te=we>1)+ne+J+oe+Te.slice(we);break;default:J=Te+ne+J+oe;break}return s(J)}return Y.toString=function(){return v+""},Y}function m(v,x){var S=Math.max(-8,Math.min(8,Math.floor(C0(x)/3)))*3,w=Math.pow(10,-S),R=h((v=v_(v),v.type="f",v),{suffix:wR[8+S/3]});return function(C){return R(w*C)}}return{format:h,formatPrefix:m}}var Q2,ED,CD;L$({thousands:",",grouping:[3],currency:["$",""]});function L$(i){return Q2=P$(i),ED=Q2.format,CD=Q2.formatPrefix,Q2}function U$(i){return Math.max(0,-C0(Math.abs(i)))}function B$(i,e){return Math.max(0,Math.max(-8,Math.min(8,Math.floor(C0(e)/3)))*3-C0(Math.abs(i)))}function O$(i,e){return i=Math.abs(i),e=Math.abs(e)-i,Math.max(0,C0(e)-C0(i))+1}function I$(i,e,t,n){var r=jW(i,e,t),s;switch(n=v_(n??",f"),n.type){case"s":{var a=Math.max(Math.abs(i),Math.abs(e));return n.precision==null&&!isNaN(s=B$(r,a))&&(n.precision=s),CD(n,a)}case"":case"e":case"g":case"p":case"r":{n.precision==null&&!isNaN(s=O$(r,Math.max(Math.abs(i),Math.abs(e))))&&(n.precision=s-(n.type==="e"));break}case"f":case"%":{n.precision==null&&!isNaN(s=U$(r))&&(n.precision=s-(n.type==="%")*2);break}}return ED(n)}function RD(i){var e=i.domain;return i.ticks=function(t){var n=e();return HW(n[0],n[n.length-1],t??10)},i.tickFormat=function(t,n){var r=e();return I$(r[0],r[r.length-1],t??10,n)},i.nice=function(t){t==null&&(t=10);var n=e(),r=0,s=n.length-1,a=n[r],l=n[s],u,h,m=10;for(l0;){if(h=nT(a,l,t),h===u)return n[r]=a,n[s]=l,e(n);if(h>0)a=Math.floor(a/h)*h,l=Math.ceil(l/h)*h;else if(h<0)a=Math.ceil(a*h)/h,l=Math.floor(l*h)/h;else break;u=h}return i},i}function Pc(){var i=w$();return i.copy=function(){return S$(i,Pc())},yD.apply(i,arguments),RD(i)}function ND(){var i=0,e=1,t=1,n=[.5],r=[0,1],s;function a(u){return u!=null&&u<=u?r[_D(n,u,0,t)]:s}function l(){var u=-1;for(n=new Array(t);++u=t?[n[t-1],e]:[n[h-1],n[h]]},a.unknown=function(u){return arguments.length&&(s=u),a},a.thresholds=function(){return n.slice()},a.copy=function(){return ND().domain([i,e]).range(r).unknown(s)},yD.apply(RD(a),arguments)}var pi=1e-6,y_=1e-12,Ni=Math.PI,$a=Ni/2,x_=Ni/4,No=Ni*2,kr=180/Ni,Hn=Ni/180,ir=Math.abs,AM=Math.atan,Zo=Math.atan2,ti=Math.cos,K2=Math.ceil,F$=Math.exp,aT=Math.hypot,k$=Math.log,zn=Math.sin,z$=Math.sign||function(i){return i>0?1:i<0?-1:0},Lc=Math.sqrt,G$=Math.tan;function q$(i){return i>1?0:i<-1?Ni:Math.acos(i)}function Uc(i){return i>1?$a:i<-1?-$a:Math.asin(i)}function MR(i){return(i=zn(i/2))*i}function ra(){}function b_(i,e){i&&CR.hasOwnProperty(i.type)&&CR[i.type](i,e)}var ER={Feature:function(i,e){b_(i.geometry,e)},FeatureCollection:function(i,e){for(var t=i.features,n=-1,r=t.length;++n=0?1:-1,r=n*t,s=ti(e),a=zn(e),l=cT*a,u=uT*s+l*ti(r),h=l*n*zn(r);S_.add(Zo(h,u)),lT=i,uT=s,cT=a}function T_(i){return[Zo(i[1],i[0]),Uc(i[2])]}function hA(i){var e=i[0],t=i[1],n=ti(t);return[n*ti(e),n*zn(e),zn(t)]}function Z2(i,e){return i[0]*e[0]+i[1]*e[1]+i[2]*e[2]}function R0(i,e){return[i[1]*e[2]-i[2]*e[1],i[2]*e[0]-i[0]*e[2],i[0]*e[1]-i[1]*e[0]]}function B3(i,e){i[0]+=e[0],i[1]+=e[1],i[2]+=e[2]}function J2(i,e){return[i[0]*e,i[1]*e,i[2]*e]}function w_(i){var e=Lc(i[0]*i[0]+i[1]*i[1]+i[2]*i[2]);i[0]/=e,i[1]/=e,i[2]/=e}var Cr,qa,Ir,wo,Of,UD,BD,i0,Dm,Ch,Oc,_c={point:hT,lineStart:DR,lineEnd:PR,polygonStart:function(){_c.point=ID,_c.lineStart=W$,_c.lineEnd=$$,Dm=new Ec,Bc.polygonStart()},polygonEnd:function(){Bc.polygonEnd(),_c.point=hT,_c.lineStart=DR,_c.lineEnd=PR,S_<0?(Cr=-(Ir=180),qa=-(wo=90)):Dm>pi?wo=90:Dm<-pi&&(qa=-90),Oc[0]=Cr,Oc[1]=Ir},sphere:function(){Cr=-(Ir=180),qa=-(wo=90)}};function hT(i,e){Ch.push(Oc=[Cr=i,Ir=i]),ewo&&(wo=e)}function OD(i,e){var t=hA([i*Hn,e*Hn]);if(i0){var n=R0(i0,t),r=[n[1],-n[0],0],s=R0(r,n);w_(s),s=T_(s);var a=i-Of,l=a>0?1:-1,u=s[0]*kr*l,h,m=ir(a)>180;m^(l*Ofwo&&(wo=h)):(u=(u+360)%360-180,m^(l*Ofwo&&(wo=e))),m?ibo(Cr,Ir)&&(Ir=i):bo(i,Ir)>bo(Cr,Ir)&&(Cr=i):Ir>=Cr?(iIr&&(Ir=i)):i>Of?bo(Cr,i)>bo(Cr,Ir)&&(Ir=i):bo(i,Ir)>bo(Cr,Ir)&&(Cr=i)}else Ch.push(Oc=[Cr=i,Ir=i]);ewo&&(wo=e),i0=t,Of=i}function DR(){_c.point=OD}function PR(){Oc[0]=Cr,Oc[1]=Ir,_c.point=hT,i0=null}function ID(i,e){if(i0){var t=i-Of;Dm.add(ir(t)>180?t+(t>0?360:-360):t)}else UD=i,BD=e;Bc.point(i,e),OD(i,e)}function W$(){Bc.lineStart()}function $$(){ID(UD,BD),Bc.lineEnd(),ir(Dm)>pi&&(Cr=-(Ir=180)),Oc[0]=Cr,Oc[1]=Ir,i0=null}function bo(i,e){return(e-=i)<0?e+360:e}function X$(i,e){return i[0]-e[0]}function LR(i,e){return i[0]<=i[1]?i[0]<=e&&e<=i[1]:ebo(n[0],n[1])&&(n[1]=r[1]),bo(r[0],n[1])>bo(n[0],n[1])&&(n[0]=r[0])):s.push(n=r);for(a=-1/0,t=s.length-1,e=0,n=s[t];e<=t;n=r,++e)r=s[e],(l=bo(n[1],r[0]))>a&&(a=l,Cr=r[0],Ir=n[1])}return Ch=Oc=null,Cr===1/0||qa===1/0?[[NaN,NaN],[NaN,NaN]]:[[Cr,qa],[Ir,wo]]}var xm,M_,E_,C_,R_,N_,D_,P_,fT,AT,dT,kD,zD,xa,ba,Sa,Ml={sphere:ra,point:dM,lineStart:UR,lineEnd:BR,polygonStart:function(){Ml.lineStart=K$,Ml.lineEnd=Z$},polygonEnd:function(){Ml.lineStart=UR,Ml.lineEnd=BR}};function dM(i,e){i*=Hn,e*=Hn;var t=ti(e);Gg(t*ti(i),t*zn(i),zn(e))}function Gg(i,e,t){++xm,E_+=(i-E_)/xm,C_+=(e-C_)/xm,R_+=(t-R_)/xm}function UR(){Ml.point=Y$}function Y$(i,e){i*=Hn,e*=Hn;var t=ti(e);xa=t*ti(i),ba=t*zn(i),Sa=zn(e),Ml.point=Q$,Gg(xa,ba,Sa)}function Q$(i,e){i*=Hn,e*=Hn;var t=ti(e),n=t*ti(i),r=t*zn(i),s=zn(e),a=Zo(Lc((a=ba*s-Sa*r)*a+(a=Sa*n-xa*s)*a+(a=xa*r-ba*n)*a),xa*n+ba*r+Sa*s);M_+=a,N_+=a*(xa+(xa=n)),D_+=a*(ba+(ba=r)),P_+=a*(Sa+(Sa=s)),Gg(xa,ba,Sa)}function BR(){Ml.point=dM}function K$(){Ml.point=J$}function Z$(){GD(kD,zD),Ml.point=dM}function J$(i,e){kD=i,zD=e,i*=Hn,e*=Hn,Ml.point=GD;var t=ti(e);xa=t*ti(i),ba=t*zn(i),Sa=zn(e),Gg(xa,ba,Sa)}function GD(i,e){i*=Hn,e*=Hn;var t=ti(e),n=t*ti(i),r=t*zn(i),s=zn(e),a=ba*s-Sa*r,l=Sa*n-xa*s,u=xa*r-ba*n,h=aT(a,l,u),m=Uc(h),v=h&&-m/h;fT.add(v*a),AT.add(v*l),dT.add(v*u),M_+=m,N_+=m*(xa+(xa=n)),D_+=m*(ba+(ba=r)),P_+=m*(Sa+(Sa=s)),Gg(xa,ba,Sa)}function OR(i){xm=M_=E_=C_=R_=N_=D_=P_=0,fT=new Ec,AT=new Ec,dT=new Ec,Ey(i,Ml);var e=+fT,t=+AT,n=+dT,r=aT(e,t,n);return rNi&&(i-=Math.round(i/No)*No),[i,e]}mT.invert=mT;function qD(i,e,t){return(i%=No)?e||t?pT(FR(i),kR(e,t)):FR(i):e||t?kR(e,t):mT}function IR(i){return function(e,t){return e+=i,ir(e)>Ni&&(e-=Math.round(e/No)*No),[e,t]}}function FR(i){var e=IR(i);return e.invert=IR(-i),e}function kR(i,e){var t=ti(i),n=zn(i),r=ti(e),s=zn(e);function a(l,u){var h=ti(u),m=ti(l)*h,v=zn(l)*h,x=zn(u),S=x*t+m*n;return[Zo(v*r-S*s,m*t-x*n),Uc(S*r+v*s)]}return a.invert=function(l,u){var h=ti(u),m=ti(l)*h,v=zn(l)*h,x=zn(u),S=x*r-v*s;return[Zo(v*r+x*s,m*t+S*n),Uc(S*t-m*n)]},a}function eX(i){i=qD(i[0]*Hn,i[1]*Hn,i.length>2?i[2]*Hn:0);function e(t){return t=i(t[0]*Hn,t[1]*Hn),t[0]*=kr,t[1]*=kr,t}return e.invert=function(t){return t=i.invert(t[0]*Hn,t[1]*Hn),t[0]*=kr,t[1]*=kr,t},e}function tX(i,e,t,n,r,s){if(t){var a=ti(e),l=zn(e),u=n*t;r==null?(r=e+n*No,s=e-u/2):(r=zR(a,r),s=zR(a,s),(n>0?rs)&&(r+=n*No));for(var h,m=r;n>0?m>s:m1&&i.push(i.pop().concat(i.shift()))},result:function(){var t=i;return i=[],e=null,t}}}function Hv(i,e){return ir(i[0]-e[0])=0;--l)r.point((v=m[l])[0],v[1]);else n(x.x,x.p.x,-1,r);x=x.p}x=x.o,m=x.z,S=!S}while(!x.v);r.lineEnd()}}}function GR(i){if(e=i.length){for(var e,t=0,n=i[0],r;++t=0?1:-1,V=F*j,Y=V>Ni,J=C*q;if(u.add(Zo(J*F*zn(V),E*z+J*ti(V))),a+=Y?j+F*No:j,Y^w>=t^O>=t){var ne=R0(hA(S),hA(L));w_(ne);var oe=R0(s,ne);w_(oe);var te=(Y^j>=0?-1:1)*Uc(oe[2]);(n>te||n===te&&(ne[0]||ne[1]))&&(l+=Y^j>=0?1:-1)}}return(a<-pi||a0){for(u||(r.polygonStart(),u=!0),r.lineStart(),q=0;q1&&O&2&&G.push(G.pop().concat(G.shift())),m.push(G.filter(nX))}}return x}}function nX(i){return i.length>1}function iX(i,e){return((i=i.x)[0]<0?i[1]-$a-pi:$a-i[1])-((e=e.x)[0]<0?e[1]-$a-pi:$a-e[1])}const qR=WD(function(){return!0},rX,aX,[-Ni,-$a]);function rX(i){var e=NaN,t=NaN,n=NaN,r;return{lineStart:function(){i.lineStart(),r=1},point:function(s,a){var l=s>0?Ni:-Ni,u=ir(s-e);ir(u-Ni)0?$a:-$a),i.point(n,t),i.lineEnd(),i.lineStart(),i.point(l,t),i.point(s,t),r=0):n!==l&&u>=Ni&&(ir(e-n)pi?AM((zn(e)*(s=ti(n))*zn(t)-zn(n)*(r=ti(e))*zn(i))/(r*s*a)):(e+n)/2}function aX(i,e,t,n){var r;if(i==null)r=t*$a,n.point(-Ni,r),n.point(0,r),n.point(Ni,r),n.point(Ni,0),n.point(Ni,-r),n.point(0,-r),n.point(-Ni,-r),n.point(-Ni,0),n.point(-Ni,r);else if(ir(i[0]-e[0])>pi){var s=i[0]0,r=ir(e)>pi;function s(m,v,x,S){tX(S,i,t,x,m,v)}function a(m,v){return ti(m)*ti(v)>e}function l(m){var v,x,S,w,R;return{lineStart:function(){w=S=!1,R=1},point:function(C,E){var B=[C,E],L,O=a(C,E),G=n?O?0:h(C,E):O?h(C+(C<0?Ni:-Ni),E):0;if(!v&&(w=S=O)&&m.lineStart(),O!==S&&(L=u(v,B),(!L||Hv(v,L)||Hv(B,L))&&(B[2]=1)),O!==S)R=0,O?(m.lineStart(),L=u(B,v),m.point(L[0],L[1])):(L=u(v,B),m.point(L[0],L[1],2),m.lineEnd()),v=L;else if(r&&v&&n^O){var q;!(G&x)&&(q=u(B,v,!0))&&(R=0,n?(m.lineStart(),m.point(q[0][0],q[0][1]),m.point(q[1][0],q[1][1]),m.lineEnd()):(m.point(q[1][0],q[1][1]),m.lineEnd(),m.lineStart(),m.point(q[0][0],q[0][1],3)))}O&&(!v||!Hv(v,B))&&m.point(B[0],B[1]),v=B,S=O,x=G},lineEnd:function(){S&&m.lineEnd(),v=null},clean:function(){return R|(w&&S)<<1}}}function u(m,v,x){var S=hA(m),w=hA(v),R=[1,0,0],C=R0(S,w),E=Z2(C,C),B=C[0],L=E-B*B;if(!L)return!x&&m;var O=e*E/L,G=-e*B/L,q=R0(R,C),z=J2(R,O),j=J2(C,G);B3(z,j);var F=q,V=Z2(z,F),Y=Z2(F,F),J=V*V-Y*(Z2(z,z)-1);if(!(J<0)){var ne=Lc(J),oe=J2(F,(-V-ne)/Y);if(B3(oe,z),oe=T_(oe),!x)return oe;var te=m[0],Q=v[0],ue=m[1],he=v[1],we;Q0^oe[1]<(ir(oe[0]-te)Ni^(te<=oe[0]&&oe[0]<=Q)){var ze=J2(F,(-V+ne)/Y);return B3(ze,z),[oe,T_(ze)]}}}function h(m,v){var x=n?i:Ni-i,S=0;return m<-x?S|=1:m>x&&(S|=2),v<-x?S|=4:v>x&&(S|=8),S}return WD(a,l,s,n?[0,-i]:[-Ni,i-Ni])}function lX(i,e,t,n,r,s){var a=i[0],l=i[1],u=e[0],h=e[1],m=0,v=1,x=u-a,S=h-l,w;if(w=t-a,!(!x&&w>0)){if(w/=x,x<0){if(w0){if(w>v)return;w>m&&(m=w)}if(w=r-a,!(!x&&w<0)){if(w/=x,x<0){if(w>v)return;w>m&&(m=w)}else if(x>0){if(w0)){if(w/=S,S<0){if(w0){if(w>v)return;w>m&&(m=w)}if(w=s-l,!(!S&&w<0)){if(w/=S,S<0){if(w>v)return;w>m&&(m=w)}else if(S>0){if(w0&&(i[0]=a+m*x,i[1]=l+m*S),v<1&&(e[0]=a+v*x,e[1]=l+v*S),!0}}}}}var bm=1e9,tv=-bm;function uX(i,e,t,n){function r(h,m){return i<=h&&h<=t&&e<=m&&m<=n}function s(h,m,v,x){var S=0,w=0;if(h==null||(S=a(h,v))!==(w=a(m,v))||u(h,m)<0^v>0)do x.point(S===0||S===3?i:t,S>1?n:e);while((S=(S+v+4)%4)!==w);else x.point(m[0],m[1])}function a(h,m){return ir(h[0]-i)0?0:3:ir(h[0]-t)0?2:1:ir(h[1]-e)0?1:0:m>0?3:2}function l(h,m){return u(h.x,m.x)}function u(h,m){var v=a(h,1),x=a(m,1);return v!==x?v-x:v===0?m[1]-h[1]:v===1?h[0]-m[0]:v===2?h[1]-m[1]:m[0]-h[0]}return function(h){var m=h,v=VD(),x,S,w,R,C,E,B,L,O,G,q,z={point:j,lineStart:J,lineEnd:ne,polygonStart:V,polygonEnd:Y};function j(te,Q){r(te,Q)&&m.point(te,Q)}function F(){for(var te=0,Q=0,ue=S.length;Qn&&(Ee-be)*(n-ze)>(Ge-ze)*(i-be)&&++te:Ge<=n&&(Ee-be)*(n-ze)<(Ge-ze)*(i-be)&&--te;return te}function V(){m=v,x=[],S=[],q=!0}function Y(){var te=F(),Q=q&&te,ue=(x=ug(x)).length;(Q||ue)&&(h.polygonStart(),Q&&(h.lineStart(),s(null,null,1,h),h.lineEnd()),ue&&HD(x,l,te,s,h),h.polygonEnd()),m=h,x=S=w=null}function J(){z.point=oe,S&&S.push(w=[]),G=!0,O=!1,B=L=NaN}function ne(){x&&(oe(R,C),E&&O&&v.rejoin(),x.push(v.result())),z.point=j,O&&m.lineEnd()}function oe(te,Q){var ue=r(te,Q);if(S&&w.push([te,Q]),G)R=te,C=Q,E=ue,G=!1,ue&&(m.lineStart(),m.point(te,Q));else if(ue&&O)m.point(te,Q);else{var he=[B=Math.max(tv,Math.min(bm,B)),L=Math.max(tv,Math.min(bm,L))],we=[te=Math.max(tv,Math.min(bm,te)),Q=Math.max(tv,Math.min(bm,Q))];lX(he,we,i,e,t,n)?(O||(m.lineStart(),m.point(he[0],he[1])),m.point(we[0],we[1]),ue||m.lineEnd(),q=!1):ue&&(m.lineStart(),m.point(te,Q),q=!1)}B=te,L=Q,O=ue}return z}}var gT,vT,jv,Wv,N0={sphere:ra,point:ra,lineStart:cX,lineEnd:ra,polygonStart:ra,polygonEnd:ra};function cX(){N0.point=fX,N0.lineEnd=hX}function hX(){N0.point=N0.lineEnd=ra}function fX(i,e){i*=Hn,e*=Hn,vT=i,jv=zn(e),Wv=ti(e),N0.point=AX}function AX(i,e){i*=Hn,e*=Hn;var t=zn(e),n=ti(e),r=ir(i-vT),s=ti(r),a=zn(r),l=n*a,u=Wv*t-jv*n*s,h=jv*t+Wv*n*s;gT.add(Zo(Lc(l*l+u*u),h)),vT=i,jv=t,Wv=n}function dX(i){return gT=new Ec,Ey(i,N0),+gT}var _T=[null,null],pX={type:"LineString",coordinates:_T};function Vh(i,e){return _T[0]=i,_T[1]=e,dX(pX)}var VR={Feature:function(i,e){return L_(i.geometry,e)},FeatureCollection:function(i,e){for(var t=i.features,n=-1,r=t.length;++n0&&(r=Vh(i[s],i[s-1]),r>0&&t<=r&&n<=r&&(t+n-r)*(1-Math.pow((t-n)/r,2))pi}).map(x)).concat(jd(K2(s/h)*h,r,h).filter(function(L){return ir(L%v)>pi}).map(S))}return E.lines=function(){return B().map(function(L){return{type:"LineString",coordinates:L}})},E.outline=function(){return{type:"Polygon",coordinates:[w(n).concat(R(a).slice(1),w(t).reverse().slice(1),R(l).reverse().slice(1))]}},E.extent=function(L){return arguments.length?E.extentMajor(L).extentMinor(L):E.extentMinor()},E.extentMajor=function(L){return arguments.length?(n=+L[0][0],t=+L[1][0],l=+L[0][1],a=+L[1][1],n>t&&(L=n,n=t,t=L),l>a&&(L=l,l=a,a=L),E.precision(C)):[[n,l],[t,a]]},E.extentMinor=function(L){return arguments.length?(e=+L[0][0],i=+L[1][0],s=+L[0][1],r=+L[1][1],e>i&&(L=e,e=i,i=L),s>r&&(L=s,s=r,r=L),E.precision(C)):[[e,s],[i,r]]},E.step=function(L){return arguments.length?E.stepMajor(L).stepMinor(L):E.stepMinor()},E.stepMajor=function(L){return arguments.length?(m=+L[0],v=+L[1],E):[m,v]},E.stepMinor=function(L){return arguments.length?(u=+L[0],h=+L[1],E):[u,h]},E.precision=function(L){return arguments.length?(C=+L,x=XR(s,r,90),S=YR(e,i,C),w=XR(l,a,90),R=YR(n,t,C),E):C},E.extentMajor([[-180,-90+pi],[180,90-pi]]).extentMinor([[-180,-80-pi],[180,80+pi]])}function _X(){return vX()()}function pM(i,e){var t=i[0]*Hn,n=i[1]*Hn,r=e[0]*Hn,s=e[1]*Hn,a=ti(n),l=zn(n),u=ti(s),h=zn(s),m=a*ti(t),v=a*zn(t),x=u*ti(r),S=u*zn(r),w=2*Uc(Lc(MR(s-n)+a*u*MR(r-t))),R=zn(w),C=w?function(E){var B=zn(E*=w)/R,L=zn(w-E)/R,O=L*m+B*x,G=L*v+B*S,q=L*l+B*h;return[Zo(G,O)*kr,Zo(q,Lc(O*O+G*G))*kr]}:function(){return[t*kr,n*kr]};return C.distance=w,C}const QR=i=>i;var D0=1/0,U_=D0,Ag=-D0,B_=Ag,KR={point:yX,lineStart:ra,lineEnd:ra,polygonStart:ra,polygonEnd:ra,result:function(){var i=[[D0,U_],[Ag,B_]];return Ag=B_=-(U_=D0=1/0),i}};function yX(i,e){iAg&&(Ag=i),eB_&&(B_=e)}function mM(i){return function(e){var t=new yT;for(var n in i)t[n]=i[n];return t.stream=e,t}}function yT(){}yT.prototype={constructor:yT,point:function(i,e){this.stream.point(i,e)},sphere:function(){this.stream.sphere()},lineStart:function(){this.stream.lineStart()},lineEnd:function(){this.stream.lineEnd()},polygonStart:function(){this.stream.polygonStart()},polygonEnd:function(){this.stream.polygonEnd()}};function gM(i,e,t){var n=i.clipExtent&&i.clipExtent();return i.scale(150).translate([0,0]),n!=null&&i.clipExtent(null),Ey(t,i.stream(KR)),e(KR.result()),n!=null&&i.clipExtent(n),i}function XD(i,e,t){return gM(i,function(n){var r=e[1][0]-e[0][0],s=e[1][1]-e[0][1],a=Math.min(r/(n[1][0]-n[0][0]),s/(n[1][1]-n[0][1])),l=+e[0][0]+(r-a*(n[1][0]+n[0][0]))/2,u=+e[0][1]+(s-a*(n[1][1]+n[0][1]))/2;i.scale(150*a).translate([l,u])},t)}function xX(i,e,t){return XD(i,[[0,0],e],t)}function bX(i,e,t){return gM(i,function(n){var r=+e,s=r/(n[1][0]-n[0][0]),a=(r-s*(n[1][0]+n[0][0]))/2,l=-s*n[0][1];i.scale(150*s).translate([a,l])},t)}function SX(i,e,t){return gM(i,function(n){var r=+e,s=r/(n[1][1]-n[0][1]),a=-s*n[0][0],l=(r-s*(n[1][1]+n[0][1]))/2;i.scale(150*s).translate([a,l])},t)}var ZR=16,TX=ti(30*Hn);function JR(i,e){return+e?MX(i,e):wX(i)}function wX(i){return mM({point:function(e,t){e=i(e,t),this.stream.point(e[0],e[1])}})}function MX(i,e){function t(n,r,s,a,l,u,h,m,v,x,S,w,R,C){var E=h-n,B=m-r,L=E*E+B*B;if(L>4*e&&R--){var O=a+x,G=l+S,q=u+w,z=Lc(O*O+G*G+q*q),j=Uc(q/=z),F=ir(ir(q)-1)e||ir((E*ne+B*oe)/L-.5)>.3||a*x+l*S+u*w2?te[2]%360*Hn:0,ne()):[l*kr,u*kr,h*kr]},Y.angle=function(te){return arguments.length?(v=te%360*Hn,ne()):v*kr},Y.reflectX=function(te){return arguments.length?(x=te?-1:1,ne()):x<0},Y.reflectY=function(te){return arguments.length?(S=te?-1:1,ne()):S<0},Y.precision=function(te){return arguments.length?(q=JR(z,G=te*te),oe()):Lc(G)},Y.fitExtent=function(te,Q){return XD(Y,te,Q)},Y.fitSize=function(te,Q){return xX(Y,te,Q)},Y.fitWidth=function(te,Q){return bX(Y,te,Q)},Y.fitHeight=function(te,Q){return SX(Y,te,Q)};function ne(){var te=e6(t,0,0,x,S,v).apply(null,e(s,a)),Q=e6(t,n-te[0],r-te[1],x,S,v);return m=qD(l,u,h),z=pT(e,Q),j=pT(m,z),q=JR(z,G),oe()}function oe(){return F=V=null,Y}return function(){return e=i.apply(this,arguments),Y.invert=e.invert&&J,ne()}}function PX(i){return function(e,t){var n=Lc(e*e+t*t),r=i(n),s=zn(r),a=ti(r);return[Zo(e*s,n*a),Uc(n&&t*s/n)]}}function vM(i,e){return[i,k$(G$(($a+e)/2))]}vM.invert=function(i,e){return[i,2*AM(F$(e))-$a]};function YD(i,e){var t=ti(e),n=1+ti(i)*t;return[t*zn(i)/n,zn(e)/n]}YD.invert=PX(function(i){return 2*AM(i)});function LX(){return NX(YD).scale(250).clipAngle(142)}function xT(i,e){(e==null||e>i.length)&&(e=i.length);for(var t=0,n=Array(e);t1&&arguments[1]!==void 0?arguments[1]:0,n=arguments.length>2&&arguments[2]!==void 0?arguments[2]:1,r=Pc().domain([1,0]).range([t,n]).clamp(!0),s=Pc().domain([I3(t),I3(n)]).range([1,0]).clamp(!0),a=function(v){return s(I3(r(v)))},l=e.array,u=0,h=l.length;u2&&arguments[2]!==void 0?arguments[2]:0,r=arguments.length>3&&arguments[3]!==void 0?arguments[3]:0,s=arguments.length>4?arguments[4]:void 0,a=arguments.length>5?arguments[5]:void 0,l=[],u=Math.pow(2,e),h=360/u,m=180/u,v=s===void 0?u-1:s,x=a===void 0?u-1:a,S=n,w=Math.min(u-1,v);S<=w;S++)for(var R=r,C=Math.min(u-1,x);R<=C;R++){var E=R,B=m;if(t){E=R===0?R:n6(R/u)*u;var L=R+1===u?R+1:n6((R+1)/u)*u;B=(L-E)*180/u}var O=-180+(S+.5)*h,G=90-(E*180/u+B/2),q=B;l.push({x:S,y:R,lng:O,lat:G,latLen:q})}return l},KX=6,ZX=7,JX=3,eY=90,Ql=new WeakMap,Nh=new WeakMap,F3=new WeakMap,nv=new WeakMap,Vo=new WeakMap,I_=new WeakMap,r0=new WeakMap,Ef=new WeakMap,iv=new WeakSet,tY=(function(i){function e(t){var n,r=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},s=r.tileUrl,a=r.minLevel,l=a===void 0?0:a,u=r.maxLevel,h=u===void 0?17:u,m=r.mercatorProjection,v=m===void 0?!0:m;return FX(this,e),n=IX(this,e),kX(n,iv),xh(n,Ql,void 0),xh(n,Nh,void 0),xh(n,F3,void 0),xh(n,nv,void 0),xh(n,Vo,{}),xh(n,I_,void 0),xh(n,r0,void 0),xh(n,Ef,void 0),yd(n,"minLevel",void 0),yd(n,"maxLevel",void 0),yd(n,"thresholds",ZD(new Array(30)).map(function(x,S){return 8/Math.pow(2,S)})),yd(n,"curvatureResolution",5),yd(n,"tileMargin",0),yd(n,"clearTiles",function(){Object.values(Ai(Vo,n)).forEach(function(x){x.forEach(function(S){S.obj&&(n.remove(S.obj),t6(S.obj),delete S.obj)})}),bh(Vo,n,{})}),bh(Ql,n,t),n.tileUrl=s,bh(Nh,n,v),n.minLevel=l,n.maxLevel=h,n.level=0,n.add(bh(Ef,n,new zi(new Eu(Ai(Ql,n)*.99,180,90),new pA({color:0})))),Ai(Ef,n).visible=!1,Ai(Ef,n).material.polygonOffset=!0,Ai(Ef,n).material.polygonOffsetUnits=3,Ai(Ef,n).material.polygonOffsetFactor=1,n}return qX(e,i),GX(e,[{key:"tileUrl",get:function(){return Ai(F3,this)},set:function(n){bh(F3,this,n),this.updatePov(Ai(r0,this))}},{key:"level",get:function(){return Ai(nv,this)},set:function(n){var r,s=this;Ai(Vo,this)[n]||Pm(iv,this,nY).call(this,n);var a=Ai(nv,this);if(bh(nv,this,n),!(n===a||a===void 0)){if(Ai(Ef,this).visible=n>0,Ai(Vo,this)[n].forEach(function(u){return u.obj&&(u.obj.material.depthWrite=!0)}),an)for(var l=n+1;l<=a;l++)Ai(Vo,this)[l]&&Ai(Vo,this)[l].forEach(function(u){u.obj&&(s.remove(u.obj),t6(u.obj),delete u.obj)});Pm(iv,this,r6).call(this)}}},{key:"updatePov",value:function(n){var r=this;if(!(!n||!(n instanceof _y))){bh(r0,this,n);var s;if(bh(I_,this,function(m){if(!m.hullPnts){var v=360/Math.pow(2,r.level),x=m.lng,S=m.lat,w=m.latLen,R=x-v/2,C=x+v/2,E=S-w/2,B=S+w/2;m.hullPnts=[[S,x],[E,R],[B,R],[E,C],[B,C]].map(function(L){var O=$v(L,2),G=O[0],q=O[1];return iP(G,q,Ai(Ql,r))}).map(function(L){var O=L.x,G=L.y,q=L.z;return new Ae(O,G,q)})}return s||(s=new Fg,n.updateMatrix(),n.updateMatrixWorld(),s.setFromProjectionMatrix(new kn().multiplyMatrices(n.projectionMatrix,n.matrixWorldInverse))),m.hullPnts.some(function(L){return s.containsPoint(L.clone().applyMatrix4(r.matrixWorld))})}),this.tileUrl){var a=n.position.clone(),l=a.distanceTo(this.getWorldPosition(new Ae)),u=(l-Ai(Ql,this))/Ai(Ql,this),h=this.thresholds.findIndex(function(m){return m&&m<=u});this.level=Math.min(this.maxLevel,Math.max(this.minLevel,h<0?this.thresholds.length:h)),Pm(iv,this,r6).call(this)}}}}])})(ja);function nY(i){var e=this;if(i>ZX){Ai(Vo,this)[i]=[];return}var t=Ai(Vo,this)[i]=ST(i,Ai(Nh,this));t.forEach(function(n){return n.centroid=iP(n.lat,n.lng,Ai(Ql,e))}),t.octree=gD().x(function(n){return n.centroid.x}).y(function(n){return n.centroid.y}).z(function(n){return n.centroid.z}).addAll(t)}function r6(){var i=this;if(!(!this.tileUrl||this.level===void 0||!Ai(Vo,this).hasOwnProperty(this.level))&&!(!Ai(I_,this)&&this.level>KX)){var e=Ai(Vo,this)[this.level];if(Ai(r0,this)){var t=this.worldToLocal(Ai(r0,this).position.clone());if(e.octree){var n,r=this.worldToLocal(Ai(r0,this).position.clone()),s=(r.length()-Ai(Ql,this))*JX;e=(n=e.octree).findAllWithinRadius.apply(n,ZD(r).concat([s]))}else{var a=YX(t),l=(a.r/Ai(Ql,this)-1)*eY,u=l/Math.cos(Mf(a.lat)),h=[a.lng-u,a.lng+u],m=[a.lat+l,a.lat-l],v=i6(this.level,Ai(Nh,this),h[0],m[0]),x=$v(v,2),S=x[0],w=x[1],R=i6(this.level,Ai(Nh,this),h[1],m[1]),C=$v(R,2),E=C[0],B=C[1];!e.record&&(e.record={});var L=e.record;if(!L.hasOwnProperty("".concat(Math.round((S+E)/2),"_").concat(Math.round((w+B)/2))))e=ST(this.level,Ai(Nh,this),S,w,E,B).map(function(j){var F="".concat(j.x,"_").concat(j.y);return L.hasOwnProperty(F)?L[F]:(L[F]=j,e.push(j),j)});else{for(var O=[],G=S;G<=E;G++)for(var q=w;q<=B;q++){var z="".concat(G,"_").concat(q);L.hasOwnProperty(z)||(L[z]=ST(this.level,Ai(Nh,this),G,q,G,q)[0],e.push(L[z])),O.push(L[z])}e=O}}}e.filter(function(j){return!j.obj}).filter(Ai(I_,this)||function(){return!0}).forEach(function(j){var F=j.x,V=j.y,Y=j.lng,J=j.lat,ne=j.latLen,oe=360/Math.pow(2,i.level);if(!j.obj){var te=oe*(1-i.tileMargin),Q=ne*(1-i.tileMargin),ue=Mf(Y),he=Mf(-J),we=new zi(new Eu(Ai(Ql,i),Math.ceil(te/i.curvatureResolution),Math.ceil(Q/i.curvatureResolution),Mf(90-te/2)+ue,Mf(te),Mf(90-Q/2)+he,Mf(Q)),new Vc);if(Ai(Nh,i)){var Te=[J+ne/2,J-ne/2].map(function(Ee){return .5-Ee/180}),ce=$v(Te,2),be=ce[0],ze=ce[1];QX(we.geometry.attributes.uv,be,ze)}j.obj=we}j.loading||(j.loading=!0,new rM().load(i.tileUrl(F,V,i.level),function(Ee){var Ge=j.obj;Ge&&(Ee.colorSpace=_n,Ge.material.map=Ee,Ge.material.color=null,Ge.material.needsUpdate=!0,i.add(Ge)),j.loading=!1}))})}}function iY(i,e,t=2){const n=e&&e.length,r=n?e[0]*t:i.length;let s=sP(i,0,r,t,!0);const a=[];if(!s||s.next===s.prev)return a;let l,u,h;if(n&&(s=lY(i,e,s,t)),i.length>80*t){l=i[0],u=i[1];let m=l,v=u;for(let x=t;xm&&(m=S),w>v&&(v=w)}h=Math.max(m-l,v-u),h=h!==0?32767/h:0}return dg(s,a,t,l,u,h,0),a}function sP(i,e,t,n,r){let s;if(r===_Y(i,e,t,n)>0)for(let a=e;a=e;a-=n)s=s6(a/n|0,i[a],i[a+1],s);return s&&P0(s,s.next)&&(mg(s),s=s.next),s}function fA(i,e){if(!i)return i;e||(e=i);let t=i,n;do if(n=!1,!t.steiner&&(P0(t,t.next)||Dr(t.prev,t,t.next)===0)){if(mg(t),t=e=t.prev,t===t.next)break;n=!0}else t=t.next;while(n||t!==e);return e}function dg(i,e,t,n,r,s,a){if(!i)return;!a&&s&&AY(i,n,r,s);let l=i;for(;i.prev!==i.next;){const u=i.prev,h=i.next;if(s?sY(i,n,r,s):rY(i)){e.push(u.i,i.i,h.i),mg(i),i=h.next,l=h.next;continue}if(i=h,i===l){a?a===1?(i=aY(fA(i),e),dg(i,e,t,n,r,s,2)):a===2&&oY(i,e,t,n,r,s):dg(fA(i),e,t,n,r,s,1);break}}}function rY(i){const e=i.prev,t=i,n=i.next;if(Dr(e,t,n)>=0)return!1;const r=e.x,s=t.x,a=n.x,l=e.y,u=t.y,h=n.y,m=Math.min(r,s,a),v=Math.min(l,u,h),x=Math.max(r,s,a),S=Math.max(l,u,h);let w=n.next;for(;w!==e;){if(w.x>=m&&w.x<=x&&w.y>=v&&w.y<=S&&Sm(r,l,s,u,a,h,w.x,w.y)&&Dr(w.prev,w,w.next)>=0)return!1;w=w.next}return!0}function sY(i,e,t,n){const r=i.prev,s=i,a=i.next;if(Dr(r,s,a)>=0)return!1;const l=r.x,u=s.x,h=a.x,m=r.y,v=s.y,x=a.y,S=Math.min(l,u,h),w=Math.min(m,v,x),R=Math.max(l,u,h),C=Math.max(m,v,x),E=TT(S,w,e,t,n),B=TT(R,C,e,t,n);let L=i.prevZ,O=i.nextZ;for(;L&&L.z>=E&&O&&O.z<=B;){if(L.x>=S&&L.x<=R&&L.y>=w&&L.y<=C&&L!==r&&L!==a&&Sm(l,m,u,v,h,x,L.x,L.y)&&Dr(L.prev,L,L.next)>=0||(L=L.prevZ,O.x>=S&&O.x<=R&&O.y>=w&&O.y<=C&&O!==r&&O!==a&&Sm(l,m,u,v,h,x,O.x,O.y)&&Dr(O.prev,O,O.next)>=0))return!1;O=O.nextZ}for(;L&&L.z>=E;){if(L.x>=S&&L.x<=R&&L.y>=w&&L.y<=C&&L!==r&&L!==a&&Sm(l,m,u,v,h,x,L.x,L.y)&&Dr(L.prev,L,L.next)>=0)return!1;L=L.prevZ}for(;O&&O.z<=B;){if(O.x>=S&&O.x<=R&&O.y>=w&&O.y<=C&&O!==r&&O!==a&&Sm(l,m,u,v,h,x,O.x,O.y)&&Dr(O.prev,O,O.next)>=0)return!1;O=O.nextZ}return!0}function aY(i,e){let t=i;do{const n=t.prev,r=t.next.next;!P0(n,r)&&oP(n,t,t.next,r)&&pg(n,r)&&pg(r,n)&&(e.push(n.i,t.i,r.i),mg(t),mg(t.next),t=i=r),t=t.next}while(t!==i);return fA(t)}function oY(i,e,t,n,r,s){let a=i;do{let l=a.next.next;for(;l!==a.prev;){if(a.i!==l.i&&mY(a,l)){let u=lP(a,l);a=fA(a,a.next),u=fA(u,u.next),dg(a,e,t,n,r,s,0),dg(u,e,t,n,r,s,0);return}l=l.next}a=a.next}while(a!==i)}function lY(i,e,t,n){const r=[];for(let s=0,a=e.length;s=t.next.y&&t.next.y!==t.y){const v=t.x+(r-t.y)*(t.next.x-t.x)/(t.next.y-t.y);if(v<=n&&v>s&&(s=v,a=t.x=t.x&&t.x>=u&&n!==t.x&&aP(ra.x||t.x===a.x&&fY(a,t)))&&(a=t,m=v)}t=t.next}while(t!==l);return a}function fY(i,e){return Dr(i.prev,i,e.prev)<0&&Dr(e.next,i,i.next)<0}function AY(i,e,t,n){let r=i;do r.z===0&&(r.z=TT(r.x,r.y,e,t,n)),r.prevZ=r.prev,r.nextZ=r.next,r=r.next;while(r!==i);r.prevZ.nextZ=null,r.prevZ=null,dY(r)}function dY(i){let e,t=1;do{let n=i,r;i=null;let s=null;for(e=0;n;){e++;let a=n,l=0;for(let h=0;h0||u>0&&a;)l!==0&&(u===0||!a||n.z<=a.z)?(r=n,n=n.nextZ,l--):(r=a,a=a.nextZ,u--),s?s.nextZ=r:i=r,r.prevZ=s,s=r;n=a}s.nextZ=null,t*=2}while(e>1);return i}function TT(i,e,t,n,r){return i=(i-t)*r|0,e=(e-n)*r|0,i=(i|i<<8)&16711935,i=(i|i<<4)&252645135,i=(i|i<<2)&858993459,i=(i|i<<1)&1431655765,e=(e|e<<8)&16711935,e=(e|e<<4)&252645135,e=(e|e<<2)&858993459,e=(e|e<<1)&1431655765,i|e<<1}function pY(i){let e=i,t=i;do(e.x=(i-a)*(s-l)&&(i-a)*(n-l)>=(t-a)*(e-l)&&(t-a)*(s-l)>=(r-a)*(n-l)}function Sm(i,e,t,n,r,s,a,l){return!(i===a&&e===l)&&aP(i,e,t,n,r,s,a,l)}function mY(i,e){return i.next.i!==e.i&&i.prev.i!==e.i&&!gY(i,e)&&(pg(i,e)&&pg(e,i)&&vY(i,e)&&(Dr(i.prev,i,e.prev)||Dr(i,e.prev,e))||P0(i,e)&&Dr(i.prev,i,i.next)>0&&Dr(e.prev,e,e.next)>0)}function Dr(i,e,t){return(e.y-i.y)*(t.x-e.x)-(e.x-i.x)*(t.y-e.y)}function P0(i,e){return i.x===e.x&&i.y===e.y}function oP(i,e,t,n){const r=sv(Dr(i,e,t)),s=sv(Dr(i,e,n)),a=sv(Dr(t,n,i)),l=sv(Dr(t,n,e));return!!(r!==s&&a!==l||r===0&&rv(i,t,e)||s===0&&rv(i,n,e)||a===0&&rv(t,i,n)||l===0&&rv(t,e,n))}function rv(i,e,t){return e.x<=Math.max(i.x,t.x)&&e.x>=Math.min(i.x,t.x)&&e.y<=Math.max(i.y,t.y)&&e.y>=Math.min(i.y,t.y)}function sv(i){return i>0?1:i<0?-1:0}function gY(i,e){let t=i;do{if(t.i!==i.i&&t.next.i!==i.i&&t.i!==e.i&&t.next.i!==e.i&&oP(t,t.next,i,e))return!0;t=t.next}while(t!==i);return!1}function pg(i,e){return Dr(i.prev,i,i.next)<0?Dr(i,e,i.next)>=0&&Dr(i,i.prev,e)>=0:Dr(i,e,i.prev)<0||Dr(i,i.next,e)<0}function vY(i,e){let t=i,n=!1;const r=(i.x+e.x)/2,s=(i.y+e.y)/2;do t.y>s!=t.next.y>s&&t.next.y!==t.y&&r<(t.next.x-t.x)*(s-t.y)/(t.next.y-t.y)+t.x&&(n=!n),t=t.next;while(t!==i);return n}function lP(i,e){const t=wT(i.i,i.x,i.y),n=wT(e.i,e.x,e.y),r=i.next,s=e.prev;return i.next=e,e.prev=i,t.next=r,r.prev=t,n.next=t,t.prev=n,s.next=n,n.prev=s,n}function s6(i,e,t,n){const r=wT(i,e,t);return n?(r.next=n.next,r.prev=n,n.next.prev=r,n.next=r):(r.prev=r,r.next=r),r}function mg(i){i.next.prev=i.prev,i.prev.next=i.next,i.prevZ&&(i.prevZ.nextZ=i.nextZ),i.nextZ&&(i.nextZ.prevZ=i.prevZ)}function wT(i,e,t){return{i,x:e,y:t,prev:null,next:null,z:0,prevZ:null,nextZ:null,steiner:!1}}function _Y(i,e,t,n){let r=0;for(let s=e,a=t-n;si.length)&&(e=i.length);for(var t=0,n=Array(e);t=i.length?{done:!0}:{done:!1,value:i[n++]}},e:function(u){throw u},f:r}}throw new TypeError(`Invalid attempt to iterate non-iterable instance. +In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}var s,a=!0,l=!1;return{s:function(){t=t.call(i)},n:function(){var u=t.next();return a=u.done,u},e:function(u){l=!0,s=u},f:function(){try{a||t.return==null||t.return()}finally{if(l)throw s}}}}function k_(i){return k_=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(e){return e.__proto__||Object.getPrototypeOf(e)},k_(i)}function EY(i,e){if(typeof e!="function"&&e!==null)throw new TypeError("Super expression must either be null or a function");i.prototype=Object.create(e&&e.prototype,{constructor:{value:i,writable:!0,configurable:!0}}),Object.defineProperty(i,"prototype",{writable:!1}),e&&ET(i,e)}function uP(){try{var i=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){}))}catch{}return(uP=function(){return!!i})()}function CY(i){if(typeof Symbol<"u"&&i[Symbol.iterator]!=null||i["@@iterator"]!=null)return Array.from(i)}function RY(i,e){var t=i==null?null:typeof Symbol<"u"&&i[Symbol.iterator]||i["@@iterator"];if(t!=null){var n,r,s,a,l=[],u=!0,h=!1;try{if(s=(t=t.call(i)).next,e===0){if(Object(t)!==t)return;u=!1}else for(;!(u=(n=s.call(t)).done)&&(l.push(n.value),l.length!==e);u=!0);}catch(m){h=!0,r=m}finally{try{if(!u&&t.return!=null&&(a=t.return(),Object(a)!==a))return}finally{if(h)throw r}}return l}}function NY(){throw new TypeError(`Invalid attempt to destructure non-iterable instance. +In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}function DY(){throw new TypeError(`Invalid attempt to spread non-iterable instance. +In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}function PY(i,e){if(e&&(typeof e=="object"||typeof e=="function"))return e;if(e!==void 0)throw new TypeError("Derived constructors may only return object or undefined");return bY(i)}function ET(i,e){return ET=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,n){return t.__proto__=n,t},ET(i,e)}function nm(i,e){return yY(i)||RY(i,e)||_M(i,e)||NY()}function LY(i){return xY(i)||CY(i)||_M(i)||DY()}function _M(i,e){if(i){if(typeof i=="string")return MT(i,e);var t={}.toString.call(i).slice(8,-1);return t==="Object"&&i.constructor&&(t=i.constructor.name),t==="Map"||t==="Set"?Array.from(i):t==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t)?MT(i,e):void 0}}var a6=function(){var e=arguments.length>0&&arguments[0]!==void 0?arguments[0]:[],t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:1,n=[],r=null;return e.forEach(function(s){if(r){var a=Vh(s,r)*180/Math.PI;if(a>t)for(var l=pM(r,s),u=r.length>2||s.length>2?fg(r[2]||0,s[2]||0):null,h=u?function(x){return[].concat(LY(l(x)),[u(x)])}:l,m=1/Math.ceil(a/t),v=m;v<1;)n.push(h(v)),v+=m}n.push(r=s)}),n},CT=typeof window<"u"&&window.THREE?window.THREE:{BufferGeometry:Ki,Float32BufferAttribute:Mi},UY=new CT.BufferGeometry().setAttribute?"setAttribute":"addAttribute",cP=(function(i){function e(t){var n,r=arguments.length>1&&arguments[1]!==void 0?arguments[1]:1,s=arguments.length>2&&arguments[2]!==void 0?arguments[2]:5;TY(this,e),n=SY(this,e),n.type="GeoJsonGeometry",n.parameters={geoJson:t,radius:r,resolution:s};var a=({Point:m,MultiPoint:v,LineString:x,MultiLineString:S,Polygon:w,MultiPolygon:R}[t.type]||function(){return[]})(t.coordinates,r),l=[],u=[],h=0;a.forEach(function(C){var E=l.length;im({indices:l,vertices:u},C),n.addGroup(E,l.length-E,h++)}),l.length&&n.setIndex(l),u.length&&n[UY]("position",new CT.Float32BufferAttribute(u,3));function m(C,E){var B=k3(C[1],C[0],E+(C[2]||0)),L=[];return[{vertices:B,indices:L}]}function v(C,E){var B={vertices:[],indices:[]};return C.map(function(L){return m(L,E)}).forEach(function(L){var O=nm(L,1),G=O[0];im(B,G)}),[B]}function x(C,E){for(var B=a6(C,s).map(function(j){var F=nm(j,3),V=F[0],Y=F[1],J=F[2],ne=J===void 0?0:J;return k3(Y,V,E+ne)}),L=F_([B]),O=L.vertices,G=Math.round(O.length/3),q=[],z=1;z2&&arguments[2]!==void 0?arguments[2]:0,n=(90-i)*Math.PI/180,r=(90-e)*Math.PI/180;return[t*Math.sin(n)*Math.cos(r),t*Math.cos(n),t*Math.sin(n)*Math.sin(r)]}function BY(i,e,t=!0){if(!e||!e.isReady)throw new Error("BufferGeometryUtils: Initialized MikkTSpace library required.");if(!i.hasAttribute("position")||!i.hasAttribute("normal")||!i.hasAttribute("uv"))throw new Error('BufferGeometryUtils: Tangents require "position", "normal", and "uv" attributes.');function n(a){if(a.normalized||a.isInterleavedBufferAttribute){const l=new Float32Array(a.count*a.itemSize);for(let u=0,h=0;u2&&(l[h++]=a.getZ(u));return l}return a.array instanceof Float32Array?a.array:new Float32Array(a.array)}const r=i.index?i.toNonIndexed():i,s=e.generateTangents(n(r.attributes.position),n(r.attributes.normal),n(r.attributes.uv));if(t)for(let a=3;a=2&&a.setY(l,i.getY(l)),n>=3&&a.setZ(l,i.getZ(l)),n>=4&&a.setW(l,i.getW(l));return a}function kY(i){const e=i.attributes,t=i.morphTargets,n=new Map;for(const r in e){const s=e[r];s.isInterleavedBufferAttribute&&(n.has(s)||n.set(s,z_(s)),e[r]=n.get(s))}for(const r in t){const s=t[r];s.isInterleavedBufferAttribute&&(n.has(s)||n.set(s,z_(s)),t[r]=n.get(s))}}function zY(i){let e=0;for(const n in i.attributes){const r=i.getAttribute(n);e+=r.count*r.itemSize*r.array.BYTES_PER_ELEMENT}const t=i.getIndex();return e+=t?t.count*t.itemSize*t.array.BYTES_PER_ELEMENT:0,e}function GY(i,e=1e-4){e=Math.max(e,Number.EPSILON);const t={},n=i.getIndex(),r=i.getAttribute("position"),s=n?n.count:r.count;let a=0;const l=Object.keys(i.attributes),u={},h={},m=[],v=["getX","getY","getZ","getW"],x=["setX","setY","setZ","setW"];for(let B=0,L=l.length;B{const F=new z.array.constructor(z.count*z.itemSize);h[O][j]=new z.constructor(F,z.itemSize,z.normalized)}))}const S=e*.5,w=Math.log10(1/e),R=Math.pow(10,w),C=S*R;for(let B=0;Ba.materialIndex!==l.materialIndex?a.materialIndex-l.materialIndex:a.start-l.start),i.getIndex()===null){const a=i.getAttribute("position"),l=[];for(let u=0;ut&&u.add(Y)}u.normalize(),w.setXYZ(E+G,u.x,u.y,u.z)}}return m.setAttribute("normal",w),m}const yM=Object.freeze(Object.defineProperty({__proto__:null,computeMikkTSpaceTangents:BY,computeMorphedAttributes:VY,deepCloneAttribute:IY,deinterleaveAttribute:z_,deinterleaveGeometry:kY,estimateBytesUsed:zY,interleaveAttributes:FY,mergeAttributes:RT,mergeGeometries:OY,mergeGroups:HY,mergeVertices:GY,toCreasedNormals:jY,toTrianglesDrawMode:qY},Symbol.toStringTag,{value:"Module"}));var Ct=(function(i){return typeof i=="function"?i:typeof i=="string"?function(e){return e[i]}:function(e){return i}});function G_(i){"@babel/helpers - typeof";return G_=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(e){return typeof e}:function(e){return e&&typeof Symbol=="function"&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},G_(i)}var WY=/^\s+/,$Y=/\s+$/;function yn(i,e){if(i=i||"",e=e||{},i instanceof yn)return i;if(!(this instanceof yn))return new yn(i,e);var t=XY(i);this._originalInput=i,this._r=t.r,this._g=t.g,this._b=t.b,this._a=t.a,this._roundA=Math.round(100*this._a)/100,this._format=e.format||t.format,this._gradientType=e.gradientType,this._r<1&&(this._r=Math.round(this._r)),this._g<1&&(this._g=Math.round(this._g)),this._b<1&&(this._b=Math.round(this._b)),this._ok=t.ok}yn.prototype={isDark:function(){return this.getBrightness()<128},isLight:function(){return!this.isDark()},isValid:function(){return this._ok},getOriginalInput:function(){return this._originalInput},getFormat:function(){return this._format},getAlpha:function(){return this._a},getBrightness:function(){var e=this.toRgb();return(e.r*299+e.g*587+e.b*114)/1e3},getLuminance:function(){var e=this.toRgb(),t,n,r,s,a,l;return t=e.r/255,n=e.g/255,r=e.b/255,t<=.03928?s=t/12.92:s=Math.pow((t+.055)/1.055,2.4),n<=.03928?a=n/12.92:a=Math.pow((n+.055)/1.055,2.4),r<=.03928?l=r/12.92:l=Math.pow((r+.055)/1.055,2.4),.2126*s+.7152*a+.0722*l},setAlpha:function(e){return this._a=hP(e),this._roundA=Math.round(100*this._a)/100,this},toHsv:function(){var e=u6(this._r,this._g,this._b);return{h:e.h*360,s:e.s,v:e.v,a:this._a}},toHsvString:function(){var e=u6(this._r,this._g,this._b),t=Math.round(e.h*360),n=Math.round(e.s*100),r=Math.round(e.v*100);return this._a==1?"hsv("+t+", "+n+"%, "+r+"%)":"hsva("+t+", "+n+"%, "+r+"%, "+this._roundA+")"},toHsl:function(){var e=l6(this._r,this._g,this._b);return{h:e.h*360,s:e.s,l:e.l,a:this._a}},toHslString:function(){var e=l6(this._r,this._g,this._b),t=Math.round(e.h*360),n=Math.round(e.s*100),r=Math.round(e.l*100);return this._a==1?"hsl("+t+", "+n+"%, "+r+"%)":"hsla("+t+", "+n+"%, "+r+"%, "+this._roundA+")"},toHex:function(e){return c6(this._r,this._g,this._b,e)},toHexString:function(e){return"#"+this.toHex(e)},toHex8:function(e){return ZY(this._r,this._g,this._b,this._a,e)},toHex8String:function(e){return"#"+this.toHex8(e)},toRgb:function(){return{r:Math.round(this._r),g:Math.round(this._g),b:Math.round(this._b),a:this._a}},toRgbString:function(){return this._a==1?"rgb("+Math.round(this._r)+", "+Math.round(this._g)+", "+Math.round(this._b)+")":"rgba("+Math.round(this._r)+", "+Math.round(this._g)+", "+Math.round(this._b)+", "+this._roundA+")"},toPercentageRgb:function(){return{r:Math.round(Sr(this._r,255)*100)+"%",g:Math.round(Sr(this._g,255)*100)+"%",b:Math.round(Sr(this._b,255)*100)+"%",a:this._a}},toPercentageRgbString:function(){return this._a==1?"rgb("+Math.round(Sr(this._r,255)*100)+"%, "+Math.round(Sr(this._g,255)*100)+"%, "+Math.round(Sr(this._b,255)*100)+"%)":"rgba("+Math.round(Sr(this._r,255)*100)+"%, "+Math.round(Sr(this._g,255)*100)+"%, "+Math.round(Sr(this._b,255)*100)+"%, "+this._roundA+")"},toName:function(){return this._a===0?"transparent":this._a<1?!1:cQ[c6(this._r,this._g,this._b,!0)]||!1},toFilter:function(e){var t="#"+h6(this._r,this._g,this._b,this._a),n=t,r=this._gradientType?"GradientType = 1, ":"";if(e){var s=yn(e);n="#"+h6(s._r,s._g,s._b,s._a)}return"progid:DXImageTransform.Microsoft.gradient("+r+"startColorstr="+t+",endColorstr="+n+")"},toString:function(e){var t=!!e;e=e||this._format;var n=!1,r=this._a<1&&this._a>=0,s=!t&&r&&(e==="hex"||e==="hex6"||e==="hex3"||e==="hex4"||e==="hex8"||e==="name");return s?e==="name"&&this._a===0?this.toName():this.toRgbString():(e==="rgb"&&(n=this.toRgbString()),e==="prgb"&&(n=this.toPercentageRgbString()),(e==="hex"||e==="hex6")&&(n=this.toHexString()),e==="hex3"&&(n=this.toHexString(!0)),e==="hex4"&&(n=this.toHex8String(!0)),e==="hex8"&&(n=this.toHex8String()),e==="name"&&(n=this.toName()),e==="hsl"&&(n=this.toHslString()),e==="hsv"&&(n=this.toHsvString()),n||this.toHexString())},clone:function(){return yn(this.toString())},_applyModification:function(e,t){var n=e.apply(null,[this].concat([].slice.call(t)));return this._r=n._r,this._g=n._g,this._b=n._b,this.setAlpha(n._a),this},lighten:function(){return this._applyModification(nQ,arguments)},brighten:function(){return this._applyModification(iQ,arguments)},darken:function(){return this._applyModification(rQ,arguments)},desaturate:function(){return this._applyModification(JY,arguments)},saturate:function(){return this._applyModification(eQ,arguments)},greyscale:function(){return this._applyModification(tQ,arguments)},spin:function(){return this._applyModification(sQ,arguments)},_applyCombination:function(e,t){return e.apply(null,[this].concat([].slice.call(t)))},analogous:function(){return this._applyCombination(lQ,arguments)},complement:function(){return this._applyCombination(aQ,arguments)},monochromatic:function(){return this._applyCombination(uQ,arguments)},splitcomplement:function(){return this._applyCombination(oQ,arguments)},triad:function(){return this._applyCombination(f6,[3])},tetrad:function(){return this._applyCombination(f6,[4])}};yn.fromRatio=function(i,e){if(G_(i)=="object"){var t={};for(var n in i)i.hasOwnProperty(n)&&(n==="a"?t[n]=i[n]:t[n]=Tm(i[n]));i=t}return yn(i,e)};function XY(i){var e={r:0,g:0,b:0},t=1,n=null,r=null,s=null,a=!1,l=!1;return typeof i=="string"&&(i=dQ(i)),G_(i)=="object"&&(gc(i.r)&&gc(i.g)&&gc(i.b)?(e=YY(i.r,i.g,i.b),a=!0,l=String(i.r).substr(-1)==="%"?"prgb":"rgb"):gc(i.h)&&gc(i.s)&&gc(i.v)?(n=Tm(i.s),r=Tm(i.v),e=KY(i.h,n,r),a=!0,l="hsv"):gc(i.h)&&gc(i.s)&&gc(i.l)&&(n=Tm(i.s),s=Tm(i.l),e=QY(i.h,n,s),a=!0,l="hsl"),i.hasOwnProperty("a")&&(t=i.a)),t=hP(t),{ok:a,format:i.format||l,r:Math.min(255,Math.max(e.r,0)),g:Math.min(255,Math.max(e.g,0)),b:Math.min(255,Math.max(e.b,0)),a:t}}function YY(i,e,t){return{r:Sr(i,255)*255,g:Sr(e,255)*255,b:Sr(t,255)*255}}function l6(i,e,t){i=Sr(i,255),e=Sr(e,255),t=Sr(t,255);var n=Math.max(i,e,t),r=Math.min(i,e,t),s,a,l=(n+r)/2;if(n==r)s=a=0;else{var u=n-r;switch(a=l>.5?u/(2-n-r):u/(n+r),n){case i:s=(e-t)/u+(e1&&(v-=1),v<1/6?h+(m-h)*6*v:v<1/2?m:v<2/3?h+(m-h)*(2/3-v)*6:h}if(e===0)n=r=s=t;else{var l=t<.5?t*(1+e):t+e-t*e,u=2*t-l;n=a(u,l,i+1/3),r=a(u,l,i),s=a(u,l,i-1/3)}return{r:n*255,g:r*255,b:s*255}}function u6(i,e,t){i=Sr(i,255),e=Sr(e,255),t=Sr(t,255);var n=Math.max(i,e,t),r=Math.min(i,e,t),s,a,l=n,u=n-r;if(a=n===0?0:u/n,n==r)s=0;else{switch(n){case i:s=(e-t)/u+(e>1)+720)%360;--e;)n.h=(n.h+r)%360,s.push(yn(n));return s}function uQ(i,e){e=e||6;for(var t=yn(i).toHsv(),n=t.h,r=t.s,s=t.v,a=[],l=1/e;e--;)a.push(yn({h:n,s:r,v:s})),s=(s+l)%1;return a}yn.mix=function(i,e,t){t=t===0?0:t||50;var n=yn(i).toRgb(),r=yn(e).toRgb(),s=t/100,a={r:(r.r-n.r)*s+n.r,g:(r.g-n.g)*s+n.g,b:(r.b-n.b)*s+n.b,a:(r.a-n.a)*s+n.a};return yn(a)};yn.readability=function(i,e){var t=yn(i),n=yn(e);return(Math.max(t.getLuminance(),n.getLuminance())+.05)/(Math.min(t.getLuminance(),n.getLuminance())+.05)};yn.isReadable=function(i,e,t){var n=yn.readability(i,e),r,s;switch(s=!1,r=pQ(t),r.level+r.size){case"AAsmall":case"AAAlarge":s=n>=4.5;break;case"AAlarge":s=n>=3;break;case"AAAsmall":s=n>=7;break}return s};yn.mostReadable=function(i,e,t){var n=null,r=0,s,a,l,u;t=t||{},a=t.includeFallbackColors,l=t.level,u=t.size;for(var h=0;hr&&(r=s,n=yn(e[h]));return yn.isReadable(i,n,{level:l,size:u})||!a?n:(t.includeFallbackColors=!1,yn.mostReadable(i,["#fff","#000"],t))};var NT=yn.names={aliceblue:"f0f8ff",antiquewhite:"faebd7",aqua:"0ff",aquamarine:"7fffd4",azure:"f0ffff",beige:"f5f5dc",bisque:"ffe4c4",black:"000",blanchedalmond:"ffebcd",blue:"00f",blueviolet:"8a2be2",brown:"a52a2a",burlywood:"deb887",burntsienna:"ea7e5d",cadetblue:"5f9ea0",chartreuse:"7fff00",chocolate:"d2691e",coral:"ff7f50",cornflowerblue:"6495ed",cornsilk:"fff8dc",crimson:"dc143c",cyan:"0ff",darkblue:"00008b",darkcyan:"008b8b",darkgoldenrod:"b8860b",darkgray:"a9a9a9",darkgreen:"006400",darkgrey:"a9a9a9",darkkhaki:"bdb76b",darkmagenta:"8b008b",darkolivegreen:"556b2f",darkorange:"ff8c00",darkorchid:"9932cc",darkred:"8b0000",darksalmon:"e9967a",darkseagreen:"8fbc8f",darkslateblue:"483d8b",darkslategray:"2f4f4f",darkslategrey:"2f4f4f",darkturquoise:"00ced1",darkviolet:"9400d3",deeppink:"ff1493",deepskyblue:"00bfff",dimgray:"696969",dimgrey:"696969",dodgerblue:"1e90ff",firebrick:"b22222",floralwhite:"fffaf0",forestgreen:"228b22",fuchsia:"f0f",gainsboro:"dcdcdc",ghostwhite:"f8f8ff",gold:"ffd700",goldenrod:"daa520",gray:"808080",green:"008000",greenyellow:"adff2f",grey:"808080",honeydew:"f0fff0",hotpink:"ff69b4",indianred:"cd5c5c",indigo:"4b0082",ivory:"fffff0",khaki:"f0e68c",lavender:"e6e6fa",lavenderblush:"fff0f5",lawngreen:"7cfc00",lemonchiffon:"fffacd",lightblue:"add8e6",lightcoral:"f08080",lightcyan:"e0ffff",lightgoldenrodyellow:"fafad2",lightgray:"d3d3d3",lightgreen:"90ee90",lightgrey:"d3d3d3",lightpink:"ffb6c1",lightsalmon:"ffa07a",lightseagreen:"20b2aa",lightskyblue:"87cefa",lightslategray:"789",lightslategrey:"789",lightsteelblue:"b0c4de",lightyellow:"ffffe0",lime:"0f0",limegreen:"32cd32",linen:"faf0e6",magenta:"f0f",maroon:"800000",mediumaquamarine:"66cdaa",mediumblue:"0000cd",mediumorchid:"ba55d3",mediumpurple:"9370db",mediumseagreen:"3cb371",mediumslateblue:"7b68ee",mediumspringgreen:"00fa9a",mediumturquoise:"48d1cc",mediumvioletred:"c71585",midnightblue:"191970",mintcream:"f5fffa",mistyrose:"ffe4e1",moccasin:"ffe4b5",navajowhite:"ffdead",navy:"000080",oldlace:"fdf5e6",olive:"808000",olivedrab:"6b8e23",orange:"ffa500",orangered:"ff4500",orchid:"da70d6",palegoldenrod:"eee8aa",palegreen:"98fb98",paleturquoise:"afeeee",palevioletred:"db7093",papayawhip:"ffefd5",peachpuff:"ffdab9",peru:"cd853f",pink:"ffc0cb",plum:"dda0dd",powderblue:"b0e0e6",purple:"800080",rebeccapurple:"663399",red:"f00",rosybrown:"bc8f8f",royalblue:"4169e1",saddlebrown:"8b4513",salmon:"fa8072",sandybrown:"f4a460",seagreen:"2e8b57",seashell:"fff5ee",sienna:"a0522d",silver:"c0c0c0",skyblue:"87ceeb",slateblue:"6a5acd",slategray:"708090",slategrey:"708090",snow:"fffafa",springgreen:"00ff7f",steelblue:"4682b4",tan:"d2b48c",teal:"008080",thistle:"d8bfd8",tomato:"ff6347",turquoise:"40e0d0",violet:"ee82ee",wheat:"f5deb3",white:"fff",whitesmoke:"f5f5f5",yellow:"ff0",yellowgreen:"9acd32"},cQ=yn.hexNames=hQ(NT);function hQ(i){var e={};for(var t in i)i.hasOwnProperty(t)&&(e[i[t]]=t);return e}function hP(i){return i=parseFloat(i),(isNaN(i)||i<0||i>1)&&(i=1),i}function Sr(i,e){fQ(i)&&(i="100%");var t=AQ(i);return i=Math.min(e,Math.max(0,parseFloat(i))),t&&(i=parseInt(i*e,10)/100),Math.abs(i-e)<1e-6?1:i%e/parseFloat(e)}function Cy(i){return Math.min(1,Math.max(0,i))}function _o(i){return parseInt(i,16)}function fQ(i){return typeof i=="string"&&i.indexOf(".")!=-1&&parseFloat(i)===1}function AQ(i){return typeof i=="string"&&i.indexOf("%")!=-1}function El(i){return i.length==1?"0"+i:""+i}function Tm(i){return i<=1&&(i=i*100+"%"),i}function fP(i){return Math.round(parseFloat(i)*255).toString(16)}function A6(i){return _o(i)/255}var bl=(function(){var i="[-\\+]?\\d+%?",e="[-\\+]?\\d*\\.\\d+%?",t="(?:"+e+")|(?:"+i+")",n="[\\s|\\(]+("+t+")[,|\\s]+("+t+")[,|\\s]+("+t+")\\s*\\)?",r="[\\s|\\(]+("+t+")[,|\\s]+("+t+")[,|\\s]+("+t+")[,|\\s]+("+t+")\\s*\\)?";return{CSS_UNIT:new RegExp(t),rgb:new RegExp("rgb"+n),rgba:new RegExp("rgba"+r),hsl:new RegExp("hsl"+n),hsla:new RegExp("hsla"+r),hsv:new RegExp("hsv"+n),hsva:new RegExp("hsva"+r),hex3:/^#?([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/,hex6:/^#?([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})$/,hex4:/^#?([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/,hex8:/^#?([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})$/}})();function gc(i){return!!bl.CSS_UNIT.exec(i)}function dQ(i){i=i.replace(WY,"").replace($Y,"").toLowerCase();var e=!1;if(NT[i])i=NT[i],e=!0;else if(i=="transparent")return{r:0,g:0,b:0,a:0,format:"name"};var t;return(t=bl.rgb.exec(i))?{r:t[1],g:t[2],b:t[3]}:(t=bl.rgba.exec(i))?{r:t[1],g:t[2],b:t[3],a:t[4]}:(t=bl.hsl.exec(i))?{h:t[1],s:t[2],l:t[3]}:(t=bl.hsla.exec(i))?{h:t[1],s:t[2],l:t[3],a:t[4]}:(t=bl.hsv.exec(i))?{h:t[1],s:t[2],v:t[3]}:(t=bl.hsva.exec(i))?{h:t[1],s:t[2],v:t[3],a:t[4]}:(t=bl.hex8.exec(i))?{r:_o(t[1]),g:_o(t[2]),b:_o(t[3]),a:A6(t[4]),format:e?"name":"hex8"}:(t=bl.hex6.exec(i))?{r:_o(t[1]),g:_o(t[2]),b:_o(t[3]),format:e?"name":"hex"}:(t=bl.hex4.exec(i))?{r:_o(t[1]+""+t[1]),g:_o(t[2]+""+t[2]),b:_o(t[3]+""+t[3]),a:A6(t[4]+""+t[4]),format:e?"name":"hex8"}:(t=bl.hex3.exec(i))?{r:_o(t[1]+""+t[1]),g:_o(t[2]+""+t[2]),b:_o(t[3]+""+t[3]),format:e?"name":"hex"}:!1}function pQ(i){var e,t;return i=i||{level:"AA",size:"small"},e=(i.level||"AA").toUpperCase(),t=(i.size||"small").toLowerCase(),e!=="AA"&&e!=="AAA"&&(e="AA"),t!=="small"&&t!=="large"&&(t="small"),{level:e,size:t}}function DT(i,e){(e==null||e>i.length)&&(e=i.length);for(var t=0,n=Array(e);t=this._minInterval)if(isNaN(this._maxInterval))this.update(this._frameDeltaTime*this._timeScale,!0),this._lastTimeUpdated=this._now;else for(this._interval=Math.min(this._frameDeltaTime,this._maxInterval);this._now>=this._lastTimeUpdated+this._interval;)this.update(this._interval*this._timeScale,this._now<=this._lastTimeUpdated+2*this._maxInterval),this._lastTimeUpdated+=this._interval;this._isRunning&&this.animateOnce()},l.prototype.update=function(u,h){h===void 0&&(h=!0),this._currentTick++,this._currentTime+=u,this._tickDeltaTime=u,this._onTick.dispatch(this.currentTimeSeconds,this.tickDeltaTimeSeconds,this.currentTick),h&&this._onTickOncePerFrame.dispatch(this.currentTimeSeconds,this.tickDeltaTimeSeconds,this.currentTick)},l.prototype.getTimer=function(){return Date.now()},l})();Object.defineProperty(n,"__esModule",{value:!0}),n.default=a},function(t,n,r){(function(s,a){t.exports=a()})(this,function(){return(function(s){function a(u){if(l[u])return l[u].exports;var h=l[u]={exports:{},id:u,loaded:!1};return s[u].call(h.exports,h,h.exports,a),h.loaded=!0,h.exports}var l={};return a.m=s,a.c=l,a.p="",a(0)})([function(s,a){var l=(function(){function u(){this.functions=[]}return u.prototype.add=function(h){return this.functions.indexOf(h)===-1&&(this.functions.push(h),!0)},u.prototype.remove=function(h){var m=this.functions.indexOf(h);return m>-1&&(this.functions.splice(m,1),!0)},u.prototype.removeAll=function(){return this.functions.length>0&&(this.functions.length=0,!0)},u.prototype.dispatch=function(){for(var h=[],m=0;mh==m>-h?(s=h,h=e[++v]):(s=m,m=n[++x]);let S=0;if(vh==m>-h?(a=h+s,l=s-(a-h),h=e[++v]):(a=m+s,l=s-(a-m),m=n[++x]),s=a,l!==0&&(r[S++]=l);vh==m>-h?(a=s+h,u=a-s,l=s-(a-u)+(h-u),h=e[++v]):(a=s+m,u=a-s,l=s-(a-u)+(m-u),m=n[++x]),s=a,l!==0&&(r[S++]=l);for(;v=oe||-ne>=oe||(v=i-F,l=i-(F+v)+(v-r),v=t-V,h=t-(V+v)+(v-r),v=e-Y,u=e-(Y+v)+(v-s),v=n-J,m=n-(J+v)+(v-s),l===0&&u===0&&h===0&&m===0)||(oe=FQ*a+UQ*Math.abs(ne),ne+=F*m+J*l-(Y*h+V*u),ne>=oe||-ne>=oe))return ne;O=l*J,x=na*l,S=x-(x-l),w=l-S,x=na*J,R=x-(x-J),C=J-R,G=w*C-(O-S*R-w*R-S*C),q=u*V,x=na*u,S=x-(x-u),w=u-S,x=na*V,R=x-(x-V),C=V-R,z=w*C-(q-S*R-w*R-S*C),E=G-z,v=G-E,va[0]=G-(E+v)+(v-z),B=O+E,v=B-O,L=O-(B-v)+(E-v),E=L-q,v=L-E,va[1]=L-(E+v)+(v-q),j=B+E,v=j-B,va[2]=B-(j-v)+(E-v),va[3]=j;const te=V3(4,Td,4,va,p6);O=F*m,x=na*F,S=x-(x-F),w=F-S,x=na*m,R=x-(x-m),C=m-R,G=w*C-(O-S*R-w*R-S*C),q=Y*h,x=na*Y,S=x-(x-Y),w=Y-S,x=na*h,R=x-(x-h),C=h-R,z=w*C-(q-S*R-w*R-S*C),E=G-z,v=G-E,va[0]=G-(E+v)+(v-z),B=O+E,v=B-O,L=O-(B-v)+(E-v),E=L-q,v=L-E,va[1]=L-(E+v)+(v-q),j=B+E,v=j-B,va[2]=B-(j-v)+(E-v),va[3]=j;const Q=V3(te,p6,4,va,m6);O=l*m,x=na*l,S=x-(x-l),w=l-S,x=na*m,R=x-(x-m),C=m-R,G=w*C-(O-S*R-w*R-S*C),q=u*h,x=na*u,S=x-(x-u),w=u-S,x=na*h,R=x-(x-h),C=h-R,z=w*C-(q-S*R-w*R-S*C),E=G-z,v=G-E,va[0]=G-(E+v)+(v-z),B=O+E,v=B-O,L=O-(B-v)+(E-v),E=L-q,v=L-E,va[1]=L-(E+v)+(v-q),j=B+E,v=j-B,va[2]=B-(j-v)+(E-v),va[3]=j;const ue=V3(Q,m6,4,va,g6);return g6[ue-1]}function wm(i,e,t,n,r,s){const a=(e-s)*(t-r),l=(i-r)*(n-s),u=a-l,h=Math.abs(a+l);return Math.abs(u)>=OQ*h?u:-kQ(i,e,t,n,r,s,h)}const v6=Math.pow(2,-52),ov=new Uint32Array(512);class gg{static from(e,t=HQ,n=jQ){const r=e.length,s=new Float64Array(r*2);for(let a=0;a>1;if(t>0&&typeof e[0]!="number")throw new Error("Expected coords to contain numbers.");this.coords=e;const n=Math.max(2*t-5,0);this._triangles=new Uint32Array(n*3),this._halfedges=new Int32Array(n*3),this._hashSize=Math.ceil(Math.sqrt(t)),this._hullPrev=new Uint32Array(t),this._hullNext=new Uint32Array(t),this._hullTri=new Uint32Array(t),this._hullHash=new Int32Array(this._hashSize),this._ids=new Uint32Array(t),this._dists=new Float64Array(t),this.update()}update(){const{coords:e,_hullPrev:t,_hullNext:n,_hullTri:r,_hullHash:s}=this,a=e.length>>1;let l=1/0,u=1/0,h=-1/0,m=-1/0;for(let F=0;Fh&&(h=V),Y>m&&(m=Y),this._ids[F]=F}const v=(l+h)/2,x=(u+m)/2;let S,w,R;for(let F=0,V=1/0;F0&&(w=F,V=Y)}let B=e[2*w],L=e[2*w+1],O=1/0;for(let F=0;FJ&&(F[V++]=ne,J=oe)}this.hull=F.subarray(0,V),this.triangles=new Uint32Array(0),this.halfedges=new Uint32Array(0);return}if(wm(C,E,B,L,G,q)<0){const F=w,V=B,Y=L;w=R,B=G,L=q,R=F,G=V,q=Y}const z=VQ(C,E,B,L,G,q);this._cx=z.x,this._cy=z.y;for(let F=0;F0&&Math.abs(ne-V)<=v6&&Math.abs(oe-Y)<=v6||(V=ne,Y=oe,J===S||J===w||J===R))continue;let te=0;for(let Te=0,ce=this._hashKey(ne,oe);Te=0;)if(Q=ue,Q===te){Q=-1;break}if(Q===-1)continue;let he=this._addTriangle(Q,J,n[Q],-1,-1,r[Q]);r[J]=this._legalize(he+2),r[Q]=he,j++;let we=n[Q];for(;ue=n[we],wm(ne,oe,e[2*we],e[2*we+1],e[2*ue],e[2*ue+1])<0;)he=this._addTriangle(we,J,ue,r[J],-1,r[we]),r[J]=this._legalize(he+2),n[we]=we,j--,we=ue;if(Q===te)for(;ue=t[Q],wm(ne,oe,e[2*ue],e[2*ue+1],e[2*Q],e[2*Q+1])<0;)he=this._addTriangle(ue,J,Q,-1,r[Q],r[ue]),this._legalize(he+2),r[ue]=he,n[Q]=Q,j--,Q=ue;this._hullStart=t[J]=Q,n[Q]=t[we]=J,n[J]=we,s[this._hashKey(ne,oe)]=J,s[this._hashKey(e[2*Q],e[2*Q+1])]=Q}this.hull=new Uint32Array(j);for(let F=0,V=this._hullStart;F0?3-t:1+t)/4}function H3(i,e,t,n){const r=i-t,s=e-n;return r*r+s*s}function GQ(i,e,t,n,r,s,a,l){const u=i-a,h=e-l,m=t-a,v=n-l,x=r-a,S=s-l,w=u*u+h*h,R=m*m+v*v,C=x*x+S*S;return u*(v*C-R*S)-h*(m*C-R*x)+w*(m*S-v*x)<0}function qQ(i,e,t,n,r,s){const a=t-i,l=n-e,u=r-i,h=s-e,m=a*a+l*l,v=u*u+h*h,x=.5/(a*h-l*u),S=(h*m-l*v)*x,w=(a*v-u*m)*x;return S*S+w*w}function VQ(i,e,t,n,r,s){const a=t-i,l=n-e,u=r-i,h=s-e,m=a*a+l*l,v=u*u+h*h,x=.5/(a*h-l*u),S=i+(h*m-l*v)*x,w=e+(a*v-u*m)*x;return{x:S,y:w}}function $d(i,e,t,n){if(n-t<=20)for(let r=t+1;r<=n;r++){const s=i[r],a=e[s];let l=r-1;for(;l>=t&&e[i[l]]>a;)i[l+1]=i[l--];i[l+1]=s}else{const r=t+n>>1;let s=t+1,a=n;sm(i,r,s),e[i[t]]>e[i[n]]&&sm(i,t,n),e[i[s]]>e[i[n]]&&sm(i,s,n),e[i[t]]>e[i[s]]&&sm(i,t,s);const l=i[s],u=e[l];for(;;){do s++;while(e[i[s]]u);if(a=a-t?($d(i,e,s,n),$d(i,e,t,a-1)):($d(i,e,t,a-1),$d(i,e,s,n))}}function sm(i,e,t){const n=i[e];i[e]=i[t],i[t]=n}function HQ(i){return i[0]}function jQ(i){return i[1]}function WQ(i,e){var t,n,r=0,s,a,l,u,h,m,v,x=i[0],S=i[1],w=e.length;for(t=0;t=0||a<=0&&u>=0)return 0}else if(h>=0&&l<=0||h<=0&&l>=0){if(s=wm(a,u,l,h,0,0),s===0)return 0;(s>0&&h>0&&l<=0||s<0&&h<=0&&l>0)&&r++}m=v,l=h,a=u}}return r%2!==0}function $Q(i){if(!i)throw new Error("coord is required");if(!Array.isArray(i)){if(i.type==="Feature"&&i.geometry!==null&&i.geometry.type==="Point")return[...i.geometry.coordinates];if(i.type==="Point")return[...i.coordinates]}if(Array.isArray(i)&&i.length>=2&&!Array.isArray(i[0])&&!Array.isArray(i[1]))return[...i];throw new Error("coord must be GeoJSON Point or an Array of numbers")}function XQ(i){return i.type==="Feature"?i.geometry:i}function YQ(i,e,t={}){if(!i)throw new Error("point is required");if(!e)throw new Error("polygon is required");const n=$Q(i),r=XQ(e),s=r.type,a=e.bbox;let l=r.coordinates;if(a&&QQ(n,a)===!1)return!1;s==="Polygon"&&(l=[l]);let u=!1;for(var h=0;h=i[0]&&e[3]>=i[1]}var KQ=YQ;const _6=1e-6;class $f{constructor(){this._x0=this._y0=this._x1=this._y1=null,this._=""}moveTo(e,t){this._+=`M${this._x0=this._x1=+e},${this._y0=this._y1=+t}`}closePath(){this._x1!==null&&(this._x1=this._x0,this._y1=this._y0,this._+="Z")}lineTo(e,t){this._+=`L${this._x1=+e},${this._y1=+t}`}arc(e,t,n){e=+e,t=+t,n=+n;const r=e+n,s=t;if(n<0)throw new Error("negative radius");this._x1===null?this._+=`M${r},${s}`:(Math.abs(this._x1-r)>_6||Math.abs(this._y1-s)>_6)&&(this._+="L"+r+","+s),n&&(this._+=`A${n},${n},0,1,1,${e-n},${t}A${n},${n},0,1,1,${this._x1=r},${this._y1=s}`)}rect(e,t,n,r){this._+=`M${this._x0=this._x1=+e},${this._y0=this._y1=+t}h${+n}v${+r}h${-n}Z`}value(){return this._||null}}class PT{constructor(){this._=[]}moveTo(e,t){this._.push([e,t])}closePath(){this._.push(this._[0].slice())}lineTo(e,t){this._.push([e,t])}value(){return this._.length?this._:null}}class ZQ{constructor(e,[t,n,r,s]=[0,0,960,500]){if(!((r=+r)>=(t=+t))||!((s=+s)>=(n=+n)))throw new Error("invalid bounds");this.delaunay=e,this._circumcenters=new Float64Array(e.points.length*2),this.vectors=new Float64Array(e.points.length*2),this.xmax=r,this.xmin=t,this.ymax=s,this.ymin=n,this._init()}update(){return this.delaunay.update(),this._init(),this}_init(){const{delaunay:{points:e,hull:t,triangles:n},vectors:r}=this;let s,a;const l=this.circumcenters=this._circumcenters.subarray(0,n.length/3*2);for(let R=0,C=0,E=n.length,B,L;R1;)s-=2;for(let a=2;a0){if(t>=this.ymax)return null;(a=(this.ymax-t)/r)0){if(e>=this.xmax)return null;(a=(this.xmax-e)/n)this.xmax?2:0)|(tthis.ymax?8:0)}_simplify(e){if(e&&e.length>4){for(let t=0;t1e-10)return!1}return!0}function iK(i,e,t){return[i+Math.sin(i+e)*t,e+Math.cos(i-e)*t]}class xM{static from(e,t=eK,n=tK,r){return new xM("length"in e?rK(e,t,n,r):Float64Array.from(sK(e,t,n,r)))}constructor(e){this._delaunator=new gg(e),this.inedges=new Int32Array(e.length/2),this._hullIndex=new Int32Array(e.length/2),this.points=this._delaunator.coords,this._init()}update(){return this._delaunator.update(),this._init(),this}_init(){const e=this._delaunator,t=this.points;if(e.hull&&e.hull.length>2&&nK(e)){this.collinear=Int32Array.from({length:t.length/2},(x,S)=>S).sort((x,S)=>t[2*x]-t[2*S]||t[2*x+1]-t[2*S+1]);const u=this.collinear[0],h=this.collinear[this.collinear.length-1],m=[t[2*u],t[2*u+1],t[2*h],t[2*h+1]],v=1e-8*Math.hypot(m[3]-m[1],m[2]-m[0]);for(let x=0,S=t.length/2;x0&&(this.triangles=new Int32Array(3).fill(-1),this.halfedges=new Int32Array(3).fill(-1),this.triangles[0]=r[0],a[r[0]]=1,r.length===2&&(a[r[1]]=0,this.triangles[1]=r[1],this.triangles[2]=r[1]))}voronoi(e){return new ZQ(this,e)}*neighbors(e){const{inedges:t,hull:n,_hullIndex:r,halfedges:s,triangles:a,collinear:l}=this;if(l){const v=l.indexOf(e);v>0&&(yield l[v-1]),v=0&&s!==n&&s!==r;)n=s;return s}_step(e,t,n){const{inedges:r,hull:s,_hullIndex:a,halfedges:l,triangles:u,points:h}=this;if(r[e]===-1||!h.length)return(e+1)%(h.length>>1);let m=e,v=wd(t-h[e*2],2)+wd(n-h[e*2+1],2);const x=r[e];let S=x;do{let w=u[S];const R=wd(t-h[w*2],2)+wd(n-h[w*2+1],2);if(R0?1:i<0?-1:0},pP=Math.sqrt;function cK(i){return i>1?y6:i<-1?-y6:Math.asin(i)}function mP(i,e){return i[0]*e[0]+i[1]*e[1]+i[2]*e[2]}function So(i,e){return[i[1]*e[2]-i[2]*e[1],i[2]*e[0]-i[0]*e[2],i[0]*e[1]-i[1]*e[0]]}function q_(i,e){return[i[0]+e[0],i[1]+e[1],i[2]+e[2]]}function V_(i){var e=pP(i[0]*i[0]+i[1]*i[1]+i[2]*i[2]);return[i[0]/e,i[1]/e,i[2]/e]}function SM(i){return[aK(i[1],i[0])*x6,cK(oK(-1,lK(1,i[2])))*x6]}function uu(i){const e=i[0]*b6,t=i[1]*b6,n=S6(t);return[n*S6(e),n*T6(e),T6(t)]}function TM(i){return i=i.map(e=>uu(e)),mP(i[0],So(i[2],i[1]))}function hK(i){const e=AK(i),t=pK(e),n=dK(t,i),r=gK(t,i.length),s=fK(r,i),a=mK(t,i),{polygons:l,centers:u}=vK(a,t,i),h=_K(l),m=xK(t,i),v=yK(n,t);return{delaunay:e,edges:n,triangles:t,centers:u,neighbors:r,polygons:l,mesh:h,hull:m,urquhart:v,find:s}}function fK(i,e){function t(n,r){let s=n[0]-r[0],a=n[1]-r[1],l=n[2]-r[2];return s*s+a*a+l*l}return function(r,s,a){a===void 0&&(a=0);let l,u,h=a;const m=uu([r,s]);do l=a,a=null,u=t(m,uu(e[l])),i[l].forEach(v=>{let x=t(m,uu(e[v]));if(x1e32?r.push(v):S>s&&(s=S)}const a=1e6*pP(s);r.forEach(v=>i[v]=[a,0]),i.push([0,a]),i.push([-a,0]),i.push([0,-a]);const l=xM.from(i);l.projection=n;const{triangles:u,halfedges:h,inedges:m}=l;for(let v=0,x=h.length;vi.length-3-1&&(u[v]=e);return l}function dK(i,e){const t=new Set;return e.length===2?[[0,1]]:(i.forEach(n=>{if(n[0]!==n[1]&&!(TM(n.map(r=>e[r]))<0))for(let r=0,s;r<3;r++)s=(r+1)%3,t.add(A_([n[r],n[s]]).join("-"))}),Array.from(t,n=>n.split("-").map(Number)))}function pK(i){const{triangles:e}=i;if(!e)return[];const t=[];for(let n=0,r=e.length/3;n{const n=t.map(s=>e[s]).map(uu),r=q_(q_(So(n[1],n[0]),So(n[2],n[1])),So(n[0],n[2]));return SM(V_(r))})}function gK(i,e){const t=[];return i.forEach(n=>{for(let r=0;r<3;r++){const s=n[r],a=n[(r+1)%3];t[s]=t[s]||[],t[s].push(a)}}),i.length===0&&(e===2?(t[0]=[1],t[1]=[0]):e===1&&(t[0]=[])),t}function vK(i,e,t){const n=[],r=i.slice();if(e.length===0){if(t.length<2)return{polygons:n,centers:r};if(t.length===2){const l=uu(t[0]),u=uu(t[1]),h=V_(q_(l,u)),m=V_(So(l,u)),v=So(h,m),x=[h,So(h,v),So(So(h,v),v),So(So(So(h,v),v),v)].map(SM).map(a);return n.push(x),n.push(x.slice().reverse()),{polygons:n,centers:r}}}e.forEach((l,u)=>{for(let h=0;h<3;h++){const m=l[h],v=l[(h+1)%3],x=l[(h+2)%3];n[m]=n[m]||[],n[m].push([v,x,u,[m,v,x]])}});const s=n.map(l=>{const u=[l[0][2]];let h=l[0][1];for(let m=1;m2)return u;if(u.length==2){const m=w6(t[l[0][3][0]],t[l[0][3][1]],r[u[0]]),v=w6(t[l[0][3][2]],t[l[0][3][0]],r[u[0]]),x=a(m),S=a(v);return[u[0],S,u[1],x]}});function a(l){let u=-1;return r.slice(e.length,1/0).forEach((h,m)=>{h[0]===l[0]&&h[1]===l[1]&&(u=m+e.length)}),u<0&&(u=r.length,r.push(l)),u}return{polygons:s,centers:r}}function w6(i,e,t){i=uu(i),e=uu(e),t=uu(t);const n=uK(mP(So(e,i),t));return SM(V_(q_(i,e)).map(r=>n*r))}function _K(i){const e=[];return i.forEach(t=>{if(!t)return;let n=t[t.length-1];for(let r of t)r>n&&e.push([n,r]),n=r}),e}function yK(i,e){return function(t){const n=new Map,r=new Map;return i.forEach((s,a)=>{const l=s.join("-");n.set(l,t[a]),r.set(l,!0)}),e.forEach(s=>{let a=0,l=-1;for(let u=0;u<3;u++){let h=A_([s[u],s[(u+1)%3]]).join("-");n.get(h)>a&&(a=n.get(h),l=h)}r.set(l,!1)}),i.map(s=>r.get(s.join("-")))}}function xK(i,e){const t=new Set,n=[];i.map(l=>{if(!(TM(l.map(u=>e[u>e.length?0:u]))>1e-12))for(let u=0;u<3;u++){let h=[l[u],l[(u+1)%3]],m=`${h[0]}-${h[1]}`;t.has(m)?t.delete(m):t.add(`${h[1]}-${h[0]}`)}});const r=new Map;let s;if(t.forEach(l=>{l=l.split("-").map(Number),r.set(l[0],l[1]),s=l[0]}),s===void 0)return n;let a=s;do{n.push(a);let l=r.get(a);r.set(a,-1),a=l}while(a>-1&&a!==s);return n}function bK(i){const e=function(t){if(e.delaunay=null,e._data=t,typeof e._data=="object"&&e._data.type==="FeatureCollection"&&(e._data=e._data.features),typeof e._data=="object"){const n=e._data.map(r=>[e._vx(r),e._vy(r),r]).filter(r=>isFinite(r[0]+r[1]));e.points=n.map(r=>[r[0],r[1]]),e.valid=n.map(r=>r[2]),e.delaunay=hK(e.points)}return e};return e._vx=function(t){if(typeof t=="object"&&"type"in t)return OR(t)[0];if(0 in t)return t[0]},e._vy=function(t){if(typeof t=="object"&&"type"in t)return OR(t)[1];if(1 in t)return t[1]},e.x=function(t){return t?(e._vx=t,e):e._vx},e.y=function(t){return t?(e._vy=t,e):e._vy},e.polygons=function(t){if(t!==void 0&&e(t),!e.delaunay)return!1;const n={type:"FeatureCollection",features:[]};return e.valid.length===0||(e.delaunay.polygons.forEach((r,s)=>n.features.push({type:"Feature",geometry:r?{type:"Polygon",coordinates:[[...r,r[0]].map(a=>e.delaunay.centers[a])]}:null,properties:{site:e.valid[s],sitecoordinates:e.points[s],neighbours:e.delaunay.neighbors[s]}})),e.valid.length===1&&n.features.push({type:"Feature",geometry:{type:"Sphere"},properties:{site:e.valid[0],sitecoordinates:e.points[0],neighbours:[]}})),n},e.triangles=function(t){return t!==void 0&&e(t),e.delaunay?{type:"FeatureCollection",features:e.delaunay.triangles.map((n,r)=>(n=n.map(s=>e.points[s]),n.center=e.delaunay.centers[r],n)).filter(n=>TM(n)>0).map(n=>({type:"Feature",properties:{circumcenter:n.center},geometry:{type:"Polygon",coordinates:[[...n,n[0]]]}}))}:!1},e.links=function(t){if(t!==void 0&&e(t),!e.delaunay)return!1;const n=e.delaunay.edges.map(s=>Vh(e.points[s[0]],e.points[s[1]])),r=e.delaunay.urquhart(n);return{type:"FeatureCollection",features:e.delaunay.edges.map((s,a)=>({type:"Feature",properties:{source:e.valid[s[0]],target:e.valid[s[1]],length:n[a],urquhart:!!r[a]},geometry:{type:"LineString",coordinates:[e.points[s[0]],e.points[s[1]]]}}))}},e.mesh=function(t){return t!==void 0&&e(t),e.delaunay?{type:"MultiLineString",coordinates:e.delaunay.edges.map(n=>[e.points[n[0]],e.points[n[1]]])}:!1},e.cellMesh=function(t){if(t!==void 0&&e(t),!e.delaunay)return!1;const{centers:n,polygons:r}=e.delaunay,s=[];for(const a of r)if(a)for(let l=a.length,u=a[l-1],h=a[0],m=0;mu&&s.push([n[u],n[h]]);return{type:"MultiLineString",coordinates:s}},e._found=void 0,e.find=function(t,n,r){if(e._found=e.delaunay.find(t,n,e._found),!r||Vh([t,n],e.points[e._found])r[s]),r[n[0]]]]}},i?e(i):e}function LT(i,e){(e==null||e>i.length)&&(e=i.length);for(var t=0,n=Array(e);t1&&arguments[1]!==void 0?arguments[1]:{},t=e.resolution,n=t===void 0?1/0:t,r=OK(i,n),s=ug(r),a=IK(i,n),l=[].concat(j3(s),j3(a)),u={type:"Polygon",coordinates:i},h=FD(u),m=Kl(h,2),v=Kl(m[0],2),x=v[0],S=v[1],w=Kl(m[1],2),R=w[0],C=w[1],E=x>R||C>=89||S<=-89,B=[];if(E){var L=bK(l).triangles(),O=new Map(l.map(function(ue,he){var we=Kl(ue,2),Te=we[0],ce=we[1];return["".concat(Te,"-").concat(ce),he]}));L.features.forEach(function(ue){var he,we=ue.geometry.coordinates[0].slice(0,3).reverse(),Te=[];if(we.forEach(function(be){var ze=Kl(be,2),Ee=ze[0],Ge=ze[1],xe="".concat(Ee,"-").concat(Ge);O.has(xe)&&Te.push(O.get(xe))}),Te.length===3){if(Te.some(function(be){return bee)for(var l=pM(r,s),u=1/Math.ceil(a/e),h=u;h<1;)n.push(l(h)),h+=u}n.push(r=s)}),n})}function IK(i,e){var t={type:"Polygon",coordinates:i},n=FD(t),r=Kl(n,2),s=Kl(r[0],2),a=s[0],l=s[1],u=Kl(r[1],2),h=u[0],m=u[1];if(Math.min(Math.abs(h-a),Math.abs(m-l))h||m>=89||l<=-89;return FK(e,{minLng:a,maxLng:h,minLat:l,maxLat:m}).filter(function(x){return BT(x,t,v)})}function FK(i){for(var e=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},t=e.minLng,n=e.maxLng,r=e.minLat,s=e.maxLat,a=Math.round(Math.pow(360/i,2)/Math.PI),l=(1+Math.sqrt(5))/2,u=function(E){return E/l*360%360-180},h=function(E){return Math.acos(2*E/a-1)/Math.PI*180-90},m=function(E){return a*(Math.cos((E+90)*Math.PI/180)+1)/2},v=[s!==void 0?Math.ceil(m(s)):0,r!==void 0?Math.floor(m(r)):a-1],x=t===void 0&&n===void 0?function(){return!0}:t===void 0?function(C){return C<=n}:n===void 0?function(C){return C>=t}:n>=t?function(C){return C>=t&&C<=n}:function(C){return C>=t||C<=n},S=[],w=v[0];w<=v[1];w++){var R=u(w);x(R)&&S.push([R,h(w)])}return S}function BT(i,e){var t=arguments.length>2&&arguments[2]!==void 0?arguments[2]:!1;return t?gX(e,i):KQ(i,e)}var Yv=window.THREE?window.THREE:{BufferGeometry:Ki,Float32BufferAttribute:Mi},M6=new Yv.BufferGeometry().setAttribute?"setAttribute":"addAttribute",wM=(function(i){function e(t,n,r,s,a,l,u){var h;EK(this,e),h=MK(this,e),h.type="ConicPolygonGeometry",h.parameters={polygonGeoJson:t,bottomHeight:n,topHeight:r,closedBottom:s,closedTop:a,includeSides:l,curvatureResolution:u},n=n||0,r=r||1,s=s!==void 0?s:!0,a=a!==void 0?a:!0,l=l!==void 0?l:!0,u=u||5;var m=BK(t,{resolution:u}),v=m.contour,x=m.triangles,S=ug(x.uvs),w=[],R=[],C=[],E=0,B=function(z){var j=Math.round(w.length/3),F=C.length;w=w.concat(z.vertices),R=R.concat(z.uvs),C=C.concat(j?z.indices.map(function(V){return V+j}):z.indices),h.addGroup(F,C.length-F,E++)};l&&B(O()),s&&B(G(n,!1)),a&&B(G(r,!0)),h.setIndex(C),h[M6]("position",new Yv.Float32BufferAttribute(w,3)),h[M6]("uv",new Yv.Float32BufferAttribute(R,2)),h.computeVertexNormals();function L(q,z){var j=typeof z=="function"?z:function(){return z},F=q.map(function(V){return V.map(function(Y){var J=Kl(Y,2),ne=J[0],oe=J[1];return kK(oe,ne,j(ne,oe))})});return F_(F)}function O(){for(var q=L(v,n),z=q.vertices,j=q.holes,F=L(v,r),V=F.vertices,Y=ug([V,z]),J=Math.round(V.length/3),ne=new Set(j),oe=0,te=[],Q=0;Q=0;Te--)for(var ce=0;ce1&&arguments[1]!==void 0?arguments[1]:!0;return{indices:z?x.indices:x.indices.slice().reverse(),vertices:L([x.points],q).vertices,uvs:S}}return h}return RK(e,i),CK(e)})(Yv.BufferGeometry);function kK(i,e){var t=arguments.length>2&&arguments[2]!==void 0?arguments[2]:0,n=(90-i)*Math.PI/180,r=(90-e)*Math.PI/180;return[t*Math.sin(n)*Math.cos(r),t*Math.cos(n),t*Math.sin(n)*Math.sin(r)]}function OT(i,e){(e==null||e>i.length)&&(e=i.length);for(var t=0,n=Array(e);t0&&arguments[0]!==void 0?arguments[0]:[],e=arguments.length>1&&arguments[1]!==void 0?arguments[1]:[],t=arguments.length>2&&arguments[2]!==void 0?arguments[2]:!0,n=arguments.length>3&&arguments[3]!==void 0?arguments[3]:!1,r=(e instanceof Array?e.length?e:[void 0]:[e]).map(function(l){return{keyAccessor:l,isProp:!(l instanceof Function)}}),s=i.reduce(function(l,u){var h=l,m=u;return r.forEach(function(v,x){var S=v.keyAccessor,w=v.isProp,R;if(w){var C=m,E=C[S],B=WK(C,[S].map(KK));R=E,m=B}else R=S(m,x);x+11&&arguments[1]!==void 0?arguments[1]:1;h===r.length?Object.keys(u).forEach(function(m){return u[m]=t(u[m])}):Object.values(u).forEach(function(m){return l(m,h+1)})})(s);var a=s;return n&&(a=[],(function l(u){var h=arguments.length>1&&arguments[1]!==void 0?arguments[1]:[];h.length===r.length?a.push({keys:h,vals:u}):Object.entries(u).forEach(function(m){var v=XK(m,2),x=v[0],S=v[1];return l(S,[].concat(YK(h),[x]))})})(s),e instanceof Array&&e.length===0&&a.length===1&&(a[0].keys=[])),a}),Ti=(function(i){i=i||{};var e=typeof i<"u"?i:{},t={},n;for(n in e)e.hasOwnProperty(n)&&(t[n]=e[n]);var r="";function s(Je){return e.locateFile?e.locateFile(Je,r):r+Je}var a;typeof document<"u"&&document.currentScript&&(r=document.currentScript.src),r.indexOf("blob:")!==0?r=r.substr(0,r.lastIndexOf("/")+1):r="",a=function(mt,kt,at){var d=new XMLHttpRequest;d.open("GET",mt,!0),d.responseType="arraybuffer",d.onload=function(){if(d.status==200||d.status==0&&d.response){kt(d.response);return}var $n=It(mt);if($n){kt($n.buffer);return}at()},d.onerror=at,d.send(null)};var l=e.print||console.log.bind(console),u=e.printErr||console.warn.bind(console);for(n in t)t.hasOwnProperty(n)&&(e[n]=t[n]);t=null,e.arguments&&e.arguments;var h=0,m=function(Je){h=Je},v=function(){return h},x=8;function S(Je,mt,kt,at){switch(kt=kt||"i8",kt.charAt(kt.length-1)==="*"&&(kt="i32"),kt){case"i1":J[Je>>0]=mt;break;case"i8":J[Je>>0]=mt;break;case"i16":oe[Je>>1]=mt;break;case"i32":te[Je>>2]=mt;break;case"i64":Fe=[mt>>>0,(Se=mt,+rt(Se)>=1?Se>0?(ft(+zt(Se/4294967296),4294967295)|0)>>>0:~~+fe((Se-+(~~Se>>>0))/4294967296)>>>0:0)],te[Je>>2]=Fe[0],te[Je+4>>2]=Fe[1];break;case"float":Q[Je>>2]=mt;break;case"double":ue[Je>>3]=mt;break;default:Jr("invalid type for setValue: "+kt)}}function w(Je,mt,kt){switch(mt=mt||"i8",mt.charAt(mt.length-1)==="*"&&(mt="i32"),mt){case"i1":return J[Je>>0];case"i8":return J[Je>>0];case"i16":return oe[Je>>1];case"i32":return te[Je>>2];case"i64":return te[Je>>2];case"float":return Q[Je>>2];case"double":return ue[Je>>3];default:Jr("invalid type for getValue: "+mt)}return null}var R=!1;function C(Je,mt){Je||Jr("Assertion failed: "+mt)}function E(Je){var mt=e["_"+Je];return C(mt,"Cannot call unknown function "+Je+", make sure it is exported"),mt}function B(Je,mt,kt,at,d){var ee={string:function(Fn){var cs=0;if(Fn!=null&&Fn!==0){var Ma=(Fn.length<<2)+1;cs=it(Ma),j(Fn,cs,Ma)}return cs},array:function(Fn){var cs=it(Fn.length);return F(Fn,cs),cs}};function $n(Fn){return mt==="string"?q(Fn):mt==="boolean"?!!Fn:Fn}var Gn=E(Je),Xn=[],un=0;if(at)for(var qn=0;qn=at);)++d;if(d-mt>16&&Je.subarray&&O)return O.decode(Je.subarray(mt,d));for(var ee="";mt>10,56320|un&1023)}}return ee}function q(Je,mt){return Je?G(ne,Je,mt):""}function z(Je,mt,kt,at){if(!(at>0))return 0;for(var d=kt,ee=kt+at-1,$n=0;$n=55296&&Gn<=57343){var Xn=Je.charCodeAt(++$n);Gn=65536+((Gn&1023)<<10)|Xn&1023}if(Gn<=127){if(kt>=ee)break;mt[kt++]=Gn}else if(Gn<=2047){if(kt+1>=ee)break;mt[kt++]=192|Gn>>6,mt[kt++]=128|Gn&63}else if(Gn<=65535){if(kt+2>=ee)break;mt[kt++]=224|Gn>>12,mt[kt++]=128|Gn>>6&63,mt[kt++]=128|Gn&63}else{if(kt+3>=ee)break;mt[kt++]=240|Gn>>18,mt[kt++]=128|Gn>>12&63,mt[kt++]=128|Gn>>6&63,mt[kt++]=128|Gn&63}}return mt[kt]=0,kt-d}function j(Je,mt,kt){return z(Je,ne,mt,kt)}typeof TextDecoder<"u"&&new TextDecoder("utf-16le");function F(Je,mt){J.set(Je,mt)}function V(Je,mt){return Je%mt>0&&(Je+=mt-Je%mt),Je}var Y,J,ne,oe,te,Q,ue;function he(Je){Y=Je,e.HEAP8=J=new Int8Array(Je),e.HEAP16=oe=new Int16Array(Je),e.HEAP32=te=new Int32Array(Je),e.HEAPU8=ne=new Uint8Array(Je),e.HEAPU16=new Uint16Array(Je),e.HEAPU32=new Uint32Array(Je),e.HEAPF32=Q=new Float32Array(Je),e.HEAPF64=ue=new Float64Array(Je)}var we=5271536,Te=28624,ce=e.TOTAL_MEMORY||33554432;e.buffer?Y=e.buffer:Y=new ArrayBuffer(ce),ce=Y.byteLength,he(Y),te[Te>>2]=we;function be(Je){for(;Je.length>0;){var mt=Je.shift();if(typeof mt=="function"){mt();continue}var kt=mt.func;typeof kt=="number"?mt.arg===void 0?e.dynCall_v(kt):e.dynCall_vi(kt,mt.arg):kt(mt.arg===void 0?null:mt.arg)}}var ze=[],Ee=[],Ge=[],xe=[];function Le(){if(e.preRun)for(typeof e.preRun=="function"&&(e.preRun=[e.preRun]);e.preRun.length;)Ft(e.preRun.shift());be(ze)}function ct(){be(Ee)}function _t(){be(Ge)}function xt(){if(e.postRun)for(typeof e.postRun=="function"&&(e.postRun=[e.postRun]);e.postRun.length;)Ye(e.postRun.shift());be(xe)}function Ft(Je){ze.unshift(Je)}function Ye(Je){xe.unshift(Je)}var rt=Math.abs,fe=Math.ceil,zt=Math.floor,ft=Math.min,Dt=0,pt=null;function en(Je){Dt++,e.monitorRunDependencies&&e.monitorRunDependencies(Dt)}function Re(Je){if(Dt--,e.monitorRunDependencies&&e.monitorRunDependencies(Dt),Dt==0&&pt){var mt=pt;pt=null,mt()}}e.preloadedImages={},e.preloadedAudios={};var re=null,$="data:application/octet-stream;base64,";function se(Je){return String.prototype.startsWith?Je.startsWith($):Je.indexOf($)===0}var Se,Fe;re="data:application/octet-stream;base64,AAAAAAAAAAAAAAAAAQAAAAIAAAADAAAABAAAAAUAAAAGAAAAAQAAAAQAAAADAAAABgAAAAUAAAACAAAAAAAAAAIAAAADAAAAAQAAAAQAAAAGAAAAAAAAAAUAAAADAAAABgAAAAQAAAAFAAAAAAAAAAEAAAACAAAABAAAAAUAAAAGAAAAAAAAAAIAAAADAAAAAQAAAAUAAAACAAAAAAAAAAEAAAADAAAABgAAAAQAAAAGAAAAAAAAAAUAAAACAAAAAQAAAAQAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAEAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAIAAAADAAAAAAAAAAAAAAACAAAAAAAAAAEAAAADAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAYAAAAAAAAABQAAAAAAAAAAAAAABAAAAAUAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAYAAAAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAgAAAAMAAAAEAAAABQAAAAYAAAABAAAAAgAAAAMAAAAEAAAABQAAAAYAAAAAAAAAAgAAAAMAAAAEAAAABQAAAAYAAAAAAAAAAQAAAAMAAAAEAAAABQAAAAYAAAAAAAAAAQAAAAIAAAAEAAAABQAAAAYAAAAAAAAAAQAAAAIAAAADAAAABQAAAAYAAAAAAAAAAQAAAAIAAAADAAAABAAAAAYAAAAAAAAAAQAAAAIAAAADAAAABAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAwAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAgAAAAIAAAAAAAAAAAAAAAYAAAAAAAAAAwAAAAIAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAFAAAABAAAAAAAAAABAAAAAAAAAAAAAAAFAAAABQAAAAAAAAAAAAAAAAAAAAYAAAAAAAAABAAAAAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAFAAAAAgAAAAQAAAADAAAACAAAAAEAAAAHAAAABgAAAAkAAAAAAAAAAwAAAAIAAAACAAAABgAAAAoAAAALAAAAAAAAAAEAAAAFAAAAAwAAAA0AAAABAAAABwAAAAQAAAAMAAAAAAAAAAQAAAB/AAAADwAAAAgAAAADAAAAAAAAAAwAAAAFAAAAAgAAABIAAAAKAAAACAAAAAAAAAAQAAAABgAAAA4AAAALAAAAEQAAAAEAAAAJAAAAAgAAAAcAAAAVAAAACQAAABMAAAADAAAADQAAAAEAAAAIAAAABQAAABYAAAAQAAAABAAAAAAAAAAPAAAACQAAABMAAAAOAAAAFAAAAAEAAAAHAAAABgAAAAoAAAALAAAAGAAAABcAAAAFAAAAAgAAABIAAAALAAAAEQAAABcAAAAZAAAAAgAAAAYAAAAKAAAADAAAABwAAAANAAAAGgAAAAQAAAAPAAAAAwAAAA0AAAAaAAAAFQAAAB0AAAADAAAADAAAAAcAAAAOAAAAfwAAABEAAAAbAAAACQAAABQAAAAGAAAADwAAABYAAAAcAAAAHwAAAAQAAAAIAAAADAAAABAAAAASAAAAIQAAAB4AAAAIAAAABQAAABYAAAARAAAACwAAAA4AAAAGAAAAIwAAABkAAAAbAAAAEgAAABgAAAAeAAAAIAAAAAUAAAAKAAAAEAAAABMAAAAiAAAAFAAAACQAAAAHAAAAFQAAAAkAAAAUAAAADgAAABMAAAAJAAAAKAAAABsAAAAkAAAAFQAAACYAAAATAAAAIgAAAA0AAAAdAAAABwAAABYAAAAQAAAAKQAAACEAAAAPAAAACAAAAB8AAAAXAAAAGAAAAAsAAAAKAAAAJwAAACUAAAAZAAAAGAAAAH8AAAAgAAAAJQAAAAoAAAAXAAAAEgAAABkAAAAXAAAAEQAAAAsAAAAtAAAAJwAAACMAAAAaAAAAKgAAAB0AAAArAAAADAAAABwAAAANAAAAGwAAACgAAAAjAAAALgAAAA4AAAAUAAAAEQAAABwAAAAfAAAAKgAAACwAAAAMAAAADwAAABoAAAAdAAAAKwAAACYAAAAvAAAADQAAABoAAAAVAAAAHgAAACAAAAAwAAAAMgAAABAAAAASAAAAIQAAAB8AAAApAAAALAAAADUAAAAPAAAAFgAAABwAAAAgAAAAHgAAABgAAAASAAAANAAAADIAAAAlAAAAIQAAAB4AAAAxAAAAMAAAABYAAAAQAAAAKQAAACIAAAATAAAAJgAAABUAAAA2AAAAJAAAADMAAAAjAAAALgAAAC0AAAA4AAAAEQAAABsAAAAZAAAAJAAAABQAAAAiAAAAEwAAADcAAAAoAAAANgAAACUAAAAnAAAANAAAADkAAAAYAAAAFwAAACAAAAAmAAAAfwAAACIAAAAzAAAAHQAAAC8AAAAVAAAAJwAAACUAAAAZAAAAFwAAADsAAAA5AAAALQAAACgAAAAbAAAAJAAAABQAAAA8AAAALgAAADcAAAApAAAAMQAAADUAAAA9AAAAFgAAACEAAAAfAAAAKgAAADoAAAArAAAAPgAAABwAAAAsAAAAGgAAACsAAAA+AAAALwAAAEAAAAAaAAAAKgAAAB0AAAAsAAAANQAAADoAAABBAAAAHAAAAB8AAAAqAAAALQAAACcAAAAjAAAAGQAAAD8AAAA7AAAAOAAAAC4AAAA8AAAAOAAAAEQAAAAbAAAAKAAAACMAAAAvAAAAJgAAACsAAAAdAAAARQAAADMAAABAAAAAMAAAADEAAAAeAAAAIQAAAEMAAABCAAAAMgAAADEAAAB/AAAAPQAAAEIAAAAhAAAAMAAAACkAAAAyAAAAMAAAACAAAAAeAAAARgAAAEMAAAA0AAAAMwAAAEUAAAA2AAAARwAAACYAAAAvAAAAIgAAADQAAAA5AAAARgAAAEoAAAAgAAAAJQAAADIAAAA1AAAAPQAAAEEAAABLAAAAHwAAACkAAAAsAAAANgAAAEcAAAA3AAAASQAAACIAAAAzAAAAJAAAADcAAAAoAAAANgAAACQAAABIAAAAPAAAAEkAAAA4AAAARAAAAD8AAABNAAAAIwAAAC4AAAAtAAAAOQAAADsAAABKAAAATgAAACUAAAAnAAAANAAAADoAAAB/AAAAPgAAAEwAAAAsAAAAQQAAACoAAAA7AAAAPwAAAE4AAABPAAAAJwAAAC0AAAA5AAAAPAAAAEgAAABEAAAAUAAAACgAAAA3AAAALgAAAD0AAAA1AAAAMQAAACkAAABRAAAASwAAAEIAAAA+AAAAKwAAADoAAAAqAAAAUgAAAEAAAABMAAAAPwAAAH8AAAA4AAAALQAAAE8AAAA7AAAATQAAAEAAAAAvAAAAPgAAACsAAABUAAAARQAAAFIAAABBAAAAOgAAADUAAAAsAAAAVgAAAEwAAABLAAAAQgAAAEMAAABRAAAAVQAAADEAAAAwAAAAPQAAAEMAAABCAAAAMgAAADAAAABXAAAAVQAAAEYAAABEAAAAOAAAADwAAAAuAAAAWgAAAE0AAABQAAAARQAAADMAAABAAAAALwAAAFkAAABHAAAAVAAAAEYAAABDAAAANAAAADIAAABTAAAAVwAAAEoAAABHAAAAWQAAAEkAAABbAAAAMwAAAEUAAAA2AAAASAAAAH8AAABJAAAANwAAAFAAAAA8AAAAWAAAAEkAAABbAAAASAAAAFgAAAA2AAAARwAAADcAAABKAAAATgAAAFMAAABcAAAANAAAADkAAABGAAAASwAAAEEAAAA9AAAANQAAAF4AAABWAAAAUQAAAEwAAABWAAAAUgAAAGAAAAA6AAAAQQAAAD4AAABNAAAAPwAAAEQAAAA4AAAAXQAAAE8AAABaAAAATgAAAEoAAAA7AAAAOQAAAF8AAABcAAAATwAAAE8AAABOAAAAPwAAADsAAABdAAAAXwAAAE0AAABQAAAARAAAAEgAAAA8AAAAYwAAAFoAAABYAAAAUQAAAFUAAABeAAAAZQAAAD0AAABCAAAASwAAAFIAAABgAAAAVAAAAGIAAAA+AAAATAAAAEAAAABTAAAAfwAAAEoAAABGAAAAZAAAAFcAAABcAAAAVAAAAEUAAABSAAAAQAAAAGEAAABZAAAAYgAAAFUAAABXAAAAZQAAAGYAAABCAAAAQwAAAFEAAABWAAAATAAAAEsAAABBAAAAaAAAAGAAAABeAAAAVwAAAFMAAABmAAAAZAAAAEMAAABGAAAAVQAAAFgAAABIAAAAWwAAAEkAAABjAAAAUAAAAGkAAABZAAAAYQAAAFsAAABnAAAARQAAAFQAAABHAAAAWgAAAE0AAABQAAAARAAAAGoAAABdAAAAYwAAAFsAAABJAAAAWQAAAEcAAABpAAAAWAAAAGcAAABcAAAAUwAAAE4AAABKAAAAbAAAAGQAAABfAAAAXQAAAE8AAABaAAAATQAAAG0AAABfAAAAagAAAF4AAABWAAAAUQAAAEsAAABrAAAAaAAAAGUAAABfAAAAXAAAAE8AAABOAAAAbQAAAGwAAABdAAAAYAAAAGgAAABiAAAAbgAAAEwAAABWAAAAUgAAAGEAAAB/AAAAYgAAAFQAAABnAAAAWQAAAG8AAABiAAAAbgAAAGEAAABvAAAAUgAAAGAAAABUAAAAYwAAAFAAAABpAAAAWAAAAGoAAABaAAAAcQAAAGQAAABmAAAAUwAAAFcAAABsAAAAcgAAAFwAAABlAAAAZgAAAGsAAABwAAAAUQAAAFUAAABeAAAAZgAAAGUAAABXAAAAVQAAAHIAAABwAAAAZAAAAGcAAABbAAAAYQAAAFkAAAB0AAAAaQAAAG8AAABoAAAAawAAAG4AAABzAAAAVgAAAF4AAABgAAAAaQAAAFgAAABnAAAAWwAAAHEAAABjAAAAdAAAAGoAAABdAAAAYwAAAFoAAAB1AAAAbQAAAHEAAABrAAAAfwAAAGUAAABeAAAAcwAAAGgAAABwAAAAbAAAAGQAAABfAAAAXAAAAHYAAAByAAAAbQAAAG0AAABsAAAAXQAAAF8AAAB1AAAAdgAAAGoAAABuAAAAYgAAAGgAAABgAAAAdwAAAG8AAABzAAAAbwAAAGEAAABuAAAAYgAAAHQAAABnAAAAdwAAAHAAAABrAAAAZgAAAGUAAAB4AAAAcwAAAHIAAABxAAAAYwAAAHQAAABpAAAAdQAAAGoAAAB5AAAAcgAAAHAAAABkAAAAZgAAAHYAAAB4AAAAbAAAAHMAAABuAAAAawAAAGgAAAB4AAAAdwAAAHAAAAB0AAAAZwAAAHcAAABvAAAAcQAAAGkAAAB5AAAAdQAAAH8AAABtAAAAdgAAAHEAAAB5AAAAagAAAHYAAAB4AAAAbAAAAHIAAAB1AAAAeQAAAG0AAAB3AAAAbwAAAHMAAABuAAAAeQAAAHQAAAB4AAAAeAAAAHMAAAByAAAAcAAAAHkAAAB3AAAAdgAAAHkAAAB0AAAAeAAAAHcAAAB1AAAAcQAAAHYAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAABAAAABQAAAAEAAAAAAAAAAAAAAAEAAAAAAAAAAQAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAACAAAABQAAAAEAAAAAAAAA/////wEAAAAAAAAAAwAAAAQAAAACAAAAAAAAAAAAAAABAAAAAAAAAAEAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAMAAAAFAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAAAAAAFAAAAAQAAAAAAAAAAAAAAAQAAAAMAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAEAAAADAAAAAAAAAAAAAAABAAAAAAAAAAMAAAADAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAADAAAABQAAAAEAAAAAAAAAAAAAAAEAAAAAAAAAAQAAAAAAAAABAAAAAAAAAP////8DAAAAAAAAAAUAAAACAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAEAAAABQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAMAAAADAAAAAwAAAAMAAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAMAAAAFAAAABQAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAADAAAAAwAAAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAFAAAABQAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAQAAAAAAAAABAAAAAAAAAAMAAAADAAAAAwAAAAAAAAADAAAAAAAAAAAAAAD/////AwAAAAAAAAAFAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAADAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAAAAAAAAAAAAAEAAAAAAAAAAQAAAAAAAAABAAAAAAAAAAAAAAABAAAAAwAAAAAAAAAAAAAAAQAAAAAAAAADAAAAAwAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAMAAAADAAAAAwAAAAMAAAAAAAAAAwAAAAAAAAAAAAAAAQAAAAMAAAAAAAAAAAAAAAEAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAADAAAAAAAAAAAAAAADAAAAAAAAAAMAAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAMAAAAAAAAAAAAAAAMAAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAMAAAADAAAAAAAAAP////8DAAAAAAAAAAUAAAACAAAAAAAAAAAAAAADAAAAAAAAAAAAAAADAAAAAwAAAAAAAAAAAAAAAwAAAAAAAAAAAAAAAwAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAUAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAFAAAABQAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAwAAAAAAAAAAAAAAAwAAAAMAAAAAAAAAAAAAAAAAAAADAAAAAAAAAAMAAAAAAAAAAAAAAAMAAAADAAAAAwAAAAAAAAADAAAAAAAAAAAAAAADAAAAAwAAAAMAAAAAAAAAAwAAAAAAAAAAAAAA/////wMAAAAAAAAABQAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAAAAAAAAwAAAAAAAAADAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAAAAAAAAAAAAAMAAAAAAAAAAwAAAAAAAAADAAAAAAAAAAMAAAADAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAADAAAAAAAAAAMAAAAAAAAAAAAAAAMAAAAAAAAAAAAAAAMAAAADAAAAAAAAAAMAAAADAAAAAwAAAAAAAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAMAAAAAAAAAAwAAAAAAAAAAAAAA/////wMAAAAAAAAABQAAAAIAAAAAAAAAAAAAAAMAAAADAAAAAwAAAAMAAAADAAAAAAAAAAAAAAADAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAwAAAAAAAAADAAAAAAAAAAMAAAADAAAAAwAAAAMAAAAAAAAAAwAAAAAAAAD/////AwAAAAAAAAAFAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAAAAAAAADAAAAAAAAAAMAAAADAAAAAwAAAAAAAAADAAAAAAAAAAAAAAADAAAAAAAAAAAAAAAAAAAAAwAAAAMAAAAAAAAAAwAAAAAAAAAAAAAAAwAAAAMAAAAAAAAAAAAAAAMAAAADAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAAAAAAAADAAAAAwAAAAAAAAAAAAAAAAAAAAMAAAAAAAAAAAAAAAMAAAADAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAADAAAAAAAAAAAAAAD/////AwAAAAAAAAAFAAAAAgAAAAAAAAAAAAAAAwAAAAMAAAADAAAAAAAAAAAAAAADAAAAAAAAAAMAAAADAAAAAwAAAAAAAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAMAAAAAAAAAAAAAAAMAAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAMAAAADAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAAFAAAAAAAAAAAAAAADAAAAAwAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAADAAAAAQAAAAAAAAABAAAAAAAAAAAAAAABAAAAAwAAAAEAAAAAAAAAAQAAAAAAAAAAAAAAAwAAAAAAAAADAAAAAAAAAAMAAAAAAAAAAAAAAAMAAAAAAAAAAwAAAAAAAAADAAAAAAAAAP////8DAAAAAAAAAAUAAAACAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAAAAAAAAwAAAAMAAAAAAAAAAAAAAAAAAAADAAAAAAAAAAMAAAAAAAAAAAAAAAMAAAAAAAAAAAAAAAMAAAADAAAAAAAAAAAAAAADAAAAAwAAAAMAAAADAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAAAUAAAAAAAAAAAAAAAMAAAADAAAAAwAAAAMAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAwAAAAMAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAAFAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAFAAAABQAAAAAAAAAAAAAAAAAAAAMAAAAAAAAAAAAAAAMAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAMAAAAAAAAAAwAAAAAAAAAAAAAA/////wMAAAAAAAAABQAAAAIAAAAAAAAAAAAAAAMAAAADAAAAAwAAAAAAAAAAAAAAAwAAAAAAAAAFAAAAAAAAAAAAAAAFAAAABQAAAAAAAAAAAAAAAAAAAAEAAAADAAAAAQAAAAAAAAABAAAAAAAAAAMAAAADAAAAAwAAAAAAAAAAAAAAAwAAAAAAAAADAAAAAwAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAADAAAAAQAAAAAAAAABAAAAAAAAAAMAAAADAAAAAwAAAAMAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAEAAAAAAAAAAwAAAAUAAAABAAAAAAAAAP////8DAAAAAAAAAAUAAAACAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAFAAAABQAAAAAAAAAAAAAAAAAAAAEAAAAAAAAABAAAAAUAAAABAAAAAAAAAAMAAAADAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAAAUAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAIAAAAFAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAEAAAADAAAAAQAAAAAAAAABAAAAAAAAAAUAAAAAAAAAAAAAAAUAAAAFAAAAAAAAAAAAAAD/////AQAAAAAAAAADAAAABAAAAAIAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAUAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAFAAAAAAAAAAAAAAAFAAAABQAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAQAAAAUAAAABAAAAAAAAAAAAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAEAAAD//////////wEAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAADAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAsAAAACAAAAAAAAAAAAAAABAAAAAgAAAAYAAAAEAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAKAAAAAgAAAAAAAAAAAAAAAQAAAAEAAAAFAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAABAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAsAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAACAAAAAAAAAAAAAAABAAAAAwAAAAcAAAAGAAAAAQAAAAAAAAABAAAAAAAAAAAAAAAAAAAABwAAAAEAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAADAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAABAAAAAQAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAADgAAAAIAAAAAAAAAAAAAAAEAAAAAAAAACQAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAMAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAsAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAIAAAAAAAAAAAAAAAEAAAAEAAAACAAAAAoAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAALAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAACQAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAgAAAAAAAAAAAAAAAQAAAAsAAAAPAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAOAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAEAAAAAAAAAAQAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAIAAAAAQAAAAAAAAABAAAAAAAAAAAAAAAAAAAABQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAgAAAAAAAAAAAAAAAQAAAAwAAAAQAAAADAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAPAAAAAAAAAAEAAAABAAAAAAAAAAAAAAAAAAAADwAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAACAAAAAAAAAAAAAAABAAAACgAAABMAAAAIAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkAAAABAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAEQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAwAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAAAABAAAAAQAAAAAAAAAAAAAAAAAAAA8AAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAQAAAAAQAAAAAAAAABAAAAAAAAAAAAAAAAAAAACQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAIAAAAAAAAAAAAAAAEAAAANAAAAEQAAAA0AAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAARAAAAAQAAAAAAAAABAAAAAAAAAAAAAAAAAAAAEwAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAA4AAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAAAAAAEAAAABAAAAAAAAAAAAAAAAAAAAEQAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAA0AAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAARAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkAAAACAAAAAAAAAAAAAAABAAAADgAAABIAAAAPAAAAAQAAAAAAAAABAAAAAAAAAAAAAAAAAAAADwAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABIAAAAAAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAASAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAEwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAABEAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEgAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAABIAAAABAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAATAAAAAgAAAAAAAAAAAAAAAQAAAP//////////EwAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAQAAAAAAAAABAAAAAAAAAAAAAAAAAAAAEgAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAASAAAAAAAAABgAAAAAAAAAIQAAAAAAAAAeAAAAAAAAACAAAAADAAAAMQAAAAEAAAAwAAAAAwAAADIAAAADAAAACAAAAAAAAAAFAAAABQAAAAoAAAAFAAAAFgAAAAAAAAAQAAAAAAAAABIAAAAAAAAAKQAAAAEAAAAhAAAAAAAAAB4AAAAAAAAABAAAAAAAAAAAAAAABQAAAAIAAAAFAAAADwAAAAEAAAAIAAAAAAAAAAUAAAAFAAAAHwAAAAEAAAAWAAAAAAAAABAAAAAAAAAAAgAAAAAAAAAGAAAAAAAAAA4AAAAAAAAACgAAAAAAAAALAAAAAAAAABEAAAADAAAAGAAAAAEAAAAXAAAAAwAAABkAAAADAAAAAAAAAAAAAAABAAAABQAAAAkAAAAFAAAABQAAAAAAAAACAAAAAAAAAAYAAAAAAAAAEgAAAAEAAAAKAAAAAAAAAAsAAAAAAAAABAAAAAEAAAADAAAABQAAAAcAAAAFAAAACAAAAAEAAAAAAAAAAAAAAAEAAAAFAAAAEAAAAAEAAAAFAAAAAAAAAAIAAAAAAAAABwAAAAAAAAAVAAAAAAAAACYAAAAAAAAACQAAAAAAAAATAAAAAAAAACIAAAADAAAADgAAAAEAAAAUAAAAAwAAACQAAAADAAAAAwAAAAAAAAANAAAABQAAAB0AAAAFAAAAAQAAAAAAAAAHAAAAAAAAABUAAAAAAAAABgAAAAEAAAAJAAAAAAAAABMAAAAAAAAABAAAAAIAAAAMAAAABQAAABoAAAAFAAAAAAAAAAEAAAADAAAAAAAAAA0AAAAFAAAAAgAAAAEAAAABAAAAAAAAAAcAAAAAAAAAGgAAAAAAAAAqAAAAAAAAADoAAAAAAAAAHQAAAAAAAAArAAAAAAAAAD4AAAADAAAAJgAAAAEAAAAvAAAAAwAAAEAAAAADAAAADAAAAAAAAAAcAAAABQAAACwAAAAFAAAADQAAAAAAAAAaAAAAAAAAACoAAAAAAAAAFQAAAAEAAAAdAAAAAAAAACsAAAAAAAAABAAAAAMAAAAPAAAABQAAAB8AAAAFAAAAAwAAAAEAAAAMAAAAAAAAABwAAAAFAAAABwAAAAEAAAANAAAAAAAAABoAAAAAAAAAHwAAAAAAAAApAAAAAAAAADEAAAAAAAAALAAAAAAAAAA1AAAAAAAAAD0AAAADAAAAOgAAAAEAAABBAAAAAwAAAEsAAAADAAAADwAAAAAAAAAWAAAABQAAACEAAAAFAAAAHAAAAAAAAAAfAAAAAAAAACkAAAAAAAAAKgAAAAEAAAAsAAAAAAAAADUAAAAAAAAABAAAAAQAAAAIAAAABQAAABAAAAAFAAAADAAAAAEAAAAPAAAAAAAAABYAAAAFAAAAGgAAAAEAAAAcAAAAAAAAAB8AAAAAAAAAMgAAAAAAAAAwAAAAAAAAADEAAAADAAAAIAAAAAAAAAAeAAAAAwAAACEAAAADAAAAGAAAAAMAAAASAAAAAwAAABAAAAADAAAARgAAAAAAAABDAAAAAAAAAEIAAAADAAAANAAAAAMAAAAyAAAAAAAAADAAAAAAAAAAJQAAAAMAAAAgAAAAAAAAAB4AAAADAAAAUwAAAAAAAABXAAAAAwAAAFUAAAADAAAASgAAAAMAAABGAAAAAAAAAEMAAAAAAAAAOQAAAAEAAAA0AAAAAwAAADIAAAAAAAAAGQAAAAAAAAAXAAAAAAAAABgAAAADAAAAEQAAAAAAAAALAAAAAwAAAAoAAAADAAAADgAAAAMAAAAGAAAAAwAAAAIAAAADAAAALQAAAAAAAAAnAAAAAAAAACUAAAADAAAAIwAAAAMAAAAZAAAAAAAAABcAAAAAAAAAGwAAAAMAAAARAAAAAAAAAAsAAAADAAAAPwAAAAAAAAA7AAAAAwAAADkAAAADAAAAOAAAAAMAAAAtAAAAAAAAACcAAAAAAAAALgAAAAMAAAAjAAAAAwAAABkAAAAAAAAAJAAAAAAAAAAUAAAAAAAAAA4AAAADAAAAIgAAAAAAAAATAAAAAwAAAAkAAAADAAAAJgAAAAMAAAAVAAAAAwAAAAcAAAADAAAANwAAAAAAAAAoAAAAAAAAABsAAAADAAAANgAAAAMAAAAkAAAAAAAAABQAAAAAAAAAMwAAAAMAAAAiAAAAAAAAABMAAAADAAAASAAAAAAAAAA8AAAAAwAAAC4AAAADAAAASQAAAAMAAAA3AAAAAAAAACgAAAAAAAAARwAAAAMAAAA2AAAAAwAAACQAAAAAAAAAQAAAAAAAAAAvAAAAAAAAACYAAAADAAAAPgAAAAAAAAArAAAAAwAAAB0AAAADAAAAOgAAAAMAAAAqAAAAAwAAABoAAAADAAAAVAAAAAAAAABFAAAAAAAAADMAAAADAAAAUgAAAAMAAABAAAAAAAAAAC8AAAAAAAAATAAAAAMAAAA+AAAAAAAAACsAAAADAAAAYQAAAAAAAABZAAAAAwAAAEcAAAADAAAAYgAAAAMAAABUAAAAAAAAAEUAAAAAAAAAYAAAAAMAAABSAAAAAwAAAEAAAAAAAAAASwAAAAAAAABBAAAAAAAAADoAAAADAAAAPQAAAAAAAAA1AAAAAwAAACwAAAADAAAAMQAAAAMAAAApAAAAAwAAAB8AAAADAAAAXgAAAAAAAABWAAAAAAAAAEwAAAADAAAAUQAAAAMAAABLAAAAAAAAAEEAAAAAAAAAQgAAAAMAAAA9AAAAAAAAADUAAAADAAAAawAAAAAAAABoAAAAAwAAAGAAAAADAAAAZQAAAAMAAABeAAAAAAAAAFYAAAAAAAAAVQAAAAMAAABRAAAAAwAAAEsAAAAAAAAAOQAAAAAAAAA7AAAAAAAAAD8AAAADAAAASgAAAAAAAABOAAAAAwAAAE8AAAADAAAAUwAAAAMAAABcAAAAAwAAAF8AAAADAAAAJQAAAAAAAAAnAAAAAwAAAC0AAAADAAAANAAAAAAAAAA5AAAAAAAAADsAAAAAAAAARgAAAAMAAABKAAAAAAAAAE4AAAADAAAAGAAAAAAAAAAXAAAAAwAAABkAAAADAAAAIAAAAAMAAAAlAAAAAAAAACcAAAADAAAAMgAAAAMAAAA0AAAAAAAAADkAAAAAAAAALgAAAAAAAAA8AAAAAAAAAEgAAAADAAAAOAAAAAAAAABEAAAAAwAAAFAAAAADAAAAPwAAAAMAAABNAAAAAwAAAFoAAAADAAAAGwAAAAAAAAAoAAAAAwAAADcAAAADAAAAIwAAAAAAAAAuAAAAAAAAADwAAAAAAAAALQAAAAMAAAA4AAAAAAAAAEQAAAADAAAADgAAAAAAAAAUAAAAAwAAACQAAAADAAAAEQAAAAMAAAAbAAAAAAAAACgAAAADAAAAGQAAAAMAAAAjAAAAAAAAAC4AAAAAAAAARwAAAAAAAABZAAAAAAAAAGEAAAADAAAASQAAAAAAAABbAAAAAwAAAGcAAAADAAAASAAAAAMAAABYAAAAAwAAAGkAAAADAAAAMwAAAAAAAABFAAAAAwAAAFQAAAADAAAANgAAAAAAAABHAAAAAAAAAFkAAAAAAAAANwAAAAMAAABJAAAAAAAAAFsAAAADAAAAJgAAAAAAAAAvAAAAAwAAAEAAAAADAAAAIgAAAAMAAAAzAAAAAAAAAEUAAAADAAAAJAAAAAMAAAA2AAAAAAAAAEcAAAAAAAAAYAAAAAAAAABoAAAAAAAAAGsAAAADAAAAYgAAAAAAAABuAAAAAwAAAHMAAAADAAAAYQAAAAMAAABvAAAAAwAAAHcAAAADAAAATAAAAAAAAABWAAAAAwAAAF4AAAADAAAAUgAAAAAAAABgAAAAAAAAAGgAAAAAAAAAVAAAAAMAAABiAAAAAAAAAG4AAAADAAAAOgAAAAAAAABBAAAAAwAAAEsAAAADAAAAPgAAAAMAAABMAAAAAAAAAFYAAAADAAAAQAAAAAMAAABSAAAAAAAAAGAAAAAAAAAAVQAAAAAAAABXAAAAAAAAAFMAAAADAAAAZQAAAAAAAABmAAAAAwAAAGQAAAADAAAAawAAAAMAAABwAAAAAwAAAHIAAAADAAAAQgAAAAAAAABDAAAAAwAAAEYAAAADAAAAUQAAAAAAAABVAAAAAAAAAFcAAAAAAAAAXgAAAAMAAABlAAAAAAAAAGYAAAADAAAAMQAAAAAAAAAwAAAAAwAAADIAAAADAAAAPQAAAAMAAABCAAAAAAAAAEMAAAADAAAASwAAAAMAAABRAAAAAAAAAFUAAAAAAAAAXwAAAAAAAABcAAAAAAAAAFMAAAAAAAAATwAAAAAAAABOAAAAAAAAAEoAAAADAAAAPwAAAAEAAAA7AAAAAwAAADkAAAADAAAAbQAAAAAAAABsAAAAAAAAAGQAAAAFAAAAXQAAAAEAAABfAAAAAAAAAFwAAAAAAAAATQAAAAEAAABPAAAAAAAAAE4AAAAAAAAAdQAAAAQAAAB2AAAABQAAAHIAAAAFAAAAagAAAAEAAABtAAAAAAAAAGwAAAAAAAAAWgAAAAEAAABdAAAAAQAAAF8AAAAAAAAAWgAAAAAAAABNAAAAAAAAAD8AAAAAAAAAUAAAAAAAAABEAAAAAAAAADgAAAADAAAASAAAAAEAAAA8AAAAAwAAAC4AAAADAAAAagAAAAAAAABdAAAAAAAAAE8AAAAFAAAAYwAAAAEAAABaAAAAAAAAAE0AAAAAAAAAWAAAAAEAAABQAAAAAAAAAEQAAAAAAAAAdQAAAAMAAABtAAAABQAAAF8AAAAFAAAAcQAAAAEAAABqAAAAAAAAAF0AAAAAAAAAaQAAAAEAAABjAAAAAQAAAFoAAAAAAAAAaQAAAAAAAABYAAAAAAAAAEgAAAAAAAAAZwAAAAAAAABbAAAAAAAAAEkAAAADAAAAYQAAAAEAAABZAAAAAwAAAEcAAAADAAAAcQAAAAAAAABjAAAAAAAAAFAAAAAFAAAAdAAAAAEAAABpAAAAAAAAAFgAAAAAAAAAbwAAAAEAAABnAAAAAAAAAFsAAAAAAAAAdQAAAAIAAABqAAAABQAAAFoAAAAFAAAAeQAAAAEAAABxAAAAAAAAAGMAAAAAAAAAdwAAAAEAAAB0AAAAAQAAAGkAAAAAAAAAdwAAAAAAAABvAAAAAAAAAGEAAAAAAAAAcwAAAAAAAABuAAAAAAAAAGIAAAADAAAAawAAAAEAAABoAAAAAwAAAGAAAAADAAAAeQAAAAAAAAB0AAAAAAAAAGcAAAAFAAAAeAAAAAEAAAB3AAAAAAAAAG8AAAAAAAAAcAAAAAEAAABzAAAAAAAAAG4AAAAAAAAAdQAAAAEAAABxAAAABQAAAGkAAAAFAAAAdgAAAAEAAAB5AAAAAAAAAHQAAAAAAAAAcgAAAAEAAAB4AAAAAQAAAHcAAAAAAAAAcgAAAAAAAABwAAAAAAAAAGsAAAAAAAAAZAAAAAAAAABmAAAAAAAAAGUAAAADAAAAUwAAAAEAAABXAAAAAwAAAFUAAAADAAAAdgAAAAAAAAB4AAAAAAAAAHMAAAAFAAAAbAAAAAEAAAByAAAAAAAAAHAAAAAAAAAAXAAAAAEAAABkAAAAAAAAAGYAAAAAAAAAdQAAAAAAAAB5AAAABQAAAHcAAAAFAAAAbQAAAAEAAAB2AAAAAAAAAHgAAAAAAAAAXwAAAAEAAABsAAAAAQAAAHIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAEAAAAAAAAAAAAAAAEAAAABAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAABAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAGAAAAAgAAAAUAAAABAAAABAAAAAAAAAAAAAAABQAAAAMAAAABAAAABgAAAAQAAAACAAAAAAAAAH6iBfbytuk/Gq6akm/58z/Xrm0Liez0P5doSdOpSwRAWs602ULg8D/dT7Rcbo/1v1N1RQHFNOM/g9Snx7HW3L8HWsP8Q3jfP6VwOLosutk/9rjk1YQcxj+gnmKMsNn6P/HDeuPFY+M/YHwDjqKhB0Ci19/fCVrbP4UxKkDWOP6/pvljWa09tL9wi7wrQXjnv/Z6yLImkM2/3yTlOzY14D+m+WNZrT20PzwKVQnrQwNA9nrIsiaQzT/g40rFrRQFwPa45NWEHMa/kbslHEZq97/xw3rjxWPjv4cLC2SMBci/otff3wla27+rKF5oIAv0P1N1RQHFNOO/iDJPGyWHBUAHWsP8Q3jfvwQf/by16gXAfqIF9vK26b8XrO0Vh0r+v9eubQuJ7PS/BxLrA0ZZ479azrTZQuDwv1MK1EuItPw/yscgV9Z6FkAwHBR2WjQMQJNRzXsQ5vY/GlUHVJYKF0DONuFv2lMNQNCGZ28QJfk/0WUwoIL36D8ggDOMQuATQNqMOeAy/wZAWFYOYM+M2z/LWC4uH3oSQDE+LyTsMgRAkJzhRGWFGEDd4soovCQQQKqk0DJMEP8/rGmNdwOLBUAW2X/9xCbjP4hu3dcqJhNAzuYItRvdB0CgzW3zJW/sPxotm/Y2TxRAQAk9XmdDDEC1Kx9MKgT3P1M+NctcghZAFVqcLlb0C0Bgzd3sB2b2P77mZDPUWhZAFROHJpUGCEDAfma5CxXtPz1DWq/zYxRAmhYY5824F0DOuQKWSbAOQNCMqrvu3fs/L6DR22K2wT9nAAxPBU8RQGiN6mW43AFAZhu25b633D8c1YgmzowSQNM25BRKWARArGS08/lNxD+LFssHwmMRQLC5aNcxBgJABL9HT0WRF0CjCmJmOGEOQHsuaVzMP/s/TWJCaGGwBUCeu1PAPLzjP9nqN9DZOBNAKE4JcydbCkCGtbd1qjPzP8dgm9U8jhVAtPeKTkVwDkCeCLss5l37P401XMPLmBdAFd29VMVQDUBg0yA55h75Pz6odcYLCRdApBM4rBrkAkDyAVWgQxbRP4XDMnK20hFAymLlF7EmzD8GUgo9XBHlP3lbK7T9COc/k+OhPthhy7+YGEpnrOvCPzBFhLs15u4/epbqB6H4uz9IuuLF5svev6lzLKY31es/CaQ0envF5z8ZY0xlUADXv7zaz7HYEuI/CfbK1sn16T8uAQfWwxLWPzKn/YuFN94/5KdbC1AFu793fyCSnlfvPzK2y4doAMY/NRg5t1/X6b/shq4QJaHDP5yNIAKPOeI/vpn7BSE30r/X4YQrO6nrv78Ziv/Thto/DqJ1Y6+y5z9l51NaxFrlv8QlA65HOLS/86dxiEc96z+Hj0+LFjneP6LzBZ8LTc2/DaJ1Y6+y579l51NaxFrlP8QlA65HOLQ/8qdxiEc967+Jj0+LFjnev6LzBZ8LTc0/1qdbC1AFuz93fyCSnlfvvzK2y4doAMa/NRg5t1/X6T/vhq4QJaHDv5yNIAKPOeK/wJn7BSE30j/W4YQrO6nrP78Ziv/Thtq/CaQ0envF578XY0xlUADXP7zaz7HYEuK/CvbK1sn16b8rAQfWwxLWvzKn/YuFN96/zWLlF7EmzL8GUgo9XBHlv3lbK7T9COe/kOOhPthhyz+cGEpnrOvCvzBFhLs15u6/c5bqB6H4u79IuuLF5sveP6lzLKY31eu/AQAAAP////8HAAAA/////zEAAAD/////VwEAAP////9hCQAA/////6dBAAD/////kcsBAP/////3kAwA/////8H2VwAAAAAAAAAAAAAAAAACAAAA/////w4AAAD/////YgAAAP////+uAgAA/////8ISAAD/////ToMAAP////8ilwMA/////+4hGQD/////gu2vAAAAAAAAAAAAAAAAAAAAAAACAAAA//////////8BAAAAAwAAAP//////////////////////////////////////////////////////////////////////////AQAAAAAAAAACAAAA////////////////AwAAAP//////////////////////////////////////////////////////////////////////////AQAAAAAAAAACAAAA////////////////AwAAAP//////////////////////////////////////////////////////////////////////////AQAAAAAAAAACAAAA////////////////AwAAAP//////////////////////////////////////////////////////////AgAAAP//////////AQAAAAAAAAD/////////////////////AwAAAP////////////////////////////////////////////////////8DAAAA/////////////////////wAAAAD/////////////////////AQAAAP///////////////wIAAAD///////////////////////////////8DAAAA/////////////////////wAAAAD///////////////8CAAAAAQAAAP////////////////////////////////////////////////////8DAAAA/////////////////////wAAAAD///////////////8CAAAAAQAAAP////////////////////////////////////////////////////8DAAAA/////////////////////wAAAAD///////////////8CAAAAAQAAAP////////////////////////////////////////////////////8DAAAA/////////////////////wAAAAD///////////////8CAAAAAQAAAP////////////////////////////////////////////////////8BAAAAAgAAAP///////////////wAAAAD/////////////////////AwAAAP////////////////////////////////////////////////////8BAAAAAgAAAP///////////////wAAAAD/////////////////////AwAAAP////////////////////////////////////////////////////8BAAAAAgAAAP///////////////wAAAAD/////////////////////AwAAAP////////////////////////////////////////////////////8BAAAAAgAAAP///////////////wAAAAD/////////////////////AwAAAP///////////////////////////////wIAAAD///////////////8BAAAA/////////////////////wAAAAD/////////////////////AwAAAP////////////////////////////////////////////////////8DAAAA/////////////////////wAAAAABAAAA//////////8CAAAA//////////////////////////////////////////////////////////8DAAAA////////////////AgAAAAAAAAABAAAA//////////////////////////////////////////////////////////////////////////8DAAAA////////////////AgAAAAAAAAABAAAA//////////////////////////////////////////////////////////////////////////8DAAAA////////////////AgAAAAAAAAABAAAA//////////////////////////////////////////////////////////////////////////8DAAAAAQAAAP//////////AgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAACAAAAAAAAAAIAAAABAAAAAQAAAAIAAAACAAAAAAAAAAUAAAAFAAAAAAAAAAIAAAACAAAAAwAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAgAAAAEAAAACAAAAAgAAAAIAAAAAAAAABQAAAAYAAAAAAAAAAgAAAAIAAAADAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAgAAAAAAAAACAAAAAQAAAAMAAAACAAAAAgAAAAAAAAAFAAAABwAAAAAAAAACAAAAAgAAAAMAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAACAAAAAAAAAAIAAAABAAAABAAAAAIAAAACAAAAAAAAAAUAAAAIAAAAAAAAAAIAAAACAAAAAwAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAIAAAAAAAAAAgAAAAEAAAAAAAAAAgAAAAIAAAAAAAAABQAAAAkAAAAAAAAAAgAAAAIAAAADAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAgAAAAIAAAAAAAAAAwAAAA4AAAACAAAAAAAAAAIAAAADAAAAAAAAAAAAAAACAAAAAgAAAAMAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAsAAAACAAAAAgAAAAAAAAADAAAACgAAAAIAAAAAAAAAAgAAAAMAAAABAAAAAAAAAAIAAAACAAAAAwAAAAcAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAIAAAACAAAAAAAAAAMAAAALAAAAAgAAAAAAAAACAAAAAwAAAAIAAAAAAAAAAgAAAAIAAAADAAAACAAAAAAAAAAAAAAAAAAAAAAAAAANAAAAAgAAAAIAAAAAAAAAAwAAAAwAAAACAAAAAAAAAAIAAAADAAAAAwAAAAAAAAACAAAAAgAAAAMAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAA4AAAACAAAAAgAAAAAAAAADAAAADQAAAAIAAAAAAAAAAgAAAAMAAAAEAAAAAAAAAAIAAAACAAAAAwAAAAoAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAIAAAACAAAAAAAAAAMAAAAGAAAAAgAAAAAAAAACAAAAAwAAAA8AAAAAAAAAAgAAAAIAAAADAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAgAAAAIAAAAAAAAAAwAAAAcAAAACAAAAAAAAAAIAAAADAAAAEAAAAAAAAAACAAAAAgAAAAMAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAACAAAAAgAAAAAAAAADAAAACAAAAAIAAAAAAAAAAgAAAAMAAAARAAAAAAAAAAIAAAACAAAAAwAAAA0AAAAAAAAAAAAAAAAAAAAAAAAACAAAAAIAAAACAAAAAAAAAAMAAAAJAAAAAgAAAAAAAAACAAAAAwAAABIAAAAAAAAAAgAAAAIAAAADAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAJAAAAAgAAAAIAAAAAAAAAAwAAAAUAAAACAAAAAAAAAAIAAAADAAAAEwAAAAAAAAACAAAAAgAAAAMAAAAPAAAAAAAAAAAAAAAAAAAAAAAAABAAAAACAAAAAAAAAAIAAAABAAAAEwAAAAIAAAACAAAAAAAAAAUAAAAKAAAAAAAAAAIAAAACAAAAAwAAABAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAIAAAAAAAAAAgAAAAEAAAAPAAAAAgAAAAIAAAAAAAAABQAAAAsAAAAAAAAAAgAAAAIAAAADAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAgAAAAAAAAACAAAAAQAAABAAAAACAAAAAgAAAAAAAAAFAAAADAAAAAAAAAACAAAAAgAAAAMAAAASAAAAAAAAAAAAAAAAAAAAAAAAABMAAAACAAAAAAAAAAIAAAABAAAAEQAAAAIAAAACAAAAAAAAAAUAAAANAAAAAAAAAAIAAAACAAAAAwAAABMAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAIAAAAAAAAAAgAAAAEAAAASAAAAAgAAAAIAAAAAAAAABQAAAA4AAAAAAAAAAgAAAAIAAAADAAAAAgAAAAEAAAAAAAAAAQAAAAIAAAAAAAAAAAAAAAIAAAABAAAAAAAAAAEAAAACAAAAAQAAAAAAAAACAAAAAAAAAAUAAAAEAAAAAAAAAAEAAAAFAAAAAAAAAAAAAAAFAAAABAAAAAAAAAABAAAABQAAAAQAAAAAAAAABQAAAAAAAAACAAAAAQAAAAAAAAABAAAAAgAAAAAAAAAAAAAAAgAAAAEAAAAAAAAAAQAAAAIAAAABAAAAAAAAAAIAAAACAAAAAAAAAAEAAAAAAAAAAAAAAAUAAAAEAAAAAAAAAAEAAAAFAAAAAAAAAAAAAAAFAAAABAAAAAAAAAABAAAABQAAAAQAAAAAAAAABQAAAAUAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAABAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAEAAAAAAAAAAAEAAAAAAQAAAAAAAAAAAQAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAABAAAAAAAAAAAAAQAAAAAAAAAAAAA6B6FaUp9QQTPXMuL4myJBraiDfBwx9UBYJseitzTIQOL5if9jqZtAnXX+Z+ycb0C3pucbhRBCQG8wJBYqpRRAlWbDCzCY5z/eFWBUEve6P/+qo4Q50Y4/D9YM3iCcYT8fcA2QJSA0P4ADxu0qAAc/BNcGolVJ2j5d9FACqwquPh9z7MthtI9CSUSYJke/YUJQ/64OyjU0Qpi0+HCmFQdCm3GfIVdh2kHsJ11kAyauQYC3UDFJOoFBSJsFV1OwU0FK5fcxX4AmQWhy/zZIt/lACqaCPsBjzUDbdUNIScugQMYQlVJ4MXNANiuq8GTvRUDxTXnulxEZQFZ8QX5kpuw/qmG/JwYFlEAluh3Q6DB+QKn4vyNq0GZAKOXekas+UUB8xabXXhI6QG63C2pLtSNAdDBtyNfLDUDyOcu67ID2P0rCMvRXAeE/Ki2TSVyzyT9Dk+8Sz2uzP5J+w5ARWp0/NQAoOiMuhj9YnP+RyMJwPxgW7TvQVFk/KgsLYF0kQz9g5dAC6IwzQcgHPVvDex1B1XjppodHBkHJq3OMM9fwQNvcmJ7wddlAInGPpQs/w0BRobq5EBmtQJZ2ai7n+ZVAtv2G5E+bgECG+gIfKBlpQK5f8jdI91JAL39sL/WpPEB8rGxhDqklQK6yUf43XhBAxL9y/tK8+D86XyZpgrHiPwAAAAD/////AAAAAAAAAAAAAAAAAAAAAAAAAAD/////////////////////////////////////AAAAAP////8AAAAAAAAAAAAAAAABAAAAAAAAAAAAAAD/////AAAAAAAAAAABAAAAAQAAAAAAAAAAAAAA/////wAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAP////8FAAAABQAAAAAAAAAAAAAAAAAAAAAAAAD/////AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/////////////////////////////////////wAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP////////////////////////////////////8AAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAFAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/////////////////////////////////////AAAAAAEAAAABAAAAAQAAAAEAAAABAAAAAQAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAEAAAABAAAAAAAAAAEAAAAAAAAABQAAAAEAAAABAAAAAAAAAAAAAAABAAAAAQAAAAAAAAABAAAAAQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAQAAAAAAAQABAAABAQAAAAAAAQAAAAEAAAABAAEAAAAAAAAAAAAAAAAAAAAAquJYWJZl+D9jaeZNtj/zPwwdI9KqaeO/qGefXwdHdz+q4lhYlmX4P+OrlPMN3PI/DB0j0qpp47+7SQLV4VIEQKriWFiWZfg/r2kma3tz8T82eQmLqNIGwMRIWXMqSvo/fcCszPux9j+jara6ozTwP6hnn18HR3c/MSoKLequ8r+SabgA2nj0P7jBLbDOHO8/1Ym/ICfH4T+6lxjvlFXHv73m373LRPU/0vXyDVxo7T+ToKRHJXMAQF/33578aPE/pAyy64tD9T8+U/hCvyruPwxv8Y7YYwLAuXYr8NAiCEB4+LDK0Sn0P1Qeuy4j+eo/OMx50n7K7L+TrGB/nyf8v5ehC2fbYPM/aXMKexiT6z8mFRIMjg/zP7yUVwGGBNw/E6opHERf8z/z0wR2g9DqPw4pBpcOhvu/NbA29uWAA8DMaTExyXzyP02biiQ+Ruk/S8jz2/FKBEB1pzZnpbb9P7pQU4wLfPI//7ZcQXeG6D9CqEQvAYoIwDB2VB6sSgRAVyv8H5We8T+EHWF8XNPmPzB2wT8Nrrg/SEi+cX+w4L8of+GtdSDxP1sjk5AdouU/6ZjOVru13r8K0obqI6bxvwVbdNXyhfA/w5GG024n5z+rwmtMzP8BwLw9pSX49QXABe/2uQxP8D+b6wCzCvXkP7uGT87fK+Q/pz/JWw4coj+qoBf2J0nwP/yE3PUo0+I/vFJeHcaC+D96luSIqvntP/bf8sHUYu8/gZNN41mL4z9bhOqVOF4FwO6lmAh1hQhAbCVxbdhk7z+1C8NdDcfiPwG36x/0OQBAx0WJ76c2+D9nlSHXANfuP2HlfZ3gqOE/EwnVlVPg9r96+oHzEH//v5bXzdT1Auw/DM3GwLsA4D9p/8uoKcr+v+U9x5DQVAPAehjSdghb7D9sc1IetODgP8MVwwB1pu6/azPk6OGe978W8t/TUc3rP+0QMvYfP+A/RsG/QpSE8D+l3uwScxzgPwQaifgujuw/k1Vti1I43z8MAwLnSh0GQH5nYnwwZgJAiGUzWC5s6j8WyyI/BbLgPw4iUapGeQJAB3W+imnp/j9BLWR4ssrpP2t+gG5Pstk/cpBsfm6DCMCOpU9dOZsFQEv8nFypHeo/ehJ6i+6S2D9jqlGEmarLv7STC5TRiOa/bC+x8WZD6D9H3yUkWpDZP8gZvmCMuQLAreY19/eRBsCoPOc8UzzpP6KI/QV+y9g/t/MoboyWzT+Hv5q3Zu3Mvy2xROCT4uY/9gQitMMg1T9abAqhWMDkv1oLTavoUfG/PMUJP9CD5j+fHRX3t6fSPz7W2gk6bvs/WRnuHwqN9D8YFturGCTmP1EZczv0b9I/5t4exabB5D/1ESLh5fTEP9X2z6SYweQ/6lv3I2zT0D9zkRGNUNMAQKoSvc4EIfs/Xggt8wQI5T+mJHHg/w/SP4lhT/9t8vQ/DrZ/DbwH7D+XlhbYZrjkP34LIpFt6c4/lwfp8fLX9L+j96CTTf76v3WdNhEv9uM/d8c3o4lV0D/vFdCHVcsFwAHeDq0F1QhApbYqcZiN5D9KoilqByXLPwX0/diA0vq/0fo0GxnxAMBbaTkvlCzjP/RrFrWXrMs/UYTrky7jA0DB9f4FiZYAQEGAk/3QzeE/r/TeqE8t0D/OqjlsnPbvvz8RKU8JOfW/smSEbK/O4T8MzuyPm3DDP/rFtctq9gZAfb1EVEaSA0Dts5dVInnhP18SFMc79MM/7y34cw6LAMDFrRJsZO0DwC2KLvLSYuA/hx5wcUHewz+49SnK/4ruPyeS0PX9a+E/ZxaaLvvZ3z8WPu5T2QS8Pygo4RIvMqa/BJ0Kqsd0279cKW4ay8jdP3b05bmZ364/10/qtdxk2r+Bcz6CDMvpv54qOw+Amdw/qLV71pW7sT/YKc80nIPUP8OfIaBJ77G/LyTuD1un2z+diYu8efWzP1wU7ACkfwjAZroyPL1yBkAmv3lKJJbbPysKSE4W+p0/dIgqY79TA8ATLTOQ3tsGwJ2zweD/Xdg/XO/jXeFUaL8VW2qLFKfov1cA9Aa6XfK/tIa7YGgI2T+f3hu/sxqPv2nXdPpf3Pc/jkw8Jbda8j+tT/z8tGPVP1yBHpJd35k/KYvYOy1s8j/yz+kCQjPrP9+agH7x59g/PZfJ9aBhpr/rDKzvYBb+PwtkiaGCt/c/vb1mVr+f1T/JIHwHc8Govw7aeF6+9vG/Xv7kD6fp979isYioQYHVP7AIQZuSFrG/3z1AdUTnAUDN3XY9O7f9P0AdQ9ljYNQ/dJANJPTOrb8kLECUiiPlP4yF7UgmStA/9xGmXxCG1T9qZzix4W2zv2SGJRJVrPe/Fh9a2M/B/b8IexzFCoPSP9y1QFD2bLe/Q86cWLJe/b+mOOfYm78BwOTjkPAGE9E/8aPCUKu/ub9pPZyLCiUGwBA7Mev/BQlALOmrlRi+0j+AMJ/dKULBv7iLtL6a6QRAEMDV/yajAUDa62dE3crJP1P70RgBUbq/38hVnR6esT/s1tG10Z/Ov/zLwalHPss/dTS9NKTXx78nMcRzCIEHQAabxDsAmQRA0tyLK3gSyT+Aui7nOhDGv5Gs58z3WgHATN3forJuBMCAui7nOhDGP9Lciyt4Esm/WAJyHQ4c7z8UP5HFIs3iP3U0vTSk18c//MvBqUc+y7+cvv8HLg/Kvy1I/mHsI+K/U/vRGAFRuj/a62dE3crJv8p+WV8KlQjAuQ/nOP43B0CAMJ/dKULBPyzpq5UYvtK/ZoU+VoLh4L9etLlRUfvtv/GjwlCrv7k/5OOQ8AYT0b9DfT9FhufXPwUX8hJp+4u/3LVAUPZstz8IexzFCoPSv9+L609E5fQ/q9Fz7X2J7T9qZzix4W2zP/cRpl8QhtW/vtNilqGX+j8MOy7QJoL0P3SQDST0zq0/QB1D2WNg1L8IIjSvGNkDwGB8Jou2GAfAsAhBm5IWsT9isYioQYHVvyS9D3zb6uy/gnwRa7uM9L/JIHwHc8GoP729Zla/n9W/CsAHJZwmAEDEW6OYT1r6Pz2XyfWgYaY/35qAfvHn2L83Tdy4lS30vxf2/gZ0jPq/XIEekl3fmb+tT/z8tGPVvybPr2zJ1/+/K7mJ0ypVAsCf3hu/sxqPPwCGu2BoCNm/5oITrpZn+r+UDUyDP+n/v1zv413hVGg/nbPB4P9d2L9MlmkxNvgCQMtZlKE85v8/KwpIThb6nb8mv3lKJJbbv8+SZsTvOOc/pQCIIOYw0j+diYu8efWzvy8k7g9bp9u/kxYDa+pKtD9XlYvA8HnVv6i1e9aVu7G/nio7D4CZ3L/WR6rNh5EGwCkgQweBkghAdvTluZnfrr9cKW4ay8jdvxbjhr1f1QVAR5C0MzivAkAWPu5T2QS8v2cWmi772d+/cKj4lzLJCEBx2QJfYrMFQIcecHFB3sO/LYou8tJi4L+jr7lhO38BwIcI0Nb7xgTAXxIUxzv0w7/ts5dVInnhv0T+l8DZLfE/MP3FoFvS5D8MzuyPm3DDv7JkhGyvzuG/tzhzRIRc0b9Ovv3/0z7mv6/03qhPLdC/m4CT/dDN4b9dwjU5VCQBQBBJX1ntCv0/9GsWtZesy79baTkvlCzjv1mjYgEz++S/oW6KnOQW8b9KoilqByXLv6W2KnGYjeS/SmaKz3Vx9z+BZB5yxGHwP3fHN6OJVdC/dZ02ES/2478PuaBjLrXaP4/JU81pPaO/fgsikW3pzr+XlhbYZrjkv4tSn7YDbP0/f2LnFKlF9z+mJHHg/w/Sv14ILfMECOW/mfg4qYhR/b+OP+RQDCACwOpb9yNs09C/1fbPpJjB5L9pN2WOVZ3wv3hHy9nxIve/URlzO/Rv0r8YFturGCTmv1d1/KKR8QPA8gsy9qzSB8CfHRX3t6fSvzzFCT/Qg+a/EYStnrzV9r/2QJqI7Lb9v/YEIrTDINW/LbFE4JPi5r/7kQEs5fEDQHunnf4GeQBAooj9BX7L2L+oPOc8Uzzpv+ydYY2SSAfAL4HK6CRTB0BH3yUkWpDZv2wvsfFmQ+i/Ik0Yzruh6T8fM3LoGoDUP3oSeovukti/S/ycXKkd6r9rEv+7UWcHQCRIQe/GfwNAa36Abk+y2b9BLWR4ssrpv9KT87qa0bM/FTyktw823L8WyyI/BbLgv4hlM1gubOq/DizMp9Ki6r8b5ckdjVrzv5NVbYtSON+/BBqJ+C6O7L/dUBFqgyXYv00Wh18r7+q/7RAy9h8/4L8W8t/TUc3rv4RM5DKx3wDAfvWIj94aBcBsc1IetODgv3oY0nYIW+y/oGcTFF54AUDkJqS/FKX6PwzNxsC7AOC/ltfN1PUC7L+5Wrz/zHnzP6688w2rNOc/YeV9neCo4b9nlSHXANfuvw9RsxKjY/s/1V8GteXE8j+1C8NdDcfiv2wlcW3YZO+/IOywaA7Q8b9bFP+4Tg36v4GTTeNZi+O/9t/ywdRi77+tRc3yFR7eP2bkcHXJkLO//ITc9SjT4r+qoBf2J0nwv2YHKoswwfm/iQcLspCjAcCb6wCzCvXkvwXv9rkMT/C/YkuwYAMXBMApCNUai9kIwMORhtNuJ+e/BVt01fKF8L+ZqWEfvIjsP6h693QZYNk/WyOTkB2i5b8of+GtdSDxvwpaaulDSwVADMQAX+lOAECEHWF8XNPmv1cr/B+VnvG/XyFG6opcCMD/mtR32/UEQP+2XEF3hui/ulBTjAt88r/imfCfRP+yP9zbvtc8XeO/TZuKJD5G6b/MaTExyXzyvxiTQeElXOO/rbJRQVGN9L/z0wR2g9DqvxOqKRxEX/O/FDGCEei99j9x8zV4VYTmP2lzCnsYk+u/l6ELZ9tg878pRXacaDT/v3k6GZRqoQXAVB67LiP56r94+LDK0Sn0vwO6pZ9b7wFAvK0nKVcc9j8+U/hCvyruv6QMsuuLQ/W/FPhKFYv46j8MyxaDTOW/v9L18g1caO2/vebfvctE9b/7GD8ZrF3xv3gx1AR9bQDAuMEtsM4c77+SabgA2nj0v5xKFIwxsATArKNSBaKsB0Cjara6ozTwv33ArMz7sfa/dF2U0FcWCcDxL357DJX/P69pJmt7c/G/quJYWJZl+L/YntVJlnrSP4sRLzXM+fe/46uU8w3c8r+q4lhYlmX4v85lu5+QRwRAsI0H/WU8479jaeZNtj/zv6riWFiWZfi/sI0H/WU847/OZbufkEcEQHAoPUBrnss/9exKzDtFtT88wM8kax+gP9OqeKeAYog/MW0ItiZvcj+ph+smvt5bP2lCaV5dEUU/StaUmQDaLz+kK9y22BMYP0O3whZuMwI/IIbgZGWE6z7UkjYaEM3UPuezxwa9cr8+LybxRMnFpz6E1N8DbPiRPsYjySMvK3s+//////8fAAj//////zMQCP////9/MiAI/////28yMAj/////YzJACP///z9iMlAI////N2IyYAj///8zYjJwCP//vzNiMoAI//+rM2IykAj/f6szYjKgCP8PqzNiMrAI/wOrM2IywAi/A6szYjLQCJ8DqzNiMuAImQOrM2Iy8Aj//////z8PCP//////Kx8I/////38pLwj/////Pyk/CP////85KU8I////PzgpXwj///8POClvCP///w44KX8I//8fDjgpjwj//w8OOCmfCP9/DQ44Ka8I/w8NDjgpvwj/DQ0OOCnPCP8MDQ44Kd8IxwwNDjgp7wjEDA0OOCn/CAcAAAAHAAAAAQAAAAIAAAAEAAAAAwAAAAAAAAAAAAAABwAAAAMAAAABAAAAAgAAAAUAAAAEAAAAAAAAAAAAAAAEAAAABAAAAAAAAAACAAAAAQAAAAMAAAAOAAAABgAAAAsAAAACAAAABwAAAAEAAAAYAAAABQAAAAoAAAABAAAABgAAAAAAAAAmAAAABwAAAAwAAAADAAAACAAAAAIAAAAxAAAACQAAAA4AAAAAAAAABQAAAAQAAAA6AAAACAAAAA0AAAAEAAAACQAAAAMAAAA/AAAACwAAAAYAAAAPAAAACgAAABAAAABIAAAADAAAAAcAAAAQAAAACwAAABEAAABTAAAACgAAAAUAAAATAAAADgAAAA8AAABhAAAADQAAAAgAAAARAAAADAAAABIAAABrAAAADgAAAAkAAAASAAAADQAAABMAAAB1AAAADwAAABMAAAARAAAAEgAAABAAAAAGAAAAAgAAAAMAAAAFAAAABAAAAAAAAAAAAAAAAAAAAAYAAAACAAAAAwAAAAEAAAAFAAAABAAAAAAAAAAAAAAABwAAAAUAAAADAAAABAAAAAEAAAAAAAAAAgAAAAAAAAACAAAAAwAAAAEAAAAFAAAABAAAAAYAAAAAAAAAAAAAABgtRFT7Ifk/GC1EVPsh+b8YLURU+yEJQBgtRFT7IQnAYWxnb3MuYwBoM05laWdoYm9yUm90YXRpb25zAGNvb3JkaWprLmMAX3VwQXA3Q2hlY2tlZABfdXBBcDdyQ2hlY2tlZABkaXJlY3RlZEVkZ2UuYwBkaXJlY3RlZEVkZ2VUb0JvdW5kYXJ5AGFkamFjZW50RmFjZURpclt0bXBGaWprLmZhY2VdW2ZpamsuZmFjZV0gPT0gS0kAZmFjZWlqay5jAF9mYWNlSWprUGVudFRvQ2VsbEJvdW5kYXJ5AGFkamFjZW50RmFjZURpcltjZW50ZXJJSksuZmFjZV1bZmFjZTJdID09IEtJAF9mYWNlSWprVG9DZWxsQm91bmRhcnkAaDNJbmRleC5jAGNvbXBhY3RDZWxscwBsYXRMbmdUb0NlbGwAY2VsbFRvQ2hpbGRQb3MAdmFsaWRhdGVDaGlsZFBvcwBsYXRMbmcuYwBjZWxsQXJlYVJhZHMyAHBvbHlnb24tPm5leHQgPT0gTlVMTABsaW5rZWRHZW8uYwBhZGROZXdMaW5rZWRQb2x5Z29uAG5leHQgIT0gTlVMTABsb29wICE9IE5VTEwAYWRkTmV3TGlua2VkTG9vcABwb2x5Z29uLT5maXJzdCA9PSBOVUxMAGFkZExpbmtlZExvb3AAY29vcmQgIT0gTlVMTABhZGRMaW5rZWRDb29yZABsb29wLT5maXJzdCA9PSBOVUxMAGlubmVyTG9vcHMgIT0gTlVMTABub3JtYWxpemVNdWx0aVBvbHlnb24AYmJveGVzICE9IE5VTEwAY2FuZGlkYXRlcyAhPSBOVUxMAGZpbmRQb2x5Z29uRm9ySG9sZQBjYW5kaWRhdGVCQm94ZXMgIT0gTlVMTAByZXZEaXIgIT0gSU5WQUxJRF9ESUdJVABsb2NhbGlqLmMAY2VsbFRvTG9jYWxJamsAYmFzZUNlbGwgIT0gb3JpZ2luQmFzZUNlbGwAIShvcmlnaW5PblBlbnQgJiYgaW5kZXhPblBlbnQpAGJhc2VDZWxsID09IG9yaWdpbkJhc2VDZWxsAGJhc2VDZWxsICE9IElOVkFMSURfQkFTRV9DRUxMAGxvY2FsSWprVG9DZWxsACFfaXNCYXNlQ2VsbFBlbnRhZ29uKGJhc2VDZWxsKQBiYXNlQ2VsbFJvdGF0aW9ucyA+PSAwAGdyaWRQYXRoQ2VsbHMAcG9seWZpbGwuYwBpdGVyU3RlcFBvbHlnb25Db21wYWN0ADAAdmVydGV4LmMAdmVydGV4Um90YXRpb25zAGNlbGxUb1ZlcnRleABncmFwaC0+YnVja2V0cyAhPSBOVUxMAHZlcnRleEdyYXBoLmMAaW5pdFZlcnRleEdyYXBoAG5vZGUgIT0gTlVMTABhZGRWZXJ0ZXhOb2Rl";var qe=28640;function wt(Je,mt,kt,at){Jr("Assertion failed: "+q(Je)+", at: "+[mt?q(mt):"unknown filename",kt,at?q(at):"unknown function"])}function Mt(){return J.length}function Gt(Je,mt,kt){ne.set(ne.subarray(mt,mt+kt),Je)}function $t(Je){return e.___errno_location&&(te[e.___errno_location()>>2]=Je),Je}function vt(Je){Jr("OOM")}function Yt(Je){try{var mt=new ArrayBuffer(Je);return mt.byteLength!=Je?void 0:(new Int8Array(mt).set(J),Wt(mt),he(mt),1)}catch{}}function rn(Je){var mt=Mt(),kt=16777216,at=2147483648-kt;if(Je>at)return!1;for(var d=16777216,ee=Math.max(mt,d);ee>4,d=(Gn&15)<<4|Xn>>2,ee=(Xn&3)<<6|un,kt=kt+String.fromCharCode(at),Xn!==64&&(kt=kt+String.fromCharCode(d)),un!==64&&(kt=kt+String.fromCharCode(ee));while(qn13780509?(f=Hu(15,f)|0,f|0):(p=((A|0)<0)<<31>>31,y=fr(A|0,p|0,3,0)|0,_=Z()|0,p=Qt(A|0,p|0,1,0)|0,p=fr(y|0,_|0,p|0,Z()|0)|0,p=Qt(p|0,Z()|0,1,0)|0,A=Z()|0,d[f>>2]=p,d[f+4>>2]=A,f=0,f|0)}function _e(A,f,p,_){return A=A|0,f=f|0,p=p|0,_=_|0,ot(A,f,p,_,0)|0}function ot(A,f,p,_,y){A=A|0,f=f|0,p=p|0,_=_|0,y=y|0;var T=0,M=0,N=0,U=0,I=0;if(U=K,K=K+16|0,M=U,!(Rt(A,f,p,_,y)|0))return _=0,K=U,_|0;do if((p|0)>=0){if((p|0)>13780509){if(T=Hu(15,M)|0,T|0)break;N=M,M=d[N>>2]|0,N=d[N+4>>2]|0}else T=((p|0)<0)<<31>>31,I=fr(p|0,T|0,3,0)|0,N=Z()|0,T=Qt(p|0,T|0,1,0)|0,T=fr(I|0,N|0,T|0,Z()|0)|0,T=Qt(T|0,Z()|0,1,0)|0,N=Z()|0,d[M>>2]=T,d[M+4>>2]=N,M=T;if(uo(_|0,0,M<<3|0)|0,y|0){uo(y|0,0,M<<2|0)|0,T=Jt(A,f,p,_,y,M,N,0)|0;break}T=Ks(M,4)|0,T?(I=Jt(A,f,p,_,T,M,N,0)|0,An(T),T=I):T=13}else T=2;while(!1);return I=T,K=U,I|0}function Rt(A,f,p,_,y){A=A|0,f=f|0,p=p|0,_=_|0,y=y|0;var T=0,M=0,N=0,U=0,I=0,H=0,ie=0,pe=0,de=0,me=0,Ne=0;if(Ne=K,K=K+16|0,de=Ne,me=Ne+8|0,pe=de,d[pe>>2]=A,d[pe+4>>2]=f,(p|0)<0)return me=2,K=Ne,me|0;if(T=_,d[T>>2]=A,d[T+4>>2]=f,T=(y|0)!=0,T&&(d[y>>2]=0),Ci(A,f)|0)return me=9,K=Ne,me|0;d[me>>2]=0;e:do if((p|0)>=1)if(T)for(H=1,I=0,ie=0,pe=1,T=A;;){if(!(I|ie)){if(T=cn(T,f,4,me,de)|0,T|0)break e;if(f=de,T=d[f>>2]|0,f=d[f+4>>2]|0,Ci(T,f)|0){T=9;break e}}if(T=cn(T,f,d[26800+(ie<<2)>>2]|0,me,de)|0,T|0)break e;if(f=de,T=d[f>>2]|0,f=d[f+4>>2]|0,A=_+(H<<3)|0,d[A>>2]=T,d[A+4>>2]=f,d[y+(H<<2)>>2]=pe,A=I+1|0,M=(A|0)==(pe|0),N=ie+1|0,U=(N|0)==6,Ci(T,f)|0){T=9;break e}if(pe=pe+(U&M&1)|0,(pe|0)>(p|0)){T=0;break}else H=H+1|0,I=M?0:A,ie=M?U?0:N:ie}else for(H=1,I=0,ie=0,pe=1,T=A;;){if(!(I|ie)){if(T=cn(T,f,4,me,de)|0,T|0)break e;if(f=de,T=d[f>>2]|0,f=d[f+4>>2]|0,Ci(T,f)|0){T=9;break e}}if(T=cn(T,f,d[26800+(ie<<2)>>2]|0,me,de)|0,T|0)break e;if(f=de,T=d[f>>2]|0,f=d[f+4>>2]|0,A=_+(H<<3)|0,d[A>>2]=T,d[A+4>>2]=f,A=I+1|0,M=(A|0)==(pe|0),N=ie+1|0,U=(N|0)==6,Ci(T,f)|0){T=9;break e}if(pe=pe+(U&M&1)|0,(pe|0)>(p|0)){T=0;break}else H=H+1|0,I=M?0:A,ie=M?U?0:N:ie}else T=0;while(!1);return me=T,K=Ne,me|0}function Jt(A,f,p,_,y,T,M,N){A=A|0,f=f|0,p=p|0,_=_|0,y=y|0,T=T|0,M=M|0,N=N|0;var U=0,I=0,H=0,ie=0,pe=0,de=0,me=0,Ne=0,Oe=0,Qe=0;if(Ne=K,K=K+16|0,de=Ne+8|0,me=Ne,U=ec(A|0,f|0,T|0,M|0)|0,H=Z()|0,ie=_+(U<<3)|0,Oe=ie,Qe=d[Oe>>2]|0,Oe=d[Oe+4>>2]|0,I=(Qe|0)==(A|0)&(Oe|0)==(f|0),!((Qe|0)==0&(Oe|0)==0|I))do U=Qt(U|0,H|0,1,0)|0,U=th(U|0,Z()|0,T|0,M|0)|0,H=Z()|0,ie=_+(U<<3)|0,Qe=ie,Oe=d[Qe>>2]|0,Qe=d[Qe+4>>2]|0,I=(Oe|0)==(A|0)&(Qe|0)==(f|0);while(!((Oe|0)==0&(Qe|0)==0|I));if(U=y+(U<<2)|0,I&&(d[U>>2]|0)<=(N|0)||(Qe=ie,d[Qe>>2]=A,d[Qe+4>>2]=f,d[U>>2]=N,(N|0)>=(p|0)))return Qe=0,K=Ne,Qe|0;switch(I=N+1|0,d[de>>2]=0,U=cn(A,f,2,de,me)|0,U|0){case 9:{pe=9;break}case 0:{U=me,U=Jt(d[U>>2]|0,d[U+4>>2]|0,p,_,y,T,M,I)|0,U||(pe=9);break}}e:do if((pe|0)==9){switch(d[de>>2]=0,U=cn(A,f,3,de,me)|0,U|0){case 9:break;case 0:{if(U=me,U=Jt(d[U>>2]|0,d[U+4>>2]|0,p,_,y,T,M,I)|0,U|0)break e;break}default:break e}switch(d[de>>2]=0,U=cn(A,f,1,de,me)|0,U|0){case 9:break;case 0:{if(U=me,U=Jt(d[U>>2]|0,d[U+4>>2]|0,p,_,y,T,M,I)|0,U|0)break e;break}default:break e}switch(d[de>>2]=0,U=cn(A,f,5,de,me)|0,U|0){case 9:break;case 0:{if(U=me,U=Jt(d[U>>2]|0,d[U+4>>2]|0,p,_,y,T,M,I)|0,U|0)break e;break}default:break e}switch(d[de>>2]=0,U=cn(A,f,4,de,me)|0,U|0){case 9:break;case 0:{if(U=me,U=Jt(d[U>>2]|0,d[U+4>>2]|0,p,_,y,T,M,I)|0,U|0)break e;break}default:break e}switch(d[de>>2]=0,U=cn(A,f,6,de,me)|0,U|0){case 9:break;case 0:{if(U=me,U=Jt(d[U>>2]|0,d[U+4>>2]|0,p,_,y,T,M,I)|0,U|0)break e;break}default:break e}return Qe=0,K=Ne,Qe|0}while(!1);return Qe=U,K=Ne,Qe|0}function cn(A,f,p,_,y){A=A|0,f=f|0,p=p|0,_=_|0,y=y|0;var T=0,M=0,N=0,U=0,I=0,H=0,ie=0,pe=0,de=0,me=0;if(p>>>0>6)return y=1,y|0;if(ie=(d[_>>2]|0)%6|0,d[_>>2]=ie,(ie|0)>0){T=0;do p=Uu(p)|0,T=T+1|0;while((T|0)<(d[_>>2]|0))}if(ie=St(A|0,f|0,45)|0,Z()|0,H=ie&127,H>>>0>121)return y=5,y|0;U=$s(A,f)|0,T=St(A|0,f|0,52)|0,Z()|0,T=T&15;e:do if(!T)I=8;else{for(;;){if(M=(15-T|0)*3|0,N=St(A|0,f|0,M|0)|0,Z()|0,N=N&7,(N|0)==7){f=5;break}if(me=(Ss(T)|0)==0,T=T+-1|0,pe=Nt(7,0,M|0)|0,f=f&~(Z()|0),de=Nt(d[(me?432:16)+(N*28|0)+(p<<2)>>2]|0,0,M|0)|0,M=Z()|0,p=d[(me?640:224)+(N*28|0)+(p<<2)>>2]|0,A=de|A&~pe,f=M|f,!p){p=0;break e}if(!T){I=8;break e}}return f|0}while(!1);(I|0)==8&&(me=d[848+(H*28|0)+(p<<2)>>2]|0,de=Nt(me|0,0,45)|0,A=de|A,f=Z()|0|f&-1040385,p=d[4272+(H*28|0)+(p<<2)>>2]|0,(me&127|0)==127&&(me=Nt(d[848+(H*28|0)+20>>2]|0,0,45)|0,f=Z()|0|f&-1040385,p=d[4272+(H*28|0)+20>>2]|0,A=ku(me|A,f)|0,f=Z()|0,d[_>>2]=(d[_>>2]|0)+1)),N=St(A|0,f|0,45)|0,Z()|0,N=N&127;e:do if(Bi(N)|0){t:do if(($s(A,f)|0)==1){if((H|0)!=(N|0))if(Ru(N,d[7696+(H*28|0)>>2]|0)|0){A=hp(A,f)|0,M=1,f=Z()|0;break}else Bt(27795,26864,533,26872);switch(U|0){case 3:{A=ku(A,f)|0,f=Z()|0,d[_>>2]=(d[_>>2]|0)+1,M=0;break t}case 5:{A=hp(A,f)|0,f=Z()|0,d[_>>2]=(d[_>>2]|0)+5,M=0;break t}case 0:return me=9,me|0;default:return me=1,me|0}}else M=0;while(!1);if((p|0)>0){T=0;do A=cp(A,f)|0,f=Z()|0,T=T+1|0;while((T|0)!=(p|0))}if((H|0)!=(N|0)){if(!(Wc(N)|0)){if((M|0)!=0|($s(A,f)|0)!=5)break;d[_>>2]=(d[_>>2]|0)+1;break}switch(ie&127){case 8:case 118:break e}($s(A,f)|0)!=3&&(d[_>>2]=(d[_>>2]|0)+1)}}else if((p|0)>0){T=0;do A=ku(A,f)|0,f=Z()|0,T=T+1|0;while((T|0)!=(p|0))}while(!1);return d[_>>2]=((d[_>>2]|0)+p|0)%6|0,me=y,d[me>>2]=A,d[me+4>>2]=f,me=0,me|0}function Yn(A,f,p,_){return A=A|0,f=f|0,p=p|0,_=_|0,xi(A,f,p,_)|0?(uo(_|0,0,p*48|0)|0,_=js(A,f,p,_)|0,_|0):(_=0,_|0)}function xi(A,f,p,_){A=A|0,f=f|0,p=p|0,_=_|0;var y=0,T=0,M=0,N=0,U=0,I=0,H=0,ie=0,pe=0,de=0,me=0;if(me=K,K=K+16|0,pe=me,de=me+8|0,ie=pe,d[ie>>2]=A,d[ie+4>>2]=f,(p|0)<0)return de=2,K=me,de|0;if(!p)return de=_,d[de>>2]=A,d[de+4>>2]=f,de=0,K=me,de|0;d[de>>2]=0;e:do if(Ci(A,f)|0)A=9;else{y=0,ie=A;do{if(A=cn(ie,f,4,de,pe)|0,A|0)break e;if(f=pe,ie=d[f>>2]|0,f=d[f+4>>2]|0,y=y+1|0,Ci(ie,f)|0){A=9;break e}}while((y|0)<(p|0));H=_,d[H>>2]=ie,d[H+4>>2]=f,H=p+-1|0,I=0,A=1;do{if(y=26800+(I<<2)|0,(I|0)==5)for(M=d[y>>2]|0,T=0,y=A;;){if(A=pe,A=cn(d[A>>2]|0,d[A+4>>2]|0,M,de,pe)|0,A|0)break e;if((T|0)!=(H|0))if(U=pe,N=d[U>>2]|0,U=d[U+4>>2]|0,A=_+(y<<3)|0,d[A>>2]=N,d[A+4>>2]=U,!(Ci(N,U)|0))A=y+1|0;else{A=9;break e}else A=y;if(T=T+1|0,(T|0)>=(p|0))break;y=A}else for(M=pe,U=d[y>>2]|0,N=0,y=A,T=d[M>>2]|0,M=d[M+4>>2]|0;;){if(A=cn(T,M,U,de,pe)|0,A|0)break e;if(M=pe,T=d[M>>2]|0,M=d[M+4>>2]|0,A=_+(y<<3)|0,d[A>>2]=T,d[A+4>>2]=M,A=y+1|0,Ci(T,M)|0){A=9;break e}if(N=N+1|0,(N|0)>=(p|0))break;y=A}I=I+1|0}while(I>>>0<6);A=pe,A=(ie|0)==(d[A>>2]|0)&&(f|0)==(d[A+4>>2]|0)?0:9}while(!1);return de=A,K=me,de|0}function js(A,f,p,_){A=A|0,f=f|0,p=p|0,_=_|0;var y=0,T=0,M=0,N=0,U=0,I=0,H=0,ie=0,pe=0;if(ie=K,K=K+16|0,M=ie,!p)return d[_>>2]=A,d[_+4>>2]=f,_=0,K=ie,_|0;do if((p|0)>=0){if((p|0)>13780509){if(y=Hu(15,M)|0,y|0)break;T=M,y=d[T>>2]|0,T=d[T+4>>2]|0}else y=((p|0)<0)<<31>>31,H=fr(p|0,y|0,3,0)|0,T=Z()|0,y=Qt(p|0,y|0,1,0)|0,y=fr(H|0,T|0,y|0,Z()|0)|0,y=Qt(y|0,Z()|0,1,0)|0,T=Z()|0,H=M,d[H>>2]=y,d[H+4>>2]=T;if(I=Ks(y,8)|0,!I)y=13;else{if(H=Ks(y,4)|0,!H){An(I),y=13;break}if(y=Jt(A,f,p,I,H,y,T,0)|0,y|0){An(I),An(H);break}if(f=d[M>>2]|0,M=d[M+4>>2]|0,(M|0)>0|(M|0)==0&f>>>0>0){y=0,N=0,U=0;do A=I+(N<<3)|0,T=d[A>>2]|0,A=d[A+4>>2]|0,!((T|0)==0&(A|0)==0)&&(d[H+(N<<2)>>2]|0)==(p|0)&&(pe=_+(y<<3)|0,d[pe>>2]=T,d[pe+4>>2]=A,y=y+1|0),N=Qt(N|0,U|0,1,0)|0,U=Z()|0;while((U|0)<(M|0)|(U|0)==(M|0)&N>>>0>>0)}An(I),An(H),y=0}}else y=2;while(!1);return pe=y,K=ie,pe|0}function mi(A,f,p,_){A=A|0,f=f|0,p=p|0,_=_|0;var y=0,T=0,M=0,N=0,U=0,I=0;for(N=K,K=K+16|0,T=N,M=N+8|0,y=(Ci(A,f)|0)==0,y=y?1:2;;){if(d[M>>2]=0,I=(cn(A,f,y,M,T)|0)==0,U=T,I&((d[U>>2]|0)==(p|0)?(d[U+4>>2]|0)==(_|0):0)){A=4;break}if(y=y+1|0,y>>>0>=7){y=7,A=4;break}}return(A|0)==4?(K=N,y|0):0}function Pr(A,f,p,_){A=A|0,f=f|0,p=p|0,_=_|0;var y=0,T=0,M=0,N=0,U=0,I=0;if(N=K,K=K+48|0,y=N+16|0,T=N+8|0,M=N,p=Ra(p)|0,p|0)return M=p,K=N,M|0;if(I=A,U=d[I+4>>2]|0,p=T,d[p>>2]=d[I>>2],d[p+4>>2]=U,pa(T,y),p=sf(y,f,M)|0,!p){if(f=d[T>>2]|0,T=d[A+8>>2]|0,(T|0)>0){y=d[A+12>>2]|0,p=0;do f=(d[y+(p<<3)>>2]|0)+f|0,p=p+1|0;while((p|0)<(T|0))}p=M,y=d[p>>2]|0,p=d[p+4>>2]|0,T=((f|0)<0)<<31>>31,(p|0)<(T|0)|(p|0)==(T|0)&y>>>0>>0?(p=M,d[p>>2]=f,d[p+4>>2]=T,p=T):f=y,U=Qt(f|0,p|0,12,0)|0,I=Z()|0,p=M,d[p>>2]=U,d[p+4>>2]=I,p=_,d[p>>2]=U,d[p+4>>2]=I,p=0}return I=p,K=N,I|0}function Ei(A,f,p,_,y,T,M){A=A|0,f=f|0,p=p|0,_=_|0,y=y|0,T=T|0,M=M|0;var N=0,U=0,I=0,H=0,ie=0,pe=0,de=0,me=0,Ne=0,Oe=0,Qe=0,He=0,Ve=0,De=0,Lt=0,sn=0,tn=0,Bn=0,En=0,Qn=0,Tn=0,on=0,Ut=0,vn=0,ri=0,wn=0,Ri=0,ws=0,Al=0;if(ri=K,K=K+64|0,Tn=ri+48|0,on=ri+32|0,Ut=ri+24|0,Lt=ri+8|0,sn=ri,U=d[A>>2]|0,(U|0)<=0)return vn=0,K=ri,vn|0;for(tn=A+4|0,Bn=Tn+8|0,En=on+8|0,Qn=Lt+8|0,N=0,Ve=0;;){I=d[tn>>2]|0,He=I+(Ve<<4)|0,d[Tn>>2]=d[He>>2],d[Tn+4>>2]=d[He+4>>2],d[Tn+8>>2]=d[He+8>>2],d[Tn+12>>2]=d[He+12>>2],(Ve|0)==(U+-1|0)?(d[on>>2]=d[I>>2],d[on+4>>2]=d[I+4>>2],d[on+8>>2]=d[I+8>>2],d[on+12>>2]=d[I+12>>2]):(He=I+(Ve+1<<4)|0,d[on>>2]=d[He>>2],d[on+4>>2]=d[He+4>>2],d[on+8>>2]=d[He+8>>2],d[on+12>>2]=d[He+12>>2]),U=a1(Tn,on,_,Ut)|0;e:do if(U)I=0,N=U;else if(U=Ut,I=d[U>>2]|0,U=d[U+4>>2]|0,(U|0)>0|(U|0)==0&I>>>0>0){Qe=0,He=0;t:for(;;){if(Ri=1/(+(I>>>0)+4294967296*+(U|0)),Al=+ee[Tn>>3],U=Ur(I|0,U|0,Qe|0,He|0)|0,ws=+(U>>>0)+4294967296*+(Z()|0),wn=+(Qe>>>0)+4294967296*+(He|0),ee[Lt>>3]=Ri*(Al*ws)+Ri*(+ee[on>>3]*wn),ee[Qn>>3]=Ri*(+ee[Bn>>3]*ws)+Ri*(+ee[En>>3]*wn),U=PA(Lt,_,sn)|0,U|0){N=U;break}Oe=sn,Ne=d[Oe>>2]|0,Oe=d[Oe+4>>2]|0,pe=ec(Ne|0,Oe|0,f|0,p|0)|0,H=Z()|0,U=M+(pe<<3)|0,ie=U,I=d[ie>>2]|0,ie=d[ie+4>>2]|0;n:do if((I|0)==0&(ie|0)==0)De=U,vn=16;else for(de=0,me=0;;){if((de|0)>(p|0)|(de|0)==(p|0)&me>>>0>f>>>0){N=1;break t}if((I|0)==(Ne|0)&(ie|0)==(Oe|0))break n;if(U=Qt(pe|0,H|0,1,0)|0,pe=th(U|0,Z()|0,f|0,p|0)|0,H=Z()|0,me=Qt(me|0,de|0,1,0)|0,de=Z()|0,U=M+(pe<<3)|0,ie=U,I=d[ie>>2]|0,ie=d[ie+4>>2]|0,(I|0)==0&(ie|0)==0){De=U,vn=16;break}}while(!1);if((vn|0)==16&&(vn=0,!((Ne|0)==0&(Oe|0)==0))&&(me=De,d[me>>2]=Ne,d[me+4>>2]=Oe,me=T+(d[y>>2]<<3)|0,d[me>>2]=Ne,d[me+4>>2]=Oe,me=y,me=Qt(d[me>>2]|0,d[me+4>>2]|0,1,0)|0,Ne=Z()|0,Oe=y,d[Oe>>2]=me,d[Oe+4>>2]=Ne),Qe=Qt(Qe|0,He|0,1,0)|0,He=Z()|0,U=Ut,I=d[U>>2]|0,U=d[U+4>>2]|0,!((U|0)>(He|0)|(U|0)==(He|0)&I>>>0>Qe>>>0)){I=1;break e}}I=0}else I=1;while(!1);if(Ve=Ve+1|0,!I){vn=21;break}if(U=d[A>>2]|0,(Ve|0)>=(U|0)){N=0,vn=21;break}}return(vn|0)==21?(K=ri,N|0):0}function Zh(A,f,p,_){A=A|0,f=f|0,p=p|0,_=_|0;var y=0,T=0,M=0,N=0,U=0,I=0,H=0,ie=0,pe=0,de=0,me=0,Ne=0,Oe=0,Qe=0,He=0,Ve=0,De=0,Lt=0,sn=0,tn=0,Bn=0,En=0,Qn=0,Tn=0,on=0,Ut=0,vn=0,ri=0,wn=0,Ri=0,ws=0;if(ws=K,K=K+112|0,vn=ws+80|0,U=ws+72|0,ri=ws,wn=ws+56|0,y=Ra(p)|0,y|0)return Ri=y,K=ws,Ri|0;if(I=A+8|0,Ri=Fo((d[I>>2]<<5)+32|0)|0,!Ri)return Ri=13,K=ws,Ri|0;if(Na(A,Ri),y=Ra(p)|0,!y){if(on=A,Ut=d[on+4>>2]|0,y=U,d[y>>2]=d[on>>2],d[y+4>>2]=Ut,pa(U,vn),y=sf(vn,f,ri)|0,y)on=0,Ut=0;else{if(y=d[U>>2]|0,T=d[I>>2]|0,(T|0)>0){M=d[A+12>>2]|0,p=0;do y=(d[M+(p<<3)>>2]|0)+y|0,p=p+1|0;while((p|0)!=(T|0));p=y}else p=y;y=ri,T=d[y>>2]|0,y=d[y+4>>2]|0,M=((p|0)<0)<<31>>31,(y|0)<(M|0)|(y|0)==(M|0)&T>>>0

>>0?(y=ri,d[y>>2]=p,d[y+4>>2]=M,y=M):p=T,on=Qt(p|0,y|0,12,0)|0,Ut=Z()|0,y=ri,d[y>>2]=on,d[y+4>>2]=Ut,y=0}if(!y){if(p=Ks(on,8)|0,!p)return An(Ri),Ri=13,K=ws,Ri|0;if(N=Ks(on,8)|0,!N)return An(Ri),An(p),Ri=13,K=ws,Ri|0;Qn=vn,d[Qn>>2]=0,d[Qn+4>>2]=0,Qn=A,Tn=d[Qn+4>>2]|0,y=U,d[y>>2]=d[Qn>>2],d[y+4>>2]=Tn,y=Ei(U,on,Ut,f,vn,p,N)|0;e:do if(y)An(p),An(N),An(Ri);else{t:do if((d[I>>2]|0)>0){for(M=A+12|0,T=0;y=Ei((d[M>>2]|0)+(T<<3)|0,on,Ut,f,vn,p,N)|0,T=T+1|0,!(y|0);)if((T|0)>=(d[I>>2]|0))break t;An(p),An(N),An(Ri);break e}while(!1);(Ut|0)>0|(Ut|0)==0&on>>>0>0&&uo(N|0,0,on<<3|0)|0,Tn=vn,Qn=d[Tn+4>>2]|0;t:do if((Qn|0)>0|(Qn|0)==0&(d[Tn>>2]|0)>>>0>0){tn=p,Bn=N,En=p,Qn=N,Tn=p,y=p,De=p,Lt=N,sn=N,p=N;n:for(;;){for(Oe=0,Qe=0,He=0,Ve=0,T=0,M=0;;){N=ri,U=N+56|0;do d[N>>2]=0,N=N+4|0;while((N|0)<(U|0));if(f=tn+(Oe<<3)|0,I=d[f>>2]|0,f=d[f+4>>2]|0,Rt(I,f,1,ri,0)|0){N=ri,U=N+56|0;do d[N>>2]=0,N=N+4|0;while((N|0)<(U|0));N=Ks(7,4)|0,N|0&&(Jt(I,f,1,ri,N,7,0,0)|0,An(N))}for(Ne=0;;){me=ri+(Ne<<3)|0,de=d[me>>2]|0,me=d[me+4>>2]|0;i:do if((de|0)==0&(me|0)==0)N=T,U=M;else{if(H=ec(de|0,me|0,on|0,Ut|0)|0,I=Z()|0,N=_+(H<<3)|0,f=N,U=d[f>>2]|0,f=d[f+4>>2]|0,!((U|0)==0&(f|0)==0)){ie=0,pe=0;do{if((ie|0)>(Ut|0)|(ie|0)==(Ut|0)&pe>>>0>on>>>0)break n;if((U|0)==(de|0)&(f|0)==(me|0)){N=T,U=M;break i}N=Qt(H|0,I|0,1,0)|0,H=th(N|0,Z()|0,on|0,Ut|0)|0,I=Z()|0,pe=Qt(pe|0,ie|0,1,0)|0,ie=Z()|0,N=_+(H<<3)|0,f=N,U=d[f>>2]|0,f=d[f+4>>2]|0}while(!((U|0)==0&(f|0)==0))}if((de|0)==0&(me|0)==0){N=T,U=M;break}Ol(de,me,wn)|0,Da(A,Ri,wn)|0&&(pe=Qt(T|0,M|0,1,0)|0,M=Z()|0,ie=N,d[ie>>2]=de,d[ie+4>>2]=me,T=Bn+(T<<3)|0,d[T>>2]=de,d[T+4>>2]=me,T=pe),N=T,U=M}while(!1);if(Ne=Ne+1|0,Ne>>>0>=7)break;T=N,M=U}if(Oe=Qt(Oe|0,Qe|0,1,0)|0,Qe=Z()|0,He=Qt(He|0,Ve|0,1,0)|0,Ve=Z()|0,M=vn,T=d[M>>2]|0,M=d[M+4>>2]|0,(Ve|0)<(M|0)|(Ve|0)==(M|0)&He>>>0>>0)T=N,M=U;else break}if((M|0)>0|(M|0)==0&T>>>0>0){T=0,M=0;do Ve=tn+(T<<3)|0,d[Ve>>2]=0,d[Ve+4>>2]=0,T=Qt(T|0,M|0,1,0)|0,M=Z()|0,Ve=vn,He=d[Ve+4>>2]|0;while((M|0)<(He|0)|((M|0)==(He|0)?T>>>0<(d[Ve>>2]|0)>>>0:0))}if(Ve=vn,d[Ve>>2]=N,d[Ve+4>>2]=U,(U|0)>0|(U|0)==0&N>>>0>0)Ne=p,Oe=sn,Qe=Tn,He=Lt,Ve=Bn,p=De,sn=y,Lt=En,De=Ne,y=Oe,Tn=Qn,Qn=Qe,En=He,Bn=tn,tn=Ve;else break t}An(En),An(Qn),An(Ri),y=1;break e}else y=N;while(!1);An(Ri),An(p),An(y),y=0}while(!1);return Ri=y,K=ws,Ri|0}}return An(Ri),Ri=y,K=ws,Ri|0}function Bl(A,f,p){A=A|0,f=f|0,p=p|0;var _=0,y=0,T=0,M=0,N=0,U=0,I=0,H=0;if(H=K,K=K+176|0,U=H,(f|0)<1)return Io(p,0,0),I=0,K=H,I|0;for(N=A,N=St(d[N>>2]|0,d[N+4>>2]|0,52)|0,Z()|0,Io(p,(f|0)>6?f:6,N&15),N=0;_=A+(N<<3)|0,_=Il(d[_>>2]|0,d[_+4>>2]|0,U)|0,!(_|0);){if(_=d[U>>2]|0,(_|0)>0){M=0;do T=U+8+(M<<4)|0,M=M+1|0,_=U+8+(((M|0)%(_|0)|0)<<4)|0,y=Zu(p,_,T)|0,y?Ku(p,y)|0:VA(p,T,_)|0,_=d[U>>2]|0;while((M|0)<(_|0))}if(N=N+1|0,(N|0)>=(f|0)){_=0,I=13;break}}return(I|0)==13?(K=H,_|0):(GA(p),I=_,K=H,I|0)}function nl(A,f,p){A=A|0,f=f|0,p=p|0;var _=0,y=0,T=0,M=0;if(T=K,K=K+32|0,_=T,y=T+16|0,A=Bl(A,f,y)|0,A|0)return p=A,K=T,p|0;if(d[p>>2]=0,d[p+4>>2]=0,d[p+8>>2]=0,A=qA(y)|0,A|0)do{f=M1(p)|0;do OA(f,A)|0,M=A+16|0,d[_>>2]=d[M>>2],d[_+4>>2]=d[M+4>>2],d[_+8>>2]=d[M+8>>2],d[_+12>>2]=d[M+12>>2],Ku(y,A)|0,A=As(y,_)|0;while((A|0)!=0);A=qA(y)|0}while((A|0)!=0);return GA(y),A=Rx(p)|0,A?(Wu(p),M=A,K=T,M|0):(M=0,K=T,M|0)}function Bi(A){return A=A|0,A>>>0>121?(A=0,A|0):(A=d[7696+(A*28|0)+16>>2]|0,A|0)}function Wc(A){return A=A|0,(A|0)==4|(A|0)==117|0}function Po(A){return A=A|0,d[11120+((d[A>>2]|0)*216|0)+((d[A+4>>2]|0)*72|0)+((d[A+8>>2]|0)*24|0)+(d[A+12>>2]<<3)>>2]|0}function ep(A){return A=A|0,d[11120+((d[A>>2]|0)*216|0)+((d[A+4>>2]|0)*72|0)+((d[A+8>>2]|0)*24|0)+(d[A+12>>2]<<3)+4>>2]|0}function tp(A,f){A=A|0,f=f|0,A=7696+(A*28|0)|0,d[f>>2]=d[A>>2],d[f+4>>2]=d[A+4>>2],d[f+8>>2]=d[A+8>>2],d[f+12>>2]=d[A+12>>2]}function $c(A,f){A=A|0,f=f|0;var p=0,_=0;if(f>>>0>20)return f=-1,f|0;do if((d[11120+(f*216|0)>>2]|0)!=(A|0))if((d[11120+(f*216|0)+8>>2]|0)!=(A|0))if((d[11120+(f*216|0)+16>>2]|0)!=(A|0))if((d[11120+(f*216|0)+24>>2]|0)!=(A|0))if((d[11120+(f*216|0)+32>>2]|0)!=(A|0))if((d[11120+(f*216|0)+40>>2]|0)!=(A|0))if((d[11120+(f*216|0)+48>>2]|0)!=(A|0))if((d[11120+(f*216|0)+56>>2]|0)!=(A|0))if((d[11120+(f*216|0)+64>>2]|0)!=(A|0))if((d[11120+(f*216|0)+72>>2]|0)!=(A|0))if((d[11120+(f*216|0)+80>>2]|0)!=(A|0))if((d[11120+(f*216|0)+88>>2]|0)!=(A|0))if((d[11120+(f*216|0)+96>>2]|0)!=(A|0))if((d[11120+(f*216|0)+104>>2]|0)!=(A|0))if((d[11120+(f*216|0)+112>>2]|0)!=(A|0))if((d[11120+(f*216|0)+120>>2]|0)!=(A|0))if((d[11120+(f*216|0)+128>>2]|0)!=(A|0))if((d[11120+(f*216|0)+136>>2]|0)==(A|0))A=2,p=1,_=2;else{if((d[11120+(f*216|0)+144>>2]|0)==(A|0)){A=0,p=2,_=0;break}if((d[11120+(f*216|0)+152>>2]|0)==(A|0)){A=0,p=2,_=1;break}if((d[11120+(f*216|0)+160>>2]|0)==(A|0)){A=0,p=2,_=2;break}if((d[11120+(f*216|0)+168>>2]|0)==(A|0)){A=1,p=2,_=0;break}if((d[11120+(f*216|0)+176>>2]|0)==(A|0)){A=1,p=2,_=1;break}if((d[11120+(f*216|0)+184>>2]|0)==(A|0)){A=1,p=2,_=2;break}if((d[11120+(f*216|0)+192>>2]|0)==(A|0)){A=2,p=2,_=0;break}if((d[11120+(f*216|0)+200>>2]|0)==(A|0)){A=2,p=2,_=1;break}if((d[11120+(f*216|0)+208>>2]|0)==(A|0)){A=2,p=2,_=2;break}else A=-1;return A|0}else A=2,p=1,_=1;else A=2,p=1,_=0;else A=1,p=1,_=2;else A=1,p=1,_=1;else A=1,p=1,_=0;else A=0,p=1,_=2;else A=0,p=1,_=1;else A=0,p=1,_=0;else A=2,p=0,_=2;else A=2,p=0,_=1;else A=2,p=0,_=0;else A=1,p=0,_=2;else A=1,p=0,_=1;else A=1,p=0,_=0;else A=0,p=0,_=2;else A=0,p=0,_=1;else A=0,p=0,_=0;while(!1);return f=d[11120+(f*216|0)+(p*72|0)+(A*24|0)+(_<<3)+4>>2]|0,f|0}function Ru(A,f){return A=A|0,f=f|0,(d[7696+(A*28|0)+20>>2]|0)==(f|0)?(f=1,f|0):(f=(d[7696+(A*28|0)+24>>2]|0)==(f|0),f|0)}function SA(A,f){return A=A|0,f=f|0,d[848+(A*28|0)+(f<<2)>>2]|0}function Jh(A,f){return A=A|0,f=f|0,(d[848+(A*28|0)>>2]|0)==(f|0)?(f=0,f|0):(d[848+(A*28|0)+4>>2]|0)==(f|0)?(f=1,f|0):(d[848+(A*28|0)+8>>2]|0)==(f|0)?(f=2,f|0):(d[848+(A*28|0)+12>>2]|0)==(f|0)?(f=3,f|0):(d[848+(A*28|0)+16>>2]|0)==(f|0)?(f=4,f|0):(d[848+(A*28|0)+20>>2]|0)==(f|0)?(f=5,f|0):((d[848+(A*28|0)+24>>2]|0)==(f|0)?6:7)|0}function s1(){return 122}function ef(A){A=A|0;var f=0,p=0,_=0;f=0;do Nt(f|0,0,45)|0,_=Z()|0|134225919,p=A+(f<<3)|0,d[p>>2]=-1,d[p+4>>2]=_,f=f+1|0;while((f|0)!=122);return 0}function il(A){A=A|0;var f=0,p=0,_=0;return _=+ee[A+16>>3],p=+ee[A+24>>3],f=_-p,+(_>3]<+ee[A+24>>3]|0}function tf(A){return A=A|0,+(+ee[A>>3]-+ee[A+8>>3])}function Lo(A,f){A=A|0,f=f|0;var p=0,_=0,y=0;return p=+ee[f>>3],!(p>=+ee[A+8>>3])||!(p<=+ee[A>>3])?(f=0,f|0):(_=+ee[A+16>>3],p=+ee[A+24>>3],y=+ee[f+8>>3],f=y>=p,A=y<=_&1,_>3]<+ee[f+8>>3]||+ee[A+8>>3]>+ee[f>>3]?(_=0,_|0):(T=+ee[A+16>>3],p=A+24|0,H=+ee[p>>3],M=T>3],y=f+24|0,U=+ee[y>>3],N=I>3],f)||(H=+Xs(+ee[p>>3],A),H>+Xs(+ee[_>>3],f))?(N=0,N|0):(N=1,N|0))}function wA(A,f,p,_){A=A|0,f=f|0,p=p|0,_=_|0;var y=0,T=0,M=0,N=0,U=0;T=+ee[A+16>>3],U=+ee[A+24>>3],A=T>3],M=+ee[f+24>>3],y=N>2]=A?y|f?1:2:0,d[_>>2]=y?A?1:f?2:1:0}function np(A,f){A=A|0,f=f|0;var p=0,_=0,y=0,T=0,M=0,N=0,U=0,I=0,H=0;return+ee[A>>3]<+ee[f>>3]||+ee[A+8>>3]>+ee[f+8>>3]?(_=0,_|0):(_=A+16|0,U=+ee[_>>3],T=+ee[A+24>>3],M=U>3],y=f+24|0,I=+ee[y>>3],N=H>3],f)?(H=+Xs(+ee[_>>3],A),N=H>=+Xs(+ee[p>>3],f),N|0):(N=0,N|0))}function rf(A,f){A=A|0,f=f|0;var p=0,_=0,y=0,T=0,M=0,N=0;y=K,K=K+176|0,_=y,d[_>>2]=4,N=+ee[f>>3],ee[_+8>>3]=N,T=+ee[f+16>>3],ee[_+16>>3]=T,ee[_+24>>3]=N,N=+ee[f+24>>3],ee[_+32>>3]=N,M=+ee[f+8>>3],ee[_+40>>3]=M,ee[_+48>>3]=N,ee[_+56>>3]=M,ee[_+64>>3]=T,f=_+72|0,p=f+96|0;do d[f>>2]=0,f=f+4|0;while((f|0)<(p|0));Gl(A|0,_|0,168)|0,K=y}function sf(A,f,p){A=A|0,f=f|0,p=p|0;var _=0,y=0,T=0,M=0,N=0,U=0,I=0,H=0,ie=0,pe=0,de=0,me=0,Ne=0,Oe=0;me=K,K=K+288|0,H=me+264|0,ie=me+96|0,I=me,N=I,U=N+96|0;do d[N>>2]=0,N=N+4|0;while((N|0)<(U|0));return f=qu(f,I)|0,f|0?(de=f,K=me,de|0):(U=I,I=d[U>>2]|0,U=d[U+4>>2]|0,Ol(I,U,H)|0,Il(I,U,ie)|0,M=+Zc(H,ie+8|0),ee[H>>3]=+ee[A>>3],U=H+8|0,ee[U>>3]=+ee[A+16>>3],ee[ie>>3]=+ee[A+8>>3],I=ie+8|0,ee[I>>3]=+ee[A+24>>3],y=+Zc(H,ie),Oe=+ee[U>>3]-+ee[I>>3],T=+un(+Oe),Ne=+ee[H>>3]-+ee[ie>>3],_=+un(+Ne),!(Oe==0|Ne==0)&&(Oe=+Af(+T,+_),Oe=+Ke(+(y*y/+df(+(Oe/+df(+T,+_)),3)/(M*(M*2.59807621135)*.8))),ee[$n>>3]=Oe,pe=~~Oe>>>0,de=+un(Oe)>=1?Oe>0?~~+ke(+Xn(Oe/4294967296),4294967295)>>>0:~~+Ke((Oe-+(~~Oe>>>0))/4294967296)>>>0:0,(d[$n+4>>2]&2146435072|0)!=2146435072)?(ie=(pe|0)==0&(de|0)==0,f=p,d[f>>2]=ie?1:pe,d[f+4>>2]=ie?0:de,f=0):f=1,de=f,K=me,de|0)}function a1(A,f,p,_){A=A|0,f=f|0,p=p|0,_=_|0;var y=0,T=0,M=0,N=0,U=0,I=0,H=0;I=K,K=K+288|0,M=I+264|0,N=I+96|0,U=I,y=U,T=y+96|0;do d[y>>2]=0,y=y+4|0;while((y|0)<(T|0));return p=qu(p,U)|0,p|0?(_=p,K=I,_|0):(p=U,y=d[p>>2]|0,p=d[p+4>>2]|0,Ol(y,p,M)|0,Il(y,p,N)|0,H=+Zc(M,N+8|0),H=+Ke(+(+Zc(A,f)/(H*2))),ee[$n>>3]=H,p=~~H>>>0,y=+un(H)>=1?H>0?~~+ke(+Xn(H/4294967296),4294967295)>>>0:~~+Ke((H-+(~~H>>>0))/4294967296)>>>0:0,(d[$n+4>>2]&2146435072|0)==2146435072?(_=1,K=I,_|0):(U=(p|0)==0&(y|0)==0,d[_>>2]=U?1:p,d[_+4>>2]=U?0:y,_=0,K=I,_|0))}function Ws(A,f){A=A|0,f=+f;var p=0,_=0,y=0,T=0,M=0,N=0,U=0,I=0,H=0;T=A+16|0,M=+ee[T>>3],p=A+24|0,y=+ee[p>>3],_=M-y,_=M>3],N=A+8|0,U=+ee[N>>3],H=I-U,_=(_*f-_)*.5,f=(H*f-H)*.5,I=I+f,ee[A>>3]=I>1.5707963267948966?1.5707963267948966:I,f=U-f,ee[N>>3]=f<-1.5707963267948966?-1.5707963267948966:f,f=M+_,f=f>3.141592653589793?f+-6.283185307179586:f,ee[T>>3]=f<-3.141592653589793?f+6.283185307179586:f,f=y-_,f=f>3.141592653589793?f+-6.283185307179586:f,ee[p>>3]=f<-3.141592653589793?f+6.283185307179586:f}function Nu(A,f,p,_){A=A|0,f=f|0,p=p|0,_=_|0,d[A>>2]=f,d[A+4>>2]=p,d[A+8>>2]=_}function MA(A,f){A=A|0,f=f|0;var p=0,_=0,y=0,T=0,M=0,N=0,U=0,I=0,H=0,ie=0,pe=0;ie=f+8|0,d[ie>>2]=0,U=+ee[A>>3],M=+un(+U),I=+ee[A+8>>3],N=+un(+I)*1.1547005383792515,M=M+N*.5,p=~~M,A=~~N,M=M-+(p|0),N=N-+(A|0);do if(M<.5)if(M<.3333333333333333)if(d[f>>2]=p,N<(M+1)*.5){d[f+4>>2]=A;break}else{A=A+1|0,d[f+4>>2]=A;break}else if(pe=1-M,A=(!(N>2]=A,pe<=N&N>2]=p;break}else{d[f>>2]=p;break}else{if(!(M<.6666666666666666))if(p=p+1|0,d[f>>2]=p,N>2]=A;break}else{A=A+1|0,d[f+4>>2]=A;break}if(N<1-M){if(d[f+4>>2]=A,M*2+-1>2]=p;break}}else A=A+1|0,d[f+4>>2]=A;p=p+1|0,d[f>>2]=p}while(!1);do if(U<0)if(A&1){H=(A+1|0)/2|0,H=Ur(p|0,((p|0)<0)<<31>>31|0,H|0,((H|0)<0)<<31>>31|0)|0,p=~~(+(p|0)-((+(H>>>0)+4294967296*+(Z()|0))*2+1)),d[f>>2]=p;break}else{H=(A|0)/2|0,H=Ur(p|0,((p|0)<0)<<31>>31|0,H|0,((H|0)<0)<<31>>31|0)|0,p=~~(+(p|0)-(+(H>>>0)+4294967296*+(Z()|0))*2),d[f>>2]=p;break}while(!1);H=f+4|0,I<0&&(p=p-((A<<1|1|0)/2|0)|0,d[f>>2]=p,A=0-A|0,d[H>>2]=A),_=A-p|0,(p|0)<0?(y=0-p|0,d[H>>2]=_,d[ie>>2]=y,d[f>>2]=0,A=_,p=0):y=0,(A|0)<0&&(p=p-A|0,d[f>>2]=p,y=y-A|0,d[ie>>2]=y,d[H>>2]=0,A=0),T=p-y|0,_=A-y|0,(y|0)<0&&(d[f>>2]=T,d[H>>2]=_,d[ie>>2]=0,A=_,p=T,y=0),_=(A|0)<(p|0)?A:p,_=(y|0)<(_|0)?y:_,!((_|0)<=0)&&(d[f>>2]=p-_,d[H>>2]=A-_,d[ie>>2]=y-_)}function Lr(A){A=A|0;var f=0,p=0,_=0,y=0,T=0,M=0;f=d[A>>2]|0,M=A+4|0,p=d[M>>2]|0,(f|0)<0&&(p=p-f|0,d[M>>2]=p,T=A+8|0,d[T>>2]=(d[T>>2]|0)-f,d[A>>2]=0,f=0),(p|0)<0?(f=f-p|0,d[A>>2]=f,T=A+8|0,y=(d[T>>2]|0)-p|0,d[T>>2]=y,d[M>>2]=0,p=0):(y=A+8|0,T=y,y=d[y>>2]|0),(y|0)<0&&(f=f-y|0,d[A>>2]=f,p=p-y|0,d[M>>2]=p,d[T>>2]=0,y=0),_=(p|0)<(f|0)?p:f,_=(y|0)<(_|0)?y:_,!((_|0)<=0)&&(d[A>>2]=f-_,d[M>>2]=p-_,d[T>>2]=y-_)}function Du(A,f){A=A|0,f=f|0;var p=0,_=0;_=d[A+8>>2]|0,p=+((d[A+4>>2]|0)-_|0),ee[f>>3]=+((d[A>>2]|0)-_|0)-p*.5,ee[f+8>>3]=p*.8660254037844386}function hs(A,f,p){A=A|0,f=f|0,p=p|0,d[p>>2]=(d[f>>2]|0)+(d[A>>2]|0),d[p+4>>2]=(d[f+4>>2]|0)+(d[A+4>>2]|0),d[p+8>>2]=(d[f+8>>2]|0)+(d[A+8>>2]|0)}function af(A,f,p){A=A|0,f=f|0,p=p|0,d[p>>2]=(d[A>>2]|0)-(d[f>>2]|0),d[p+4>>2]=(d[A+4>>2]|0)-(d[f+4>>2]|0),d[p+8>>2]=(d[A+8>>2]|0)-(d[f+8>>2]|0)}function Xc(A,f){A=A|0,f=f|0;var p=0,_=0;p=Xe(d[A>>2]|0,f)|0,d[A>>2]=p,p=A+4|0,_=Xe(d[p>>2]|0,f)|0,d[p>>2]=_,A=A+8|0,f=Xe(d[A>>2]|0,f)|0,d[A>>2]=f}function Pu(A){A=A|0;var f=0,p=0,_=0,y=0,T=0,M=0,N=0;M=d[A>>2]|0,N=(M|0)<0,_=(d[A+4>>2]|0)-(N?M:0)|0,T=(_|0)<0,y=(T?0-_|0:0)+((d[A+8>>2]|0)-(N?M:0))|0,p=(y|0)<0,A=p?0:y,f=(T?0:_)-(p?y:0)|0,y=(N?0:M)-(T?_:0)-(p?y:0)|0,p=(f|0)<(y|0)?f:y,p=(A|0)<(p|0)?A:p,_=(p|0)>0,A=A-(_?p:0)|0,f=f-(_?p:0)|0;e:do switch(y-(_?p:0)|0){case 0:switch(f|0){case 0:return N=(A|0)==0?0:(A|0)==1?1:7,N|0;case 1:return N=(A|0)==0?2:(A|0)==1?3:7,N|0;default:break e}case 1:switch(f|0){case 0:return N=(A|0)==0?4:(A|0)==1?5:7,N|0;case 1:{if(!A)A=6;else break e;return A|0}default:break e}}while(!1);return N=7,N|0}function o1(A){A=A|0;var f=0,p=0,_=0,y=0,T=0,M=0,N=0,U=0,I=0;if(U=A+8|0,M=d[U>>2]|0,N=(d[A>>2]|0)-M|0,I=A+4|0,M=(d[I>>2]|0)-M|0,N>>>0>715827881|M>>>0>715827881){if(_=(N|0)>0,y=2147483647-N|0,T=-2147483648-N|0,(_?(y|0)<(N|0):(T|0)>(N|0))||(p=N<<1,_?(2147483647-p|0)<(N|0):(-2147483648-p|0)>(N|0))||((M|0)>0?(2147483647-M|0)<(M|0):(-2147483648-M|0)>(M|0))||(f=N*3|0,p=M<<1,(_?(y|0)<(p|0):(T|0)>(p|0))||((N|0)>-1?(f|-2147483648|0)>=(M|0):(f^-2147483648|0)<(M|0))))return I=1,I|0}else p=M<<1,f=N*3|0;return _=cl(+(f-M|0)*.14285714285714285)|0,d[A>>2]=_,y=cl(+(p+N|0)*.14285714285714285)|0,d[I>>2]=y,d[U>>2]=0,p=(y|0)<(_|0),f=p?_:y,p=p?y:_,(p|0)<0&&(((p|0)==-2147483648||((f|0)>0?(2147483647-f|0)<(p|0):(-2147483648-f|0)>(p|0)))&&Bt(27795,26892,354,26903),((f|0)>-1?(f|-2147483648|0)>=(p|0):(f^-2147483648|0)<(p|0))&&Bt(27795,26892,354,26903)),f=y-_|0,(_|0)<0?(p=0-_|0,d[I>>2]=f,d[U>>2]=p,d[A>>2]=0,_=0):(f=y,p=0),(f|0)<0&&(_=_-f|0,d[A>>2]=_,p=p-f|0,d[U>>2]=p,d[I>>2]=0,f=0),T=_-p|0,y=f-p|0,(p|0)<0?(d[A>>2]=T,d[I>>2]=y,d[U>>2]=0,f=y,y=T,p=0):y=_,_=(f|0)<(y|0)?f:y,_=(p|0)<(_|0)?p:_,(_|0)<=0?(I=0,I|0):(d[A>>2]=y-_,d[I>>2]=f-_,d[U>>2]=p-_,I=0,I|0)}function cx(A){A=A|0;var f=0,p=0,_=0,y=0,T=0,M=0,N=0,U=0;if(M=A+8|0,y=d[M>>2]|0,T=(d[A>>2]|0)-y|0,N=A+4|0,y=(d[N>>2]|0)-y|0,T>>>0>715827881|y>>>0>715827881){if(p=(T|0)>0,(p?(2147483647-T|0)<(T|0):(-2147483648-T|0)>(T|0))||(f=T<<1,_=(y|0)>0,_?(2147483647-y|0)<(y|0):(-2147483648-y|0)>(y|0)))return N=1,N|0;if(U=y<<1,(_?(2147483647-U|0)<(y|0):(-2147483648-U|0)>(y|0))||(p?(2147483647-f|0)<(y|0):(-2147483648-f|0)>(y|0))||(p=y*3|0,(y|0)>-1?(p|-2147483648|0)>=(T|0):(p^-2147483648|0)<(T|0)))return U=1,U|0}else p=y*3|0,f=T<<1;return _=cl(+(f+y|0)*.14285714285714285)|0,d[A>>2]=_,y=cl(+(p-T|0)*.14285714285714285)|0,d[N>>2]=y,d[M>>2]=0,p=(y|0)<(_|0),f=p?_:y,p=p?y:_,(p|0)<0&&(((p|0)==-2147483648||((f|0)>0?(2147483647-f|0)<(p|0):(-2147483648-f|0)>(p|0)))&&Bt(27795,26892,402,26917),((f|0)>-1?(f|-2147483648|0)>=(p|0):(f^-2147483648|0)<(p|0))&&Bt(27795,26892,402,26917)),f=y-_|0,(_|0)<0?(p=0-_|0,d[N>>2]=f,d[M>>2]=p,d[A>>2]=0,_=0):(f=y,p=0),(f|0)<0&&(_=_-f|0,d[A>>2]=_,p=p-f|0,d[M>>2]=p,d[N>>2]=0,f=0),T=_-p|0,y=f-p|0,(p|0)<0?(d[A>>2]=T,d[N>>2]=y,d[M>>2]=0,f=y,y=T,p=0):y=_,_=(f|0)<(y|0)?f:y,_=(p|0)<(_|0)?p:_,(_|0)<=0?(U=0,U|0):(d[A>>2]=y-_,d[N>>2]=f-_,d[M>>2]=p-_,U=0,U|0)}function hx(A){A=A|0;var f=0,p=0,_=0,y=0,T=0,M=0,N=0;M=A+8|0,p=d[M>>2]|0,f=(d[A>>2]|0)-p|0,N=A+4|0,p=(d[N>>2]|0)-p|0,_=cl(+((f*3|0)-p|0)*.14285714285714285)|0,d[A>>2]=_,f=cl(+((p<<1)+f|0)*.14285714285714285)|0,d[N>>2]=f,d[M>>2]=0,p=f-_|0,(_|0)<0?(T=0-_|0,d[N>>2]=p,d[M>>2]=T,d[A>>2]=0,f=p,_=0,p=T):p=0,(f|0)<0&&(_=_-f|0,d[A>>2]=_,p=p-f|0,d[M>>2]=p,d[N>>2]=0,f=0),T=_-p|0,y=f-p|0,(p|0)<0?(d[A>>2]=T,d[N>>2]=y,d[M>>2]=0,f=y,y=T,p=0):y=_,_=(f|0)<(y|0)?f:y,_=(p|0)<(_|0)?p:_,!((_|0)<=0)&&(d[A>>2]=y-_,d[N>>2]=f-_,d[M>>2]=p-_)}function l1(A){A=A|0;var f=0,p=0,_=0,y=0,T=0,M=0,N=0;M=A+8|0,p=d[M>>2]|0,f=(d[A>>2]|0)-p|0,N=A+4|0,p=(d[N>>2]|0)-p|0,_=cl(+((f<<1)+p|0)*.14285714285714285)|0,d[A>>2]=_,f=cl(+((p*3|0)-f|0)*.14285714285714285)|0,d[N>>2]=f,d[M>>2]=0,p=f-_|0,(_|0)<0?(T=0-_|0,d[N>>2]=p,d[M>>2]=T,d[A>>2]=0,f=p,_=0,p=T):p=0,(f|0)<0&&(_=_-f|0,d[A>>2]=_,p=p-f|0,d[M>>2]=p,d[N>>2]=0,f=0),T=_-p|0,y=f-p|0,(p|0)<0?(d[A>>2]=T,d[N>>2]=y,d[M>>2]=0,f=y,y=T,p=0):y=_,_=(f|0)<(y|0)?f:y,_=(p|0)<(_|0)?p:_,!((_|0)<=0)&&(d[A>>2]=y-_,d[N>>2]=f-_,d[M>>2]=p-_)}function Yc(A){A=A|0;var f=0,p=0,_=0,y=0,T=0,M=0,N=0;f=d[A>>2]|0,M=A+4|0,p=d[M>>2]|0,N=A+8|0,_=d[N>>2]|0,y=p+(f*3|0)|0,d[A>>2]=y,p=_+(p*3|0)|0,d[M>>2]=p,f=(_*3|0)+f|0,d[N>>2]=f,_=p-y|0,(y|0)<0?(f=f-y|0,d[M>>2]=_,d[N>>2]=f,d[A>>2]=0,p=_,_=0):_=y,(p|0)<0&&(_=_-p|0,d[A>>2]=_,f=f-p|0,d[N>>2]=f,d[M>>2]=0,p=0),T=_-f|0,y=p-f|0,(f|0)<0?(d[A>>2]=T,d[M>>2]=y,d[N>>2]=0,_=T,f=0):y=p,p=(y|0)<(_|0)?y:_,p=(f|0)<(p|0)?f:p,!((p|0)<=0)&&(d[A>>2]=_-p,d[M>>2]=y-p,d[N>>2]=f-p)}function Lu(A){A=A|0;var f=0,p=0,_=0,y=0,T=0,M=0,N=0;y=d[A>>2]|0,M=A+4|0,f=d[M>>2]|0,N=A+8|0,p=d[N>>2]|0,_=(f*3|0)+y|0,y=p+(y*3|0)|0,d[A>>2]=y,d[M>>2]=_,f=(p*3|0)+f|0,d[N>>2]=f,p=_-y|0,(y|0)<0?(f=f-y|0,d[M>>2]=p,d[N>>2]=f,d[A>>2]=0,y=0):p=_,(p|0)<0&&(y=y-p|0,d[A>>2]=y,f=f-p|0,d[N>>2]=f,d[M>>2]=0,p=0),T=y-f|0,_=p-f|0,(f|0)<0?(d[A>>2]=T,d[M>>2]=_,d[N>>2]=0,y=T,f=0):_=p,p=(_|0)<(y|0)?_:y,p=(f|0)<(p|0)?f:p,!((p|0)<=0)&&(d[A>>2]=y-p,d[M>>2]=_-p,d[N>>2]=f-p)}function u1(A,f){A=A|0,f=f|0;var p=0,_=0,y=0,T=0,M=0,N=0;(f+-1|0)>>>0>=6||(y=(d[15440+(f*12|0)>>2]|0)+(d[A>>2]|0)|0,d[A>>2]=y,N=A+4|0,_=(d[15440+(f*12|0)+4>>2]|0)+(d[N>>2]|0)|0,d[N>>2]=_,M=A+8|0,f=(d[15440+(f*12|0)+8>>2]|0)+(d[M>>2]|0)|0,d[M>>2]=f,p=_-y|0,(y|0)<0?(f=f-y|0,d[N>>2]=p,d[M>>2]=f,d[A>>2]=0,_=0):(p=_,_=y),(p|0)<0&&(_=_-p|0,d[A>>2]=_,f=f-p|0,d[M>>2]=f,d[N>>2]=0,p=0),T=_-f|0,y=p-f|0,(f|0)<0?(d[A>>2]=T,d[N>>2]=y,d[M>>2]=0,_=T,f=0):y=p,p=(y|0)<(_|0)?y:_,p=(f|0)<(p|0)?f:p,!((p|0)<=0)&&(d[A>>2]=_-p,d[N>>2]=y-p,d[M>>2]=f-p))}function c1(A){A=A|0;var f=0,p=0,_=0,y=0,T=0,M=0,N=0;y=d[A>>2]|0,M=A+4|0,f=d[M>>2]|0,N=A+8|0,p=d[N>>2]|0,_=f+y|0,y=p+y|0,d[A>>2]=y,d[M>>2]=_,f=p+f|0,d[N>>2]=f,p=_-y|0,(y|0)<0?(f=f-y|0,d[M>>2]=p,d[N>>2]=f,d[A>>2]=0,_=0):(p=_,_=y),(p|0)<0&&(_=_-p|0,d[A>>2]=_,f=f-p|0,d[N>>2]=f,d[M>>2]=0,p=0),T=_-f|0,y=p-f|0,(f|0)<0?(d[A>>2]=T,d[M>>2]=y,d[N>>2]=0,_=T,f=0):y=p,p=(y|0)<(_|0)?y:_,p=(f|0)<(p|0)?f:p,!((p|0)<=0)&&(d[A>>2]=_-p,d[M>>2]=y-p,d[N>>2]=f-p)}function EA(A){A=A|0;var f=0,p=0,_=0,y=0,T=0,M=0,N=0;f=d[A>>2]|0,M=A+4|0,_=d[M>>2]|0,N=A+8|0,p=d[N>>2]|0,y=_+f|0,d[A>>2]=y,_=p+_|0,d[M>>2]=_,f=p+f|0,d[N>>2]=f,p=_-y|0,(y|0)<0?(f=f-y|0,d[M>>2]=p,d[N>>2]=f,d[A>>2]=0,_=0):(p=_,_=y),(p|0)<0&&(_=_-p|0,d[A>>2]=_,f=f-p|0,d[N>>2]=f,d[M>>2]=0,p=0),T=_-f|0,y=p-f|0,(f|0)<0?(d[A>>2]=T,d[M>>2]=y,d[N>>2]=0,_=T,f=0):y=p,p=(y|0)<(_|0)?y:_,p=(f|0)<(p|0)?f:p,!((p|0)<=0)&&(d[A>>2]=_-p,d[M>>2]=y-p,d[N>>2]=f-p)}function Uu(A){switch(A=A|0,A|0){case 1:{A=5;break}case 5:{A=4;break}case 4:{A=6;break}case 6:{A=2;break}case 2:{A=3;break}case 3:{A=1;break}}return A|0}function rl(A){switch(A=A|0,A|0){case 1:{A=3;break}case 3:{A=2;break}case 2:{A=6;break}case 6:{A=4;break}case 4:{A=5;break}case 5:{A=1;break}}return A|0}function h1(A){A=A|0;var f=0,p=0,_=0,y=0,T=0,M=0,N=0;f=d[A>>2]|0,M=A+4|0,p=d[M>>2]|0,N=A+8|0,_=d[N>>2]|0,y=p+(f<<1)|0,d[A>>2]=y,p=_+(p<<1)|0,d[M>>2]=p,f=(_<<1)+f|0,d[N>>2]=f,_=p-y|0,(y|0)<0?(f=f-y|0,d[M>>2]=_,d[N>>2]=f,d[A>>2]=0,p=_,_=0):_=y,(p|0)<0&&(_=_-p|0,d[A>>2]=_,f=f-p|0,d[N>>2]=f,d[M>>2]=0,p=0),T=_-f|0,y=p-f|0,(f|0)<0?(d[A>>2]=T,d[M>>2]=y,d[N>>2]=0,_=T,f=0):y=p,p=(y|0)<(_|0)?y:_,p=(f|0)<(p|0)?f:p,!((p|0)<=0)&&(d[A>>2]=_-p,d[M>>2]=y-p,d[N>>2]=f-p)}function f1(A){A=A|0;var f=0,p=0,_=0,y=0,T=0,M=0,N=0;y=d[A>>2]|0,M=A+4|0,f=d[M>>2]|0,N=A+8|0,p=d[N>>2]|0,_=(f<<1)+y|0,y=p+(y<<1)|0,d[A>>2]=y,d[M>>2]=_,f=(p<<1)+f|0,d[N>>2]=f,p=_-y|0,(y|0)<0?(f=f-y|0,d[M>>2]=p,d[N>>2]=f,d[A>>2]=0,y=0):p=_,(p|0)<0&&(y=y-p|0,d[A>>2]=y,f=f-p|0,d[N>>2]=f,d[M>>2]=0,p=0),T=y-f|0,_=p-f|0,(f|0)<0?(d[A>>2]=T,d[M>>2]=_,d[N>>2]=0,y=T,f=0):_=p,p=(_|0)<(y|0)?_:y,p=(f|0)<(p|0)?f:p,!((p|0)<=0)&&(d[A>>2]=y-p,d[M>>2]=_-p,d[N>>2]=f-p)}function ip(A,f){A=A|0,f=f|0;var p=0,_=0,y=0,T=0,M=0,N=0;return M=(d[A>>2]|0)-(d[f>>2]|0)|0,N=(M|0)<0,_=(d[A+4>>2]|0)-(d[f+4>>2]|0)-(N?M:0)|0,T=(_|0)<0,y=(N?0-M|0:0)+(d[A+8>>2]|0)-(d[f+8>>2]|0)+(T?0-_|0:0)|0,A=(y|0)<0,f=A?0:y,p=(T?0:_)-(A?y:0)|0,y=(N?0:M)-(T?_:0)-(A?y:0)|0,A=(p|0)<(y|0)?p:y,A=(f|0)<(A|0)?f:A,_=(A|0)>0,f=f-(_?A:0)|0,p=p-(_?A:0)|0,A=y-(_?A:0)|0,A=(A|0)>-1?A:0-A|0,p=(p|0)>-1?p:0-p|0,f=(f|0)>-1?f:0-f|0,f=(p|0)>(f|0)?p:f,((A|0)>(f|0)?A:f)|0}function fx(A,f){A=A|0,f=f|0;var p=0;p=d[A+8>>2]|0,d[f>>2]=(d[A>>2]|0)-p,d[f+4>>2]=(d[A+4>>2]|0)-p}function rp(A,f){A=A|0,f=f|0;var p=0,_=0,y=0,T=0,M=0,N=0;return _=d[A>>2]|0,d[f>>2]=_,y=d[A+4>>2]|0,M=f+4|0,d[M>>2]=y,N=f+8|0,d[N>>2]=0,p=(y|0)<(_|0),A=p?_:y,p=p?y:_,(p|0)<0&&((p|0)==-2147483648||((A|0)>0?(2147483647-A|0)<(p|0):(-2147483648-A|0)>(p|0))||((A|0)>-1?(A|-2147483648|0)>=(p|0):(A^-2147483648|0)<(p|0)))?(f=1,f|0):(A=y-_|0,(_|0)<0?(p=0-_|0,d[M>>2]=A,d[N>>2]=p,d[f>>2]=0,_=0):(A=y,p=0),(A|0)<0&&(_=_-A|0,d[f>>2]=_,p=p-A|0,d[N>>2]=p,d[M>>2]=0,A=0),T=_-p|0,y=A-p|0,(p|0)<0?(d[f>>2]=T,d[M>>2]=y,d[N>>2]=0,A=y,y=T,p=0):y=_,_=(A|0)<(y|0)?A:y,_=(p|0)<(_|0)?p:_,(_|0)<=0?(f=0,f|0):(d[f>>2]=y-_,d[M>>2]=A-_,d[N>>2]=p-_,f=0,f|0))}function A1(A){A=A|0;var f=0,p=0,_=0,y=0;f=A+8|0,y=d[f>>2]|0,p=y-(d[A>>2]|0)|0,d[A>>2]=p,_=A+4|0,A=(d[_>>2]|0)-y|0,d[_>>2]=A,d[f>>2]=0-(A+p)}function Ax(A){A=A|0;var f=0,p=0,_=0,y=0,T=0,M=0,N=0;p=d[A>>2]|0,f=0-p|0,d[A>>2]=f,M=A+8|0,d[M>>2]=0,N=A+4|0,_=d[N>>2]|0,y=_+p|0,(p|0)>0?(d[N>>2]=y,d[M>>2]=p,d[A>>2]=0,f=0,_=y):p=0,(_|0)<0?(T=f-_|0,d[A>>2]=T,p=p-_|0,d[M>>2]=p,d[N>>2]=0,y=T-p|0,f=0-p|0,(p|0)<0?(d[A>>2]=y,d[N>>2]=f,d[M>>2]=0,_=f,p=0):(_=0,y=T)):y=f,f=(_|0)<(y|0)?_:y,f=(p|0)<(f|0)?p:f,!((f|0)<=0)&&(d[A>>2]=y-f,d[N>>2]=_-f,d[M>>2]=p-f)}function dx(A,f,p,_,y){A=A|0,f=f|0,p=p|0,_=_|0,y=y|0;var T=0,M=0,N=0,U=0,I=0,H=0,ie=0;if(ie=K,K=K+64|0,H=ie,N=ie+56|0,!(!0&(f&2013265920|0)==134217728&(!0&(_&2013265920|0)==134217728)))return y=5,K=ie,y|0;if((A|0)==(p|0)&(f|0)==(_|0))return d[y>>2]=0,y=0,K=ie,y|0;if(M=St(A|0,f|0,52)|0,Z()|0,M=M&15,I=St(p|0,_|0,52)|0,Z()|0,(M|0)!=(I&15|0))return y=12,K=ie,y|0;if(T=M+-1|0,M>>>0>1){Fu(A,f,T,H)|0,Fu(p,_,T,N)|0,I=H,U=d[I>>2]|0,I=d[I+4>>2]|0;e:do if((U|0)==(d[N>>2]|0)&&(I|0)==(d[N+4>>2]|0)){M=(M^15)*3|0,T=St(A|0,f|0,M|0)|0,Z()|0,T=T&7,M=St(p|0,_|0,M|0)|0,Z()|0,M=M&7;do if((T|0)==0|(M|0)==0)d[y>>2]=1,T=0;else if((T|0)==7)T=5;else{if((T|0)==1|(M|0)==1&&Ci(U,I)|0){T=5;break}if((d[15536+(T<<2)>>2]|0)!=(M|0)&&(d[15568+(T<<2)>>2]|0)!=(M|0))break e;d[y>>2]=1,T=0}while(!1);return y=T,K=ie,y|0}while(!1)}T=H,M=T+56|0;do d[T>>2]=0,T=T+4|0;while((T|0)<(M|0));return _e(A,f,1,H)|0,f=H,!((d[f>>2]|0)==(p|0)&&(d[f+4>>2]|0)==(_|0))&&(f=H+8|0,!((d[f>>2]|0)==(p|0)&&(d[f+4>>2]|0)==(_|0)))&&(f=H+16|0,!((d[f>>2]|0)==(p|0)&&(d[f+4>>2]|0)==(_|0)))&&(f=H+24|0,!((d[f>>2]|0)==(p|0)&&(d[f+4>>2]|0)==(_|0)))&&(f=H+32|0,!((d[f>>2]|0)==(p|0)&&(d[f+4>>2]|0)==(_|0)))&&(f=H+40|0,!((d[f>>2]|0)==(p|0)&&(d[f+4>>2]|0)==(_|0)))?(T=H+48|0,T=((d[T>>2]|0)==(p|0)?(d[T+4>>2]|0)==(_|0):0)&1):T=1,d[y>>2]=T,y=0,K=ie,y|0}function d1(A,f,p,_,y){return A=A|0,f=f|0,p=p|0,_=_|0,y=y|0,p=mi(A,f,p,_)|0,(p|0)==7?(y=11,y|0):(_=Nt(p|0,0,56)|0,f=f&-2130706433|(Z()|0)|268435456,d[y>>2]=A|_,d[y+4>>2]=f,y=0,y|0)}function px(A,f,p){return A=A|0,f=f|0,p=p|0,!0&(f&2013265920|0)==268435456?(d[p>>2]=A,d[p+4>>2]=f&-2130706433|134217728,p=0,p|0):(p=6,p|0)}function mx(A,f,p){A=A|0,f=f|0,p=p|0;var _=0,y=0,T=0;return y=K,K=K+16|0,_=y,d[_>>2]=0,!0&(f&2013265920|0)==268435456?(T=St(A|0,f|0,56)|0,Z()|0,_=cn(A,f&-2130706433|134217728,T&7,_,p)|0,K=y,_|0):(_=6,K=y,_|0)}function p1(A,f){A=A|0,f=f|0;var p=0;switch(p=St(A|0,f|0,56)|0,Z()|0,p&7){case 0:case 7:return p=0,p|0}return p=f&-2130706433|134217728,!(!0&(f&2013265920|0)==268435456)||!0&(f&117440512|0)==16777216&(Ci(A,p)|0)!=0?(p=0,p|0):(p=NA(A,p)|0,p|0)}function gx(A,f,p){A=A|0,f=f|0,p=p|0;var _=0,y=0,T=0,M=0;return y=K,K=K+16|0,_=y,!0&(f&2013265920|0)==268435456?(T=f&-2130706433|134217728,M=p,d[M>>2]=A,d[M+4>>2]=T,d[_>>2]=0,f=St(A|0,f|0,56)|0,Z()|0,_=cn(A,T,f&7,_,p+8|0)|0,K=y,_|0):(_=6,K=y,_|0)}function vx(A,f,p){A=A|0,f=f|0,p=p|0;var _=0,y=0;return y=(Ci(A,f)|0)==0,f=f&-2130706433,_=p,d[_>>2]=y?A:0,d[_+4>>2]=y?f|285212672:0,_=p+8|0,d[_>>2]=A,d[_+4>>2]=f|301989888,_=p+16|0,d[_>>2]=A,d[_+4>>2]=f|318767104,_=p+24|0,d[_>>2]=A,d[_+4>>2]=f|335544320,_=p+32|0,d[_>>2]=A,d[_+4>>2]=f|352321536,p=p+40|0,d[p>>2]=A,d[p+4>>2]=f|369098752,0}function CA(A,f,p){A=A|0,f=f|0,p=p|0;var _=0,y=0,T=0,M=0;return M=K,K=K+16|0,y=M,T=f&-2130706433|134217728,!0&(f&2013265920|0)==268435456?(_=St(A|0,f|0,56)|0,Z()|0,_=Sp(A,T,_&7)|0,(_|0)==-1?(d[p>>2]=0,T=6,K=M,T|0):(zu(A,T,y)|0&&Bt(27795,26932,282,26947),f=St(A|0,f|0,52)|0,Z()|0,f=f&15,Ci(A,T)|0?sp(y,f,_,2,p):RA(y,f,_,2,p),T=0,K=M,T|0)):(T=6,K=M,T|0)}function _x(A,f,p){A=A|0,f=f|0,p=p|0;var _=0,y=0;_=K,K=K+16|0,y=_,yx(A,f,p,y),MA(y,p+4|0),K=_}function yx(A,f,p,_){A=A|0,f=f|0,p=p|0,_=_|0;var y=0,T=0,M=0,N=0,U=0;if(N=K,K=K+16|0,U=N,xx(A,p,U),T=+Ma(+(1-+ee[U>>3]*.5)),T<1e-16){d[_>>2]=0,d[_+4>>2]=0,d[_+8>>2]=0,d[_+12>>2]=0,K=N;return}if(U=d[p>>2]|0,y=+ee[15920+(U*24|0)>>3],y=+Kc(y-+Kc(+Ex(15600+(U<<4)|0,A))),Ss(f)|0?M=+Kc(y+-.3334731722518321):M=y,y=+cs(+T)*2.618033988749896,(f|0)>0){A=0;do y=y*2.6457513110645907,A=A+1|0;while((A|0)!=(f|0))}T=+ui(+M)*y,ee[_>>3]=T,M=+Fn(+M)*y,ee[_+8>>3]=M,K=N}function xx(A,f,p){A=A|0,f=f|0,p=p|0;var _=0,y=0,T=0;if(T=K,K=K+32|0,y=T,Yu(A,y),d[f>>2]=0,ee[p>>3]=5,_=+ar(16400,y),_<+ee[p>>3]&&(d[f>>2]=0,ee[p>>3]=_),_=+ar(16424,y),_<+ee[p>>3]&&(d[f>>2]=1,ee[p>>3]=_),_=+ar(16448,y),_<+ee[p>>3]&&(d[f>>2]=2,ee[p>>3]=_),_=+ar(16472,y),_<+ee[p>>3]&&(d[f>>2]=3,ee[p>>3]=_),_=+ar(16496,y),_<+ee[p>>3]&&(d[f>>2]=4,ee[p>>3]=_),_=+ar(16520,y),_<+ee[p>>3]&&(d[f>>2]=5,ee[p>>3]=_),_=+ar(16544,y),_<+ee[p>>3]&&(d[f>>2]=6,ee[p>>3]=_),_=+ar(16568,y),_<+ee[p>>3]&&(d[f>>2]=7,ee[p>>3]=_),_=+ar(16592,y),_<+ee[p>>3]&&(d[f>>2]=8,ee[p>>3]=_),_=+ar(16616,y),_<+ee[p>>3]&&(d[f>>2]=9,ee[p>>3]=_),_=+ar(16640,y),_<+ee[p>>3]&&(d[f>>2]=10,ee[p>>3]=_),_=+ar(16664,y),_<+ee[p>>3]&&(d[f>>2]=11,ee[p>>3]=_),_=+ar(16688,y),_<+ee[p>>3]&&(d[f>>2]=12,ee[p>>3]=_),_=+ar(16712,y),_<+ee[p>>3]&&(d[f>>2]=13,ee[p>>3]=_),_=+ar(16736,y),_<+ee[p>>3]&&(d[f>>2]=14,ee[p>>3]=_),_=+ar(16760,y),_<+ee[p>>3]&&(d[f>>2]=15,ee[p>>3]=_),_=+ar(16784,y),_<+ee[p>>3]&&(d[f>>2]=16,ee[p>>3]=_),_=+ar(16808,y),_<+ee[p>>3]&&(d[f>>2]=17,ee[p>>3]=_),_=+ar(16832,y),_<+ee[p>>3]&&(d[f>>2]=18,ee[p>>3]=_),_=+ar(16856,y),!(_<+ee[p>>3])){K=T;return}d[f>>2]=19,ee[p>>3]=_,K=T}function Bu(A,f,p,_,y){A=A|0,f=f|0,p=p|0,_=_|0,y=y|0;var T=0,M=0,N=0;if(T=+zl(A),T<1e-16){f=15600+(f<<4)|0,d[y>>2]=d[f>>2],d[y+4>>2]=d[f+4>>2],d[y+8>>2]=d[f+8>>2],d[y+12>>2]=d[f+12>>2];return}if(M=+Ie(+ +ee[A+8>>3],+ +ee[A>>3]),(p|0)>0){A=0;do T=T*.37796447300922725,A=A+1|0;while((A|0)!=(p|0))}N=T*.3333333333333333,_?(p=(Ss(p)|0)==0,T=+le(+((p?N:N*.37796447300922725)*.381966011250105))):(T=+le(+(T*.381966011250105)),Ss(p)|0&&(M=+Kc(M+.3334731722518321))),Cx(15600+(f<<4)|0,+Kc(+ee[15920+(f*24|0)>>3]-M),T,y)}function of(A,f,p){A=A|0,f=f|0,p=p|0;var _=0,y=0;_=K,K=K+16|0,y=_,Du(A+4|0,y),Bu(y,d[A>>2]|0,f,0,p),K=_}function sp(A,f,p,_,y){A=A|0,f=f|0,p=p|0,_=_|0,y=y|0;var T=0,M=0,N=0,U=0,I=0,H=0,ie=0,pe=0,de=0,me=0,Ne=0,Oe=0,Qe=0,He=0,Ve=0,De=0,Lt=0,sn=0,tn=0,Bn=0,En=0,Qn=0,Tn=0,on=0,Ut=0,vn=0,ri=0,wn=0;if(vn=K,K=K+272|0,T=vn+256|0,He=vn+240|0,Tn=vn,on=vn+224|0,Ut=vn+208|0,Ve=vn+176|0,De=vn+160|0,Lt=vn+192|0,sn=vn+144|0,tn=vn+128|0,Bn=vn+112|0,En=vn+96|0,Qn=vn+80|0,d[T>>2]=f,d[He>>2]=d[A>>2],d[He+4>>2]=d[A+4>>2],d[He+8>>2]=d[A+8>>2],d[He+12>>2]=d[A+12>>2],ap(He,T,Tn),d[y>>2]=0,He=_+p+((_|0)==5&1)|0,(He|0)<=(p|0)){K=vn;return}U=d[T>>2]|0,I=on+4|0,H=Ve+4|0,ie=p+5|0,pe=16880+(U<<2)|0,de=16960+(U<<2)|0,me=tn+8|0,Ne=Bn+8|0,Oe=En+8|0,Qe=Ut+4|0,N=p;e:for(;;){M=Tn+(((N|0)%5|0)<<4)|0,d[Ut>>2]=d[M>>2],d[Ut+4>>2]=d[M+4>>2],d[Ut+8>>2]=d[M+8>>2],d[Ut+12>>2]=d[M+12>>2];do;while((Ou(Ut,U,0,1)|0)==2);if((N|0)>(p|0)&(Ss(f)|0)!=0){if(d[Ve>>2]=d[Ut>>2],d[Ve+4>>2]=d[Ut+4>>2],d[Ve+8>>2]=d[Ut+8>>2],d[Ve+12>>2]=d[Ut+12>>2],Du(I,De),_=d[Ve>>2]|0,T=d[17040+(_*80|0)+(d[on>>2]<<2)>>2]|0,d[Ve>>2]=d[18640+(_*80|0)+(T*20|0)>>2],M=d[18640+(_*80|0)+(T*20|0)+16>>2]|0,(M|0)>0){A=0;do c1(H),A=A+1|0;while((A|0)<(M|0))}switch(M=18640+(_*80|0)+(T*20|0)+4|0,d[Lt>>2]=d[M>>2],d[Lt+4>>2]=d[M+4>>2],d[Lt+8>>2]=d[M+8>>2],Xc(Lt,(d[pe>>2]|0)*3|0),hs(H,Lt,H),Lr(H),Du(H,sn),ri=+(d[de>>2]|0),ee[tn>>3]=ri*3,ee[me>>3]=0,wn=ri*-1.5,ee[Bn>>3]=wn,ee[Ne>>3]=ri*2.598076211353316,ee[En>>3]=wn,ee[Oe>>3]=ri*-2.598076211353316,d[17040+((d[Ve>>2]|0)*80|0)+(d[Ut>>2]<<2)>>2]|0){case 1:{A=Bn,_=tn;break}case 3:{A=En,_=Bn;break}case 2:{A=tn,_=En;break}default:{A=12;break e}}xp(De,sn,_,A,Qn),Bu(Qn,d[Ve>>2]|0,U,1,y+8+(d[y>>2]<<4)|0),d[y>>2]=(d[y>>2]|0)+1}if((N|0)<(ie|0)&&(Du(Qe,Ve),Bu(Ve,d[Ut>>2]|0,U,1,y+8+(d[y>>2]<<4)|0),d[y>>2]=(d[y>>2]|0)+1),d[on>>2]=d[Ut>>2],d[on+4>>2]=d[Ut+4>>2],d[on+8>>2]=d[Ut+8>>2],d[on+12>>2]=d[Ut+12>>2],N=N+1|0,(N|0)>=(He|0)){A=3;break}}if((A|0)==3){K=vn;return}else(A|0)==12&&Bt(26970,27017,572,27027)}function ap(A,f,p){A=A|0,f=f|0,p=p|0;var _=0,y=0,T=0,M=0,N=0,U=0;U=K,K=K+128|0,_=U+64|0,y=U,T=_,M=20240,N=T+60|0;do d[T>>2]=d[M>>2],T=T+4|0,M=M+4|0;while((T|0)<(N|0));T=y,M=20304,N=T+60|0;do d[T>>2]=d[M>>2],T=T+4|0,M=M+4|0;while((T|0)<(N|0));N=(Ss(d[f>>2]|0)|0)==0,_=N?_:y,y=A+4|0,h1(y),f1(y),Ss(d[f>>2]|0)|0&&(Lu(y),d[f>>2]=(d[f>>2]|0)+1),d[p>>2]=d[A>>2],f=p+4|0,hs(y,_,f),Lr(f),d[p+16>>2]=d[A>>2],f=p+20|0,hs(y,_+12|0,f),Lr(f),d[p+32>>2]=d[A>>2],f=p+36|0,hs(y,_+24|0,f),Lr(f),d[p+48>>2]=d[A>>2],f=p+52|0,hs(y,_+36|0,f),Lr(f),d[p+64>>2]=d[A>>2],p=p+68|0,hs(y,_+48|0,p),Lr(p),K=U}function Ou(A,f,p,_){A=A|0,f=f|0,p=p|0,_=_|0;var y=0,T=0,M=0,N=0,U=0,I=0,H=0,ie=0,pe=0,de=0,me=0;if(me=K,K=K+32|0,pe=me+12|0,N=me,de=A+4|0,ie=d[16960+(f<<2)>>2]|0,H=(_|0)!=0,ie=H?ie*3|0:ie,y=d[de>>2]|0,I=A+8|0,M=d[I>>2]|0,H){if(T=A+12|0,_=d[T>>2]|0,y=M+y+_|0,(y|0)==(ie|0))return de=1,K=me,de|0;U=T}else U=A+12|0,_=d[U>>2]|0,y=M+y+_|0;if((y|0)<=(ie|0))return de=0,K=me,de|0;do if((_|0)>0){if(_=d[A>>2]|0,(M|0)>0){T=18640+(_*80|0)+60|0,_=A;break}_=18640+(_*80|0)+40|0,p?(Nu(pe,ie,0,0),af(de,pe,N),EA(N),hs(N,pe,de),T=_,_=A):(T=_,_=A)}else T=18640+((d[A>>2]|0)*80|0)+20|0,_=A;while(!1);if(d[_>>2]=d[T>>2],y=T+16|0,(d[y>>2]|0)>0){_=0;do c1(de),_=_+1|0;while((_|0)<(d[y>>2]|0))}return A=T+4|0,d[pe>>2]=d[A>>2],d[pe+4>>2]=d[A+4>>2],d[pe+8>>2]=d[A+8>>2],f=d[16880+(f<<2)>>2]|0,Xc(pe,H?f*3|0:f),hs(de,pe,de),Lr(de),H?_=((d[I>>2]|0)+(d[de>>2]|0)+(d[U>>2]|0)|0)==(ie|0)?1:2:_=2,de=_,K=me,de|0}function m1(A,f){A=A|0,f=f|0;var p=0;do p=Ou(A,f,0,1)|0;while((p|0)==2);return p|0}function RA(A,f,p,_,y){A=A|0,f=f|0,p=p|0,_=_|0,y=y|0;var T=0,M=0,N=0,U=0,I=0,H=0,ie=0,pe=0,de=0,me=0,Ne=0,Oe=0,Qe=0,He=0,Ve=0,De=0,Lt=0,sn=0,tn=0,Bn=0,En=0,Qn=0,Tn=0;if(En=K,K=K+240|0,T=En+224|0,Lt=En+208|0,sn=En,tn=En+192|0,Bn=En+176|0,Oe=En+160|0,Qe=En+144|0,He=En+128|0,Ve=En+112|0,De=En+96|0,d[T>>2]=f,d[Lt>>2]=d[A>>2],d[Lt+4>>2]=d[A+4>>2],d[Lt+8>>2]=d[A+8>>2],d[Lt+12>>2]=d[A+12>>2],op(Lt,T,sn),d[y>>2]=0,Ne=_+p+((_|0)==6&1)|0,(Ne|0)<=(p|0)){K=En;return}U=d[T>>2]|0,I=p+6|0,H=16960+(U<<2)|0,ie=Qe+8|0,pe=He+8|0,de=Ve+8|0,me=tn+4|0,M=0,N=p,_=-1;e:for(;;){if(T=(N|0)%6|0,A=sn+(T<<4)|0,d[tn>>2]=d[A>>2],d[tn+4>>2]=d[A+4>>2],d[tn+8>>2]=d[A+8>>2],d[tn+12>>2]=d[A+12>>2],A=M,M=Ou(tn,U,0,1)|0,(N|0)>(p|0)&(Ss(f)|0)!=0&&(A|0)!=1&&(d[tn>>2]|0)!=(_|0)){switch(Du(sn+(((T+5|0)%6|0)<<4)+4|0,Bn),Du(sn+(T<<4)+4|0,Oe),Qn=+(d[H>>2]|0),ee[Qe>>3]=Qn*3,ee[ie>>3]=0,Tn=Qn*-1.5,ee[He>>3]=Tn,ee[pe>>3]=Qn*2.598076211353316,ee[Ve>>3]=Tn,ee[de>>3]=Qn*-2.598076211353316,T=d[Lt>>2]|0,d[17040+(T*80|0)+(((_|0)==(T|0)?d[tn>>2]|0:_)<<2)>>2]|0){case 1:{A=He,_=Qe;break}case 3:{A=Ve,_=He;break}case 2:{A=Qe,_=Ve;break}default:{A=8;break e}}xp(Bn,Oe,_,A,De),!(bp(Bn,De)|0)&&!(bp(Oe,De)|0)&&(Bu(De,d[Lt>>2]|0,U,1,y+8+(d[y>>2]<<4)|0),d[y>>2]=(d[y>>2]|0)+1)}if((N|0)<(I|0)&&(Du(me,Bn),Bu(Bn,d[tn>>2]|0,U,1,y+8+(d[y>>2]<<4)|0),d[y>>2]=(d[y>>2]|0)+1),N=N+1|0,(N|0)>=(Ne|0)){A=3;break}else _=d[tn>>2]|0}if((A|0)==3){K=En;return}else(A|0)==8&&Bt(27054,27017,737,27099)}function op(A,f,p){A=A|0,f=f|0,p=p|0;var _=0,y=0,T=0,M=0,N=0,U=0;U=K,K=K+160|0,_=U+80|0,y=U,T=_,M=20368,N=T+72|0;do d[T>>2]=d[M>>2],T=T+4|0,M=M+4|0;while((T|0)<(N|0));T=y,M=20448,N=T+72|0;do d[T>>2]=d[M>>2],T=T+4|0,M=M+4|0;while((T|0)<(N|0));N=(Ss(d[f>>2]|0)|0)==0,_=N?_:y,y=A+4|0,h1(y),f1(y),Ss(d[f>>2]|0)|0&&(Lu(y),d[f>>2]=(d[f>>2]|0)+1),d[p>>2]=d[A>>2],f=p+4|0,hs(y,_,f),Lr(f),d[p+16>>2]=d[A>>2],f=p+20|0,hs(y,_+12|0,f),Lr(f),d[p+32>>2]=d[A>>2],f=p+36|0,hs(y,_+24|0,f),Lr(f),d[p+48>>2]=d[A>>2],f=p+52|0,hs(y,_+36|0,f),Lr(f),d[p+64>>2]=d[A>>2],f=p+68|0,hs(y,_+48|0,f),Lr(f),d[p+80>>2]=d[A>>2],p=p+84|0,hs(y,_+60|0,p),Lr(p),K=U}function Qc(A,f){return A=A|0,f=f|0,f=St(A|0,f|0,52)|0,Z()|0,f&15|0}function g1(A,f){return A=A|0,f=f|0,f=St(A|0,f|0,45)|0,Z()|0,f&127|0}function bx(A,f,p,_){return A=A|0,f=f|0,p=p|0,_=_|0,(p+-1|0)>>>0>14?(_=4,_|0):(p=St(A|0,f|0,(15-p|0)*3|0)|0,Z()|0,d[_>>2]=p&7,_=0,_|0)}function Sx(A,f,p,_){A=A|0,f=f|0,p=p|0,_=_|0;var y=0,T=0,M=0,N=0,U=0,I=0;if(A>>>0>15)return _=4,_|0;if(f>>>0>121)return _=17,_|0;M=Nt(A|0,0,52)|0,y=Z()|0,N=Nt(f|0,0,45)|0,y=y|(Z()|0)|134225919;e:do if((A|0)>=1){for(N=1,M=(at[20528+f>>0]|0)!=0,T=-1;;){if(f=d[p+(N+-1<<2)>>2]|0,f>>>0>6){y=18,f=10;break}if(!((f|0)==0|M^1))if((f|0)==1){y=19,f=10;break}else M=0;if(I=(15-N|0)*3|0,U=Nt(7,0,I|0)|0,y=y&~(Z()|0),f=Nt(f|0,((f|0)<0)<<31>>31|0,I|0)|0,T=f|T&~U,y=Z()|0|y,(N|0)<(A|0))N=N+1|0;else break e}if((f|0)==10)return y|0}else T=-1;while(!1);return I=_,d[I>>2]=T,d[I+4>>2]=y,I=0,I|0}function NA(A,f){A=A|0,f=f|0;var p=0,_=0,y=0,T=0,M=0;return!(!0&(f&-16777216|0)==134217728)||(_=St(A|0,f|0,52)|0,Z()|0,_=_&15,p=St(A|0,f|0,45)|0,Z()|0,p=p&127,p>>>0>121)?(A=0,A|0):(M=(_^15)*3|0,y=St(A|0,f|0,M|0)|0,M=Nt(y|0,Z()|0,M|0)|0,y=Z()|0,T=Ur(-1227133514,-1171,M|0,y|0)|0,!((M&613566756&T|0)==0&(y&4681&(Z()|0)|0)==0)||(M=(_*3|0)+19|0,T=Nt(~A|0,~f|0,M|0)|0,M=St(T|0,Z()|0,M|0)|0,!((_|0)==15|(M|0)==0&(Z()|0)==0))?(M=0,M|0):!(at[20528+p>>0]|0)||(f=f&8191,(A|0)==0&(f|0)==0)?(M=1,M|0):(M=ff(A|0,f|0)|0,Z()|0,((63-M|0)%3|0|0)!=0|0))}function v1(A,f){A=A|0,f=f|0;var p=0,_=0,y=0,T=0,M=0;return!0&(f&-16777216|0)==134217728&&(_=St(A|0,f|0,52)|0,Z()|0,_=_&15,p=St(A|0,f|0,45)|0,Z()|0,p=p&127,p>>>0<=121)&&(M=(_^15)*3|0,y=St(A|0,f|0,M|0)|0,M=Nt(y|0,Z()|0,M|0)|0,y=Z()|0,T=Ur(-1227133514,-1171,M|0,y|0)|0,(M&613566756&T|0)==0&(y&4681&(Z()|0)|0)==0)&&(M=(_*3|0)+19|0,T=Nt(~A|0,~f|0,M|0)|0,M=St(T|0,Z()|0,M|0)|0,(_|0)==15|(M|0)==0&(Z()|0)==0)&&(!(at[20528+p>>0]|0)||(p=f&8191,(A|0)==0&(p|0)==0)||(M=ff(A|0,p|0)|0,Z()|0,(63-M|0)%3|0|0))||p1(A,f)|0?(M=1,M|0):(M=(ul(A,f)|0)!=0&1,M|0)}function Iu(A,f,p,_){A=A|0,f=f|0,p=p|0,_=_|0;var y=0,T=0,M=0,N=0;if(y=Nt(f|0,0,52)|0,T=Z()|0,p=Nt(p|0,0,45)|0,p=T|(Z()|0)|134225919,(f|0)<1){T=-1,_=p,f=A,d[f>>2]=T,A=A+4|0,d[A>>2]=_;return}for(T=1,y=-1;M=(15-T|0)*3|0,N=Nt(7,0,M|0)|0,p=p&~(Z()|0),M=Nt(_|0,0,M|0)|0,y=y&~N|M,p=p|(Z()|0),(T|0)!=(f|0);)T=T+1|0;N=A,M=N,d[M>>2]=y,N=N+4|0,d[N>>2]=p}function Fu(A,f,p,_){A=A|0,f=f|0,p=p|0,_=_|0;var y=0,T=0;if(T=St(A|0,f|0,52)|0,Z()|0,T=T&15,p>>>0>15)return _=4,_|0;if((T|0)<(p|0))return _=12,_|0;if((T|0)==(p|0))return d[_>>2]=A,d[_+4>>2]=f,_=0,_|0;if(y=Nt(p|0,0,52)|0,y=y|A,A=Z()|0|f&-15728641,(T|0)>(p|0))do f=Nt(7,0,(14-p|0)*3|0)|0,p=p+1|0,y=f|y,A=Z()|0|A;while((p|0)<(T|0));return d[_>>2]=y,d[_+4>>2]=A,_=0,_|0}function lf(A,f,p,_){A=A|0,f=f|0,p=p|0,_=_|0;var y=0,T=0,M=0;if(T=St(A|0,f|0,52)|0,Z()|0,T=T&15,!((p|0)<16&(T|0)<=(p|0)))return _=4,_|0;y=p-T|0,p=St(A|0,f|0,45)|0,Z()|0;e:do if(!(Bi(p&127)|0))p=Bo(7,0,y,((y|0)<0)<<31>>31)|0,y=Z()|0;else{t:do if(T|0){for(p=1;M=Nt(7,0,(15-p|0)*3|0)|0,!!((M&A|0)==0&((Z()|0)&f|0)==0);)if(p>>>0>>0)p=p+1|0;else break t;p=Bo(7,0,y,((y|0)<0)<<31>>31)|0,y=Z()|0;break e}while(!1);p=Bo(7,0,y,((y|0)<0)<<31>>31)|0,p=fr(p|0,Z()|0,5,0)|0,p=Qt(p|0,Z()|0,-5,-1)|0,p=ko(p|0,Z()|0,6,0)|0,p=Qt(p|0,Z()|0,1,0)|0,y=Z()|0}while(!1);return M=_,d[M>>2]=p,d[M+4>>2]=y,M=0,M|0}function Ci(A,f){A=A|0,f=f|0;var p=0,_=0,y=0;if(y=St(A|0,f|0,45)|0,Z()|0,!(Bi(y&127)|0))return y=0,y|0;y=St(A|0,f|0,52)|0,Z()|0,y=y&15;e:do if(!y)p=0;else for(_=1;;){if(p=St(A|0,f|0,(15-_|0)*3|0)|0,Z()|0,p=p&7,p|0)break e;if(_>>>0>>0)_=_+1|0;else{p=0;break}}while(!1);return y=(p|0)==0&1,y|0}function _1(A,f,p,_){A=A|0,f=f|0,p=p|0,_=_|0;var y=0,T=0,M=0,N=0;if(M=K,K=K+16|0,T=M,sl(T,A,f,p),f=T,A=d[f>>2]|0,f=d[f+4>>2]|0,(A|0)==0&(f|0)==0)return K=M,0;y=0,p=0;do N=_+(y<<3)|0,d[N>>2]=A,d[N+4>>2]=f,y=Qt(y|0,p|0,1,0)|0,p=Z()|0,uf(T),N=T,A=d[N>>2]|0,f=d[N+4>>2]|0;while(!((A|0)==0&(f|0)==0));return K=M,0}function lp(A,f,p,_){return A=A|0,f=f|0,p=p|0,_=_|0,(_|0)<(p|0)?(p=f,_=A,At(p|0),_|0):(p=Nt(-1,-1,((_-p|0)*3|0)+3|0)|0,_=Nt(~p|0,~(Z()|0)|0,(15-_|0)*3|0)|0,p=~(Z()|0)&f,_=~_&A,At(p|0),_|0)}function DA(A,f,p,_){A=A|0,f=f|0,p=p|0,_=_|0;var y=0;return y=St(A|0,f|0,52)|0,Z()|0,y=y&15,(p|0)<16&(y|0)<=(p|0)?((y|0)<(p|0)&&(y=Nt(-1,-1,((p+-1-y|0)*3|0)+3|0)|0,y=Nt(~y|0,~(Z()|0)|0,(15-p|0)*3|0)|0,f=~(Z()|0)&f,A=~y&A),y=Nt(p|0,0,52)|0,p=f&-15728641|(Z()|0),d[_>>2]=A|y,d[_+4>>2]=p,_=0,_|0):(_=4,_|0)}function up(A,f,p,_){A=A|0,f=f|0,p=p|0,_=_|0;var y=0,T=0,M=0,N=0,U=0,I=0,H=0,ie=0,pe=0,de=0,me=0,Ne=0,Oe=0,Qe=0,He=0,Ve=0,De=0,Lt=0,sn=0,tn=0,Bn=0,En=0,Qn=0,Tn=0,on=0,Ut=0;if((p|0)==0&(_|0)==0)return Ut=0,Ut|0;if(y=A,T=d[y>>2]|0,y=d[y+4>>2]|0,!0&(y&15728640|0)==0){if(!((_|0)>0|(_|0)==0&p>>>0>0)||(Ut=f,d[Ut>>2]=T,d[Ut+4>>2]=y,(p|0)==1&(_|0)==0))return Ut=0,Ut|0;y=1,T=0;do Tn=A+(y<<3)|0,on=d[Tn+4>>2]|0,Ut=f+(y<<3)|0,d[Ut>>2]=d[Tn>>2],d[Ut+4>>2]=on,y=Qt(y|0,T|0,1,0)|0,T=Z()|0;while((T|0)<(_|0)|(T|0)==(_|0)&y>>>0

>>0);return y=0,y|0}if(Qn=p<<3,on=Fo(Qn)|0,!on)return Ut=13,Ut|0;if(Gl(on|0,A|0,Qn|0)|0,Tn=Ks(p,8)|0,!Tn)return An(on),Ut=13,Ut|0;e:for(;;){y=on,I=d[y>>2]|0,y=d[y+4>>2]|0,Bn=St(I|0,y|0,52)|0,Z()|0,Bn=Bn&15,En=Bn+-1|0,tn=(Bn|0)!=0,sn=(_|0)>0|(_|0)==0&p>>>0>0;t:do if(tn&sn){if(He=Nt(En|0,0,52)|0,Ve=Z()|0,En>>>0>15){if(!((I|0)==0&(y|0)==0)){Ut=16;break e}for(T=0,A=0;;){if(T=Qt(T|0,A|0,1,0)|0,A=Z()|0,!((A|0)<(_|0)|(A|0)==(_|0)&T>>>0

>>0))break t;if(M=on+(T<<3)|0,Lt=d[M>>2]|0,M=d[M+4>>2]|0,!((Lt|0)==0&(M|0)==0)){y=M,Ut=16;break e}}}for(N=I,A=y,T=0,M=0;;){if(!((N|0)==0&(A|0)==0)){if(!(!0&(A&117440512|0)==0)){Ut=21;break e}if(H=St(N|0,A|0,52)|0,Z()|0,H=H&15,(H|0)<(En|0)){y=12,Ut=27;break e}if((H|0)!=(En|0)&&(N=N|He,A=A&-15728641|Ve,H>>>0>=Bn>>>0)){U=En;do Lt=Nt(7,0,(14-U|0)*3|0)|0,U=U+1|0,N=Lt|N,A=Z()|0|A;while(U>>>0>>0)}if(pe=ec(N|0,A|0,p|0,_|0)|0,de=Z()|0,U=Tn+(pe<<3)|0,H=U,ie=d[H>>2]|0,H=d[H+4>>2]|0,!((ie|0)==0&(H|0)==0)){Oe=0,Qe=0;do{if((Oe|0)>(_|0)|(Oe|0)==(_|0)&Qe>>>0>p>>>0){Ut=31;break e}if((ie|0)==(N|0)&(H&-117440513|0)==(A|0)){me=St(ie|0,H|0,56)|0,Z()|0,me=me&7,Ne=me+1|0,Lt=St(ie|0,H|0,45)|0,Z()|0;n:do if(!(Bi(Lt&127)|0))H=7;else{if(ie=St(ie|0,H|0,52)|0,Z()|0,ie=ie&15,!ie){H=6;break}for(H=1;;){if(Lt=Nt(7,0,(15-H|0)*3|0)|0,!((Lt&N|0)==0&((Z()|0)&A|0)==0)){H=7;break n}if(H>>>0>>0)H=H+1|0;else{H=6;break}}}while(!1);if((me+2|0)>>>0>H>>>0){Ut=41;break e}Lt=Nt(Ne|0,0,56)|0,A=Z()|0|A&-117440513,De=U,d[De>>2]=0,d[De+4>>2]=0,N=Lt|N}else pe=Qt(pe|0,de|0,1,0)|0,pe=th(pe|0,Z()|0,p|0,_|0)|0,de=Z()|0;Qe=Qt(Qe|0,Oe|0,1,0)|0,Oe=Z()|0,U=Tn+(pe<<3)|0,H=U,ie=d[H>>2]|0,H=d[H+4>>2]|0}while(!((ie|0)==0&(H|0)==0))}Lt=U,d[Lt>>2]=N,d[Lt+4>>2]=A}if(T=Qt(T|0,M|0,1,0)|0,M=Z()|0,!((M|0)<(_|0)|(M|0)==(_|0)&T>>>0

>>0))break t;A=on+(T<<3)|0,N=d[A>>2]|0,A=d[A+4>>2]|0}}while(!1);if(Lt=Qt(p|0,_|0,5,0)|0,De=Z()|0,De>>>0<0|(De|0)==0&Lt>>>0<11){Ut=85;break}if(Lt=ko(p|0,_|0,6,0)|0,Z()|0,Lt=Ks(Lt,8)|0,!Lt){Ut=48;break}do if(sn){for(Ne=0,A=0,me=0,Oe=0;;){if(H=Tn+(Ne<<3)|0,M=H,T=d[M>>2]|0,M=d[M+4>>2]|0,(T|0)==0&(M|0)==0)De=me;else{ie=St(T|0,M|0,56)|0,Z()|0,ie=ie&7,N=ie+1|0,pe=M&-117440513,De=St(T|0,M|0,45)|0,Z()|0;t:do if(Bi(De&127)|0){if(de=St(T|0,M|0,52)|0,Z()|0,de=de&15,de|0)for(U=1;;){if(De=Nt(7,0,(15-U|0)*3|0)|0,!((T&De|0)==0&(pe&(Z()|0)|0)==0))break t;if(U>>>0>>0)U=U+1|0;else break}M=Nt(N|0,0,56)|0,T=M|T,M=Z()|0|pe,N=H,d[N>>2]=T,d[N+4>>2]=M,N=ie+2|0}while(!1);(N|0)==7?(De=Lt+(A<<3)|0,d[De>>2]=T,d[De+4>>2]=M&-117440513,A=Qt(A|0,me|0,1,0)|0,De=Z()|0):De=me}if(Ne=Qt(Ne|0,Oe|0,1,0)|0,Oe=Z()|0,(Oe|0)<(_|0)|(Oe|0)==(_|0)&Ne>>>0

>>0)me=De;else break}if(sn){if(Qe=En>>>0>15,He=Nt(En|0,0,52)|0,Ve=Z()|0,!tn){for(T=0,U=0,N=0,M=0;(I|0)==0&(y|0)==0||(En=f+(T<<3)|0,d[En>>2]=I,d[En+4>>2]=y,T=Qt(T|0,U|0,1,0)|0,U=Z()|0),N=Qt(N|0,M|0,1,0)|0,M=Z()|0,!!((M|0)<(_|0)|(M|0)==(_|0)&N>>>0

>>0);)y=on+(N<<3)|0,I=d[y>>2]|0,y=d[y+4>>2]|0;y=De;break}for(T=0,U=0,M=0,N=0;;){do if(!((I|0)==0&(y|0)==0)){if(de=St(I|0,y|0,52)|0,Z()|0,de=de&15,Qe|(de|0)<(En|0)){Ut=80;break e}if((de|0)!=(En|0)){if(H=I|He,ie=y&-15728641|Ve,de>>>0>=Bn>>>0){pe=En;do tn=Nt(7,0,(14-pe|0)*3|0)|0,pe=pe+1|0,H=tn|H,ie=Z()|0|ie;while(pe>>>0>>0)}}else H=I,ie=y;me=ec(H|0,ie|0,p|0,_|0)|0,pe=0,de=0,Oe=Z()|0;do{if((pe|0)>(_|0)|(pe|0)==(_|0)&de>>>0>p>>>0){Ut=81;break e}if(tn=Tn+(me<<3)|0,Ne=d[tn+4>>2]|0,(Ne&-117440513|0)==(ie|0)&&(d[tn>>2]|0)==(H|0)){Ut=65;break}tn=Qt(me|0,Oe|0,1,0)|0,me=th(tn|0,Z()|0,p|0,_|0)|0,Oe=Z()|0,de=Qt(de|0,pe|0,1,0)|0,pe=Z()|0,tn=Tn+(me<<3)|0}while(!((d[tn>>2]|0)==(H|0)&&(d[tn+4>>2]|0)==(ie|0)));if((Ut|0)==65&&(Ut=0,!0&(Ne&117440512|0)==100663296))break;tn=f+(T<<3)|0,d[tn>>2]=I,d[tn+4>>2]=y,T=Qt(T|0,U|0,1,0)|0,U=Z()|0}while(!1);if(M=Qt(M|0,N|0,1,0)|0,N=Z()|0,!((N|0)<(_|0)|(N|0)==(_|0)&M>>>0

>>0))break;y=on+(M<<3)|0,I=d[y>>2]|0,y=d[y+4>>2]|0}y=De}else T=0,y=De}else T=0,A=0,y=0;while(!1);if(uo(Tn|0,0,Qn|0)|0,Gl(on|0,Lt|0,A<<3|0)|0,An(Lt),(A|0)==0&(y|0)==0){Ut=89;break}else f=f+(T<<3)|0,_=y,p=A}if((Ut|0)==16)!0&(y&117440512|0)==0?(y=4,Ut=27):Ut=21;else if((Ut|0)==31)Bt(27795,27122,620,27132);else{if((Ut|0)==41)return An(on),An(Tn),Ut=10,Ut|0;if((Ut|0)==48)return An(on),An(Tn),Ut=13,Ut|0;(Ut|0)==80?Bt(27795,27122,711,27132):(Ut|0)==81?Bt(27795,27122,723,27132):(Ut|0)==85&&(Gl(f|0,on|0,p<<3|0)|0,Ut=89)}return(Ut|0)==21?(An(on),An(Tn),Ut=5,Ut|0):(Ut|0)==27?(An(on),An(Tn),Ut=y,Ut|0):(Ut|0)==89?(An(on),An(Tn),Ut=0,Ut|0):0}function y1(A,f,p,_,y,T,M){A=A|0,f=f|0,p=p|0,_=_|0,y=y|0,T=T|0,M=M|0;var N=0,U=0,I=0,H=0,ie=0,pe=0,de=0,me=0,Ne=0;if(Ne=K,K=K+16|0,me=Ne,!((p|0)>0|(p|0)==0&f>>>0>0))return me=0,K=Ne,me|0;if((M|0)>=16)return me=12,K=Ne,me|0;pe=0,de=0,ie=0,N=0;e:for(;;){if(I=A+(pe<<3)|0,U=d[I>>2]|0,I=d[I+4>>2]|0,H=St(U|0,I|0,52)|0,Z()|0,(H&15|0)>(M|0)){N=12,U=11;break}if(sl(me,U,I,M),H=me,I=d[H>>2]|0,H=d[H+4>>2]|0,(I|0)==0&(H|0)==0)U=ie;else{U=ie;do{if(!((N|0)<(T|0)|(N|0)==(T|0)&U>>>0>>0)){U=10;break e}ie=_+(U<<3)|0,d[ie>>2]=I,d[ie+4>>2]=H,U=Qt(U|0,N|0,1,0)|0,N=Z()|0,uf(me),ie=me,I=d[ie>>2]|0,H=d[ie+4>>2]|0}while(!((I|0)==0&(H|0)==0))}if(pe=Qt(pe|0,de|0,1,0)|0,de=Z()|0,(de|0)<(p|0)|(de|0)==(p|0)&pe>>>0>>0)ie=U;else{N=0,U=11;break}}return(U|0)==10?(me=14,K=Ne,me|0):(U|0)==11?(K=Ne,N|0):0}function x1(A,f,p,_,y){A=A|0,f=f|0,p=p|0,_=_|0,y=y|0;var T=0,M=0,N=0,U=0,I=0,H=0,ie=0,pe=0;pe=K,K=K+16|0,ie=pe;e:do if((p|0)>0|(p|0)==0&f>>>0>0){for(I=0,M=0,T=0,H=0;;){if(U=A+(I<<3)|0,N=d[U>>2]|0,U=d[U+4>>2]|0,!((N|0)==0&(U|0)==0)&&(U=(lf(N,U,_,ie)|0)==0,N=ie,M=Qt(d[N>>2]|0,d[N+4>>2]|0,M|0,T|0)|0,T=Z()|0,!U)){T=12;break}if(I=Qt(I|0,H|0,1,0)|0,H=Z()|0,!((H|0)<(p|0)|(H|0)==(p|0)&I>>>0>>0))break e}return K=pe,T|0}else M=0,T=0;while(!1);return d[y>>2]=M,d[y+4>>2]=T,y=0,K=pe,y|0}function b1(A,f){return A=A|0,f=f|0,f=St(A|0,f|0,52)|0,Z()|0,f&1|0}function $s(A,f){A=A|0,f=f|0;var p=0,_=0,y=0;if(y=St(A|0,f|0,52)|0,Z()|0,y=y&15,!y)return y=0,y|0;for(_=1;;){if(p=St(A|0,f|0,(15-_|0)*3|0)|0,Z()|0,p=p&7,p|0){_=5;break}if(_>>>0>>0)_=_+1|0;else{p=0,_=5;break}}return(_|0)==5?p|0:0}function cp(A,f){A=A|0,f=f|0;var p=0,_=0,y=0,T=0,M=0,N=0,U=0;if(U=St(A|0,f|0,52)|0,Z()|0,U=U&15,!U)return N=f,U=A,At(N|0),U|0;for(N=1,p=0;;){T=(15-N|0)*3|0,_=Nt(7,0,T|0)|0,y=Z()|0,M=St(A|0,f|0,T|0)|0,Z()|0,T=Nt(Uu(M&7)|0,0,T|0)|0,M=Z()|0,A=T|A&~_,f=M|f&~y;e:do if(!p)if((T&_|0)==0&(M&y|0)==0)p=0;else if(_=St(A|0,f|0,52)|0,Z()|0,_=_&15,!_)p=1;else{p=1;t:for(;;){switch(M=St(A|0,f|0,(15-p|0)*3|0)|0,Z()|0,M&7){case 1:break t;case 0:break;default:{p=1;break e}}if(p>>>0<_>>>0)p=p+1|0;else{p=1;break e}}for(p=1;;)if(M=(15-p|0)*3|0,y=St(A|0,f|0,M|0)|0,Z()|0,T=Nt(7,0,M|0)|0,f=f&~(Z()|0),M=Nt(Uu(y&7)|0,0,M|0)|0,A=A&~T|M,f=f|(Z()|0),p>>>0<_>>>0)p=p+1|0;else{p=1;break}}while(!1);if(N>>>0>>0)N=N+1|0;else break}return At(f|0),A|0}function ku(A,f){A=A|0,f=f|0;var p=0,_=0,y=0,T=0,M=0;if(_=St(A|0,f|0,52)|0,Z()|0,_=_&15,!_)return p=f,_=A,At(p|0),_|0;for(p=1;T=(15-p|0)*3|0,M=St(A|0,f|0,T|0)|0,Z()|0,y=Nt(7,0,T|0)|0,f=f&~(Z()|0),T=Nt(Uu(M&7)|0,0,T|0)|0,A=T|A&~y,f=Z()|0|f,p>>>0<_>>>0;)p=p+1|0;return At(f|0),A|0}function Tx(A,f){A=A|0,f=f|0;var p=0,_=0,y=0,T=0,M=0,N=0,U=0;if(U=St(A|0,f|0,52)|0,Z()|0,U=U&15,!U)return N=f,U=A,At(N|0),U|0;for(N=1,p=0;;){T=(15-N|0)*3|0,_=Nt(7,0,T|0)|0,y=Z()|0,M=St(A|0,f|0,T|0)|0,Z()|0,T=Nt(rl(M&7)|0,0,T|0)|0,M=Z()|0,A=T|A&~_,f=M|f&~y;e:do if(!p)if((T&_|0)==0&(M&y|0)==0)p=0;else if(_=St(A|0,f|0,52)|0,Z()|0,_=_&15,!_)p=1;else{p=1;t:for(;;){switch(M=St(A|0,f|0,(15-p|0)*3|0)|0,Z()|0,M&7){case 1:break t;case 0:break;default:{p=1;break e}}if(p>>>0<_>>>0)p=p+1|0;else{p=1;break e}}for(p=1;;)if(y=(15-p|0)*3|0,T=Nt(7,0,y|0)|0,M=f&~(Z()|0),f=St(A|0,f|0,y|0)|0,Z()|0,f=Nt(rl(f&7)|0,0,y|0)|0,A=A&~T|f,f=M|(Z()|0),p>>>0<_>>>0)p=p+1|0;else{p=1;break}}while(!1);if(N>>>0>>0)N=N+1|0;else break}return At(f|0),A|0}function hp(A,f){A=A|0,f=f|0;var p=0,_=0,y=0,T=0,M=0;if(_=St(A|0,f|0,52)|0,Z()|0,_=_&15,!_)return p=f,_=A,At(p|0),_|0;for(p=1;M=(15-p|0)*3|0,T=Nt(7,0,M|0)|0,y=f&~(Z()|0),f=St(A|0,f|0,M|0)|0,Z()|0,f=Nt(rl(f&7)|0,0,M|0)|0,A=f|A&~T,f=Z()|0|y,p>>>0<_>>>0;)p=p+1|0;return At(f|0),A|0}function Aa(A,f){A=A|0,f=f|0;var p=0,_=0,y=0,T=0,M=0,N=0,U=0,I=0,H=0;if(U=K,K=K+64|0,N=U+40|0,_=U+24|0,y=U+12|0,T=U,Nt(f|0,0,52)|0,p=Z()|0|134225919,!f)return(d[A+4>>2]|0)>2||(d[A+8>>2]|0)>2||(d[A+12>>2]|0)>2?(M=0,N=0,At(M|0),K=U,N|0):(Nt(Po(A)|0,0,45)|0,M=Z()|0|p,N=-1,At(M|0),K=U,N|0);if(d[N>>2]=d[A>>2],d[N+4>>2]=d[A+4>>2],d[N+8>>2]=d[A+8>>2],d[N+12>>2]=d[A+12>>2],M=N+4|0,(f|0)>0)for(A=-1;d[_>>2]=d[M>>2],d[_+4>>2]=d[M+4>>2],d[_+8>>2]=d[M+8>>2],f&1?(hx(M),d[y>>2]=d[M>>2],d[y+4>>2]=d[M+4>>2],d[y+8>>2]=d[M+8>>2],Yc(y)):(l1(M),d[y>>2]=d[M>>2],d[y+4>>2]=d[M+4>>2],d[y+8>>2]=d[M+8>>2],Lu(y)),af(_,y,T),Lr(T),H=(15-f|0)*3|0,I=Nt(7,0,H|0)|0,p=p&~(Z()|0),H=Nt(Pu(T)|0,0,H|0)|0,A=H|A&~I,p=Z()|0|p,(f|0)>1;)f=f+-1|0;else A=-1;e:do if((d[M>>2]|0)<=2&&(d[N+8>>2]|0)<=2&&(d[N+12>>2]|0)<=2){if(_=Po(N)|0,f=Nt(_|0,0,45)|0,f=f|A,A=Z()|0|p&-1040385,T=ep(N)|0,!(Bi(_)|0)){if((T|0)<=0)break;for(y=0;;){if(_=St(f|0,A|0,52)|0,Z()|0,_=_&15,_)for(p=1;H=(15-p|0)*3|0,N=St(f|0,A|0,H|0)|0,Z()|0,I=Nt(7,0,H|0)|0,A=A&~(Z()|0),H=Nt(Uu(N&7)|0,0,H|0)|0,f=f&~I|H,A=A|(Z()|0),p>>>0<_>>>0;)p=p+1|0;if(y=y+1|0,(y|0)==(T|0))break e}}y=St(f|0,A|0,52)|0,Z()|0,y=y&15;t:do if(y){p=1;n:for(;;){switch(H=St(f|0,A|0,(15-p|0)*3|0)|0,Z()|0,H&7){case 1:break n;case 0:break;default:break t}if(p>>>0>>0)p=p+1|0;else break t}if(Ru(_,d[N>>2]|0)|0)for(p=1;N=(15-p|0)*3|0,I=Nt(7,0,N|0)|0,H=A&~(Z()|0),A=St(f|0,A|0,N|0)|0,Z()|0,A=Nt(rl(A&7)|0,0,N|0)|0,f=f&~I|A,A=H|(Z()|0),p>>>0>>0;)p=p+1|0;else for(p=1;H=(15-p|0)*3|0,N=St(f|0,A|0,H|0)|0,Z()|0,I=Nt(7,0,H|0)|0,A=A&~(Z()|0),H=Nt(Uu(N&7)|0,0,H|0)|0,f=f&~I|H,A=A|(Z()|0),p>>>0>>0;)p=p+1|0}while(!1);if((T|0)>0){p=0;do f=cp(f,A)|0,A=Z()|0,p=p+1|0;while((p|0)!=(T|0))}}else f=0,A=0;while(!1);return I=A,H=f,At(I|0),K=U,H|0}function Ss(A){return A=A|0,(A|0)%2|0|0}function PA(A,f,p){A=A|0,f=f|0,p=p|0;var _=0,y=0;return y=K,K=K+16|0,_=y,f>>>0>15?(_=4,K=y,_|0):(d[A+4>>2]&2146435072|0)==2146435072||(d[A+8+4>>2]&2146435072|0)==2146435072?(_=3,K=y,_|0):(_x(A,f,_),f=Aa(_,f)|0,_=Z()|0,d[p>>2]=f,d[p+4>>2]=_,(f|0)==0&(_|0)==0&&Bt(27795,27122,1050,27145),_=0,K=y,_|0)}function LA(A,f,p){A=A|0,f=f|0,p=p|0;var _=0,y=0,T=0,M=0;if(y=p+4|0,T=St(A|0,f|0,52)|0,Z()|0,T=T&15,M=St(A|0,f|0,45)|0,Z()|0,_=(T|0)==0,Bi(M&127)|0){if(_)return M=1,M|0;_=1}else{if(_)return M=0,M|0;(d[y>>2]|0)==0&&(d[p+8>>2]|0)==0?_=(d[p+12>>2]|0)!=0&1:_=1}for(p=1;p&1?Yc(y):Lu(y),M=St(A|0,f|0,(15-p|0)*3|0)|0,Z()|0,u1(y,M&7),p>>>0>>0;)p=p+1|0;return _|0}function zu(A,f,p){A=A|0,f=f|0,p=p|0;var _=0,y=0,T=0,M=0,N=0,U=0,I=0,H=0;if(H=K,K=K+16|0,U=H,I=St(A|0,f|0,45)|0,Z()|0,I=I&127,I>>>0>121)return d[p>>2]=0,d[p+4>>2]=0,d[p+8>>2]=0,d[p+12>>2]=0,I=5,K=H,I|0;e:do if((Bi(I)|0)!=0&&(T=St(A|0,f|0,52)|0,Z()|0,T=T&15,(T|0)!=0)){_=1;t:for(;;){switch(N=St(A|0,f|0,(15-_|0)*3|0)|0,Z()|0,N&7){case 5:break t;case 0:break;default:{_=f;break e}}if(_>>>0>>0)_=_+1|0;else{_=f;break e}}for(y=1,_=f;f=(15-y|0)*3|0,M=Nt(7,0,f|0)|0,N=_&~(Z()|0),_=St(A|0,_|0,f|0)|0,Z()|0,_=Nt(rl(_&7)|0,0,f|0)|0,A=A&~M|_,_=N|(Z()|0),y>>>0>>0;)y=y+1|0}else _=f;while(!1);if(N=7696+(I*28|0)|0,d[p>>2]=d[N>>2],d[p+4>>2]=d[N+4>>2],d[p+8>>2]=d[N+8>>2],d[p+12>>2]=d[N+12>>2],!(LA(A,_,p)|0))return I=0,K=H,I|0;if(M=p+4|0,d[U>>2]=d[M>>2],d[U+4>>2]=d[M+4>>2],d[U+8>>2]=d[M+8>>2],T=St(A|0,_|0,52)|0,Z()|0,N=T&15,T&1?(Lu(M),T=N+1|0):T=N,!(Bi(I)|0))_=0;else{e:do if(!N)_=0;else for(f=1;;){if(y=St(A|0,_|0,(15-f|0)*3|0)|0,Z()|0,y=y&7,y|0){_=y;break e}if(f>>>0>>0)f=f+1|0;else{_=0;break}}while(!1);_=(_|0)==4&1}if(!(Ou(p,T,_,0)|0))(T|0)!=(N|0)&&(d[M>>2]=d[U>>2],d[M+4>>2]=d[U+4>>2],d[M+8>>2]=d[U+8>>2]);else{if(Bi(I)|0)do;while((Ou(p,T,0,0)|0)!=0);(T|0)!=(N|0)&&l1(M)}return I=0,K=H,I|0}function Ol(A,f,p){A=A|0,f=f|0,p=p|0;var _=0,y=0,T=0;return T=K,K=K+16|0,_=T,y=zu(A,f,_)|0,y|0?(K=T,y|0):(y=St(A|0,f|0,52)|0,Z()|0,of(_,y&15,p),y=0,K=T,y|0)}function Il(A,f,p){A=A|0,f=f|0,p=p|0;var _=0,y=0,T=0,M=0,N=0;if(M=K,K=K+16|0,T=M,_=zu(A,f,T)|0,_|0)return T=_,K=M,T|0;_=St(A|0,f|0,45)|0,Z()|0,_=(Bi(_&127)|0)==0,y=St(A|0,f|0,52)|0,Z()|0,y=y&15;e:do if(!_){if(y|0)for(_=1;;){if(N=Nt(7,0,(15-_|0)*3|0)|0,!((N&A|0)==0&((Z()|0)&f|0)==0))break e;if(_>>>0>>0)_=_+1|0;else break}return sp(T,y,0,5,p),N=0,K=M,N|0}while(!1);return RA(T,y,0,6,p),N=0,K=M,N|0}function wx(A,f,p){A=A|0,f=f|0,p=p|0;var _=0,y=0,T=0;if(y=St(A|0,f|0,45)|0,Z()|0,!(Bi(y&127)|0))return y=2,d[p>>2]=y,0;if(y=St(A|0,f|0,52)|0,Z()|0,y=y&15,!y)return y=5,d[p>>2]=y,0;for(_=1;;){if(T=Nt(7,0,(15-_|0)*3|0)|0,!((T&A|0)==0&((Z()|0)&f|0)==0)){_=2,A=6;break}if(_>>>0>>0)_=_+1|0;else{_=5,A=6;break}}return(A|0)==6&&(d[p>>2]=_),0}function Gu(A,f,p){A=A|0,f=f|0,p=p|0;var _=0,y=0,T=0,M=0,N=0,U=0,I=0,H=0,ie=0;ie=K,K=K+128|0,I=ie+112|0,T=ie+96|0,H=ie,y=St(A|0,f|0,52)|0,Z()|0,N=y&15,d[I>>2]=N,M=St(A|0,f|0,45)|0,Z()|0,M=M&127;e:do if(Bi(M)|0){if(N|0)for(_=1;;){if(U=Nt(7,0,(15-_|0)*3|0)|0,!((U&A|0)==0&((Z()|0)&f|0)==0)){y=0;break e}if(_>>>0>>0)_=_+1|0;else break}if(y&1)y=1;else return U=Nt(N+1|0,0,52)|0,H=Z()|0|f&-15728641,I=Nt(7,0,(14-N|0)*3|0)|0,H=Gu((U|A)&~I,H&~(Z()|0),p)|0,K=ie,H|0}else y=0;while(!1);if(_=zu(A,f,T)|0,!_){y?(ap(T,I,H),U=5):(op(T,I,H),U=6);e:do if(Bi(M)|0)if(!N)A=5;else for(_=1;;){if(M=Nt(7,0,(15-_|0)*3|0)|0,!((M&A|0)==0&((Z()|0)&f|0)==0)){A=2;break e}if(_>>>0>>0)_=_+1|0;else{A=5;break}}else A=2;while(!1);uo(p|0,-1,A<<2|0)|0;e:do if(y)for(T=0;;){if(M=H+(T<<4)|0,m1(M,d[I>>2]|0)|0,M=d[M>>2]|0,N=d[p>>2]|0,(N|0)==-1|(N|0)==(M|0))_=p;else{y=0;do{if(y=y+1|0,y>>>0>=A>>>0){_=1;break e}_=p+(y<<2)|0,N=d[_>>2]|0}while(!((N|0)==-1|(N|0)==(M|0)))}if(d[_>>2]=M,T=T+1|0,T>>>0>=U>>>0){_=0;break}}else for(T=0;;){if(M=H+(T<<4)|0,Ou(M,d[I>>2]|0,0,1)|0,M=d[M>>2]|0,N=d[p>>2]|0,(N|0)==-1|(N|0)==(M|0))_=p;else{y=0;do{if(y=y+1|0,y>>>0>=A>>>0){_=1;break e}_=p+(y<<2)|0,N=d[_>>2]|0}while(!((N|0)==-1|(N|0)==(M|0)))}if(d[_>>2]=M,T=T+1|0,T>>>0>=U>>>0){_=0;break}}while(!1)}return H=_,K=ie,H|0}function fp(){return 12}function qu(A,f){A=A|0,f=f|0;var p=0,_=0,y=0,T=0,M=0,N=0,U=0;if(A>>>0>15)return N=4,N|0;if(Nt(A|0,0,52)|0,N=Z()|0|134225919,!A){p=0,_=0;do Bi(_)|0&&(Nt(_|0,0,45)|0,M=N|(Z()|0),A=f+(p<<3)|0,d[A>>2]=-1,d[A+4>>2]=M,p=p+1|0),_=_+1|0;while((_|0)!=122);return p=0,p|0}p=0,M=0;do{if(Bi(M)|0){for(Nt(M|0,0,45)|0,_=1,y=-1,T=N|(Z()|0);U=Nt(7,0,(15-_|0)*3|0)|0,y=y&~U,T=T&~(Z()|0),(_|0)!=(A|0);)_=_+1|0;U=f+(p<<3)|0,d[U>>2]=y,d[U+4>>2]=T,p=p+1|0}M=M+1|0}while((M|0)!=122);return p=0,p|0}function Ap(A,f,p,_){A=A|0,f=f|0,p=p|0,_=_|0;var y=0,T=0,M=0,N=0,U=0,I=0,H=0,ie=0,pe=0,de=0,me=0,Ne=0,Oe=0,Qe=0,He=0;if(He=K,K=K+16|0,Oe=He,Qe=St(A|0,f|0,52)|0,Z()|0,Qe=Qe&15,p>>>0>15)return Qe=4,K=He,Qe|0;if((Qe|0)<(p|0))return Qe=12,K=He,Qe|0;if((Qe|0)!=(p|0))if(T=Nt(p|0,0,52)|0,T=T|A,N=Z()|0|f&-15728641,(Qe|0)>(p|0)){U=p;do Ne=Nt(7,0,(14-U|0)*3|0)|0,U=U+1|0,T=Ne|T,N=Z()|0|N;while((U|0)<(Qe|0));Ne=T}else Ne=T;else Ne=A,N=f;me=St(Ne|0,N|0,45)|0,Z()|0;e:do if(Bi(me&127)|0){if(U=St(Ne|0,N|0,52)|0,Z()|0,U=U&15,U|0)for(T=1;;){if(me=Nt(7,0,(15-T|0)*3|0)|0,!((me&Ne|0)==0&((Z()|0)&N|0)==0)){I=33;break e}if(T>>>0>>0)T=T+1|0;else break}if(me=_,d[me>>2]=0,d[me+4>>2]=0,(Qe|0)>(p|0)){for(me=f&-15728641,de=Qe;;){if(pe=de,de=de+-1|0,de>>>0>15|(Qe|0)<(de|0)){I=19;break}if((Qe|0)!=(de|0))if(T=Nt(de|0,0,52)|0,T=T|A,U=Z()|0|me,(Qe|0)<(pe|0))ie=T;else{I=de;do ie=Nt(7,0,(14-I|0)*3|0)|0,I=I+1|0,T=ie|T,U=Z()|0|U;while((I|0)<(Qe|0));ie=T}else ie=A,U=f;if(H=St(ie|0,U|0,45)|0,Z()|0,!(Bi(H&127)|0))T=0;else{H=St(ie|0,U|0,52)|0,Z()|0,H=H&15;t:do if(!H)T=0;else for(I=1;;){if(T=St(ie|0,U|0,(15-I|0)*3|0)|0,Z()|0,T=T&7,T|0)break t;if(I>>>0>>0)I=I+1|0;else{T=0;break}}while(!1);T=(T|0)==0&1}if(U=St(A|0,f|0,(15-pe|0)*3|0)|0,Z()|0,U=U&7,(U|0)==7){y=5,I=42;break}if(T=(T|0)!=0,(U|0)==1&T){y=5,I=42;break}if(ie=U+(((U|0)!=0&T)<<31>>31)|0,ie|0&&(I=Qe-pe|0,I=Bo(7,0,I,((I|0)<0)<<31>>31)|0,H=Z()|0,T?(T=fr(I|0,H|0,5,0)|0,T=Qt(T|0,Z()|0,-5,-1)|0,T=ko(T|0,Z()|0,6,0)|0,T=Qt(T|0,Z()|0,1,0)|0,U=Z()|0):(T=I,U=H),pe=ie+-1|0,pe=fr(I|0,H|0,pe|0,((pe|0)<0)<<31>>31|0)|0,pe=Qt(T|0,U|0,pe|0,Z()|0)|0,ie=Z()|0,H=_,H=Qt(pe|0,ie|0,d[H>>2]|0,d[H+4>>2]|0)|0,ie=Z()|0,pe=_,d[pe>>2]=H,d[pe+4>>2]=ie),(de|0)<=(p|0)){I=37;break}}if((I|0)==19)Bt(27795,27122,1367,27158);else if((I|0)==37){M=_,y=d[M+4>>2]|0,M=d[M>>2]|0;break}else if((I|0)==42)return K=He,y|0}else y=0,M=0}else I=33;while(!1);e:do if((I|0)==33)if(me=_,d[me>>2]=0,d[me+4>>2]=0,(Qe|0)>(p|0)){for(T=Qe;;){if(y=St(A|0,f|0,(15-T|0)*3|0)|0,Z()|0,y=y&7,(y|0)==7){y=5;break}if(M=Qe-T|0,M=Bo(7,0,M,((M|0)<0)<<31>>31)|0,y=fr(M|0,Z()|0,y|0,0)|0,M=Z()|0,me=_,M=Qt(d[me>>2]|0,d[me+4>>2]|0,y|0,M|0)|0,y=Z()|0,me=_,d[me>>2]=M,d[me+4>>2]=y,T=T+-1|0,(T|0)<=(p|0))break e}return K=He,y|0}else y=0,M=0;while(!1);return lf(Ne,N,Qe,Oe)|0&&Bt(27795,27122,1327,27173),Qe=Oe,Oe=d[Qe+4>>2]|0,((y|0)>-1|(y|0)==-1&M>>>0>4294967295)&((Oe|0)>(y|0)|((Oe|0)==(y|0)?(d[Qe>>2]|0)>>>0>M>>>0:0))?(Qe=0,K=He,Qe|0):(Bt(27795,27122,1407,27158),0)}function S1(A,f,p,_,y,T){A=A|0,f=f|0,p=p|0,_=_|0,y=y|0,T=T|0;var M=0,N=0,U=0,I=0,H=0,ie=0,pe=0,de=0,me=0,Ne=0;if(ie=K,K=K+16|0,M=ie,y>>>0>15)return T=4,K=ie,T|0;if(N=St(p|0,_|0,52)|0,Z()|0,N=N&15,(N|0)>(y|0))return T=12,K=ie,T|0;if(lf(p,_,y,M)|0&&Bt(27795,27122,1327,27173),H=M,I=d[H+4>>2]|0,!(((f|0)>-1|(f|0)==-1&A>>>0>4294967295)&((I|0)>(f|0)|((I|0)==(f|0)?(d[H>>2]|0)>>>0>A>>>0:0))))return T=2,K=ie,T|0;H=y-N|0,y=Nt(y|0,0,52)|0,U=Z()|0|_&-15728641,I=T,d[I>>2]=y|p,d[I+4>>2]=U,I=St(p|0,_|0,45)|0,Z()|0;e:do if(Bi(I&127)|0){if(N|0)for(M=1;;){if(I=Nt(7,0,(15-M|0)*3|0)|0,!((I&p|0)==0&((Z()|0)&_|0)==0))break e;if(M>>>0>>0)M=M+1|0;else break}if((H|0)<1)return T=0,K=ie,T|0;for(I=N^15,_=-1,U=1,M=1;;){N=H-U|0,N=Bo(7,0,N,((N|0)<0)<<31>>31)|0,p=Z()|0;do if(M)if(M=fr(N|0,p|0,5,0)|0,M=Qt(M|0,Z()|0,-5,-1)|0,M=ko(M|0,Z()|0,6,0)|0,y=Z()|0,(f|0)>(y|0)|(f|0)==(y|0)&A>>>0>M>>>0){f=Qt(A|0,f|0,-1,-1)|0,f=Ur(f|0,Z()|0,M|0,y|0)|0,M=Z()|0,pe=T,me=d[pe>>2]|0,pe=d[pe+4>>2]|0,Ne=(I+_|0)*3|0,de=Nt(7,0,Ne|0)|0,pe=pe&~(Z()|0),_=ko(f|0,M|0,N|0,p|0)|0,A=Z()|0,y=Qt(_|0,A|0,2,0)|0,Ne=Nt(y|0,Z()|0,Ne|0)|0,pe=Z()|0|pe,y=T,d[y>>2]=Ne|me&~de,d[y+4>>2]=pe,A=fr(_|0,A|0,N|0,p|0)|0,A=Ur(f|0,M|0,A|0,Z()|0)|0,M=0,f=Z()|0;break}else{Ne=T,de=d[Ne>>2]|0,Ne=d[Ne+4>>2]|0,me=Nt(7,0,(I+_|0)*3|0)|0,Ne=Ne&~(Z()|0),M=T,d[M>>2]=de&~me,d[M+4>>2]=Ne,M=1;break}else de=T,y=d[de>>2]|0,de=d[de+4>>2]|0,_=(I+_|0)*3|0,pe=Nt(7,0,_|0)|0,de=de&~(Z()|0),Ne=ko(A|0,f|0,N|0,p|0)|0,M=Z()|0,_=Nt(Ne|0,M|0,_|0)|0,de=Z()|0|de,me=T,d[me>>2]=_|y&~pe,d[me+4>>2]=de,M=fr(Ne|0,M|0,N|0,p|0)|0,A=Ur(A|0,f|0,M|0,Z()|0)|0,M=0,f=Z()|0;while(!1);if((H|0)>(U|0))_=~U,U=U+1|0;else{f=0;break}}return K=ie,f|0}while(!1);if((H|0)<1)return Ne=0,K=ie,Ne|0;for(y=N^15,M=1;;)if(me=H-M|0,me=Bo(7,0,me,((me|0)<0)<<31>>31)|0,Ne=Z()|0,U=T,p=d[U>>2]|0,U=d[U+4>>2]|0,N=(y-M|0)*3|0,_=Nt(7,0,N|0)|0,U=U&~(Z()|0),pe=ko(A|0,f|0,me|0,Ne|0)|0,de=Z()|0,N=Nt(pe|0,de|0,N|0)|0,U=Z()|0|U,I=T,d[I>>2]=N|p&~_,d[I+4>>2]=U,Ne=fr(pe|0,de|0,me|0,Ne|0)|0,A=Ur(A|0,f|0,Ne|0,Z()|0)|0,f=Z()|0,(H|0)<=(M|0)){f=0;break}else M=M+1|0;return K=ie,f|0}function sl(A,f,p,_){A=A|0,f=f|0,p=p|0,_=_|0;var y=0,T=0,M=0;y=St(f|0,p|0,52)|0,Z()|0,y=y&15,(f|0)==0&(p|0)==0|((_|0)>15|(y|0)>(_|0))?(T=-1,f=-1,p=0,y=0):(f=lp(f,p,y+1|0,_)|0,M=(Z()|0)&-15728641,p=Nt(_|0,0,52)|0,p=f|p,M=M|(Z()|0),f=(Ci(p,M)|0)==0,T=y,f=f?-1:_,y=M),M=A,d[M>>2]=p,d[M+4>>2]=y,d[A+8>>2]=T,d[A+12>>2]=f}function Vu(A,f,p,_){A=A|0,f=f|0,p=p|0,_=_|0;var y=0,T=0;if(y=St(A|0,f|0,52)|0,Z()|0,y=y&15,T=_+8|0,d[T>>2]=y,(A|0)==0&(f|0)==0|((p|0)>15|(y|0)>(p|0))){p=_,d[p>>2]=0,d[p+4>>2]=0,d[T>>2]=-1,d[_+12>>2]=-1;return}if(A=lp(A,f,y+1|0,p)|0,T=(Z()|0)&-15728641,y=Nt(p|0,0,52)|0,y=A|y,T=T|(Z()|0),A=_,d[A>>2]=y,d[A+4>>2]=T,A=_+12|0,Ci(y,T)|0){d[A>>2]=p;return}else{d[A>>2]=-1;return}}function uf(A){A=A|0;var f=0,p=0,_=0,y=0,T=0,M=0,N=0,U=0,I=0;if(p=A,f=d[p>>2]|0,p=d[p+4>>2]|0,!((f|0)==0&(p|0)==0)&&(_=St(f|0,p|0,52)|0,Z()|0,_=_&15,N=Nt(1,0,(_^15)*3|0)|0,f=Qt(N|0,Z()|0,f|0,p|0)|0,p=Z()|0,N=A,d[N>>2]=f,d[N+4>>2]=p,N=A+8|0,M=d[N>>2]|0,!((_|0)<(M|0)))){for(U=A+12|0,T=_;;){if((T|0)==(M|0)){_=5;break}if(I=(T|0)==(d[U>>2]|0),y=(15-T|0)*3|0,_=St(f|0,p|0,y|0)|0,Z()|0,_=_&7,I&((_|0)==1&!0)){_=7;break}if(!((_|0)==7&!0)){_=10;break}if(I=Nt(1,0,y|0)|0,f=Qt(f|0,p|0,I|0,Z()|0)|0,p=Z()|0,I=A,d[I>>2]=f,d[I+4>>2]=p,(T|0)>(M|0))T=T+-1|0;else{_=10;break}}if((_|0)==5){I=A,d[I>>2]=0,d[I+4>>2]=0,d[N>>2]=-1,d[U>>2]=-1;return}else if((_|0)==7){M=Nt(1,0,y|0)|0,M=Qt(f|0,p|0,M|0,Z()|0)|0,N=Z()|0,I=A,d[I>>2]=M,d[I+4>>2]=N,d[U>>2]=T+-1;return}else if((_|0)==10)return}}function Kc(A){A=+A;var f=0;return f=A<0?A+6.283185307179586:A,+(A>=6.283185307179586?f+-6.283185307179586:f)}function Ea(A,f){return A=A|0,f=f|0,+un(+(+ee[A>>3]-+ee[f>>3]))<17453292519943298e-27?(f=+un(+(+ee[A+8>>3]-+ee[f+8>>3]))<17453292519943298e-27,f|0):(f=0,f|0)}function Xs(A,f){switch(A=+A,f=f|0,f|0){case 1:{A=A<0?A+6.283185307179586:A;break}case 2:{A=A>0?A+-6.283185307179586:A;break}}return+A}function T1(A,f){A=A|0,f=f|0;var p=0,_=0,y=0,T=0;return y=+ee[f>>3],_=+ee[A>>3],T=+Fn(+((y-_)*.5)),p=+Fn(+((+ee[f+8>>3]-+ee[A+8>>3])*.5)),p=T*T+p*(+ui(+y)*+ui(+_)*p),+(+Ie(+ +qn(+p),+ +qn(+(1-p)))*2)}function Zc(A,f){A=A|0,f=f|0;var p=0,_=0,y=0,T=0;return y=+ee[f>>3],_=+ee[A>>3],T=+Fn(+((y-_)*.5)),p=+Fn(+((+ee[f+8>>3]-+ee[A+8>>3])*.5)),p=T*T+p*(+ui(+y)*+ui(+_)*p),+(+Ie(+ +qn(+p),+ +qn(+(1-p)))*2*6371.007180918475)}function Mx(A,f){A=A|0,f=f|0;var p=0,_=0,y=0,T=0;return y=+ee[f>>3],_=+ee[A>>3],T=+Fn(+((y-_)*.5)),p=+Fn(+((+ee[f+8>>3]-+ee[A+8>>3])*.5)),p=T*T+p*(+ui(+y)*+ui(+_)*p),+(+Ie(+ +qn(+p),+ +qn(+(1-p)))*2*6371.007180918475*1e3)}function Ex(A,f){A=A|0,f=f|0;var p=0,_=0,y=0,T=0,M=0;return T=+ee[f>>3],_=+ui(+T),y=+ee[f+8>>3]-+ee[A+8>>3],M=_*+Fn(+y),p=+ee[A>>3],+ +Ie(+M,+(+Fn(+T)*+ui(+p)-+ui(+y)*(_*+Fn(+p))))}function Cx(A,f,p,_){A=A|0,f=+f,p=+p,_=_|0;var y=0,T=0,M=0,N=0;if(p<1e-16){d[_>>2]=d[A>>2],d[_+4>>2]=d[A+4>>2],d[_+8>>2]=d[A+8>>2],d[_+12>>2]=d[A+12>>2];return}T=f<0?f+6.283185307179586:f,T=f>=6.283185307179586?T+-6.283185307179586:T;do if(T<1e-16)f=+ee[A>>3]+p,ee[_>>3]=f,y=_;else{if(y=+un(+(T+-3.141592653589793))<1e-16,f=+ee[A>>3],y){f=f-p,ee[_>>3]=f,y=_;break}if(M=+ui(+p),p=+Fn(+p),f=M*+Fn(+f)+ +ui(+T)*(p*+ui(+f)),f=f>1?1:f,f=+Ul(+(f<-1?-1:f)),ee[_>>3]=f,+un(+(f+-1.5707963267948966))<1e-16){ee[_>>3]=1.5707963267948966,ee[_+8>>3]=0;return}if(+un(+(f+1.5707963267948966))<1e-16){ee[_>>3]=-1.5707963267948966,ee[_+8>>3]=0;return}if(N=1/+ui(+f),T=p*+Fn(+T)*N,p=+ee[A>>3],f=N*((M-+Fn(+f)*+Fn(+p))/+ui(+p)),M=T>1?1:T,f=f>1?1:f,f=+ee[A+8>>3]+ +Ie(+(M<-1?-1:M),+(f<-1?-1:f)),f>3.141592653589793)do f=f+-6.283185307179586;while(f>3.141592653589793);if(f<-3.141592653589793)do f=f+6.283185307179586;while(f<-3.141592653589793);ee[_+8>>3]=f;return}while(!1);if(+un(+(f+-1.5707963267948966))<1e-16){ee[y>>3]=1.5707963267948966,ee[_+8>>3]=0;return}if(+un(+(f+1.5707963267948966))<1e-16){ee[y>>3]=-1.5707963267948966,ee[_+8>>3]=0;return}if(f=+ee[A+8>>3],f>3.141592653589793)do f=f+-6.283185307179586;while(f>3.141592653589793);if(f<-3.141592653589793)do f=f+6.283185307179586;while(f<-3.141592653589793);ee[_+8>>3]=f}function dp(A,f){return A=A|0,f=f|0,A>>>0>15?(f=4,f|0):(ee[f>>3]=+ee[20656+(A<<3)>>3],f=0,f|0)}function w1(A,f){return A=A|0,f=f|0,A>>>0>15?(f=4,f|0):(ee[f>>3]=+ee[20784+(A<<3)>>3],f=0,f|0)}function pp(A,f){return A=A|0,f=f|0,A>>>0>15?(f=4,f|0):(ee[f>>3]=+ee[20912+(A<<3)>>3],f=0,f|0)}function oo(A,f){return A=A|0,f=f|0,A>>>0>15?(f=4,f|0):(ee[f>>3]=+ee[21040+(A<<3)>>3],f=0,f|0)}function Hu(A,f){A=A|0,f=f|0;var p=0;return A>>>0>15?(f=4,f|0):(p=Bo(7,0,A,((A|0)<0)<<31>>31)|0,p=fr(p|0,Z()|0,120,0)|0,A=Z()|0,d[f>>2]=p|2,d[f+4>>2]=A,f=0,f|0)}function da(A,f,p){A=A|0,f=f|0,p=p|0;var _=0,y=0,T=0,M=0,N=0,U=0,I=0,H=0,ie=0,pe=0;return pe=+ee[f>>3],H=+ee[A>>3],U=+Fn(+((pe-H)*.5)),T=+ee[f+8>>3],I=+ee[A+8>>3],M=+Fn(+((T-I)*.5)),N=+ui(+H),ie=+ui(+pe),M=U*U+M*(ie*N*M),M=+Ie(+ +qn(+M),+ +qn(+(1-M)))*2,U=+ee[p>>3],pe=+Fn(+((U-pe)*.5)),_=+ee[p+8>>3],T=+Fn(+((_-T)*.5)),y=+ui(+U),T=pe*pe+T*(ie*y*T),T=+Ie(+ +qn(+T),+ +qn(+(1-T)))*2,U=+Fn(+((H-U)*.5)),_=+Fn(+((I-_)*.5)),_=U*U+_*(N*y*_),_=+Ie(+ +qn(+_),+ +qn(+(1-_)))*2,y=(M+T+_)*.5,+(+le(+ +qn(+(+cs(+(y*.5))*+cs(+((y-M)*.5))*+cs(+((y-T)*.5))*+cs(+((y-_)*.5)))))*4)}function Fl(A,f,p){A=A|0,f=f|0,p=p|0;var _=0,y=0,T=0,M=0,N=0;if(N=K,K=K+192|0,T=N+168|0,M=N,y=Ol(A,f,T)|0,y|0)return p=y,K=N,p|0;if(Il(A,f,M)|0&&Bt(27795,27190,415,27199),f=d[M>>2]|0,(f|0)>0){if(_=+da(M+8|0,M+8+(((f|0)!=1&1)<<4)|0,T)+0,(f|0)!=1){A=1;do y=A,A=A+1|0,_=_+ +da(M+8+(y<<4)|0,M+8+(((A|0)%(f|0)|0)<<4)|0,T);while((A|0)<(f|0))}}else _=0;return ee[p>>3]=_,p=0,K=N,p|0}function mp(A,f,p){return A=A|0,f=f|0,p=p|0,A=Fl(A,f,p)|0,A|0||(ee[p>>3]=+ee[p>>3]*6371.007180918475*6371.007180918475),A|0}function UA(A,f,p){return A=A|0,f=f|0,p=p|0,A=Fl(A,f,p)|0,A|0||(ee[p>>3]=+ee[p>>3]*6371.007180918475*6371.007180918475*1e3*1e3),A|0}function BA(A,f,p){A=A|0,f=f|0,p=p|0;var _=0,y=0,T=0,M=0,N=0,U=0,I=0,H=0;if(N=K,K=K+176|0,M=N,A=CA(A,f,M)|0,A|0)return M=A,K=N,M|0;if(ee[p>>3]=0,A=d[M>>2]|0,(A|0)<=1)return M=0,K=N,M|0;f=A+-1|0,A=0,_=+ee[M+8>>3],y=+ee[M+16>>3],T=0;do A=A+1|0,I=_,_=+ee[M+8+(A<<4)>>3],H=+Fn(+((_-I)*.5)),U=y,y=+ee[M+8+(A<<4)+8>>3],U=+Fn(+((y-U)*.5)),U=H*H+U*(+ui(+_)*+ui(+I)*U),T=T+ +Ie(+ +qn(+U),+ +qn(+(1-U)))*2;while((A|0)<(f|0));return ee[p>>3]=T,M=0,K=N,M|0}function gp(A,f,p){A=A|0,f=f|0,p=p|0;var _=0,y=0,T=0,M=0,N=0,U=0,I=0,H=0;if(N=K,K=K+176|0,M=N,A=CA(A,f,M)|0,A|0)return M=A,T=+ee[p>>3],T=T*6371.007180918475,ee[p>>3]=T,K=N,M|0;if(ee[p>>3]=0,A=d[M>>2]|0,(A|0)<=1)return M=0,T=0,T=T*6371.007180918475,ee[p>>3]=T,K=N,M|0;f=A+-1|0,A=0,_=+ee[M+8>>3],y=+ee[M+16>>3],T=0;do A=A+1|0,I=_,_=+ee[M+8+(A<<4)>>3],H=+Fn(+((_-I)*.5)),U=y,y=+ee[M+8+(A<<4)+8>>3],U=+Fn(+((y-U)*.5)),U=H*H+U*(+ui(+I)*+ui(+_)*U),T=T+ +Ie(+ +qn(+U),+ +qn(+(1-U)))*2;while((A|0)!=(f|0));return ee[p>>3]=T,M=0,H=T,H=H*6371.007180918475,ee[p>>3]=H,K=N,M|0}function ju(A,f,p){A=A|0,f=f|0,p=p|0;var _=0,y=0,T=0,M=0,N=0,U=0,I=0,H=0;if(N=K,K=K+176|0,M=N,A=CA(A,f,M)|0,A|0)return M=A,T=+ee[p>>3],T=T*6371.007180918475,T=T*1e3,ee[p>>3]=T,K=N,M|0;if(ee[p>>3]=0,A=d[M>>2]|0,(A|0)<=1)return M=0,T=0,T=T*6371.007180918475,T=T*1e3,ee[p>>3]=T,K=N,M|0;f=A+-1|0,A=0,_=+ee[M+8>>3],y=+ee[M+16>>3],T=0;do A=A+1|0,I=_,_=+ee[M+8+(A<<4)>>3],H=+Fn(+((_-I)*.5)),U=y,y=+ee[M+8+(A<<4)+8>>3],U=+Fn(+((y-U)*.5)),U=H*H+U*(+ui(+I)*+ui(+_)*U),T=T+ +Ie(+ +qn(+U),+ +qn(+(1-U)))*2;while((A|0)!=(f|0));return ee[p>>3]=T,M=0,H=T,H=H*6371.007180918475,H=H*1e3,ee[p>>3]=H,K=N,M|0}function M1(A){A=A|0;var f=0,p=0,_=0;return f=Ks(1,12)|0,f||Bt(27280,27235,49,27293),p=A+4|0,_=d[p>>2]|0,_|0?(_=_+8|0,d[_>>2]=f,d[p>>2]=f,f|0):(d[A>>2]|0&&Bt(27310,27235,61,27333),_=A,d[_>>2]=f,d[p>>2]=f,f|0)}function OA(A,f){A=A|0,f=f|0;var p=0,_=0;return _=Fo(24)|0,_||Bt(27347,27235,78,27361),d[_>>2]=d[f>>2],d[_+4>>2]=d[f+4>>2],d[_+8>>2]=d[f+8>>2],d[_+12>>2]=d[f+12>>2],d[_+16>>2]=0,f=A+4|0,p=d[f>>2]|0,p|0?(d[p+16>>2]=_,d[f>>2]=_,_|0):(d[A>>2]|0&&Bt(27376,27235,82,27361),d[A>>2]=_,d[f>>2]=_,_|0)}function Wu(A){A=A|0;var f=0,p=0,_=0,y=0;if(A)for(_=1;;){if(f=d[A>>2]|0,f|0)do{if(p=d[f>>2]|0,p|0)do y=p,p=d[p+16>>2]|0,An(y);while((p|0)!=0);y=f,f=d[f+8>>2]|0,An(y)}while((f|0)!=0);if(f=A,A=d[A+8>>2]|0,_||An(f),A)_=0;else break}}function Rx(A){A=A|0;var f=0,p=0,_=0,y=0,T=0,M=0,N=0,U=0,I=0,H=0,ie=0,pe=0,de=0,me=0,Ne=0,Oe=0,Qe=0,He=0,Ve=0,De=0,Lt=0,sn=0,tn=0,Bn=0,En=0,Qn=0,Tn=0,on=0,Ut=0,vn=0,ri=0,wn=0;if(y=A+8|0,d[y>>2]|0)return wn=1,wn|0;if(_=d[A>>2]|0,!_)return wn=0,wn|0;f=_,p=0;do p=p+1|0,f=d[f+8>>2]|0;while((f|0)!=0);if(p>>>0<2)return wn=0,wn|0;vn=Fo(p<<2)|0,vn||Bt(27396,27235,317,27415),Ut=Fo(p<<5)|0,Ut||Bt(27437,27235,321,27415),d[A>>2]=0,sn=A+4|0,d[sn>>2]=0,d[y>>2]=0,p=0,on=0,Lt=0,ie=0;e:for(;;){if(H=d[_>>2]|0,H){T=0,M=H;do{if(U=+ee[M+8>>3],f=M,M=d[M+16>>2]|0,I=(M|0)==0,y=I?H:M,N=+ee[y+8>>3],+un(+(U-N))>3.141592653589793){wn=14;break}T=T+(N-U)*(+ee[f>>3]+ +ee[y>>3])}while(!I);if((wn|0)==14){wn=0,T=0,f=H;do De=+ee[f+8>>3],Tn=f+16|0,Qn=d[Tn>>2]|0,Qn=(Qn|0)==0?H:Qn,Ve=+ee[Qn+8>>3],T=T+(+ee[f>>3]+ +ee[Qn>>3])*((Ve<0?Ve+6.283185307179586:Ve)-(De<0?De+6.283185307179586:De)),f=d[((f|0)==0?_:Tn)>>2]|0;while((f|0)!=0)}T>0?(d[vn+(on<<2)>>2]=_,on=on+1|0,y=Lt,f=ie):wn=19}else wn=19;if((wn|0)==19){wn=0;do if(p){if(f=p+8|0,d[f>>2]|0){wn=21;break e}if(p=Ks(1,12)|0,!p){wn=23;break e}d[f>>2]=p,y=p+4|0,M=p,f=ie}else if(ie){y=sn,M=ie+8|0,f=_,p=A;break}else if(d[A>>2]|0){wn=27;break e}else{y=sn,M=A,f=_,p=A;break}while(!1);if(d[M>>2]=_,d[y>>2]=_,M=Ut+(Lt<<5)|0,I=d[_>>2]|0,I){for(H=Ut+(Lt<<5)+8|0,ee[H>>3]=17976931348623157e292,ie=Ut+(Lt<<5)+24|0,ee[ie>>3]=17976931348623157e292,ee[M>>3]=-17976931348623157e292,pe=Ut+(Lt<<5)+16|0,ee[pe>>3]=-17976931348623157e292,Qe=17976931348623157e292,He=-17976931348623157e292,y=0,de=I,U=17976931348623157e292,Ne=17976931348623157e292,Oe=-17976931348623157e292,N=-17976931348623157e292;T=+ee[de>>3],De=+ee[de+8>>3],de=d[de+16>>2]|0,me=(de|0)==0,Ve=+ee[(me?I:de)+8>>3],T>3]=T,U=T),De>3]=De,Ne=De),T>Oe?ee[M>>3]=T:T=Oe,De>N&&(ee[pe>>3]=De,N=De),Qe=De>0&DeHe?De:He,y=y|+un(+(De-Ve))>3.141592653589793,!me;)Oe=T;y&&(ee[pe>>3]=He,ee[ie>>3]=Qe)}else d[M>>2]=0,d[M+4>>2]=0,d[M+8>>2]=0,d[M+12>>2]=0,d[M+16>>2]=0,d[M+20>>2]=0,d[M+24>>2]=0,d[M+28>>2]=0;y=Lt+1|0}if(Tn=_+8|0,_=d[Tn>>2]|0,d[Tn>>2]=0,_)Lt=y,ie=f;else{wn=45;break}}if((wn|0)==21)Bt(27213,27235,35,27247);else if((wn|0)==23)Bt(27267,27235,37,27247);else if((wn|0)==27)Bt(27310,27235,61,27333);else if((wn|0)==45){e:do if((on|0)>0){for(Tn=(y|0)==0,En=y<<2,Qn=(A|0)==0,Bn=0,f=0;;){if(tn=d[vn+(Bn<<2)>>2]|0,Tn)wn=73;else{if(Lt=Fo(En)|0,!Lt){wn=50;break}if(sn=Fo(En)|0,!sn){wn=52;break}t:do if(Qn)p=0;else{for(y=0,p=0,M=A;_=Ut+(y<<5)|0,Ys(d[M>>2]|0,_,d[tn>>2]|0)|0?(d[Lt+(p<<2)>>2]=M,d[sn+(p<<2)>>2]=_,me=p+1|0):me=p,M=d[M+8>>2]|0,M;)y=y+1|0,p=me;if((me|0)>0)if(_=d[Lt>>2]|0,(me|0)==1)p=_;else for(pe=0,de=-1,p=_,ie=_;;){for(I=d[ie>>2]|0,_=0,M=0;y=d[d[Lt+(M<<2)>>2]>>2]|0,(y|0)==(I|0)?H=_:H=_+((Ys(y,d[sn+(M<<2)>>2]|0,d[I>>2]|0)|0)&1)|0,M=M+1|0,(M|0)!=(me|0);)_=H;if(y=(H|0)>(de|0),p=y?ie:p,_=pe+1|0,(_|0)==(me|0))break t;pe=_,de=y?H:de,ie=d[Lt+(_<<2)>>2]|0}else p=0}while(!1);if(An(Lt),An(sn),p){if(y=p+4|0,_=d[y>>2]|0,_)p=_+8|0;else if(d[p>>2]|0){wn=70;break}d[p>>2]=tn,d[y>>2]=tn}else wn=73}if((wn|0)==73){if(wn=0,f=d[tn>>2]|0,f|0)do sn=f,f=d[f+16>>2]|0,An(sn);while((f|0)!=0);An(tn),f=1}if(Bn=Bn+1|0,(Bn|0)>=(on|0)){ri=f;break e}}(wn|0)==50?Bt(27452,27235,249,27471):(wn|0)==52?Bt(27490,27235,252,27471):(wn|0)==70&&Bt(27310,27235,61,27333)}else ri=0;while(!1);return An(vn),An(Ut),wn=ri,wn|0}return 0}function Ys(A,f,p){A=A|0,f=f|0,p=p|0;var _=0,y=0,T=0,M=0,N=0,U=0,I=0,H=0;if(!(Lo(f,p)|0)||(f=TA(f)|0,_=+ee[p>>3],y=+ee[p+8>>3],y=f&y<0?y+6.283185307179586:y,A=d[A>>2]|0,!A))return A=0,A|0;if(f){f=0,I=y,p=A;e:for(;;){for(;M=+ee[p>>3],y=+ee[p+8>>3],p=p+16|0,H=d[p>>2]|0,H=(H|0)==0?A:H,T=+ee[H>>3],N=+ee[H+8>>3],M>T?(U=M,M=N):(U=T,T=M,M=y,y=N),_=_==T|_==U?_+2220446049250313e-31:_,!!(_U);)if(p=d[p>>2]|0,!p){p=22;break e}if(N=M<0?M+6.283185307179586:M,M=y<0?y+6.283185307179586:y,I=N==I|M==I?I+-2220446049250313e-31:I,U=N+(M-N)*((_-T)/(U-T)),(U<0?U+6.283185307179586:U)>I&&(f=f^1),p=d[p>>2]|0,!p){p=22;break}}if((p|0)==22)return f|0}else{f=0,I=y,p=A;e:for(;;){for(;M=+ee[p>>3],y=+ee[p+8>>3],p=p+16|0,H=d[p>>2]|0,H=(H|0)==0?A:H,T=+ee[H>>3],N=+ee[H+8>>3],M>T?(U=M,M=N):(U=T,T=M,M=y,y=N),_=_==T|_==U?_+2220446049250313e-31:_,!!(_U);)if(p=d[p>>2]|0,!p){p=22;break e}if(I=M==I|y==I?I+-2220446049250313e-31:I,M+(y-M)*((_-T)/(U-T))>I&&(f=f^1),p=d[p>>2]|0,!p){p=22;break}}if((p|0)==22)return f|0}return 0}function lo(A,f,p,_,y){A=A|0,f=f|0,p=p|0,_=_|0,y=y|0;var T=0,M=0,N=0,U=0,I=0,H=0,ie=0,pe=0,de=0,me=0,Ne=0,Oe=0,Qe=0,He=0;if(He=K,K=K+32|0,Qe=He+16|0,Oe=He,T=St(A|0,f|0,52)|0,Z()|0,T=T&15,de=St(p|0,_|0,52)|0,Z()|0,(T|0)!=(de&15|0))return Qe=12,K=He,Qe|0;if(I=St(A|0,f|0,45)|0,Z()|0,I=I&127,H=St(p|0,_|0,45)|0,Z()|0,H=H&127,I>>>0>121|H>>>0>121)return Qe=5,K=He,Qe|0;if(de=(I|0)!=(H|0),de){if(N=Jh(I,H)|0,(N|0)==7)return Qe=1,K=He,Qe|0;U=Jh(H,I)|0,(U|0)==7?Bt(27514,27538,161,27548):(me=N,M=U)}else me=0,M=0;ie=Bi(I)|0,pe=Bi(H)|0,d[Qe>>2]=0,d[Qe+4>>2]=0,d[Qe+8>>2]=0,d[Qe+12>>2]=0;do if(me){if(H=d[4272+(I*28|0)+(me<<2)>>2]|0,N=(H|0)>0,pe)if(N){I=0,U=p,N=_;do U=Tx(U,N)|0,N=Z()|0,M=rl(M)|0,(M|0)==1&&(M=rl(1)|0),I=I+1|0;while((I|0)!=(H|0));H=M,I=U,U=N}else H=M,I=p,U=_;else if(N){I=0,U=p,N=_;do U=hp(U,N)|0,N=Z()|0,M=rl(M)|0,I=I+1|0;while((I|0)!=(H|0));H=M,I=U,U=N}else H=M,I=p,U=_;if(LA(I,U,Qe)|0,de||Bt(27563,27538,191,27548),N=(ie|0)!=0,M=(pe|0)!=0,N&M&&Bt(27590,27538,192,27548),N){if(M=$s(A,f)|0,(M|0)==7){T=5;break}if(at[22e3+(M*7|0)+me>>0]|0){T=1;break}U=d[21168+(M*28|0)+(me<<2)>>2]|0,I=U}else if(M){if(M=$s(I,U)|0,(M|0)==7){T=5;break}if(at[22e3+(M*7|0)+H>>0]|0){T=1;break}I=0,U=d[21168+(H*28|0)+(M<<2)>>2]|0}else I=0,U=0;if((I|U|0)<0)T=5;else{if((U|0)>0){N=Qe+4|0,M=0;do EA(N),M=M+1|0;while((M|0)!=(U|0))}if(d[Oe>>2]=0,d[Oe+4>>2]=0,d[Oe+8>>2]=0,u1(Oe,me),T|0)for(;Ss(T)|0?Yc(Oe):Lu(Oe),(T|0)>1;)T=T+-1|0;if((I|0)>0){T=0;do EA(Oe),T=T+1|0;while((T|0)!=(I|0))}Ne=Qe+4|0,hs(Ne,Oe,Ne),Lr(Ne),Ne=51}}else if(LA(p,_,Qe)|0,(ie|0)!=0&(pe|0)!=0)if((H|0)!=(I|0)&&Bt(27621,27538,261,27548),M=$s(A,f)|0,T=$s(p,_)|0,(M|0)==7|(T|0)==7)T=5;else if(at[22e3+(M*7|0)+T>>0]|0)T=1;else if(M=d[21168+(M*28|0)+(T<<2)>>2]|0,(M|0)>0){N=Qe+4|0,T=0;do EA(N),T=T+1|0;while((T|0)!=(M|0));Ne=51}else Ne=51;else Ne=51;while(!1);return(Ne|0)==51&&(T=Qe+4|0,d[y>>2]=d[T>>2],d[y+4>>2]=d[T+4>>2],d[y+8>>2]=d[T+8>>2],T=0),Qe=T,K=He,Qe|0}function Uo(A,f,p,_){A=A|0,f=f|0,p=p|0,_=_|0;var y=0,T=0,M=0,N=0,U=0,I=0,H=0,ie=0,pe=0,de=0,me=0,Ne=0,Oe=0,Qe=0,He=0,Ve=0;if(Ne=K,K=K+48|0,I=Ne+36|0,M=Ne+24|0,N=Ne+12|0,U=Ne,y=St(A|0,f|0,52)|0,Z()|0,y=y&15,pe=St(A|0,f|0,45)|0,Z()|0,pe=pe&127,pe>>>0>121)return _=5,K=Ne,_|0;if(H=Bi(pe)|0,Nt(y|0,0,52)|0,Oe=Z()|0|134225919,T=_,d[T>>2]=-1,d[T+4>>2]=Oe,!y)return y=Pu(p)|0,(y|0)==7||(y=SA(pe,y)|0,(y|0)==127)?(Oe=1,K=Ne,Oe|0):(de=Nt(y|0,0,45)|0,me=Z()|0,pe=_,me=d[pe+4>>2]&-1040385|me,Oe=_,d[Oe>>2]=d[pe>>2]|de,d[Oe+4>>2]=me,Oe=0,K=Ne,Oe|0);for(d[I>>2]=d[p>>2],d[I+4>>2]=d[p+4>>2],d[I+8>>2]=d[p+8>>2],p=y;;){if(T=p,p=p+-1|0,d[M>>2]=d[I>>2],d[M+4>>2]=d[I+4>>2],d[M+8>>2]=d[I+8>>2],Ss(T)|0){if(y=o1(I)|0,y|0){p=13;break}d[N>>2]=d[I>>2],d[N+4>>2]=d[I+4>>2],d[N+8>>2]=d[I+8>>2],Yc(N)}else{if(y=cx(I)|0,y|0){p=13;break}d[N>>2]=d[I>>2],d[N+4>>2]=d[I+4>>2],d[N+8>>2]=d[I+8>>2],Lu(N)}if(af(M,N,U),Lr(U),y=_,He=d[y>>2]|0,y=d[y+4>>2]|0,Ve=(15-T|0)*3|0,Qe=Nt(7,0,Ve|0)|0,y=y&~(Z()|0),Ve=Nt(Pu(U)|0,0,Ve|0)|0,y=Z()|0|y,Oe=_,d[Oe>>2]=Ve|He&~Qe,d[Oe+4>>2]=y,(T|0)<=1){p=14;break}}e:do if((p|0)!=13&&(p|0)==14)if((d[I>>2]|0)<=1&&(d[I+4>>2]|0)<=1&&(d[I+8>>2]|0)<=1){p=Pu(I)|0,y=SA(pe,p)|0,(y|0)==127?U=0:U=Bi(y)|0;t:do if(p){if(H){if(y=$s(A,f)|0,(y|0)==7){y=5;break e}if(T=d[21376+(y*28|0)+(p<<2)>>2]|0,(T|0)>0){y=p,p=0;do y=Uu(y)|0,p=p+1|0;while((p|0)!=(T|0))}else y=p;if((y|0)==1){y=9;break e}p=SA(pe,y)|0,(p|0)==127&&Bt(27648,27538,411,27678),Bi(p)|0?Bt(27693,27538,412,27678):(me=p,de=T,ie=y)}else me=y,de=0,ie=p;if(N=d[4272+(pe*28|0)+(ie<<2)>>2]|0,(N|0)<=-1&&Bt(27724,27538,419,27678),!U){if((de|0)<0){y=5;break e}if(de|0){T=_,y=0,p=d[T>>2]|0,T=d[T+4>>2]|0;do p=ku(p,T)|0,T=Z()|0,Ve=_,d[Ve>>2]=p,d[Ve+4>>2]=T,y=y+1|0;while((y|0)<(de|0))}if((N|0)<=0){y=me,p=58;break}for(T=_,y=0,p=d[T>>2]|0,T=d[T+4>>2]|0;;)if(p=ku(p,T)|0,T=Z()|0,Ve=_,d[Ve>>2]=p,d[Ve+4>>2]=T,y=y+1|0,(y|0)==(N|0)){y=me,p=58;break t}}if(M=Jh(me,pe)|0,(M|0)==7&&Bt(27514,27538,428,27678),y=_,p=d[y>>2]|0,y=d[y+4>>2]|0,(N|0)>0){T=0;do p=ku(p,y)|0,y=Z()|0,Ve=_,d[Ve>>2]=p,d[Ve+4>>2]=y,T=T+1|0;while((T|0)!=(N|0))}if(y=$s(p,y)|0,(y|0)==7&&Bt(27795,27538,440,27678),p=Wc(me)|0,p=d[(p?21792:21584)+(M*28|0)+(y<<2)>>2]|0,(p|0)<0&&Bt(27795,27538,454,27678),!p)y=me,p=58;else{M=_,y=0,T=d[M>>2]|0,M=d[M+4>>2]|0;do T=cp(T,M)|0,M=Z()|0,Ve=_,d[Ve>>2]=T,d[Ve+4>>2]=M,y=y+1|0;while((y|0)<(p|0));y=me,p=58}}else if((H|0)!=0&(U|0)!=0){if(p=$s(A,f)|0,T=_,T=$s(d[T>>2]|0,d[T+4>>2]|0)|0,(p|0)==7|(T|0)==7){y=5;break e}if(T=d[21376+(p*28|0)+(T<<2)>>2]|0,(T|0)<0){y=5;break e}if(!T)p=59;else{N=_,p=0,M=d[N>>2]|0,N=d[N+4>>2]|0;do M=ku(M,N)|0,N=Z()|0,Ve=_,d[Ve>>2]=M,d[Ve+4>>2]=N,p=p+1|0;while((p|0)<(T|0));p=58}}else p=58;while(!1);if((p|0)==58&&U&&(p=59),(p|0)==59&&(Ve=_,($s(d[Ve>>2]|0,d[Ve+4>>2]|0)|0)==1)){y=9;break}Ve=_,Qe=d[Ve>>2]|0,Ve=d[Ve+4>>2]&-1040385,He=Nt(y|0,0,45)|0,Ve=Ve|(Z()|0),y=_,d[y>>2]=Qe|He,d[y+4>>2]=Ve,y=0}else y=1;while(!1);return Ve=y,K=Ne,Ve|0}function E1(A,f,p,_,y,T){A=A|0,f=f|0,p=p|0,_=_|0,y=y|0,T=T|0;var M=0,N=0;return N=K,K=K+16|0,M=N,y?A=15:(A=lo(A,f,p,_,M)|0,A||(fx(M,T),A=0)),K=N,A|0}function IA(A,f,p,_,y){A=A|0,f=f|0,p=p|0,_=_|0,y=y|0;var T=0,M=0;return M=K,K=K+16|0,T=M,_?p=15:(p=rp(p,T)|0,p||(p=Uo(A,f,T,y)|0)),K=M,p|0}function $u(A,f,p,_,y){A=A|0,f=f|0,p=p|0,_=_|0,y=y|0;var T=0,M=0,N=0,U=0;return U=K,K=K+32|0,M=U+12|0,N=U,T=lo(A,f,A,f,M)|0,T|0?(N=T,K=U,N|0):(A=lo(A,f,p,_,N)|0,A|0?(N=A,K=U,N|0):(M=ip(M,N)|0,N=y,d[N>>2]=M,d[N+4>>2]=((M|0)<0)<<31>>31,N=0,K=U,N|0))}function vp(A,f,p,_,y){A=A|0,f=f|0,p=p|0,_=_|0,y=y|0;var T=0,M=0,N=0,U=0;return U=K,K=K+32|0,M=U+12|0,N=U,T=lo(A,f,A,f,M)|0,!T&&(T=lo(A,f,p,_,N)|0,!T)?(_=ip(M,N)|0,_=Qt(_|0,((_|0)<0)<<31>>31|0,1,0)|0,M=Z()|0,N=y,d[N>>2]=_,d[N+4>>2]=M,N=0,K=U,N|0):(N=T,K=U,N|0)}function C1(A,f,p,_,y){A=A|0,f=f|0,p=p|0,_=_|0,y=y|0;var T=0,M=0,N=0,U=0,I=0,H=0,ie=0,pe=0,de=0,me=0,Ne=0,Oe=0,Qe=0,He=0,Ve=0,De=0,Lt=0,sn=0,tn=0,Bn=0;if(tn=K,K=K+48|0,Lt=tn+24|0,M=tn+12|0,sn=tn,T=lo(A,f,A,f,Lt)|0,!T&&(T=lo(A,f,p,_,M)|0,!T)){Ve=ip(Lt,M)|0,De=((Ve|0)<0)<<31>>31,d[Lt>>2]=0,d[Lt+4>>2]=0,d[Lt+8>>2]=0,d[M>>2]=0,d[M+4>>2]=0,d[M+8>>2]=0,lo(A,f,A,f,Lt)|0&&Bt(27795,27538,692,27747),lo(A,f,p,_,M)|0&&Bt(27795,27538,697,27747),A1(Lt),A1(M),H=(Ve|0)==0?0:1/+(Ve|0),p=d[Lt>>2]|0,Ne=H*+((d[M>>2]|0)-p|0),Oe=Lt+4|0,_=d[Oe>>2]|0,Qe=H*+((d[M+4>>2]|0)-_|0),He=Lt+8|0,T=d[He>>2]|0,H=H*+((d[M+8>>2]|0)-T|0),d[sn>>2]=p,ie=sn+4|0,d[ie>>2]=_,pe=sn+8|0,d[pe>>2]=T;e:do if((Ve|0)<0)T=0;else for(de=0,me=0;;){U=+(me>>>0)+4294967296*+(de|0),Bn=Ne*U+ +(p|0),N=Qe*U+ +(_|0),U=H*U+ +(T|0),p=~~+hl(+Bn),M=~~+hl(+N),T=~~+hl(+U),Bn=+un(+(+(p|0)-Bn)),N=+un(+(+(M|0)-N)),U=+un(+(+(T|0)-U));do if(Bn>N&Bn>U)p=0-(M+T)|0,_=M;else if(I=0-p|0,N>U){_=I-T|0;break}else{_=M,T=I-M|0;break}while(!1);if(d[sn>>2]=p,d[ie>>2]=_,d[pe>>2]=T,Ax(sn),T=Uo(A,f,sn,y+(me<<3)|0)|0,T|0)break e;if(!((de|0)<(De|0)|(de|0)==(De|0)&me>>>0>>0)){T=0;break e}p=Qt(me|0,de|0,1,0)|0,_=Z()|0,de=_,me=p,p=d[Lt>>2]|0,_=d[Oe>>2]|0,T=d[He>>2]|0}while(!1);return sn=T,K=tn,sn|0}return sn=T,K=tn,sn|0}function Bo(A,f,p,_){A=A|0,f=f|0,p=p|0,_=_|0;var y=0,T=0,M=0;if((p|0)==0&(_|0)==0)return y=0,T=1,At(y|0),T|0;T=A,y=f,A=1,f=0;do M=(p&1|0)==0&!0,A=fr((M?1:T)|0,(M?0:y)|0,A|0,f|0)|0,f=Z()|0,p=N1(p|0,_|0,1)|0,_=Z()|0,T=fr(T|0,y|0,T|0,y|0)|0,y=Z()|0;while(!((p|0)==0&(_|0)==0));return At(f|0),A|0}function FA(A,f,p,_){A=A|0,f=f|0,p=p|0,_=_|0;var y=0,T=0,M=0,N=0,U=0,I=0,H=0;N=K,K=K+16|0,T=N,M=St(A|0,f|0,52)|0,Z()|0,M=M&15;do if(M){if(y=Ol(A,f,T)|0,!y){I=+ee[T>>3],U=1/+ui(+I),H=+ee[25968+(M<<3)>>3],ee[p>>3]=I+H,ee[p+8>>3]=I-H,I=+ee[T+8>>3],U=H*U,ee[p+16>>3]=U+I,ee[p+24>>3]=I-U;break}return M=y,K=N,M|0}else{if(y=St(A|0,f|0,45)|0,Z()|0,y=y&127,y>>>0>121)return M=5,K=N,M|0;T=22064+(y<<5)|0,d[p>>2]=d[T>>2],d[p+4>>2]=d[T+4>>2],d[p+8>>2]=d[T+8>>2],d[p+12>>2]=d[T+12>>2],d[p+16>>2]=d[T+16>>2],d[p+20>>2]=d[T+20>>2],d[p+24>>2]=d[T+24>>2],d[p+28>>2]=d[T+28>>2];break}while(!1);return Ws(p,_?1.4:1.1),_=26096+(M<<3)|0,(d[_>>2]|0)==(A|0)&&(d[_+4>>2]|0)==(f|0)&&(ee[p>>3]=1.5707963267948966),M=26224+(M<<3)|0,(d[M>>2]|0)==(A|0)&&(d[M+4>>2]|0)==(f|0)&&(ee[p+8>>3]=-1.5707963267948966),+ee[p>>3]!=1.5707963267948966&&+ee[p+8>>3]!=-1.5707963267948966?(M=0,K=N,M|0):(ee[p+16>>3]=3.141592653589793,ee[p+24>>3]=-3.141592653589793,M=0,K=N,M|0)}function Ca(A,f,p,_){A=A|0,f=f|0,p=p|0,_=_|0;var y=0,T=0,M=0,N=0,U=0,I=0,H=0;I=K,K=K+48|0,M=I+32|0,T=I+40|0,N=I,Iu(M,0,0,0),U=d[M>>2]|0,M=d[M+4>>2]|0;do if(p>>>0<=15){if(y=Ra(_)|0,y|0){_=N,d[_>>2]=0,d[_+4>>2]=0,d[N+8>>2]=y,d[N+12>>2]=-1,_=N+16|0,U=N+29|0,d[_>>2]=0,d[_+4>>2]=0,d[_+8>>2]=0,at[_+12>>0]=0,at[U>>0]=at[T>>0]|0,at[U+1>>0]=at[T+1>>0]|0,at[U+2>>0]=at[T+2>>0]|0;break}if(y=Ks((d[f+8>>2]|0)+1|0,32)|0,y){Na(f,y),H=N,d[H>>2]=U,d[H+4>>2]=M,d[N+8>>2]=0,d[N+12>>2]=p,d[N+16>>2]=_,d[N+20>>2]=f,d[N+24>>2]=y,at[N+28>>0]=0,U=N+29|0,at[U>>0]=at[T>>0]|0,at[U+1>>0]=at[T+1>>0]|0,at[U+2>>0]=at[T+2>>0]|0;break}else{_=N,d[_>>2]=0,d[_+4>>2]=0,d[N+8>>2]=13,d[N+12>>2]=-1,_=N+16|0,U=N+29|0,d[_>>2]=0,d[_+4>>2]=0,d[_+8>>2]=0,at[_+12>>0]=0,at[U>>0]=at[T>>0]|0,at[U+1>>0]=at[T+1>>0]|0,at[U+2>>0]=at[T+2>>0]|0;break}}else U=N,d[U>>2]=0,d[U+4>>2]=0,d[N+8>>2]=4,d[N+12>>2]=-1,U=N+16|0,H=N+29|0,d[U>>2]=0,d[U+4>>2]=0,d[U+8>>2]=0,at[U+12>>0]=0,at[H>>0]=at[T>>0]|0,at[H+1>>0]=at[T+1>>0]|0,at[H+2>>0]=at[T+2>>0]|0;while(!1);al(N),d[A>>2]=d[N>>2],d[A+4>>2]=d[N+4>>2],d[A+8>>2]=d[N+8>>2],d[A+12>>2]=d[N+12>>2],d[A+16>>2]=d[N+16>>2],d[A+20>>2]=d[N+20>>2],d[A+24>>2]=d[N+24>>2],d[A+28>>2]=d[N+28>>2],K=I}function al(A){A=A|0;var f=0,p=0,_=0,y=0,T=0,M=0,N=0,U=0,I=0,H=0,ie=0,pe=0,de=0,me=0,Ne=0,Oe=0,Qe=0,He=0,Ve=0,De=0;if(De=K,K=K+336|0,de=De+168|0,me=De,_=A,p=d[_>>2]|0,_=d[_+4>>2]|0,(p|0)==0&(_|0)==0){K=De;return}if(f=A+28|0,at[f>>0]|0?(p=Xu(p,_)|0,_=Z()|0):at[f>>0]=1,Ve=A+20|0,!(d[d[Ve>>2]>>2]|0)){f=A+24|0,p=d[f>>2]|0,p|0&&An(p),He=A,d[He>>2]=0,d[He+4>>2]=0,d[A+8>>2]=0,d[Ve>>2]=0,d[A+12>>2]=-1,d[A+16>>2]=0,d[f>>2]=0,K=De;return}He=A+16|0,f=d[He>>2]|0,y=f&15;e:do if((p|0)==0&(_|0)==0)Qe=A+24|0;else{Ne=A+12|0,ie=(y|0)==3,H=f&255,U=(y|1|0)==3,pe=A+24|0,I=(y+-1|0)>>>0<3,M=(y|2|0)==3,N=me+8|0;t:for(;;){if(T=St(p|0,_|0,52)|0,Z()|0,T=T&15,(T|0)==(d[Ne>>2]|0)){switch(H&15){case 0:case 2:case 3:{if(y=Ol(p,_,de)|0,y|0){Oe=15;break t}if(Da(d[Ve>>2]|0,d[pe>>2]|0,de)|0){Oe=19;break t}break}}if(U&&(y=d[(d[Ve>>2]|0)+4>>2]|0,d[de>>2]=d[y>>2],d[de+4>>2]=d[y+4>>2],d[de+8>>2]=d[y+8>>2],d[de+12>>2]=d[y+12>>2],Lo(26832,de)|0)){if(PA(d[(d[Ve>>2]|0)+4>>2]|0,T,me)|0){Oe=25;break}if(y=me,(d[y>>2]|0)==(p|0)&&(d[y+4>>2]|0)==(_|0)){Oe=29;break}}if(I){if(y=Il(p,_,de)|0,y|0){Oe=32;break}if(FA(p,_,me,0)|0){Oe=36;break}if(M&&Oo(d[Ve>>2]|0,d[pe>>2]|0,de,me)|0){Oe=42;break}if(U&&zA(d[Ve>>2]|0,d[pe>>2]|0,de,me)|0){Oe=42;break}}if(ie){if(f=FA(p,_,de,1)|0,y=d[pe>>2]|0,f|0){Oe=45;break}if(nf(y,de)|0){if(rf(me,de),np(de,d[pe>>2]|0)|0){Oe=53;break}if(Da(d[Ve>>2]|0,d[pe>>2]|0,N)|0){Oe=53;break}if(zA(d[Ve>>2]|0,d[pe>>2]|0,me,de)|0){Oe=53;break}}}}do if((T|0)<(d[Ne>>2]|0)){if(f=FA(p,_,de,1)|0,y=d[pe>>2]|0,f|0){Oe=58;break t}if(!(nf(y,de)|0)){Oe=73;break}if(np(d[pe>>2]|0,de)|0&&(rf(me,de),Oo(d[Ve>>2]|0,d[pe>>2]|0,me,de)|0)){Oe=65;break t}if(p=DA(p,_,T+1|0,me)|0,p|0){Oe=67;break t}_=me,p=d[_>>2]|0,_=d[_+4>>2]|0}else Oe=73;while(!1);if((Oe|0)==73&&(Oe=0,p=Xu(p,_)|0,_=Z()|0),(p|0)==0&(_|0)==0){Qe=pe;break e}}switch(Oe|0){case 15:{f=d[pe>>2]|0,f|0&&An(f),Oe=A,d[Oe>>2]=0,d[Oe+4>>2]=0,d[Ve>>2]=0,d[Ne>>2]=-1,d[He>>2]=0,d[pe>>2]=0,d[A+8>>2]=y,Oe=20;break}case 19:{d[A>>2]=p,d[A+4>>2]=_,Oe=20;break}case 25:{Bt(27795,27761,470,27772);break}case 29:{d[A>>2]=p,d[A+4>>2]=_,K=De;return}case 32:{f=d[pe>>2]|0,f|0&&An(f),Qe=A,d[Qe>>2]=0,d[Qe+4>>2]=0,d[Ve>>2]=0,d[Ne>>2]=-1,d[He>>2]=0,d[pe>>2]=0,d[A+8>>2]=y,K=De;return}case 36:{Bt(27795,27761,493,27772);break}case 42:{d[A>>2]=p,d[A+4>>2]=_,K=De;return}case 45:{y|0&&An(y),Oe=A,d[Oe>>2]=0,d[Oe+4>>2]=0,d[Ve>>2]=0,d[Ne>>2]=-1,d[He>>2]=0,d[pe>>2]=0,d[A+8>>2]=f,Oe=55;break}case 53:{d[A>>2]=p,d[A+4>>2]=_,Oe=55;break}case 58:{y|0&&An(y),Oe=A,d[Oe>>2]=0,d[Oe+4>>2]=0,d[Ve>>2]=0,d[Ne>>2]=-1,d[He>>2]=0,d[pe>>2]=0,d[A+8>>2]=f,Oe=71;break}case 65:{d[A>>2]=p,d[A+4>>2]=_,Oe=71;break}case 67:{f=d[pe>>2]|0,f|0&&An(f),Qe=A,d[Qe>>2]=0,d[Qe+4>>2]=0,d[Ve>>2]=0,d[Ne>>2]=-1,d[He>>2]=0,d[pe>>2]=0,d[A+8>>2]=p,K=De;return}}if((Oe|0)==20){K=De;return}else if((Oe|0)==55){K=De;return}else if((Oe|0)==71){K=De;return}}while(!1);f=d[Qe>>2]|0,f|0&&An(f),Oe=A,d[Oe>>2]=0,d[Oe+4>>2]=0,d[A+8>>2]=0,d[Ve>>2]=0,d[A+12>>2]=-1,d[He>>2]=0,d[Qe>>2]=0,K=De}function Xu(A,f){A=A|0,f=f|0;var p=0,_=0,y=0,T=0,M=0,N=0,U=0,I=0,H=0,ie=0;ie=K,K=K+16|0,H=ie,_=St(A|0,f|0,52)|0,Z()|0,_=_&15,p=St(A|0,f|0,45)|0,Z()|0;do if(_){for(;p=Nt(_+4095|0,0,52)|0,y=Z()|0|f&-15728641,T=(15-_|0)*3|0,M=Nt(7,0,T|0)|0,N=Z()|0,p=p|A|M,y=y|N,U=St(A|0,f|0,T|0)|0,Z()|0,U=U&7,_=_+-1|0,!(U>>>0<6);)if(_)f=y,A=p;else{I=4;break}if((I|0)==4){p=St(p|0,y|0,45)|0,Z()|0;break}return H=(U|0)==0&(Ci(p,y)|0)!=0,H=Nt((H?2:1)+U|0,0,T|0)|0,I=Z()|0|f&~N,H=H|A&~M,At(I|0),K=ie,H|0}while(!1);return p=p&127,p>>>0>120?(I=0,H=0,At(I|0),K=ie,H|0):(Iu(H,0,p+1|0,0),I=d[H+4>>2]|0,H=d[H>>2]|0,At(I|0),K=ie,H|0)}function kA(A,f,p,_,y,T){A=A|0,f=f|0,p=p|0,_=_|0,y=y|0,T=T|0;var M=0,N=0,U=0,I=0,H=0,ie=0,pe=0,de=0,me=0,Ne=0,Oe=0;Oe=K,K=K+160|0,ie=Oe+80|0,N=Oe+64|0,pe=Oe+112|0,Ne=Oe,Ca(ie,A,f,p),I=ie,sl(N,d[I>>2]|0,d[I+4>>2]|0,f),I=N,U=d[I>>2]|0,I=d[I+4>>2]|0,M=d[ie+8>>2]|0,de=pe+4|0,d[de>>2]=d[ie>>2],d[de+4>>2]=d[ie+4>>2],d[de+8>>2]=d[ie+8>>2],d[de+12>>2]=d[ie+12>>2],d[de+16>>2]=d[ie+16>>2],d[de+20>>2]=d[ie+20>>2],d[de+24>>2]=d[ie+24>>2],d[de+28>>2]=d[ie+28>>2],de=Ne,d[de>>2]=U,d[de+4>>2]=I,de=Ne+8|0,d[de>>2]=M,A=Ne+12|0,f=pe,p=A+36|0;do d[A>>2]=d[f>>2],A=A+4|0,f=f+4|0;while((A|0)<(p|0));if(pe=Ne+48|0,d[pe>>2]=d[N>>2],d[pe+4>>2]=d[N+4>>2],d[pe+8>>2]=d[N+8>>2],d[pe+12>>2]=d[N+12>>2],(U|0)==0&(I|0)==0)return Ne=M,K=Oe,Ne|0;p=Ne+16|0,H=Ne+24|0,ie=Ne+28|0,M=0,N=0,f=U,A=I;do{if(!((M|0)<(y|0)|(M|0)==(y|0)&N>>>0<_>>>0)){me=4;break}if(I=N,N=Qt(N|0,M|0,1,0)|0,M=Z()|0,I=T+(I<<3)|0,d[I>>2]=f,d[I+4>>2]=A,uf(pe),A=pe,f=d[A>>2]|0,A=d[A+4>>2]|0,(f|0)==0&(A|0)==0){if(al(p),f=p,A=d[f>>2]|0,f=d[f+4>>2]|0,(A|0)==0&(f|0)==0){me=10;break}Vu(A,f,d[ie>>2]|0,pe),A=pe,f=d[A>>2]|0,A=d[A+4>>2]|0}I=Ne,d[I>>2]=f,d[I+4>>2]=A}while(!((f|0)==0&(A|0)==0));return(me|0)==4?(A=Ne+40|0,f=d[A>>2]|0,f|0&&An(f),me=Ne+16|0,d[me>>2]=0,d[me+4>>2]=0,d[H>>2]=0,d[Ne+36>>2]=0,d[ie>>2]=-1,d[Ne+32>>2]=0,d[A>>2]=0,Vu(0,0,0,pe),d[Ne>>2]=0,d[Ne+4>>2]=0,d[de>>2]=0,Ne=14,K=Oe,Ne|0):((me|0)==10&&(d[Ne>>2]=0,d[Ne+4>>2]=0,d[de>>2]=d[H>>2]),Ne=d[de>>2]|0,K=Oe,Ne|0)}function cf(A,f,p,_){A=A|0,f=f|0,p=p|0,_=_|0;var y=0,T=0,M=0,N=0,U=0,I=0,H=0,ie=0,pe=0,de=0;if(ie=K,K=K+48|0,U=ie+32|0,N=ie+40|0,I=ie,!(d[A>>2]|0))return H=_,d[H>>2]=0,d[H+4>>2]=0,H=0,K=ie,H|0;Iu(U,0,0,0),M=U,y=d[M>>2]|0,M=d[M+4>>2]|0;do if(f>>>0>15)H=I,d[H>>2]=0,d[H+4>>2]=0,d[I+8>>2]=4,d[I+12>>2]=-1,H=I+16|0,p=I+29|0,d[H>>2]=0,d[H+4>>2]=0,d[H+8>>2]=0,at[H+12>>0]=0,at[p>>0]=at[N>>0]|0,at[p+1>>0]=at[N+1>>0]|0,at[p+2>>0]=at[N+2>>0]|0,p=4,H=9;else{if(p=Ra(p)|0,p|0){U=I,d[U>>2]=0,d[U+4>>2]=0,d[I+8>>2]=p,d[I+12>>2]=-1,U=I+16|0,H=I+29|0,d[U>>2]=0,d[U+4>>2]=0,d[U+8>>2]=0,at[U+12>>0]=0,at[H>>0]=at[N>>0]|0,at[H+1>>0]=at[N+1>>0]|0,at[H+2>>0]=at[N+2>>0]|0,H=9;break}if(p=Ks((d[A+8>>2]|0)+1|0,32)|0,!p){H=I,d[H>>2]=0,d[H+4>>2]=0,d[I+8>>2]=13,d[I+12>>2]=-1,H=I+16|0,p=I+29|0,d[H>>2]=0,d[H+4>>2]=0,d[H+8>>2]=0,at[H+12>>0]=0,at[p>>0]=at[N>>0]|0,at[p+1>>0]=at[N+1>>0]|0,at[p+2>>0]=at[N+2>>0]|0,p=13,H=9;break}Na(A,p),de=I,d[de>>2]=y,d[de+4>>2]=M,M=I+8|0,d[M>>2]=0,d[I+12>>2]=f,d[I+20>>2]=A,d[I+24>>2]=p,at[I+28>>0]=0,y=I+29|0,at[y>>0]=at[N>>0]|0,at[y+1>>0]=at[N+1>>0]|0,at[y+2>>0]=at[N+2>>0]|0,d[I+16>>2]=3,pe=+tf(p),pe=pe*+il(p),T=+un(+ +ee[p>>3]),T=pe/+ui(+ +df(+T,+ +un(+ +ee[p+8>>3])))*6371.007180918475*6371.007180918475,y=I+12|0,p=d[y>>2]|0;e:do if((p|0)>0)do{if(dp(p+-1|0,U)|0,!(T/+ee[U>>3]>10))break e;de=d[y>>2]|0,p=de+-1|0,d[y>>2]=p}while((de|0)>1);while(!1);if(al(I),y=_,d[y>>2]=0,d[y+4>>2]=0,y=I,p=d[y>>2]|0,y=d[y+4>>2]|0,!((p|0)==0&(y|0)==0))do lf(p,y,f,U)|0,N=U,A=_,N=Qt(d[A>>2]|0,d[A+4>>2]|0,d[N>>2]|0,d[N+4>>2]|0)|0,A=Z()|0,de=_,d[de>>2]=N,d[de+4>>2]=A,al(I),de=I,p=d[de>>2]|0,y=d[de+4>>2]|0;while(!((p|0)==0&(y|0)==0));p=d[M>>2]|0}while(!1);return de=p,K=ie,de|0}function Ts(A,f,p){A=A|0,f=f|0,p=p|0;var _=0,y=0,T=0,M=0,N=0,U=0,I=0,H=0,ie=0,pe=0;if(!(Lo(f,p)|0)||(f=TA(f)|0,_=+ee[p>>3],y=+ee[p+8>>3],y=f&y<0?y+6.283185307179586:y,pe=d[A>>2]|0,(pe|0)<=0))return pe=0,pe|0;if(ie=d[A+4>>2]|0,f){f=0,H=y,p=-1,A=0;e:for(;;){for(I=A;M=+ee[ie+(I<<4)>>3],y=+ee[ie+(I<<4)+8>>3],A=(p+2|0)%(pe|0)|0,T=+ee[ie+(A<<4)>>3],N=+ee[ie+(A<<4)+8>>3],M>T?(U=M,M=N):(U=T,T=M,M=y,y=N),_=_==T|_==U?_+2220446049250313e-31:_,!!(_U);)if(p=I+1|0,(p|0)>=(pe|0)){p=22;break e}else A=I,I=p,p=A;if(N=M<0?M+6.283185307179586:M,M=y<0?y+6.283185307179586:y,H=N==H|M==H?H+-2220446049250313e-31:H,U=N+(M-N)*((_-T)/(U-T)),(U<0?U+6.283185307179586:U)>H&&(f=f^1),A=I+1|0,(A|0)>=(pe|0)){p=22;break}else p=I}if((p|0)==22)return f|0}else{f=0,H=y,p=-1,A=0;e:for(;;){for(I=A;M=+ee[ie+(I<<4)>>3],y=+ee[ie+(I<<4)+8>>3],A=(p+2|0)%(pe|0)|0,T=+ee[ie+(A<<4)>>3],N=+ee[ie+(A<<4)+8>>3],M>T?(U=M,M=N):(U=T,T=M,M=y,y=N),_=_==T|_==U?_+2220446049250313e-31:_,!!(_U);)if(p=I+1|0,(p|0)>=(pe|0)){p=22;break e}else A=I,I=p,p=A;if(H=M==H|y==H?H+-2220446049250313e-31:H,M+(y-M)*((_-T)/(U-T))>H&&(f=f^1),A=I+1|0,(A|0)>=(pe|0)){p=22;break}else p=I}if((p|0)==22)return f|0}return 0}function pa(A,f){A=A|0,f=f|0;var p=0,_=0,y=0,T=0,M=0,N=0,U=0,I=0,H=0,ie=0,pe=0,de=0,me=0,Ne=0,Oe=0,Qe=0,He=0;if(me=d[A>>2]|0,!me){d[f>>2]=0,d[f+4>>2]=0,d[f+8>>2]=0,d[f+12>>2]=0,d[f+16>>2]=0,d[f+20>>2]=0,d[f+24>>2]=0,d[f+28>>2]=0;return}if(Ne=f+8|0,ee[Ne>>3]=17976931348623157e292,Oe=f+24|0,ee[Oe>>3]=17976931348623157e292,ee[f>>3]=-17976931348623157e292,Qe=f+16|0,ee[Qe>>3]=-17976931348623157e292,!((me|0)<=0)){for(pe=d[A+4>>2]|0,I=17976931348623157e292,H=-17976931348623157e292,ie=0,A=-1,T=17976931348623157e292,M=17976931348623157e292,U=-17976931348623157e292,_=-17976931348623157e292,de=0;p=+ee[pe+(de<<4)>>3],N=+ee[pe+(de<<4)+8>>3],A=A+2|0,y=+ee[pe+(((A|0)==(me|0)?0:A)<<4)+8>>3],p>3]=p,T=p),N>3]=N,M=N),p>U?ee[f>>3]=p:p=U,N>_&&(ee[Qe>>3]=N,_=N),I=N>0&NH?N:H,ie=ie|+un(+(N-y))>3.141592653589793,A=de+1|0,(A|0)!=(me|0);)He=de,U=p,de=A,A=He;ie&&(ee[Qe>>3]=H,ee[Oe>>3]=I)}}function Ra(A){return A=A|0,(A>>>0<4?0:15)|0}function Na(A,f){A=A|0,f=f|0;var p=0,_=0,y=0,T=0,M=0,N=0,U=0,I=0,H=0,ie=0,pe=0,de=0,me=0,Ne=0,Oe=0,Qe=0,He=0,Ve=0,De=0,Lt=0,sn=0,tn=0;if(me=d[A>>2]|0,me){if(Ne=f+8|0,ee[Ne>>3]=17976931348623157e292,Oe=f+24|0,ee[Oe>>3]=17976931348623157e292,ee[f>>3]=-17976931348623157e292,Qe=f+16|0,ee[Qe>>3]=-17976931348623157e292,(me|0)>0){for(y=d[A+4>>2]|0,pe=17976931348623157e292,de=-17976931348623157e292,_=0,p=-1,U=17976931348623157e292,I=17976931348623157e292,ie=-17976931348623157e292,M=-17976931348623157e292,He=0;T=+ee[y+(He<<4)>>3],H=+ee[y+(He<<4)+8>>3],sn=p+2|0,N=+ee[y+(((sn|0)==(me|0)?0:sn)<<4)+8>>3],T>3]=T,U=T),H>3]=H,I=H),T>ie?ee[f>>3]=T:T=ie,H>M&&(ee[Qe>>3]=H,M=H),pe=H>0&Hde?H:de,_=_|+un(+(H-N))>3.141592653589793,p=He+1|0,(p|0)!=(me|0);)sn=He,ie=T,He=p,p=sn;_&&(ee[Qe>>3]=de,ee[Oe>>3]=pe)}}else d[f>>2]=0,d[f+4>>2]=0,d[f+8>>2]=0,d[f+12>>2]=0,d[f+16>>2]=0,d[f+20>>2]=0,d[f+24>>2]=0,d[f+28>>2]=0;if(sn=A+8|0,p=d[sn>>2]|0,!((p|0)<=0)){Lt=A+12|0,De=0;do if(y=d[Lt>>2]|0,_=De,De=De+1|0,Oe=f+(De<<5)|0,Qe=d[y+(_<<3)>>2]|0,Qe){if(He=f+(De<<5)+8|0,ee[He>>3]=17976931348623157e292,A=f+(De<<5)+24|0,ee[A>>3]=17976931348623157e292,ee[Oe>>3]=-17976931348623157e292,Ve=f+(De<<5)+16|0,ee[Ve>>3]=-17976931348623157e292,(Qe|0)>0){for(me=d[y+(_<<3)+4>>2]|0,pe=17976931348623157e292,de=-17976931348623157e292,y=0,_=-1,Ne=0,U=17976931348623157e292,I=17976931348623157e292,H=-17976931348623157e292,M=-17976931348623157e292;T=+ee[me+(Ne<<4)>>3],ie=+ee[me+(Ne<<4)+8>>3],_=_+2|0,N=+ee[me+(((_|0)==(Qe|0)?0:_)<<4)+8>>3],T>3]=T,U=T),ie>3]=ie,I=ie),T>H?ee[Oe>>3]=T:T=H,ie>M&&(ee[Ve>>3]=ie,M=ie),pe=ie>0&iede?ie:de,y=y|+un(+(ie-N))>3.141592653589793,_=Ne+1|0,(_|0)!=(Qe|0);)tn=Ne,Ne=_,H=T,_=tn;y&&(ee[Ve>>3]=de,ee[A>>3]=pe)}}else d[Oe>>2]=0,d[Oe+4>>2]=0,d[Oe+8>>2]=0,d[Oe+12>>2]=0,d[Oe+16>>2]=0,d[Oe+20>>2]=0,d[Oe+24>>2]=0,d[Oe+28>>2]=0,p=d[sn>>2]|0;while((De|0)<(p|0))}}function Da(A,f,p){A=A|0,f=f|0,p=p|0;var _=0,y=0,T=0;if(!(Ts(A,f,p)|0))return y=0,y|0;if(y=A+8|0,(d[y>>2]|0)<=0)return y=1,y|0;for(_=A+12|0,A=0;;){if(T=A,A=A+1|0,Ts((d[_>>2]|0)+(T<<3)|0,f+(A<<5)|0,p)|0){A=0,_=6;break}if((A|0)>=(d[y>>2]|0)){A=1,_=6;break}}return(_|0)==6?A|0:0}function Oo(A,f,p,_){A=A|0,f=f|0,p=p|0,_=_|0;var y=0,T=0,M=0,N=0,U=0,I=0,H=0;if(I=K,K=K+16|0,N=I,M=p+8|0,!(Ts(A,f,M)|0))return U=0,K=I,U|0;U=A+8|0;e:do if((d[U>>2]|0)>0){for(T=A+12|0,y=0;;){if(H=y,y=y+1|0,Ts((d[T>>2]|0)+(H<<3)|0,f+(y<<5)|0,M)|0){y=0;break}if((y|0)>=(d[U>>2]|0))break e}return K=I,y|0}while(!1);if(hf(A,f,p,_)|0)return H=0,K=I,H|0;d[N>>2]=d[p>>2],d[N+4>>2]=M,y=d[U>>2]|0;e:do if((y|0)>0)for(A=A+12|0,M=0,T=y;;){if(y=d[A>>2]|0,(d[y+(M<<3)>>2]|0)>0){if(Ts(N,_,d[y+(M<<3)+4>>2]|0)|0){y=0;break e}if(y=M+1|0,hf((d[A>>2]|0)+(M<<3)|0,f+(y<<5)|0,p,_)|0){y=0;break e}T=d[U>>2]|0}else y=M+1|0;if((y|0)<(T|0))M=y;else{y=1;break}}else y=1;while(!1);return H=y,K=I,H|0}function hf(A,f,p,_){A=A|0,f=f|0,p=p|0,_=_|0;var y=0,T=0,M=0,N=0,U=0,I=0,H=0,ie=0,pe=0,de=0,me=0,Ne=0,Oe=0,Qe=0,He=0,Ve=0,De=0,Lt=0,sn=0,tn=0,Bn=0;if(sn=K,K=K+176|0,He=sn+172|0,y=sn+168|0,Ve=sn,!(nf(f,_)|0))return A=0,K=sn,A|0;if(wA(f,_,He,y),Gl(Ve|0,p|0,168)|0,(d[p>>2]|0)>0){f=0;do tn=Ve+8+(f<<4)+8|0,Qe=+Xs(+ee[tn>>3],d[y>>2]|0),ee[tn>>3]=Qe,f=f+1|0;while((f|0)<(d[p>>2]|0))}Ne=+ee[_>>3],Oe=+ee[_+8>>3],Qe=+Xs(+ee[_+16>>3],d[y>>2]|0),de=+Xs(+ee[_+24>>3],d[y>>2]|0);e:do if((d[A>>2]|0)>0){if(_=A+4|0,y=d[Ve>>2]|0,(y|0)<=0){for(f=0;;)if(f=f+1|0,(f|0)>=(d[A>>2]|0)){f=0;break e}}for(p=0;;){if(f=d[_>>2]|0,pe=+ee[f+(p<<4)>>3],me=+Xs(+ee[f+(p<<4)+8>>3],d[He>>2]|0),f=d[_>>2]|0,p=p+1|0,tn=(p|0)%(d[A>>2]|0)|0,T=+ee[f+(tn<<4)>>3],M=+Xs(+ee[f+(tn<<4)+8>>3],d[He>>2]|0),!(pe>=Ne)|!(T>=Ne)&&!(pe<=Oe)|!(T<=Oe)&&!(me<=de)|!(M<=de)&&!(me>=Qe)|!(M>=Qe)){ie=T-pe,I=M-me,f=0;do if(Bn=f,f=f+1|0,tn=(f|0)==(y|0)?0:f,T=+ee[Ve+8+(Bn<<4)+8>>3],M=+ee[Ve+8+(tn<<4)+8>>3]-T,N=+ee[Ve+8+(Bn<<4)>>3],U=+ee[Ve+8+(tn<<4)>>3]-N,H=ie*M-I*U,H!=0&&(De=me-T,Lt=pe-N,U=(De*U-M*Lt)/H,!(U<0|U>1))&&(H=(ie*De-I*Lt)/H,H>=0&H<=1)){f=1;break e}while((f|0)<(y|0))}if((p|0)>=(d[A>>2]|0)){f=0;break}}}else f=0;while(!1);return Bn=f,K=sn,Bn|0}function zA(A,f,p,_){A=A|0,f=f|0,p=p|0,_=_|0;var y=0,T=0,M=0;if(hf(A,f,p,_)|0)return T=1,T|0;if(T=A+8|0,(d[T>>2]|0)<=0)return T=0,T|0;for(y=A+12|0,A=0;;){if(M=A,A=A+1|0,hf((d[y>>2]|0)+(M<<3)|0,f+(A<<5)|0,p,_)|0){A=1,y=6;break}if((A|0)>=(d[T>>2]|0)){A=0,y=6;break}}return(y|0)==6?A|0:0}function _p(){return 8}function R1(){return 16}function fs(){return 168}function sr(){return 8}function gi(){return 16}function kl(){return 12}function Pa(){return 8}function yp(A){return A=A|0,+(+((d[A>>2]|0)>>>0)+4294967296*+(d[A+4>>2]|0))}function zl(A){A=A|0;var f=0,p=0;return p=+ee[A>>3],f=+ee[A+8>>3],+ +qn(+(p*p+f*f))}function xp(A,f,p,_,y){A=A|0,f=f|0,p=p|0,_=_|0,y=y|0;var T=0,M=0,N=0,U=0,I=0,H=0,ie=0,pe=0;I=+ee[A>>3],U=+ee[f>>3]-I,N=+ee[A+8>>3],M=+ee[f+8>>3]-N,ie=+ee[p>>3],T=+ee[_>>3]-ie,pe=+ee[p+8>>3],H=+ee[_+8>>3]-pe,T=(T*(N-pe)-(I-ie)*H)/(U*H-M*T),ee[y>>3]=I+U*T,ee[y+8>>3]=N+M*T}function bp(A,f){return A=A|0,f=f|0,+un(+(+ee[A>>3]-+ee[f>>3]))<11920928955078125e-23?(f=+un(+(+ee[A+8>>3]-+ee[f+8>>3]))<11920928955078125e-23,f|0):(f=0,f|0)}function ar(A,f){A=A|0,f=f|0;var p=0,_=0,y=0;return y=+ee[A>>3]-+ee[f>>3],_=+ee[A+8>>3]-+ee[f+8>>3],p=+ee[A+16>>3]-+ee[f+16>>3],+(y*y+_*_+p*p)}function Yu(A,f){A=A|0,f=f|0;var p=0,_=0,y=0;p=+ee[A>>3],_=+ui(+p),p=+Fn(+p),ee[f+16>>3]=p,p=+ee[A+8>>3],y=_*+ui(+p),ee[f>>3]=y,p=_*+Fn(+p),ee[f+8>>3]=p}function Sp(A,f,p){A=A|0,f=f|0,p=p|0;var _=0,y=0,T=0;if(T=K,K=K+16|0,y=T,_=Ci(A,f)|0,(p+-1|0)>>>0>5||(_=(_|0)!=0,(p|0)==1&_))return y=-1,K=T,y|0;do if(ol(A,f,y)|0)_=-1;else if(_){_=((d[26352+(p<<2)>>2]|0)+5-(d[y>>2]|0)|0)%5|0;break}else{_=((d[26384+(p<<2)>>2]|0)+6-(d[y>>2]|0)|0)%6|0;break}while(!1);return y=_,K=T,y|0}function ol(A,f,p){A=A|0,f=f|0,p=p|0;var _=0,y=0,T=0,M=0,N=0,U=0,I=0,H=0;if(H=K,K=K+32|0,N=H+16|0,U=H,_=zu(A,f,N)|0,_|0)return p=_,K=H,p|0;T=g1(A,f)|0,I=$s(A,f)|0,tp(T,U),_=$c(T,d[N>>2]|0)|0;do if(Bi(T)|0){do switch(T|0){case 4:{y=0;break}case 14:{y=1;break}case 24:{y=2;break}case 38:{y=3;break}case 49:{y=4;break}case 58:{y=5;break}case 63:{y=6;break}case 72:{y=7;break}case 83:{y=8;break}case 97:{y=9;break}case 107:{y=10;break}case 117:{y=11;break}default:Bt(27795,27797,75,27806)}while(!1);if(M=d[26416+(y*24|0)+8>>2]|0,f=d[26416+(y*24|0)+16>>2]|0,A=d[N>>2]|0,(A|0)!=(d[U>>2]|0)&&(U=Wc(T)|0,A=d[N>>2]|0,U|(A|0)==(f|0)&&(_=(_+1|0)%6|0)),(I|0)==3&(A|0)==(f|0)){_=(_+5|0)%6|0;break}(I|0)==5&(A|0)==(M|0)&&(_=(_+1|0)%6|0)}while(!1);return d[p>>2]=_,p=0,K=H,p|0}function Qs(A,f,p,_){A=A|0,f=f|0,p=p|0,_=_|0;var y=0,T=0,M=0,N=0,U=0,I=0,H=0,ie=0,pe=0,de=0,me=0,Ne=0,Oe=0,Qe=0,He=0,Ve=0;if(Ve=K,K=K+32|0,He=Ve+24|0,Oe=Ve+20|0,me=Ve+8|0,de=Ve+16|0,pe=Ve,U=(Ci(A,f)|0)==0,U=U?6:5,H=St(A|0,f|0,52)|0,Z()|0,H=H&15,U>>>0<=p>>>0)return _=2,K=Ve,_|0;ie=(H|0)==0,!ie&&(Ne=Nt(7,0,(H^15)*3|0)|0,(Ne&A|0)==0&((Z()|0)&f|0)==0)?y=p:T=4;e:do if((T|0)==4){if(y=(Ci(A,f)|0)!=0,((y?4:5)|0)<(p|0)||ol(A,f,He)|0||(T=(d[He>>2]|0)+p|0,y?y=26704+(((T|0)%5|0)<<2)|0:y=26736+(((T|0)%6|0)<<2)|0,Ne=d[y>>2]|0,(Ne|0)==7))return _=1,K=Ve,_|0;d[Oe>>2]=0,y=cn(A,f,Ne,Oe,me)|0;do if(!y){if(N=me,I=d[N>>2]|0,N=d[N+4>>2]|0,M=N>>>0>>0|(N|0)==(f|0)&I>>>0>>0,T=M?I:A,M=M?N:f,!ie&&(ie=Nt(7,0,(H^15)*3|0)|0,(I&ie|0)==0&(N&(Z()|0)|0)==0))y=p;else{if(N=(p+-1+U|0)%(U|0)|0,y=Ci(A,f)|0,(N|0)<0&&Bt(27795,27797,248,27822),U=(y|0)!=0,((U?4:5)|0)<(N|0)&&Bt(27795,27797,248,27822),ol(A,f,He)|0&&Bt(27795,27797,248,27822),y=(d[He>>2]|0)+N|0,U?y=26704+(((y|0)%5|0)<<2)|0:y=26736+(((y|0)%6|0)<<2)|0,N=d[y>>2]|0,(N|0)==7&&Bt(27795,27797,248,27822),d[de>>2]=0,y=cn(A,f,N,de,pe)|0,y|0)break;I=pe,U=d[I>>2]|0,I=d[I+4>>2]|0;do if(I>>>0>>0|(I|0)==(M|0)&U>>>0>>0){if(Ci(U,I)|0?T=mi(U,I,A,f)|0:T=d[26800+((((d[de>>2]|0)+(d[26768+(N<<2)>>2]|0)|0)%6|0)<<2)>>2]|0,y=Ci(U,I)|0,(T+-1|0)>>>0>5){y=-1,T=U,M=I;break}if(y=(y|0)!=0,(T|0)==1&y){y=-1,T=U,M=I;break}do if(ol(U,I,He)|0)y=-1;else if(y){y=((d[26352+(T<<2)>>2]|0)+5-(d[He>>2]|0)|0)%5|0;break}else{y=((d[26384+(T<<2)>>2]|0)+6-(d[He>>2]|0)|0)%6|0;break}while(!1);T=U,M=I}else y=p;while(!1);N=me,I=d[N>>2]|0,N=d[N+4>>2]|0}if((T|0)==(I|0)&(M|0)==(N|0)){if(U=(Ci(I,N)|0)!=0,U?A=mi(I,N,A,f)|0:A=d[26800+((((d[Oe>>2]|0)+(d[26768+(Ne<<2)>>2]|0)|0)%6|0)<<2)>>2]|0,y=Ci(I,N)|0,(A+-1|0)>>>0<=5&&(Qe=(y|0)!=0,!((A|0)==1&Qe)))do if(ol(I,N,He)|0)y=-1;else if(Qe){y=((d[26352+(A<<2)>>2]|0)+5-(d[He>>2]|0)|0)%5|0;break}else{y=((d[26384+(A<<2)>>2]|0)+6-(d[He>>2]|0)|0)%6|0;break}while(!1);else y=-1;y=y+1|0,y=(y|0)==6|U&(y|0)==5?0:y}f=M,A=T;break e}while(!1);return _=y,K=Ve,_|0}while(!1);return Qe=Nt(y|0,0,56)|0,He=Z()|0|f&-2130706433|536870912,d[_>>2]=Qe|A,d[_+4>>2]=He,_=0,K=Ve,_|0}function Qu(A,f,p){A=A|0,f=f|0,p=p|0;var _=0,y=0,T=0;return T=(Ci(A,f)|0)==0,_=Qs(A,f,0,p)|0,y=(_|0)==0,T?!y||(_=Qs(A,f,1,p+8|0)|0,_|0)||(_=Qs(A,f,2,p+16|0)|0,_|0)||(_=Qs(A,f,3,p+24|0)|0,_|0)||(_=Qs(A,f,4,p+32|0)|0,_)?(T=_,T|0):Qs(A,f,5,p+40|0)|0:!y||(_=Qs(A,f,1,p+8|0)|0,_|0)||(_=Qs(A,f,2,p+16|0)|0,_|0)||(_=Qs(A,f,3,p+24|0)|0,_|0)||(_=Qs(A,f,4,p+32|0)|0,_|0)?(T=_,T|0):(T=p+40|0,d[T>>2]=0,d[T+4>>2]=0,T=0,T|0)}function ll(A,f,p){A=A|0,f=f|0,p=p|0;var _=0,y=0,T=0,M=0,N=0,U=0;return U=K,K=K+192|0,y=U,T=U+168|0,M=St(A|0,f|0,56)|0,Z()|0,M=M&7,N=f&-2130706433|134217728,_=zu(A,N,T)|0,_|0?(N=_,K=U,N|0):(f=St(A|0,f|0,52)|0,Z()|0,f=f&15,Ci(A,N)|0?sp(T,f,M,1,y):RA(T,f,M,1,y),N=y+8|0,d[p>>2]=d[N>>2],d[p+4>>2]=d[N+4>>2],d[p+8>>2]=d[N+8>>2],d[p+12>>2]=d[N+12>>2],N=0,K=U,N|0)}function ul(A,f){A=A|0,f=f|0;var p=0,_=0,y=0,T=0;return y=K,K=K+16|0,p=y,!(!0&(f&2013265920|0)==536870912)||(_=f&-2130706433|134217728,!(NA(A,_)|0))?(_=0,K=y,_|0):(T=St(A|0,f|0,56)|0,Z()|0,T=(Qs(A,_,T&7,p)|0)==0,_=p,_=T&((d[_>>2]|0)==(A|0)?(d[_+4>>2]|0)==(f|0):0)&1,K=y,_|0)}function Io(A,f,p){A=A|0,f=f|0,p=p|0;var _=0;(f|0)>0?(_=Ks(f,4)|0,d[A>>2]=_,_||Bt(27835,27858,40,27872)):d[A>>2]=0,d[A+4>>2]=f,d[A+8>>2]=0,d[A+12>>2]=p}function GA(A){A=A|0;var f=0,p=0,_=0,y=0,T=0,M=0,N=0;y=A+4|0,T=A+12|0,M=A+8|0;e:for(;;){for(p=d[y>>2]|0,f=0;;){if((f|0)>=(p|0))break e;if(_=d[A>>2]|0,N=d[_+(f<<2)>>2]|0,!N)f=f+1|0;else break}f=_+(~~(+un(+(+Hs(10,+ +(15-(d[T>>2]|0)|0))*(+ee[N>>3]+ +ee[N+8>>3])))%+(p|0))>>>0<<2)|0,p=d[f>>2]|0;t:do if(p|0){if(_=N+32|0,(p|0)==(N|0))d[f>>2]=d[_>>2];else{if(p=p+32|0,f=d[p>>2]|0,!f)break;for(;(f|0)!=(N|0);)if(p=f+32|0,f=d[p>>2]|0,!f)break t;d[p>>2]=d[_>>2]}An(N),d[M>>2]=(d[M>>2]|0)+-1}while(!1)}An(d[A>>2]|0)}function qA(A){A=A|0;var f=0,p=0,_=0;for(_=d[A+4>>2]|0,p=0;;){if((p|0)>=(_|0)){f=0,p=4;break}if(f=d[(d[A>>2]|0)+(p<<2)>>2]|0,!f)p=p+1|0;else{p=4;break}}return(p|0)==4?f|0:0}function Ku(A,f){A=A|0,f=f|0;var p=0,_=0,y=0,T=0;if(p=~~(+un(+(+Hs(10,+ +(15-(d[A+12>>2]|0)|0))*(+ee[f>>3]+ +ee[f+8>>3])))%+(d[A+4>>2]|0))>>>0,p=(d[A>>2]|0)+(p<<2)|0,_=d[p>>2]|0,!_)return T=1,T|0;T=f+32|0;do if((_|0)!=(f|0)){if(p=d[_+32>>2]|0,!p)return T=1,T|0;for(y=p;;){if((y|0)==(f|0)){y=8;break}if(p=d[y+32>>2]|0,p)_=y,y=p;else{p=1,y=10;break}}if((y|0)==8){d[_+32>>2]=d[T>>2];break}else if((y|0)==10)return p|0}else d[p>>2]=d[T>>2];while(!1);return An(f),T=A+8|0,d[T>>2]=(d[T>>2]|0)+-1,T=0,T|0}function VA(A,f,p){A=A|0,f=f|0,p=p|0;var _=0,y=0,T=0,M=0;T=Fo(40)|0,T||Bt(27888,27858,98,27901),d[T>>2]=d[f>>2],d[T+4>>2]=d[f+4>>2],d[T+8>>2]=d[f+8>>2],d[T+12>>2]=d[f+12>>2],y=T+16|0,d[y>>2]=d[p>>2],d[y+4>>2]=d[p+4>>2],d[y+8>>2]=d[p+8>>2],d[y+12>>2]=d[p+12>>2],d[T+32>>2]=0,y=~~(+un(+(+Hs(10,+ +(15-(d[A+12>>2]|0)|0))*(+ee[f>>3]+ +ee[f+8>>3])))%+(d[A+4>>2]|0))>>>0,y=(d[A>>2]|0)+(y<<2)|0,_=d[y>>2]|0;do if(!_)d[y>>2]=T;else{for(;!(Ea(_,f)|0&&Ea(_+16|0,p)|0);)if(y=d[_+32>>2]|0,_=(y|0)==0?_:y,!(d[_+32>>2]|0)){M=10;break}if((M|0)==10){d[_+32>>2]=T;break}return An(T),M=_,M|0}while(!1);return M=A+8|0,d[M>>2]=(d[M>>2]|0)+1,M=T,M|0}function Zu(A,f,p){A=A|0,f=f|0,p=p|0;var _=0,y=0;if(y=~~(+un(+(+Hs(10,+ +(15-(d[A+12>>2]|0)|0))*(+ee[f>>3]+ +ee[f+8>>3])))%+(d[A+4>>2]|0))>>>0,y=d[(d[A>>2]|0)+(y<<2)>>2]|0,!y)return p=0,p|0;if(!p){for(A=y;;){if(Ea(A,f)|0){_=10;break}if(A=d[A+32>>2]|0,!A){A=0,_=10;break}}if((_|0)==10)return A|0}for(A=y;;){if(Ea(A,f)|0&&Ea(A+16|0,p)|0){_=10;break}if(A=d[A+32>>2]|0,!A){A=0,_=10;break}}return(_|0)==10?A|0:0}function As(A,f){A=A|0,f=f|0;var p=0;if(p=~~(+un(+(+Hs(10,+ +(15-(d[A+12>>2]|0)|0))*(+ee[f>>3]+ +ee[f+8>>3])))%+(d[A+4>>2]|0))>>>0,A=d[(d[A>>2]|0)+(p<<2)>>2]|0,!A)return p=0,p|0;for(;;){if(Ea(A,f)|0){f=5;break}if(A=d[A+32>>2]|0,!A){A=0,f=5;break}}return(f|0)==5?A|0:0}function HA(){return 27920}function cl(A){return A=+A,~~+pf(+A)|0}function Fo(A){A=A|0;var f=0,p=0,_=0,y=0,T=0,M=0,N=0,U=0,I=0,H=0,ie=0,pe=0,de=0,me=0,Ne=0,Oe=0,Qe=0,He=0,Ve=0,De=0,Lt=0;Lt=K,K=K+16|0,pe=Lt;do if(A>>>0<245){if(I=A>>>0<11?16:A+11&-8,A=I>>>3,ie=d[6981]|0,p=ie>>>A,p&3|0)return f=(p&1^1)+A|0,A=27964+(f<<1<<2)|0,p=A+8|0,_=d[p>>2]|0,y=_+8|0,T=d[y>>2]|0,(T|0)==(A|0)?d[6981]=ie&~(1<>2]=A,d[p>>2]=T),De=f<<3,d[_+4>>2]=De|3,De=_+De+4|0,d[De>>2]=d[De>>2]|1,De=y,K=Lt,De|0;if(H=d[6983]|0,I>>>0>H>>>0){if(p|0)return f=2<>>12&16,f=f>>>N,p=f>>>5&8,f=f>>>p,T=f>>>2&4,f=f>>>T,A=f>>>1&2,f=f>>>A,_=f>>>1&1,_=(p|N|T|A|_)+(f>>>_)|0,f=27964+(_<<1<<2)|0,A=f+8|0,T=d[A>>2]|0,N=T+8|0,p=d[N>>2]|0,(p|0)==(f|0)?(A=ie&~(1<<_),d[6981]=A):(d[p+12>>2]=f,d[A>>2]=p,A=ie),De=_<<3,M=De-I|0,d[T+4>>2]=I|3,y=T+I|0,d[y+4>>2]=M|1,d[T+De>>2]=M,H|0&&(_=d[6986]|0,f=H>>>3,p=27964+(f<<1<<2)|0,f=1<>2]|0):(d[6981]=A|f,f=p,A=p+8|0),d[A>>2]=_,d[f+12>>2]=_,d[_+8>>2]=f,d[_+12>>2]=p),d[6983]=M,d[6986]=y,De=N,K=Lt,De|0;if(T=d[6982]|0,T){for(p=(T&0-T)+-1|0,y=p>>>12&16,p=p>>>y,_=p>>>5&8,p=p>>>_,M=p>>>2&4,p=p>>>M,N=p>>>1&2,p=p>>>N,U=p>>>1&1,U=d[28228+((_|y|M|N|U)+(p>>>U)<<2)>>2]|0,p=U,N=U,U=(d[U+4>>2]&-8)-I|0;A=d[p+16>>2]|0,!(!A&&(A=d[p+20>>2]|0,!A));)M=(d[A+4>>2]&-8)-I|0,y=M>>>0>>0,p=A,N=y?A:N,U=y?M:U;if(M=N+I|0,M>>>0>N>>>0){y=d[N+24>>2]|0,f=d[N+12>>2]|0;do if((f|0)==(N|0)){if(A=N+20|0,f=d[A>>2]|0,!f&&(A=N+16|0,f=d[A>>2]|0,!f)){p=0;break}for(;;)if(_=f+20|0,p=d[_>>2]|0,p)f=p,A=_;else if(_=f+16|0,p=d[_>>2]|0,p)f=p,A=_;else break;d[A>>2]=0,p=f}else p=d[N+8>>2]|0,d[p+12>>2]=f,d[f+8>>2]=p,p=f;while(!1);do if(y|0){if(f=d[N+28>>2]|0,A=28228+(f<<2)|0,(N|0)==(d[A>>2]|0)){if(d[A>>2]=p,!p){d[6982]=T&~(1<>2]|0)==(N|0)?De:y+20|0)>>2]=p,!p)break;d[p+24>>2]=y,f=d[N+16>>2]|0,f|0&&(d[p+16>>2]=f,d[f+24>>2]=p),f=d[N+20>>2]|0,f|0&&(d[p+20>>2]=f,d[f+24>>2]=p)}while(!1);return U>>>0<16?(De=U+I|0,d[N+4>>2]=De|3,De=N+De+4|0,d[De>>2]=d[De>>2]|1):(d[N+4>>2]=I|3,d[M+4>>2]=U|1,d[M+U>>2]=U,H|0&&(_=d[6986]|0,f=H>>>3,p=27964+(f<<1<<2)|0,f=1<>2]|0):(d[6981]=f|ie,f=p,A=p+8|0),d[A>>2]=_,d[f+12>>2]=_,d[_+8>>2]=f,d[_+12>>2]=p),d[6983]=U,d[6986]=M),De=N+8|0,K=Lt,De|0}else ie=I}else ie=I}else ie=I}else if(A>>>0<=4294967231)if(A=A+11|0,I=A&-8,_=d[6982]|0,_){y=0-I|0,A=A>>>8,A?I>>>0>16777215?U=31:(ie=(A+1048320|0)>>>16&8,Ne=A<>>16&4,Ne=Ne<>>16&2,U=14-(N|ie|U)+(Ne<>>15)|0,U=I>>>(U+7|0)&1|U<<1):U=0,p=d[28228+(U<<2)>>2]|0;e:do if(!p)p=0,A=0,Ne=61;else for(A=0,N=I<<((U|0)==31?0:25-(U>>>1)|0),T=0;;){if(M=(d[p+4>>2]&-8)-I|0,M>>>0>>0)if(M)A=p,y=M;else{A=p,y=0,Ne=65;break e}if(Ne=d[p+20>>2]|0,p=d[p+16+(N>>>31<<2)>>2]|0,T=(Ne|0)==0|(Ne|0)==(p|0)?T:Ne,p)N=N<<1;else{p=T,Ne=61;break}}while(!1);if((Ne|0)==61){if((p|0)==0&(A|0)==0){if(A=2<>>12&16,ie=ie>>>M,T=ie>>>5&8,ie=ie>>>T,N=ie>>>2&4,ie=ie>>>N,U=ie>>>1&2,ie=ie>>>U,p=ie>>>1&1,A=0,p=d[28228+((T|M|N|U|p)+(ie>>>p)<<2)>>2]|0}p?Ne=65:(N=A,M=y)}if((Ne|0)==65)for(T=p;;)if(ie=(d[T+4>>2]&-8)-I|0,p=ie>>>0>>0,y=p?ie:y,A=p?T:A,p=d[T+16>>2]|0,p||(p=d[T+20>>2]|0),p)T=p;else{N=A,M=y;break}if((N|0)!=0&&M>>>0<((d[6983]|0)-I|0)>>>0&&(H=N+I|0,H>>>0>N>>>0)){T=d[N+24>>2]|0,f=d[N+12>>2]|0;do if((f|0)==(N|0)){if(A=N+20|0,f=d[A>>2]|0,!f&&(A=N+16|0,f=d[A>>2]|0,!f)){f=0;break}for(;;)if(y=f+20|0,p=d[y>>2]|0,p)f=p,A=y;else if(y=f+16|0,p=d[y>>2]|0,p)f=p,A=y;else break;d[A>>2]=0}else De=d[N+8>>2]|0,d[De+12>>2]=f,d[f+8>>2]=De;while(!1);do if(T){if(A=d[N+28>>2]|0,p=28228+(A<<2)|0,(N|0)==(d[p>>2]|0)){if(d[p>>2]=f,!f){_=_&~(1<>2]|0)==(N|0)?De:T+20|0)>>2]=f,!f)break;d[f+24>>2]=T,A=d[N+16>>2]|0,A|0&&(d[f+16>>2]=A,d[A+24>>2]=f),A=d[N+20>>2]|0,A&&(d[f+20>>2]=A,d[A+24>>2]=f)}while(!1);e:do if(M>>>0<16)De=M+I|0,d[N+4>>2]=De|3,De=N+De+4|0,d[De>>2]=d[De>>2]|1;else{if(d[N+4>>2]=I|3,d[H+4>>2]=M|1,d[H+M>>2]=M,f=M>>>3,M>>>0<256){p=27964+(f<<1<<2)|0,A=d[6981]|0,f=1<>2]|0):(d[6981]=A|f,f=p,A=p+8|0),d[A>>2]=H,d[f+12>>2]=H,d[H+8>>2]=f,d[H+12>>2]=p;break}if(f=M>>>8,f?M>>>0>16777215?p=31:(Ve=(f+1048320|0)>>>16&8,De=f<>>16&4,De=De<>>16&2,p=14-(He|Ve|p)+(De<

>>15)|0,p=M>>>(p+7|0)&1|p<<1):p=0,f=28228+(p<<2)|0,d[H+28>>2]=p,A=H+16|0,d[A+4>>2]=0,d[A>>2]=0,A=1<>2]=H,d[H+24>>2]=f,d[H+12>>2]=H,d[H+8>>2]=H;break}f=d[f>>2]|0;t:do if((d[f+4>>2]&-8|0)!=(M|0)){for(_=M<<((p|0)==31?0:25-(p>>>1)|0);p=f+16+(_>>>31<<2)|0,A=d[p>>2]|0,!!A;)if((d[A+4>>2]&-8|0)==(M|0)){f=A;break t}else _=_<<1,f=A;d[p>>2]=H,d[H+24>>2]=f,d[H+12>>2]=H,d[H+8>>2]=H;break e}while(!1);Ve=f+8|0,De=d[Ve>>2]|0,d[De+12>>2]=H,d[Ve>>2]=H,d[H+8>>2]=De,d[H+12>>2]=f,d[H+24>>2]=0}while(!1);return De=N+8|0,K=Lt,De|0}else ie=I}else ie=I;else ie=-1;while(!1);if(p=d[6983]|0,p>>>0>=ie>>>0)return f=p-ie|0,A=d[6986]|0,f>>>0>15?(De=A+ie|0,d[6986]=De,d[6983]=f,d[De+4>>2]=f|1,d[A+p>>2]=f,d[A+4>>2]=ie|3):(d[6983]=0,d[6986]=0,d[A+4>>2]=p|3,De=A+p+4|0,d[De>>2]=d[De>>2]|1),De=A+8|0,K=Lt,De|0;if(M=d[6984]|0,M>>>0>ie>>>0)return He=M-ie|0,d[6984]=He,De=d[6987]|0,Ve=De+ie|0,d[6987]=Ve,d[Ve+4>>2]=He|1,d[De+4>>2]=ie|3,De=De+8|0,K=Lt,De|0;if(d[7099]|0?A=d[7101]|0:(d[7101]=4096,d[7100]=4096,d[7102]=-1,d[7103]=-1,d[7104]=0,d[7092]=0,d[7099]=pe&-16^1431655768,A=4096),N=ie+48|0,U=ie+47|0,T=A+U|0,y=0-A|0,I=T&y,I>>>0<=ie>>>0||(A=d[7091]|0,A|0&&(H=d[7089]|0,pe=H+I|0,pe>>>0<=H>>>0|pe>>>0>A>>>0)))return De=0,K=Lt,De|0;e:do if(d[7092]&4)f=0,Ne=143;else{p=d[6987]|0;t:do if(p){for(_=28372;pe=d[_>>2]|0,!(pe>>>0<=p>>>0&&(pe+(d[_+4>>2]|0)|0)>>>0>p>>>0);)if(A=d[_+8>>2]|0,A)_=A;else{Ne=128;break t}if(f=T-M&y,f>>>0<2147483647)if(A=fl(f|0)|0,(A|0)==((d[_>>2]|0)+(d[_+4>>2]|0)|0)){if((A|0)!=-1){M=f,T=A,Ne=145;break e}}else _=A,Ne=136;else f=0}else Ne=128;while(!1);do if((Ne|0)==128)if(p=fl(0)|0,(p|0)!=-1&&(f=p,de=d[7100]|0,me=de+-1|0,f=((me&f|0)==0?0:(me+f&0-de)-f|0)+I|0,de=d[7089]|0,me=f+de|0,f>>>0>ie>>>0&f>>>0<2147483647)){if(pe=d[7091]|0,pe|0&&me>>>0<=de>>>0|me>>>0>pe>>>0){f=0;break}if(A=fl(f|0)|0,(A|0)==(p|0)){M=f,T=p,Ne=145;break e}else _=A,Ne=136}else f=0;while(!1);do if((Ne|0)==136){if(p=0-f|0,!(N>>>0>f>>>0&(f>>>0<2147483647&(_|0)!=-1)))if((_|0)==-1){f=0;break}else{M=f,T=_,Ne=145;break e}if(A=d[7101]|0,A=U-f+A&0-A,A>>>0>=2147483647){M=f,T=_,Ne=145;break e}if((fl(A|0)|0)==-1){fl(p|0)|0,f=0;break}else{M=A+f|0,T=_,Ne=145;break e}}while(!1);d[7092]=d[7092]|4,Ne=143}while(!1);if((Ne|0)==143&&I>>>0<2147483647&&(He=fl(I|0)|0,me=fl(0)|0,Oe=me-He|0,Qe=Oe>>>0>(ie+40|0)>>>0,!((He|0)==-1|Qe^1|He>>>0>>0&((He|0)!=-1&(me|0)!=-1)^1))&&(M=Qe?Oe:f,T=He,Ne=145),(Ne|0)==145){f=(d[7089]|0)+M|0,d[7089]=f,f>>>0>(d[7090]|0)>>>0&&(d[7090]=f),U=d[6987]|0;e:do if(U){for(f=28372;;){if(A=d[f>>2]|0,p=d[f+4>>2]|0,(T|0)==(A+p|0)){Ne=154;break}if(_=d[f+8>>2]|0,_)f=_;else break}if((Ne|0)==154&&(Ve=f+4|0,(d[f+12>>2]&8|0)==0)&&T>>>0>U>>>0&A>>>0<=U>>>0){d[Ve>>2]=p+M,De=(d[6984]|0)+M|0,He=U+8|0,He=(He&7|0)==0?0:0-He&7,Ve=U+He|0,He=De-He|0,d[6987]=Ve,d[6984]=He,d[Ve+4>>2]=He|1,d[U+De+4>>2]=40,d[6988]=d[7103];break}for(T>>>0<(d[6985]|0)>>>0&&(d[6985]=T),p=T+M|0,f=28372;;){if((d[f>>2]|0)==(p|0)){Ne=162;break}if(A=d[f+8>>2]|0,A)f=A;else break}if((Ne|0)==162&&(d[f+12>>2]&8|0)==0){d[f>>2]=T,H=f+4|0,d[H>>2]=(d[H>>2]|0)+M,H=T+8|0,H=T+((H&7|0)==0?0:0-H&7)|0,f=p+8|0,f=p+((f&7|0)==0?0:0-f&7)|0,I=H+ie|0,N=f-H-ie|0,d[H+4>>2]=ie|3;t:do if((U|0)==(f|0))De=(d[6984]|0)+N|0,d[6984]=De,d[6987]=I,d[I+4>>2]=De|1;else{if((d[6986]|0)==(f|0)){De=(d[6983]|0)+N|0,d[6983]=De,d[6986]=I,d[I+4>>2]=De|1,d[I+De>>2]=De;break}if(A=d[f+4>>2]|0,(A&3|0)==1){M=A&-8,_=A>>>3;n:do if(A>>>0<256)if(A=d[f+8>>2]|0,p=d[f+12>>2]|0,(p|0)==(A|0)){d[6981]=d[6981]&~(1<<_);break}else{d[A+12>>2]=p,d[p+8>>2]=A;break}else{T=d[f+24>>2]|0,A=d[f+12>>2]|0;do if((A|0)==(f|0)){if(p=f+16|0,_=p+4|0,A=d[_>>2]|0,A)p=_;else if(A=d[p>>2]|0,!A){A=0;break}for(;;)if(y=A+20|0,_=d[y>>2]|0,_)A=_,p=y;else if(y=A+16|0,_=d[y>>2]|0,_)A=_,p=y;else break;d[p>>2]=0}else De=d[f+8>>2]|0,d[De+12>>2]=A,d[A+8>>2]=De;while(!1);if(!T)break;p=d[f+28>>2]|0,_=28228+(p<<2)|0;do if((d[_>>2]|0)!=(f|0)){if(De=T+16|0,d[((d[De>>2]|0)==(f|0)?De:T+20|0)>>2]=A,!A)break n}else{if(d[_>>2]=A,A|0)break;d[6982]=d[6982]&~(1<>2]=T,p=f+16|0,_=d[p>>2]|0,_|0&&(d[A+16>>2]=_,d[_+24>>2]=A),p=d[p+4>>2]|0,!p)break;d[A+20>>2]=p,d[p+24>>2]=A}while(!1);f=f+M|0,y=M+N|0}else y=N;if(f=f+4|0,d[f>>2]=d[f>>2]&-2,d[I+4>>2]=y|1,d[I+y>>2]=y,f=y>>>3,y>>>0<256){p=27964+(f<<1<<2)|0,A=d[6981]|0,f=1<>2]|0):(d[6981]=A|f,f=p,A=p+8|0),d[A>>2]=I,d[f+12>>2]=I,d[I+8>>2]=f,d[I+12>>2]=p;break}f=y>>>8;do if(!f)_=0;else{if(y>>>0>16777215){_=31;break}Ve=(f+1048320|0)>>>16&8,De=f<>>16&4,De=De<>>16&2,_=14-(He|Ve|_)+(De<<_>>>15)|0,_=y>>>(_+7|0)&1|_<<1}while(!1);if(f=28228+(_<<2)|0,d[I+28>>2]=_,A=I+16|0,d[A+4>>2]=0,d[A>>2]=0,A=d[6982]|0,p=1<<_,!(A&p)){d[6982]=A|p,d[f>>2]=I,d[I+24>>2]=f,d[I+12>>2]=I,d[I+8>>2]=I;break}f=d[f>>2]|0;n:do if((d[f+4>>2]&-8|0)!=(y|0)){for(_=y<<((_|0)==31?0:25-(_>>>1)|0);p=f+16+(_>>>31<<2)|0,A=d[p>>2]|0,!!A;)if((d[A+4>>2]&-8|0)==(y|0)){f=A;break n}else _=_<<1,f=A;d[p>>2]=I,d[I+24>>2]=f,d[I+12>>2]=I,d[I+8>>2]=I;break t}while(!1);Ve=f+8|0,De=d[Ve>>2]|0,d[De+12>>2]=I,d[Ve>>2]=I,d[I+8>>2]=De,d[I+12>>2]=f,d[I+24>>2]=0}while(!1);return De=H+8|0,K=Lt,De|0}for(f=28372;A=d[f>>2]|0,!(A>>>0<=U>>>0&&(De=A+(d[f+4>>2]|0)|0,De>>>0>U>>>0));)f=d[f+8>>2]|0;y=De+-47|0,A=y+8|0,A=y+((A&7|0)==0?0:0-A&7)|0,y=U+16|0,A=A>>>0>>0?U:A,f=A+8|0,p=M+-40|0,He=T+8|0,He=(He&7|0)==0?0:0-He&7,Ve=T+He|0,He=p-He|0,d[6987]=Ve,d[6984]=He,d[Ve+4>>2]=He|1,d[T+p+4>>2]=40,d[6988]=d[7103],p=A+4|0,d[p>>2]=27,d[f>>2]=d[7093],d[f+4>>2]=d[7094],d[f+8>>2]=d[7095],d[f+12>>2]=d[7096],d[7093]=T,d[7094]=M,d[7096]=0,d[7095]=f,f=A+24|0;do Ve=f,f=f+4|0,d[f>>2]=7;while((Ve+8|0)>>>0>>0);if((A|0)!=(U|0)){if(T=A-U|0,d[p>>2]=d[p>>2]&-2,d[U+4>>2]=T|1,d[A>>2]=T,f=T>>>3,T>>>0<256){p=27964+(f<<1<<2)|0,A=d[6981]|0,f=1<>2]|0):(d[6981]=A|f,f=p,A=p+8|0),d[A>>2]=U,d[f+12>>2]=U,d[U+8>>2]=f,d[U+12>>2]=p;break}if(f=T>>>8,f?T>>>0>16777215?_=31:(Ve=(f+1048320|0)>>>16&8,De=f<>>16&4,De=De<>>16&2,_=14-(He|Ve|_)+(De<<_>>>15)|0,_=T>>>(_+7|0)&1|_<<1):_=0,p=28228+(_<<2)|0,d[U+28>>2]=_,d[U+20>>2]=0,d[y>>2]=0,f=d[6982]|0,A=1<<_,!(f&A)){d[6982]=f|A,d[p>>2]=U,d[U+24>>2]=p,d[U+12>>2]=U,d[U+8>>2]=U;break}f=d[p>>2]|0;t:do if((d[f+4>>2]&-8|0)!=(T|0)){for(_=T<<((_|0)==31?0:25-(_>>>1)|0);p=f+16+(_>>>31<<2)|0,A=d[p>>2]|0,!!A;)if((d[A+4>>2]&-8|0)==(T|0)){f=A;break t}else _=_<<1,f=A;d[p>>2]=U,d[U+24>>2]=f,d[U+12>>2]=U,d[U+8>>2]=U;break e}while(!1);Ve=f+8|0,De=d[Ve>>2]|0,d[De+12>>2]=U,d[Ve>>2]=U,d[U+8>>2]=De,d[U+12>>2]=f,d[U+24>>2]=0}}else De=d[6985]|0,(De|0)==0|T>>>0>>0&&(d[6985]=T),d[7093]=T,d[7094]=M,d[7096]=0,d[6990]=d[7099],d[6989]=-1,d[6994]=27964,d[6993]=27964,d[6996]=27972,d[6995]=27972,d[6998]=27980,d[6997]=27980,d[7e3]=27988,d[6999]=27988,d[7002]=27996,d[7001]=27996,d[7004]=28004,d[7003]=28004,d[7006]=28012,d[7005]=28012,d[7008]=28020,d[7007]=28020,d[7010]=28028,d[7009]=28028,d[7012]=28036,d[7011]=28036,d[7014]=28044,d[7013]=28044,d[7016]=28052,d[7015]=28052,d[7018]=28060,d[7017]=28060,d[7020]=28068,d[7019]=28068,d[7022]=28076,d[7021]=28076,d[7024]=28084,d[7023]=28084,d[7026]=28092,d[7025]=28092,d[7028]=28100,d[7027]=28100,d[7030]=28108,d[7029]=28108,d[7032]=28116,d[7031]=28116,d[7034]=28124,d[7033]=28124,d[7036]=28132,d[7035]=28132,d[7038]=28140,d[7037]=28140,d[7040]=28148,d[7039]=28148,d[7042]=28156,d[7041]=28156,d[7044]=28164,d[7043]=28164,d[7046]=28172,d[7045]=28172,d[7048]=28180,d[7047]=28180,d[7050]=28188,d[7049]=28188,d[7052]=28196,d[7051]=28196,d[7054]=28204,d[7053]=28204,d[7056]=28212,d[7055]=28212,De=M+-40|0,He=T+8|0,He=(He&7|0)==0?0:0-He&7,Ve=T+He|0,He=De-He|0,d[6987]=Ve,d[6984]=He,d[Ve+4>>2]=He|1,d[T+De+4>>2]=40,d[6988]=d[7103];while(!1);if(f=d[6984]|0,f>>>0>ie>>>0)return He=f-ie|0,d[6984]=He,De=d[6987]|0,Ve=De+ie|0,d[6987]=Ve,d[Ve+4>>2]=He|1,d[De+4>>2]=ie|3,De=De+8|0,K=Lt,De|0}return De=HA()|0,d[De>>2]=12,De=0,K=Lt,De|0}function An(A){A=A|0;var f=0,p=0,_=0,y=0,T=0,M=0,N=0,U=0;if(A){p=A+-8|0,y=d[6985]|0,A=d[A+-4>>2]|0,f=A&-8,U=p+f|0;do if(A&1)N=p,M=p;else{if(_=d[p>>2]|0,!(A&3)||(M=p+(0-_)|0,T=_+f|0,M>>>0>>0))return;if((d[6986]|0)==(M|0)){if(A=U+4|0,f=d[A>>2]|0,(f&3|0)!=3){N=M,f=T;break}d[6983]=T,d[A>>2]=f&-2,d[M+4>>2]=T|1,d[M+T>>2]=T;return}if(p=_>>>3,_>>>0<256)if(A=d[M+8>>2]|0,f=d[M+12>>2]|0,(f|0)==(A|0)){d[6981]=d[6981]&~(1<>2]=f,d[f+8>>2]=A,N=M,f=T;break}y=d[M+24>>2]|0,A=d[M+12>>2]|0;do if((A|0)==(M|0)){if(f=M+16|0,p=f+4|0,A=d[p>>2]|0,A)f=p;else if(A=d[f>>2]|0,!A){A=0;break}for(;;)if(_=A+20|0,p=d[_>>2]|0,p)A=p,f=_;else if(_=A+16|0,p=d[_>>2]|0,p)A=p,f=_;else break;d[f>>2]=0}else N=d[M+8>>2]|0,d[N+12>>2]=A,d[A+8>>2]=N;while(!1);if(y){if(f=d[M+28>>2]|0,p=28228+(f<<2)|0,(d[p>>2]|0)==(M|0)){if(d[p>>2]=A,!A){d[6982]=d[6982]&~(1<>2]|0)==(M|0)?N:y+20|0)>>2]=A,!A){N=M,f=T;break}d[A+24>>2]=y,f=M+16|0,p=d[f>>2]|0,p|0&&(d[A+16>>2]=p,d[p+24>>2]=A),f=d[f+4>>2]|0,f?(d[A+20>>2]=f,d[f+24>>2]=A,N=M,f=T):(N=M,f=T)}else N=M,f=T}while(!1);if(!(M>>>0>=U>>>0)&&(A=U+4|0,_=d[A>>2]|0,!!(_&1))){if(_&2)d[A>>2]=_&-2,d[N+4>>2]=f|1,d[M+f>>2]=f,y=f;else{if((d[6987]|0)==(U|0)){if(U=(d[6984]|0)+f|0,d[6984]=U,d[6987]=N,d[N+4>>2]=U|1,(N|0)!=(d[6986]|0))return;d[6986]=0,d[6983]=0;return}if((d[6986]|0)==(U|0)){U=(d[6983]|0)+f|0,d[6983]=U,d[6986]=M,d[N+4>>2]=U|1,d[M+U>>2]=U;return}y=(_&-8)+f|0,p=_>>>3;do if(_>>>0<256)if(f=d[U+8>>2]|0,A=d[U+12>>2]|0,(A|0)==(f|0)){d[6981]=d[6981]&~(1<>2]=A,d[A+8>>2]=f;break}else{T=d[U+24>>2]|0,A=d[U+12>>2]|0;do if((A|0)==(U|0)){if(f=U+16|0,p=f+4|0,A=d[p>>2]|0,A)f=p;else if(A=d[f>>2]|0,!A){p=0;break}for(;;)if(_=A+20|0,p=d[_>>2]|0,p)A=p,f=_;else if(_=A+16|0,p=d[_>>2]|0,p)A=p,f=_;else break;d[f>>2]=0,p=A}else p=d[U+8>>2]|0,d[p+12>>2]=A,d[A+8>>2]=p,p=A;while(!1);if(T|0){if(A=d[U+28>>2]|0,f=28228+(A<<2)|0,(d[f>>2]|0)==(U|0)){if(d[f>>2]=p,!p){d[6982]=d[6982]&~(1<>2]|0)==(U|0)?_:T+20|0)>>2]=p,!p)break;d[p+24>>2]=T,A=U+16|0,f=d[A>>2]|0,f|0&&(d[p+16>>2]=f,d[f+24>>2]=p),A=d[A+4>>2]|0,A|0&&(d[p+20>>2]=A,d[A+24>>2]=p)}}while(!1);if(d[N+4>>2]=y|1,d[M+y>>2]=y,(N|0)==(d[6986]|0)){d[6983]=y;return}}if(A=y>>>3,y>>>0<256){p=27964+(A<<1<<2)|0,f=d[6981]|0,A=1<>2]|0):(d[6981]=f|A,A=p,f=p+8|0),d[f>>2]=N,d[A+12>>2]=N,d[N+8>>2]=A,d[N+12>>2]=p;return}A=y>>>8,A?y>>>0>16777215?_=31:(M=(A+1048320|0)>>>16&8,U=A<>>16&4,U=U<>>16&2,_=14-(T|M|_)+(U<<_>>>15)|0,_=y>>>(_+7|0)&1|_<<1):_=0,A=28228+(_<<2)|0,d[N+28>>2]=_,d[N+20>>2]=0,d[N+16>>2]=0,f=d[6982]|0,p=1<<_;e:do if(!(f&p))d[6982]=f|p,d[A>>2]=N,d[N+24>>2]=A,d[N+12>>2]=N,d[N+8>>2]=N;else{A=d[A>>2]|0;t:do if((d[A+4>>2]&-8|0)!=(y|0)){for(_=y<<((_|0)==31?0:25-(_>>>1)|0);p=A+16+(_>>>31<<2)|0,f=d[p>>2]|0,!!f;)if((d[f+4>>2]&-8|0)==(y|0)){A=f;break t}else _=_<<1,A=f;d[p>>2]=N,d[N+24>>2]=A,d[N+12>>2]=N,d[N+8>>2]=N;break e}while(!1);M=A+8|0,U=d[M>>2]|0,d[U+12>>2]=N,d[M>>2]=N,d[N+8>>2]=U,d[N+12>>2]=A,d[N+24>>2]=0}while(!1);if(U=(d[6989]|0)+-1|0,d[6989]=U,!(U|0)){for(A=28380;A=d[A>>2]|0,A;)A=A+8|0;d[6989]=-1}}}}function Ks(A,f){A=A|0,f=f|0;var p=0;return A?(p=Xe(f,A)|0,(f|A)>>>0>65535&&(p=((p>>>0)/(A>>>0)|0|0)==(f|0)?p:-1)):p=0,A=Fo(p)|0,!A||!(d[A+-4>>2]&3)||uo(A|0,0,p|0)|0,A|0}function Qt(A,f,p,_){return A=A|0,f=f|0,p=p|0,_=_|0,p=A+p>>>0,At(f+_+(p>>>0>>0|0)>>>0|0),p|0|0}function Ur(A,f,p,_){return A=A|0,f=f|0,p=p|0,_=_|0,_=f-_-(p>>>0>A>>>0|0)>>>0,At(_|0),A-p>>>0|0|0}function Jc(A){return A=A|0,(A?31-(jt(A^A-1)|0)|0:32)|0}function Ju(A,f,p,_,y){A=A|0,f=f|0,p=p|0,_=_|0,y=y|0;var T=0,M=0,N=0,U=0,I=0,H=0,ie=0,pe=0,de=0,me=0;if(H=A,U=f,I=U,M=p,pe=_,N=pe,!I)return T=(y|0)!=0,N?T?(d[y>>2]=A|0,d[y+4>>2]=f&0,pe=0,y=0,At(pe|0),y|0):(pe=0,y=0,At(pe|0),y|0):(T&&(d[y>>2]=(H>>>0)%(M>>>0),d[y+4>>2]=0),pe=0,y=(H>>>0)/(M>>>0)>>>0,At(pe|0),y|0);T=(N|0)==0;do if(M){if(!T){if(T=(jt(N|0)|0)-(jt(I|0)|0)|0,T>>>0<=31){ie=T+1|0,N=31-T|0,f=T-31>>31,M=ie,A=H>>>(ie>>>0)&f|I<>>(ie>>>0)&f,T=0,N=H<>2]=A|0,d[y+4>>2]=U|f&0,pe=0,y=0,At(pe|0),y|0):(pe=0,y=0,At(pe|0),y|0)}if(T=M-1|0,T&M|0){N=(jt(M|0)|0)+33-(jt(I|0)|0)|0,me=64-N|0,ie=32-N|0,U=ie>>31,de=N-32|0,f=de>>31,M=N,A=ie-1>>31&I>>>(de>>>0)|(I<>>(N>>>0))&f,f=f&I>>>(N>>>0),T=H<>>(de>>>0))&U|H<>31;break}return y|0&&(d[y>>2]=T&H,d[y+4>>2]=0),(M|0)==1?(de=U|f&0,me=A|0|0,At(de|0),me|0):(me=Jc(M|0)|0,de=I>>>(me>>>0)|0,me=I<<32-me|H>>>(me>>>0)|0,At(de|0),me|0)}else{if(T)return y|0&&(d[y>>2]=(I>>>0)%(M>>>0),d[y+4>>2]=0),de=0,me=(I>>>0)/(M>>>0)>>>0,At(de|0),me|0;if(!H)return y|0&&(d[y>>2]=0,d[y+4>>2]=(I>>>0)%(N>>>0)),de=0,me=(I>>>0)/(N>>>0)>>>0,At(de|0),me|0;if(T=N-1|0,!(T&N))return y|0&&(d[y>>2]=A|0,d[y+4>>2]=T&I|f&0),de=0,me=I>>>((Jc(N|0)|0)>>>0),At(de|0),me|0;if(T=(jt(N|0)|0)-(jt(I|0)|0)|0,T>>>0<=30){f=T+1|0,N=31-T|0,M=f,A=I<>>(f>>>0),f=I>>>(f>>>0),T=0,N=H<>2]=A|0,d[y+4>>2]=U|f&0,de=0,me=0,At(de|0),me|0):(de=0,me=0,At(de|0),me|0)}while(!1);if(!M)I=N,U=0,N=0;else{ie=p|0|0,H=pe|_&0,I=Qt(ie|0,H|0,-1,-1)|0,p=Z()|0,U=N,N=0;do _=U,U=T>>>31|U<<1,T=N|T<<1,_=A<<1|_>>>31|0,pe=A>>>31|f<<1|0,Ur(I|0,p|0,_|0,pe|0)|0,me=Z()|0,de=me>>31|((me|0)<0?-1:0)<<1,N=de&1,A=Ur(_|0,pe|0,de&ie|0,(((me|0)<0?-1:0)>>31|((me|0)<0?-1:0)<<1)&H|0)|0,f=Z()|0,M=M-1|0;while((M|0)!=0);I=U,U=0}return M=0,y|0&&(d[y>>2]=A,d[y+4>>2]=f),de=(T|0)>>>31|(I|M)<<1|(M<<1|T>>>31)&0|U,me=(T<<1|0)&-2|N,At(de|0),me|0}function ko(A,f,p,_){A=A|0,f=f|0,p=p|0,_=_|0;var y=0,T=0,M=0,N=0,U=0,I=0;return I=f>>31|((f|0)<0?-1:0)<<1,U=((f|0)<0?-1:0)>>31|((f|0)<0?-1:0)<<1,T=_>>31|((_|0)<0?-1:0)<<1,y=((_|0)<0?-1:0)>>31|((_|0)<0?-1:0)<<1,N=Ur(I^A|0,U^f|0,I|0,U|0)|0,M=Z()|0,A=T^I,f=y^U,Ur((Ju(N,M,Ur(T^p|0,y^_|0,T|0,y|0)|0,Z()|0,0)|0)^A|0,(Z()|0)^f|0,A|0,f|0)|0}function eh(A,f){A=A|0,f=f|0;var p=0,_=0,y=0,T=0;return T=A&65535,y=f&65535,p=Xe(y,T)|0,_=A>>>16,A=(p>>>16)+(Xe(y,_)|0)|0,y=f>>>16,f=Xe(y,T)|0,At((A>>>16)+(Xe(y,_)|0)+(((A&65535)+f|0)>>>16)|0),A+f<<16|p&65535|0|0}function fr(A,f,p,_){A=A|0,f=f|0,p=p|0,_=_|0;var y=0,T=0;return y=A,T=p,p=eh(y,T)|0,A=Z()|0,At((Xe(f,T)|0)+(Xe(_,y)|0)+A|A&0|0),p|0|0|0}function th(A,f,p,_){A=A|0,f=f|0,p=p|0,_=_|0;var y=0,T=0,M=0,N=0,U=0,I=0;return y=K,K=K+16|0,N=y|0,M=f>>31|((f|0)<0?-1:0)<<1,T=((f|0)<0?-1:0)>>31|((f|0)<0?-1:0)<<1,I=_>>31|((_|0)<0?-1:0)<<1,U=((_|0)<0?-1:0)>>31|((_|0)<0?-1:0)<<1,A=Ur(M^A|0,T^f|0,M|0,T|0)|0,f=Z()|0,Ju(A,f,Ur(I^p|0,U^_|0,I|0,U|0)|0,Z()|0,N)|0,_=Ur(d[N>>2]^M|0,d[N+4>>2]^T|0,M|0,T|0)|0,p=Z()|0,K=y,At(p|0),_|0}function ec(A,f,p,_){A=A|0,f=f|0,p=p|0,_=_|0;var y=0,T=0;return T=K,K=K+16|0,y=T|0,Ju(A,f,p,_,y)|0,K=T,At(d[y+4>>2]|0),d[y>>2]|0|0}function N1(A,f,p){return A=A|0,f=f|0,p=p|0,(p|0)<32?(At(f>>p|0),A>>>p|(f&(1<>p-32|0)}function St(A,f,p){return A=A|0,f=f|0,p=p|0,(p|0)<32?(At(f>>>p|0),A>>>p|(f&(1<>>p-32|0)}function Nt(A,f,p){return A=A|0,f=f|0,p=p|0,(p|0)<32?(At(f<>>32-p|0),A<=0?+Xn(A+.5):+Ke(A-.5)}function Gl(A,f,p){A=A|0,f=f|0,p=p|0;var _=0,y=0,T=0;if((p|0)>=8192)return ci(A|0,f|0,p|0)|0,A|0;if(T=A|0,y=A+p|0,(A&3)==(f&3)){for(;A&3;){if(!p)return T|0;at[A>>0]=at[f>>0]|0,A=A+1|0,f=f+1|0,p=p-1|0}for(p=y&-4|0,_=p-64|0;(A|0)<=(_|0);)d[A>>2]=d[f>>2],d[A+4>>2]=d[f+4>>2],d[A+8>>2]=d[f+8>>2],d[A+12>>2]=d[f+12>>2],d[A+16>>2]=d[f+16>>2],d[A+20>>2]=d[f+20>>2],d[A+24>>2]=d[f+24>>2],d[A+28>>2]=d[f+28>>2],d[A+32>>2]=d[f+32>>2],d[A+36>>2]=d[f+36>>2],d[A+40>>2]=d[f+40>>2],d[A+44>>2]=d[f+44>>2],d[A+48>>2]=d[f+48>>2],d[A+52>>2]=d[f+52>>2],d[A+56>>2]=d[f+56>>2],d[A+60>>2]=d[f+60>>2],A=A+64|0,f=f+64|0;for(;(A|0)<(p|0);)d[A>>2]=d[f>>2],A=A+4|0,f=f+4|0}else for(p=y-4|0;(A|0)<(p|0);)at[A>>0]=at[f>>0]|0,at[A+1>>0]=at[f+1>>0]|0,at[A+2>>0]=at[f+2>>0]|0,at[A+3>>0]=at[f+3>>0]|0,A=A+4|0,f=f+4|0;for(;(A|0)<(y|0);)at[A>>0]=at[f>>0]|0,A=A+1|0,f=f+1|0;return T|0}function uo(A,f,p){A=A|0,f=f|0,p=p|0;var _=0,y=0,T=0,M=0;if(T=A+p|0,f=f&255,(p|0)>=67){for(;A&3;)at[A>>0]=f,A=A+1|0;for(_=T&-4|0,M=f|f<<8|f<<16|f<<24,y=_-64|0;(A|0)<=(y|0);)d[A>>2]=M,d[A+4>>2]=M,d[A+8>>2]=M,d[A+12>>2]=M,d[A+16>>2]=M,d[A+20>>2]=M,d[A+24>>2]=M,d[A+28>>2]=M,d[A+32>>2]=M,d[A+36>>2]=M,d[A+40>>2]=M,d[A+44>>2]=M,d[A+48>>2]=M,d[A+52>>2]=M,d[A+56>>2]=M,d[A+60>>2]=M,A=A+64|0;for(;(A|0)<(_|0);)d[A>>2]=M,A=A+4|0}for(;(A|0)<(T|0);)at[A>>0]=f,A=A+1|0;return T-p|0}function pf(A){return A=+A,A>=0?+Xn(A+.5):+Ke(A-.5)}function fl(A){A=A|0;var f=0,p=0,_=0;return _=fn()|0,p=d[Gn>>2]|0,f=p+A|0,(A|0)>0&(f|0)<(p|0)|(f|0)<0?(yi(f|0)|0,bn(12),-1):(f|0)>(_|0)&&!(hi(f|0)|0)?(bn(12),-1):(d[Gn>>2]=f,p|0)}return{___divdi3:ko,___muldi3:fr,___remdi3:th,___uremdi3:ec,_areNeighborCells:dx,_bitshift64Ashr:N1,_bitshift64Lshr:St,_bitshift64Shl:Nt,_calloc:Ks,_cellAreaKm2:mp,_cellAreaM2:UA,_cellAreaRads2:Fl,_cellToBoundary:Il,_cellToCenterChild:DA,_cellToChildPos:Ap,_cellToChildren:_1,_cellToChildrenSize:lf,_cellToLatLng:Ol,_cellToLocalIj:E1,_cellToParent:Fu,_cellToVertex:Qs,_cellToVertexes:Qu,_cellsToDirectedEdge:d1,_cellsToLinkedMultiPolygon:nl,_childPosToCell:S1,_compactCells:up,_constructCell:Sx,_destroyLinkedMultiPolygon:Wu,_directedEdgeToBoundary:CA,_directedEdgeToCells:gx,_edgeLengthKm:gp,_edgeLengthM:ju,_edgeLengthRads:BA,_emscripten_replace_memory:Un,_free:An,_getBaseCellNumber:g1,_getDirectedEdgeDestination:mx,_getDirectedEdgeOrigin:px,_getHexagonAreaAvgKm2:dp,_getHexagonAreaAvgM2:w1,_getHexagonEdgeLengthAvgKm:pp,_getHexagonEdgeLengthAvgM:oo,_getIcosahedronFaces:Gu,_getIndexDigit:bx,_getNumCells:Hu,_getPentagons:qu,_getRes0Cells:ef,_getResolution:Qc,_greatCircleDistanceKm:Zc,_greatCircleDistanceM:Mx,_greatCircleDistanceRads:T1,_gridDisk:_e,_gridDiskDistances:ot,_gridDistance:$u,_gridPathCells:C1,_gridPathCellsSize:vp,_gridRing:Yn,_gridRingUnsafe:xi,_i64Add:Qt,_i64Subtract:Ur,_isPentagon:Ci,_isResClassIII:b1,_isValidCell:NA,_isValidDirectedEdge:p1,_isValidIndex:v1,_isValidVertex:ul,_latLngToCell:PA,_llvm_ctlz_i64:ff,_llvm_maxnum_f64:Af,_llvm_minnum_f64:df,_llvm_round_f64:hl,_localIjToCell:IA,_malloc:Fo,_maxFaceCount:wx,_maxGridDiskSize:fa,_maxPolygonToCellsSize:Pr,_maxPolygonToCellsSizeExperimental:cf,_memcpy:Gl,_memset:uo,_originToDirectedEdges:vx,_pentagonCount:fp,_polygonToCells:Zh,_polygonToCellsExperimental:kA,_readInt64AsDoubleFromPointer:yp,_res0CellCount:s1,_round:pf,_sbrk:fl,_sizeOfCellBoundary:fs,_sizeOfCoordIJ:Pa,_sizeOfGeoLoop:sr,_sizeOfGeoPolygon:gi,_sizeOfH3Index:_p,_sizeOfLatLng:R1,_sizeOfLinkedGeoPolygon:kl,_uncompactCells:y1,_uncompactCellsSize:x1,_vertexToLatLng:ll,establishStackSpace:bs,stackAlloc:mn,stackRestore:fi,stackSave:yr}})(Nn,Jn,Y);e.___divdi3=ge.___divdi3,e.___muldi3=ge.___muldi3,e.___remdi3=ge.___remdi3,e.___uremdi3=ge.___uremdi3,e._areNeighborCells=ge._areNeighborCells,e._bitshift64Ashr=ge._bitshift64Ashr,e._bitshift64Lshr=ge._bitshift64Lshr,e._bitshift64Shl=ge._bitshift64Shl,e._calloc=ge._calloc,e._cellAreaKm2=ge._cellAreaKm2,e._cellAreaM2=ge._cellAreaM2,e._cellAreaRads2=ge._cellAreaRads2,e._cellToBoundary=ge._cellToBoundary,e._cellToCenterChild=ge._cellToCenterChild,e._cellToChildPos=ge._cellToChildPos,e._cellToChildren=ge._cellToChildren,e._cellToChildrenSize=ge._cellToChildrenSize,e._cellToLatLng=ge._cellToLatLng,e._cellToLocalIj=ge._cellToLocalIj,e._cellToParent=ge._cellToParent,e._cellToVertex=ge._cellToVertex,e._cellToVertexes=ge._cellToVertexes,e._cellsToDirectedEdge=ge._cellsToDirectedEdge,e._cellsToLinkedMultiPolygon=ge._cellsToLinkedMultiPolygon,e._childPosToCell=ge._childPosToCell,e._compactCells=ge._compactCells,e._constructCell=ge._constructCell,e._destroyLinkedMultiPolygon=ge._destroyLinkedMultiPolygon,e._directedEdgeToBoundary=ge._directedEdgeToBoundary,e._directedEdgeToCells=ge._directedEdgeToCells,e._edgeLengthKm=ge._edgeLengthKm,e._edgeLengthM=ge._edgeLengthM,e._edgeLengthRads=ge._edgeLengthRads;var Wt=e._emscripten_replace_memory=ge._emscripten_replace_memory;e._free=ge._free,e._getBaseCellNumber=ge._getBaseCellNumber,e._getDirectedEdgeDestination=ge._getDirectedEdgeDestination,e._getDirectedEdgeOrigin=ge._getDirectedEdgeOrigin,e._getHexagonAreaAvgKm2=ge._getHexagonAreaAvgKm2,e._getHexagonAreaAvgM2=ge._getHexagonAreaAvgM2,e._getHexagonEdgeLengthAvgKm=ge._getHexagonEdgeLengthAvgKm,e._getHexagonEdgeLengthAvgM=ge._getHexagonEdgeLengthAvgM,e._getIcosahedronFaces=ge._getIcosahedronFaces,e._getIndexDigit=ge._getIndexDigit,e._getNumCells=ge._getNumCells,e._getPentagons=ge._getPentagons,e._getRes0Cells=ge._getRes0Cells,e._getResolution=ge._getResolution,e._greatCircleDistanceKm=ge._greatCircleDistanceKm,e._greatCircleDistanceM=ge._greatCircleDistanceM,e._greatCircleDistanceRads=ge._greatCircleDistanceRads,e._gridDisk=ge._gridDisk,e._gridDiskDistances=ge._gridDiskDistances,e._gridDistance=ge._gridDistance,e._gridPathCells=ge._gridPathCells,e._gridPathCellsSize=ge._gridPathCellsSize,e._gridRing=ge._gridRing,e._gridRingUnsafe=ge._gridRingUnsafe,e._i64Add=ge._i64Add,e._i64Subtract=ge._i64Subtract,e._isPentagon=ge._isPentagon,e._isResClassIII=ge._isResClassIII,e._isValidCell=ge._isValidCell,e._isValidDirectedEdge=ge._isValidDirectedEdge,e._isValidIndex=ge._isValidIndex,e._isValidVertex=ge._isValidVertex,e._latLngToCell=ge._latLngToCell,e._llvm_ctlz_i64=ge._llvm_ctlz_i64,e._llvm_maxnum_f64=ge._llvm_maxnum_f64,e._llvm_minnum_f64=ge._llvm_minnum_f64,e._llvm_round_f64=ge._llvm_round_f64,e._localIjToCell=ge._localIjToCell,e._malloc=ge._malloc,e._maxFaceCount=ge._maxFaceCount,e._maxGridDiskSize=ge._maxGridDiskSize,e._maxPolygonToCellsSize=ge._maxPolygonToCellsSize,e._maxPolygonToCellsSizeExperimental=ge._maxPolygonToCellsSizeExperimental,e._memcpy=ge._memcpy,e._memset=ge._memset,e._originToDirectedEdges=ge._originToDirectedEdges,e._pentagonCount=ge._pentagonCount,e._polygonToCells=ge._polygonToCells,e._polygonToCellsExperimental=ge._polygonToCellsExperimental,e._readInt64AsDoubleFromPointer=ge._readInt64AsDoubleFromPointer,e._res0CellCount=ge._res0CellCount,e._round=ge._round,e._sbrk=ge._sbrk,e._sizeOfCellBoundary=ge._sizeOfCellBoundary,e._sizeOfCoordIJ=ge._sizeOfCoordIJ,e._sizeOfGeoLoop=ge._sizeOfGeoLoop,e._sizeOfGeoPolygon=ge._sizeOfGeoPolygon,e._sizeOfH3Index=ge._sizeOfH3Index,e._sizeOfLatLng=ge._sizeOfLatLng,e._sizeOfLinkedGeoPolygon=ge._sizeOfLinkedGeoPolygon,e._uncompactCells=ge._uncompactCells,e._uncompactCellsSize=ge._uncompactCellsSize,e._vertexToLatLng=ge._vertexToLatLng,e.establishStackSpace=ge.establishStackSpace;var it=e.stackAlloc=ge.stackAlloc,bt=e.stackRestore=ge.stackRestore,Xt=e.stackSave=ge.stackSave;if(e.asm=ge,e.cwrap=L,e.setValue=S,e.getValue=w,re){se(re)||(re=s(re));{en();var qt=function(Je){Je.byteLength&&(Je=new Uint8Array(Je)),ne.set(Je,x),e.memoryInitializerRequest&&delete e.memoryInitializerRequest.response,Re()},xn=function(){a(re,qt,function(){throw"could not load memory initializer "+re})},qi=It(re);if(qi)qt(qi.buffer);else if(e.memoryInitializerRequest){var rr=function(){var Je=e.memoryInitializerRequest,mt=Je.response;if(Je.status!==200&&Je.status!==0){var kt=It(e.memoryInitializerRequestURL);if(kt)mt=kt.buffer;else{console.warn("a problem seems to have happened with Module.memoryInitializerRequest, status: "+Je.status+", retrying "+re),xn();return}}qt(mt)};e.memoryInitializerRequest.response?setTimeout(rr,0):e.memoryInitializerRequest.addEventListener("load",rr)}else xn()}}var pn;pt=function Je(){pn||$i(),pn||(pt=Je)};function $i(Je){if(Dt>0||(Le(),Dt>0))return;function mt(){pn||(pn=!0,!R&&(ct(),_t(),e.onRuntimeInitialized&&e.onRuntimeInitialized(),xt()))}e.setStatus?(e.setStatus("Running..."),setTimeout(function(){setTimeout(function(){e.setStatus("")},1),mt()},1)):mt()}e.run=$i;function Jr(Je){throw e.onAbort&&e.onAbort(Je),Je+="",l(Je),u(Je),R=!0,"abort("+Je+"). Build with -s ASSERTIONS=1 for more info."}if(e.abort=Jr,e.preInit)for(typeof e.preInit=="function"&&(e.preInit=[e.preInit]);e.preInit.length>0;)e.preInit.pop()();return $i(),i})(typeof Ti=="object"?Ti:{}),Dn="number",Cn=Dn,Md=Dn,On=Dn,In=Dn,Cs=Dn,nn=Dn,JK=[["sizeOfH3Index",Dn],["sizeOfLatLng",Dn],["sizeOfCellBoundary",Dn],["sizeOfGeoLoop",Dn],["sizeOfGeoPolygon",Dn],["sizeOfLinkedGeoPolygon",Dn],["sizeOfCoordIJ",Dn],["readInt64AsDoubleFromPointer",Dn],["isValidCell",Md,[On,In]],["isValidIndex",Md,[On,In]],["latLngToCell",Cn,[Dn,Dn,Cs,nn]],["cellToLatLng",Cn,[On,In,nn]],["cellToBoundary",Cn,[On,In,nn]],["maxGridDiskSize",Cn,[Dn,nn]],["gridDisk",Cn,[On,In,Dn,nn]],["gridDiskDistances",Cn,[On,In,Dn,nn,nn]],["gridRing",Cn,[On,In,Dn,nn]],["gridRingUnsafe",Cn,[On,In,Dn,nn]],["maxPolygonToCellsSize",Cn,[nn,Cs,Dn,nn]],["polygonToCells",Cn,[nn,Cs,Dn,nn]],["maxPolygonToCellsSizeExperimental",Cn,[nn,Cs,Dn,nn]],["polygonToCellsExperimental",Cn,[nn,Cs,Dn,Dn,Dn,nn]],["cellsToLinkedMultiPolygon",Cn,[nn,Dn,nn]],["destroyLinkedMultiPolygon",null,[nn]],["compactCells",Cn,[nn,nn,Dn,Dn]],["uncompactCells",Cn,[nn,Dn,Dn,nn,Dn,Cs]],["uncompactCellsSize",Cn,[nn,Dn,Dn,Cs,nn]],["isPentagon",Md,[On,In]],["isResClassIII",Md,[On,In]],["getBaseCellNumber",Dn,[On,In]],["getResolution",Dn,[On,In]],["getIndexDigit",Dn,[On,In,Dn]],["constructCell",Cn,[Dn,Dn,nn,nn]],["maxFaceCount",Cn,[On,In,nn]],["getIcosahedronFaces",Cn,[On,In,nn]],["cellToParent",Cn,[On,In,Cs,nn]],["cellToChildren",Cn,[On,In,Cs,nn]],["cellToCenterChild",Cn,[On,In,Cs,nn]],["cellToChildrenSize",Cn,[On,In,Cs,nn]],["cellToChildPos",Cn,[On,In,Cs,nn]],["childPosToCell",Cn,[Dn,Dn,On,In,Cs,nn]],["areNeighborCells",Cn,[On,In,On,In,nn]],["cellsToDirectedEdge",Cn,[On,In,On,In,nn]],["getDirectedEdgeOrigin",Cn,[On,In,nn]],["getDirectedEdgeDestination",Cn,[On,In,nn]],["isValidDirectedEdge",Md,[On,In]],["directedEdgeToCells",Cn,[On,In,nn]],["originToDirectedEdges",Cn,[On,In,nn]],["directedEdgeToBoundary",Cn,[On,In,nn]],["gridDistance",Cn,[On,In,On,In,nn]],["gridPathCells",Cn,[On,In,On,In,nn]],["gridPathCellsSize",Cn,[On,In,On,In,nn]],["cellToLocalIj",Cn,[On,In,On,In,Dn,nn]],["localIjToCell",Cn,[On,In,nn,Dn,nn]],["getHexagonAreaAvgM2",Cn,[Cs,nn]],["getHexagonAreaAvgKm2",Cn,[Cs,nn]],["getHexagonEdgeLengthAvgM",Cn,[Cs,nn]],["getHexagonEdgeLengthAvgKm",Cn,[Cs,nn]],["greatCircleDistanceM",Dn,[nn,nn]],["greatCircleDistanceKm",Dn,[nn,nn]],["greatCircleDistanceRads",Dn,[nn,nn]],["cellAreaM2",Cn,[On,In,nn]],["cellAreaKm2",Cn,[On,In,nn]],["cellAreaRads2",Cn,[On,In,nn]],["edgeLengthM",Cn,[On,In,nn]],["edgeLengthKm",Cn,[On,In,nn]],["edgeLengthRads",Cn,[On,In,nn]],["getNumCells",Cn,[Cs,nn]],["getRes0Cells",Cn,[nn]],["res0CellCount",Dn],["getPentagons",Cn,[Dn,nn]],["pentagonCount",Dn],["cellToVertex",Cn,[On,In,Dn,nn]],["cellToVertexes",Cn,[On,In,nn]],["vertexToLatLng",Cn,[On,In,nn]],["isValidVertex",Md,[On,In]]],eZ=0,tZ=1,nZ=2,iZ=3,yP=4,rZ=5,sZ=6,aZ=7,oZ=8,lZ=9,uZ=10,cZ=11,hZ=12,fZ=13,AZ=14,dZ=15,pZ=16,mZ=17,gZ=18,vZ=19,Kr={};Kr[eZ]="Success";Kr[tZ]="The operation failed but a more specific error is not available";Kr[nZ]="Argument was outside of acceptable range";Kr[iZ]="Latitude or longitude arguments were outside of acceptable range";Kr[yP]="Resolution argument was outside of acceptable range";Kr[rZ]="Cell argument was not valid";Kr[sZ]="Directed edge argument was not valid";Kr[aZ]="Undirected edge argument was not valid";Kr[oZ]="Vertex argument was not valid";Kr[lZ]="Pentagon distortion was encountered";Kr[uZ]="Duplicate input";Kr[cZ]="Cell arguments were not neighbors";Kr[hZ]="Cell arguments had incompatible resolutions";Kr[fZ]="Memory allocation failed";Kr[AZ]="Bounds of provided memory were insufficient";Kr[dZ]="Mode or flags argument was not valid";Kr[pZ]="Index argument was not valid";Kr[mZ]="Base cell number was outside of acceptable range";Kr[gZ]="Child indexing digits invalid";Kr[vZ]="Child indexing digits refer to a deleted subsequence";var _Z=1e3,xP=1001,bP=1002,Ry={};Ry[_Z]="Unknown unit";Ry[xP]="Array length out of bounds";Ry[bP]="Got unexpected null value for H3 index";var yZ="Unknown error";function SP(i,e,t){var n=t&&"value"in t,r=new Error((i[e]||yZ)+" (code: "+e+(n?", value: "+t.value:"")+")");return r.code=e,r}function TP(i,e){var t=arguments.length===2?{value:e}:{};return SP(Kr,i,t)}function wP(i,e){var t=arguments.length===2?{value:e}:{};return SP(Ry,i,t)}function vg(i){if(i!==0)throw TP(i)}var eo={};JK.forEach(function(e){eo[e[0]]=Ti.cwrap.apply(Ti,e)});var Xd=16,_g=4,U0=8,xZ=8,j_=eo.sizeOfH3Index(),MM=eo.sizeOfLatLng(),bZ=eo.sizeOfCellBoundary(),SZ=eo.sizeOfGeoPolygon(),Lm=eo.sizeOfGeoLoop();eo.sizeOfLinkedGeoPolygon();eo.sizeOfCoordIJ();function TZ(i){if(typeof i!="number"||i<0||i>15||Math.floor(i)!==i)throw TP(yP,i);return i}function wZ(i){if(!i)throw wP(bP);return i}var MZ=Math.pow(2,32)-1;function EZ(i){if(i>MZ)throw wP(xP,i);return i}var CZ=/[^0-9a-fA-F]/;function MP(i){if(Array.isArray(i)&&i.length===2&&Number.isInteger(i[0])&&Number.isInteger(i[1]))return i;if(typeof i!="string"||CZ.test(i))return[0,0];var e=parseInt(i.substring(0,i.length-8),Xd),t=parseInt(i.substring(i.length-8),Xd);return[t,e]}function E6(i){if(i>=0)return i.toString(Xd);i=i&2147483647;var e=EP(8,i.toString(Xd)),t=(parseInt(e[0],Xd)+8).toString(Xd);return e=t+e.substring(1),e}function RZ(i,e){return E6(e)+EP(8,E6(i))}function EP(i,e){for(var t=i-e.length,n="",r=0;r0){l=Ti._calloc(t,Lm);for(var u=0;u0){for(var a=Ti.getValue(i+n,"i32"),l=0;l0){const{width:a,height:l}=e.context;t.bufferWidth=a,t.bufferHeight=l}this.renderObjects.set(e,t)}return t}getAttributesData(e){const t={};for(const n in e){const r=e[n];t[n]={version:r.version}}return t}containsNode(e){const t=e.material;for(const n in t)if(t[n]&&t[n].isNode)return!0;return e.renderer.nodes.modelViewMatrix!==null||e.renderer.nodes.modelNormalViewMatrix!==null}getMaterialData(e){const t={};for(const n of this.refreshUniforms){const r=e[n];r!=null&&(typeof r=="object"&&r.clone!==void 0?r.isTexture===!0?t[n]={id:r.id,version:r.version}:t[n]=r.clone():t[n]=r)}return t}equals(e){const{object:t,material:n,geometry:r}=e,s=this.getRenderObjectData(e);if(s.worldMatrix.equals(t.matrixWorld)!==!0)return s.worldMatrix.copy(t.matrixWorld),!1;const a=s.material;for(const R in a){const C=a[R],E=n[R];if(C.equals!==void 0){if(C.equals(E)===!1)return C.copy(E),!1}else if(E.isTexture===!0){if(C.id!==E.id||C.version!==E.version)return C.id=E.id,C.version=E.version,!1}else if(C!==E)return a[R]=E,!1}if(a.transmission>0){const{width:R,height:C}=e.context;if(s.bufferWidth!==R||s.bufferHeight!==C)return s.bufferWidth=R,s.bufferHeight=C,!1}const l=s.geometry,u=r.attributes,h=l.attributes,m=Object.keys(h),v=Object.keys(u);if(m.length!==v.length)return s.geometry.attributes=this.getAttributesData(u),!1;for(const R of m){const C=h[R],E=u[R];if(E===void 0)return delete h[R],!1;if(C.version!==E.version)return C.version=E.version,!1}const x=r.index,S=l.indexVersion,w=x?x.version:null;if(S!==w)return l.indexVersion=w,!1;if(l.drawRange.start!==r.drawRange.start||l.drawRange.count!==r.drawRange.count)return l.drawRange.start=r.drawRange.start,l.drawRange.count=r.drawRange.count,!1;if(s.morphTargetInfluences){let R=!1;for(let C=0;C>>16,2246822507),t^=Math.imul(n^n>>>13,3266489909),n=Math.imul(n^n>>>16,2246822507),n^=Math.imul(t^t>>>13,3266489909),4294967296*(2097151&n)+(t>>>0)}const PP=i=>yg(i),Ny=i=>yg(i),EM=(...i)=>yg(i);function LP(i,e=!1){const t=[];i.isNode===!0&&(t.push(i.id),i=i.getSelf());for(const{property:n,childNode:r}of $_(i))t.push(t,yg(n.slice(0,-4)),r.getCacheKey(e));return yg(t)}function*$_(i,e=!1){for(const t in i){if(t.startsWith("_")===!0)continue;const n=i[t];if(Array.isArray(n)===!0)for(let r=0;re.charCodeAt(0)).buffer}const IT={VERTEX:"vertex",FRAGMENT:"fragment"},jn={NONE:"none",FRAME:"frame",RENDER:"render",OBJECT:"object"},VZ={BOOLEAN:"bool",INTEGER:"int",FLOAT:"float",VECTOR2:"vec2",VECTOR3:"vec3",VECTOR4:"vec4",MATRIX2:"mat2",MATRIX3:"mat3",MATRIX4:"mat4"},sa={READ_ONLY:"readOnly",WRITE_ONLY:"writeOnly",READ_WRITE:"readWrite"},GP=["fragment","vertex"],FT=["setup","analyze","generate"],kT=[...GP,"compute"],gA=["x","y","z","w"];let HZ=0;class Mn extends zc{static get type(){return"Node"}constructor(e=null){super(),this.nodeType=e,this.updateType=jn.NONE,this.updateBeforeType=jn.NONE,this.updateAfterType=jn.NONE,this.uuid=M0.generateUUID(),this.version=0,this.global=!1,this.isNode=!0,this._cacheKey=null,this._cacheKeyVersion=0,Object.defineProperty(this,"id",{value:HZ++})}set needsUpdate(e){e===!0&&this.version++}get type(){return this.constructor.type}onUpdate(e,t){return this.updateType=t,this.update=e.bind(this.getSelf()),this}onFrameUpdate(e){return this.onUpdate(e,jn.FRAME)}onRenderUpdate(e){return this.onUpdate(e,jn.RENDER)}onObjectUpdate(e){return this.onUpdate(e,jn.OBJECT)}onReference(e){return this.updateReference=e.bind(this.getSelf()),this}getSelf(){return this.self||this}updateReference(){return this}isGlobal(){return this.global}*getChildren(){for(const{childNode:e}of $_(this))yield e}dispose(){this.dispatchEvent({type:"dispose"})}traverse(e){e(this);for(const t of this.getChildren())t.traverse(e)}getCacheKey(e=!1){return e=e||this.version!==this._cacheKeyVersion,(e===!0||this._cacheKey===null)&&(this._cacheKey=EM(LP(this,e),this.customCacheKey()),this._cacheKeyVersion=this.version),this._cacheKey}customCacheKey(){return 0}getScope(){return this}getHash(){return this.uuid}getUpdateType(){return this.updateType}getUpdateBeforeType(){return this.updateBeforeType}getUpdateAfterType(){return this.updateAfterType}getElementType(e){const t=this.getNodeType(e);return e.getElementType(t)}getNodeType(e){const t=e.getNodeProperties(this);return t.outputNode?t.outputNode.getNodeType(e):this.nodeType}getShared(e){const t=this.getHash(e);return e.getNodeFromHash(t)||this}setup(e){const t=e.getNodeProperties(this);let n=0;for(const r of this.getChildren())t["node"+n++]=r;return t.outputNode||null}analyze(e){if(e.increaseUsage(this)===1){const n=e.getNodeProperties(this);for(const r of Object.values(n))r&&r.isNode===!0&&r.build(e)}}generate(e,t){const{outputNode:n}=e.getNodeProperties(this);if(n&&n.isNode===!0)return n.build(e,t)}updateBefore(){console.warn("Abstract function.")}updateAfter(){console.warn("Abstract function.")}update(){console.warn("Abstract function.")}build(e,t=null){const n=this.getShared(e);if(this!==n)return n.build(e,t);e.addNode(this),e.addChain(this);let r=null;const s=e.getBuildStage();if(s==="setup"){this.updateReference(e);const a=e.getNodeProperties(this);if(a.initialized!==!0){a.initialized=!0;const l=this.setup(e),u=l&&l.isNode===!0;for(const h of Object.values(a))h&&h.isNode===!0&&h.build(e);u&&l.build(e),a.outputNode=l}}else if(s==="analyze")this.analyze(e);else if(s==="generate")if(this.generate.length===1){const l=this.getNodeType(e),u=e.getDataFromNode(this);r=u.snippet,r===void 0?(r=this.generate(e)||"",u.snippet=r):u.flowCodes!==void 0&&e.context.nodeBlock!==void 0&&e.addFlowCodeHierarchy(this,e.context.nodeBlock),r=e.format(r,l,t)}else r=this.generate(e,t)||"";return e.removeChain(this),e.addSequentialNode(this),r}getSerializeChildren(){return $_(this)}serialize(e){const t=this.getSerializeChildren(),n={};for(const{property:r,index:s,childNode:a}of t)s!==void 0?(n[r]===void 0&&(n[r]=Number.isInteger(s)?[]:{}),n[r][s]=a.toJSON(e.meta).uuid):n[r]=a.toJSON(e.meta).uuid;Object.keys(n).length>0&&(e.inputNodes=n)}deserialize(e){if(e.inputNodes!==void 0){const t=e.meta.nodes;for(const n in e.inputNodes)if(Array.isArray(e.inputNodes[n])){const r=[];for(const s of e.inputNodes[n])r.push(t[s]);this[n]=r}else if(typeof e.inputNodes[n]=="object"){const r={};for(const s in e.inputNodes[n]){const a=e.inputNodes[n][s];r[s]=t[a]}this[n]=r}else{const r=e.inputNodes[n];this[n]=t[r]}}}toJSON(e){const{uuid:t,type:n}=this,r=e===void 0||typeof e=="string";r&&(e={textures:{},images:{},nodes:{}});let s=e.nodes[t];s===void 0&&(s={uuid:t,type:n,meta:e,metadata:{version:4.6,type:"Node",generator:"Node.toJSON"}},r!==!0&&(e.nodes[s.uuid]=s),this.serialize(s),delete s.meta);function a(l){const u=[];for(const h in l){const m=l[h];delete m.metadata,u.push(m)}return u}if(r){const l=a(e.textures),u=a(e.images),h=a(e.nodes);l.length>0&&(s.textures=l),u.length>0&&(s.images=u),h.length>0&&(s.nodes=h)}return s}}class vA extends Mn{static get type(){return"ArrayElementNode"}constructor(e,t){super(),this.node=e,this.indexNode=t,this.isArrayElementNode=!0}getNodeType(e){return this.node.getElementType(e)}generate(e){const t=this.node.build(e),n=this.indexNode.build(e,"uint");return`${t}[ ${n} ]`}}class qP extends Mn{static get type(){return"ConvertNode"}constructor(e,t){super(),this.node=e,this.convertTo=t}getNodeType(e){const t=this.node.getNodeType(e);let n=null;for(const r of this.convertTo.split("|"))(n===null||e.getTypeLength(t)===e.getTypeLength(r))&&(n=r);return n}serialize(e){super.serialize(e),e.convertTo=this.convertTo}deserialize(e){super.deserialize(e),this.convertTo=e.convertTo}generate(e,t){const n=this.node,r=this.getNodeType(e),s=n.build(e,r);return e.format(s,r,t)}}class Zr extends Mn{static get type(){return"TempNode"}constructor(e=null){super(e),this.isTempNode=!0}hasDependencies(e){return e.getDataFromNode(this).usageCount>1}build(e,t){if(e.getBuildStage()==="generate"){const r=e.getVectorType(this.getNodeType(e,t)),s=e.getDataFromNode(this);if(s.propertyName!==void 0)return e.format(s.propertyName,r,t);if(r!=="void"&&t!=="void"&&this.hasDependencies(e)){const a=super.build(e,r),l=e.getVarFromNode(this,null,r),u=e.getPropertyName(l);return e.addLineFlowCode(`${u} = ${a}`,this),s.snippet=a,s.propertyName=u,e.format(s.propertyName,r,t)}}return super.build(e,t)}}class jZ extends Zr{static get type(){return"JoinNode"}constructor(e=[],t=null){super(t),this.nodes=e}getNodeType(e){return this.nodeType!==null?e.getVectorType(this.nodeType):e.getTypeFromLength(this.nodes.reduce((t,n)=>t+e.getTypeLength(n.getNodeType(e)),0))}generate(e,t){const n=this.getNodeType(e),r=this.nodes,s=e.getComponentType(n),a=[];for(const u of r){let h=u.build(e);const m=e.getComponentType(u.getNodeType(e));m!==s&&(h=e.format(h,m,s)),a.push(h)}const l=`${e.getType(n)}( ${a.join(", ")} )`;return e.format(l,n,t)}}const WZ=gA.join("");class zT extends Mn{static get type(){return"SplitNode"}constructor(e,t="x"){super(),this.node=e,this.components=t,this.isSplitNode=!0}getVectorLength(){let e=this.components.length;for(const t of this.components)e=Math.max(gA.indexOf(t)+1,e);return e}getComponentType(e){return e.getComponentType(this.node.getNodeType(e))}getNodeType(e){return e.getTypeFromLength(this.components.length,this.getComponentType(e))}generate(e,t){const n=this.node,r=e.getTypeLength(n.getNodeType(e));let s=null;if(r>1){let a=null;this.getVectorLength()>=r&&(a=e.getTypeFromLength(this.getVectorLength(),this.getComponentType(e)));const u=n.build(e,a);this.components.length===r&&this.components===WZ.slice(0,this.components.length)?s=e.format(u,a,t):s=e.format(`${u}.${this.components}`,this.getNodeType(e),t)}else s=n.build(e,t);return s}serialize(e){super.serialize(e),e.components=this.components}deserialize(e){super.deserialize(e),this.components=e.components}}class $Z extends Zr{static get type(){return"SetNode"}constructor(e,t,n){super(),this.sourceNode=e,this.components=t,this.targetNode=n}getNodeType(e){return this.sourceNode.getNodeType(e)}generate(e){const{sourceNode:t,components:n,targetNode:r}=this,s=this.getNodeType(e),a=e.getComponentType(r.getNodeType(e)),l=e.getTypeFromLength(n.length,a),u=r.build(e,l),h=t.build(e,s),m=e.getTypeLength(s),v=[];for(let x=0;xi.replace(/r|s/g,"x").replace(/g|t/g,"y").replace(/b|p/g,"z").replace(/a|q/g,"w"),D6=i=>VP(i).split("").sort().join(""),HP={setup(i,e){const t=e.shift();return i(Vg(t),...e)},get(i,e,t){if(typeof e=="string"&&i[e]===void 0){if(i.isStackNode!==!0&&e==="assign")return(...n)=>(B0.assign(t,...n),t);if(Yd.has(e)){const n=Yd.get(e);return i.isStackNode?(...r)=>t.add(n(...r)):(...r)=>n(t,...r)}else{if(e==="self")return i;if(e.endsWith("Assign")&&Yd.has(e.slice(0,e.length-6))){const n=Yd.get(e.slice(0,e.length-6));return i.isStackNode?(...r)=>t.assign(r[0],n(...r)):(...r)=>t.assign(n(t,...r))}else{if(/^[xyzwrgbastpq]{1,4}$/.test(e)===!0)return e=VP(e),gt(new zT(t,e));if(/^set[XYZWRGBASTPQ]{1,4}$/.test(e)===!0)return e=D6(e.slice(3).toLowerCase()),n=>gt(new $Z(i,e,n));if(/^flip[XYZWRGBASTPQ]{1,4}$/.test(e)===!0)return e=D6(e.slice(4).toLowerCase()),()=>gt(new XZ(gt(i),e));if(e==="width"||e==="height"||e==="depth")return e==="width"?e="x":e==="height"?e="y":e==="depth"&&(e="z"),gt(new zT(i,e));if(/^\d+$/.test(e)===!0)return gt(new vA(t,new Ll(Number(e),"uint")))}}}return Reflect.get(i,e,t)},set(i,e,t,n){return typeof e=="string"&&i[e]===void 0&&(/^[xyzwrgbastpq]{1,4}$/.test(e)===!0||e==="width"||e==="height"||e==="depth"||/^\d+$/.test(e)===!0)?(n[e].assign(t),!0):Reflect.set(i,e,t,n)}},W3=new WeakMap,P6=new WeakMap,YZ=function(i,e=null){const t=Uh(i);if(t==="node"){let n=W3.get(i);return n===void 0&&(n=new Proxy(i,HP),W3.set(i,n),W3.set(n,n)),n}else{if(e===null&&(t==="float"||t==="boolean")||t&&t!=="shader"&&t!=="string")return gt(GT(i,e));if(t==="shader")return $e(i)}return i},QZ=function(i,e=null){for(const t in i)i[t]=gt(i[t],e);return i},KZ=function(i,e=null){const t=i.length;for(let n=0;ngt(n!==null?Object.assign(s,n):s);return e===null?(...s)=>r(new i(...tA(s))):t!==null?(t=gt(t),(...s)=>r(new i(e,...tA(s),t))):(...s)=>r(new i(e,...tA(s)))},JZ=function(i,...e){return gt(new i(...tA(e)))};class eJ extends Mn{constructor(e,t){super(),this.shaderNode=e,this.inputNodes=t}getNodeType(e){return this.shaderNode.nodeType||this.getOutputNode(e).getNodeType(e)}call(e){const{shaderNode:t,inputNodes:n}=this,r=e.getNodeProperties(t);if(r.onceOutput)return r.onceOutput;let s=null;if(t.layout){let a=P6.get(e.constructor);a===void 0&&(a=new WeakMap,P6.set(e.constructor,a));let l=a.get(t);l===void 0&&(l=gt(e.buildFunctionNode(t)),a.set(t,l)),e.currentFunctionNode!==null&&e.currentFunctionNode.includes.push(l),s=gt(l.call(n))}else{const a=t.jsFunc,l=n!==null?a(n,e):a(e);s=gt(l)}return t.once&&(r.onceOutput=s),s}getOutputNode(e){const t=e.getNodeProperties(this);return t.outputNode===null&&(t.outputNode=this.setupOutput(e)),t.outputNode}setup(e){return this.getOutputNode(e)}setupOutput(e){return e.addStack(),e.stack.outputNode=this.call(e),e.removeStack()}generate(e,t){return this.getOutputNode(e).build(e,t)}}class tJ extends Mn{constructor(e,t){super(t),this.jsFunc=e,this.layout=null,this.global=!0,this.once=!1}setLayout(e){return this.layout=e,this}call(e=null){return Vg(e),gt(new eJ(this,e))}setup(){return this.call()}}const nJ=[!1,!0],iJ=[0,1,2,3],rJ=[-1,-2],jP=[.5,1.5,1/3,1e-6,1e6,Math.PI,Math.PI*2,1/Math.PI,2/Math.PI,1/(Math.PI*2),Math.PI/2],RM=new Map;for(const i of nJ)RM.set(i,new Ll(i));const NM=new Map;for(const i of iJ)NM.set(i,new Ll(i,"uint"));const DM=new Map([...NM].map(i=>new Ll(i.value,"int")));for(const i of rJ)DM.set(i,new Ll(i,"int"));const Dy=new Map([...DM].map(i=>new Ll(i.value)));for(const i of jP)Dy.set(i,new Ll(i));for(const i of jP)Dy.set(-i,new Ll(-i));const Py={bool:RM,uint:NM,ints:DM,float:Dy},L6=new Map([...RM,...Dy]),GT=(i,e)=>L6.has(i)?L6.get(i):i.isNode===!0?i:new Ll(i,e),sJ=i=>{try{return i.getNodeType()}catch{return}},ls=function(i,e=null){return(...t)=>{if((t.length===0||!["bool","float","int","uint"].includes(i)&&t.every(r=>typeof r!="object"))&&(t=[IP(i,...t)]),t.length===1&&e!==null&&e.has(t[0]))return gt(e.get(t[0]));if(t.length===1){const r=GT(t[0],i);return sJ(r)===i?gt(r):gt(new qP(r,i))}const n=t.map(r=>GT(r));return gt(new jZ(n,i))}},xg=i=>typeof i=="object"&&i!==null?i.value:i,WP=i=>i!=null?i.nodeType||i.convertTo||(typeof i=="string"?i:null):null;function Um(i,e){return new Proxy(new tJ(i,e),HP)}const gt=(i,e=null)=>YZ(i,e),Vg=(i,e=null)=>new QZ(i,e),tA=(i,e=null)=>new KZ(i,e),ut=(...i)=>new ZZ(...i),Vt=(...i)=>new JZ(...i),$e=(i,e)=>{const t=new Um(i,e),n=(...r)=>{let s;return Vg(r),r[0]&&r[0].isNode?s=[...r]:s=r[0],t.call(s)};return n.shaderNode=t,n.setLayout=r=>(t.setLayout(r),n),n.once=()=>(t.once=!0,n),n},aJ=(...i)=>(console.warn("TSL.ShaderNode: tslFn() has been renamed to Fn()."),$e(...i));lt("toGlobal",i=>(i.global=!0,i));const bg=i=>{B0=i},PM=()=>B0,ni=(...i)=>B0.If(...i);function $P(i){return B0&&B0.add(i),i}lt("append",$P);const XP=new ls("color"),ve=new ls("float",Py.float),Me=new ls("int",Py.ints),Zt=new ls("uint",Py.uint),Ic=new ls("bool",Py.bool),Et=new ls("vec2"),ms=new ls("ivec2"),YP=new ls("uvec2"),QP=new ls("bvec2"),Ue=new ls("vec3"),KP=new ls("ivec3"),Y0=new ls("uvec3"),LM=new ls("bvec3"),dn=new ls("vec4"),ZP=new ls("ivec4"),JP=new ls("uvec4"),eL=new ls("bvec4"),Ly=new ls("mat2"),ha=new ls("mat3"),nA=new ls("mat4"),oJ=(i="")=>gt(new Ll(i,"string")),lJ=i=>gt(new Ll(i,"ArrayBuffer"));lt("toColor",XP);lt("toFloat",ve);lt("toInt",Me);lt("toUint",Zt);lt("toBool",Ic);lt("toVec2",Et);lt("toIVec2",ms);lt("toUVec2",YP);lt("toBVec2",QP);lt("toVec3",Ue);lt("toIVec3",KP);lt("toUVec3",Y0);lt("toBVec3",LM);lt("toVec4",dn);lt("toIVec4",ZP);lt("toUVec4",JP);lt("toBVec4",eL);lt("toMat2",Ly);lt("toMat3",ha);lt("toMat4",nA);const tL=ut(vA),nL=(i,e)=>gt(new qP(gt(i),e)),uJ=(i,e)=>gt(new zT(gt(i),e));lt("element",tL);lt("convert",nL);class iL extends Mn{static get type(){return"UniformGroupNode"}constructor(e,t=!1,n=1){super("string"),this.name=e,this.shared=t,this.order=n,this.isUniformGroup=!0}serialize(e){super.serialize(e),e.name=this.name,e.version=this.version,e.shared=this.shared}deserialize(e){super.deserialize(e),this.name=e.name,this.version=e.version,this.shared=e.shared}}const rL=i=>new iL(i),UM=(i,e=0)=>new iL(i,!0,e),sL=UM("frame"),Rn=UM("render"),BM=rL("object");class Hg extends CM{static get type(){return"UniformNode"}constructor(e,t=null){super(e,t),this.isUniformNode=!0,this.name="",this.groupNode=BM}label(e){return this.name=e,this}setGroup(e){return this.groupNode=e,this}getGroup(){return this.groupNode}getUniformHash(e){return this.getHash(e)}onUpdate(e,t){const n=this.getSelf();return e=e.bind(n),super.onUpdate(r=>{const s=e(r,n);s!==void 0&&(this.value=s)},t)}generate(e,t){const n=this.getNodeType(e),r=this.getUniformHash(e);let s=e.getNodeFromHash(r);s===void 0&&(e.setHashNode(this,r),s=this);const a=s.getInputType(e),l=e.getUniformFromNode(s,a,e.shaderStage,this.name||e.context.label),u=e.getPropertyName(l);return e.context.label!==void 0&&delete e.context.label,e.format(u,n,t)}}const gn=(i,e)=>{const t=WP(e||i),n=i&&i.isNode===!0?i.node&&i.node.value||i.value:i;return gt(new Hg(n,t))};class Gi extends Mn{static get type(){return"PropertyNode"}constructor(e,t=null,n=!1){super(e),this.name=t,this.varying=n,this.isPropertyNode=!0}getHash(e){return this.name||super.getHash(e)}isGlobal(){return!0}generate(e){let t;return this.varying===!0?(t=e.getVaryingFromNode(this,this.name),t.needsInterpolation=!0):t=e.getVarFromNode(this,this.name),e.getPropertyName(t)}}const aL=(i,e)=>gt(new Gi(i,e)),Sg=(i,e)=>gt(new Gi(i,e,!0)),Ui=Vt(Gi,"vec4","DiffuseColor"),qT=Vt(Gi,"vec3","EmissiveColor"),Zl=Vt(Gi,"float","Roughness"),Tg=Vt(Gi,"float","Metalness"),X_=Vt(Gi,"float","Clearcoat"),wg=Vt(Gi,"float","ClearcoatRoughness"),Xf=Vt(Gi,"vec3","Sheen"),Uy=Vt(Gi,"float","SheenRoughness"),By=Vt(Gi,"float","Iridescence"),OM=Vt(Gi,"float","IridescenceIOR"),IM=Vt(Gi,"float","IridescenceThickness"),Y_=Vt(Gi,"float","AlphaT"),Rh=Vt(Gi,"float","Anisotropy"),Bm=Vt(Gi,"vec3","AnisotropyT"),iA=Vt(Gi,"vec3","AnisotropyB"),ka=Vt(Gi,"color","SpecularColor"),Mg=Vt(Gi,"float","SpecularF90"),Q_=Vt(Gi,"float","Shininess"),Eg=Vt(Gi,"vec4","Output"),Qv=Vt(Gi,"float","dashSize"),VT=Vt(Gi,"float","gapSize"),cJ=Vt(Gi,"float","pointWidth"),Om=Vt(Gi,"float","IOR"),K_=Vt(Gi,"float","Transmission"),FM=Vt(Gi,"float","Thickness"),kM=Vt(Gi,"float","AttenuationDistance"),zM=Vt(Gi,"color","AttenuationColor"),GM=Vt(Gi,"float","Dispersion");class hJ extends Zr{static get type(){return"AssignNode"}constructor(e,t){super(),this.targetNode=e,this.sourceNode=t}hasDependencies(){return!1}getNodeType(e,t){return t!=="void"?this.targetNode.getNodeType(e):"void"}needsSplitAssign(e){const{targetNode:t}=this;if(e.isAvailable("swizzleAssign")===!1&&t.isSplitNode&&t.components.length>1){const n=e.getTypeLength(t.node.getNodeType(e));return gA.join("").slice(0,n)!==t.components}return!1}generate(e,t){const{targetNode:n,sourceNode:r}=this,s=this.needsSplitAssign(e),a=n.getNodeType(e),l=n.context({assign:!0}).build(e),u=r.build(e,a),h=r.getNodeType(e),m=e.getDataFromNode(this);let v;if(m.initialized===!0)t!=="void"&&(v=l);else if(s){const x=e.getVarFromNode(this,null,a),S=e.getPropertyName(x);e.addLineFlowCode(`${S} = ${u}`,this);const w=n.node.context({assign:!0}).build(e);for(let R=0;R{const m=h.type,v=m==="pointer";let x;return v?x="&"+u.build(e):x=u.build(e,m),x};if(Array.isArray(s))for(let u=0;u(e=e.length>1||e[0]&&e[0].isNode===!0?tA(e):Vg(e[0]),gt(new fJ(gt(i),e)));lt("call",lL);class Mr extends Zr{static get type(){return"OperatorNode"}constructor(e,t,n,...r){if(super(),r.length>0){let s=new Mr(e,t,n);for(let a=0;a>"||n==="<<")return e.getIntegerType(a);if(n==="!"||n==="=="||n==="&&"||n==="||"||n==="^^")return"bool";if(n==="<"||n===">"||n==="<="||n===">="){const u=t?e.getTypeLength(t):Math.max(e.getTypeLength(a),e.getTypeLength(l));return u>1?`bvec${u}`:"bool"}else return a==="float"&&e.isMatrix(l)?l:e.isMatrix(a)&&e.isVector(l)?e.getVectorFromMatrix(a):e.isVector(a)&&e.isMatrix(l)?e.getVectorFromMatrix(l):e.getTypeLength(l)>e.getTypeLength(a)?l:a}generate(e,t){const n=this.op,r=this.aNode,s=this.bNode,a=this.getNodeType(e,t);let l=null,u=null;a!=="void"?(l=r.getNodeType(e),u=typeof s<"u"?s.getNodeType(e):null,n==="<"||n===">"||n==="<="||n===">="||n==="=="?e.isVector(l)?u=l:l!==u&&(l=u="float"):n===">>"||n==="<<"?(l=a,u=e.changeComponentType(u,"uint")):e.isMatrix(l)&&e.isVector(u)?u=e.getVectorFromMatrix(l):e.isVector(l)&&e.isMatrix(u)?l=e.getVectorFromMatrix(u):l=u=a):l=u=a;const h=r.build(e,l),m=typeof s<"u"?s.build(e,u):null,v=e.getTypeLength(t),x=e.getFunctionOperator(n);if(t!=="void")return n==="<"&&v>1?e.useComparisonMethod?e.format(`${e.getMethod("lessThan",t)}( ${h}, ${m} )`,a,t):e.format(`( ${h} < ${m} )`,a,t):n==="<="&&v>1?e.useComparisonMethod?e.format(`${e.getMethod("lessThanEqual",t)}( ${h}, ${m} )`,a,t):e.format(`( ${h} <= ${m} )`,a,t):n===">"&&v>1?e.useComparisonMethod?e.format(`${e.getMethod("greaterThan",t)}( ${h}, ${m} )`,a,t):e.format(`( ${h} > ${m} )`,a,t):n===">="&&v>1?e.useComparisonMethod?e.format(`${e.getMethod("greaterThanEqual",t)}( ${h}, ${m} )`,a,t):e.format(`( ${h} >= ${m} )`,a,t):n==="!"||n==="~"?e.format(`(${n}${h})`,l,t):x?e.format(`${x}( ${h}, ${m} )`,a,t):e.format(`( ${h} ${n} ${m} )`,a,t);if(l!=="void")return x?e.format(`${x}( ${h}, ${m} )`,a,t):e.format(`${h} ${n} ${m}`,a,t)}serialize(e){super.serialize(e),e.op=this.op}deserialize(e){super.deserialize(e),this.op=e.op}}const Qr=ut(Mr,"+"),wi=ut(Mr,"-"),Wn=ut(Mr,"*"),Dl=ut(Mr,"/"),qM=ut(Mr,"%"),uL=ut(Mr,"=="),cL=ut(Mr,"!="),hL=ut(Mr,"<"),VM=ut(Mr,">"),fL=ut(Mr,"<="),AL=ut(Mr,">="),dL=ut(Mr,"&&"),pL=ut(Mr,"||"),mL=ut(Mr,"!"),gL=ut(Mr,"^^"),vL=ut(Mr,"&"),_L=ut(Mr,"~"),yL=ut(Mr,"|"),xL=ut(Mr,"^"),bL=ut(Mr,"<<"),SL=ut(Mr,">>");lt("add",Qr);lt("sub",wi);lt("mul",Wn);lt("div",Dl);lt("modInt",qM);lt("equal",uL);lt("notEqual",cL);lt("lessThan",hL);lt("greaterThan",VM);lt("lessThanEqual",fL);lt("greaterThanEqual",AL);lt("and",dL);lt("or",pL);lt("not",mL);lt("xor",gL);lt("bitAnd",vL);lt("bitNot",_L);lt("bitOr",yL);lt("bitXor",xL);lt("shiftLeft",bL);lt("shiftRight",SL);const TL=(...i)=>(console.warn("TSL.OperatorNode: .remainder() has been renamed to .modInt()."),qM(...i));lt("remainder",TL);class We extends Zr{static get type(){return"MathNode"}constructor(e,t,n=null,r=null){super(),this.method=e,this.aNode=t,this.bNode=n,this.cNode=r}getInputType(e){const t=this.aNode.getNodeType(e),n=this.bNode?this.bNode.getNodeType(e):null,r=this.cNode?this.cNode.getNodeType(e):null,s=e.isMatrix(t)?0:e.getTypeLength(t),a=e.isMatrix(n)?0:e.getTypeLength(n),l=e.isMatrix(r)?0:e.getTypeLength(r);return s>a&&s>l?t:a>l?n:l>s?r:t}getNodeType(e){const t=this.method;return t===We.LENGTH||t===We.DISTANCE||t===We.DOT?"float":t===We.CROSS?"vec3":t===We.ALL?"bool":t===We.EQUALS?e.changeComponentType(this.aNode.getNodeType(e),"bool"):t===We.MOD?this.aNode.getNodeType(e):this.getInputType(e)}generate(e,t){let n=this.method;const r=this.getNodeType(e),s=this.getInputType(e),a=this.aNode,l=this.bNode,u=this.cNode,h=e.renderer.coordinateSystem;if(n===We.TRANSFORM_DIRECTION){let m=a,v=l;e.isMatrix(m.getNodeType(e))?v=dn(Ue(v),0):m=dn(Ue(m),0);const x=Wn(m,v).xyz;return Fc(x).build(e,t)}else{if(n===We.NEGATE)return e.format("( - "+a.build(e,s)+" )",r,t);if(n===We.ONE_MINUS)return wi(1,a).build(e,t);if(n===We.RECIPROCAL)return Dl(1,a).build(e,t);if(n===We.DIFFERENCE)return ur(wi(a,l)).build(e,t);{const m=[];return n===We.CROSS||n===We.MOD?m.push(a.build(e,r),l.build(e,r)):h===Ha&&n===We.STEP?m.push(a.build(e,e.getTypeLength(a.getNodeType(e))===1?"float":s),l.build(e,s)):h===Ha&&(n===We.MIN||n===We.MAX)||n===We.MOD?m.push(a.build(e,s),l.build(e,e.getTypeLength(l.getNodeType(e))===1?"float":s)):n===We.REFRACT?m.push(a.build(e,s),l.build(e,s),u.build(e,"float")):n===We.MIX?m.push(a.build(e,s),l.build(e,s),u.build(e,e.getTypeLength(u.getNodeType(e))===1?"float":s)):(h===pu&&n===We.ATAN&&l!==null&&(n="atan2"),m.push(a.build(e,s)),l!==null&&m.push(l.build(e,s)),u!==null&&m.push(u.build(e,s))),e.format(`${e.getMethod(n,r)}( ${m.join(", ")} )`,r,t)}}}serialize(e){super.serialize(e),e.method=this.method}deserialize(e){super.deserialize(e),this.method=e.method}}We.ALL="all";We.ANY="any";We.RADIANS="radians";We.DEGREES="degrees";We.EXP="exp";We.EXP2="exp2";We.LOG="log";We.LOG2="log2";We.SQRT="sqrt";We.INVERSE_SQRT="inversesqrt";We.FLOOR="floor";We.CEIL="ceil";We.NORMALIZE="normalize";We.FRACT="fract";We.SIN="sin";We.COS="cos";We.TAN="tan";We.ASIN="asin";We.ACOS="acos";We.ATAN="atan";We.ABS="abs";We.SIGN="sign";We.LENGTH="length";We.NEGATE="negate";We.ONE_MINUS="oneMinus";We.DFDX="dFdx";We.DFDY="dFdy";We.ROUND="round";We.RECIPROCAL="reciprocal";We.TRUNC="trunc";We.FWIDTH="fwidth";We.TRANSPOSE="transpose";We.BITCAST="bitcast";We.EQUALS="equals";We.MIN="min";We.MAX="max";We.MOD="mod";We.STEP="step";We.REFLECT="reflect";We.DISTANCE="distance";We.DIFFERENCE="difference";We.DOT="dot";We.CROSS="cross";We.POW="pow";We.TRANSFORM_DIRECTION="transformDirection";We.MIX="mix";We.CLAMP="clamp";We.REFRACT="refract";We.SMOOTHSTEP="smoothstep";We.FACEFORWARD="faceforward";const wL=ve(1e-6),AJ=ve(1e6),Z_=ve(Math.PI),dJ=ve(Math.PI*2),HM=ut(We,We.ALL),ML=ut(We,We.ANY),EL=ut(We,We.RADIANS),CL=ut(We,We.DEGREES),jM=ut(We,We.EXP),O0=ut(We,We.EXP2),Oy=ut(We,We.LOG),cu=ut(We,We.LOG2),Cu=ut(We,We.SQRT),WM=ut(We,We.INVERSE_SQRT),hu=ut(We,We.FLOOR),Iy=ut(We,We.CEIL),Fc=ut(We,We.NORMALIZE),Hc=ut(We,We.FRACT),Mo=ut(We,We.SIN),yc=ut(We,We.COS),RL=ut(We,We.TAN),NL=ut(We,We.ASIN),DL=ut(We,We.ACOS),$M=ut(We,We.ATAN),ur=ut(We,We.ABS),Cg=ut(We,We.SIGN),Rc=ut(We,We.LENGTH),PL=ut(We,We.NEGATE),LL=ut(We,We.ONE_MINUS),XM=ut(We,We.DFDX),YM=ut(We,We.DFDY),UL=ut(We,We.ROUND),BL=ut(We,We.RECIPROCAL),QM=ut(We,We.TRUNC),OL=ut(We,We.FWIDTH),IL=ut(We,We.TRANSPOSE),pJ=ut(We,We.BITCAST),FL=ut(We,We.EQUALS),to=ut(We,We.MIN),qr=ut(We,We.MAX),KM=ut(We,We.MOD),Fy=ut(We,We.STEP),kL=ut(We,We.REFLECT),zL=ut(We,We.DISTANCE),GL=ut(We,We.DIFFERENCE),Xh=ut(We,We.DOT),ky=ut(We,We.CROSS),Cl=ut(We,We.POW),ZM=ut(We,We.POW,2),qL=ut(We,We.POW,3),VL=ut(We,We.POW,4),HL=ut(We,We.TRANSFORM_DIRECTION),jL=i=>Wn(Cg(i),Cl(ur(i),1/3)),WL=i=>Xh(i,i),Fi=ut(We,We.MIX),vu=(i,e=0,t=1)=>gt(new We(We.CLAMP,gt(i),gt(e),gt(t))),$L=i=>vu(i),JM=ut(We,We.REFRACT),kc=ut(We,We.SMOOTHSTEP),eE=ut(We,We.FACEFORWARD),XL=$e(([i])=>{const n=43758.5453,r=Xh(i.xy,Et(12.9898,78.233)),s=KM(r,Z_);return Hc(Mo(s).mul(n))}),YL=(i,e,t)=>Fi(e,t,i),QL=(i,e,t)=>kc(e,t,i),KL=(i,e)=>(console.warn('THREE.TSL: "atan2" is overloaded. Use "atan" instead.'),$M(i,e)),mJ=eE,gJ=WM;lt("all",HM);lt("any",ML);lt("equals",FL);lt("radians",EL);lt("degrees",CL);lt("exp",jM);lt("exp2",O0);lt("log",Oy);lt("log2",cu);lt("sqrt",Cu);lt("inverseSqrt",WM);lt("floor",hu);lt("ceil",Iy);lt("normalize",Fc);lt("fract",Hc);lt("sin",Mo);lt("cos",yc);lt("tan",RL);lt("asin",NL);lt("acos",DL);lt("atan",$M);lt("abs",ur);lt("sign",Cg);lt("length",Rc);lt("lengthSq",WL);lt("negate",PL);lt("oneMinus",LL);lt("dFdx",XM);lt("dFdy",YM);lt("round",UL);lt("reciprocal",BL);lt("trunc",QM);lt("fwidth",OL);lt("atan2",KL);lt("min",to);lt("max",qr);lt("mod",KM);lt("step",Fy);lt("reflect",kL);lt("distance",zL);lt("dot",Xh);lt("cross",ky);lt("pow",Cl);lt("pow2",ZM);lt("pow3",qL);lt("pow4",VL);lt("transformDirection",HL);lt("mix",YL);lt("clamp",vu);lt("refract",JM);lt("smoothstep",QL);lt("faceForward",eE);lt("difference",GL);lt("saturate",$L);lt("cbrt",jL);lt("transpose",IL);lt("rand",XL);class vJ extends Mn{static get type(){return"ConditionalNode"}constructor(e,t,n=null){super(),this.condNode=e,this.ifNode=t,this.elseNode=n}getNodeType(e){const{ifNode:t,elseNode:n}=e.getNodeProperties(this);if(t===void 0)return this.setup(e),this.getNodeType(e);const r=t.getNodeType(e);if(n!==null){const s=n.getNodeType(e);if(e.getTypeLength(s)>e.getTypeLength(r))return s}return r}setup(e){const t=this.condNode.cache(),n=this.ifNode.cache(),r=this.elseNode?this.elseNode.cache():null,s=e.context.nodeBlock;e.getDataFromNode(n).parentNodeBlock=s,r!==null&&(e.getDataFromNode(r).parentNodeBlock=s);const a=e.getNodeProperties(this);a.condNode=t,a.ifNode=n.context({nodeBlock:n}),a.elseNode=r?r.context({nodeBlock:r}):null}generate(e,t){const n=this.getNodeType(e),r=e.getDataFromNode(this);if(r.nodeProperty!==void 0)return r.nodeProperty;const{condNode:s,ifNode:a,elseNode:l}=e.getNodeProperties(this),u=t!=="void",h=u?aL(n).build(e):"";r.nodeProperty=h;const m=s.build(e,"bool");e.addFlowCode(` +${e.tab}if ( ${m} ) { + +`).addFlowTab();let v=a.build(e,n);if(v&&(u?v=h+" = "+v+";":v="return "+v+";"),e.removeFlowTab().addFlowCode(e.tab+" "+v+` + +`+e.tab+"}"),l!==null){e.addFlowCode(` else { + +`).addFlowTab();let x=l.build(e,n);x&&(u?x=h+" = "+x+";":x="return "+x+";"),e.removeFlowTab().addFlowCode(e.tab+" "+x+` + +`+e.tab+`} + +`)}else e.addFlowCode(` + +`);return e.format(h,n,t)}}const zs=ut(vJ);lt("select",zs);const ZL=(...i)=>(console.warn("TSL.ConditionalNode: cond() has been renamed to select()."),zs(...i));lt("cond",ZL);class JL extends Mn{static get type(){return"ContextNode"}constructor(e,t={}){super(),this.isContextNode=!0,this.node=e,this.value=t}getScope(){return this.node.getScope()}getNodeType(e){return this.node.getNodeType(e)}analyze(e){this.node.build(e)}setup(e){const t=e.getContext();e.setContext({...e.context,...this.value});const n=this.node.build(e);return e.setContext(t),n}generate(e,t){const n=e.getContext();e.setContext({...e.context,...this.value});const r=this.node.build(e,t);return e.setContext(n),r}}const zy=ut(JL),e9=(i,e)=>zy(i,{label:e});lt("context",zy);lt("label",e9);class Kv extends Mn{static get type(){return"VarNode"}constructor(e,t=null){super(),this.node=e,this.name=t,this.global=!0,this.isVarNode=!0}getHash(e){return this.name||super.getHash(e)}getNodeType(e){return this.node.getNodeType(e)}generate(e){const{node:t,name:n}=this,r=e.getVarFromNode(this,n,e.getVectorType(this.getNodeType(e))),s=e.getPropertyName(r),a=t.build(e,r.type);return e.addLineFlowCode(`${s} = ${a}`,this),s}}const t9=ut(Kv);lt("toVar",(...i)=>t9(...i).append());const n9=i=>(console.warn('TSL: "temp" is deprecated. Use ".toVar()" instead.'),t9(i));lt("temp",n9);class _J extends Mn{static get type(){return"VaryingNode"}constructor(e,t=null){super(),this.node=e,this.name=t,this.isVaryingNode=!0}isGlobal(){return!0}getHash(e){return this.name||super.getHash(e)}getNodeType(e){return this.node.getNodeType(e)}setupVarying(e){const t=e.getNodeProperties(this);let n=t.varying;if(n===void 0){const r=this.name,s=this.getNodeType(e);t.varying=n=e.getVaryingFromNode(this,r,s),t.node=this.node}return n.needsInterpolation||(n.needsInterpolation=e.shaderStage==="fragment"),n}setup(e){this.setupVarying(e)}analyze(e){return this.setupVarying(e),this.node.analyze(e)}generate(e){const t=e.getNodeProperties(this),n=this.setupVarying(e),r=e.shaderStage==="fragment"&&t.reassignPosition===!0&&e.context.needsPositionReassign;if(t.propertyName===void 0||r){const s=this.getNodeType(e),a=e.getPropertyName(n,IT.VERTEX);e.flowNodeFromShaderStage(IT.VERTEX,this.node,s,a),t.propertyName=a,r?t.reassignPosition=!1:t.reassignPosition===void 0&&e.context.isPositionNodeInput&&(t.reassignPosition=!0)}return e.getPropertyName(n)}}const ro=ut(_J),i9=i=>ro(i);lt("varying",ro);lt("vertexStage",i9);const r9=$e(([i])=>{const e=i.mul(.9478672986).add(.0521327014).pow(2.4),t=i.mul(.0773993808),n=i.lessThanEqual(.04045);return Fi(e,t,n)}).setLayout({name:"sRGBTransferEOTF",type:"vec3",inputs:[{name:"color",type:"vec3"}]}),s9=$e(([i])=>{const e=i.pow(.41666).mul(1.055).sub(.055),t=i.mul(12.92),n=i.lessThanEqual(.0031308);return Fi(e,t,n)}).setLayout({name:"sRGBTransferOETF",type:"vec3",inputs:[{name:"color",type:"vec3"}]}),jg="WorkingColorSpace",tE="OutputColorSpace";class Wg extends Zr{static get type(){return"ColorSpaceNode"}constructor(e,t,n){super("vec4"),this.colorNode=e,this.source=t,this.target=n}resolveColorSpace(e,t){return t===jg?oi.workingColorSpace:t===tE?e.context.outputColorSpace||e.renderer.outputColorSpace:t}setup(e){const{colorNode:t}=this,n=this.resolveColorSpace(e,this.source),r=this.resolveColorSpace(e,this.target);let s=t;return oi.enabled===!1||n===r||!n||!r||(oi.getTransfer(n)===Vi&&(s=dn(r9(s.rgb),s.a)),oi.getPrimaries(n)!==oi.getPrimaries(r)&&(s=dn(ha(oi._getMatrix(new Vn,n,r)).mul(s.rgb),s.a)),oi.getTransfer(r)===Vi&&(s=dn(s9(s.rgb),s.a))),s}}const a9=i=>gt(new Wg(gt(i),jg,tE)),o9=i=>gt(new Wg(gt(i),tE,jg)),l9=(i,e)=>gt(new Wg(gt(i),jg,e)),nE=(i,e)=>gt(new Wg(gt(i),e,jg)),yJ=(i,e,t)=>gt(new Wg(gt(i),e,t));lt("toOutputColorSpace",a9);lt("toWorkingColorSpace",o9);lt("workingToColorSpace",l9);lt("colorSpaceToWorking",nE);let xJ=class extends vA{static get type(){return"ReferenceElementNode"}constructor(e,t){super(e,t),this.referenceNode=e,this.isReferenceElementNode=!0}getNodeType(){return this.referenceNode.uniformType}generate(e){const t=super.generate(e),n=this.referenceNode.getNodeType(),r=this.getNodeType();return e.format(t,n,r)}};class u9 extends Mn{static get type(){return"ReferenceBaseNode"}constructor(e,t,n=null,r=null){super(),this.property=e,this.uniformType=t,this.object=n,this.count=r,this.properties=e.split("."),this.reference=n,this.node=null,this.group=null,this.updateType=jn.OBJECT}setGroup(e){return this.group=e,this}element(e){return gt(new xJ(this,gt(e)))}setNodeType(e){const t=gn(null,e).getSelf();this.group!==null&&t.setGroup(this.group),this.node=t}getNodeType(e){return this.node===null&&(this.updateReference(e),this.updateValue()),this.node.getNodeType(e)}getValueFromReference(e=this.reference){const{properties:t}=this;let n=e[t[0]];for(let r=1;rgt(new u9(i,e,t));class SJ extends u9{static get type(){return"RendererReferenceNode"}constructor(e,t,n=null){super(e,t,n),this.renderer=n,this.setGroup(Rn)}updateReference(e){return this.reference=this.renderer!==null?this.renderer:e.renderer,this.reference}}const c9=(i,e,t=null)=>gt(new SJ(i,e,t));class TJ extends Zr{static get type(){return"ToneMappingNode"}constructor(e,t=f9,n=null){super("vec3"),this.toneMapping=e,this.exposureNode=t,this.colorNode=n}customCacheKey(){return EM(this.toneMapping)}setup(e){const t=this.colorNode||e.context.color,n=this.toneMapping;if(n===Za)return t;let r=null;const s=e.renderer.library.getToneMappingFunction(n);return s!==null?r=dn(s(t.rgb,this.exposureNode),t.a):(console.error("ToneMappingNode: Unsupported Tone Mapping configuration.",n),r=t),r}}const h9=(i,e,t)=>gt(new TJ(i,gt(e),gt(t))),f9=c9("toneMappingExposure","float");lt("toneMapping",(i,e,t)=>h9(e,t,i));class wJ extends CM{static get type(){return"BufferAttributeNode"}constructor(e,t=null,n=0,r=0){super(e,t),this.isBufferNode=!0,this.bufferType=t,this.bufferStride=n,this.bufferOffset=r,this.usage=o_,this.instanced=!1,this.attribute=null,this.global=!0,e&&e.isBufferAttribute===!0&&(this.attribute=e,this.usage=e.usage,this.instanced=e.isInstancedBufferAttribute)}getHash(e){if(this.bufferStride===0&&this.bufferOffset===0){let t=e.globalCache.getData(this.value);return t===void 0&&(t={node:this},e.globalCache.setData(this.value,t)),t.node.uuid}return this.uuid}getNodeType(e){return this.bufferType===null&&(this.bufferType=e.getTypeFromAttribute(this.attribute)),this.bufferType}setup(e){if(this.attribute!==null)return;const t=this.getNodeType(e),n=this.value,r=e.getTypeLength(t),s=this.bufferStride||r,a=this.bufferOffset,l=n.isInterleavedBuffer===!0?n:new Qw(n,s),u=new nu(l,r,a);l.setUsage(this.usage),this.attribute=u,this.attribute.isInstancedBufferAttribute=this.instanced}generate(e){const t=this.getNodeType(e),n=e.getBufferAttributeFromNode(this,t),r=e.getPropertyName(n);let s=null;return e.shaderStage==="vertex"||e.shaderStage==="compute"?(this.name=r,s=r):s=ro(this).build(e,t),s}getInputType(){return"bufferAttribute"}setUsage(e){return this.usage=e,this.attribute&&this.attribute.isBufferAttribute===!0&&(this.attribute.usage=e),this}setInstanced(e){return this.instanced=e,this}}const $g=(i,e=null,t=0,n=0)=>gt(new wJ(i,e,t,n)),A9=(i,e=null,t=0,n=0)=>$g(i,e,t,n).setUsage(qd),J_=(i,e=null,t=0,n=0)=>$g(i,e,t,n).setInstanced(!0),HT=(i,e=null,t=0,n=0)=>A9(i,e,t,n).setInstanced(!0);lt("toAttribute",i=>$g(i.value));class MJ extends Mn{static get type(){return"ComputeNode"}constructor(e,t,n=[64]){super("void"),this.isComputeNode=!0,this.computeNode=e,this.count=t,this.workgroupSize=n,this.dispatchCount=0,this.version=1,this.name="",this.updateBeforeType=jn.OBJECT,this.onInitFunction=null,this.updateDispatchCount()}dispose(){this.dispatchEvent({type:"dispose"})}label(e){return this.name=e,this}updateDispatchCount(){const{count:e,workgroupSize:t}=this;let n=t[0];for(let r=1;rgt(new MJ(gt(i),e,t));lt("compute",d9);class EJ extends Mn{static get type(){return"CacheNode"}constructor(e,t=!0){super(),this.node=e,this.parent=t,this.isCacheNode=!0}getNodeType(e){const t=e.getCache(),n=e.getCacheFromNode(this,this.parent);e.setCache(n);const r=this.node.getNodeType(e);return e.setCache(t),r}build(e,...t){const n=e.getCache(),r=e.getCacheFromNode(this,this.parent);e.setCache(r);const s=this.node.build(e,...t);return e.setCache(n),s}}const Im=(i,e)=>gt(new EJ(gt(i),e));lt("cache",Im);class CJ extends Mn{static get type(){return"BypassNode"}constructor(e,t){super(),this.isBypassNode=!0,this.outputNode=e,this.callNode=t}getNodeType(e){return this.outputNode.getNodeType(e)}generate(e){const t=this.callNode.build(e,"void");return t!==""&&e.addLineFlowCode(t,this),this.outputNode.build(e)}}const p9=ut(CJ);lt("bypass",p9);class m9 extends Mn{static get type(){return"RemapNode"}constructor(e,t,n,r=ve(0),s=ve(1)){super(),this.node=e,this.inLowNode=t,this.inHighNode=n,this.outLowNode=r,this.outHighNode=s,this.doClamp=!0}setup(){const{node:e,inLowNode:t,inHighNode:n,outLowNode:r,outHighNode:s,doClamp:a}=this;let l=e.sub(t).div(n.sub(t));return a===!0&&(l=l.clamp()),l.mul(s.sub(r)).add(r)}}const g9=ut(m9,null,null,{doClamp:!1}),v9=ut(m9);lt("remap",g9);lt("remapClamp",v9);class Zv extends Mn{static get type(){return"ExpressionNode"}constructor(e="",t="void"){super(t),this.snippet=e}generate(e,t){const n=this.getNodeType(e),r=this.snippet;if(n==="void")e.addLineFlowCode(r,this);else return e.format(`( ${r} )`,n,t)}}const Hh=ut(Zv),_9=i=>(i?zs(i,Hh("discard")):Hh("discard")).append(),RJ=()=>Hh("return").append();lt("discard",_9);class NJ extends Zr{static get type(){return"RenderOutputNode"}constructor(e,t,n){super("vec4"),this.colorNode=e,this.toneMapping=t,this.outputColorSpace=n,this.isRenderOutputNode=!0}setup({context:e}){let t=this.colorNode||e.color;const n=(this.toneMapping!==null?this.toneMapping:e.toneMapping)||Za,r=(this.outputColorSpace!==null?this.outputColorSpace:e.outputColorSpace)||Co;return n!==Za&&(t=t.toneMapping(n)),r!==Co&&r!==oi.workingColorSpace&&(t=t.workingToColorSpace(r)),t}}const y9=(i,e=null,t=null)=>gt(new NJ(gt(i),e,t));lt("renderOutput",y9);function DJ(i){console.warn("THREE.TSLBase: AddNodeElement has been removed in favor of tree-shaking. Trying add",i)}class x9 extends Mn{static get type(){return"AttributeNode"}constructor(e,t=null){super(t),this.global=!0,this._attributeName=e}getHash(e){return this.getAttributeName(e)}getNodeType(e){let t=this.nodeType;if(t===null){const n=this.getAttributeName(e);if(e.hasGeometryAttribute(n)){const r=e.geometry.getAttribute(n);t=e.getTypeFromAttribute(r)}else t="float"}return t}setAttributeName(e){return this._attributeName=e,this}getAttributeName(){return this._attributeName}generate(e){const t=this.getAttributeName(e),n=this.getNodeType(e);if(e.hasGeometryAttribute(t)===!0){const s=e.geometry.getAttribute(t),a=e.getTypeFromAttribute(s),l=e.getAttribute(t,a);return e.shaderStage==="vertex"?e.format(l.name,a,n):ro(this).build(e,n)}else return console.warn(`AttributeNode: Vertex attribute "${t}" not found on geometry.`),e.generateConst(n)}serialize(e){super.serialize(e),e.global=this.global,e._attributeName=this._attributeName}deserialize(e){super.deserialize(e),this.global=e.global,this._attributeName=e._attributeName}}const _u=(i,e)=>gt(new x9(i,e)),Er=(i=0)=>_u("uv"+(i>0?i:""),"vec2");class PJ extends Mn{static get type(){return"TextureSizeNode"}constructor(e,t=null){super("uvec2"),this.isTextureSizeNode=!0,this.textureNode=e,this.levelNode=t}generate(e,t){const n=this.textureNode.build(e,"property"),r=this.levelNode===null?"0":this.levelNode.build(e,"int");return e.format(`${e.getMethod("textureDimensions")}( ${n}, ${r} )`,this.getNodeType(e),t)}}const Fh=ut(PJ);class LJ extends Hg{static get type(){return"MaxMipLevelNode"}constructor(e){super(0),this._textureNode=e,this.updateType=jn.FRAME}get textureNode(){return this._textureNode}get texture(){return this._textureNode.value}update(){const e=this.texture,t=e.images,n=t&&t.length>0?t[0]&&t[0].image||t[0]:e.image;if(n&&n.width!==void 0){const{width:r,height:s}=n;this.value=Math.log2(Math.max(r,s))}}}const b9=ut(LJ);class yu extends Hg{static get type(){return"TextureNode"}constructor(e,t=null,n=null,r=null){super(e),this.isTextureNode=!0,this.uvNode=t,this.levelNode=n,this.biasNode=r,this.compareNode=null,this.depthNode=null,this.gradNode=null,this.sampler=!0,this.updateMatrix=!1,this.updateType=jn.NONE,this.referenceNode=null,this._value=e,this._matrixUniform=null,this.setUpdateMatrix(t===null)}set value(e){this.referenceNode?this.referenceNode.value=e:this._value=e}get value(){return this.referenceNode?this.referenceNode.value:this._value}getUniformHash(){return this.value.uuid}getNodeType(){return this.value.isDepthTexture===!0?"float":this.value.type===Rr?"uvec4":this.value.type===Ns?"ivec4":"vec4"}getInputType(){return"texture"}getDefaultUV(){return Er(this.value.channel)}updateReference(){return this.value}getTransformedUV(e){return this._matrixUniform===null&&(this._matrixUniform=gn(this.value.matrix)),this._matrixUniform.mul(Ue(e,1)).xy}setUpdateMatrix(e){return this.updateMatrix=e,this.updateType=e?jn.RENDER:jn.NONE,this}setupUV(e,t){const n=this.value;return e.isFlipY()&&(n.image instanceof ImageBitmap&&n.flipY===!0||n.isRenderTargetTexture===!0||n.isFramebufferTexture===!0||n.isDepthTexture===!0)&&(this.sampler?t=t.flipY():t=t.setY(Me(Fh(this,this.levelNode).y).sub(t.y).sub(1))),t}setup(e){const t=e.getNodeProperties(this);t.referenceNode=this.referenceNode;const n=this.value;if(!n||n.isTexture!==!0)throw new Error("THREE.TSL: `texture( value )` function expects a valid instance of THREE.Texture().");let r=this.uvNode;(r===null||e.context.forceUVContext===!0)&&e.context.getUV&&(r=e.context.getUV(this)),r||(r=this.getDefaultUV()),this.updateMatrix===!0&&(r=this.getTransformedUV(r)),r=this.setupUV(e,r);let s=this.levelNode;s===null&&e.context.getTextureLevel&&(s=e.context.getTextureLevel(this)),t.uvNode=r,t.levelNode=s,t.biasNode=this.biasNode,t.compareNode=this.compareNode,t.gradNode=this.gradNode,t.depthNode=this.depthNode}generateUV(e,t){return t.build(e,this.sampler===!0?"vec2":"ivec2")}generateSnippet(e,t,n,r,s,a,l,u){const h=this.value;let m;return r?m=e.generateTextureLevel(h,t,n,r,a):s?m=e.generateTextureBias(h,t,n,s,a):u?m=e.generateTextureGrad(h,t,n,u,a):l?m=e.generateTextureCompare(h,t,n,l,a):this.sampler===!1?m=e.generateTextureLoad(h,t,n,a):m=e.generateTexture(h,t,n,a),m}generate(e,t){const n=this.value,r=e.getNodeProperties(this),s=super.generate(e,"property");if(t==="sampler")return s+"_sampler";if(e.isReference(t))return s;{const a=e.getDataFromNode(this);let l=a.propertyName;if(l===void 0){const{uvNode:m,levelNode:v,biasNode:x,compareNode:S,depthNode:w,gradNode:R}=r,C=this.generateUV(e,m),E=v?v.build(e,"float"):null,B=x?x.build(e,"float"):null,L=w?w.build(e,"int"):null,O=S?S.build(e,"float"):null,G=R?[R[0].build(e,"vec2"),R[1].build(e,"vec2")]:null,q=e.getVarFromNode(this);l=e.getPropertyName(q);const z=this.generateSnippet(e,s,C,E,B,L,O,G);e.addLineFlowCode(`${l} = ${z}`,this),a.snippet=z,a.propertyName=l}let u=l;const h=this.getNodeType(e);return e.needsToWorkingColorSpace(n)&&(u=nE(Hh(u,h),n.colorSpace).setup(e).build(e,h)),e.format(u,h,t)}}setSampler(e){return this.sampler=e,this}getSampler(){return this.sampler}uv(e){return console.warn("THREE.TextureNode: .uv() has been renamed. Use .sample() instead."),this.sample(e)}sample(e){const t=this.clone();return t.uvNode=gt(e),t.referenceNode=this.getSelf(),gt(t)}blur(e){const t=this.clone();return t.biasNode=gt(e).mul(b9(t)),t.referenceNode=this.getSelf(),gt(t)}level(e){const t=this.clone();return t.levelNode=gt(e),t.referenceNode=this.getSelf(),gt(t)}size(e){return Fh(this,e)}bias(e){const t=this.clone();return t.biasNode=gt(e),t.referenceNode=this.getSelf(),gt(t)}compare(e){const t=this.clone();return t.compareNode=gt(e),t.referenceNode=this.getSelf(),gt(t)}grad(e,t){const n=this.clone();return n.gradNode=[gt(e),gt(t)],n.referenceNode=this.getSelf(),gt(n)}depth(e){const t=this.clone();return t.depthNode=gt(e),t.referenceNode=this.getSelf(),gt(t)}serialize(e){super.serialize(e),e.value=this.value.toJSON(e.meta).uuid,e.sampler=this.sampler,e.updateMatrix=this.updateMatrix,e.updateType=this.updateType}deserialize(e){super.deserialize(e),this.value=e.meta.textures[e.value],this.sampler=e.sampler,this.updateMatrix=e.updateMatrix,this.updateType=e.updateType}update(){const e=this.value,t=this._matrixUniform;t!==null&&(t.value=e.matrix),e.matrixAutoUpdate===!0&&e.updateMatrix()}clone(){const e=new this.constructor(this.value,this.uvNode,this.levelNode,this.biasNode);return e.sampler=this.sampler,e}}const di=ut(yu),Fr=(...i)=>di(...i).setSampler(!1),UJ=i=>(i.isNode===!0?i:di(i)).convert("sampler"),Dh=gn("float").label("cameraNear").setGroup(Rn).onRenderUpdate(({camera:i})=>i.near),Ph=gn("float").label("cameraFar").setGroup(Rn).onRenderUpdate(({camera:i})=>i.far),_A=gn("mat4").label("cameraProjectionMatrix").setGroup(Rn).onRenderUpdate(({camera:i})=>i.projectionMatrix),BJ=gn("mat4").label("cameraProjectionMatrixInverse").setGroup(Rn).onRenderUpdate(({camera:i})=>i.projectionMatrixInverse),so=gn("mat4").label("cameraViewMatrix").setGroup(Rn).onRenderUpdate(({camera:i})=>i.matrixWorldInverse),OJ=gn("mat4").label("cameraWorldMatrix").setGroup(Rn).onRenderUpdate(({camera:i})=>i.matrixWorld),IJ=gn("mat3").label("cameraNormalMatrix").setGroup(Rn).onRenderUpdate(({camera:i})=>i.normalMatrix),S9=gn(new Ae).label("cameraPosition").setGroup(Rn).onRenderUpdate(({camera:i},e)=>e.value.setFromMatrixPosition(i.matrixWorld));class Li extends Mn{static get type(){return"Object3DNode"}constructor(e,t=null){super(),this.scope=e,this.object3d=t,this.updateType=jn.OBJECT,this._uniformNode=new Hg(null)}getNodeType(){const e=this.scope;if(e===Li.WORLD_MATRIX)return"mat4";if(e===Li.POSITION||e===Li.VIEW_POSITION||e===Li.DIRECTION||e===Li.SCALE)return"vec3"}update(e){const t=this.object3d,n=this._uniformNode,r=this.scope;if(r===Li.WORLD_MATRIX)n.value=t.matrixWorld;else if(r===Li.POSITION)n.value=n.value||new Ae,n.value.setFromMatrixPosition(t.matrixWorld);else if(r===Li.SCALE)n.value=n.value||new Ae,n.value.setFromMatrixScale(t.matrixWorld);else if(r===Li.DIRECTION)n.value=n.value||new Ae,t.getWorldDirection(n.value);else if(r===Li.VIEW_POSITION){const s=e.camera;n.value=n.value||new Ae,n.value.setFromMatrixPosition(t.matrixWorld),n.value.applyMatrix4(s.matrixWorldInverse)}}generate(e){const t=this.scope;return t===Li.WORLD_MATRIX?this._uniformNode.nodeType="mat4":(t===Li.POSITION||t===Li.VIEW_POSITION||t===Li.DIRECTION||t===Li.SCALE)&&(this._uniformNode.nodeType="vec3"),this._uniformNode.build(e)}serialize(e){super.serialize(e),e.scope=this.scope}deserialize(e){super.deserialize(e),this.scope=e.scope}}Li.WORLD_MATRIX="worldMatrix";Li.POSITION="position";Li.SCALE="scale";Li.VIEW_POSITION="viewPosition";Li.DIRECTION="direction";const FJ=ut(Li,Li.DIRECTION),kJ=ut(Li,Li.WORLD_MATRIX),T9=ut(Li,Li.POSITION),zJ=ut(Li,Li.SCALE),GJ=ut(Li,Li.VIEW_POSITION);class xu extends Li{static get type(){return"ModelNode"}constructor(e){super(e)}update(e){this.object3d=e.object,super.update(e)}}const qJ=Vt(xu,xu.DIRECTION),$o=Vt(xu,xu.WORLD_MATRIX),VJ=Vt(xu,xu.POSITION),HJ=Vt(xu,xu.SCALE),jJ=Vt(xu,xu.VIEW_POSITION),w9=gn(new Vn).onObjectUpdate(({object:i},e)=>e.value.getNormalMatrix(i.matrixWorld)),WJ=gn(new kn).onObjectUpdate(({object:i},e)=>e.value.copy(i.matrixWorld).invert()),Q0=$e(i=>i.renderer.nodes.modelViewMatrix||M9).once()().toVar("modelViewMatrix"),M9=so.mul($o),$J=$e(i=>(i.context.isHighPrecisionModelViewMatrix=!0,gn("mat4").onObjectUpdate(({object:e,camera:t})=>e.modelViewMatrix.multiplyMatrices(t.matrixWorldInverse,e.matrixWorld)))).once()().toVar("highpModelViewMatrix"),XJ=$e(i=>{const e=i.context.isHighPrecisionModelViewMatrix;return gn("mat3").onObjectUpdate(({object:t,camera:n})=>(e!==!0&&t.modelViewMatrix.multiplyMatrices(n.matrixWorldInverse,t.matrixWorld),t.normalMatrix.getNormalMatrix(t.modelViewMatrix)))}).once()().toVar("highpModelNormalViewMatrix"),Gy=_u("position","vec3"),Gr=Gy.varying("positionLocal"),ey=Gy.varying("positionPrevious"),Nc=$o.mul(Gr).xyz.varying("v_positionWorld").context({needsPositionReassign:!0}),iE=Gr.transformDirection($o).varying("v_positionWorldDirection").normalize().toVar("positionWorldDirection").context({needsPositionReassign:!0}),Xr=$e(i=>i.context.setupPositionView(),"vec3").once()().varying("v_positionView").context({needsPositionReassign:!0}),dr=Xr.negate().varying("v_positionViewDirection").normalize().toVar("positionViewDirection");class YJ extends Mn{static get type(){return"FrontFacingNode"}constructor(){super("bool"),this.isFrontFacingNode=!0}generate(e){const{renderer:t,material:n}=e;return t.coordinateSystem===Ha&&n.side===hr?"false":e.getFrontFacing()}}const E9=Vt(YJ),Xg=ve(E9).mul(2).sub(1),qy=_u("normal","vec3"),no=$e(i=>i.geometry.hasAttribute("normal")===!1?(console.warn('TSL.NormalNode: Vertex attribute "normal" not found on geometry.'),Ue(0,1,0)):qy,"vec3").once()().toVar("normalLocal"),C9=Xr.dFdx().cross(Xr.dFdy()).normalize().toVar("normalFlat"),Jo=$e(i=>{let e;return i.material.flatShading===!0?e=C9:e=ro(rE(no),"v_normalView").normalize(),e},"vec3").once()().toVar("normalView"),Vy=ro(Jo.transformDirection(so),"v_normalWorld").normalize().toVar("normalWorld"),zr=$e(i=>i.context.setupNormal(),"vec3").once()().mul(Xg).toVar("transformedNormalView"),Hy=zr.transformDirection(so).toVar("transformedNormalWorld"),Qd=$e(i=>i.context.setupClearcoatNormal(),"vec3").once()().mul(Xg).toVar("transformedClearcoatNormalView"),R9=$e(([i,e=$o])=>{const t=ha(e),n=i.div(Ue(t[0].dot(t[0]),t[1].dot(t[1]),t[2].dot(t[2])));return t.mul(n).xyz}),rE=$e(([i],e)=>{const t=e.renderer.nodes.modelNormalViewMatrix;if(t!==null)return t.transformDirection(i);const n=w9.mul(i);return so.transformDirection(n)}),N9=gn(0).onReference(({material:i})=>i).onRenderUpdate(({material:i})=>i.refractionRatio),D9=dr.negate().reflect(zr),P9=dr.negate().refract(zr,N9),L9=D9.transformDirection(so).toVar("reflectVector"),U9=P9.transformDirection(so).toVar("reflectVector");class QJ extends yu{static get type(){return"CubeTextureNode"}constructor(e,t=null,n=null,r=null){super(e,t,n,r),this.isCubeTextureNode=!0}getInputType(){return"cubeTexture"}getDefaultUV(){const e=this.value;return e.mapping===Qo?L9:e.mapping===Ko?U9:(console.error('THREE.CubeTextureNode: Mapping "%s" not supported.',e.mapping),Ue(0,0,0))}setUpdateMatrix(){}setupUV(e,t){const n=this.value;return e.renderer.coordinateSystem===pu||!n.isRenderTargetTexture?Ue(t.x.negate(),t.yz):t}generateUV(e,t){return t.build(e,"vec3")}}const I0=ut(QJ);class sE extends Hg{static get type(){return"BufferNode"}constructor(e,t,n=0){super(e,t),this.isBufferNode=!0,this.bufferType=t,this.bufferCount=n}getElementType(e){return this.getNodeType(e)}getInputType(){return"buffer"}}const Yg=(i,e,t)=>gt(new sE(i,e,t));class KJ extends vA{static get type(){return"UniformArrayElementNode"}constructor(e,t){super(e,t),this.isArrayBufferElementNode=!0}generate(e){const t=super.generate(e),n=this.getNodeType(),r=this.node.getPaddedType();return e.format(t,r,n)}}class B9 extends sE{static get type(){return"UniformArrayNode"}constructor(e,t=null){super(null),this.array=e,this.elementType=t===null?Uh(e[0]):t,this.paddedType=this.getPaddedType(),this.updateType=jn.RENDER,this.isArrayBufferNode=!0}getNodeType(){return this.paddedType}getElementType(){return this.elementType}getPaddedType(){const e=this.elementType;let t="vec4";return e==="mat2"?t="mat2":/mat/.test(e)===!0?t="mat4":e.charAt(0)==="i"?t="ivec4":e.charAt(0)==="u"&&(t="uvec4"),t}update(){const{array:e,value:t}=this,n=this.elementType;if(n==="float"||n==="int"||n==="uint")for(let r=0;rgt(new B9(i,e)),ZJ=(i,e)=>(console.warn("TSL.UniformArrayNode: uniforms() has been renamed to uniformArray()."),gt(new B9(i,e)));class JJ extends vA{static get type(){return"ReferenceElementNode"}constructor(e,t){super(e,t),this.referenceNode=e,this.isReferenceElementNode=!0}getNodeType(){return this.referenceNode.uniformType}generate(e){const t=super.generate(e),n=this.referenceNode.getNodeType(),r=this.getNodeType();return e.format(t,n,r)}}class jy extends Mn{static get type(){return"ReferenceNode"}constructor(e,t,n=null,r=null){super(),this.property=e,this.uniformType=t,this.object=n,this.count=r,this.properties=e.split("."),this.reference=n,this.node=null,this.group=null,this.name=null,this.updateType=jn.OBJECT}element(e){return gt(new JJ(this,gt(e)))}setGroup(e){return this.group=e,this}label(e){return this.name=e,this}setNodeType(e){let t=null;this.count!==null?t=Yg(null,e,this.count):Array.isArray(this.getValueFromReference())?t=Sc(null,e):e==="texture"?t=di(null):e==="cubeTexture"?t=I0(null):t=gn(null,e),this.group!==null&&t.setGroup(this.group),this.name!==null&&t.label(this.name),this.node=t.getSelf()}getNodeType(e){return this.node===null&&(this.updateReference(e),this.updateValue()),this.node.getNodeType(e)}getValueFromReference(e=this.reference){const{properties:t}=this;let n=e[t[0]];for(let r=1;rgt(new jy(i,e,t)),jT=(i,e,t,n)=>gt(new jy(i,e,n,t));class eee extends jy{static get type(){return"MaterialReferenceNode"}constructor(e,t,n=null){super(e,t,n),this.material=n,this.isMaterialReferenceNode=!0}updateReference(e){return this.reference=this.material!==null?this.material:e.material,this.reference}}const Tc=(i,e,t=null)=>gt(new eee(i,e,t)),Wy=$e(i=>(i.geometry.hasAttribute("tangent")===!1&&i.geometry.computeTangents(),_u("tangent","vec4")))(),Qg=Wy.xyz.toVar("tangentLocal"),Kg=Q0.mul(dn(Qg,0)).xyz.varying("v_tangentView").normalize().toVar("tangentView"),O9=Kg.transformDirection(so).varying("v_tangentWorld").normalize().toVar("tangentWorld"),aE=Kg.toVar("transformedTangentView"),tee=aE.transformDirection(so).normalize().toVar("transformedTangentWorld"),Zg=i=>i.mul(Wy.w).xyz,nee=ro(Zg(qy.cross(Wy)),"v_bitangentGeometry").normalize().toVar("bitangentGeometry"),iee=ro(Zg(no.cross(Qg)),"v_bitangentLocal").normalize().toVar("bitangentLocal"),I9=ro(Zg(Jo.cross(Kg)),"v_bitangentView").normalize().toVar("bitangentView"),ree=ro(Zg(Vy.cross(O9)),"v_bitangentWorld").normalize().toVar("bitangentWorld"),F9=Zg(zr.cross(aE)).normalize().toVar("transformedBitangentView"),see=F9.transformDirection(so).normalize().toVar("transformedBitangentWorld"),Yf=ha(Kg,I9,Jo),k9=dr.mul(Yf),aee=(i,e)=>i.sub(k9.mul(e)),z9=(()=>{let i=iA.cross(dr);return i=i.cross(iA).normalize(),i=Fi(i,zr,Rh.mul(Zl.oneMinus()).oneMinus().pow2().pow2()).normalize(),i})(),oee=$e(i=>{const{eye_pos:e,surf_norm:t,mapN:n,uv:r}=i,s=e.dFdx(),a=e.dFdy(),l=r.dFdx(),u=r.dFdy(),h=t,m=a.cross(h),v=h.cross(s),x=m.mul(l.x).add(v.mul(u.x)),S=m.mul(l.y).add(v.mul(u.y)),w=x.dot(x).max(S.dot(S)),R=Xg.mul(w.inverseSqrt());return Qr(x.mul(n.x,R),S.mul(n.y,R),h.mul(n.z)).normalize()});class lee extends Zr{static get type(){return"NormalMapNode"}constructor(e,t=null){super("vec3"),this.node=e,this.scaleNode=t,this.normalMapType=Dc}setup(e){const{normalMapType:t,scaleNode:n}=this;let r=this.node.mul(2).sub(1);n!==null&&(r=Ue(r.xy.mul(n),r.z));let s=null;return t===O7?s=rE(r):t===Dc&&(e.hasGeometryAttribute("tangent")===!0?s=Yf.mul(r).normalize():s=oee({eye_pos:Xr,surf_norm:Jo,mapN:r,uv:Er()})),s}}const WT=ut(lee),uee=$e(({textureNode:i,bumpScale:e})=>{const t=r=>i.cache().context({getUV:s=>r(s.uvNode||Er()),forceUVContext:!0}),n=ve(t(r=>r));return Et(ve(t(r=>r.add(r.dFdx()))).sub(n),ve(t(r=>r.add(r.dFdy()))).sub(n)).mul(e)}),cee=$e(i=>{const{surf_pos:e,surf_norm:t,dHdxy:n}=i,r=e.dFdx().normalize(),s=e.dFdy().normalize(),a=t,l=s.cross(a),u=a.cross(r),h=r.dot(l).mul(Xg),m=h.sign().mul(n.x.mul(l).add(n.y.mul(u)));return h.abs().mul(t).sub(m).normalize()});class hee extends Zr{static get type(){return"BumpMapNode"}constructor(e,t=null){super("vec3"),this.textureNode=e,this.scaleNode=t}setup(){const e=this.scaleNode!==null?this.scaleNode:1,t=uee({textureNode:this.textureNode,bumpScale:e});return cee({surf_pos:Xr,surf_norm:Jo,dHdxy:t})}}const G9=ut(hee),U6=new Map;class st extends Mn{static get type(){return"MaterialNode"}constructor(e){super(),this.scope=e}getCache(e,t){let n=U6.get(e);return n===void 0&&(n=Tc(e,t),U6.set(e,n)),n}getFloat(e){return this.getCache(e,"float")}getColor(e){return this.getCache(e,"color")}getTexture(e){return this.getCache(e==="map"?"map":e+"Map","texture")}setup(e){const t=e.context.material,n=this.scope;let r=null;if(n===st.COLOR){const s=t.color!==void 0?this.getColor(n):Ue();t.map&&t.map.isTexture===!0?r=s.mul(this.getTexture("map")):r=s}else if(n===st.OPACITY){const s=this.getFloat(n);t.alphaMap&&t.alphaMap.isTexture===!0?r=s.mul(this.getTexture("alpha")):r=s}else if(n===st.SPECULAR_STRENGTH)t.specularMap&&t.specularMap.isTexture===!0?r=this.getTexture("specular").r:r=ve(1);else if(n===st.SPECULAR_INTENSITY){const s=this.getFloat(n);t.specularIntensityMap&&t.specularIntensityMap.isTexture===!0?r=s.mul(this.getTexture(n).a):r=s}else if(n===st.SPECULAR_COLOR){const s=this.getColor(n);t.specularColorMap&&t.specularColorMap.isTexture===!0?r=s.mul(this.getTexture(n).rgb):r=s}else if(n===st.ROUGHNESS){const s=this.getFloat(n);t.roughnessMap&&t.roughnessMap.isTexture===!0?r=s.mul(this.getTexture(n).g):r=s}else if(n===st.METALNESS){const s=this.getFloat(n);t.metalnessMap&&t.metalnessMap.isTexture===!0?r=s.mul(this.getTexture(n).b):r=s}else if(n===st.EMISSIVE){const s=this.getFloat("emissiveIntensity"),a=this.getColor(n).mul(s);t.emissiveMap&&t.emissiveMap.isTexture===!0?r=a.mul(this.getTexture(n)):r=a}else if(n===st.NORMAL)t.normalMap?(r=WT(this.getTexture("normal"),this.getCache("normalScale","vec2")),r.normalMapType=t.normalMapType):t.bumpMap?r=G9(this.getTexture("bump").r,this.getFloat("bumpScale")):r=Jo;else if(n===st.CLEARCOAT){const s=this.getFloat(n);t.clearcoatMap&&t.clearcoatMap.isTexture===!0?r=s.mul(this.getTexture(n).r):r=s}else if(n===st.CLEARCOAT_ROUGHNESS){const s=this.getFloat(n);t.clearcoatRoughnessMap&&t.clearcoatRoughnessMap.isTexture===!0?r=s.mul(this.getTexture(n).r):r=s}else if(n===st.CLEARCOAT_NORMAL)t.clearcoatNormalMap?r=WT(this.getTexture(n),this.getCache(n+"Scale","vec2")):r=Jo;else if(n===st.SHEEN){const s=this.getColor("sheenColor").mul(this.getFloat("sheen"));t.sheenColorMap&&t.sheenColorMap.isTexture===!0?r=s.mul(this.getTexture("sheenColor").rgb):r=s}else if(n===st.SHEEN_ROUGHNESS){const s=this.getFloat(n);t.sheenRoughnessMap&&t.sheenRoughnessMap.isTexture===!0?r=s.mul(this.getTexture(n).a):r=s,r=r.clamp(.07,1)}else if(n===st.ANISOTROPY)if(t.anisotropyMap&&t.anisotropyMap.isTexture===!0){const s=this.getTexture(n);r=Ly(kd.x,kd.y,kd.y.negate(),kd.x).mul(s.rg.mul(2).sub(Et(1)).normalize().mul(s.b))}else r=kd;else if(n===st.IRIDESCENCE_THICKNESS){const s=ji("1","float",t.iridescenceThicknessRange);if(t.iridescenceThicknessMap){const a=ji("0","float",t.iridescenceThicknessRange);r=s.sub(a).mul(this.getTexture(n).g).add(a)}else r=s}else if(n===st.TRANSMISSION){const s=this.getFloat(n);t.transmissionMap?r=s.mul(this.getTexture(n).r):r=s}else if(n===st.THICKNESS){const s=this.getFloat(n);t.thicknessMap?r=s.mul(this.getTexture(n).g):r=s}else if(n===st.IOR)r=this.getFloat(n);else if(n===st.LIGHT_MAP)r=this.getTexture(n).rgb.mul(this.getFloat("lightMapIntensity"));else if(n===st.AO)r=this.getTexture(n).r.sub(1).mul(this.getFloat("aoMapIntensity")).add(1);else{const s=this.getNodeType(e);r=this.getCache(n,s)}return r}}st.ALPHA_TEST="alphaTest";st.COLOR="color";st.OPACITY="opacity";st.SHININESS="shininess";st.SPECULAR="specular";st.SPECULAR_STRENGTH="specularStrength";st.SPECULAR_INTENSITY="specularIntensity";st.SPECULAR_COLOR="specularColor";st.REFLECTIVITY="reflectivity";st.ROUGHNESS="roughness";st.METALNESS="metalness";st.NORMAL="normal";st.CLEARCOAT="clearcoat";st.CLEARCOAT_ROUGHNESS="clearcoatRoughness";st.CLEARCOAT_NORMAL="clearcoatNormal";st.EMISSIVE="emissive";st.ROTATION="rotation";st.SHEEN="sheen";st.SHEEN_ROUGHNESS="sheenRoughness";st.ANISOTROPY="anisotropy";st.IRIDESCENCE="iridescence";st.IRIDESCENCE_IOR="iridescenceIOR";st.IRIDESCENCE_THICKNESS="iridescenceThickness";st.IOR="ior";st.TRANSMISSION="transmission";st.THICKNESS="thickness";st.ATTENUATION_DISTANCE="attenuationDistance";st.ATTENUATION_COLOR="attenuationColor";st.LINE_SCALE="scale";st.LINE_DASH_SIZE="dashSize";st.LINE_GAP_SIZE="gapSize";st.LINE_WIDTH="linewidth";st.LINE_DASH_OFFSET="dashOffset";st.POINT_WIDTH="pointWidth";st.DISPERSION="dispersion";st.LIGHT_MAP="light";st.AO="ao";const q9=Vt(st,st.ALPHA_TEST),V9=Vt(st,st.COLOR),H9=Vt(st,st.SHININESS),j9=Vt(st,st.EMISSIVE),oE=Vt(st,st.OPACITY),W9=Vt(st,st.SPECULAR),$T=Vt(st,st.SPECULAR_INTENSITY),$9=Vt(st,st.SPECULAR_COLOR),Fm=Vt(st,st.SPECULAR_STRENGTH),Jv=Vt(st,st.REFLECTIVITY),X9=Vt(st,st.ROUGHNESS),Y9=Vt(st,st.METALNESS),Q9=Vt(st,st.NORMAL).context({getUV:null}),K9=Vt(st,st.CLEARCOAT),Z9=Vt(st,st.CLEARCOAT_ROUGHNESS),J9=Vt(st,st.CLEARCOAT_NORMAL).context({getUV:null}),eU=Vt(st,st.ROTATION),tU=Vt(st,st.SHEEN),nU=Vt(st,st.SHEEN_ROUGHNESS),iU=Vt(st,st.ANISOTROPY),rU=Vt(st,st.IRIDESCENCE),sU=Vt(st,st.IRIDESCENCE_IOR),aU=Vt(st,st.IRIDESCENCE_THICKNESS),oU=Vt(st,st.TRANSMISSION),lU=Vt(st,st.THICKNESS),uU=Vt(st,st.IOR),cU=Vt(st,st.ATTENUATION_DISTANCE),hU=Vt(st,st.ATTENUATION_COLOR),fU=Vt(st,st.LINE_SCALE),AU=Vt(st,st.LINE_DASH_SIZE),dU=Vt(st,st.LINE_GAP_SIZE),fee=Vt(st,st.LINE_WIDTH),pU=Vt(st,st.LINE_DASH_OFFSET),Aee=Vt(st,st.POINT_WIDTH),mU=Vt(st,st.DISPERSION),lE=Vt(st,st.LIGHT_MAP),gU=Vt(st,st.AO),kd=gn(new dt).onReference(function(i){return i.material}).onRenderUpdate(function({material:i}){this.value.set(i.anisotropy*Math.cos(i.anisotropyRotation),i.anisotropy*Math.sin(i.anisotropyRotation))}),uE=$e(i=>i.context.setupModelViewProjection(),"vec4").once()().varying("v_modelViewProjection");class pr extends Mn{static get type(){return"IndexNode"}constructor(e){super("uint"),this.scope=e,this.isIndexNode=!0}generate(e){const t=this.getNodeType(e),n=this.scope;let r;if(n===pr.VERTEX)r=e.getVertexIndex();else if(n===pr.INSTANCE)r=e.getInstanceIndex();else if(n===pr.DRAW)r=e.getDrawIndex();else if(n===pr.INVOCATION_LOCAL)r=e.getInvocationLocalIndex();else if(n===pr.INVOCATION_SUBGROUP)r=e.getInvocationSubgroupIndex();else if(n===pr.SUBGROUP)r=e.getSubgroupIndex();else throw new Error("THREE.IndexNode: Unknown scope: "+n);let s;return e.shaderStage==="vertex"||e.shaderStage==="compute"?s=r:s=ro(this).build(e,t),s}}pr.VERTEX="vertex";pr.INSTANCE="instance";pr.SUBGROUP="subgroup";pr.INVOCATION_LOCAL="invocationLocal";pr.INVOCATION_SUBGROUP="invocationSubgroup";pr.DRAW="draw";const vU=Vt(pr,pr.VERTEX),Jg=Vt(pr,pr.INSTANCE),dee=Vt(pr,pr.SUBGROUP),pee=Vt(pr,pr.INVOCATION_SUBGROUP),mee=Vt(pr,pr.INVOCATION_LOCAL),_U=Vt(pr,pr.DRAW);class yU extends Mn{static get type(){return"InstanceNode"}constructor(e,t,n){super("void"),this.count=e,this.instanceMatrix=t,this.instanceColor=n,this.instanceMatrixNode=null,this.instanceColorNode=null,this.updateType=jn.FRAME,this.buffer=null,this.bufferColor=null}setup(e){const{count:t,instanceMatrix:n,instanceColor:r}=this;let{instanceMatrixNode:s,instanceColorNode:a}=this;if(s===null){if(t<=1e3)s=Yg(n.array,"mat4",Math.max(t,1)).element(Jg);else{const u=new h_(n.array,16,1);this.buffer=u;const h=n.usage===qd?HT:J_,m=[h(u,"vec4",16,0),h(u,"vec4",16,4),h(u,"vec4",16,8),h(u,"vec4",16,12)];s=nA(...m)}this.instanceMatrixNode=s}if(r&&a===null){const u=new Ig(r.array,3),h=r.usage===qd?HT:J_;this.bufferColor=u,a=Ue(h(u,"vec3",3,0)),this.instanceColorNode=a}const l=s.mul(Gr).xyz;if(Gr.assign(l),e.hasGeometryAttribute("normal")){const u=R9(no,s);no.assign(u)}this.instanceColorNode!==null&&Sg("vec3","vInstanceColor").assign(this.instanceColorNode)}update(){this.instanceMatrix.usage!==qd&&this.buffer!==null&&this.instanceMatrix.version!==this.buffer.version&&(this.buffer.version=this.instanceMatrix.version),this.instanceColor&&this.instanceColor.usage!==qd&&this.bufferColor!==null&&this.instanceColor.version!==this.bufferColor.version&&(this.bufferColor.version=this.instanceColor.version)}}const gee=ut(yU);class vee extends yU{static get type(){return"InstancedMeshNode"}constructor(e){const{count:t,instanceMatrix:n,instanceColor:r}=e;super(t,n,r),this.instancedMesh=e}}const xU=ut(vee);class _ee extends Mn{static get type(){return"BatchNode"}constructor(e){super("void"),this.batchMesh=e,this.batchingIdNode=null}setup(e){this.batchingIdNode===null&&(e.getDrawIndex()===null?this.batchingIdNode=Jg:this.batchingIdNode=_U);const n=$e(([w])=>{const R=Fh(Fr(this.batchMesh._indirectTexture),0),C=Me(w).modInt(Me(R)),E=Me(w).div(Me(R));return Fr(this.batchMesh._indirectTexture,ms(C,E)).x}).setLayout({name:"getIndirectIndex",type:"uint",inputs:[{name:"id",type:"int"}]})(Me(this.batchingIdNode)),r=this.batchMesh._matricesTexture,s=Fh(Fr(r),0),a=ve(n).mul(4).toInt().toVar(),l=a.modInt(s),u=a.div(Me(s)),h=nA(Fr(r,ms(l,u)),Fr(r,ms(l.add(1),u)),Fr(r,ms(l.add(2),u)),Fr(r,ms(l.add(3),u))),m=this.batchMesh._colorsTexture;if(m!==null){const R=$e(([C])=>{const E=Fh(Fr(m),0).x,B=C,L=B.modInt(E),O=B.div(E);return Fr(m,ms(L,O)).rgb}).setLayout({name:"getBatchingColor",type:"vec3",inputs:[{name:"id",type:"int"}]})(n);Sg("vec3","vBatchColor").assign(R)}const v=ha(h);Gr.assign(h.mul(Gr));const x=no.div(Ue(v[0].dot(v[0]),v[1].dot(v[1]),v[2].dot(v[2]))),S=v.mul(x).xyz;no.assign(S),e.hasGeometryAttribute("tangent")&&Qg.mulAssign(v)}}const bU=ut(_ee),B6=new WeakMap;class SU extends Mn{static get type(){return"SkinningNode"}constructor(e,t=!1){super("void"),this.skinnedMesh=e,this.useReference=t,this.updateType=jn.OBJECT,this.skinIndexNode=_u("skinIndex","uvec4"),this.skinWeightNode=_u("skinWeight","vec4");let n,r,s;t?(n=ji("bindMatrix","mat4"),r=ji("bindMatrixInverse","mat4"),s=jT("skeleton.boneMatrices","mat4",e.skeleton.bones.length)):(n=gn(e.bindMatrix,"mat4"),r=gn(e.bindMatrixInverse,"mat4"),s=Yg(e.skeleton.boneMatrices,"mat4",e.skeleton.bones.length)),this.bindMatrixNode=n,this.bindMatrixInverseNode=r,this.boneMatricesNode=s,this.previousBoneMatricesNode=null}getSkinnedPosition(e=this.boneMatricesNode,t=Gr){const{skinIndexNode:n,skinWeightNode:r,bindMatrixNode:s,bindMatrixInverseNode:a}=this,l=e.element(n.x),u=e.element(n.y),h=e.element(n.z),m=e.element(n.w),v=s.mul(t),x=Qr(l.mul(r.x).mul(v),u.mul(r.y).mul(v),h.mul(r.z).mul(v),m.mul(r.w).mul(v));return a.mul(x).xyz}getSkinnedNormal(e=this.boneMatricesNode,t=no){const{skinIndexNode:n,skinWeightNode:r,bindMatrixNode:s,bindMatrixInverseNode:a}=this,l=e.element(n.x),u=e.element(n.y),h=e.element(n.z),m=e.element(n.w);let v=Qr(r.x.mul(l),r.y.mul(u),r.z.mul(h),r.w.mul(m));return v=a.mul(v).mul(s),v.transformDirection(t).xyz}getPreviousSkinnedPosition(e){const t=e.object;return this.previousBoneMatricesNode===null&&(t.skeleton.previousBoneMatrices=new Float32Array(t.skeleton.boneMatrices),this.previousBoneMatricesNode=jT("skeleton.previousBoneMatrices","mat4",t.skeleton.bones.length)),this.getSkinnedPosition(this.previousBoneMatricesNode,ey)}needsPreviousBoneMatrices(e){const t=e.renderer.getMRT();return t&&t.has("velocity")||FP(e.object).useVelocity===!0}setup(e){this.needsPreviousBoneMatrices(e)&&ey.assign(this.getPreviousSkinnedPosition(e));const t=this.getSkinnedPosition();if(Gr.assign(t),e.hasGeometryAttribute("normal")){const n=this.getSkinnedNormal();no.assign(n),e.hasGeometryAttribute("tangent")&&Qg.assign(n)}}generate(e,t){if(t!=="void")return Gr.build(e,t)}update(e){const n=(this.useReference?e.object:this.skinnedMesh).skeleton;B6.get(n)!==e.frameId&&(B6.set(n,e.frameId),this.previousBoneMatricesNode!==null&&n.previousBoneMatrices.set(n.boneMatrices),n.update())}}const yee=i=>gt(new SU(i)),TU=i=>gt(new SU(i,!0));class xee extends Mn{static get type(){return"LoopNode"}constructor(e=[]){super(),this.params=e}getVarName(e){return String.fromCharCode(105+e)}getProperties(e){const t=e.getNodeProperties(this);if(t.stackNode!==void 0)return t;const n={};for(let s=0,a=this.params.length-1;sNumber(v)?w=">=":w="<"));const C={start:m,end:v},E=C.start,B=C.end;let L="",O="",G="";R||(S==="int"||S==="uint"?w.includes("<")?R="++":R="--":w.includes("<")?R="+= 1.":R="-= 1."),L+=e.getVar(S,x)+" = "+E,O+=x+" "+w+" "+B,G+=x+" "+R;const q=`for ( ${L}; ${O}; ${G} )`;e.addFlowCode((l===0?` +`:"")+e.tab+q+` { + +`).addFlowTab()}const s=r.build(e,"void"),a=t.returnsNode?t.returnsNode.build(e):"";e.removeFlowTab().addFlowCode(` +`+e.tab+s);for(let l=0,u=this.params.length-1;lgt(new xee(tA(i,"int"))).append(),bee=()=>Hh("continue").append(),wU=()=>Hh("break").append(),See=(...i)=>(console.warn("TSL.LoopNode: loop() has been renamed to Loop()."),ki(...i)),$3=new WeakMap,vo=new Ln,O6=$e(({bufferMap:i,influence:e,stride:t,width:n,depth:r,offset:s})=>{const a=Me(vU).mul(t).add(s),l=a.div(n),u=a.sub(l.mul(n));return Fr(i,ms(u,l)).depth(r).mul(e)});function Tee(i){const e=i.morphAttributes.position!==void 0,t=i.morphAttributes.normal!==void 0,n=i.morphAttributes.color!==void 0,r=i.morphAttributes.position||i.morphAttributes.normal||i.morphAttributes.color,s=r!==void 0?r.length:0;let a=$3.get(i);if(a===void 0||a.count!==s){let B=function(){C.dispose(),$3.delete(i),i.removeEventListener("dispose",B)};var l=B;a!==void 0&&a.texture.dispose();const u=i.morphAttributes.position||[],h=i.morphAttributes.normal||[],m=i.morphAttributes.color||[];let v=0;e===!0&&(v=1),t===!0&&(v=2),n===!0&&(v=3);let x=i.attributes.position.count*v,S=1;const w=4096;x>w&&(S=Math.ceil(x/w),x=w);const R=new Float32Array(x*S*4*s),C=new jw(R,x,S,s);C.type=$r,C.needsUpdate=!0;const E=v*4;for(let L=0;L{const x=ve(0).toVar();this.mesh.count>1&&this.mesh.morphTexture!==null&&this.mesh.morphTexture!==void 0?x.assign(Fr(this.mesh.morphTexture,ms(Me(v).add(1),Me(Jg))).r):x.assign(ji("morphTargetInfluences","float").element(v).toVar()),n===!0&&Gr.addAssign(O6({bufferMap:l,influence:x,stride:u,width:m,depth:v,offset:Me(0)})),r===!0&&no.addAssign(O6({bufferMap:l,influence:x,stride:u,width:m,depth:v,offset:Me(1)}))})}update(){const e=this.morphBaseInfluence;this.mesh.geometry.morphTargetsRelative?e.value=1:e.value=1-this.mesh.morphTargetInfluences.reduce((t,n)=>t+n,0)}}const MU=ut(wee);class K0 extends Mn{static get type(){return"LightingNode"}constructor(){super("vec3"),this.isLightingNode=!0}}class Mee extends K0{static get type(){return"AONode"}constructor(e=null){super(),this.aoNode=e}setup(e){e.context.ambientOcclusion.mulAssign(this.aoNode)}}class Eee extends JL{static get type(){return"LightingContextNode"}constructor(e,t=null,n=null,r=null){super(e),this.lightingModel=t,this.backdropNode=n,this.backdropAlphaNode=r,this._value=null}getContext(){const{backdropNode:e,backdropAlphaNode:t}=this,n=Ue().toVar("directDiffuse"),r=Ue().toVar("directSpecular"),s=Ue().toVar("indirectDiffuse"),a=Ue().toVar("indirectSpecular"),l={directDiffuse:n,directSpecular:r,indirectDiffuse:s,indirectSpecular:a};return{radiance:Ue().toVar("radiance"),irradiance:Ue().toVar("irradiance"),iblIrradiance:Ue().toVar("iblIrradiance"),ambientOcclusion:ve(1).toVar("ambientOcclusion"),reflectedLight:l,backdrop:e,backdropAlpha:t}}setup(e){return this.value=this._value||(this._value=this.getContext()),this.value.lightingModel=this.lightingModel||e.context.lightingModel,super.setup(e)}}const EU=ut(Eee);class Cee extends K0{static get type(){return"IrradianceNode"}constructor(e){super(),this.node=e}setup(e){e.context.irradiance.addAssign(this.node)}}let am,om;class ss extends Mn{static get type(){return"ScreenNode"}constructor(e){super(),this.scope=e,this.isViewportNode=!0}getNodeType(){return this.scope===ss.VIEWPORT?"vec4":"vec2"}getUpdateType(){let e=jn.NONE;return(this.scope===ss.SIZE||this.scope===ss.VIEWPORT)&&(e=jn.RENDER),this.updateType=e,e}update({renderer:e}){const t=e.getRenderTarget();this.scope===ss.VIEWPORT?t!==null?om.copy(t.viewport):(e.getViewport(om),om.multiplyScalar(e.getPixelRatio())):t!==null?(am.width=t.width,am.height=t.height):e.getDrawingBufferSize(am)}setup(){const e=this.scope;let t=null;return e===ss.SIZE?t=gn(am||(am=new dt)):e===ss.VIEWPORT?t=gn(om||(om=new Ln)):t=Et(e1.div(Rg)),t}generate(e){if(this.scope===ss.COORDINATE){let t=e.getFragCoord();if(e.isFlipY()){const n=e.getNodeProperties(Rg).outputNode.build(e);t=`${e.getType("vec2")}( ${t}.x, ${n}.y - ${t}.y )`}return t}return super.generate(e)}}ss.COORDINATE="coordinate";ss.VIEWPORT="viewport";ss.SIZE="size";ss.UV="uv";const bu=Vt(ss,ss.UV),Rg=Vt(ss,ss.SIZE),e1=Vt(ss,ss.COORDINATE),cE=Vt(ss,ss.VIEWPORT),CU=cE.zw,RU=e1.sub(cE.xy),Ree=RU.div(CU),Nee=$e(()=>(console.warn('TSL.ViewportNode: "viewportResolution" is deprecated. Use "screenSize" instead.'),Rg),"vec2").once()(),Dee=$e(()=>(console.warn('TSL.ViewportNode: "viewportTopLeft" is deprecated. Use "screenUV" instead.'),bu),"vec2").once()(),Pee=$e(()=>(console.warn('TSL.ViewportNode: "viewportBottomLeft" is deprecated. Use "screenUV.flipY()" instead.'),bu.flipY()),"vec2").once()(),lm=new dt;class $y extends yu{static get type(){return"ViewportTextureNode"}constructor(e=bu,t=null,n=null){n===null&&(n=new W7,n.minFilter=Va),super(n,e,t),this.generateMipmaps=!1,this.isOutputTextureNode=!0,this.updateBeforeType=jn.FRAME}updateBefore(e){const t=e.renderer;t.getDrawingBufferSize(lm);const n=this.value;(n.image.width!==lm.width||n.image.height!==lm.height)&&(n.image.width=lm.width,n.image.height=lm.height,n.needsUpdate=!0);const r=n.generateMipmaps;n.generateMipmaps=this.generateMipmaps,t.copyFramebufferToTexture(n),n.generateMipmaps=r}clone(){const e=new this.constructor(this.uvNode,this.levelNode,this.value);return e.generateMipmaps=this.generateMipmaps,e}}const Lee=ut($y),hE=ut($y,null,null,{generateMipmaps:!0});let X3=null;class Uee extends $y{static get type(){return"ViewportDepthTextureNode"}constructor(e=bu,t=null){X3===null&&(X3=new qc),super(e,t,X3)}}const fE=ut(Uee);class Xa extends Mn{static get type(){return"ViewportDepthNode"}constructor(e,t=null){super("float"),this.scope=e,this.valueNode=t,this.isViewportDepthNode=!0}generate(e){const{scope:t}=this;return t===Xa.DEPTH_BASE?e.getFragDepth():super.generate(e)}setup({camera:e}){const{scope:t}=this,n=this.valueNode;let r=null;if(t===Xa.DEPTH_BASE)n!==null&&(r=DU().assign(n));else if(t===Xa.DEPTH)e.isPerspectiveCamera?r=NU(Xr.z,Dh,Ph):r=s0(Xr.z,Dh,Ph);else if(t===Xa.LINEAR_DEPTH)if(n!==null)if(e.isPerspectiveCamera){const s=AE(n,Dh,Ph);r=s0(s,Dh,Ph)}else r=n;else r=s0(Xr.z,Dh,Ph);return r}}Xa.DEPTH_BASE="depthBase";Xa.DEPTH="depth";Xa.LINEAR_DEPTH="linearDepth";const s0=(i,e,t)=>i.add(e).div(e.sub(t)),Bee=(i,e,t)=>e.sub(t).mul(i).sub(e),NU=(i,e,t)=>e.add(i).mul(t).div(t.sub(e).mul(i)),AE=(i,e,t)=>e.mul(t).div(t.sub(e).mul(i).sub(t)),dE=(i,e,t)=>{e=e.max(1e-6).toVar();const n=cu(i.negate().div(e)),r=cu(t.div(e));return n.div(r)},Oee=(i,e,t)=>{const n=i.mul(Oy(t.div(e)));return ve(Math.E).pow(n).mul(e).negate()},DU=ut(Xa,Xa.DEPTH_BASE),pE=Vt(Xa,Xa.DEPTH),ty=ut(Xa,Xa.LINEAR_DEPTH),Iee=ty(fE());pE.assign=i=>DU(i);class Fee extends Mn{constructor(e){super("float"),this.name=e,this.isBuiltinNode=!0}generate(){return this.name}}const kee=ut(Fee);class Yo extends Mn{static get type(){return"ClippingNode"}constructor(e=Yo.DEFAULT){super(),this.scope=e}setup(e){super.setup(e);const t=e.clippingContext,{intersectionPlanes:n,unionPlanes:r}=t;return this.hardwareClipping=e.material.hardwareClipping,this.scope===Yo.ALPHA_TO_COVERAGE?this.setupAlphaToCoverage(n,r):this.scope===Yo.HARDWARE?this.setupHardwareClipping(r,e):this.setupDefault(n,r)}setupAlphaToCoverage(e,t){return $e(()=>{const n=ve().toVar("distanceToPlane"),r=ve().toVar("distanceToGradient"),s=ve(1).toVar("clipOpacity"),a=t.length;if(this.hardwareClipping===!1&&a>0){const u=Sc(t);ki(a,({i:h})=>{const m=u.element(h);n.assign(Xr.dot(m.xyz).negate().add(m.w)),r.assign(n.fwidth().div(2)),s.mulAssign(kc(r.negate(),r,n))})}const l=e.length;if(l>0){const u=Sc(e),h=ve(1).toVar("intersectionClipOpacity");ki(l,({i:m})=>{const v=u.element(m);n.assign(Xr.dot(v.xyz).negate().add(v.w)),r.assign(n.fwidth().div(2)),h.mulAssign(kc(r.negate(),r,n).oneMinus())}),s.mulAssign(h.oneMinus())}Ui.a.mulAssign(s),Ui.a.equal(0).discard()})()}setupDefault(e,t){return $e(()=>{const n=t.length;if(this.hardwareClipping===!1&&n>0){const s=Sc(t);ki(n,({i:a})=>{const l=s.element(a);Xr.dot(l.xyz).greaterThan(l.w).discard()})}const r=e.length;if(r>0){const s=Sc(e),a=Ic(!0).toVar("clipped");ki(r,({i:l})=>{const u=s.element(l);a.assign(Xr.dot(u.xyz).greaterThan(u.w).and(a))}),a.discard()}})()}setupHardwareClipping(e,t){const n=e.length;return t.enableHardwareClipping(n),$e(()=>{const r=Sc(e),s=kee(t.getClipDistance());ki(n,({i:a})=>{const l=r.element(a),u=Xr.dot(l.xyz).sub(l.w).negate();s.element(a).assign(u)})})()}}Yo.ALPHA_TO_COVERAGE="alphaToCoverage";Yo.DEFAULT="default";Yo.HARDWARE="hardware";const zee=()=>gt(new Yo),Gee=()=>gt(new Yo(Yo.ALPHA_TO_COVERAGE)),qee=()=>gt(new Yo(Yo.HARDWARE)),Vee=.05,I6=$e(([i])=>Hc(Wn(1e4,Mo(Wn(17,i.x).add(Wn(.1,i.y)))).mul(Qr(.1,ur(Mo(Wn(13,i.y).add(i.x))))))),F6=$e(([i])=>I6(Et(I6(i.xy),i.z))),Hee=$e(([i])=>{const e=qr(Rc(XM(i.xyz)),Rc(YM(i.xyz))),t=ve(1).div(ve(Vee).mul(e)).toVar("pixScale"),n=Et(O0(hu(cu(t))),O0(Iy(cu(t)))),r=Et(F6(hu(n.x.mul(i.xyz))),F6(hu(n.y.mul(i.xyz)))),s=Hc(cu(t)),a=Qr(Wn(s.oneMinus(),r.x),Wn(s,r.y)),l=to(s,s.oneMinus()),u=Ue(a.mul(a).div(Wn(2,l).mul(wi(1,l))),a.sub(Wn(.5,l)).div(wi(1,l)),wi(1,wi(1,a).mul(wi(1,a)).div(Wn(2,l).mul(wi(1,l))))),h=a.lessThan(l.oneMinus()).select(a.lessThan(l).select(u.x,u.y),u.z);return vu(h,1e-6,1)}).setLayout({name:"getAlphaHashThreshold",type:"float",inputs:[{name:"position",type:"vec3"}]});class Vr extends ua{static get type(){return"NodeMaterial"}get type(){return this.constructor.type}set type(e){}constructor(){super(),this.isNodeMaterial=!0,this.fog=!0,this.lights=!1,this.hardwareClipping=!1,this.lightsNode=null,this.envNode=null,this.aoNode=null,this.colorNode=null,this.normalNode=null,this.opacityNode=null,this.backdropNode=null,this.backdropAlphaNode=null,this.alphaTestNode=null,this.positionNode=null,this.geometryNode=null,this.depthNode=null,this.shadowPositionNode=null,this.receivedShadowNode=null,this.castShadowNode=null,this.outputNode=null,this.mrtNode=null,this.fragmentNode=null,this.vertexNode=null}customProgramCacheKey(){return this.type+LP(this)}build(e){this.setup(e)}setupObserver(e){return new GZ(e)}setup(e){e.context.setupNormal=()=>this.setupNormal(e),e.context.setupPositionView=()=>this.setupPositionView(e),e.context.setupModelViewProjection=()=>this.setupModelViewProjection(e);const t=e.renderer,n=t.getRenderTarget();e.addStack();const r=this.vertexNode||this.setupVertex(e);e.stack.outputNode=r,this.setupHardwareClipping(e),this.geometryNode!==null&&(e.stack.outputNode=e.stack.outputNode.bypass(this.geometryNode)),e.addFlow("vertex",e.removeStack()),e.addStack();let s;const a=this.setupClipping(e);if((this.depthWrite===!0||this.depthTest===!0)&&(n!==null?n.depthBuffer===!0&&this.setupDepth(e):t.depth===!0&&this.setupDepth(e)),this.fragmentNode===null){this.setupDiffuseColor(e),this.setupVariants(e);const l=this.setupLighting(e);a!==null&&e.stack.add(a);const u=dn(l,Ui.a).max(0);if(s=this.setupOutput(e,u),Eg.assign(s),this.outputNode!==null&&(s=this.outputNode),n!==null){const h=t.getMRT(),m=this.mrtNode;h!==null?(s=h,m!==null&&(s=h.merge(m))):m!==null&&(s=m)}}else{let l=this.fragmentNode;l.isOutputStructNode!==!0&&(l=dn(l)),s=this.setupOutput(e,l)}e.stack.outputNode=s,e.addFlow("fragment",e.removeStack()),e.monitor=this.setupObserver(e)}setupClipping(e){if(e.clippingContext===null)return null;const{unionPlanes:t,intersectionPlanes:n}=e.clippingContext;let r=null;if(t.length>0||n.length>0){const s=e.renderer.samples;this.alphaToCoverage&&s>1?r=Gee():e.stack.add(zee())}return r}setupHardwareClipping(e){if(this.hardwareClipping=!1,e.clippingContext===null)return;const t=e.clippingContext.unionPlanes.length;t>0&&t<=8&&e.isAvailable("clipDistance")&&(e.stack.add(qee()),this.hardwareClipping=!0)}setupDepth(e){const{renderer:t,camera:n}=e;let r=this.depthNode;if(r===null){const s=t.getMRT();s&&s.has("depth")?r=s.get("depth"):t.logarithmicDepthBuffer===!0&&(n.isPerspectiveCamera?r=dE(Xr.z,Dh,Ph):r=s0(Xr.z,Dh,Ph))}r!==null&&pE.assign(r).append()}setupPositionView(){return Q0.mul(Gr).xyz}setupModelViewProjection(){return _A.mul(Xr)}setupVertex(e){return e.addStack(),this.setupPosition(e),e.context.vertex=e.removeStack(),uE}setupPosition(e){const{object:t,geometry:n}=e;if((n.morphAttributes.position||n.morphAttributes.normal||n.morphAttributes.color)&&MU(t).append(),t.isSkinnedMesh===!0&&TU(t).append(),this.displacementMap){const r=Tc("displacementMap","texture"),s=Tc("displacementScale","float"),a=Tc("displacementBias","float");Gr.addAssign(no.normalize().mul(r.x.mul(s).add(a)))}return t.isBatchedMesh&&bU(t).append(),t.isInstancedMesh&&t.instanceMatrix&&t.instanceMatrix.isInstancedBufferAttribute===!0&&xU(t).append(),this.positionNode!==null&&Gr.assign(this.positionNode.context({isPositionNodeInput:!0})),Gr}setupDiffuseColor({object:e,geometry:t}){let n=this.colorNode?dn(this.colorNode):V9;this.vertexColors===!0&&t.hasAttribute("color")&&(n=dn(n.xyz.mul(_u("color","vec3")),n.a)),e.instanceColor&&(n=Sg("vec3","vInstanceColor").mul(n)),e.isBatchedMesh&&e._colorsTexture&&(n=Sg("vec3","vBatchColor").mul(n)),Ui.assign(n);const r=this.opacityNode?ve(this.opacityNode):oE;if(Ui.a.assign(Ui.a.mul(r)),this.alphaTestNode!==null||this.alphaTest>0){const s=this.alphaTestNode!==null?ve(this.alphaTestNode):q9;Ui.a.lessThanEqual(s).discard()}this.alphaHash===!0&&Ui.a.lessThan(Hee(Gr)).discard(),this.transparent===!1&&this.blending===Ka&&this.alphaToCoverage===!1&&Ui.a.assign(1)}setupVariants(){}setupOutgoingLight(){return this.lights===!0?Ue(0):Ui.rgb}setupNormal(){return this.normalNode?Ue(this.normalNode):Q9}setupEnvironment(){let e=null;return this.envNode?e=this.envNode:this.envMap&&(e=this.envMap.isCubeTexture?Tc("envMap","cubeTexture"):Tc("envMap","texture")),e}setupLightMap(e){let t=null;return e.material.lightMap&&(t=new Cee(lE)),t}setupLights(e){const t=[],n=this.setupEnvironment(e);n&&n.isLightingNode&&t.push(n);const r=this.setupLightMap(e);if(r&&r.isLightingNode&&t.push(r),this.aoNode!==null||e.material.aoMap){const a=this.aoNode!==null?this.aoNode:gU;t.push(new Mee(a))}let s=this.lightsNode||e.lightsNode;return t.length>0&&(s=e.renderer.lighting.createNode([...s.getLights(),...t])),s}setupLightingModel(){}setupLighting(e){const{material:t}=e,{backdropNode:n,backdropAlphaNode:r,emissiveNode:s}=this,l=this.lights===!0||this.lightsNode!==null?this.setupLights(e):null;let u=this.setupOutgoingLight(e);if(l&&l.getScope().hasLights){const h=this.setupLightingModel(e);u=EU(l,h,n,r)}else n!==null&&(u=Ue(r!==null?Fi(u,n,r):n));return(s&&s.isNode===!0||t.emissive&&t.emissive.isColor===!0)&&(qT.assign(Ue(s||j9)),u=u.add(qT)),u}setupOutput(e,t){if(this.fog===!0){const n=e.fogNode;n&&(Eg.assign(t),t=dn(n))}return t}setDefaultValues(e){for(const n in e){const r=e[n];this[n]===void 0&&(this[n]=r,r&&r.clone&&(this[n]=r.clone()))}const t=Object.getOwnPropertyDescriptors(e.constructor.prototype);for(const n in t)Object.getOwnPropertyDescriptor(this.constructor.prototype,n)===void 0&&t[n].get!==void 0&&Object.defineProperty(this.constructor.prototype,n,t[n])}toJSON(e){const t=e===void 0||typeof e=="string";t&&(e={textures:{},images:{},nodes:{}});const n=ua.prototype.toJSON.call(this,e),r=$_(this);n.inputNodes={};for(const{property:a,childNode:l}of r)n.inputNodes[a]=l.toJSON(e).uuid;function s(a){const l=[];for(const u in a){const h=a[u];delete h.metadata,l.push(h)}return l}if(t){const a=s(e.textures),l=s(e.images),u=s(e.nodes);a.length>0&&(n.textures=a),l.length>0&&(n.images=l),u.length>0&&(n.nodes=u)}return n}copy(e){return this.lightsNode=e.lightsNode,this.envNode=e.envNode,this.colorNode=e.colorNode,this.normalNode=e.normalNode,this.opacityNode=e.opacityNode,this.backdropNode=e.backdropNode,this.backdropAlphaNode=e.backdropAlphaNode,this.alphaTestNode=e.alphaTestNode,this.positionNode=e.positionNode,this.geometryNode=e.geometryNode,this.depthNode=e.depthNode,this.shadowPositionNode=e.shadowPositionNode,this.receivedShadowNode=e.receivedShadowNode,this.castShadowNode=e.castShadowNode,this.outputNode=e.outputNode,this.mrtNode=e.mrtNode,this.fragmentNode=e.fragmentNode,this.vertexNode=e.vertexNode,super.copy(e)}}const jee=new $0;class Wee extends Vr{static get type(){return"LineBasicNodeMaterial"}constructor(e){super(),this.isLineBasicNodeMaterial=!0,this.setDefaultValues(jee),this.setValues(e)}}const $ee=new Bz;class Xee extends Vr{static get type(){return"LineDashedNodeMaterial"}constructor(e){super(),this.isLineDashedNodeMaterial=!0,this.setDefaultValues($ee),this.dashOffset=0,this.offsetNode=null,this.dashScaleNode=null,this.dashSizeNode=null,this.gapSizeNode=null,this.setValues(e)}setupVariants(){const e=this.offsetNode?ve(this.offsetNode):pU,t=this.dashScaleNode?ve(this.dashScaleNode):fU,n=this.dashSizeNode?ve(this.dashSizeNode):AU,r=this.gapSizeNode?ve(this.gapSizeNode):dU;Qv.assign(n),VT.assign(r);const s=ro(_u("lineDistance").mul(t));(e?s.add(e):s).mod(Qv.add(VT)).greaterThan(Qv).discard()}}let Y3=null;class Yee extends $y{static get type(){return"ViewportSharedTextureNode"}constructor(e=bu,t=null){Y3===null&&(Y3=new W7),super(e,t,Y3)}updateReference(){return this}}const Qee=ut(Yee),PU=i=>gt(i).mul(.5).add(.5),Kee=i=>gt(i).mul(2).sub(1),Zee=new Dz;class Jee extends Vr{static get type(){return"MeshNormalNodeMaterial"}constructor(e){super(),this.isMeshNormalNodeMaterial=!0,this.setDefaultValues(Zee),this.setValues(e)}setupDiffuseColor(){const e=this.opacityNode?ve(this.opacityNode):oE;Ui.assign(dn(PU(zr),e))}}class ete extends Zr{static get type(){return"EquirectUVNode"}constructor(e=iE){super("vec2"),this.dirNode=e}setup(){const e=this.dirNode,t=e.z.atan(e.x).mul(1/(Math.PI*2)).add(.5),n=e.y.clamp(-1,1).asin().mul(1/Math.PI).add(.5);return Et(t,n)}}const mE=ut(ete);class LU extends H7{constructor(e=1,t={}){super(e,t),this.isCubeRenderTarget=!0}fromEquirectangularTexture(e,t){const n=t.minFilter,r=t.generateMipmaps;t.generateMipmaps=!0,this.texture.type=t.type,this.texture.colorSpace=t.colorSpace,this.texture.generateMipmaps=t.generateMipmaps,this.texture.minFilter=t.minFilter,this.texture.magFilter=t.magFilter;const s=new $h(5,5,5),a=mE(iE),l=new Vr;l.colorNode=di(t,a,0),l.side=hr,l.blending=Qa;const u=new zi(s,l),h=new Yw;h.add(u),t.minFilter===Va&&(t.minFilter=gs);const m=new V7(1,10,this),v=e.getMRT();return e.setMRT(null),m.update(e,h),e.setMRT(v),t.minFilter=n,t.currentGenerateMipmaps=r,u.geometry.dispose(),u.material.dispose(),this}}const km=new WeakMap;class tte extends Zr{static get type(){return"CubeMapNode"}constructor(e){super("vec3"),this.envNode=e,this._cubeTexture=null,this._cubeTextureNode=I0();const t=new yy;t.isRenderTargetTexture=!0,this._defaultTexture=t,this.updateBeforeType=jn.RENDER}updateBefore(e){const{renderer:t,material:n}=e,r=this.envNode;if(r.isTextureNode||r.isMaterialReferenceNode){const s=r.isTextureNode?r.value:n[r.property];if(s&&s.isTexture){const a=s.mapping;if(a===zh||a===Gh){if(km.has(s)){const l=km.get(s);k6(l,s.mapping),this._cubeTexture=l}else{const l=s.image;if(nte(l)){const u=new LU(l.height);u.fromEquirectangularTexture(t,s),k6(u.texture,s.mapping),this._cubeTexture=u.texture,km.set(s,u.texture),s.addEventListener("dispose",UU)}else this._cubeTexture=this._defaultTexture}this._cubeTextureNode.value=this._cubeTexture}else this._cubeTextureNode=this.envNode}}}setup(e){return this.updateBefore(e),this._cubeTextureNode}}function nte(i){return i==null?!1:i.height>0}function UU(i){const e=i.target;e.removeEventListener("dispose",UU);const t=km.get(e);t!==void 0&&(km.delete(e),t.dispose())}function k6(i,e){e===zh?i.mapping=Qo:e===Gh&&(i.mapping=Ko)}const BU=ut(tte);class gE extends K0{static get type(){return"BasicEnvironmentNode"}constructor(e=null){super(),this.envNode=e}setup(e){e.context.environment=BU(this.envNode)}}class ite extends K0{static get type(){return"BasicLightMapNode"}constructor(e=null){super(),this.lightMapNode=e}setup(e){const t=ve(1/Math.PI);e.context.irradianceLightMap=this.lightMapNode.mul(t)}}class Xy{start(){}finish(){}direct(){}directRectArea(){}indirect(){}ambientOcclusion(){}}class OU extends Xy{constructor(){super()}indirect(e,t,n){const r=e.ambientOcclusion,s=e.reflectedLight,a=n.context.irradianceLightMap;s.indirectDiffuse.assign(dn(0)),a?s.indirectDiffuse.addAssign(a):s.indirectDiffuse.addAssign(dn(1,1,1,0)),s.indirectDiffuse.mulAssign(r),s.indirectDiffuse.mulAssign(Ui.rgb)}finish(e,t,n){const r=n.material,s=e.outgoingLight,a=n.context.environment;if(a)switch(r.combine){case Lg:s.rgb.assign(Fi(s.rgb,s.rgb.mul(a.rgb),Fm.mul(Jv)));break;case C7:s.rgb.assign(Fi(s.rgb,a.rgb,Fm.mul(Jv)));break;case R7:s.rgb.addAssign(a.rgb.mul(Fm.mul(Jv)));break;default:console.warn("THREE.BasicLightingModel: Unsupported .combine value:",r.combine);break}}}const rte=new pA;class ste extends Vr{static get type(){return"MeshBasicNodeMaterial"}constructor(e){super(),this.isMeshBasicNodeMaterial=!0,this.lights=!0,this.setDefaultValues(rte),this.setValues(e)}setupNormal(){return Jo}setupEnvironment(e){const t=super.setupEnvironment(e);return t?new gE(t):null}setupLightMap(e){let t=null;return e.material.lightMap&&(t=new ite(lE)),t}setupOutgoingLight(){return Ui.rgb}setupLightingModel(){return new OU}}const F0=$e(({f0:i,f90:e,dotVH:t})=>{const n=t.mul(-5.55473).sub(6.98316).mul(t).exp2();return i.mul(n.oneMinus()).add(e.mul(n))}),AA=$e(i=>i.diffuseColor.mul(1/Math.PI)),ate=()=>ve(.25),ote=$e(({dotNH:i})=>Q_.mul(ve(.5)).add(1).mul(ve(1/Math.PI)).mul(i.pow(Q_))),lte=$e(({lightDirection:i})=>{const e=i.add(dr).normalize(),t=zr.dot(e).clamp(),n=dr.dot(e).clamp(),r=F0({f0:ka,f90:1,dotVH:n}),s=ate(),a=ote({dotNH:t});return r.mul(s).mul(a)});class IU extends OU{constructor(e=!0){super(),this.specular=e}direct({lightDirection:e,lightColor:t,reflectedLight:n}){const s=zr.dot(e).clamp().mul(t);n.directDiffuse.addAssign(s.mul(AA({diffuseColor:Ui.rgb}))),this.specular===!0&&n.directSpecular.addAssign(s.mul(lte({lightDirection:e})).mul(Fm))}indirect({ambientOcclusion:e,irradiance:t,reflectedLight:n}){n.indirectDiffuse.addAssign(t.mul(AA({diffuseColor:Ui}))),n.indirectDiffuse.mulAssign(e)}}const ute=new Vc;class cte extends Vr{static get type(){return"MeshLambertNodeMaterial"}constructor(e){super(),this.isMeshLambertNodeMaterial=!0,this.lights=!0,this.setDefaultValues(ute),this.setValues(e)}setupEnvironment(e){const t=super.setupEnvironment(e);return t?new gE(t):null}setupLightingModel(){return new IU(!1)}}const hte=new iD;class fte extends Vr{static get type(){return"MeshPhongNodeMaterial"}constructor(e){super(),this.isMeshPhongNodeMaterial=!0,this.lights=!0,this.shininessNode=null,this.specularNode=null,this.setDefaultValues(hte),this.setValues(e)}setupEnvironment(e){const t=super.setupEnvironment(e);return t?new gE(t):null}setupLightingModel(){return new IU}setupVariants(){const e=(this.shininessNode?ve(this.shininessNode):H9).max(1e-4);Q_.assign(e);const t=this.specularNode||W9;ka.assign(t)}copy(e){return this.shininessNode=e.shininessNode,this.specularNode=e.specularNode,super.copy(e)}}const FU=$e(i=>{if(i.geometry.hasAttribute("normal")===!1)return ve(0);const e=Jo.dFdx().abs().max(Jo.dFdy().abs());return e.x.max(e.y).max(e.z)}),vE=$e(i=>{const{roughness:e}=i,t=FU();let n=e.max(.0525);return n=n.add(t),n=n.min(1),n}),kU=$e(({alpha:i,dotNL:e,dotNV:t})=>{const n=i.pow2(),r=e.mul(n.add(n.oneMinus().mul(t.pow2())).sqrt()),s=t.mul(n.add(n.oneMinus().mul(e.pow2())).sqrt());return Dl(.5,r.add(s).max(wL))}).setLayout({name:"V_GGX_SmithCorrelated",type:"float",inputs:[{name:"alpha",type:"float"},{name:"dotNL",type:"float"},{name:"dotNV",type:"float"}]}),Ate=$e(({alphaT:i,alphaB:e,dotTV:t,dotBV:n,dotTL:r,dotBL:s,dotNV:a,dotNL:l})=>{const u=l.mul(Ue(i.mul(t),e.mul(n),a).length()),h=a.mul(Ue(i.mul(r),e.mul(s),l).length());return Dl(.5,u.add(h)).saturate()}).setLayout({name:"V_GGX_SmithCorrelated_Anisotropic",type:"float",inputs:[{name:"alphaT",type:"float",qualifier:"in"},{name:"alphaB",type:"float",qualifier:"in"},{name:"dotTV",type:"float",qualifier:"in"},{name:"dotBV",type:"float",qualifier:"in"},{name:"dotTL",type:"float",qualifier:"in"},{name:"dotBL",type:"float",qualifier:"in"},{name:"dotNV",type:"float",qualifier:"in"},{name:"dotNL",type:"float",qualifier:"in"}]}),zU=$e(({alpha:i,dotNH:e})=>{const t=i.pow2(),n=e.pow2().mul(t.oneMinus()).oneMinus();return t.div(n.pow2()).mul(1/Math.PI)}).setLayout({name:"D_GGX",type:"float",inputs:[{name:"alpha",type:"float"},{name:"dotNH",type:"float"}]}),dte=ve(1/Math.PI),pte=$e(({alphaT:i,alphaB:e,dotNH:t,dotTH:n,dotBH:r})=>{const s=i.mul(e),a=Ue(e.mul(n),i.mul(r),s.mul(t)),l=a.dot(a),u=s.div(l);return dte.mul(s.mul(u.pow2()))}).setLayout({name:"D_GGX_Anisotropic",type:"float",inputs:[{name:"alphaT",type:"float",qualifier:"in"},{name:"alphaB",type:"float",qualifier:"in"},{name:"dotNH",type:"float",qualifier:"in"},{name:"dotTH",type:"float",qualifier:"in"},{name:"dotBH",type:"float",qualifier:"in"}]}),XT=$e(i=>{const{lightDirection:e,f0:t,f90:n,roughness:r,f:s,USE_IRIDESCENCE:a,USE_ANISOTROPY:l}=i,u=i.normalView||zr,h=r.pow2(),m=e.add(dr).normalize(),v=u.dot(e).clamp(),x=u.dot(dr).clamp(),S=u.dot(m).clamp(),w=dr.dot(m).clamp();let R=F0({f0:t,f90:n,dotVH:w}),C,E;if(xg(a)&&(R=By.mix(R,s)),xg(l)){const B=Bm.dot(e),L=Bm.dot(dr),O=Bm.dot(m),G=iA.dot(e),q=iA.dot(dr),z=iA.dot(m);C=Ate({alphaT:Y_,alphaB:h,dotTV:L,dotBV:q,dotTL:B,dotBL:G,dotNV:x,dotNL:v}),E=pte({alphaT:Y_,alphaB:h,dotNH:S,dotTH:O,dotBH:z})}else C=kU({alpha:h,dotNL:v,dotNV:x}),E=zU({alpha:h,dotNH:S});return R.mul(C).mul(E)}),_E=$e(({roughness:i,dotNV:e})=>{const t=dn(-1,-.0275,-.572,.022),n=dn(1,.0425,1.04,-.04),r=i.mul(t).add(n),s=r.x.mul(r.x).min(e.mul(-9.28).exp2()).mul(r.x).add(r.y);return Et(-1.04,1.04).mul(s).add(r.zw)}).setLayout({name:"DFGApprox",type:"vec2",inputs:[{name:"roughness",type:"float"},{name:"dotNV",type:"vec3"}]}),GU=$e(i=>{const{dotNV:e,specularColor:t,specularF90:n,roughness:r}=i,s=_E({dotNV:e,roughness:r});return t.mul(s.x).add(n.mul(s.y))}),qU=$e(({f:i,f90:e,dotVH:t})=>{const n=t.oneMinus().saturate(),r=n.mul(n),s=n.mul(r,r).clamp(0,.9999);return i.sub(Ue(e).mul(s)).div(s.oneMinus())}).setLayout({name:"Schlick_to_F0",type:"vec3",inputs:[{name:"f",type:"vec3"},{name:"f90",type:"float"},{name:"dotVH",type:"float"}]}),mte=$e(({roughness:i,dotNH:e})=>{const t=i.pow2(),n=ve(1).div(t),s=e.pow2().oneMinus().max(.0078125);return ve(2).add(n).mul(s.pow(n.mul(.5))).div(2*Math.PI)}).setLayout({name:"D_Charlie",type:"float",inputs:[{name:"roughness",type:"float"},{name:"dotNH",type:"float"}]}),gte=$e(({dotNV:i,dotNL:e})=>ve(1).div(ve(4).mul(e.add(i).sub(e.mul(i))))).setLayout({name:"V_Neubelt",type:"float",inputs:[{name:"dotNV",type:"float"},{name:"dotNL",type:"float"}]}),vte=$e(({lightDirection:i})=>{const e=i.add(dr).normalize(),t=zr.dot(i).clamp(),n=zr.dot(dr).clamp(),r=zr.dot(e).clamp(),s=mte({roughness:Uy,dotNH:r}),a=gte({dotNV:n,dotNL:t});return Xf.mul(s).mul(a)}),_te=$e(({N:i,V:e,roughness:t})=>{const s=.0078125,a=i.dot(e).saturate(),l=Et(t,a.oneMinus().sqrt());return l.assign(l.mul(.984375).add(s)),l}).setLayout({name:"LTC_Uv",type:"vec2",inputs:[{name:"N",type:"vec3"},{name:"V",type:"vec3"},{name:"roughness",type:"float"}]}),yte=$e(({f:i})=>{const e=i.length();return qr(e.mul(e).add(i.z).div(e.add(1)),0)}).setLayout({name:"LTC_ClippedSphereFormFactor",type:"float",inputs:[{name:"f",type:"vec3"}]}),lv=$e(({v1:i,v2:e})=>{const t=i.dot(e),n=t.abs().toVar(),r=n.mul(.0145206).add(.4965155).mul(n).add(.8543985).toVar(),s=n.add(4.1616724).mul(n).add(3.417594).toVar(),a=r.div(s),l=t.greaterThan(0).select(a,qr(t.mul(t).oneMinus(),1e-7).inverseSqrt().mul(.5).sub(a));return i.cross(e).mul(l)}).setLayout({name:"LTC_EdgeVectorFormFactor",type:"vec3",inputs:[{name:"v1",type:"vec3"},{name:"v2",type:"vec3"}]}),z6=$e(({N:i,V:e,P:t,mInv:n,p0:r,p1:s,p2:a,p3:l})=>{const u=s.sub(r).toVar(),h=l.sub(r).toVar(),m=u.cross(h),v=Ue().toVar();return ni(m.dot(t.sub(r)).greaterThanEqual(0),()=>{const x=e.sub(i.mul(e.dot(i))).normalize(),S=i.cross(x).negate(),w=n.mul(ha(x,S,i).transpose()).toVar(),R=w.mul(r.sub(t)).normalize().toVar(),C=w.mul(s.sub(t)).normalize().toVar(),E=w.mul(a.sub(t)).normalize().toVar(),B=w.mul(l.sub(t)).normalize().toVar(),L=Ue(0).toVar();L.addAssign(lv({v1:R,v2:C})),L.addAssign(lv({v1:C,v2:E})),L.addAssign(lv({v1:E,v2:B})),L.addAssign(lv({v1:B,v2:R})),v.assign(Ue(yte({f:L})))}),v}).setLayout({name:"LTC_Evaluate",type:"vec3",inputs:[{name:"N",type:"vec3"},{name:"V",type:"vec3"},{name:"P",type:"vec3"},{name:"mInv",type:"mat3"},{name:"p0",type:"vec3"},{name:"p1",type:"vec3"},{name:"p2",type:"vec3"},{name:"p3",type:"vec3"}]}),Yy=1/6,VU=i=>Wn(Yy,Wn(i,Wn(i,i.negate().add(3)).sub(3)).add(1)),YT=i=>Wn(Yy,Wn(i,Wn(i,Wn(3,i).sub(6))).add(4)),HU=i=>Wn(Yy,Wn(i,Wn(i,Wn(-3,i).add(3)).add(3)).add(1)),QT=i=>Wn(Yy,Cl(i,3)),G6=i=>VU(i).add(YT(i)),q6=i=>HU(i).add(QT(i)),V6=i=>Qr(-1,YT(i).div(VU(i).add(YT(i)))),H6=i=>Qr(1,QT(i).div(HU(i).add(QT(i)))),j6=(i,e,t)=>{const n=i.uvNode,r=Wn(n,e.zw).add(.5),s=hu(r),a=Hc(r),l=G6(a.x),u=q6(a.x),h=V6(a.x),m=H6(a.x),v=V6(a.y),x=H6(a.y),S=Et(s.x.add(h),s.y.add(v)).sub(.5).mul(e.xy),w=Et(s.x.add(m),s.y.add(v)).sub(.5).mul(e.xy),R=Et(s.x.add(h),s.y.add(x)).sub(.5).mul(e.xy),C=Et(s.x.add(m),s.y.add(x)).sub(.5).mul(e.xy),E=G6(a.y).mul(Qr(l.mul(i.sample(S).level(t)),u.mul(i.sample(w).level(t)))),B=q6(a.y).mul(Qr(l.mul(i.sample(R).level(t)),u.mul(i.sample(C).level(t))));return E.add(B)},jU=$e(([i,e=ve(3)])=>{const t=Et(i.size(Me(e))),n=Et(i.size(Me(e.add(1)))),r=Dl(1,t),s=Dl(1,n),a=j6(i,dn(r,t),hu(e)),l=j6(i,dn(s,n),Iy(e));return Hc(e).mix(a,l)}),W6=$e(([i,e,t,n,r])=>{const s=Ue(JM(e.negate(),Fc(i),Dl(1,n))),a=Ue(Rc(r[0].xyz),Rc(r[1].xyz),Rc(r[2].xyz));return Fc(s).mul(t.mul(a))}).setLayout({name:"getVolumeTransmissionRay",type:"vec3",inputs:[{name:"n",type:"vec3"},{name:"v",type:"vec3"},{name:"thickness",type:"float"},{name:"ior",type:"float"},{name:"modelMatrix",type:"mat4"}]}),xte=$e(([i,e])=>i.mul(vu(e.mul(2).sub(2),0,1))).setLayout({name:"applyIorToRoughness",type:"float",inputs:[{name:"roughness",type:"float"},{name:"ior",type:"float"}]}),bte=hE(),Ste=hE(),$6=$e(([i,e,t],{material:n})=>{const s=(n.side===hr?bte:Ste).sample(i),a=cu(Rg.x).mul(xte(e,t));return jU(s,a)}),X6=$e(([i,e,t])=>(ni(t.notEqual(0),()=>{const n=Oy(e).negate().div(t);return jM(n.negate().mul(i))}),Ue(1))).setLayout({name:"volumeAttenuation",type:"vec3",inputs:[{name:"transmissionDistance",type:"float"},{name:"attenuationColor",type:"vec3"},{name:"attenuationDistance",type:"float"}]}),Tte=$e(([i,e,t,n,r,s,a,l,u,h,m,v,x,S,w])=>{let R,C;if(w){R=dn().toVar(),C=Ue().toVar();const G=m.sub(1).mul(w.mul(.025)),q=Ue(m.sub(G),m,m.add(G));ki({start:0,end:3},({i:z})=>{const j=q.element(z),F=W6(i,e,v,j,l),V=a.add(F),Y=h.mul(u.mul(dn(V,1))),J=Et(Y.xy.div(Y.w)).toVar();J.addAssign(1),J.divAssign(2),J.assign(Et(J.x,J.y.oneMinus()));const ne=$6(J,t,j);R.element(z).assign(ne.element(z)),R.a.addAssign(ne.a),C.element(z).assign(n.element(z).mul(X6(Rc(F),x,S).element(z)))}),R.a.divAssign(3)}else{const G=W6(i,e,v,m,l),q=a.add(G),z=h.mul(u.mul(dn(q,1))),j=Et(z.xy.div(z.w)).toVar();j.addAssign(1),j.divAssign(2),j.assign(Et(j.x,j.y.oneMinus())),R=$6(j,t,m),C=n.mul(X6(Rc(G),x,S))}const E=C.rgb.mul(R.rgb),B=i.dot(e).clamp(),L=Ue(GU({dotNV:B,specularColor:r,specularF90:s,roughness:t})),O=C.r.add(C.g,C.b).div(3);return dn(L.oneMinus().mul(E),R.a.oneMinus().mul(O).oneMinus())}),wte=ha(3.2404542,-.969266,.0556434,-1.5371385,1.8760108,-.2040259,-.4985314,.041556,1.0572252),Mte=i=>{const e=i.sqrt();return Ue(1).add(e).div(Ue(1).sub(e))},Y6=(i,e)=>i.sub(e).div(i.add(e)).pow2(),Ete=(i,e)=>{const t=i.mul(2*Math.PI*1e-9),n=Ue(54856e-17,44201e-17,52481e-17),r=Ue(1681e3,1795300,2208400),s=Ue(43278e5,93046e5,66121e5),a=ve(9747e-17*Math.sqrt(2*Math.PI*45282e5)).mul(t.mul(2239900).add(e.x).cos()).mul(t.pow2().mul(-45282e5).exp());let l=n.mul(s.mul(2*Math.PI).sqrt()).mul(r.mul(t).add(e).cos()).mul(t.pow2().negate().mul(s).exp());return l=Ue(l.x.add(a),l.y,l.z).div(10685e-11),wte.mul(l)},Cte=$e(({outsideIOR:i,eta2:e,cosTheta1:t,thinFilmThickness:n,baseF0:r})=>{const s=Fi(i,e,kc(0,.03,n)),l=i.div(s).pow2().mul(t.pow2().oneMinus()).oneMinus();ni(l.lessThan(0),()=>Ue(1));const u=l.sqrt(),h=Y6(s,i),m=F0({f0:h,f90:1,dotVH:t}),v=m.oneMinus(),x=s.lessThan(i).select(Math.PI,0),S=ve(Math.PI).sub(x),w=Mte(r.clamp(0,.9999)),R=Y6(w,s.toVec3()),C=F0({f0:R,f90:1,dotVH:u}),E=Ue(w.x.lessThan(s).select(Math.PI,0),w.y.lessThan(s).select(Math.PI,0),w.z.lessThan(s).select(Math.PI,0)),B=s.mul(n,u,2),L=Ue(S).add(E),O=m.mul(C).clamp(1e-5,.9999),G=O.sqrt(),q=v.pow2().mul(C).div(Ue(1).sub(O)),j=m.add(q).toVar(),F=q.sub(v).toVar();return ki({start:1,end:2,condition:"<=",name:"m"},({m:V})=>{F.mulAssign(G);const Y=Ete(ve(V).mul(B),ve(V).mul(L)).mul(2);j.addAssign(F.mul(Y))}),j.max(Ue(0))}).setLayout({name:"evalIridescence",type:"vec3",inputs:[{name:"outsideIOR",type:"float"},{name:"eta2",type:"float"},{name:"cosTheta1",type:"float"},{name:"thinFilmThickness",type:"float"},{name:"baseF0",type:"vec3"}]}),Rte=$e(({normal:i,viewDir:e,roughness:t})=>{const n=i.dot(e).saturate(),r=t.pow2(),s=zs(t.lessThan(.25),ve(-339.2).mul(r).add(ve(161.4).mul(t)).sub(25.9),ve(-8.48).mul(r).add(ve(14.3).mul(t)).sub(9.95)),a=zs(t.lessThan(.25),ve(44).mul(r).sub(ve(23.7).mul(t)).add(3.26),ve(1.97).mul(r).sub(ve(3.27).mul(t)).add(.72));return zs(t.lessThan(.25),0,ve(.1).mul(t).sub(.025)).add(s.mul(n).add(a).exp()).mul(1/Math.PI).saturate()}),Q3=Ue(.04),K3=ve(1);class WU extends Xy{constructor(e=!1,t=!1,n=!1,r=!1,s=!1,a=!1){super(),this.clearcoat=e,this.sheen=t,this.iridescence=n,this.anisotropy=r,this.transmission=s,this.dispersion=a,this.clearcoatRadiance=null,this.clearcoatSpecularDirect=null,this.clearcoatSpecularIndirect=null,this.sheenSpecularDirect=null,this.sheenSpecularIndirect=null,this.iridescenceFresnel=null,this.iridescenceF0=null}start(e){if(this.clearcoat===!0&&(this.clearcoatRadiance=Ue().toVar("clearcoatRadiance"),this.clearcoatSpecularDirect=Ue().toVar("clearcoatSpecularDirect"),this.clearcoatSpecularIndirect=Ue().toVar("clearcoatSpecularIndirect")),this.sheen===!0&&(this.sheenSpecularDirect=Ue().toVar("sheenSpecularDirect"),this.sheenSpecularIndirect=Ue().toVar("sheenSpecularIndirect")),this.iridescence===!0){const t=zr.dot(dr).clamp();this.iridescenceFresnel=Cte({outsideIOR:ve(1),eta2:OM,cosTheta1:t,thinFilmThickness:IM,baseF0:ka}),this.iridescenceF0=qU({f:this.iridescenceFresnel,f90:1,dotVH:t})}if(this.transmission===!0){const t=Nc,n=S9.sub(Nc).normalize(),r=Hy;e.backdrop=Tte(r,n,Zl,Ui,ka,Mg,t,$o,so,_A,Om,FM,zM,kM,this.dispersion?GM:null),e.backdropAlpha=K_,Ui.a.mulAssign(Fi(1,e.backdrop.a,K_))}}computeMultiscattering(e,t,n){const r=zr.dot(dr).clamp(),s=_E({roughness:Zl,dotNV:r}),l=(this.iridescenceF0?By.mix(ka,this.iridescenceF0):ka).mul(s.x).add(n.mul(s.y)),h=s.x.add(s.y).oneMinus(),m=ka.add(ka.oneMinus().mul(.047619)),v=l.mul(m).div(h.mul(m).oneMinus());e.addAssign(l),t.addAssign(v.mul(h))}direct({lightDirection:e,lightColor:t,reflectedLight:n}){const s=zr.dot(e).clamp().mul(t);if(this.sheen===!0&&this.sheenSpecularDirect.addAssign(s.mul(vte({lightDirection:e}))),this.clearcoat===!0){const l=Qd.dot(e).clamp().mul(t);this.clearcoatSpecularDirect.addAssign(l.mul(XT({lightDirection:e,f0:Q3,f90:K3,roughness:wg,normalView:Qd})))}n.directDiffuse.addAssign(s.mul(AA({diffuseColor:Ui.rgb}))),n.directSpecular.addAssign(s.mul(XT({lightDirection:e,f0:ka,f90:1,roughness:Zl,iridescence:this.iridescence,f:this.iridescenceFresnel,USE_IRIDESCENCE:this.iridescence,USE_ANISOTROPY:this.anisotropy})))}directRectArea({lightColor:e,lightPosition:t,halfWidth:n,halfHeight:r,reflectedLight:s,ltc_1:a,ltc_2:l}){const u=t.add(n).sub(r),h=t.sub(n).sub(r),m=t.sub(n).add(r),v=t.add(n).add(r),x=zr,S=dr,w=Xr.toVar(),R=_te({N:x,V:S,roughness:Zl}),C=a.sample(R).toVar(),E=l.sample(R).toVar(),B=ha(Ue(C.x,0,C.y),Ue(0,1,0),Ue(C.z,0,C.w)).toVar(),L=ka.mul(E.x).add(ka.oneMinus().mul(E.y)).toVar();s.directSpecular.addAssign(e.mul(L).mul(z6({N:x,V:S,P:w,mInv:B,p0:u,p1:h,p2:m,p3:v}))),s.directDiffuse.addAssign(e.mul(Ui).mul(z6({N:x,V:S,P:w,mInv:ha(1,0,0,0,1,0,0,0,1),p0:u,p1:h,p2:m,p3:v})))}indirect(e,t,n){this.indirectDiffuse(e,t,n),this.indirectSpecular(e,t,n),this.ambientOcclusion(e,t,n)}indirectDiffuse({irradiance:e,reflectedLight:t}){t.indirectDiffuse.addAssign(e.mul(AA({diffuseColor:Ui})))}indirectSpecular({radiance:e,iblIrradiance:t,reflectedLight:n}){if(this.sheen===!0&&this.sheenSpecularIndirect.addAssign(t.mul(Xf,Rte({normal:zr,viewDir:dr,roughness:Uy}))),this.clearcoat===!0){const h=Qd.dot(dr).clamp(),m=GU({dotNV:h,specularColor:Q3,specularF90:K3,roughness:wg});this.clearcoatSpecularIndirect.addAssign(this.clearcoatRadiance.mul(m))}const r=Ue().toVar("singleScattering"),s=Ue().toVar("multiScattering"),a=t.mul(1/Math.PI);this.computeMultiscattering(r,s,Mg);const l=r.add(s),u=Ui.mul(l.r.max(l.g).max(l.b).oneMinus());n.indirectSpecular.addAssign(e.mul(r)),n.indirectSpecular.addAssign(s.mul(a)),n.indirectDiffuse.addAssign(u.mul(a))}ambientOcclusion({ambientOcclusion:e,reflectedLight:t}){const r=zr.dot(dr).clamp().add(e),s=Zl.mul(-16).oneMinus().negate().exp2(),a=e.sub(r.pow(s).oneMinus()).clamp();this.clearcoat===!0&&this.clearcoatSpecularIndirect.mulAssign(e),this.sheen===!0&&this.sheenSpecularIndirect.mulAssign(e),t.indirectDiffuse.mulAssign(e),t.indirectSpecular.mulAssign(a)}finish(e){const{outgoingLight:t}=e;if(this.clearcoat===!0){const n=Qd.dot(dr).clamp(),r=F0({dotVH:n,f0:Q3,f90:K3}),s=t.mul(X_.mul(r).oneMinus()).add(this.clearcoatSpecularDirect.add(this.clearcoatSpecularIndirect).mul(X_));t.assign(s)}if(this.sheen===!0){const n=Xf.r.max(Xf.g).max(Xf.b).mul(.157).oneMinus(),r=t.mul(n).add(this.sheenSpecularDirect,this.sheenSpecularIndirect);t.assign(r)}}}const Q6=ve(1),KT=ve(-2),uv=ve(.8),Z3=ve(-1),cv=ve(.4),J3=ve(2),hv=ve(.305),eS=ve(3),K6=ve(.21),Nte=ve(4),Z6=ve(4),Dte=ve(16),Pte=$e(([i])=>{const e=Ue(ur(i)).toVar(),t=ve(-1).toVar();return ni(e.x.greaterThan(e.z),()=>{ni(e.x.greaterThan(e.y),()=>{t.assign(zs(i.x.greaterThan(0),0,3))}).Else(()=>{t.assign(zs(i.y.greaterThan(0),1,4))})}).Else(()=>{ni(e.z.greaterThan(e.y),()=>{t.assign(zs(i.z.greaterThan(0),2,5))}).Else(()=>{t.assign(zs(i.y.greaterThan(0),1,4))})}),t}).setLayout({name:"getFace",type:"float",inputs:[{name:"direction",type:"vec3"}]}),Lte=$e(([i,e])=>{const t=Et().toVar();return ni(e.equal(0),()=>{t.assign(Et(i.z,i.y).div(ur(i.x)))}).ElseIf(e.equal(1),()=>{t.assign(Et(i.x.negate(),i.z.negate()).div(ur(i.y)))}).ElseIf(e.equal(2),()=>{t.assign(Et(i.x.negate(),i.y).div(ur(i.z)))}).ElseIf(e.equal(3),()=>{t.assign(Et(i.z.negate(),i.y).div(ur(i.x)))}).ElseIf(e.equal(4),()=>{t.assign(Et(i.x.negate(),i.z).div(ur(i.y)))}).Else(()=>{t.assign(Et(i.x,i.y).div(ur(i.z)))}),Wn(.5,t.add(1))}).setLayout({name:"getUV",type:"vec2",inputs:[{name:"direction",type:"vec3"},{name:"face",type:"float"}]}),Ute=$e(([i])=>{const e=ve(0).toVar();return ni(i.greaterThanEqual(uv),()=>{e.assign(Q6.sub(i).mul(Z3.sub(KT)).div(Q6.sub(uv)).add(KT))}).ElseIf(i.greaterThanEqual(cv),()=>{e.assign(uv.sub(i).mul(J3.sub(Z3)).div(uv.sub(cv)).add(Z3))}).ElseIf(i.greaterThanEqual(hv),()=>{e.assign(cv.sub(i).mul(eS.sub(J3)).div(cv.sub(hv)).add(J3))}).ElseIf(i.greaterThanEqual(K6),()=>{e.assign(hv.sub(i).mul(Nte.sub(eS)).div(hv.sub(K6)).add(eS))}).Else(()=>{e.assign(ve(-2).mul(cu(Wn(1.16,i))))}),e}).setLayout({name:"roughnessToMip",type:"float",inputs:[{name:"roughness",type:"float"}]}),$U=$e(([i,e])=>{const t=i.toVar();t.assign(Wn(2,t).sub(1));const n=Ue(t,1).toVar();return ni(e.equal(0),()=>{n.assign(n.zyx)}).ElseIf(e.equal(1),()=>{n.assign(n.xzy),n.xz.mulAssign(-1)}).ElseIf(e.equal(2),()=>{n.x.mulAssign(-1)}).ElseIf(e.equal(3),()=>{n.assign(n.zyx),n.xz.mulAssign(-1)}).ElseIf(e.equal(4),()=>{n.assign(n.xzy),n.xy.mulAssign(-1)}).ElseIf(e.equal(5),()=>{n.z.mulAssign(-1)}),n}).setLayout({name:"getDirection",type:"vec3",inputs:[{name:"uv",type:"vec2"},{name:"face",type:"float"}]}),XU=$e(([i,e,t,n,r,s])=>{const a=ve(t),l=Ue(e),u=vu(Ute(a),KT,s),h=Hc(u),m=hu(u),v=Ue(ZT(i,l,m,n,r,s)).toVar();return ni(h.notEqual(0),()=>{const x=Ue(ZT(i,l,m.add(1),n,r,s)).toVar();v.assign(Fi(v,x,h))}),v}),ZT=$e(([i,e,t,n,r,s])=>{const a=ve(t).toVar(),l=Ue(e),u=ve(Pte(l)).toVar(),h=ve(qr(Z6.sub(a),0)).toVar();a.assign(qr(a,Z6));const m=ve(O0(a)).toVar(),v=Et(Lte(l,u).mul(m.sub(2)).add(1)).toVar();return ni(u.greaterThan(2),()=>{v.y.addAssign(m),u.subAssign(3)}),v.x.addAssign(u.mul(m)),v.x.addAssign(h.mul(Wn(3,Dte))),v.y.addAssign(Wn(4,O0(s).sub(m))),v.x.mulAssign(n),v.y.mulAssign(r),i.sample(v).grad(Et(),Et())}),tS=$e(({envMap:i,mipInt:e,outputDirection:t,theta:n,axis:r,CUBEUV_TEXEL_WIDTH:s,CUBEUV_TEXEL_HEIGHT:a,CUBEUV_MAX_MIP:l})=>{const u=yc(n),h=t.mul(u).add(r.cross(t).mul(Mo(n))).add(r.mul(r.dot(t).mul(u.oneMinus())));return ZT(i,h,e,s,a,l)}),YU=$e(({n:i,latitudinal:e,poleAxis:t,outputDirection:n,weights:r,samples:s,dTheta:a,mipInt:l,envMap:u,CUBEUV_TEXEL_WIDTH:h,CUBEUV_TEXEL_HEIGHT:m,CUBEUV_MAX_MIP:v})=>{const x=Ue(zs(e,t,ky(t,n))).toVar();ni(HM(x.equals(Ue(0))),()=>{x.assign(Ue(n.z,0,n.x.negate()))}),x.assign(Fc(x));const S=Ue().toVar();return S.addAssign(r.element(Me(0)).mul(tS({theta:0,axis:x,outputDirection:n,mipInt:l,envMap:u,CUBEUV_TEXEL_WIDTH:h,CUBEUV_TEXEL_HEIGHT:m,CUBEUV_MAX_MIP:v}))),ki({start:Me(1),end:i},({i:w})=>{ni(w.greaterThanEqual(s),()=>{wU()});const R=ve(a.mul(ve(w))).toVar();S.addAssign(r.element(w).mul(tS({theta:R.mul(-1),axis:x,outputDirection:n,mipInt:l,envMap:u,CUBEUV_TEXEL_WIDTH:h,CUBEUV_TEXEL_HEIGHT:m,CUBEUV_MAX_MIP:v}))),S.addAssign(r.element(w).mul(tS({theta:R,axis:x,outputDirection:n,mipInt:l,envMap:u,CUBEUV_TEXEL_WIDTH:h,CUBEUV_TEXEL_HEIGHT:m,CUBEUV_MAX_MIP:v})))}),dn(S,1)});let ny=null;const J6=new WeakMap;function Bte(i){const e=Math.log2(i)-2,t=1/i;return{texelWidth:1/(3*Math.max(Math.pow(2,e),112)),texelHeight:t,maxMip:e}}function Ote(i){let e=J6.get(i);if((e!==void 0?e.pmremVersion:-1)!==i.pmremVersion){const n=i.image;if(i.isCubeTexture)if(Fte(n))e=ny.fromCubemap(i,e);else return null;else if(kte(n))e=ny.fromEquirectangular(i,e);else return null;e.pmremVersion=i.pmremVersion,J6.set(i,e)}return e.texture}class Ite extends Zr{static get type(){return"PMREMNode"}constructor(e,t=null,n=null){super("vec3"),this._value=e,this._pmrem=null,this.uvNode=t,this.levelNode=n,this._generator=null;const r=new vs;r.isRenderTargetTexture=!0,this._texture=di(r),this._width=gn(0),this._height=gn(0),this._maxMip=gn(0),this.updateBeforeType=jn.RENDER}set value(e){this._value=e,this._pmrem=null}get value(){return this._value}updateFromTexture(e){const t=Bte(e.image.height);this._texture.value=e,this._width.value=t.texelWidth,this._height.value=t.texelHeight,this._maxMip.value=t.maxMip}updateBefore(){let e=this._pmrem;const t=e?e.pmremVersion:-1,n=this._value;t!==n.pmremVersion&&(n.isPMREMTexture===!0?e=n:e=Ote(n),e!==null&&(this._pmrem=e,this.updateFromTexture(e)))}setup(e){ny===null&&(ny=e.createPMREMGenerator()),this.updateBefore(e);let t=this.uvNode;t===null&&e.context.getUV&&(t=e.context.getUV(this));const n=this.value;e.renderer.coordinateSystem===Ha&&n.isPMREMTexture!==!0&&n.isRenderTargetTexture===!0&&(t=Ue(t.x.negate(),t.yz)),t=Ue(t.x,t.y.negate(),t.z);let r=this.levelNode;return r===null&&e.context.getTextureLevel&&(r=e.context.getTextureLevel(this)),XU(this._texture,t,r,this._width,this._height,this._maxMip)}}function Fte(i){if(i==null)return!1;let e=0;const t=6;for(let n=0;n0}const yE=ut(Ite),eN=new WeakMap;class zte extends K0{static get type(){return"EnvironmentNode"}constructor(e=null){super(),this.envNode=e}setup(e){const{material:t}=e;let n=this.envNode;if(n.isTextureNode||n.isMaterialReferenceNode){const S=n.isTextureNode?n.value:t[n.property];let w=eN.get(S);w===void 0&&(w=yE(S),eN.set(S,w)),n=w}const s=t.envMap?ji("envMapIntensity","float",e.material):ji("environmentIntensity","float",e.scene),l=t.useAnisotropy===!0||t.anisotropy>0?z9:zr,u=n.context(tN(Zl,l)).mul(s),h=n.context(Gte(Hy)).mul(Math.PI).mul(s),m=Im(u),v=Im(h);e.context.radiance.addAssign(m),e.context.iblIrradiance.addAssign(v);const x=e.context.lightingModel.clearcoatRadiance;if(x){const S=n.context(tN(wg,Qd)).mul(s),w=Im(S);x.addAssign(w)}}}const tN=(i,e)=>{let t=null;return{getUV:()=>(t===null&&(t=dr.negate().reflect(e),t=i.mul(i).mix(t,e).normalize(),t=t.transformDirection(so)),t),getTextureLevel:()=>i}},Gte=i=>({getUV:()=>i,getTextureLevel:()=>ve(1)}),qte=new nD;class QU extends Vr{static get type(){return"MeshStandardNodeMaterial"}constructor(e){super(),this.isMeshStandardNodeMaterial=!0,this.lights=!0,this.emissiveNode=null,this.metalnessNode=null,this.roughnessNode=null,this.setDefaultValues(qte),this.setValues(e)}setupEnvironment(e){let t=super.setupEnvironment(e);return t===null&&e.environmentNode&&(t=e.environmentNode),t?new zte(t):null}setupLightingModel(){return new WU}setupSpecular(){const e=Fi(Ue(.04),Ui.rgb,Tg);ka.assign(e),Mg.assign(1)}setupVariants(){const e=this.metalnessNode?ve(this.metalnessNode):Y9;Tg.assign(e);let t=this.roughnessNode?ve(this.roughnessNode):X9;t=vE({roughness:t}),Zl.assign(t),this.setupSpecular(),Ui.assign(dn(Ui.rgb.mul(e.oneMinus()),Ui.a))}copy(e){return this.emissiveNode=e.emissiveNode,this.metalnessNode=e.metalnessNode,this.roughnessNode=e.roughnessNode,super.copy(e)}}const Vte=new Rz;class Hte extends QU{static get type(){return"MeshPhysicalNodeMaterial"}constructor(e){super(),this.isMeshPhysicalNodeMaterial=!0,this.clearcoatNode=null,this.clearcoatRoughnessNode=null,this.clearcoatNormalNode=null,this.sheenNode=null,this.sheenRoughnessNode=null,this.iridescenceNode=null,this.iridescenceIORNode=null,this.iridescenceThicknessNode=null,this.specularIntensityNode=null,this.specularColorNode=null,this.iorNode=null,this.transmissionNode=null,this.thicknessNode=null,this.attenuationDistanceNode=null,this.attenuationColorNode=null,this.dispersionNode=null,this.anisotropyNode=null,this.setDefaultValues(Vte),this.setValues(e)}get useClearcoat(){return this.clearcoat>0||this.clearcoatNode!==null}get useIridescence(){return this.iridescence>0||this.iridescenceNode!==null}get useSheen(){return this.sheen>0||this.sheenNode!==null}get useAnisotropy(){return this.anisotropy>0||this.anisotropyNode!==null}get useTransmission(){return this.transmission>0||this.transmissionNode!==null}get useDispersion(){return this.dispersion>0||this.dispersionNode!==null}setupSpecular(){const e=this.iorNode?ve(this.iorNode):uU;Om.assign(e),ka.assign(Fi(to(ZM(Om.sub(1).div(Om.add(1))).mul($9),Ue(1)).mul($T),Ui.rgb,Tg)),Mg.assign(Fi($T,1,Tg))}setupLightingModel(){return new WU(this.useClearcoat,this.useSheen,this.useIridescence,this.useAnisotropy,this.useTransmission,this.useDispersion)}setupVariants(e){if(super.setupVariants(e),this.useClearcoat){const t=this.clearcoatNode?ve(this.clearcoatNode):K9,n=this.clearcoatRoughnessNode?ve(this.clearcoatRoughnessNode):Z9;X_.assign(t),wg.assign(vE({roughness:n}))}if(this.useSheen){const t=this.sheenNode?Ue(this.sheenNode):tU,n=this.sheenRoughnessNode?ve(this.sheenRoughnessNode):nU;Xf.assign(t),Uy.assign(n)}if(this.useIridescence){const t=this.iridescenceNode?ve(this.iridescenceNode):rU,n=this.iridescenceIORNode?ve(this.iridescenceIORNode):sU,r=this.iridescenceThicknessNode?ve(this.iridescenceThicknessNode):aU;By.assign(t),OM.assign(n),IM.assign(r)}if(this.useAnisotropy){const t=(this.anisotropyNode?Et(this.anisotropyNode):iU).toVar();Rh.assign(t.length()),ni(Rh.equal(0),()=>{t.assign(Et(1,0))}).Else(()=>{t.divAssign(Et(Rh)),Rh.assign(Rh.saturate())}),Y_.assign(Rh.pow2().mix(Zl.pow2(),1)),Bm.assign(Yf[0].mul(t.x).add(Yf[1].mul(t.y))),iA.assign(Yf[1].mul(t.x).sub(Yf[0].mul(t.y)))}if(this.useTransmission){const t=this.transmissionNode?ve(this.transmissionNode):oU,n=this.thicknessNode?ve(this.thicknessNode):lU,r=this.attenuationDistanceNode?ve(this.attenuationDistanceNode):cU,s=this.attenuationColorNode?Ue(this.attenuationColorNode):hU;if(K_.assign(t),FM.assign(n),kM.assign(r),zM.assign(s),this.useDispersion){const a=this.dispersionNode?ve(this.dispersionNode):mU;GM.assign(a)}}}setupClearcoatNormal(){return this.clearcoatNormalNode?Ue(this.clearcoatNormalNode):J9}setup(e){e.context.setupClearcoatNormal=()=>this.setupClearcoatNormal(e),super.setup(e)}copy(e){return this.clearcoatNode=e.clearcoatNode,this.clearcoatRoughnessNode=e.clearcoatRoughnessNode,this.clearcoatNormalNode=e.clearcoatNormalNode,this.sheenNode=e.sheenNode,this.sheenRoughnessNode=e.sheenRoughnessNode,this.iridescenceNode=e.iridescenceNode,this.iridescenceIORNode=e.iridescenceIORNode,this.iridescenceThicknessNode=e.iridescenceThicknessNode,this.specularIntensityNode=e.specularIntensityNode,this.specularColorNode=e.specularColorNode,this.transmissionNode=e.transmissionNode,this.thicknessNode=e.thicknessNode,this.attenuationDistanceNode=e.attenuationDistanceNode,this.attenuationColorNode=e.attenuationColorNode,this.dispersionNode=e.dispersionNode,this.anisotropyNode=e.anisotropyNode,super.copy(e)}}const jte=$e(({normal:i,lightDirection:e,builder:t})=>{const n=i.dot(e),r=Et(n.mul(.5).add(.5),0);if(t.material.gradientMap){const s=Tc("gradientMap","texture").context({getUV:()=>r});return Ue(s.r)}else{const s=r.fwidth().mul(.5);return Fi(Ue(.7),Ue(1),kc(ve(.7).sub(s.x),ve(.7).add(s.x),r.x))}});class Wte extends Xy{direct({lightDirection:e,lightColor:t,reflectedLight:n},r,s){const a=jte({normal:qy,lightDirection:e,builder:s}).mul(t);n.directDiffuse.addAssign(a.mul(AA({diffuseColor:Ui.rgb})))}indirect({ambientOcclusion:e,irradiance:t,reflectedLight:n}){n.indirectDiffuse.addAssign(t.mul(AA({diffuseColor:Ui}))),n.indirectDiffuse.mulAssign(e)}}const $te=new Nz;class Xte extends Vr{static get type(){return"MeshToonNodeMaterial"}constructor(e){super(),this.isMeshToonNodeMaterial=!0,this.lights=!0,this.setDefaultValues($te),this.setValues(e)}setupLightingModel(){return new Wte}}class Yte extends Zr{static get type(){return"MatcapUVNode"}constructor(){super("vec2")}setup(){const e=Ue(dr.z,0,dr.x.negate()).normalize(),t=dr.cross(e);return Et(e.dot(zr),t.dot(zr)).mul(.495).add(.5)}}const KU=Vt(Yte),Qte=new Uz;class Kte extends Vr{static get type(){return"MeshMatcapNodeMaterial"}constructor(e){super(),this.isMeshMatcapNodeMaterial=!0,this.setDefaultValues(Qte),this.setValues(e)}setupVariants(e){const t=KU;let n;e.material.matcap?n=Tc("matcap","texture").context({getUV:()=>t}):n=Ue(Fi(.2,.8,t.y)),Ui.rgb.mulAssign(n.rgb)}}const Zte=new Kw;class Jte extends Vr{static get type(){return"PointsNodeMaterial"}constructor(e){super(),this.isPointsNodeMaterial=!0,this.setDefaultValues(Zte),this.setValues(e)}}class ene extends Zr{static get type(){return"RotateNode"}constructor(e,t){super(),this.positionNode=e,this.rotationNode=t}getNodeType(e){return this.positionNode.getNodeType(e)}setup(e){const{rotationNode:t,positionNode:n}=this;if(this.getNodeType(e)==="vec2"){const s=t.cos(),a=t.sin();return Ly(s,a,a.negate(),s).mul(n)}else{const s=t,a=nA(dn(1,0,0,0),dn(0,yc(s.x),Mo(s.x).negate(),0),dn(0,Mo(s.x),yc(s.x),0),dn(0,0,0,1)),l=nA(dn(yc(s.y),0,Mo(s.y),0),dn(0,1,0,0),dn(Mo(s.y).negate(),0,yc(s.y),0),dn(0,0,0,1)),u=nA(dn(yc(s.z),Mo(s.z).negate(),0,0),dn(Mo(s.z),yc(s.z),0,0),dn(0,0,1,0),dn(0,0,0,1));return a.mul(l).mul(u).mul(dn(n,1)).xyz}}}const xE=ut(ene),tne=new Wk;class nne extends Vr{static get type(){return"SpriteNodeMaterial"}constructor(e){super(),this.isSpriteNodeMaterial=!0,this._useSizeAttenuation=!0,this.positionNode=null,this.rotationNode=null,this.scaleNode=null,this.setDefaultValues(tne),this.setValues(e)}setupPositionView(e){const{object:t,camera:n}=e,r=this.sizeAttenuation,{positionNode:s,rotationNode:a,scaleNode:l}=this,u=Q0.mul(Ue(s||0));let h=Et($o[0].xyz.length(),$o[1].xyz.length());if(l!==null&&(h=h.mul(l)),r===!1)if(n.isPerspectiveCamera)h=h.mul(u.z.negate());else{const S=ve(2).div(_A.element(1).element(1));h=h.mul(S.mul(2))}let m=Gy.xy;if(t.center&&t.center.isVector2===!0){const S=bJ("center","vec2",t);m=m.sub(S.sub(.5))}m=m.mul(h);const v=ve(a||eU),x=xE(m,v);return dn(u.xy.add(x),u.zw)}copy(e){return this.positionNode=e.positionNode,this.rotationNode=e.rotationNode,this.scaleNode=e.scaleNode,super.copy(e)}get sizeAttenuation(){return this._useSizeAttenuation}set sizeAttenuation(e){this._useSizeAttenuation!==e&&(this._useSizeAttenuation=e,this.needsUpdate=!0)}}class ine extends Xy{constructor(){super(),this.shadowNode=ve(1).toVar("shadowMask")}direct({shadowMask:e}){this.shadowNode.mulAssign(e)}finish(e){Ui.a.mulAssign(this.shadowNode.oneMinus()),e.outgoingLight.rgb.assign(Ui.rgb)}}const rne=new Cz;class sne extends Vr{static get type(){return"ShadowNodeMaterial"}constructor(e){super(),this.isShadowNodeMaterial=!0,this.lights=!0,this.setDefaultValues(rne),this.setValues(e)}setupLightingModel(){return new ine}}const ane=$e(({texture:i,uv:e})=>{const n=Ue().toVar();return ni(e.x.lessThan(1e-4),()=>{n.assign(Ue(1,0,0))}).ElseIf(e.y.lessThan(1e-4),()=>{n.assign(Ue(0,1,0))}).ElseIf(e.z.lessThan(1e-4),()=>{n.assign(Ue(0,0,1))}).ElseIf(e.x.greaterThan(1-1e-4),()=>{n.assign(Ue(-1,0,0))}).ElseIf(e.y.greaterThan(1-1e-4),()=>{n.assign(Ue(0,-1,0))}).ElseIf(e.z.greaterThan(1-1e-4),()=>{n.assign(Ue(0,0,-1))}).Else(()=>{const s=i.sample(e.add(Ue(-.01,0,0))).r.sub(i.sample(e.add(Ue(.01,0,0))).r),a=i.sample(e.add(Ue(0,-.01,0))).r.sub(i.sample(e.add(Ue(0,.01,0))).r),l=i.sample(e.add(Ue(0,0,-.01))).r.sub(i.sample(e.add(Ue(0,0,.01))).r);n.assign(Ue(s,a,l))}),n.normalize()});class one extends yu{static get type(){return"Texture3DNode"}constructor(e,t=null,n=null){super(e,t,n),this.isTexture3DNode=!0}getInputType(){return"texture3D"}getDefaultUV(){return Ue(.5,.5,.5)}setUpdateMatrix(){}setupUV(e,t){const n=this.value;return e.isFlipY()&&(n.isRenderTargetTexture===!0||n.isFramebufferTexture===!0)&&(this.sampler?t=t.flipY():t=t.setY(Me(Fh(this,this.levelNode).y).sub(t.y).sub(1))),t}generateUV(e,t){return t.build(e,"vec3")}normal(e){return ane({texture:this,uv:e})}}const lne=ut(one);class une{constructor(e,t){this.nodes=e,this.info=t,this._context=self,this._animationLoop=null,this._requestId=null}start(){const e=(t,n)=>{this._requestId=this._context.requestAnimationFrame(e),this.info.autoReset===!0&&this.info.reset(),this.nodes.nodeFrame.update(),this.info.frame=this.nodes.nodeFrame.frameId,this._animationLoop!==null&&this._animationLoop(t,n)};e()}stop(){this._context.cancelAnimationFrame(this._requestId),this._requestId=null}setAnimationLoop(e){this._animationLoop=e}setContext(e){this._context=e}dispose(){this.stop()}}class Su{constructor(){this.weakMap=new WeakMap}get(e){let t=this.weakMap;for(let n=0;n{this.dispose()},this.material.addEventListener("dispose",this.onMaterialDispose)}updateClipping(e){this.clippingContext=e}get clippingNeedsUpdate(){return this.clippingContext===null||this.clippingContext.cacheKey===this.clippingContextCacheKey?!1:(this.clippingContextCacheKey=this.clippingContext.cacheKey,!0)}get hardwareClippingPlanes(){return this.material.hardwareClipping===!0?this.clippingContext.unionClippingCount:0}getNodeBuilderState(){return this._nodeBuilderState||(this._nodeBuilderState=this._nodes.getForRender(this))}getMonitor(){return this._monitor||(this._monitor=this.getNodeBuilderState().monitor)}getBindings(){return this._bindings||(this._bindings=this.getNodeBuilderState().createBindings())}getIndex(){return this._geometries.getIndex(this)}getIndirect(){return this._geometries.getIndirect(this)}getChainArray(){return[this.object,this.material,this.context,this.lightsNode]}setGeometry(e){this.geometry=e,this.attributes=null}getAttributes(){if(this.attributes!==null)return this.attributes;const e=this.getNodeBuilderState().nodeAttributes,t=this.geometry,n=[],r=new Set;for(const s of e){const a=s.node&&s.node.attribute?s.node.attribute:t.getAttribute(s.name);if(a===void 0)continue;n.push(a);const l=a.isInterleavedBufferAttribute?a.data:a;r.add(l)}return this.attributes=n,this.vertexBuffers=Array.from(r.values()),n}getVertexBuffers(){return this.vertexBuffers===null&&this.getAttributes(),this.vertexBuffers}getDrawParameters(){const{object:e,material:t,geometry:n,group:r,drawRange:s}=this,a=this.drawParams||(this.drawParams={vertexCount:0,firstVertex:0,instanceCount:0,firstInstance:0}),l=this.getIndex(),u=l!==null,h=n.isInstancedBufferGeometry?n.instanceCount:e.count>1?e.count:1;if(h===0)return null;if(a.instanceCount=h,e.isBatchedMesh===!0)return a;let m=1;t.wireframe===!0&&!e.isPoints&&!e.isLineSegments&&!e.isLine&&!e.isLineLoop&&(m=2);let v=s.start*m,x=(s.start+s.count)*m;r!==null&&(v=Math.max(v,r.start*m),x=Math.min(x,(r.start+r.count)*m));const S=n.attributes.position;let w=1/0;u?w=l.count:S!=null&&(w=S.count),v=Math.max(v,0),x=Math.min(x,w);const R=x-v;return R<0||R===1/0?null:(a.vertexCount=R,a.firstVertex=v,a)}getGeometryCacheKey(){const{geometry:e}=this;let t="";for(const n of Object.keys(e.attributes).sort()){const r=e.attributes[n];t+=n+",",r.data&&(t+=r.data.stride+","),r.offset&&(t+=r.offset+","),r.itemSize&&(t+=r.itemSize+","),r.normalized&&(t+="n,")}return e.index&&(t+="index,"),t}getMaterialCacheKey(){const{object:e,material:t}=this;let n=t.customProgramCacheKey();for(const r of hne(t)){if(/^(is[A-Z]|_)|^(visible|version|uuid|name|opacity|userData)$/.test(r))continue;const s=t[r];let a;if(s!==null){const l=typeof s;l==="number"?a=s!==0?"1":"0":l==="object"?(a="{",s.isTexture&&(a+=s.mapping),a+="}"):a=String(s)}else a=String(s);n+=a+","}return n+=this.clippingContextCacheKey+",",e.geometry&&(n+=this.getGeometryCacheKey()),e.skeleton&&(n+=e.skeleton.bones.length+","),e.morphTargetInfluences&&(n+=e.morphTargetInfluences.length+","),e.isBatchedMesh&&(n+=e._matricesTexture.uuid+",",e._colorsTexture!==null&&(n+=e._colorsTexture.uuid+",")),e.count>1&&(n+=e.uuid+","),n+=e.receiveShadow+",",PP(n)}get needsGeometryUpdate(){return this.geometry.id!==this.object.geometry.id}get needsUpdate(){return this.initialNodesCacheKey!==this.getDynamicCacheKey()||this.clippingNeedsUpdate}getDynamicCacheKey(){let e=this._nodes.getCacheKey(this.scene,this.lightsNode);return this.object.receiveShadow&&(e+=1),e}getCacheKey(){return this.getMaterialCacheKey()+this.getDynamicCacheKey()}dispose(){this.material.removeEventListener("dispose",this.onMaterialDispose),this.onDispose()}}const Ed=[];class Ane{constructor(e,t,n,r,s,a){this.renderer=e,this.nodes=t,this.geometries=n,this.pipelines=r,this.bindings=s,this.info=a,this.chainMaps={}}get(e,t,n,r,s,a,l,u){const h=this.getChainMap(u);Ed[0]=e,Ed[1]=t,Ed[2]=a,Ed[3]=s;let m=h.get(Ed);return m===void 0?(m=this.createRenderObject(this.nodes,this.geometries,this.renderer,e,t,n,r,s,a,l,u),h.set(Ed,m)):(m.updateClipping(l),m.needsGeometryUpdate&&m.setGeometry(e.geometry),(m.version!==t.version||m.needsUpdate)&&(m.initialCacheKey!==m.getCacheKey()?(m.dispose(),m=this.get(e,t,n,r,s,a,l,u)):m.version=t.version)),m}getChainMap(e="default"){return this.chainMaps[e]||(this.chainMaps[e]=new Su)}dispose(){this.chainMaps={}}createRenderObject(e,t,n,r,s,a,l,u,h,m,v){const x=this.getChainMap(v),S=new fne(e,t,n,r,s,a,l,u,h,m);return S.onDispose=()=>{this.pipelines.delete(S),this.bindings.delete(S),this.nodes.delete(S),x.delete(S.getChainArray())},S}}class Yh{constructor(){this.data=new WeakMap}get(e){let t=this.data.get(e);return t===void 0&&(t={},this.data.set(e,t)),t}delete(e){let t=null;return this.data.has(e)&&(t=this.data.get(e),this.data.delete(e)),t}has(e){return this.data.has(e)}dispose(){this.data=new WeakMap}}const iu={VERTEX:1,INDEX:2,STORAGE:3,INDIRECT:4},Lh=16,dne=211,pne=212;class mne extends Yh{constructor(e){super(),this.backend=e}delete(e){const t=super.delete(e);return t!==void 0&&this.backend.destroyAttribute(e),t}update(e,t){const n=this.get(e);if(n.version===void 0)t===iu.VERTEX?this.backend.createAttribute(e):t===iu.INDEX?this.backend.createIndexAttribute(e):t===iu.STORAGE?this.backend.createStorageAttribute(e):t===iu.INDIRECT&&this.backend.createIndirectStorageAttribute(e),n.version=this._getBufferAttribute(e).version;else{const r=this._getBufferAttribute(e);(n.version=0;--e)if(i[e]>=65535)return!0;return!1}function ZU(i){return i.index!==null?i.index.version:i.attributes.position.version}function nN(i){const e=[],t=i.index,n=i.attributes.position;if(t!==null){const s=t.array;for(let a=0,l=s.length;a{this.info.memory.geometries--;const s=t.index,a=e.getAttributes();s!==null&&this.attributes.delete(s);for(const u of a)this.attributes.delete(u);const l=this.wireframes.get(t);l!==void 0&&this.attributes.delete(l),t.removeEventListener("dispose",r)};t.addEventListener("dispose",r)}updateAttributes(e){const t=e.getAttributes();for(const s of t)s.isStorageBufferAttribute||s.isStorageInstancedBufferAttribute?this.updateAttribute(s,iu.STORAGE):this.updateAttribute(s,iu.VERTEX);const n=this.getIndex(e);n!==null&&this.updateAttribute(n,iu.INDEX);const r=e.geometry.indirect;r!==null&&this.updateAttribute(r,iu.INDIRECT)}updateAttribute(e,t){const n=this.info.render.calls;e.isInterleavedBufferAttribute?this.attributeCall.get(e)===void 0?(this.attributes.update(e,t),this.attributeCall.set(e,n)):this.attributeCall.get(e.data)!==n&&(this.attributes.update(e,t),this.attributeCall.set(e.data,n),this.attributeCall.set(e,n)):this.attributeCall.get(e)!==n&&(this.attributes.update(e,t),this.attributeCall.set(e,n))}getIndirect(e){return e.geometry.indirect}getIndex(e){const{geometry:t,material:n}=e;let r=t.index;if(n.wireframe===!0){const s=this.wireframes;let a=s.get(t);a===void 0?(a=nN(t),s.set(t,a)):a.version!==ZU(t)&&(this.attributes.delete(a),a=nN(t),s.set(t,a)),r=a}return r}}class _ne{constructor(){this.autoReset=!0,this.frame=0,this.calls=0,this.render={calls:0,frameCalls:0,drawCalls:0,triangles:0,points:0,lines:0,timestamp:0,previousFrameCalls:0,timestampCalls:0},this.compute={calls:0,frameCalls:0,timestamp:0,previousFrameCalls:0,timestampCalls:0},this.memory={geometries:0,textures:0}}update(e,t,n){this.render.drawCalls++,e.isMesh||e.isSprite?this.render.triangles+=n*(t/3):e.isPoints?this.render.points+=n*t:e.isLineSegments?this.render.lines+=n*(t/2):e.isLine?this.render.lines+=n*(t-1):console.error("THREE.WebGPUInfo: Unknown object type.")}updateTimestamp(e,t){this[e].timestampCalls===0&&(this[e].timestamp=0),this[e].timestamp+=t,this[e].timestampCalls++,this[e].timestampCalls>=this[e].previousFrameCalls&&(this[e].timestampCalls=0)}reset(){const e=this.render.frameCalls;this.render.previousFrameCalls=e;const t=this.compute.frameCalls;this.compute.previousFrameCalls=t,this.render.drawCalls=0,this.render.frameCalls=0,this.compute.frameCalls=0,this.render.triangles=0,this.render.points=0,this.render.lines=0}dispose(){this.reset(),this.calls=0,this.render.calls=0,this.compute.calls=0,this.render.timestamp=0,this.compute.timestamp=0,this.memory.geometries=0,this.memory.textures=0}}class JU{constructor(e){this.cacheKey=e,this.usedTimes=0}}class yne extends JU{constructor(e,t,n){super(e),this.vertexProgram=t,this.fragmentProgram=n}}class xne extends JU{constructor(e,t){super(e),this.computeProgram=t,this.isComputePipeline=!0}}let bne=0;class nS{constructor(e,t,n,r=null,s=null){this.id=bne++,this.code=e,this.stage=t,this.name=n,this.transforms=r,this.attributes=s,this.usedTimes=0}}class Sne extends Yh{constructor(e,t){super(),this.backend=e,this.nodes=t,this.bindings=null,this.caches=new Map,this.programs={vertex:new Map,fragment:new Map,compute:new Map}}getForCompute(e,t){const{backend:n}=this,r=this.get(e);if(this._needsComputeUpdate(e)){const s=r.pipeline;s&&(s.usedTimes--,s.computeProgram.usedTimes--);const a=this.nodes.getForCompute(e);let l=this.programs.compute.get(a.computeShader);l===void 0&&(s&&s.computeProgram.usedTimes===0&&this._releaseProgram(s.computeProgram),l=new nS(a.computeShader,"compute",e.name,a.transforms,a.nodeAttributes),this.programs.compute.set(a.computeShader,l),n.createProgram(l));const u=this._getComputeCacheKey(e,l);let h=this.caches.get(u);h===void 0&&(s&&s.usedTimes===0&&this._releasePipeline(s),h=this._getComputePipeline(e,l,u,t)),h.usedTimes++,l.usedTimes++,r.version=e.version,r.pipeline=h}return r.pipeline}getForRender(e,t=null){const{backend:n}=this,r=this.get(e);if(this._needsRenderUpdate(e)){const s=r.pipeline;s&&(s.usedTimes--,s.vertexProgram.usedTimes--,s.fragmentProgram.usedTimes--);const a=e.getNodeBuilderState(),l=e.material?e.material.name:"";let u=this.programs.vertex.get(a.vertexShader);u===void 0&&(s&&s.vertexProgram.usedTimes===0&&this._releaseProgram(s.vertexProgram),u=new nS(a.vertexShader,"vertex",l),this.programs.vertex.set(a.vertexShader,u),n.createProgram(u));let h=this.programs.fragment.get(a.fragmentShader);h===void 0&&(s&&s.fragmentProgram.usedTimes===0&&this._releaseProgram(s.fragmentProgram),h=new nS(a.fragmentShader,"fragment",l),this.programs.fragment.set(a.fragmentShader,h),n.createProgram(h));const m=this._getRenderCacheKey(e,u,h);let v=this.caches.get(m);v===void 0?(s&&s.usedTimes===0&&this._releasePipeline(s),v=this._getRenderPipeline(e,u,h,m,t)):e.pipeline=v,v.usedTimes++,u.usedTimes++,h.usedTimes++,r.pipeline=v}return r.pipeline}delete(e){const t=this.get(e).pipeline;return t&&(t.usedTimes--,t.usedTimes===0&&this._releasePipeline(t),t.isComputePipeline?(t.computeProgram.usedTimes--,t.computeProgram.usedTimes===0&&this._releaseProgram(t.computeProgram)):(t.fragmentProgram.usedTimes--,t.vertexProgram.usedTimes--,t.vertexProgram.usedTimes===0&&this._releaseProgram(t.vertexProgram),t.fragmentProgram.usedTimes===0&&this._releaseProgram(t.fragmentProgram))),super.delete(e)}dispose(){super.dispose(),this.caches=new Map,this.programs={vertex:new Map,fragment:new Map,compute:new Map}}updateForRender(e){this.getForRender(e)}_getComputePipeline(e,t,n,r){n=n||this._getComputeCacheKey(e,t);let s=this.caches.get(n);return s===void 0&&(s=new xne(n,t),this.caches.set(n,s),this.backend.createComputePipeline(s,r)),s}_getRenderPipeline(e,t,n,r,s){r=r||this._getRenderCacheKey(e,t,n);let a=this.caches.get(r);return a===void 0&&(a=new yne(r,t,n),this.caches.set(r,a),e.pipeline=a,this.backend.createRenderPipeline(e,s)),a}_getComputeCacheKey(e,t){return e.id+","+t.id}_getRenderCacheKey(e,t,n){return t.id+","+n.id+","+this.backend.getRenderCacheKey(e)}_releasePipeline(e){this.caches.delete(e.cacheKey)}_releaseProgram(e){const t=e.code,n=e.stage;this.programs[n].delete(t)}_needsComputeUpdate(e){const t=this.get(e);return t.pipeline===void 0||t.version!==e.version}_needsRenderUpdate(e){return this.get(e).pipeline===void 0||this.backend.needsRenderUpdate(e)}}class Tne extends Yh{constructor(e,t,n,r,s,a){super(),this.backend=e,this.textures=n,this.pipelines=s,this.attributes=r,this.nodes=t,this.info=a,this.pipelines.bindings=this}getForRender(e){const t=e.getBindings();for(const n of t){const r=this.get(n);r.bindGroup===void 0&&(this._init(n),this.backend.createBindings(n,t,0),r.bindGroup=n)}return t}getForCompute(e){const t=this.nodes.getForCompute(e).bindings;for(const n of t){const r=this.get(n);r.bindGroup===void 0&&(this._init(n),this.backend.createBindings(n,t,0),r.bindGroup=n)}return t}updateForCompute(e){this._updateBindings(this.getForCompute(e))}updateForRender(e){this._updateBindings(this.getForRender(e))}_updateBindings(e){for(const t of e)this._update(t,e)}_init(e){for(const t of e.bindings)if(t.isSampledTexture)this.textures.updateTexture(t.texture);else if(t.isStorageBuffer){const n=t.attribute,r=n.isIndirectStorageBufferAttribute?iu.INDIRECT:iu.STORAGE;this.attributes.update(n,r)}}_update(e,t){const{backend:n}=this;let r=!1,s=!0,a=0,l=0;for(const u of e.bindings)if(!(u.isNodeUniformsGroup&&this.nodes.updateGroup(u)===!1)){if(u.isUniformBuffer)u.update()&&n.updateBinding(u);else if(u.isSampler)u.update();else if(u.isSampledTexture){const h=this.textures.get(u.texture);u.needsBindingsUpdate(h.generation)&&(r=!0);const m=u.update(),v=u.texture;m&&this.textures.updateTexture(v);const x=n.get(v);if(x.externalTexture!==void 0||h.isDefaultTexture?s=!1:(a=a*10+v.id,l+=v.version),n.isWebGPUBackend===!0&&x.texture===void 0&&x.externalTexture===void 0&&(console.error("Bindings._update: binding should be available:",u,m,v,u.textureNode.value,r),this.textures.updateTexture(v),r=!0),v.isStorageTexture===!0){const S=this.get(v);u.store===!0?S.needsMipmap=!0:this.textures.needsMipmaps(v)&&S.needsMipmap===!0&&(this.backend.generateMipmaps(v),S.needsMipmap=!1)}}}r===!0&&this.backend.updateBindings(e,t,s?a:0,l)}}function wne(i,e){return i.groupOrder!==e.groupOrder?i.groupOrder-e.groupOrder:i.renderOrder!==e.renderOrder?i.renderOrder-e.renderOrder:i.material.id!==e.material.id?i.material.id-e.material.id:i.z!==e.z?i.z-e.z:i.id-e.id}function iN(i,e){return i.groupOrder!==e.groupOrder?i.groupOrder-e.groupOrder:i.renderOrder!==e.renderOrder?i.renderOrder-e.renderOrder:i.z!==e.z?e.z-i.z:i.id-e.id}function rN(i){return(i.transmission>0||i.transmissionNode)&&i.side===as&&i.forceSinglePass===!1}class Mne{constructor(e,t,n){this.renderItems=[],this.renderItemsIndex=0,this.opaque=[],this.transparentDoublePass=[],this.transparent=[],this.bundles=[],this.lightsNode=e.getNode(t,n),this.lightsArray=[],this.scene=t,this.camera=n,this.occlusionQueryCount=0}begin(){return this.renderItemsIndex=0,this.opaque.length=0,this.transparentDoublePass.length=0,this.transparent.length=0,this.bundles.length=0,this.lightsArray.length=0,this.occlusionQueryCount=0,this}getNextRenderItem(e,t,n,r,s,a,l){let u=this.renderItems[this.renderItemsIndex];return u===void 0?(u={id:e.id,object:e,geometry:t,material:n,groupOrder:r,renderOrder:e.renderOrder,z:s,group:a,clippingContext:l},this.renderItems[this.renderItemsIndex]=u):(u.id=e.id,u.object=e,u.geometry=t,u.material=n,u.groupOrder=r,u.renderOrder=e.renderOrder,u.z=s,u.group=a,u.clippingContext=l),this.renderItemsIndex++,u}push(e,t,n,r,s,a,l){const u=this.getNextRenderItem(e,t,n,r,s,a,l);e.occlusionTest===!0&&this.occlusionQueryCount++,n.transparent===!0||n.transmission>0?(rN(n)&&this.transparentDoublePass.push(u),this.transparent.push(u)):this.opaque.push(u)}unshift(e,t,n,r,s,a,l){const u=this.getNextRenderItem(e,t,n,r,s,a,l);n.transparent===!0||n.transmission>0?(rN(n)&&this.transparentDoublePass.unshift(u),this.transparent.unshift(u)):this.opaque.unshift(u)}pushBundle(e){this.bundles.push(e)}pushLight(e){this.lightsArray.push(e)}sort(e,t){this.opaque.length>1&&this.opaque.sort(e||wne),this.transparentDoublePass.length>1&&this.transparentDoublePass.sort(t||iN),this.transparent.length>1&&this.transparent.sort(t||iN)}finish(){this.lightsNode.setLights(this.lightsArray);for(let e=this.renderItemsIndex,t=this.renderItems.length;e>t,h=l.height>>t;let m=e.depthTexture||s[t];const v=e.depthBuffer===!0||e.stencilBuffer===!0;let x=!1;m===void 0&&v&&(m=new qc,m.format=e.stencilBuffer?du:au,m.type=e.stencilBuffer?Au:Rr,m.image.width=u,m.image.height=h,s[t]=m),(n.width!==l.width||l.height!==n.height)&&(x=!0,m&&(m.needsUpdate=!0,m.image.width=u,m.image.height=h)),n.width=l.width,n.height=l.height,n.textures=a,n.depthTexture=m||null,n.depth=e.depthBuffer,n.stencil=e.stencilBuffer,n.renderTarget=e,n.sampleCount!==r&&(x=!0,m&&(m.needsUpdate=!0),n.sampleCount=r);const S={sampleCount:r};for(let w=0;w{e.removeEventListener("dispose",w);for(let R=0;R0){const m=e.image;if(m===void 0)console.warn("THREE.Renderer: Texture marked for update but image is undefined.");else if(m.complete===!1)console.warn("THREE.Renderer: Texture marked for update but image is incomplete.");else{if(e.images){const v=[];for(const x of e.images)v.push(x);t.images=v}else t.image=m;(n.isDefaultTexture===void 0||n.isDefaultTexture===!0)&&(s.createTexture(e,t),n.isDefaultTexture=!1,n.generation=e.version),e.source.dataReady===!0&&s.updateTexture(e,t),t.needsMipmaps&&e.mipmaps.length===0&&s.generateMipmaps(e)}}else s.createDefaultTexture(e),n.isDefaultTexture=!0,n.generation=e.version;if(n.initialized!==!0){n.initialized=!0,n.generation=e.version,this.info.memory.textures++;const h=()=>{e.removeEventListener("dispose",h),this._destroyTexture(e),this.info.memory.textures--};e.addEventListener("dispose",h)}n.version=e.version}getSize(e,t=Dne){let n=e.images?e.images[0]:e.image;return n?(n.image!==void 0&&(n=n.image),t.width=n.width||1,t.height=n.height||1,t.depth=e.isCubeTexture?6:n.depth||1):t.width=t.height=t.depth=1,t}getMipLevels(e,t,n){let r;return e.isCompressedTexture?e.mipmaps?r=e.mipmaps.length:r=1:r=Math.floor(Math.log2(Math.max(t,n)))+1,r}needsMipmaps(e){return this.isEnvironmentTexture(e)||e.isCompressedTexture===!0||e.generateMipmaps}isEnvironmentTexture(e){const t=e.mapping;return t===zh||t===Gh||t===Qo||t===Ko}_destroyTexture(e){this.backend.destroySampler(e),this.backend.destroyTexture(e),this.delete(e)}}class bE extends an{constructor(e,t,n,r=1){super(e,t,n),this.a=r}set(e,t,n,r=1){return this.a=r,super.set(e,t,n)}copy(e){return e.a!==void 0&&(this.a=e.a),super.copy(e)}clone(){return new this.constructor(this.r,this.g,this.b,this.a)}}class tB extends Gi{static get type(){return"ParameterNode"}constructor(e,t=null){super(e,t),this.isParameterNode=!0}getHash(){return this.uuid}generate(){return this.name}}const Lne=(i,e)=>gt(new tB(i,e));class Une extends Mn{static get type(){return"StackNode"}constructor(e=null){super(),this.nodes=[],this.outputNode=null,this.parent=e,this._currentCond=null,this.isStackNode=!0}getNodeType(e){return this.outputNode?this.outputNode.getNodeType(e):"void"}add(e){return this.nodes.push(e),this}If(e,t){const n=new Um(t);return this._currentCond=zs(e,n),this.add(this._currentCond)}ElseIf(e,t){const n=new Um(t),r=zs(e,n);return this._currentCond.elseNode=r,this._currentCond=r,this}Else(e){return this._currentCond.elseNode=new Um(e),this}build(e,...t){const n=PM();bg(this);for(const r of this.nodes)r.build(e,"void");return bg(n),this.outputNode?this.outputNode.build(e,...t):super.build(e,...t)}else(...e){return console.warn("TSL.StackNode: .else() has been renamed to .Else()."),this.Else(...e)}elseif(...e){return console.warn("TSL.StackNode: .elseif() has been renamed to .ElseIf()."),this.ElseIf(...e)}}const e_=ut(Une);class nB extends Mn{static get type(){return"OutputStructNode"}constructor(...e){super(),this.members=e,this.isOutputStructNode=!0}setup(e){super.setup(e);const t=this.members,n=[];for(let r=0;r{const e=i.toUint().mul(747796405).add(2891336453),t=e.shiftRight(e.shiftRight(28).add(4)).bitXor(e).mul(277803737);return t.shiftRight(22).bitXor(t).toFloat().mul(1/2**32)}),JT=(i,e)=>Cl(Wn(4,i.mul(wi(1,i))),e),Fne=(i,e)=>i.lessThan(.5)?JT(i.mul(2),e).div(2):wi(1,JT(Wn(wi(1,i),2),e).div(2)),kne=(i,e,t)=>Cl(Dl(Cl(i,e),Qr(Cl(i,e),Cl(wi(1,i),t))),1/e),zne=(i,e)=>Mo(Z_.mul(e.mul(i).sub(1))).div(Z_.mul(e.mul(i).sub(1))),xc=$e(([i])=>i.fract().sub(.5).abs()).setLayout({name:"tri",type:"float",inputs:[{name:"x",type:"float"}]}),Gne=$e(([i])=>Ue(xc(i.z.add(xc(i.y.mul(1)))),xc(i.z.add(xc(i.x.mul(1)))),xc(i.y.add(xc(i.x.mul(1)))))).setLayout({name:"tri3",type:"vec3",inputs:[{name:"p",type:"vec3"}]}),qne=$e(([i,e,t])=>{const n=Ue(i).toVar(),r=ve(1.4).toVar(),s=ve(0).toVar(),a=Ue(n).toVar();return ki({start:ve(0),end:ve(3),type:"float",condition:"<="},()=>{const l=Ue(Gne(a.mul(2))).toVar();n.addAssign(l.add(t.mul(ve(.1).mul(e)))),a.mulAssign(1.8),r.mulAssign(1.5),n.mulAssign(1.2);const u=ve(xc(n.z.add(xc(n.x.add(xc(n.y)))))).toVar();s.addAssign(u.div(r)),a.addAssign(.14)}),s}).setLayout({name:"triNoise3D",type:"float",inputs:[{name:"position",type:"vec3"},{name:"speed",type:"float"},{name:"time",type:"float"}]});class Vne extends Mn{static get type(){return"FunctionOverloadingNode"}constructor(e=[],...t){super(),this.functionNodes=e,this.parametersNodes=t,this._candidateFnCall=null,this.global=!0}getNodeType(){return this.functionNodes[0].shaderNode.layout.type}setup(e){const t=this.parametersNodes;let n=this._candidateFnCall;if(n===null){let r=null,s=-1;for(const a of this.functionNodes){const u=a.shaderNode.layout;if(u===null)throw new Error("FunctionOverloadingNode: FunctionNode must be a layout.");const h=u.inputs;if(t.length===h.length){let m=0;for(let v=0;vs&&(r=a,s=m)}}this._candidateFnCall=n=r(...t)}return n}}const Hne=ut(Vne),Vs=i=>(...e)=>Hne(i,...e),yA=gn(0).setGroup(Rn).onRenderUpdate(i=>i.time),sB=gn(0).setGroup(Rn).onRenderUpdate(i=>i.deltaTime),jne=gn(0,"uint").setGroup(Rn).onRenderUpdate(i=>i.frameId),Wne=(i=1)=>(console.warn('TSL: timerLocal() is deprecated. Use "time" instead.'),yA.mul(i)),$ne=(i=1)=>(console.warn('TSL: timerGlobal() is deprecated. Use "time" instead.'),yA.mul(i)),Xne=(i=1)=>(console.warn('TSL: timerDelta() is deprecated. Use "deltaTime" instead.'),sB.mul(i)),Yne=(i=yA)=>i.add(.75).mul(Math.PI*2).sin().mul(.5).add(.5),Qne=(i=yA)=>i.fract().round(),Kne=(i=yA)=>i.add(.5).fract().mul(2).sub(1).abs(),Zne=(i=yA)=>i.fract(),Jne=$e(([i,e,t=Et(.5)])=>xE(i.sub(t),e).add(t)),eie=$e(([i,e,t=Et(.5)])=>{const n=i.sub(t),r=n.dot(n),a=r.mul(r).mul(e);return i.add(n.mul(a))}),tie=$e(({position:i=null,horizontal:e=!0,vertical:t=!1})=>{let n;i!==null?(n=$o.toVar(),n[3][0]=i.x,n[3][1]=i.y,n[3][2]=i.z):n=$o;const r=so.mul(n);return xg(e)&&(r[0][0]=$o[0].length(),r[0][1]=0,r[0][2]=0),xg(t)&&(r[1][0]=0,r[1][1]=$o[1].length(),r[1][2]=0),r[2][0]=0,r[2][1]=0,r[2][2]=1,_A.mul(r).mul(Gr)}),nie=$e(([i=null])=>{const e=ty();return ty(fE(i)).sub(e).lessThan(0).select(bu,i)});class iie extends Mn{static get type(){return"SpriteSheetUVNode"}constructor(e,t=Er(),n=ve(0)){super("vec2"),this.countNode=e,this.uvNode=t,this.frameNode=n}setup(){const{frameNode:e,uvNode:t,countNode:n}=this,{width:r,height:s}=n,a=e.mod(r.mul(s)).floor(),l=a.mod(r),u=s.sub(a.add(1).div(r).ceil()),h=n.reciprocal(),m=Et(l,u);return t.add(m).mul(h)}}const rie=ut(iie);class sie extends Mn{static get type(){return"TriplanarTexturesNode"}constructor(e,t=null,n=null,r=ve(1),s=Gr,a=no){super("vec4"),this.textureXNode=e,this.textureYNode=t,this.textureZNode=n,this.scaleNode=r,this.positionNode=s,this.normalNode=a}setup(){const{textureXNode:e,textureYNode:t,textureZNode:n,scaleNode:r,positionNode:s,normalNode:a}=this;let l=a.abs().normalize();l=l.div(l.dot(Ue(1)));const u=s.yz.mul(r),h=s.zx.mul(r),m=s.xy.mul(r),v=e.value,x=t!==null?t.value:v,S=n!==null?n.value:v,w=di(v,u).mul(l.x),R=di(x,h).mul(l.y),C=di(S,m).mul(l.z);return Qr(w,R,C)}}const aB=ut(sie),aie=(...i)=>aB(...i),Cd=new Yl,Cf=new Ae,Rd=new Ae,iS=new Ae,um=new kn,fv=new Ae(0,0,-1),Hl=new Ln,cm=new Ae,Av=new Ae,hm=new Ln,dv=new dt,iy=new Wh,oie=bu.flipX();iy.depthTexture=new qc(1,1);let rS=!1;class SE extends yu{static get type(){return"ReflectorNode"}constructor(e={}){super(e.defaultTexture||iy.texture,oie),this._reflectorBaseNode=e.reflector||new lie(this,e),this._depthNode=null,this.setUpdateMatrix(!1)}get reflector(){return this._reflectorBaseNode}get target(){return this._reflectorBaseNode.target}getDepthNode(){if(this._depthNode===null){if(this._reflectorBaseNode.depth!==!0)throw new Error("THREE.ReflectorNode: Depth node can only be requested when the reflector is created with { depth: true }. ");this._depthNode=gt(new SE({defaultTexture:iy.depthTexture,reflector:this._reflectorBaseNode}))}return this._depthNode}setup(e){return e.object.isQuadMesh||this._reflectorBaseNode.build(e),super.setup(e)}clone(){const e=new this.constructor(this.reflectorNode);return e._reflectorBaseNode=this._reflectorBaseNode,e}}class lie extends Mn{static get type(){return"ReflectorBaseNode"}constructor(e,t={}){super();const{target:n=new vr,resolution:r=1,generateMipmaps:s=!1,bounces:a=!0,depth:l=!1}=t;this.textureNode=e,this.target=n,this.resolution=r,this.generateMipmaps=s,this.bounces=a,this.depth=l,this.updateBeforeType=a?jn.RENDER:jn.FRAME,this.virtualCameras=new WeakMap,this.renderTargets=new WeakMap}_updateResolution(e,t){const n=this.resolution;t.getDrawingBufferSize(dv),e.setSize(Math.round(dv.width*n),Math.round(dv.height*n))}setup(e){return this._updateResolution(iy,e.renderer),super.setup(e)}getVirtualCamera(e){let t=this.virtualCameras.get(e);return t===void 0&&(t=e.clone(),this.virtualCameras.set(e,t)),t}getRenderTarget(e){let t=this.renderTargets.get(e);return t===void 0&&(t=new Wh(0,0,{type:Gs}),this.generateMipmaps===!0&&(t.texture.minFilter=qF,t.texture.generateMipmaps=!0),this.depth===!0&&(t.depthTexture=new qc),this.renderTargets.set(e,t)),t}updateBefore(e){if(this.bounces===!1&&rS)return!1;rS=!0;const{scene:t,camera:n,renderer:r,material:s}=e,{target:a}=this,l=this.getVirtualCamera(n),u=this.getRenderTarget(l);if(r.getDrawingBufferSize(dv),this._updateResolution(u,r),Rd.setFromMatrixPosition(a.matrixWorld),iS.setFromMatrixPosition(n.matrixWorld),um.extractRotation(a.matrixWorld),Cf.set(0,0,1),Cf.applyMatrix4(um),cm.subVectors(Rd,iS),cm.dot(Cf)>0)return;cm.reflect(Cf).negate(),cm.add(Rd),um.extractRotation(n.matrixWorld),fv.set(0,0,-1),fv.applyMatrix4(um),fv.add(iS),Av.subVectors(Rd,fv),Av.reflect(Cf).negate(),Av.add(Rd),l.coordinateSystem=n.coordinateSystem,l.position.copy(cm),l.up.set(0,1,0),l.up.applyMatrix4(um),l.up.reflect(Cf),l.lookAt(Av),l.near=n.near,l.far=n.far,l.updateMatrixWorld(),l.projectionMatrix.copy(n.projectionMatrix),Cd.setFromNormalAndCoplanarPoint(Cf,Rd),Cd.applyMatrix4(l.matrixWorldInverse),Hl.set(Cd.normal.x,Cd.normal.y,Cd.normal.z,Cd.constant);const h=l.projectionMatrix;hm.x=(Math.sign(Hl.x)+h.elements[8])/h.elements[0],hm.y=(Math.sign(Hl.y)+h.elements[9])/h.elements[5],hm.z=-1,hm.w=(1+h.elements[10])/h.elements[14],Hl.multiplyScalar(1/Hl.dot(hm));const m=0;h.elements[2]=Hl.x,h.elements[6]=Hl.y,h.elements[10]=r.coordinateSystem===pu?Hl.z-m:Hl.z+1-m,h.elements[14]=Hl.w,this.textureNode.value=u.texture,this.depth===!0&&(this.textureNode.getDepthNode().value=u.depthTexture),s.visible=!1;const v=r.getRenderTarget(),x=r.getMRT(),S=r.autoClear;r.setMRT(null),r.setRenderTarget(u),r.autoClear=!0,r.render(t,l),r.setMRT(x),r.setRenderTarget(v),r.autoClear=S,s.visible=!0,rS=!1}}const uie=i=>gt(new SE(i)),sS=new kg(-1,1,1,-1,0,1);class cie extends Ki{constructor(e=!1){super();const t=e===!1?[0,-1,0,1,2,1]:[0,2,0,0,2,0];this.setAttribute("position",new Mi([-1,3,0,-1,-1,0,3,-1,0],3)),this.setAttribute("uv",new Mi(t,2))}}const hie=new cie;class TE extends zi{constructor(e=null){super(hie,e),this.camera=sS,this.isQuadMesh=!0}async renderAsync(e){return e.renderAsync(this,sS)}render(e){e.render(this,sS)}}const fie=new dt;class Aie extends yu{static get type(){return"RTTNode"}constructor(e,t=null,n=null,r={type:Gs}){const s=new Wh(t,n,r);super(s.texture,Er()),this.node=e,this.width=t,this.height=n,this.pixelRatio=1,this.renderTarget=s,this.textureNeedsUpdate=!0,this.autoUpdate=!0,this._rttNode=null,this._quadMesh=new TE(new Vr),this.updateBeforeType=jn.RENDER}get autoSize(){return this.width===null}setup(e){return this._rttNode=this.node.context(e.getSharedContext()),this._quadMesh.material.name="RTT",this._quadMesh.material.needsUpdate=!0,super.setup(e)}setSize(e,t){this.width=e,this.height=t;const n=e*this.pixelRatio,r=t*this.pixelRatio;this.renderTarget.setSize(n,r),this.textureNeedsUpdate=!0}setPixelRatio(e){this.pixelRatio=e,this.setSize(this.width,this.height)}updateBefore({renderer:e}){if(this.textureNeedsUpdate===!1&&this.autoUpdate===!1)return;if(this.textureNeedsUpdate=!1,this.autoSize===!0){this.pixelRatio=e.getPixelRatio();const n=e.getSize(fie);this.setSize(n.width,n.height)}this._quadMesh.material.fragmentNode=this._rttNode;const t=e.getRenderTarget();e.setRenderTarget(this.renderTarget),this._quadMesh.render(e),e.setRenderTarget(t)}clone(){const e=new yu(this.value,this.uvNode,this.levelNode);return e.sampler=this.sampler,e.referenceNode=this,e}}const oB=(i,...e)=>gt(new Aie(gt(i),...e)),die=(i,...e)=>i.isTextureNode?i:i.isPassNode?i.getTextureNode():oB(i,...e),zd=$e(([i,e,t],n)=>{let r;n.renderer.coordinateSystem===pu?(i=Et(i.x,i.y.oneMinus()).mul(2).sub(1),r=dn(Ue(i,e),1)):r=dn(Ue(i.x,i.y.oneMinus(),e).mul(2).sub(1),1);const s=dn(t.mul(r));return s.xyz.div(s.w)}),pie=$e(([i,e])=>{const t=e.mul(dn(i,1)),n=t.xy.div(t.w).mul(.5).add(.5).toVar();return Et(n.x,n.y.oneMinus())}),mie=$e(([i,e,t])=>{const n=Fh(Fr(e)),r=ms(i.mul(n)).toVar(),s=Fr(e,r).toVar(),a=Fr(e,r.sub(ms(2,0))).toVar(),l=Fr(e,r.sub(ms(1,0))).toVar(),u=Fr(e,r.add(ms(1,0))).toVar(),h=Fr(e,r.add(ms(2,0))).toVar(),m=Fr(e,r.add(ms(0,2))).toVar(),v=Fr(e,r.add(ms(0,1))).toVar(),x=Fr(e,r.sub(ms(0,1))).toVar(),S=Fr(e,r.sub(ms(0,2))).toVar(),w=ur(wi(ve(2).mul(l).sub(a),s)).toVar(),R=ur(wi(ve(2).mul(u).sub(h),s)).toVar(),C=ur(wi(ve(2).mul(v).sub(m),s)).toVar(),E=ur(wi(ve(2).mul(x).sub(S),s)).toVar(),B=zd(i,s,t).toVar(),L=w.lessThan(R).select(B.sub(zd(i.sub(Et(ve(1).div(n.x),0)),l,t)),B.negate().add(zd(i.add(Et(ve(1).div(n.x),0)),u,t))),O=C.lessThan(E).select(B.sub(zd(i.add(Et(0,ve(1).div(n.y))),v,t)),B.negate().add(zd(i.sub(Et(0,ve(1).div(n.y))),x,t)));return Fc(ky(L,O))});class t_ extends Ig{constructor(e,t,n=Float32Array){const r=ArrayBuffer.isView(e)?e:new n(e*t);super(r,t),this.isStorageInstancedBufferAttribute=!0}}class gie extends wr{constructor(e,t,n=Float32Array){const r=ArrayBuffer.isView(e)?e:new n(e*t);super(r,t),this.isStorageBufferAttribute=!0}}class vie extends vA{static get type(){return"StorageArrayElementNode"}constructor(e,t){super(e,t),this.isStorageArrayElementNode=!0}set storageBufferNode(e){this.node=e}get storageBufferNode(){return this.node}setup(e){return e.isAvailable("storageBuffer")===!1&&this.node.isPBO===!0&&e.setupPBO(this.node),super.setup(e)}generate(e,t){let n;const r=e.context.assign;if(e.isAvailable("storageBuffer")===!1?this.node.isPBO===!0&&r!==!0&&(this.node.value.isInstancedBufferAttribute||e.shaderStage!=="compute")?n=e.generatePBO(this):n=this.node.build(e):n=super.generate(e),r!==!0){const s=this.getNodeType(e);n=e.format(n,s,t)}return n}}const _ie=ut(vie);class yie extends sE{static get type(){return"StorageBufferNode"}constructor(e,t=null,n=0){t===null&&(e.isStorageBufferAttribute||e.isStorageInstancedBufferAttribute)&&(t=UP(e.itemSize),n=e.count),super(e,t,n),this.isStorageBufferNode=!0,this.access=sa.READ_WRITE,this.isAtomic=!1,this.isPBO=!1,this._attribute=null,this._varying=null,this.global=!0,e.isStorageBufferAttribute!==!0&&e.isStorageInstancedBufferAttribute!==!0&&(e.isInstancedBufferAttribute?e.isStorageInstancedBufferAttribute=!0:e.isStorageBufferAttribute=!0)}getHash(e){if(this.bufferCount===0){let t=e.globalCache.getData(this.value);return t===void 0&&(t={node:this},e.globalCache.setData(this.value,t)),t.node.uuid}return this.uuid}getInputType(){return this.value.isIndirectStorageBufferAttribute?"indirectStorageBuffer":"storageBuffer"}element(e){return _ie(this,e)}setPBO(e){return this.isPBO=e,this}getPBO(){return this.isPBO}setAccess(e){return this.access=e,this}toReadOnly(){return this.setAccess(sa.READ_ONLY)}setAtomic(e){return this.isAtomic=e,this}toAtomic(){return this.setAtomic(!0)}getAttributeData(){return this._attribute===null&&(this._attribute=$g(this.value),this._varying=ro(this._attribute)),{attribute:this._attribute,varying:this._varying}}getNodeType(e){if(e.isAvailable("storageBuffer")||e.isAvailable("indirectStorageBuffer"))return super.getNodeType(e);const{attribute:t}=this.getAttributeData();return t.getNodeType(e)}generate(e){if(e.isAvailable("storageBuffer")||e.isAvailable("indirectStorageBuffer"))return super.generate(e);const{attribute:t,varying:n}=this.getAttributeData(),r=n.build(e);return e.registerTransform(r,t),r}}const Qy=(i,e=null,t=0)=>gt(new yie(i,e,t)),xie=(i,e,t)=>(console.warn('THREE.TSL: "storageObject()" is deprecated. Use "storage().setPBO( true )" instead.'),Qy(i,e,t).setPBO(!0)),bie=(i,e="float")=>{const t=OP(e),n=BP(e),r=new gie(i,t,n);return Qy(r,e,i)},Sie=(i,e="float")=>{const t=OP(e),n=BP(e),r=new t_(i,t,n);return Qy(r,e,i)};class Tie extends x9{static get type(){return"VertexColorNode"}constructor(e=0){super(null,"vec4"),this.isVertexColorNode=!0,this.index=e}getAttributeName(){const e=this.index;return"color"+(e>0?e:"")}generate(e){const t=this.getAttributeName(e),n=e.hasGeometryAttribute(t);let r;return n===!0?r=super.generate(e):r=e.generateConst(this.nodeType,new Ln(1,1,1,1)),r}serialize(e){super.serialize(e),e.index=this.index}deserialize(e){super.deserialize(e),this.index=e.index}}const wie=i=>gt(new Tie(i));class Mie extends Mn{static get type(){return"PointUVNode"}constructor(){super("vec2"),this.isPointUVNode=!0}generate(){return"vec2( gl_PointCoord.x, 1.0 - gl_PointCoord.y )"}}const Eie=Vt(Mie),fm=new la,aS=new kn;class Ya extends Mn{static get type(){return"SceneNode"}constructor(e=Ya.BACKGROUND_BLURRINESS,t=null){super(),this.scope=e,this.scene=t}setup(e){const t=this.scope,n=this.scene!==null?this.scene:e.scene;let r;return t===Ya.BACKGROUND_BLURRINESS?r=ji("backgroundBlurriness","float",n):t===Ya.BACKGROUND_INTENSITY?r=ji("backgroundIntensity","float",n):t===Ya.BACKGROUND_ROTATION?r=gn("mat4").label("backgroundRotation").setGroup(Rn).onRenderUpdate(()=>{const s=n.background;return s!==null&&s.isTexture&&s.mapping!==Lw?(fm.copy(n.backgroundRotation),fm.x*=-1,fm.y*=-1,fm.z*=-1,aS.makeRotationFromEuler(fm)):aS.identity(),aS}):console.error("THREE.SceneNode: Unknown scope:",t),r}}Ya.BACKGROUND_BLURRINESS="backgroundBlurriness";Ya.BACKGROUND_INTENSITY="backgroundIntensity";Ya.BACKGROUND_ROTATION="backgroundRotation";const lB=Vt(Ya,Ya.BACKGROUND_BLURRINESS),ew=Vt(Ya,Ya.BACKGROUND_INTENSITY),uB=Vt(Ya,Ya.BACKGROUND_ROTATION);class Cie extends yu{static get type(){return"StorageTextureNode"}constructor(e,t,n=null){super(e,t),this.storeNode=n,this.isStorageTextureNode=!0,this.access=sa.WRITE_ONLY}getInputType(){return"storageTexture"}setup(e){super.setup(e);const t=e.getNodeProperties(this);t.storeNode=this.storeNode}setAccess(e){return this.access=e,this}generate(e,t){let n;return this.storeNode!==null?n=this.generateStore(e):n=super.generate(e,t),n}toReadWrite(){return this.setAccess(sa.READ_WRITE)}toReadOnly(){return this.setAccess(sa.READ_ONLY)}toWriteOnly(){return this.setAccess(sa.WRITE_ONLY)}generateStore(e){const t=e.getNodeProperties(this),{uvNode:n,storeNode:r}=t,s=super.generate(e,"property"),a=n.build(e,"uvec2"),l=r.build(e,"vec4"),u=e.generateTextureStore(e,s,a,l);e.addLineFlowCode(u,this)}}const cB=ut(Cie),Rie=(i,e,t)=>{const n=cB(i,e,t);return t!==null&&n.append(),n};class Nie extends jy{static get type(){return"UserDataNode"}constructor(e,t,n=null){super(e,t,n),this.userData=n}updateReference(e){return this.reference=this.userData!==null?this.userData:e.object.userData,this.reference}}const Die=(i,e,t)=>gt(new Nie(i,e,t)),sN=new WeakMap;class Pie extends Zr{static get type(){return"VelocityNode"}constructor(){super("vec2"),this.projectionMatrix=null,this.updateType=jn.OBJECT,this.updateAfterType=jn.OBJECT,this.previousModelWorldMatrix=gn(new kn),this.previousProjectionMatrix=gn(new kn).setGroup(Rn),this.previousCameraViewMatrix=gn(new kn)}setProjectionMatrix(e){this.projectionMatrix=e}update({frameId:e,camera:t,object:n}){const r=aN(n);this.previousModelWorldMatrix.value.copy(r);const s=hB(t);s.frameId!==e&&(s.frameId=e,s.previousProjectionMatrix===void 0?(s.previousProjectionMatrix=new kn,s.previousCameraViewMatrix=new kn,s.currentProjectionMatrix=new kn,s.currentCameraViewMatrix=new kn,s.previousProjectionMatrix.copy(this.projectionMatrix||t.projectionMatrix),s.previousCameraViewMatrix.copy(t.matrixWorldInverse)):(s.previousProjectionMatrix.copy(s.currentProjectionMatrix),s.previousCameraViewMatrix.copy(s.currentCameraViewMatrix)),s.currentProjectionMatrix.copy(this.projectionMatrix||t.projectionMatrix),s.currentCameraViewMatrix.copy(t.matrixWorldInverse),this.previousProjectionMatrix.value.copy(s.previousProjectionMatrix),this.previousCameraViewMatrix.value.copy(s.previousCameraViewMatrix))}updateAfter({object:e}){aN(e).copy(e.matrixWorld)}setup(){const e=this.projectionMatrix===null?_A:gn(this.projectionMatrix),t=this.previousCameraViewMatrix.mul(this.previousModelWorldMatrix),n=e.mul(Q0).mul(Gr),r=this.previousProjectionMatrix.mul(t).mul(ey),s=n.xy.div(n.w),a=r.xy.div(r.w);return wi(s,a)}}function hB(i){let e=sN.get(i);return e===void 0&&(e={},sN.set(i,e)),e}function aN(i,e=0){const t=hB(i);let n=t[e];return n===void 0&&(t[e]=n=new kn),n}const Lie=Vt(Pie),fB=$e(([i,e])=>to(1,i.oneMinus().div(e)).oneMinus()).setLayout({name:"blendBurn",type:"vec3",inputs:[{name:"base",type:"vec3"},{name:"blend",type:"vec3"}]}),AB=$e(([i,e])=>to(i.div(e.oneMinus()),1)).setLayout({name:"blendDodge",type:"vec3",inputs:[{name:"base",type:"vec3"},{name:"blend",type:"vec3"}]}),dB=$e(([i,e])=>i.oneMinus().mul(e.oneMinus()).oneMinus()).setLayout({name:"blendScreen",type:"vec3",inputs:[{name:"base",type:"vec3"},{name:"blend",type:"vec3"}]}),pB=$e(([i,e])=>Fi(i.mul(2).mul(e),i.oneMinus().mul(2).mul(e.oneMinus()).oneMinus(),Fy(.5,i))).setLayout({name:"blendOverlay",type:"vec3",inputs:[{name:"base",type:"vec3"},{name:"blend",type:"vec3"}]}),Uie=$e(([i,e])=>{const t=e.a.add(i.a.mul(e.a.oneMinus()));return dn(e.rgb.mul(e.a).add(i.rgb.mul(i.a).mul(e.a.oneMinus())).div(t),t)}).setLayout({name:"blendColor",type:"vec4",inputs:[{name:"base",type:"vec4"},{name:"blend",type:"vec4"}]}),Bie=(...i)=>(console.warn('THREE.TSL: "burn" has been renamed. Use "blendBurn" instead.'),fB(i)),Oie=(...i)=>(console.warn('THREE.TSL: "dodge" has been renamed. Use "blendDodge" instead.'),AB(i)),Iie=(...i)=>(console.warn('THREE.TSL: "screen" has been renamed. Use "blendScreen" instead.'),dB(i)),Fie=(...i)=>(console.warn('THREE.TSL: "overlay" has been renamed. Use "blendOverlay" instead.'),pB(i)),kie=$e(([i])=>wE(i.rgb)),zie=$e(([i,e=ve(1)])=>e.mix(wE(i.rgb),i.rgb)),Gie=$e(([i,e=ve(1)])=>{const t=Qr(i.r,i.g,i.b).div(3),n=i.r.max(i.g.max(i.b)),r=n.sub(t).mul(e).mul(-3);return Fi(i.rgb,n,r)}),qie=$e(([i,e=ve(1)])=>{const t=Ue(.57735,.57735,.57735),n=e.cos();return Ue(i.rgb.mul(n).add(t.cross(i.rgb).mul(e.sin()).add(t.mul(Xh(t,i.rgb).mul(n.oneMinus())))))}),wE=(i,e=Ue(oi.getLuminanceCoefficients(new Ae)))=>Xh(i,e),Vie=$e(([i,e=Ue(1),t=Ue(0),n=Ue(1),r=ve(1),s=Ue(oi.getLuminanceCoefficients(new Ae,Ro))])=>{const a=i.rgb.dot(Ue(s)),l=qr(i.rgb.mul(e).add(t),0).toVar(),u=l.pow(n).toVar();return ni(l.r.greaterThan(0),()=>{l.r.assign(u.r)}),ni(l.g.greaterThan(0),()=>{l.g.assign(u.g)}),ni(l.b.greaterThan(0),()=>{l.b.assign(u.b)}),l.assign(a.add(l.sub(a).mul(r))),dn(l.rgb,i.a)});class Hie extends Zr{static get type(){return"PosterizeNode"}constructor(e,t){super(),this.sourceNode=e,this.stepsNode=t}setup(){const{sourceNode:e,stepsNode:t}=this;return e.mul(t).floor().div(t)}}const jie=ut(Hie),Wie=new dt;class mB extends yu{static get type(){return"PassTextureNode"}constructor(e,t){super(t),this.passNode=e,this.setUpdateMatrix(!1)}setup(e){return e.object.isQuadMesh&&this.passNode.build(e),super.setup(e)}clone(){return new this.constructor(this.passNode,this.value)}}class oN extends mB{static get type(){return"PassMultipleTextureNode"}constructor(e,t,n=!1){super(e,null),this.textureName=t,this.previousTexture=n}updateTexture(){this.value=this.previousTexture?this.passNode.getPreviousTexture(this.textureName):this.passNode.getTexture(this.textureName)}setup(e){return this.updateTexture(),super.setup(e)}clone(){return new this.constructor(this.passNode,this.textureName,this.previousTexture)}}class Tu extends Zr{static get type(){return"PassNode"}constructor(e,t,n,r={}){super("vec4"),this.scope=e,this.scene=t,this.camera=n,this.options=r,this._pixelRatio=1,this._width=1,this._height=1;const s=new qc;s.isRenderTargetTexture=!0,s.name="depth";const a=new Wh(this._width*this._pixelRatio,this._height*this._pixelRatio,{type:Gs,...r});a.texture.name="output",a.depthTexture=s,this.renderTarget=a,this._textures={output:a.texture,depth:s},this._textureNodes={},this._linearDepthNodes={},this._viewZNodes={},this._previousTextures={},this._previousTextureNodes={},this._cameraNear=gn(0),this._cameraFar=gn(0),this._mrt=null,this.isPassNode=!0,this.updateBeforeType=jn.FRAME}setMRT(e){return this._mrt=e,this}getMRT(){return this._mrt}isGlobal(){return!0}getTexture(e){let t=this._textures[e];return t===void 0&&(t=this.renderTarget.texture.clone(),t.name=e,this._textures[e]=t,this.renderTarget.textures.push(t)),t}getPreviousTexture(e){let t=this._previousTextures[e];return t===void 0&&(t=this.getTexture(e).clone(),this._previousTextures[e]=t),t}toggleTexture(e){const t=this._previousTextures[e];if(t!==void 0){const n=this._textures[e],r=this.renderTarget.textures.indexOf(n);this.renderTarget.textures[r]=t,this._textures[e]=t,this._previousTextures[e]=n,this._textureNodes[e].updateTexture(),this._previousTextureNodes[e].updateTexture()}}getTextureNode(e="output"){let t=this._textureNodes[e];return t===void 0&&(t=gt(new oN(this,e)),t.updateTexture(),this._textureNodes[e]=t),t}getPreviousTextureNode(e="output"){let t=this._previousTextureNodes[e];return t===void 0&&(this._textureNodes[e]===void 0&&this.getTextureNode(e),t=gt(new oN(this,e,!0)),t.updateTexture(),this._previousTextureNodes[e]=t),t}getViewZNode(e="depth"){let t=this._viewZNodes[e];if(t===void 0){const n=this._cameraNear,r=this._cameraFar;this._viewZNodes[e]=t=AE(this.getTextureNode(e),n,r)}return t}getLinearDepthNode(e="depth"){let t=this._linearDepthNodes[e];if(t===void 0){const n=this._cameraNear,r=this._cameraFar,s=this.getViewZNode(e);this._linearDepthNodes[e]=t=s0(s,n,r)}return t}setup({renderer:e}){return this.renderTarget.samples=this.options.samples===void 0?e.samples:this.options.samples,e.backend.isWebGLBackend===!0&&(this.renderTarget.samples=0),this.scope===Tu.COLOR?this.getTextureNode():this.getLinearDepthNode()}updateBefore(e){const{renderer:t}=e,{scene:n,camera:r}=this;this._pixelRatio=t.getPixelRatio();const s=t.getSize(Wie);this.setSize(s.width,s.height);const a=t.getRenderTarget(),l=t.getMRT();this._cameraNear.value=r.near,this._cameraFar.value=r.far;for(const u in this._previousTextures)this.toggleTexture(u);t.setRenderTarget(this.renderTarget),t.setMRT(this._mrt),t.render(n,r),t.setRenderTarget(a),t.setMRT(l)}setSize(e,t){this._width=e,this._height=t;const n=this._width*this._pixelRatio,r=this._height*this._pixelRatio;this.renderTarget.setSize(n,r)}setPixelRatio(e){this._pixelRatio=e,this.setSize(this._width,this._height)}dispose(){this.renderTarget.dispose()}}Tu.COLOR="color";Tu.DEPTH="depth";const $ie=(i,e,t)=>gt(new Tu(Tu.COLOR,i,e,t)),Xie=(i,e)=>gt(new mB(i,e)),Yie=(i,e,t)=>gt(new Tu(Tu.DEPTH,i,e,t));class Qie extends Tu{static get type(){return"ToonOutlinePassNode"}constructor(e,t,n,r,s){super(Tu.COLOR,e,t),this.colorNode=n,this.thicknessNode=r,this.alphaNode=s,this._materialCache=new WeakMap}updateBefore(e){const{renderer:t}=e,n=t.getRenderObjectFunction();t.setRenderObjectFunction((r,s,a,l,u,h,m,v)=>{if((u.isMeshToonMaterial||u.isMeshToonNodeMaterial)&&u.wireframe===!1){const x=this._getOutlineMaterial(u);t.renderObject(r,s,a,l,x,h,m,v)}t.renderObject(r,s,a,l,u,h,m,v)}),super.updateBefore(e),t.setRenderObjectFunction(n)}_createMaterial(){const e=new Vr;e.isMeshToonOutlineMaterial=!0,e.name="Toon_Outline",e.side=hr;const t=no.negate(),n=_A.mul(Q0),r=ve(1),s=n.mul(dn(Gr,1)),a=n.mul(dn(Gr.add(t),1)),l=Fc(s.sub(a));return e.vertexNode=s.add(l.mul(this.thicknessNode).mul(s.w).mul(r)),e.colorNode=dn(this.colorNode,this.alphaNode),e}_getOutlineMaterial(e){let t=this._materialCache.get(e);return t===void 0&&(t=this._createMaterial(),this._materialCache.set(e,t)),t}}const Kie=(i,e,t=new an(0,0,0),n=.003,r=1)=>gt(new Qie(i,e,gt(t),gt(n),gt(r))),gB=$e(([i,e])=>i.mul(e).clamp()).setLayout({name:"linearToneMapping",type:"vec3",inputs:[{name:"color",type:"vec3"},{name:"exposure",type:"float"}]}),vB=$e(([i,e])=>(i=i.mul(e),i.div(i.add(1)).clamp())).setLayout({name:"reinhardToneMapping",type:"vec3",inputs:[{name:"color",type:"vec3"},{name:"exposure",type:"float"}]}),_B=$e(([i,e])=>{i=i.mul(e),i=i.sub(.004).max(0);const t=i.mul(i.mul(6.2).add(.5)),n=i.mul(i.mul(6.2).add(1.7)).add(.06);return t.div(n).pow(2.2)}).setLayout({name:"cineonToneMapping",type:"vec3",inputs:[{name:"color",type:"vec3"},{name:"exposure",type:"float"}]}),Zie=$e(([i])=>{const e=i.mul(i.add(.0245786)).sub(90537e-9),t=i.mul(i.add(.432951).mul(.983729)).add(.238081);return e.div(t)}),yB=$e(([i,e])=>{const t=ha(.59719,.35458,.04823,.076,.90834,.01566,.0284,.13383,.83777),n=ha(1.60475,-.53108,-.07367,-.10208,1.10813,-.00605,-.00327,-.07276,1.07602);return i=i.mul(e).div(.6),i=t.mul(i),i=Zie(i),i=n.mul(i),i.clamp()}).setLayout({name:"acesFilmicToneMapping",type:"vec3",inputs:[{name:"color",type:"vec3"},{name:"exposure",type:"float"}]}),Jie=ha(Ue(1.6605,-.1246,-.0182),Ue(-.5876,1.1329,-.1006),Ue(-.0728,-.0083,1.1187)),ere=ha(Ue(.6274,.0691,.0164),Ue(.3293,.9195,.088),Ue(.0433,.0113,.8956)),tre=$e(([i])=>{const e=Ue(i).toVar(),t=Ue(e.mul(e)).toVar(),n=Ue(t.mul(t)).toVar();return ve(15.5).mul(n.mul(t)).sub(Wn(40.14,n.mul(e))).add(Wn(31.96,n).sub(Wn(6.868,t.mul(e))).add(Wn(.4298,t).add(Wn(.1191,e).sub(.00232))))}),xB=$e(([i,e])=>{const t=Ue(i).toVar(),n=ha(Ue(.856627153315983,.137318972929847,.11189821299995),Ue(.0951212405381588,.761241990602591,.0767994186031903),Ue(.0482516061458583,.101439036467562,.811302368396859)),r=ha(Ue(1.1271005818144368,-.1413297634984383,-.14132976349843826),Ue(-.11060664309660323,1.157823702216272,-.11060664309660294),Ue(-.016493938717834573,-.016493938717834257,1.2519364065950405)),s=ve(-12.47393),a=ve(4.026069);return t.mulAssign(e),t.assign(ere.mul(t)),t.assign(n.mul(t)),t.assign(qr(t,1e-10)),t.assign(cu(t)),t.assign(t.sub(s).div(a.sub(s))),t.assign(vu(t,0,1)),t.assign(tre(t)),t.assign(r.mul(t)),t.assign(Cl(qr(Ue(0),t),Ue(2.2))),t.assign(Jie.mul(t)),t.assign(vu(t,0,1)),t}).setLayout({name:"agxToneMapping",type:"vec3",inputs:[{name:"color",type:"vec3"},{name:"exposure",type:"float"}]}),bB=$e(([i,e])=>{const t=ve(.76),n=ve(.15);i=i.mul(e);const r=to(i.r,to(i.g,i.b)),s=zs(r.lessThan(.08),r.sub(Wn(6.25,r.mul(r))),.04);i.subAssign(s);const a=qr(i.r,qr(i.g,i.b));ni(a.lessThan(t),()=>i);const l=wi(1,t),u=wi(1,l.mul(l).div(a.add(l.sub(t))));i.mulAssign(u.div(a));const h=wi(1,Dl(1,n.mul(a.sub(u)).add(1)));return Fi(i,Ue(u),h)}).setLayout({name:"neutralToneMapping",type:"vec3",inputs:[{name:"color",type:"vec3"},{name:"exposure",type:"float"}]});class rs extends Mn{static get type(){return"CodeNode"}constructor(e="",t=[],n=""){super("code"),this.isCodeNode=!0,this.code=e,this.includes=t,this.language=n}isGlobal(){return!0}setIncludes(e){return this.includes=e,this}getIncludes(){return this.includes}generate(e){const t=this.getIncludes(e);for(const r of t)r.build(e);const n=e.getCodeFromNode(this,this.getNodeType(e));return n.code=this.code,n.code}serialize(e){super.serialize(e),e.code=this.code,e.language=this.language}deserialize(e){super.deserialize(e),this.code=e.code,this.language=e.language}}const Ky=ut(rs),nre=(i,e)=>Ky(i,e,"js"),ire=(i,e)=>Ky(i,e,"wgsl"),rre=(i,e)=>Ky(i,e,"glsl");class SB extends rs{static get type(){return"FunctionNode"}constructor(e="",t=[],n=""){super(e,t,n)}getNodeType(e){return this.getNodeFunction(e).type}getInputs(e){return this.getNodeFunction(e).inputs}getNodeFunction(e){const t=e.getDataFromNode(this);let n=t.nodeFunction;return n===void 0&&(n=e.parser.parseFunction(this.code),t.nodeFunction=n),n}generate(e,t){super.generate(e);const n=this.getNodeFunction(e),r=n.name,s=n.type,a=e.getCodeFromNode(this,s);r!==""&&(a.name=r);const l=e.getPropertyName(a),u=this.getNodeFunction(e).getCode(l);return a.code=u+` +`,t==="property"?l:e.format(`${l}()`,s,t)}}const TB=(i,e=[],t="")=>{for(let s=0;sn.call(...s);return r.functionNode=n,r},sre=(i,e)=>TB(i,e,"glsl"),are=(i,e)=>TB(i,e,"wgsl");class ore extends Mn{static get type(){return"ScriptableValueNode"}constructor(e=null){super(),this._value=e,this._cache=null,this.inputType=null,this.outputType=null,this.events=new zc,this.isScriptableValueNode=!0}get isScriptableOutputNode(){return this.outputType!==null}set value(e){this._value!==e&&(this._cache&&this.inputType==="URL"&&this.value.value instanceof ArrayBuffer&&(URL.revokeObjectURL(this._cache),this._cache=null),this._value=e,this.events.dispatchEvent({type:"change"}),this.refresh())}get value(){return this._value}refresh(){this.events.dispatchEvent({type:"refresh"})}getValue(){const e=this.value;if(e&&this._cache===null&&this.inputType==="URL"&&e.value instanceof ArrayBuffer)this._cache=URL.createObjectURL(new Blob([e.value]));else if(e&&e.value!==null&&e.value!==void 0&&((this.inputType==="URL"||this.inputType==="String")&&typeof e.value=="string"||this.inputType==="Number"&&typeof e.value=="number"||this.inputType==="Vector2"&&e.value.isVector2||this.inputType==="Vector3"&&e.value.isVector3||this.inputType==="Vector4"&&e.value.isVector4||this.inputType==="Color"&&e.value.isColor||this.inputType==="Matrix3"&&e.value.isMatrix3||this.inputType==="Matrix4"&&e.value.isMatrix4))return e.value;return this._cache||e}getNodeType(e){return this.value&&this.value.isNode?this.value.getNodeType(e):"float"}setup(){return this.value&&this.value.isNode?this.value:ve()}serialize(e){super.serialize(e),this.value!==null?this.inputType==="ArrayBuffer"?e.value=kP(this.value):e.value=this.value?this.value.toJSON(e.meta).uuid:null:e.value=null,e.inputType=this.inputType,e.outputType=this.outputType}deserialize(e){super.deserialize(e);let t=null;e.value!==null&&(e.inputType==="ArrayBuffer"?t=zP(e.value):e.inputType==="Texture"?t=e.meta.textures[e.value]:t=e.meta.nodes[e.value]||null),this.value=t,this.inputType=e.inputType,this.outputType=e.outputType}}const n_=ut(ore);class wB extends Map{get(e,t=null,...n){if(this.has(e))return super.get(e);if(t!==null){const r=t(...n);return this.set(e,r),r}}}class lre{constructor(e){this.scriptableNode=e}get parameters(){return this.scriptableNode.parameters}get layout(){return this.scriptableNode.getLayout()}getInputLayout(e){return this.scriptableNode.getInputLayout(e)}get(e){const t=this.parameters[e];return t?t.getValue():null}}const i_=new wB;class ure extends Mn{static get type(){return"ScriptableNode"}constructor(e=null,t={}){super(),this.codeNode=e,this.parameters=t,this._local=new wB,this._output=n_(),this._outputs={},this._source=this.source,this._method=null,this._object=null,this._value=null,this._needsOutputUpdate=!0,this.onRefresh=this.onRefresh.bind(this),this.isScriptableNode=!0}get source(){return this.codeNode?this.codeNode.code:""}setLocal(e,t){return this._local.set(e,t)}getLocal(e){return this._local.get(e)}onRefresh(){this._refresh()}getInputLayout(e){for(const t of this.getLayout())if(t.inputType&&(t.id===e||t.name===e))return t}getOutputLayout(e){for(const t of this.getLayout())if(t.outputType&&(t.id===e||t.name===e))return t}setOutput(e,t){const n=this._outputs;return n[e]===void 0?n[e]=n_(t):n[e].value=t,this}getOutput(e){return this._outputs[e]}getParameter(e){return this.parameters[e]}setParameter(e,t){const n=this.parameters;return t&&t.isScriptableNode?(this.deleteParameter(e),n[e]=t,n[e].getDefaultOutput().events.addEventListener("refresh",this.onRefresh)):t&&t.isScriptableValueNode?(this.deleteParameter(e),n[e]=t,n[e].events.addEventListener("refresh",this.onRefresh)):n[e]===void 0?(n[e]=n_(t),n[e].events.addEventListener("refresh",this.onRefresh)):n[e].value=t,this}getValue(){return this.getDefaultOutput().getValue()}deleteParameter(e){let t=this.parameters[e];return t&&(t.isScriptableNode&&(t=t.getDefaultOutput()),t.events.removeEventListener("refresh",this.onRefresh)),this}clearParameters(){for(const e of Object.keys(this.parameters))this.deleteParameter(e);return this.needsUpdate=!0,this}call(e,...t){const r=this.getObject()[e];if(typeof r=="function")return r(...t)}async callAsync(e,...t){const r=this.getObject()[e];if(typeof r=="function")return r.constructor.name==="AsyncFunction"?await r(...t):r(...t)}getNodeType(e){return this.getDefaultOutputNode().getNodeType(e)}refresh(e=null){e!==null?this.getOutput(e).refresh():this._refresh()}getObject(){if(this.needsUpdate&&this.dispose(),this._object!==null)return this._object;const e=()=>this.refresh(),t=(h,m)=>this.setOutput(h,m),n=new lre(this),r=i_.get("THREE"),s=i_.get("TSL"),a=this.getMethod(),l=[n,this._local,i_,e,t,r,s];this._object=a(...l);const u=this._object.layout;if(u&&(u.cache===!1&&this._local.clear(),this._output.outputType=u.outputType||null,Array.isArray(u.elements)))for(const h of u.elements){const m=h.id||h.name;h.inputType&&(this.getParameter(m)===void 0&&this.setParameter(m,null),this.getParameter(m).inputType=h.inputType),h.outputType&&(this.getOutput(m)===void 0&&this.setOutput(m,null),this.getOutput(m).outputType=h.outputType)}return this._object}deserialize(e){super.deserialize(e);for(const t in this.parameters){let n=this.parameters[t];n.isScriptableNode&&(n=n.getDefaultOutput()),n.events.addEventListener("refresh",this.onRefresh)}}getLayout(){return this.getObject().layout}getDefaultOutputNode(){const e=this.getDefaultOutput().value;return e&&e.isNode?e:ve()}getDefaultOutput(){return this._exec()._output}getMethod(){if(this.needsUpdate&&this.dispose(),this._method!==null)return this._method;const e=["parameters","local","global","refresh","setOutput","THREE","TSL"],n=["layout","init","main","dispose"].join(", "),r="var "+n+`; var output = {}; +`,s=` +return { ...output, `+n+" };",a=r+this.codeNode.code+s;return this._method=new Function(...e,a),this._method}dispose(){this._method!==null&&(this._object&&typeof this._object.dispose=="function"&&this._object.dispose(),this._method=null,this._object=null,this._source=null,this._value=null,this._needsOutputUpdate=!0,this._output.value=null,this._outputs={})}setup(){return this.getDefaultOutputNode()}getCacheKey(e){const t=[PP(this.source),this.getDefaultOutputNode().getCacheKey(e)];for(const n in this.parameters)t.push(this.parameters[n].getCacheKey(e));return Ny(t)}set needsUpdate(e){e===!0&&this.dispose()}get needsUpdate(){return this.source!==this._source}_exec(){return this.codeNode===null?this:(this._needsOutputUpdate===!0&&(this._value=this.call("main"),this._needsOutputUpdate=!1),this._output.value=this._value,this)}_refresh(){this.needsUpdate=!0,this._exec(),this._output.refresh()}}const cre=ut(ure);function MB(i){let e;const t=i.context.getViewZ;return t!==void 0&&(e=t(this)),(e||Xr.z).negate()}const ME=$e(([i,e],t)=>{const n=MB(t);return kc(i,e,n)}),EE=$e(([i],e)=>{const t=MB(e);return i.mul(i,t,t).negate().exp().oneMinus()}),Ng=$e(([i,e])=>dn(e.toFloat().mix(Eg.rgb,i.toVec3()),Eg.a));function hre(i,e,t){return console.warn('THREE.TSL: "rangeFog( color, near, far )" is deprecated. Use "fog( color, rangeFogFactor( near, far ) )" instead.'),Ng(i,ME(e,t))}function fre(i,e){return console.warn('THREE.TSL: "densityFog( color, density )" is deprecated. Use "fog( color, densityFogFactor( density ) )" instead.'),Ng(i,EE(e))}let Rf=null,Nf=null;class Are extends Mn{static get type(){return"RangeNode"}constructor(e=ve(),t=ve()){super(),this.minNode=e,this.maxNode=t}getVectorLength(e){const t=e.getTypeLength(Uh(this.minNode.value)),n=e.getTypeLength(Uh(this.maxNode.value));return t>n?t:n}getNodeType(e){return e.object.count>1?e.getTypeFromLength(this.getVectorLength(e)):"float"}setup(e){const t=e.object;let n=null;if(t.count>1){const r=this.minNode.value,s=this.maxNode.value,a=e.getTypeLength(Uh(r)),l=e.getTypeLength(Uh(s));Rf=Rf||new Ln,Nf=Nf||new Ln,Rf.setScalar(0),Nf.setScalar(0),a===1?Rf.setScalar(r):r.isColor?Rf.set(r.r,r.g,r.b,1):Rf.set(r.x,r.y,r.z||0,r.w||0),l===1?Nf.setScalar(s):s.isColor?Nf.set(s.r,s.g,s.b,1):Nf.set(s.x,s.y,s.z||0,s.w||0);const u=4,h=u*t.count,m=new Float32Array(h);for(let x=0;xgt(new pre(i,e)),mre=Zy("numWorkgroups","uvec3"),gre=Zy("workgroupId","uvec3"),vre=Zy("localId","uvec3"),_re=Zy("subgroupSize","uint");class yre extends Mn{constructor(e){super(),this.scope=e}generate(e){const{scope:t}=this,{renderer:n}=e;n.backend.isWebGLBackend===!0?e.addFlowCode(` // ${t}Barrier +`):e.addLineFlowCode(`${t}Barrier()`,this)}}const CE=ut(yre),xre=()=>CE("workgroup").append(),bre=()=>CE("storage").append(),Sre=()=>CE("texture").append();class Tre extends vA{constructor(e,t){super(e,t),this.isWorkgroupInfoElementNode=!0}generate(e,t){let n;const r=e.context.assign;if(n=super.generate(e),r!==!0){const s=this.getNodeType(e);n=e.format(n,s,t)}return n}}class wre extends Mn{constructor(e,t,n=0){super(t),this.bufferType=t,this.bufferCount=n,this.isWorkgroupInfoNode=!0,this.elementType=t,this.scope=e}label(e){return this.name=e,this}setScope(e){return this.scope=e,this}getElementType(){return this.elementType}getInputType(){return`${this.scope}Array`}element(e){return gt(new Tre(this,e))}generate(e){return e.getScopedArray(this.name||`${this.scope}Array_${this.id}`,this.scope.toLowerCase(),this.bufferType,this.bufferCount)}}const Mre=(i,e)=>gt(new wre("Workgroup",i,e));class Ds extends Zr{static get type(){return"AtomicFunctionNode"}constructor(e,t,n,r=null){super("uint"),this.method=e,this.pointerNode=t,this.valueNode=n,this.storeNode=r}getInputType(e){return this.pointerNode.getNodeType(e)}getNodeType(e){return this.getInputType(e)}generate(e){const t=this.method,n=this.getNodeType(e),r=this.getInputType(e),s=this.pointerNode,a=this.valueNode,l=[];l.push(`&${s.build(e,r)}`),l.push(a.build(e,r));const u=`${e.getMethod(t,n)}( ${l.join(", ")} )`;if(this.storeNode!==null){const h=this.storeNode.build(e,r);e.addLineFlowCode(`${h} = ${u}`,this)}else e.addLineFlowCode(u,this)}}Ds.ATOMIC_LOAD="atomicLoad";Ds.ATOMIC_STORE="atomicStore";Ds.ATOMIC_ADD="atomicAdd";Ds.ATOMIC_SUB="atomicSub";Ds.ATOMIC_MAX="atomicMax";Ds.ATOMIC_MIN="atomicMin";Ds.ATOMIC_AND="atomicAnd";Ds.ATOMIC_OR="atomicOr";Ds.ATOMIC_XOR="atomicXor";const Ere=ut(Ds),jc=(i,e,t,n=null)=>{const r=Ere(i,e,t,n);return r.append(),r},Cre=(i,e,t=null)=>jc(Ds.ATOMIC_STORE,i,e,t),Rre=(i,e,t=null)=>jc(Ds.ATOMIC_ADD,i,e,t),Nre=(i,e,t=null)=>jc(Ds.ATOMIC_SUB,i,e,t),Dre=(i,e,t=null)=>jc(Ds.ATOMIC_MAX,i,e,t),Pre=(i,e,t=null)=>jc(Ds.ATOMIC_MIN,i,e,t),Lre=(i,e,t=null)=>jc(Ds.ATOMIC_AND,i,e,t),Ure=(i,e,t=null)=>jc(Ds.ATOMIC_OR,i,e,t),Bre=(i,e,t=null)=>jc(Ds.ATOMIC_XOR,i,e,t);let pv;function t1(i){pv=pv||new WeakMap;let e=pv.get(i);return e===void 0&&pv.set(i,e={}),e}function RE(i){const e=t1(i);return e.shadowMatrix||(e.shadowMatrix=gn("mat4").setGroup(Rn).onRenderUpdate(()=>(i.castShadow!==!0&&i.shadow.updateMatrices(i),i.shadow.matrix)))}function EB(i){const e=t1(i);if(e.projectionUV===void 0){const t=RE(i).mul(Nc);e.projectionUV=t.xyz.div(t.w)}return e.projectionUV}function NE(i){const e=t1(i);return e.position||(e.position=gn(new Ae).setGroup(Rn).onRenderUpdate((t,n)=>n.value.setFromMatrixPosition(i.matrixWorld)))}function CB(i){const e=t1(i);return e.targetPosition||(e.targetPosition=gn(new Ae).setGroup(Rn).onRenderUpdate((t,n)=>n.value.setFromMatrixPosition(i.target.matrixWorld)))}function Jy(i){const e=t1(i);return e.viewPosition||(e.viewPosition=gn(new Ae).setGroup(Rn).onRenderUpdate(({camera:t},n)=>{n.value=n.value||new Ae,n.value.setFromMatrixPosition(i.matrixWorld),n.value.applyMatrix4(t.matrixWorldInverse)}))}const DE=i=>so.transformDirection(NE(i).sub(CB(i))),Ore=i=>i.sort((e,t)=>e.id-t.id),Ire=(i,e)=>{for(const t of e)if(t.isAnalyticLightNode&&t.light.id===i)return t;return null},oS=new WeakMap;class PE extends Mn{static get type(){return"LightsNode"}constructor(){super("vec3"),this.totalDiffuseNode=Ue().toVar("totalDiffuse"),this.totalSpecularNode=Ue().toVar("totalSpecular"),this.outgoingLightNode=Ue().toVar("outgoingLight"),this._lights=[],this._lightNodes=null,this._lightNodesHash=null,this.global=!0}customCacheKey(){const e=[],t=this._lights;for(let n=0;n0}}const Fre=(i=[])=>gt(new PE).setLights(i);class kre extends Mn{static get type(){return"ShadowBaseNode"}constructor(e){super(),this.light=e,this.updateBeforeType=jn.RENDER,this.isShadowBaseNode=!0}setupShadowPosition({material:e}){LE.assign(e.shadowPositionNode||Nc)}dispose(){this.updateBeforeType=jn.NONE}}const LE=Ue().toVar("shadowPositionWorld");function zre(i,e={}){return e.toneMapping=i.toneMapping,e.toneMappingExposure=i.toneMappingExposure,e.outputColorSpace=i.outputColorSpace,e.renderTarget=i.getRenderTarget(),e.activeCubeFace=i.getActiveCubeFace(),e.activeMipmapLevel=i.getActiveMipmapLevel(),e.renderObjectFunction=i.getRenderObjectFunction(),e.pixelRatio=i.getPixelRatio(),e.mrt=i.getMRT(),e.clearColor=i.getClearColor(e.clearColor||new an),e.clearAlpha=i.getClearAlpha(),e.autoClear=i.autoClear,e.scissorTest=i.getScissorTest(),e}function Gre(i,e){return e=zre(i,e),i.setMRT(null),i.setRenderObjectFunction(null),i.setClearColor(0,1),i.autoClear=!0,e}function qre(i,e){i.toneMapping=e.toneMapping,i.toneMappingExposure=e.toneMappingExposure,i.outputColorSpace=e.outputColorSpace,i.setRenderTarget(e.renderTarget,e.activeCubeFace,e.activeMipmapLevel),i.setRenderObjectFunction(e.renderObjectFunction),i.setPixelRatio(e.pixelRatio),i.setMRT(e.mrt),i.setClearColor(e.clearColor,e.clearAlpha),i.autoClear=e.autoClear,i.setScissorTest(e.scissorTest)}function Vre(i,e={}){return e.background=i.background,e.backgroundNode=i.backgroundNode,e.overrideMaterial=i.overrideMaterial,e}function Hre(i,e){return e=Vre(i,e),i.background=null,i.backgroundNode=null,i.overrideMaterial=null,e}function jre(i,e){i.background=e.background,i.backgroundNode=e.backgroundNode,i.overrideMaterial=e.overrideMaterial}function Wre(i,e,t){return t=Gre(i,t),t=Hre(e,t),t}function $re(i,e,t){qre(i,t),jre(e,t)}const lN=new WeakMap,Xre=$e(([i,e,t])=>{let n=Nc.sub(i).length();return n=n.sub(e).div(t.sub(e)),n=n.saturate(),n}),Yre=i=>{const e=i.shadow.camera,t=ji("near","float",e).setGroup(Rn),n=ji("far","float",e).setGroup(Rn),r=T9(i);return Xre(r,t,n)},Qre=i=>{let e=lN.get(i);if(e===void 0){const t=i.isPointLight?Yre(i):null;e=new Vr,e.colorNode=dn(0,0,0,1),e.depthNode=t,e.isShadowNodeMaterial=!0,e.name="ShadowMaterial",e.fog=!1,lN.set(i,e)}return e},RB=$e(({depthTexture:i,shadowCoord:e})=>di(i,e.xy).compare(e.z)),NB=$e(({depthTexture:i,shadowCoord:e,shadow:t})=>{const n=(R,C)=>di(i,R).compare(C),r=ji("mapSize","vec2",t).setGroup(Rn),s=ji("radius","float",t).setGroup(Rn),a=Et(1).div(r),l=a.x.negate().mul(s),u=a.y.negate().mul(s),h=a.x.mul(s),m=a.y.mul(s),v=l.div(2),x=u.div(2),S=h.div(2),w=m.div(2);return Qr(n(e.xy.add(Et(l,u)),e.z),n(e.xy.add(Et(0,u)),e.z),n(e.xy.add(Et(h,u)),e.z),n(e.xy.add(Et(v,x)),e.z),n(e.xy.add(Et(0,x)),e.z),n(e.xy.add(Et(S,x)),e.z),n(e.xy.add(Et(l,0)),e.z),n(e.xy.add(Et(v,0)),e.z),n(e.xy,e.z),n(e.xy.add(Et(S,0)),e.z),n(e.xy.add(Et(h,0)),e.z),n(e.xy.add(Et(v,w)),e.z),n(e.xy.add(Et(0,w)),e.z),n(e.xy.add(Et(S,w)),e.z),n(e.xy.add(Et(l,m)),e.z),n(e.xy.add(Et(0,m)),e.z),n(e.xy.add(Et(h,m)),e.z)).mul(1/17)}),DB=$e(({depthTexture:i,shadowCoord:e,shadow:t})=>{const n=(m,v)=>di(i,m).compare(v),r=ji("mapSize","vec2",t).setGroup(Rn),s=Et(1).div(r),a=s.x,l=s.y,u=e.xy,h=Hc(u.mul(r).add(.5));return u.subAssign(h.mul(s)),Qr(n(u,e.z),n(u.add(Et(a,0)),e.z),n(u.add(Et(0,l)),e.z),n(u.add(s),e.z),Fi(n(u.add(Et(a.negate(),0)),e.z),n(u.add(Et(a.mul(2),0)),e.z),h.x),Fi(n(u.add(Et(a.negate(),l)),e.z),n(u.add(Et(a.mul(2),l)),e.z),h.x),Fi(n(u.add(Et(0,l.negate())),e.z),n(u.add(Et(0,l.mul(2))),e.z),h.y),Fi(n(u.add(Et(a,l.negate())),e.z),n(u.add(Et(a,l.mul(2))),e.z),h.y),Fi(Fi(n(u.add(Et(a.negate(),l.negate())),e.z),n(u.add(Et(a.mul(2),l.negate())),e.z),h.x),Fi(n(u.add(Et(a.negate(),l.mul(2))),e.z),n(u.add(Et(a.mul(2),l.mul(2))),e.z),h.x),h.y)).mul(1/9)}),PB=$e(({depthTexture:i,shadowCoord:e})=>{const t=ve(1).toVar(),n=di(i).sample(e.xy).rg,r=Fy(e.z,n.x);return ni(r.notEqual(ve(1)),()=>{const s=e.z.sub(n.x),a=qr(0,n.y.mul(n.y));let l=a.div(a.add(s.mul(s)));l=vu(wi(l,.3).div(.95-.3)),t.assign(vu(qr(r,l)))}),t}),Kre=$e(({samples:i,radius:e,size:t,shadowPass:n})=>{const r=ve(0).toVar(),s=ve(0).toVar(),a=i.lessThanEqual(ve(1)).select(ve(0),ve(2).div(i.sub(1))),l=i.lessThanEqual(ve(1)).select(ve(0),ve(-1));ki({start:Me(0),end:Me(i),type:"int",condition:"<"},({i:h})=>{const m=l.add(ve(h).mul(a)),v=n.sample(Qr(e1.xy,Et(0,m).mul(e)).div(t)).x;r.addAssign(v),s.addAssign(v.mul(v))}),r.divAssign(i),s.divAssign(i);const u=Cu(s.sub(r.mul(r)));return Et(r,u)}),Zre=$e(({samples:i,radius:e,size:t,shadowPass:n})=>{const r=ve(0).toVar(),s=ve(0).toVar(),a=i.lessThanEqual(ve(1)).select(ve(0),ve(2).div(i.sub(1))),l=i.lessThanEqual(ve(1)).select(ve(0),ve(-1));ki({start:Me(0),end:Me(i),type:"int",condition:"<"},({i:h})=>{const m=l.add(ve(h).mul(a)),v=n.sample(Qr(e1.xy,Et(m,0).mul(e)).div(t));r.addAssign(v.x),s.addAssign(Qr(v.y.mul(v.y),v.x.mul(v.x)))}),r.divAssign(i),s.divAssign(i);const u=Cu(s.sub(r.mul(r)));return Et(r,u)}),Jre=[RB,NB,DB,PB];let lS;const mv=new TE;class LB extends kre{static get type(){return"ShadowNode"}constructor(e,t=null){super(e),this.shadow=t||e.shadow,this.shadowMap=null,this.vsmShadowMapVertical=null,this.vsmShadowMapHorizontal=null,this.vsmMaterialVertical=null,this.vsmMaterialHorizontal=null,this._node=null,this.isShadowNode=!0}setupShadowFilter(e,{filterFn:t,depthTexture:n,shadowCoord:r,shadow:s}){const a=r.x.greaterThanEqual(0).and(r.x.lessThanEqual(1)).and(r.y.greaterThanEqual(0)).and(r.y.lessThanEqual(1)).and(r.z.lessThanEqual(1)),l=t({depthTexture:n,shadowCoord:r,shadow:s});return a.select(l,ve(1))}setupShadowCoord(e,t){const{shadow:n}=this,{renderer:r}=e,s=ji("bias","float",n).setGroup(Rn);let a=t,l;if(n.camera.isOrthographicCamera||r.logarithmicDepthBuffer!==!0)a=a.xyz.div(a.w),l=a.z,r.coordinateSystem===pu&&(l=l.mul(2).sub(1));else{const u=a.w;a=a.xy.div(u);const h=ji("near","float",n.camera).setGroup(Rn),m=ji("far","float",n.camera).setGroup(Rn);l=dE(u.negate(),h,m)}return a=Ue(a.x,a.y.oneMinus(),l.add(s)),a}getShadowFilterFn(e){return Jre[e]}setupShadow(e){const{renderer:t}=e,{light:n,shadow:r}=this,s=t.shadowMap.type,a=new qc(r.mapSize.width,r.mapSize.height);a.compareFunction=my;const l=e.createRenderTarget(r.mapSize.width,r.mapSize.height);if(l.depthTexture=a,r.camera.updateProjectionMatrix(),s===xo){a.compareFunction=null,this.vsmShadowMapVertical=e.createRenderTarget(r.mapSize.width,r.mapSize.height,{format:lA,type:Gs}),this.vsmShadowMapHorizontal=e.createRenderTarget(r.mapSize.width,r.mapSize.height,{format:lA,type:Gs});const E=di(a),B=di(this.vsmShadowMapVertical.texture),L=ji("blurSamples","float",r).setGroup(Rn),O=ji("radius","float",r).setGroup(Rn),G=ji("mapSize","vec2",r).setGroup(Rn);let q=this.vsmMaterialVertical||(this.vsmMaterialVertical=new Vr);q.fragmentNode=Kre({samples:L,radius:O,size:G,shadowPass:E}).context(e.getSharedContext()),q.name="VSMVertical",q=this.vsmMaterialHorizontal||(this.vsmMaterialHorizontal=new Vr),q.fragmentNode=Zre({samples:L,radius:O,size:G,shadowPass:B}).context(e.getSharedContext()),q.name="VSMHorizontal"}const u=ji("intensity","float",r).setGroup(Rn),h=ji("normalBias","float",r).setGroup(Rn),m=RE(n).mul(LE.add(Hy.mul(h))),v=this.setupShadowCoord(e,m),x=r.filterNode||this.getShadowFilterFn(t.shadowMap.type)||null;if(x===null)throw new Error("THREE.WebGPURenderer: Shadow map type not supported yet.");const S=s===xo?this.vsmShadowMapHorizontal.texture:a,w=this.setupShadowFilter(e,{filterFn:x,shadowTexture:l.texture,depthTexture:S,shadowCoord:v,shadow:r}),R=di(l.texture,v),C=Fi(1,w.rgb.mix(R,1),u.mul(R.a)).toVar();return this.shadowMap=l,this.shadow.map=l,C}setup(e){if(e.renderer.shadowMap.enabled!==!1)return $e(()=>{let t=this._node;return this.setupShadowPosition(e),t===null&&(this._node=t=this.setupShadow(e)),e.material.shadowNode&&console.warn('THREE.NodeMaterial: ".shadowNode" is deprecated. Use ".castShadowNode" instead.'),e.material.receivedShadowNode&&(t=e.material.receivedShadowNode(t)),t})()}renderShadow(e){const{shadow:t,shadowMap:n,light:r}=this,{renderer:s,scene:a}=e;t.updateMatrices(r),n.setSize(t.mapSize.width,t.mapSize.height),s.render(a,t.camera)}updateShadow(e){const{shadowMap:t,light:n,shadow:r}=this,{renderer:s,scene:a,camera:l}=e,u=s.shadowMap.type,h=t.depthTexture.version;this._depthVersionCached=h,r.camera.layers.mask=l.layers.mask;const m=s.getRenderObjectFunction(),v=s.getMRT(),x=v?v.has("velocity"):!1;lS=Wre(s,a,lS),a.overrideMaterial=Qre(n),s.setRenderObjectFunction((S,w,R,C,E,B,...L)=>{(S.castShadow===!0||S.receiveShadow&&u===xo)&&(x&&(FP(S).useVelocity=!0),S.onBeforeShadow(s,S,l,r.camera,C,w.overrideMaterial,B),s.renderObject(S,w,R,C,E,B,...L),S.onAfterShadow(s,S,l,r.camera,C,w.overrideMaterial,B))}),s.setRenderTarget(t),this.renderShadow(e),s.setRenderObjectFunction(m),n.isPointLight!==!0&&u===xo&&this.vsmPass(s),$re(s,a,lS)}vsmPass(e){const{shadow:t}=this;this.vsmShadowMapVertical.setSize(t.mapSize.width,t.mapSize.height),this.vsmShadowMapHorizontal.setSize(t.mapSize.width,t.mapSize.height),e.setRenderTarget(this.vsmShadowMapVertical),mv.material=this.vsmMaterialVertical,mv.render(e),e.setRenderTarget(this.vsmShadowMapHorizontal),mv.material=this.vsmMaterialHorizontal,mv.render(e)}dispose(){this.shadowMap.dispose(),this.shadowMap=null,this.vsmShadowMapVertical!==null&&(this.vsmShadowMapVertical.dispose(),this.vsmShadowMapVertical=null,this.vsmMaterialVertical.dispose(),this.vsmMaterialVertical=null),this.vsmShadowMapHorizontal!==null&&(this.vsmShadowMapHorizontal.dispose(),this.vsmShadowMapHorizontal=null,this.vsmMaterialHorizontal.dispose(),this.vsmMaterialHorizontal=null),super.dispose()}updateBefore(e){const{shadow:t}=this;(t.needsUpdate||t.autoUpdate)&&(this.updateShadow(e),this.shadowMap.depthTexture.version===this._depthVersionCached&&(t.needsUpdate=!1))}}const UB=(i,e)=>gt(new LB(i,e));class xA extends K0{static get type(){return"AnalyticLightNode"}constructor(e=null){super(),this.light=e,this.color=new an,this.colorNode=e&&e.colorNode||gn(this.color).setGroup(Rn),this.baseColorNode=null,this.shadowNode=null,this.shadowColorNode=null,this.isAnalyticLightNode=!0,this.updateType=jn.FRAME}customCacheKey(){return EM(this.light.id,this.light.castShadow?1:0)}getHash(){return this.light.uuid}setupShadowNode(){return UB(this.light)}setupShadow(e){const{renderer:t}=e;if(t.shadowMap.enabled===!1)return;let n=this.shadowColorNode;if(n===null){const r=this.light.shadow.shadowNode;let s;r!==void 0?s=gt(r):s=this.setupShadowNode(e),this.shadowNode=s,this.shadowColorNode=n=this.colorNode.mul(s),this.baseColorNode=this.colorNode}this.colorNode=n}setup(e){this.colorNode=this.baseColorNode||this.colorNode,this.light.castShadow?e.object.receiveShadow&&this.setupShadow(e):this.shadowNode!==null&&(this.shadowNode.dispose(),this.shadowNode=null,this.shadowColorNode=null)}update(){const{light:e}=this;this.color.copy(e.color).multiplyScalar(e.intensity)}}const UE=$e(i=>{const{lightDistance:e,cutoffDistance:t,decayExponent:n}=i,r=e.pow(n).max(.01).reciprocal();return t.greaterThan(0).select(r.mul(e.div(t).pow4().oneMinus().clamp().pow2()),r)}),ese=new an,Xl=$e(([i,e])=>{const t=i.toVar(),n=ur(t),r=Dl(1,qr(n.x,qr(n.y,n.z)));n.mulAssign(r),t.mulAssign(r.mul(e.mul(2).oneMinus()));const s=Et(t.xy).toVar(),l=e.mul(1.5).oneMinus();return ni(n.z.greaterThanEqual(l),()=>{ni(t.z.greaterThan(0),()=>{s.x.assign(wi(4,t.x))})}).ElseIf(n.x.greaterThanEqual(l),()=>{const u=Cg(t.x);s.x.assign(t.z.mul(u).add(u.mul(2)))}).ElseIf(n.y.greaterThanEqual(l),()=>{const u=Cg(t.y);s.x.assign(t.x.add(u.mul(2)).add(2)),s.y.assign(t.z.mul(u).sub(2))}),Et(.125,.25).mul(s).add(Et(.375,.75)).flipY()}).setLayout({name:"cubeToUV",type:"vec2",inputs:[{name:"pos",type:"vec3"},{name:"texelSizeY",type:"float"}]}),tse=$e(({depthTexture:i,bd3D:e,dp:t,texelSize:n})=>di(i,Xl(e,n.y)).compare(t)),nse=$e(({depthTexture:i,bd3D:e,dp:t,texelSize:n,shadow:r})=>{const s=ji("radius","float",r).setGroup(Rn),a=Et(-1,1).mul(s).mul(n.y);return di(i,Xl(e.add(a.xyy),n.y)).compare(t).add(di(i,Xl(e.add(a.yyy),n.y)).compare(t)).add(di(i,Xl(e.add(a.xyx),n.y)).compare(t)).add(di(i,Xl(e.add(a.yyx),n.y)).compare(t)).add(di(i,Xl(e,n.y)).compare(t)).add(di(i,Xl(e.add(a.xxy),n.y)).compare(t)).add(di(i,Xl(e.add(a.yxy),n.y)).compare(t)).add(di(i,Xl(e.add(a.xxx),n.y)).compare(t)).add(di(i,Xl(e.add(a.yxx),n.y)).compare(t)).mul(1/9)}),ise=$e(({filterFn:i,depthTexture:e,shadowCoord:t,shadow:n})=>{const r=t.xyz.toVar(),s=r.length(),a=gn("float").setGroup(Rn).onRenderUpdate(()=>n.camera.near),l=gn("float").setGroup(Rn).onRenderUpdate(()=>n.camera.far),u=ji("bias","float",n).setGroup(Rn),h=gn(n.mapSize).setGroup(Rn),m=ve(1).toVar();return ni(s.sub(l).lessThanEqual(0).and(s.sub(a).greaterThanEqual(0)),()=>{const v=s.sub(a).div(l.sub(a)).toVar();v.addAssign(u);const x=r.normalize(),S=Et(1).div(h.mul(Et(4,2)));m.assign(i({depthTexture:e,bd3D:x,dp:v,texelSize:S,shadow:n}))}),m}),uN=new Ln,Nd=new dt,Am=new dt;class rse extends LB{static get type(){return"PointShadowNode"}constructor(e,t=null){super(e,t)}getShadowFilterFn(e){return e===BF?tse:nse}setupShadowCoord(e,t){return t}setupShadowFilter(e,{filterFn:t,shadowTexture:n,depthTexture:r,shadowCoord:s,shadow:a}){return ise({filterFn:t,shadowTexture:n,depthTexture:r,shadowCoord:s,shadow:a})}renderShadow(e){const{shadow:t,shadowMap:n,light:r}=this,{renderer:s,scene:a}=e,l=t.getFrameExtents();Am.copy(t.mapSize),Am.multiply(l),n.setSize(Am.width,Am.height),Nd.copy(t.mapSize);const u=s.autoClear,h=s.getClearColor(ese),m=s.getClearAlpha();s.autoClear=!1,s.setClearColor(t.clearColor,t.clearAlpha),s.clear();const v=t.getViewportCount();for(let x=0;xgt(new rse(i,e)),BB=$e(({color:i,lightViewPosition:e,cutoffDistance:t,decayExponent:n},r)=>{const s=r.context.lightingModel,a=e.sub(Xr),l=a.normalize(),u=a.length(),h=UE({lightDistance:u,cutoffDistance:t,decayExponent:n}),m=i.mul(h),v=r.context.reflectedLight;s.direct({lightDirection:l,lightColor:m,reflectedLight:v},r.stack,r)});class ase extends xA{static get type(){return"PointLightNode"}constructor(e=null){super(e),this.cutoffDistanceNode=gn(0).setGroup(Rn),this.decayExponentNode=gn(2).setGroup(Rn)}update(e){const{light:t}=this;super.update(e),this.cutoffDistanceNode.value=t.distance,this.decayExponentNode.value=t.decay}setupShadowNode(){return sse(this.light)}setup(e){super.setup(e),BB({color:this.colorNode,lightViewPosition:Jy(this.light),cutoffDistance:this.cutoffDistanceNode,decayExponent:this.decayExponentNode}).append()}}const ose=$e(([i=Er()])=>{const e=i.mul(2),t=e.x.floor(),n=e.y.floor();return t.add(n).mod(2).sign()}),zm=$e(([i,e,t])=>{const n=ve(t).toVar(),r=ve(e).toVar(),s=Ic(i).toVar();return zs(s,r,n)}).setLayout({name:"mx_select",type:"float",inputs:[{name:"b",type:"bool"},{name:"t",type:"float"},{name:"f",type:"float"}]}),ry=$e(([i,e])=>{const t=Ic(e).toVar(),n=ve(i).toVar();return zs(t,n.negate(),n)}).setLayout({name:"mx_negate_if",type:"float",inputs:[{name:"val",type:"float"},{name:"b",type:"bool"}]}),Yr=$e(([i])=>{const e=ve(i).toVar();return Me(hu(e))}).setLayout({name:"mx_floor",type:"int",inputs:[{name:"x",type:"float"}]}),_r=$e(([i,e])=>{const t=ve(i).toVar();return e.assign(Yr(t)),t.sub(ve(e))}),lse=$e(([i,e,t,n,r,s])=>{const a=ve(s).toVar(),l=ve(r).toVar(),u=ve(n).toVar(),h=ve(t).toVar(),m=ve(e).toVar(),v=ve(i).toVar(),x=ve(wi(1,l)).toVar();return wi(1,a).mul(v.mul(x).add(m.mul(l))).add(a.mul(h.mul(x).add(u.mul(l))))}).setLayout({name:"mx_bilerp_0",type:"float",inputs:[{name:"v0",type:"float"},{name:"v1",type:"float"},{name:"v2",type:"float"},{name:"v3",type:"float"},{name:"s",type:"float"},{name:"t",type:"float"}]}),use=$e(([i,e,t,n,r,s])=>{const a=ve(s).toVar(),l=ve(r).toVar(),u=Ue(n).toVar(),h=Ue(t).toVar(),m=Ue(e).toVar(),v=Ue(i).toVar(),x=ve(wi(1,l)).toVar();return wi(1,a).mul(v.mul(x).add(m.mul(l))).add(a.mul(h.mul(x).add(u.mul(l))))}).setLayout({name:"mx_bilerp_1",type:"vec3",inputs:[{name:"v0",type:"vec3"},{name:"v1",type:"vec3"},{name:"v2",type:"vec3"},{name:"v3",type:"vec3"},{name:"s",type:"float"},{name:"t",type:"float"}]}),OB=Vs([lse,use]),cse=$e(([i,e,t,n,r,s,a,l,u,h,m])=>{const v=ve(m).toVar(),x=ve(h).toVar(),S=ve(u).toVar(),w=ve(l).toVar(),R=ve(a).toVar(),C=ve(s).toVar(),E=ve(r).toVar(),B=ve(n).toVar(),L=ve(t).toVar(),O=ve(e).toVar(),G=ve(i).toVar(),q=ve(wi(1,S)).toVar(),z=ve(wi(1,x)).toVar();return ve(wi(1,v)).toVar().mul(z.mul(G.mul(q).add(O.mul(S))).add(x.mul(L.mul(q).add(B.mul(S))))).add(v.mul(z.mul(E.mul(q).add(C.mul(S))).add(x.mul(R.mul(q).add(w.mul(S))))))}).setLayout({name:"mx_trilerp_0",type:"float",inputs:[{name:"v0",type:"float"},{name:"v1",type:"float"},{name:"v2",type:"float"},{name:"v3",type:"float"},{name:"v4",type:"float"},{name:"v5",type:"float"},{name:"v6",type:"float"},{name:"v7",type:"float"},{name:"s",type:"float"},{name:"t",type:"float"},{name:"r",type:"float"}]}),hse=$e(([i,e,t,n,r,s,a,l,u,h,m])=>{const v=ve(m).toVar(),x=ve(h).toVar(),S=ve(u).toVar(),w=Ue(l).toVar(),R=Ue(a).toVar(),C=Ue(s).toVar(),E=Ue(r).toVar(),B=Ue(n).toVar(),L=Ue(t).toVar(),O=Ue(e).toVar(),G=Ue(i).toVar(),q=ve(wi(1,S)).toVar(),z=ve(wi(1,x)).toVar();return ve(wi(1,v)).toVar().mul(z.mul(G.mul(q).add(O.mul(S))).add(x.mul(L.mul(q).add(B.mul(S))))).add(v.mul(z.mul(E.mul(q).add(C.mul(S))).add(x.mul(R.mul(q).add(w.mul(S))))))}).setLayout({name:"mx_trilerp_1",type:"vec3",inputs:[{name:"v0",type:"vec3"},{name:"v1",type:"vec3"},{name:"v2",type:"vec3"},{name:"v3",type:"vec3"},{name:"v4",type:"vec3"},{name:"v5",type:"vec3"},{name:"v6",type:"vec3"},{name:"v7",type:"vec3"},{name:"s",type:"float"},{name:"t",type:"float"},{name:"r",type:"float"}]}),IB=Vs([cse,hse]),fse=$e(([i,e,t])=>{const n=ve(t).toVar(),r=ve(e).toVar(),s=Zt(i).toVar(),a=Zt(s.bitAnd(Zt(7))).toVar(),l=ve(zm(a.lessThan(Zt(4)),r,n)).toVar(),u=ve(Wn(2,zm(a.lessThan(Zt(4)),n,r))).toVar();return ry(l,Ic(a.bitAnd(Zt(1)))).add(ry(u,Ic(a.bitAnd(Zt(2)))))}).setLayout({name:"mx_gradient_float_0",type:"float",inputs:[{name:"hash",type:"uint"},{name:"x",type:"float"},{name:"y",type:"float"}]}),Ase=$e(([i,e,t,n])=>{const r=ve(n).toVar(),s=ve(t).toVar(),a=ve(e).toVar(),l=Zt(i).toVar(),u=Zt(l.bitAnd(Zt(15))).toVar(),h=ve(zm(u.lessThan(Zt(8)),a,s)).toVar(),m=ve(zm(u.lessThan(Zt(4)),s,zm(u.equal(Zt(12)).or(u.equal(Zt(14))),a,r))).toVar();return ry(h,Ic(u.bitAnd(Zt(1)))).add(ry(m,Ic(u.bitAnd(Zt(2)))))}).setLayout({name:"mx_gradient_float_1",type:"float",inputs:[{name:"hash",type:"uint"},{name:"x",type:"float"},{name:"y",type:"float"},{name:"z",type:"float"}]}),Rs=Vs([fse,Ase]),dse=$e(([i,e,t])=>{const n=ve(t).toVar(),r=ve(e).toVar(),s=Y0(i).toVar();return Ue(Rs(s.x,r,n),Rs(s.y,r,n),Rs(s.z,r,n))}).setLayout({name:"mx_gradient_vec3_0",type:"vec3",inputs:[{name:"hash",type:"uvec3"},{name:"x",type:"float"},{name:"y",type:"float"}]}),pse=$e(([i,e,t,n])=>{const r=ve(n).toVar(),s=ve(t).toVar(),a=ve(e).toVar(),l=Y0(i).toVar();return Ue(Rs(l.x,a,s,r),Rs(l.y,a,s,r),Rs(l.z,a,s,r))}).setLayout({name:"mx_gradient_vec3_1",type:"vec3",inputs:[{name:"hash",type:"uvec3"},{name:"x",type:"float"},{name:"y",type:"float"},{name:"z",type:"float"}]}),Ho=Vs([dse,pse]),mse=$e(([i])=>{const e=ve(i).toVar();return Wn(.6616,e)}).setLayout({name:"mx_gradient_scale2d_0",type:"float",inputs:[{name:"v",type:"float"}]}),gse=$e(([i])=>{const e=ve(i).toVar();return Wn(.982,e)}).setLayout({name:"mx_gradient_scale3d_0",type:"float",inputs:[{name:"v",type:"float"}]}),vse=$e(([i])=>{const e=Ue(i).toVar();return Wn(.6616,e)}).setLayout({name:"mx_gradient_scale2d_1",type:"vec3",inputs:[{name:"v",type:"vec3"}]}),FB=Vs([mse,vse]),_se=$e(([i])=>{const e=Ue(i).toVar();return Wn(.982,e)}).setLayout({name:"mx_gradient_scale3d_1",type:"vec3",inputs:[{name:"v",type:"vec3"}]}),kB=Vs([gse,_se]),To=$e(([i,e])=>{const t=Me(e).toVar(),n=Zt(i).toVar();return n.shiftLeft(t).bitOr(n.shiftRight(Me(32).sub(t)))}).setLayout({name:"mx_rotl32",type:"uint",inputs:[{name:"x",type:"uint"},{name:"k",type:"int"}]}),zB=$e(([i,e,t])=>{i.subAssign(t),i.bitXorAssign(To(t,Me(4))),t.addAssign(e),e.subAssign(i),e.bitXorAssign(To(i,Me(6))),i.addAssign(t),t.subAssign(e),t.bitXorAssign(To(e,Me(8))),e.addAssign(i),i.subAssign(t),i.bitXorAssign(To(t,Me(16))),t.addAssign(e),e.subAssign(i),e.bitXorAssign(To(i,Me(19))),i.addAssign(t),t.subAssign(e),t.bitXorAssign(To(e,Me(4))),e.addAssign(i)}),n1=$e(([i,e,t])=>{const n=Zt(t).toVar(),r=Zt(e).toVar(),s=Zt(i).toVar();return n.bitXorAssign(r),n.subAssign(To(r,Me(14))),s.bitXorAssign(n),s.subAssign(To(n,Me(11))),r.bitXorAssign(s),r.subAssign(To(s,Me(25))),n.bitXorAssign(r),n.subAssign(To(r,Me(16))),s.bitXorAssign(n),s.subAssign(To(n,Me(4))),r.bitXorAssign(s),r.subAssign(To(s,Me(14))),n.bitXorAssign(r),n.subAssign(To(r,Me(24))),n}).setLayout({name:"mx_bjfinal",type:"uint",inputs:[{name:"a",type:"uint"},{name:"b",type:"uint"},{name:"c",type:"uint"}]}),oa=$e(([i])=>{const e=Zt(i).toVar();return ve(e).div(ve(Zt(Me(4294967295))))}).setLayout({name:"mx_bits_to_01",type:"float",inputs:[{name:"bits",type:"uint"}]}),fu=$e(([i])=>{const e=ve(i).toVar();return e.mul(e).mul(e).mul(e.mul(e.mul(6).sub(15)).add(10))}).setLayout({name:"mx_fade",type:"float",inputs:[{name:"t",type:"float"}]}),yse=$e(([i])=>{const e=Me(i).toVar(),t=Zt(Zt(1)).toVar(),n=Zt(Zt(Me(3735928559)).add(t.shiftLeft(Zt(2))).add(Zt(13))).toVar();return n1(n.add(Zt(e)),n,n)}).setLayout({name:"mx_hash_int_0",type:"uint",inputs:[{name:"x",type:"int"}]}),xse=$e(([i,e])=>{const t=Me(e).toVar(),n=Me(i).toVar(),r=Zt(Zt(2)).toVar(),s=Zt().toVar(),a=Zt().toVar(),l=Zt().toVar();return s.assign(a.assign(l.assign(Zt(Me(3735928559)).add(r.shiftLeft(Zt(2))).add(Zt(13))))),s.addAssign(Zt(n)),a.addAssign(Zt(t)),n1(s,a,l)}).setLayout({name:"mx_hash_int_1",type:"uint",inputs:[{name:"x",type:"int"},{name:"y",type:"int"}]}),bse=$e(([i,e,t])=>{const n=Me(t).toVar(),r=Me(e).toVar(),s=Me(i).toVar(),a=Zt(Zt(3)).toVar(),l=Zt().toVar(),u=Zt().toVar(),h=Zt().toVar();return l.assign(u.assign(h.assign(Zt(Me(3735928559)).add(a.shiftLeft(Zt(2))).add(Zt(13))))),l.addAssign(Zt(s)),u.addAssign(Zt(r)),h.addAssign(Zt(n)),n1(l,u,h)}).setLayout({name:"mx_hash_int_2",type:"uint",inputs:[{name:"x",type:"int"},{name:"y",type:"int"},{name:"z",type:"int"}]}),Sse=$e(([i,e,t,n])=>{const r=Me(n).toVar(),s=Me(t).toVar(),a=Me(e).toVar(),l=Me(i).toVar(),u=Zt(Zt(4)).toVar(),h=Zt().toVar(),m=Zt().toVar(),v=Zt().toVar();return h.assign(m.assign(v.assign(Zt(Me(3735928559)).add(u.shiftLeft(Zt(2))).add(Zt(13))))),h.addAssign(Zt(l)),m.addAssign(Zt(a)),v.addAssign(Zt(s)),zB(h,m,v),h.addAssign(Zt(r)),n1(h,m,v)}).setLayout({name:"mx_hash_int_3",type:"uint",inputs:[{name:"x",type:"int"},{name:"y",type:"int"},{name:"z",type:"int"},{name:"xx",type:"int"}]}),Tse=$e(([i,e,t,n,r])=>{const s=Me(r).toVar(),a=Me(n).toVar(),l=Me(t).toVar(),u=Me(e).toVar(),h=Me(i).toVar(),m=Zt(Zt(5)).toVar(),v=Zt().toVar(),x=Zt().toVar(),S=Zt().toVar();return v.assign(x.assign(S.assign(Zt(Me(3735928559)).add(m.shiftLeft(Zt(2))).add(Zt(13))))),v.addAssign(Zt(h)),x.addAssign(Zt(u)),S.addAssign(Zt(l)),zB(v,x,S),v.addAssign(Zt(a)),x.addAssign(Zt(s)),n1(v,x,S)}).setLayout({name:"mx_hash_int_4",type:"uint",inputs:[{name:"x",type:"int"},{name:"y",type:"int"},{name:"z",type:"int"},{name:"xx",type:"int"},{name:"yy",type:"int"}]}),Wi=Vs([yse,xse,bse,Sse,Tse]),wse=$e(([i,e])=>{const t=Me(e).toVar(),n=Me(i).toVar(),r=Zt(Wi(n,t)).toVar(),s=Y0().toVar();return s.x.assign(r.bitAnd(Me(255))),s.y.assign(r.shiftRight(Me(8)).bitAnd(Me(255))),s.z.assign(r.shiftRight(Me(16)).bitAnd(Me(255))),s}).setLayout({name:"mx_hash_vec3_0",type:"uvec3",inputs:[{name:"x",type:"int"},{name:"y",type:"int"}]}),Mse=$e(([i,e,t])=>{const n=Me(t).toVar(),r=Me(e).toVar(),s=Me(i).toVar(),a=Zt(Wi(s,r,n)).toVar(),l=Y0().toVar();return l.x.assign(a.bitAnd(Me(255))),l.y.assign(a.shiftRight(Me(8)).bitAnd(Me(255))),l.z.assign(a.shiftRight(Me(16)).bitAnd(Me(255))),l}).setLayout({name:"mx_hash_vec3_1",type:"uvec3",inputs:[{name:"x",type:"int"},{name:"y",type:"int"},{name:"z",type:"int"}]}),jo=Vs([wse,Mse]),Ese=$e(([i])=>{const e=Et(i).toVar(),t=Me().toVar(),n=Me().toVar(),r=ve(_r(e.x,t)).toVar(),s=ve(_r(e.y,n)).toVar(),a=ve(fu(r)).toVar(),l=ve(fu(s)).toVar(),u=ve(OB(Rs(Wi(t,n),r,s),Rs(Wi(t.add(Me(1)),n),r.sub(1),s),Rs(Wi(t,n.add(Me(1))),r,s.sub(1)),Rs(Wi(t.add(Me(1)),n.add(Me(1))),r.sub(1),s.sub(1)),a,l)).toVar();return FB(u)}).setLayout({name:"mx_perlin_noise_float_0",type:"float",inputs:[{name:"p",type:"vec2"}]}),Cse=$e(([i])=>{const e=Ue(i).toVar(),t=Me().toVar(),n=Me().toVar(),r=Me().toVar(),s=ve(_r(e.x,t)).toVar(),a=ve(_r(e.y,n)).toVar(),l=ve(_r(e.z,r)).toVar(),u=ve(fu(s)).toVar(),h=ve(fu(a)).toVar(),m=ve(fu(l)).toVar(),v=ve(IB(Rs(Wi(t,n,r),s,a,l),Rs(Wi(t.add(Me(1)),n,r),s.sub(1),a,l),Rs(Wi(t,n.add(Me(1)),r),s,a.sub(1),l),Rs(Wi(t.add(Me(1)),n.add(Me(1)),r),s.sub(1),a.sub(1),l),Rs(Wi(t,n,r.add(Me(1))),s,a,l.sub(1)),Rs(Wi(t.add(Me(1)),n,r.add(Me(1))),s.sub(1),a,l.sub(1)),Rs(Wi(t,n.add(Me(1)),r.add(Me(1))),s,a.sub(1),l.sub(1)),Rs(Wi(t.add(Me(1)),n.add(Me(1)),r.add(Me(1))),s.sub(1),a.sub(1),l.sub(1)),u,h,m)).toVar();return kB(v)}).setLayout({name:"mx_perlin_noise_float_1",type:"float",inputs:[{name:"p",type:"vec3"}]}),BE=Vs([Ese,Cse]),Rse=$e(([i])=>{const e=Et(i).toVar(),t=Me().toVar(),n=Me().toVar(),r=ve(_r(e.x,t)).toVar(),s=ve(_r(e.y,n)).toVar(),a=ve(fu(r)).toVar(),l=ve(fu(s)).toVar(),u=Ue(OB(Ho(jo(t,n),r,s),Ho(jo(t.add(Me(1)),n),r.sub(1),s),Ho(jo(t,n.add(Me(1))),r,s.sub(1)),Ho(jo(t.add(Me(1)),n.add(Me(1))),r.sub(1),s.sub(1)),a,l)).toVar();return FB(u)}).setLayout({name:"mx_perlin_noise_vec3_0",type:"vec3",inputs:[{name:"p",type:"vec2"}]}),Nse=$e(([i])=>{const e=Ue(i).toVar(),t=Me().toVar(),n=Me().toVar(),r=Me().toVar(),s=ve(_r(e.x,t)).toVar(),a=ve(_r(e.y,n)).toVar(),l=ve(_r(e.z,r)).toVar(),u=ve(fu(s)).toVar(),h=ve(fu(a)).toVar(),m=ve(fu(l)).toVar(),v=Ue(IB(Ho(jo(t,n,r),s,a,l),Ho(jo(t.add(Me(1)),n,r),s.sub(1),a,l),Ho(jo(t,n.add(Me(1)),r),s,a.sub(1),l),Ho(jo(t.add(Me(1)),n.add(Me(1)),r),s.sub(1),a.sub(1),l),Ho(jo(t,n,r.add(Me(1))),s,a,l.sub(1)),Ho(jo(t.add(Me(1)),n,r.add(Me(1))),s.sub(1),a,l.sub(1)),Ho(jo(t,n.add(Me(1)),r.add(Me(1))),s,a.sub(1),l.sub(1)),Ho(jo(t.add(Me(1)),n.add(Me(1)),r.add(Me(1))),s.sub(1),a.sub(1),l.sub(1)),u,h,m)).toVar();return kB(v)}).setLayout({name:"mx_perlin_noise_vec3_1",type:"vec3",inputs:[{name:"p",type:"vec3"}]}),OE=Vs([Rse,Nse]),Dse=$e(([i])=>{const e=ve(i).toVar(),t=Me(Yr(e)).toVar();return oa(Wi(t))}).setLayout({name:"mx_cell_noise_float_0",type:"float",inputs:[{name:"p",type:"float"}]}),Pse=$e(([i])=>{const e=Et(i).toVar(),t=Me(Yr(e.x)).toVar(),n=Me(Yr(e.y)).toVar();return oa(Wi(t,n))}).setLayout({name:"mx_cell_noise_float_1",type:"float",inputs:[{name:"p",type:"vec2"}]}),Lse=$e(([i])=>{const e=Ue(i).toVar(),t=Me(Yr(e.x)).toVar(),n=Me(Yr(e.y)).toVar(),r=Me(Yr(e.z)).toVar();return oa(Wi(t,n,r))}).setLayout({name:"mx_cell_noise_float_2",type:"float",inputs:[{name:"p",type:"vec3"}]}),Use=$e(([i])=>{const e=dn(i).toVar(),t=Me(Yr(e.x)).toVar(),n=Me(Yr(e.y)).toVar(),r=Me(Yr(e.z)).toVar(),s=Me(Yr(e.w)).toVar();return oa(Wi(t,n,r,s))}).setLayout({name:"mx_cell_noise_float_3",type:"float",inputs:[{name:"p",type:"vec4"}]}),Bse=Vs([Dse,Pse,Lse,Use]),Ose=$e(([i])=>{const e=ve(i).toVar(),t=Me(Yr(e)).toVar();return Ue(oa(Wi(t,Me(0))),oa(Wi(t,Me(1))),oa(Wi(t,Me(2))))}).setLayout({name:"mx_cell_noise_vec3_0",type:"vec3",inputs:[{name:"p",type:"float"}]}),Ise=$e(([i])=>{const e=Et(i).toVar(),t=Me(Yr(e.x)).toVar(),n=Me(Yr(e.y)).toVar();return Ue(oa(Wi(t,n,Me(0))),oa(Wi(t,n,Me(1))),oa(Wi(t,n,Me(2))))}).setLayout({name:"mx_cell_noise_vec3_1",type:"vec3",inputs:[{name:"p",type:"vec2"}]}),Fse=$e(([i])=>{const e=Ue(i).toVar(),t=Me(Yr(e.x)).toVar(),n=Me(Yr(e.y)).toVar(),r=Me(Yr(e.z)).toVar();return Ue(oa(Wi(t,n,r,Me(0))),oa(Wi(t,n,r,Me(1))),oa(Wi(t,n,r,Me(2))))}).setLayout({name:"mx_cell_noise_vec3_2",type:"vec3",inputs:[{name:"p",type:"vec3"}]}),kse=$e(([i])=>{const e=dn(i).toVar(),t=Me(Yr(e.x)).toVar(),n=Me(Yr(e.y)).toVar(),r=Me(Yr(e.z)).toVar(),s=Me(Yr(e.w)).toVar();return Ue(oa(Wi(t,n,r,s,Me(0))),oa(Wi(t,n,r,s,Me(1))),oa(Wi(t,n,r,s,Me(2))))}).setLayout({name:"mx_cell_noise_vec3_3",type:"vec3",inputs:[{name:"p",type:"vec4"}]}),GB=Vs([Ose,Ise,Fse,kse]),sy=$e(([i,e,t,n])=>{const r=ve(n).toVar(),s=ve(t).toVar(),a=Me(e).toVar(),l=Ue(i).toVar(),u=ve(0).toVar(),h=ve(1).toVar();return ki(a,()=>{u.addAssign(h.mul(BE(l))),h.mulAssign(r),l.mulAssign(s)}),u}).setLayout({name:"mx_fractal_noise_float",type:"float",inputs:[{name:"p",type:"vec3"},{name:"octaves",type:"int"},{name:"lacunarity",type:"float"},{name:"diminish",type:"float"}]}),qB=$e(([i,e,t,n])=>{const r=ve(n).toVar(),s=ve(t).toVar(),a=Me(e).toVar(),l=Ue(i).toVar(),u=Ue(0).toVar(),h=ve(1).toVar();return ki(a,()=>{u.addAssign(h.mul(OE(l))),h.mulAssign(r),l.mulAssign(s)}),u}).setLayout({name:"mx_fractal_noise_vec3",type:"vec3",inputs:[{name:"p",type:"vec3"},{name:"octaves",type:"int"},{name:"lacunarity",type:"float"},{name:"diminish",type:"float"}]}),zse=$e(([i,e,t,n])=>{const r=ve(n).toVar(),s=ve(t).toVar(),a=Me(e).toVar(),l=Ue(i).toVar();return Et(sy(l,a,s,r),sy(l.add(Ue(Me(19),Me(193),Me(17))),a,s,r))}).setLayout({name:"mx_fractal_noise_vec2",type:"vec2",inputs:[{name:"p",type:"vec3"},{name:"octaves",type:"int"},{name:"lacunarity",type:"float"},{name:"diminish",type:"float"}]}),Gse=$e(([i,e,t,n])=>{const r=ve(n).toVar(),s=ve(t).toVar(),a=Me(e).toVar(),l=Ue(i).toVar(),u=Ue(qB(l,a,s,r)).toVar(),h=ve(sy(l.add(Ue(Me(19),Me(193),Me(17))),a,s,r)).toVar();return dn(u,h)}).setLayout({name:"mx_fractal_noise_vec4",type:"vec4",inputs:[{name:"p",type:"vec3"},{name:"octaves",type:"int"},{name:"lacunarity",type:"float"},{name:"diminish",type:"float"}]}),qse=$e(([i,e,t,n,r,s,a])=>{const l=Me(a).toVar(),u=ve(s).toVar(),h=Me(r).toVar(),m=Me(n).toVar(),v=Me(t).toVar(),x=Me(e).toVar(),S=Et(i).toVar(),w=Ue(GB(Et(x.add(m),v.add(h)))).toVar(),R=Et(w.x,w.y).toVar();R.subAssign(.5),R.mulAssign(u),R.addAssign(.5);const C=Et(Et(ve(x),ve(v)).add(R)).toVar(),E=Et(C.sub(S)).toVar();return ni(l.equal(Me(2)),()=>ur(E.x).add(ur(E.y))),ni(l.equal(Me(3)),()=>qr(ur(E.x),ur(E.y))),Xh(E,E)}).setLayout({name:"mx_worley_distance_0",type:"float",inputs:[{name:"p",type:"vec2"},{name:"x",type:"int"},{name:"y",type:"int"},{name:"xoff",type:"int"},{name:"yoff",type:"int"},{name:"jitter",type:"float"},{name:"metric",type:"int"}]}),Vse=$e(([i,e,t,n,r,s,a,l,u])=>{const h=Me(u).toVar(),m=ve(l).toVar(),v=Me(a).toVar(),x=Me(s).toVar(),S=Me(r).toVar(),w=Me(n).toVar(),R=Me(t).toVar(),C=Me(e).toVar(),E=Ue(i).toVar(),B=Ue(GB(Ue(C.add(S),R.add(x),w.add(v)))).toVar();B.subAssign(.5),B.mulAssign(m),B.addAssign(.5);const L=Ue(Ue(ve(C),ve(R),ve(w)).add(B)).toVar(),O=Ue(L.sub(E)).toVar();return ni(h.equal(Me(2)),()=>ur(O.x).add(ur(O.y)).add(ur(O.z))),ni(h.equal(Me(3)),()=>qr(qr(ur(O.x),ur(O.y)),ur(O.z))),Xh(O,O)}).setLayout({name:"mx_worley_distance_1",type:"float",inputs:[{name:"p",type:"vec3"},{name:"x",type:"int"},{name:"y",type:"int"},{name:"z",type:"int"},{name:"xoff",type:"int"},{name:"yoff",type:"int"},{name:"zoff",type:"int"},{name:"jitter",type:"float"},{name:"metric",type:"int"}]}),Z0=Vs([qse,Vse]),Hse=$e(([i,e,t])=>{const n=Me(t).toVar(),r=ve(e).toVar(),s=Et(i).toVar(),a=Me().toVar(),l=Me().toVar(),u=Et(_r(s.x,a),_r(s.y,l)).toVar(),h=ve(1e6).toVar();return ki({start:-1,end:Me(1),name:"x",condition:"<="},({x:m})=>{ki({start:-1,end:Me(1),name:"y",condition:"<="},({y:v})=>{const x=ve(Z0(u,m,v,a,l,r,n)).toVar();h.assign(to(h,x))})}),ni(n.equal(Me(0)),()=>{h.assign(Cu(h))}),h}).setLayout({name:"mx_worley_noise_float_0",type:"float",inputs:[{name:"p",type:"vec2"},{name:"jitter",type:"float"},{name:"metric",type:"int"}]}),jse=$e(([i,e,t])=>{const n=Me(t).toVar(),r=ve(e).toVar(),s=Et(i).toVar(),a=Me().toVar(),l=Me().toVar(),u=Et(_r(s.x,a),_r(s.y,l)).toVar(),h=Et(1e6,1e6).toVar();return ki({start:-1,end:Me(1),name:"x",condition:"<="},({x:m})=>{ki({start:-1,end:Me(1),name:"y",condition:"<="},({y:v})=>{const x=ve(Z0(u,m,v,a,l,r,n)).toVar();ni(x.lessThan(h.x),()=>{h.y.assign(h.x),h.x.assign(x)}).ElseIf(x.lessThan(h.y),()=>{h.y.assign(x)})})}),ni(n.equal(Me(0)),()=>{h.assign(Cu(h))}),h}).setLayout({name:"mx_worley_noise_vec2_0",type:"vec2",inputs:[{name:"p",type:"vec2"},{name:"jitter",type:"float"},{name:"metric",type:"int"}]}),Wse=$e(([i,e,t])=>{const n=Me(t).toVar(),r=ve(e).toVar(),s=Et(i).toVar(),a=Me().toVar(),l=Me().toVar(),u=Et(_r(s.x,a),_r(s.y,l)).toVar(),h=Ue(1e6,1e6,1e6).toVar();return ki({start:-1,end:Me(1),name:"x",condition:"<="},({x:m})=>{ki({start:-1,end:Me(1),name:"y",condition:"<="},({y:v})=>{const x=ve(Z0(u,m,v,a,l,r,n)).toVar();ni(x.lessThan(h.x),()=>{h.z.assign(h.y),h.y.assign(h.x),h.x.assign(x)}).ElseIf(x.lessThan(h.y),()=>{h.z.assign(h.y),h.y.assign(x)}).ElseIf(x.lessThan(h.z),()=>{h.z.assign(x)})})}),ni(n.equal(Me(0)),()=>{h.assign(Cu(h))}),h}).setLayout({name:"mx_worley_noise_vec3_0",type:"vec3",inputs:[{name:"p",type:"vec2"},{name:"jitter",type:"float"},{name:"metric",type:"int"}]}),$se=$e(([i,e,t])=>{const n=Me(t).toVar(),r=ve(e).toVar(),s=Ue(i).toVar(),a=Me().toVar(),l=Me().toVar(),u=Me().toVar(),h=Ue(_r(s.x,a),_r(s.y,l),_r(s.z,u)).toVar(),m=ve(1e6).toVar();return ki({start:-1,end:Me(1),name:"x",condition:"<="},({x:v})=>{ki({start:-1,end:Me(1),name:"y",condition:"<="},({y:x})=>{ki({start:-1,end:Me(1),name:"z",condition:"<="},({z:S})=>{const w=ve(Z0(h,v,x,S,a,l,u,r,n)).toVar();m.assign(to(m,w))})})}),ni(n.equal(Me(0)),()=>{m.assign(Cu(m))}),m}).setLayout({name:"mx_worley_noise_float_1",type:"float",inputs:[{name:"p",type:"vec3"},{name:"jitter",type:"float"},{name:"metric",type:"int"}]}),Xse=Vs([Hse,$se]),Yse=$e(([i,e,t])=>{const n=Me(t).toVar(),r=ve(e).toVar(),s=Ue(i).toVar(),a=Me().toVar(),l=Me().toVar(),u=Me().toVar(),h=Ue(_r(s.x,a),_r(s.y,l),_r(s.z,u)).toVar(),m=Et(1e6,1e6).toVar();return ki({start:-1,end:Me(1),name:"x",condition:"<="},({x:v})=>{ki({start:-1,end:Me(1),name:"y",condition:"<="},({y:x})=>{ki({start:-1,end:Me(1),name:"z",condition:"<="},({z:S})=>{const w=ve(Z0(h,v,x,S,a,l,u,r,n)).toVar();ni(w.lessThan(m.x),()=>{m.y.assign(m.x),m.x.assign(w)}).ElseIf(w.lessThan(m.y),()=>{m.y.assign(w)})})})}),ni(n.equal(Me(0)),()=>{m.assign(Cu(m))}),m}).setLayout({name:"mx_worley_noise_vec2_1",type:"vec2",inputs:[{name:"p",type:"vec3"},{name:"jitter",type:"float"},{name:"metric",type:"int"}]}),Qse=Vs([jse,Yse]),Kse=$e(([i,e,t])=>{const n=Me(t).toVar(),r=ve(e).toVar(),s=Ue(i).toVar(),a=Me().toVar(),l=Me().toVar(),u=Me().toVar(),h=Ue(_r(s.x,a),_r(s.y,l),_r(s.z,u)).toVar(),m=Ue(1e6,1e6,1e6).toVar();return ki({start:-1,end:Me(1),name:"x",condition:"<="},({x:v})=>{ki({start:-1,end:Me(1),name:"y",condition:"<="},({y:x})=>{ki({start:-1,end:Me(1),name:"z",condition:"<="},({z:S})=>{const w=ve(Z0(h,v,x,S,a,l,u,r,n)).toVar();ni(w.lessThan(m.x),()=>{m.z.assign(m.y),m.y.assign(m.x),m.x.assign(w)}).ElseIf(w.lessThan(m.y),()=>{m.z.assign(m.y),m.y.assign(w)}).ElseIf(w.lessThan(m.z),()=>{m.z.assign(w)})})})}),ni(n.equal(Me(0)),()=>{m.assign(Cu(m))}),m}).setLayout({name:"mx_worley_noise_vec3_1",type:"vec3",inputs:[{name:"p",type:"vec3"},{name:"jitter",type:"float"},{name:"metric",type:"int"}]}),Zse=Vs([Wse,Kse]),Jse=$e(([i])=>{const e=i.y,t=i.z,n=Ue().toVar();return ni(e.lessThan(1e-4),()=>{n.assign(Ue(t,t,t))}).Else(()=>{let r=i.x;r=r.sub(hu(r)).mul(6).toVar();const s=Me(QM(r)),a=r.sub(ve(s)),l=t.mul(e.oneMinus()),u=t.mul(e.mul(a).oneMinus()),h=t.mul(e.mul(a.oneMinus()).oneMinus());ni(s.equal(Me(0)),()=>{n.assign(Ue(t,h,l))}).ElseIf(s.equal(Me(1)),()=>{n.assign(Ue(u,t,l))}).ElseIf(s.equal(Me(2)),()=>{n.assign(Ue(l,t,h))}).ElseIf(s.equal(Me(3)),()=>{n.assign(Ue(l,u,t))}).ElseIf(s.equal(Me(4)),()=>{n.assign(Ue(h,l,t))}).Else(()=>{n.assign(Ue(t,l,u))})}),n}).setLayout({name:"mx_hsvtorgb",type:"vec3",inputs:[{name:"hsv",type:"vec3"}]}),eae=$e(([i])=>{const e=Ue(i).toVar(),t=ve(e.x).toVar(),n=ve(e.y).toVar(),r=ve(e.z).toVar(),s=ve(to(t,to(n,r))).toVar(),a=ve(qr(t,qr(n,r))).toVar(),l=ve(a.sub(s)).toVar(),u=ve().toVar(),h=ve().toVar(),m=ve().toVar();return m.assign(a),ni(a.greaterThan(0),()=>{h.assign(l.div(a))}).Else(()=>{h.assign(0)}),ni(h.lessThanEqual(0),()=>{u.assign(0)}).Else(()=>{ni(t.greaterThanEqual(a),()=>{u.assign(n.sub(r).div(l))}).ElseIf(n.greaterThanEqual(a),()=>{u.assign(Qr(2,r.sub(t).div(l)))}).Else(()=>{u.assign(Qr(4,t.sub(n).div(l)))}),u.mulAssign(1/6),ni(u.lessThan(0),()=>{u.addAssign(1)})}),Ue(u,h,m)}).setLayout({name:"mx_rgbtohsv",type:"vec3",inputs:[{name:"c",type:"vec3"}]}),tae=$e(([i])=>{const e=Ue(i).toVar(),t=LM(VM(e,Ue(.04045))).toVar(),n=Ue(e.div(12.92)).toVar(),r=Ue(Cl(qr(e.add(Ue(.055)),Ue(0)).div(1.055),Ue(2.4))).toVar();return Fi(n,r,t)}).setLayout({name:"mx_srgb_texture_to_lin_rec709",type:"vec3",inputs:[{name:"color",type:"vec3"}]}),VB=(i,e)=>{i=ve(i),e=ve(e);const t=Et(e.dFdx(),e.dFdy()).length().mul(.7071067811865476);return kc(i.sub(t),i.add(t),e)},HB=(i,e,t,n)=>Fi(i,e,t[n].clamp()),nae=(i,e,t=Er())=>HB(i,e,t,"x"),iae=(i,e,t=Er())=>HB(i,e,t,"y"),jB=(i,e,t,n,r)=>Fi(i,e,VB(t,n[r])),rae=(i,e,t,n=Er())=>jB(i,e,t,n,"x"),sae=(i,e,t,n=Er())=>jB(i,e,t,n,"y"),aae=(i=1,e=0,t=Er())=>t.mul(i).add(e),oae=(i,e=1)=>(i=ve(i),i.abs().pow(e).mul(i.sign())),lae=(i,e=1,t=.5)=>ve(i).sub(t).mul(e).add(t),uae=(i=Er(),e=1,t=0)=>BE(i.convert("vec2|vec3")).mul(e).add(t),cae=(i=Er(),e=1,t=0)=>OE(i.convert("vec2|vec3")).mul(e).add(t),hae=(i=Er(),e=1,t=0)=>(i=i.convert("vec2|vec3"),dn(OE(i),BE(i.add(Et(19,73)))).mul(e).add(t)),fae=(i=Er(),e=1)=>Xse(i.convert("vec2|vec3"),e,Me(1)),Aae=(i=Er(),e=1)=>Qse(i.convert("vec2|vec3"),e,Me(1)),dae=(i=Er(),e=1)=>Zse(i.convert("vec2|vec3"),e,Me(1)),pae=(i=Er())=>Bse(i.convert("vec2|vec3")),mae=(i=Er(),e=3,t=2,n=.5,r=1)=>sy(i,Me(e),t,n).mul(r),gae=(i=Er(),e=3,t=2,n=.5,r=1)=>zse(i,Me(e),t,n).mul(r),vae=(i=Er(),e=3,t=2,n=.5,r=1)=>qB(i,Me(e),t,n).mul(r),_ae=(i=Er(),e=3,t=2,n=.5,r=1)=>Gse(i,Me(e),t,n).mul(r),yae=$e(([i,e,t])=>{const n=Fc(i).toVar("nDir"),r=wi(ve(.5).mul(e.sub(t)),Nc).div(n).toVar("rbmax"),s=wi(ve(-.5).mul(e.sub(t)),Nc).div(n).toVar("rbmin"),a=Ue().toVar("rbminmax");a.x=n.x.greaterThan(ve(0)).select(r.x,s.x),a.y=n.y.greaterThan(ve(0)).select(r.y,s.y),a.z=n.z.greaterThan(ve(0)).select(r.z,s.z);const l=to(to(a.x,a.y),a.z).toVar("correction");return Nc.add(n.mul(l)).toVar("boxIntersection").sub(t)}),WB=$e(([i,e])=>{const t=i.x,n=i.y,r=i.z;let s=e.element(0).mul(.886227);return s=s.add(e.element(1).mul(2*.511664).mul(n)),s=s.add(e.element(2).mul(2*.511664).mul(r)),s=s.add(e.element(3).mul(2*.511664).mul(t)),s=s.add(e.element(4).mul(2*.429043).mul(t).mul(n)),s=s.add(e.element(5).mul(2*.429043).mul(n).mul(r)),s=s.add(e.element(6).mul(r.mul(r).mul(.743125).sub(.247708))),s=s.add(e.element(7).mul(2*.429043).mul(t).mul(r)),s=s.add(e.element(8).mul(.429043).mul(Wn(t,t).sub(Wn(n,n)))),s});var W=Object.freeze({__proto__:null,BRDF_GGX:XT,BRDF_Lambert:AA,BasicShadowFilter:RB,Break:wU,Continue:bee,DFGApprox:_E,D_GGX:zU,Discard:_9,EPSILON:wL,F_Schlick:F0,Fn:$e,INFINITY:AJ,If:ni,Loop:ki,NodeAccess:sa,NodeShaderStage:IT,NodeType:VZ,NodeUpdateType:jn,PCFShadowFilter:NB,PCFSoftShadowFilter:DB,PI:Z_,PI2:dJ,Return:RJ,Schlick_to_F0:qU,ScriptableNodeResources:i_,ShaderNode:Um,TBNViewMatrix:Yf,VSMShadowFilter:PB,V_GGX_SmithCorrelated:kU,abs:ur,acesFilmicToneMapping:yB,acos:DL,add:Qr,addMethodChaining:lt,addNodeElement:DJ,agxToneMapping:xB,all:HM,alphaT:Y_,and:dL,anisotropy:Rh,anisotropyB:iA,anisotropyT:Bm,any:ML,append:$P,arrayBuffer:lJ,asin:NL,assign:oL,atan:$M,atan2:KL,atomicAdd:Rre,atomicAnd:Lre,atomicFunc:jc,atomicMax:Dre,atomicMin:Pre,atomicOr:Ure,atomicStore:Cre,atomicSub:Nre,atomicXor:Bre,attenuationColor:zM,attenuationDistance:kM,attribute:_u,attributeArray:bie,backgroundBlurriness:lB,backgroundIntensity:ew,backgroundRotation:uB,batch:bU,billboarding:tie,bitAnd:vL,bitNot:_L,bitOr:yL,bitXor:xL,bitangentGeometry:nee,bitangentLocal:iee,bitangentView:I9,bitangentWorld:ree,bitcast:pJ,blendBurn:fB,blendColor:Uie,blendDodge:AB,blendOverlay:pB,blendScreen:dB,blur:YU,bool:Ic,buffer:Yg,bufferAttribute:$g,bumpMap:G9,burn:Bie,bvec2:QP,bvec3:LM,bvec4:eL,bypass:p9,cache:Im,call:lL,cameraFar:Ph,cameraNear:Dh,cameraNormalMatrix:IJ,cameraPosition:S9,cameraProjectionMatrix:_A,cameraProjectionMatrixInverse:BJ,cameraViewMatrix:so,cameraWorldMatrix:OJ,cbrt:jL,cdl:Vie,ceil:Iy,checker:ose,cineonToneMapping:_B,clamp:vu,clearcoat:X_,clearcoatRoughness:wg,code:Ky,color:XP,colorSpaceToWorking:nE,colorToDirection:Kee,compute:d9,cond:ZL,context:zy,convert:nL,convertColorSpace:yJ,convertToTexture:die,cos:yc,cross:ky,cubeTexture:I0,dFdx:XM,dFdy:YM,dashSize:Qv,defaultBuildStages:FT,defaultShaderStages:GP,defined:xg,degrees:CL,deltaTime:sB,densityFog:fre,densityFogFactor:EE,depth:pE,depthPass:Yie,difference:GL,diffuseColor:Ui,directPointLight:BB,directionToColor:PU,dispersion:GM,distance:zL,div:Dl,dodge:Oie,dot:Xh,drawIndex:_U,dynamicBufferAttribute:A9,element:tL,emissive:qT,equal:uL,equals:FL,equirectUV:mE,exp:jM,exp2:O0,expression:Hh,faceDirection:Xg,faceForward:eE,faceforward:mJ,float:ve,floor:hu,fog:Ng,fract:Hc,frameGroup:sL,frameId:jne,frontFacing:E9,fwidth:OL,gain:Fne,gapSize:VT,getConstNodeType:WP,getCurrentStack:PM,getDirection:$U,getDistanceAttenuation:UE,getGeometryRoughness:FU,getNormalFromDepth:mie,getParallaxCorrectNormal:yae,getRoughness:vE,getScreenPosition:pie,getShIrradianceAt:WB,getTextureIndex:iB,getViewPosition:zd,glsl:rre,glslFn:sre,grayscale:kie,greaterThan:VM,greaterThanEqual:AL,hash:Ine,highpModelNormalViewMatrix:XJ,highpModelViewMatrix:$J,hue:qie,instance:gee,instanceIndex:Jg,instancedArray:Sie,instancedBufferAttribute:J_,instancedDynamicBufferAttribute:HT,instancedMesh:xU,int:Me,inverseSqrt:WM,inversesqrt:gJ,invocationLocalIndex:mee,invocationSubgroupIndex:pee,ior:Om,iridescence:By,iridescenceIOR:OM,iridescenceThickness:IM,ivec2:ms,ivec3:KP,ivec4:ZP,js:nre,label:e9,length:Rc,lengthSq:WL,lessThan:hL,lessThanEqual:fL,lightPosition:NE,lightProjectionUV:EB,lightShadowMatrix:RE,lightTargetDirection:DE,lightTargetPosition:CB,lightViewPosition:Jy,lightingContext:EU,lights:Fre,linearDepth:ty,linearToneMapping:gB,localId:vre,log:Oy,log2:cu,logarithmicDepthToViewZ:Oee,loop:See,luminance:wE,mat2:Ly,mat3:ha,mat4:nA,matcapUV:KU,materialAO:gU,materialAlphaTest:q9,materialAnisotropy:iU,materialAnisotropyVector:kd,materialAttenuationColor:hU,materialAttenuationDistance:cU,materialClearcoat:K9,materialClearcoatNormal:J9,materialClearcoatRoughness:Z9,materialColor:V9,materialDispersion:mU,materialEmissive:j9,materialIOR:uU,materialIridescence:rU,materialIridescenceIOR:sU,materialIridescenceThickness:aU,materialLightMap:lE,materialLineDashOffset:pU,materialLineDashSize:AU,materialLineGapSize:dU,materialLineScale:fU,materialLineWidth:fee,materialMetalness:Y9,materialNormal:Q9,materialOpacity:oE,materialPointWidth:Aee,materialReference:Tc,materialReflectivity:Jv,materialRefractionRatio:N9,materialRotation:eU,materialRoughness:X9,materialSheen:tU,materialSheenRoughness:nU,materialShininess:H9,materialSpecular:W9,materialSpecularColor:$9,materialSpecularIntensity:$T,materialSpecularStrength:Fm,materialThickness:lU,materialTransmission:oU,max:qr,maxMipLevel:b9,mediumpModelViewMatrix:M9,metalness:Tg,min:to,mix:Fi,mixElement:YL,mod:KM,modInt:qM,modelDirection:qJ,modelNormalMatrix:w9,modelPosition:VJ,modelScale:HJ,modelViewMatrix:Q0,modelViewPosition:jJ,modelViewProjection:uE,modelWorldMatrix:$o,modelWorldMatrixInverse:WJ,morphReference:MU,mrt:rB,mul:Wn,mx_aastep:VB,mx_cell_noise_float:pae,mx_contrast:lae,mx_fractal_noise_float:mae,mx_fractal_noise_vec2:gae,mx_fractal_noise_vec3:vae,mx_fractal_noise_vec4:_ae,mx_hsvtorgb:Jse,mx_noise_float:uae,mx_noise_vec3:cae,mx_noise_vec4:hae,mx_ramplr:nae,mx_ramptb:iae,mx_rgbtohsv:eae,mx_safepower:oae,mx_splitlr:rae,mx_splittb:sae,mx_srgb_texture_to_lin_rec709:tae,mx_transform_uv:aae,mx_worley_noise_float:fae,mx_worley_noise_vec2:Aae,mx_worley_noise_vec3:dae,negate:PL,neutralToneMapping:bB,nodeArray:tA,nodeImmutable:Vt,nodeObject:gt,nodeObjects:Vg,nodeProxy:ut,normalFlat:C9,normalGeometry:qy,normalLocal:no,normalMap:WT,normalView:Jo,normalWorld:Vy,normalize:Fc,not:mL,notEqual:cL,numWorkgroups:mre,objectDirection:FJ,objectGroup:BM,objectPosition:T9,objectScale:zJ,objectViewPosition:GJ,objectWorldMatrix:kJ,oneMinus:LL,or:pL,orthographicDepthToViewZ:Bee,oscSawtooth:Zne,oscSine:Yne,oscSquare:Qne,oscTriangle:Kne,output:Eg,outputStruct:Bne,overlay:Fie,overloadingFn:Vs,parabola:JT,parallaxDirection:k9,parallaxUV:aee,parameter:Lne,pass:$ie,passTexture:Xie,pcurve:kne,perspectiveDepthToViewZ:AE,pmremTexture:yE,pointUV:Eie,pointWidth:cJ,positionGeometry:Gy,positionLocal:Gr,positionPrevious:ey,positionView:Xr,positionViewDirection:dr,positionWorld:Nc,positionWorldDirection:iE,posterize:jie,pow:Cl,pow2:ZM,pow3:qL,pow4:VL,property:aL,radians:EL,rand:XL,range:dre,rangeFog:hre,rangeFogFactor:ME,reciprocal:BL,reference:ji,referenceBuffer:jT,reflect:kL,reflectVector:L9,reflectView:D9,reflector:uie,refract:JM,refractVector:U9,refractView:P9,reinhardToneMapping:vB,remainder:TL,remap:g9,remapClamp:v9,renderGroup:Rn,renderOutput:y9,rendererReference:c9,rotate:xE,rotateUV:Jne,roughness:Zl,round:UL,rtt:oB,sRGBTransferEOTF:r9,sRGBTransferOETF:s9,sampler:UJ,saturate:$L,saturation:zie,screen:Iie,screenCoordinate:e1,screenSize:Rg,screenUV:bu,scriptable:cre,scriptableValue:n_,select:zs,setCurrentStack:bg,shaderStages:kT,shadow:UB,shadowPositionWorld:LE,sharedUniformGroup:UM,sheen:Xf,sheenRoughness:Uy,shiftLeft:bL,shiftRight:SL,shininess:Q_,sign:Cg,sin:Mo,sinc:zne,skinning:yee,skinningReference:TU,smoothstep:kc,smoothstepElement:QL,specularColor:ka,specularF90:Mg,spherizeUV:eie,split:uJ,spritesheetUV:rie,sqrt:Cu,stack:e_,step:Fy,storage:Qy,storageBarrier:bre,storageObject:xie,storageTexture:cB,string:oJ,sub:wi,subgroupIndex:dee,subgroupSize:_re,tan:RL,tangentGeometry:Wy,tangentLocal:Qg,tangentView:Kg,tangentWorld:O9,temp:n9,texture:di,texture3D:lne,textureBarrier:Sre,textureBicubic:jU,textureCubeUV:XU,textureLoad:Fr,textureSize:Fh,textureStore:Rie,thickness:FM,time:yA,timerDelta:Xne,timerGlobal:$ne,timerLocal:Wne,toOutputColorSpace:a9,toWorkingColorSpace:o9,toneMapping:h9,toneMappingExposure:f9,toonOutlinePass:Kie,transformDirection:HL,transformNormal:R9,transformNormalToView:rE,transformedBentNormalView:z9,transformedBitangentView:F9,transformedBitangentWorld:see,transformedClearcoatNormalView:Qd,transformedNormalView:zr,transformedNormalWorld:Hy,transformedTangentView:aE,transformedTangentWorld:tee,transmission:K_,transpose:IL,triNoise3D:qne,triplanarTexture:aie,triplanarTextures:aB,trunc:QM,tslFn:aJ,uint:Zt,uniform:gn,uniformArray:Sc,uniformGroup:rL,uniforms:ZJ,userData:Die,uv:Er,uvec2:YP,uvec3:Y0,uvec4:JP,varying:ro,varyingProperty:Sg,vec2:Et,vec3:Ue,vec4:dn,vectorComponents:gA,velocity:Lie,vertexColor:wie,vertexIndex:vU,vertexStage:i9,vibrance:Gie,viewZToLogarithmicDepth:dE,viewZToOrthographicDepth:s0,viewZToPerspectiveDepth:NU,viewport:cE,viewportBottomLeft:Pee,viewportCoordinate:RU,viewportDepthTexture:fE,viewportLinearDepth:Iee,viewportMipTexture:hE,viewportResolution:Nee,viewportSafeUV:nie,viewportSharedTexture:Qee,viewportSize:CU,viewportTexture:Lee,viewportTopLeft:Dee,viewportUV:Ree,wgsl:ire,wgslFn:are,workgroupArray:Mre,workgroupBarrier:xre,workgroupId:gre,workingToColorSpace:l9,xor:gL});const vc=new bE;class xae extends Yh{constructor(e,t){super(),this.renderer=e,this.nodes=t}update(e,t,n){const r=this.renderer,s=this.nodes.getBackgroundNode(e)||e.background;let a=!1;if(s===null)r._clearColor.getRGB(vc,Ro),vc.a=r._clearColor.a;else if(s.isColor===!0)s.getRGB(vc,Ro),vc.a=1,a=!0;else if(s.isNode===!0){const l=this.get(e),u=s;vc.copy(r._clearColor);let h=l.backgroundMesh;if(h===void 0){const v=zy(dn(u).mul(ew),{getUV:()=>uB.mul(Vy),getTextureLevel:()=>lB});let x=uE;x=x.setZ(x.w);const S=new Vr;S.name="Background.material",S.side=hr,S.depthTest=!1,S.depthWrite=!1,S.fog=!1,S.lights=!1,S.vertexNode=x,S.colorNode=v,l.backgroundMeshNode=v,l.backgroundMesh=h=new zi(new Eu(1,32,32),S),h.frustumCulled=!1,h.name="Background.mesh",h.onBeforeRender=function(w,R,C){this.matrixWorld.copyPosition(C.matrixWorld)}}const m=u.getCacheKey();l.backgroundCacheKey!==m&&(l.backgroundMeshNode.node=dn(u).mul(ew),l.backgroundMeshNode.needsUpdate=!0,h.material.needsUpdate=!0,l.backgroundCacheKey=m),t.unshift(h,h.geometry,h.material,0,0,null,null)}else console.error("THREE.Renderer: Unsupported background configuration.",s);if(r.autoClear===!0||a===!0){const l=n.clearColorValue;l.r=vc.r,l.g=vc.g,l.b=vc.b,l.a=vc.a,(r.backend.isWebGLBackend===!0||r.alpha===!0)&&(l.r*=l.a,l.g*=l.a,l.b*=l.a),n.depthClearValue=r._clearDepth,n.stencilClearValue=r._clearStencil,n.clearColor=r.autoClearColor===!0,n.clearDepth=r.autoClearDepth===!0,n.clearStencil=r.autoClearStencil===!0}else n.clearColor=!1,n.clearDepth=!1,n.clearStencil=!1}}let bae=0;class tw{constructor(e="",t=[],n=0,r=[]){this.name=e,this.bindings=t,this.index=n,this.bindingsReference=r,this.id=bae++}}class Sae{constructor(e,t,n,r,s,a,l,u,h,m=[]){this.vertexShader=e,this.fragmentShader=t,this.computeShader=n,this.transforms=m,this.nodeAttributes=r,this.bindings=s,this.updateNodes=a,this.updateBeforeNodes=l,this.updateAfterNodes=u,this.monitor=h,this.usedTimes=0}createBindings(){const e=[];for(const t of this.bindings)if(t.bindings[0].groupNode.shared!==!0){const r=new tw(t.name,[],t.index,t);e.push(r);for(const s of t.bindings)r.bindings.push(s.clone())}else e.push(t);return e}}class cN{constructor(e,t,n=null){this.isNodeAttribute=!0,this.name=e,this.type=t,this.node=n}}class Tae{constructor(e,t,n){this.isNodeUniform=!0,this.name=e,this.type=t,this.node=n.getSelf()}get value(){return this.node.value}set value(e){this.node.value=e}get id(){return this.node.id}get groupNode(){return this.node.groupNode}}class $B{constructor(e,t){this.isNodeVar=!0,this.name=e,this.type=t}}class wae extends $B{constructor(e,t){super(e,t),this.needsInterpolation=!1,this.isNodeVarying=!0}}class Mae{constructor(e,t,n=""){this.name=e,this.type=t,this.code=n,Object.defineProperty(this,"isNodeCode",{value:!0})}}let Eae=0;class uS{constructor(e=null){this.id=Eae++,this.nodesData=new WeakMap,this.parent=e}getData(e){let t=this.nodesData.get(e);return t===void 0&&this.parent!==null&&(t=this.parent.getData(e)),t}setData(e,t){this.nodesData.set(e,t)}}class Cae extends Mn{static get type(){return"StructTypeNode"}constructor(e,t){super(),this.name=e,this.types=t,this.isStructTypeNode=!0}getMemberTypes(){return this.types}}class bA{constructor(e,t){this.name=e,this.value=t,this.boundary=0,this.itemSize=0,this.offset=0}setValue(e){this.value=e}getValue(){return this.value}}class Rae extends bA{constructor(e,t=0){super(e,t),this.isNumberUniform=!0,this.boundary=4,this.itemSize=1}}class Nae extends bA{constructor(e,t=new dt){super(e,t),this.isVector2Uniform=!0,this.boundary=8,this.itemSize=2}}class Dae extends bA{constructor(e,t=new Ae){super(e,t),this.isVector3Uniform=!0,this.boundary=16,this.itemSize=3}}class Pae extends bA{constructor(e,t=new Ln){super(e,t),this.isVector4Uniform=!0,this.boundary=16,this.itemSize=4}}class Lae extends bA{constructor(e,t=new an){super(e,t),this.isColorUniform=!0,this.boundary=16,this.itemSize=3}}class Uae extends bA{constructor(e,t=new Vn){super(e,t),this.isMatrix3Uniform=!0,this.boundary=48,this.itemSize=12}}class Bae extends bA{constructor(e,t=new kn){super(e,t),this.isMatrix4Uniform=!0,this.boundary=64,this.itemSize=16}}class Oae extends Rae{constructor(e){super(e.name,e.value),this.nodeUniform=e}getValue(){return this.nodeUniform.value}getType(){return this.nodeUniform.type}}class Iae extends Nae{constructor(e){super(e.name,e.value),this.nodeUniform=e}getValue(){return this.nodeUniform.value}getType(){return this.nodeUniform.type}}class Fae extends Dae{constructor(e){super(e.name,e.value),this.nodeUniform=e}getValue(){return this.nodeUniform.value}getType(){return this.nodeUniform.type}}class kae extends Pae{constructor(e){super(e.name,e.value),this.nodeUniform=e}getValue(){return this.nodeUniform.value}getType(){return this.nodeUniform.type}}class zae extends Lae{constructor(e){super(e.name,e.value),this.nodeUniform=e}getValue(){return this.nodeUniform.value}getType(){return this.nodeUniform.type}}class Gae extends Uae{constructor(e){super(e.name,e.value),this.nodeUniform=e}getValue(){return this.nodeUniform.value}getType(){return this.nodeUniform.type}}class qae extends Bae{constructor(e){super(e.name,e.value),this.nodeUniform=e}getValue(){return this.nodeUniform.value}getType(){return this.nodeUniform.type}}const Kd=4,hN=[.125,.215,.35,.446,.526,.582],Gf=20,cS=new kg(-1,1,1,-1,0,1),Vae=new ya(90,1),fN=new an;let hS=null,fS=0,AS=0;const If=(1+Math.sqrt(5))/2,Dd=1/If,AN=[new Ae(-If,Dd,0),new Ae(If,Dd,0),new Ae(-Dd,0,If),new Ae(Dd,0,If),new Ae(0,If,-Dd),new Ae(0,If,Dd),new Ae(-1,1,-1),new Ae(1,1,-1),new Ae(-1,1,1),new Ae(1,1,1)],Hae=[3,1,5,0,4,2],dS=$U(Er(),_u("faceIndex")).normalize(),IE=Ue(dS.x,dS.y,dS.z);class jae{constructor(e){this._renderer=e,this._pingPongRenderTarget=null,this._lodMax=0,this._cubeSize=0,this._lodPlanes=[],this._sizeLods=[],this._sigmas=[],this._lodMeshes=[],this._blurMaterial=null,this._cubemapMaterial=null,this._equirectMaterial=null,this._backgroundBox=null}get _hasInitialized(){return this._renderer.hasInitialized()}fromScene(e,t=0,n=.1,r=100,s=null){if(this._setSize(256),this._hasInitialized===!1){console.warn("THREE.PMREMGenerator: .fromScene() called before the backend is initialized. Try using .fromSceneAsync() instead.");const l=s||this._allocateTargets();return this.fromSceneAsync(e,t,n,r,l),l}hS=this._renderer.getRenderTarget(),fS=this._renderer.getActiveCubeFace(),AS=this._renderer.getActiveMipmapLevel();const a=s||this._allocateTargets();return a.depthBuffer=!0,this._sceneToCubeUV(e,n,r,a),t>0&&this._blur(a,0,0,t),this._applyPMREM(a),this._cleanup(a),a}async fromSceneAsync(e,t=0,n=.1,r=100,s=null){return this._hasInitialized===!1&&await this._renderer.init(),this.fromScene(e,t,n,r,s)}fromEquirectangular(e,t=null){if(this._hasInitialized===!1){console.warn("THREE.PMREMGenerator: .fromEquirectangular() called before the backend is initialized. Try using .fromEquirectangularAsync() instead."),this._setSizeFromTexture(e);const n=t||this._allocateTargets();return this.fromEquirectangularAsync(e,n),n}return this._fromTexture(e,t)}async fromEquirectangularAsync(e,t=null){return this._hasInitialized===!1&&await this._renderer.init(),this._fromTexture(e,t)}fromCubemap(e,t=null){if(this._hasInitialized===!1){console.warn("THREE.PMREMGenerator: .fromCubemap() called before the backend is initialized. Try using .fromCubemapAsync() instead."),this._setSizeFromTexture(e);const n=t||this._allocateTargets();return this.fromCubemapAsync(e,t),n}return this._fromTexture(e,t)}async fromCubemapAsync(e,t=null){return this._hasInitialized===!1&&await this._renderer.init(),this._fromTexture(e,t)}async compileCubemapShader(){this._cubemapMaterial===null&&(this._cubemapMaterial=pN(),await this._compileMaterial(this._cubemapMaterial))}async compileEquirectangularShader(){this._equirectMaterial===null&&(this._equirectMaterial=mN(),await this._compileMaterial(this._equirectMaterial))}dispose(){this._dispose(),this._cubemapMaterial!==null&&this._cubemapMaterial.dispose(),this._equirectMaterial!==null&&this._equirectMaterial.dispose(),this._backgroundBox!==null&&(this._backgroundBox.geometry.dispose(),this._backgroundBox.material.dispose())}_setSizeFromTexture(e){e.mapping===Qo||e.mapping===Ko?this._setSize(e.image.length===0?16:e.image[0].width||e.image[0].image.width):this._setSize(e.image.width/4)}_setSize(e){this._lodMax=Math.floor(Math.log2(e)),this._cubeSize=Math.pow(2,this._lodMax)}_dispose(){this._blurMaterial!==null&&this._blurMaterial.dispose(),this._pingPongRenderTarget!==null&&this._pingPongRenderTarget.dispose();for(let e=0;e2?R:0,R,R),u.render(e,s)}u.autoClear=h,e.background=x}_textureToCubeUV(e,t){const n=this._renderer,r=e.mapping===Qo||e.mapping===Ko;r?this._cubemapMaterial===null&&(this._cubemapMaterial=pN(e)):this._equirectMaterial===null&&(this._equirectMaterial=mN(e));const s=r?this._cubemapMaterial:this._equirectMaterial;s.fragmentNode.value=e;const a=this._lodMeshes[0];a.material=s;const l=this._cubeSize;gv(t,0,0,3*l,2*l),n.setRenderTarget(t),n.render(a,cS)}_applyPMREM(e){const t=this._renderer,n=t.autoClear;t.autoClear=!1;const r=this._lodPlanes.length;for(let s=1;sGf&&console.warn(`sigmaRadians, ${s}, is too large and will clip, as it requested ${C} samples when the maximum is set to ${Gf}`);const E=[];let B=0;for(let z=0;zL-Kd?r-L+Kd:0),q=4*(this._cubeSize-O);gv(t,G,q,3*O,2*O),u.setRenderTarget(t),u.render(v,cS)}}function Wae(i){const e=[],t=[],n=[],r=[];let s=i;const a=i-Kd+1+hN.length;for(let l=0;li-Kd?h=hN[l-i+Kd-1]:l===0&&(h=0),n.push(h);const m=1/(u-2),v=-m,x=1+m,S=[v,v,x,v,x,x,v,v,x,x,v,x],w=6,R=6,C=3,E=2,B=1,L=new Float32Array(C*R*w),O=new Float32Array(E*R*w),G=new Float32Array(B*R*w);for(let z=0;z2?0:-1,V=[j,F,0,j+2/3,F,0,j+2/3,F+1,0,j,F,0,j+2/3,F+1,0,j,F+1,0],Y=Hae[z];L.set(V,C*R*Y),O.set(S,E*R*Y);const J=[Y,Y,Y,Y,Y,Y];G.set(J,B*R*Y)}const q=new Ki;q.setAttribute("position",new wr(L,C)),q.setAttribute("uv",new wr(O,E)),q.setAttribute("faceIndex",new wr(G,B)),e.push(q),r.push(new zi(q,null)),s>Kd&&s--}return{lodPlanes:e,sizeLods:t,sigmas:n,lodMeshes:r}}function dN(i,e,t){const n=new Wh(i,e,t);return n.texture.mapping=sA,n.texture.name="PMREM.cubeUv",n.texture.isPMREMTexture=!0,n.scissorTest=!0,n}function gv(i,e,t,n,r){i.viewport.set(e,t,n,r),i.scissor.set(e,t,n,r)}function FE(i){const e=new Vr;return e.depthTest=!1,e.depthWrite=!1,e.blending=Qa,e.name=`PMREM_${i}`,e}function $ae(i,e,t){const n=Sc(new Array(Gf).fill(0)),r=gn(new Ae(0,1,0)),s=gn(0),a=ve(Gf),l=gn(0),u=gn(1),h=di(null),m=gn(0),v=ve(1/e),x=ve(1/t),S=ve(i),w={n:a,latitudinal:l,weights:n,poleAxis:r,outputDirection:IE,dTheta:s,samples:u,envMap:h,mipInt:m,CUBEUV_TEXEL_WIDTH:v,CUBEUV_TEXEL_HEIGHT:x,CUBEUV_MAX_MIP:S},R=FE("blur");return R.uniforms=w,R.fragmentNode=YU({...w,latitudinal:l.equal(1)}),R}function pN(i){const e=FE("cubemap");return e.fragmentNode=I0(i,IE),e}function mN(i){const e=FE("equirect");return e.fragmentNode=di(i,mE(IE),0),e}const gN=new WeakMap,Xae=new Map([[Int8Array,"int"],[Int16Array,"int"],[Int32Array,"int"],[Uint8Array,"uint"],[Uint16Array,"uint"],[Uint32Array,"uint"],[Float32Array,"float"]]),vv=i=>/e/g.test(i)?String(i).replace(/\+/g,""):(i=Number(i),i+(i%1?"":".0"));class XB{constructor(e,t,n){this.object=e,this.material=e&&e.material||null,this.geometry=e&&e.geometry||null,this.renderer=t,this.parser=n,this.scene=null,this.camera=null,this.nodes=[],this.sequentialNodes=[],this.updateNodes=[],this.updateBeforeNodes=[],this.updateAfterNodes=[],this.hashNodes={},this.monitor=null,this.lightsNode=null,this.environmentNode=null,this.fogNode=null,this.clippingContext=null,this.vertexShader=null,this.fragmentShader=null,this.computeShader=null,this.flowNodes={vertex:[],fragment:[],compute:[]},this.flowCode={vertex:"",fragment:"",compute:""},this.uniforms={vertex:[],fragment:[],compute:[],index:0},this.structs={vertex:[],fragment:[],compute:[],index:0},this.bindings={vertex:{},fragment:{},compute:{}},this.bindingsIndexes={},this.bindGroups=null,this.attributes=[],this.bufferAttributes=[],this.varyings=[],this.codes={},this.vars={},this.flow={code:""},this.chaining=[],this.stack=e_(),this.stacks=[],this.tab=" ",this.currentFunctionNode=null,this.context={material:this.material},this.cache=new uS,this.globalCache=this.cache,this.flowsData=new WeakMap,this.shaderStage=null,this.buildStage=null,this.useComparisonMethod=!1}getBindGroupsCache(){let e=gN.get(this.renderer);return e===void 0&&(e=new Su,gN.set(this.renderer,e)),e}createRenderTarget(e,t,n){return new Wh(e,t,n)}createCubeRenderTarget(e,t){return new LU(e,t)}createPMREMGenerator(){return new jae(this.renderer)}includes(e){return this.nodes.includes(e)}_getBindGroup(e,t){const n=this.getBindGroupsCache(),r=[];let s=!0;for(const l of t)r.push(l),s=s&&l.groupNode.shared!==!0;let a;return s?(a=n.get(r),a===void 0&&(a=new tw(e,r,this.bindingsIndexes[e].group,r),n.set(r,a))):a=new tw(e,r,this.bindingsIndexes[e].group,r),a}getBindGroupArray(e,t){const n=this.bindings[t];let r=n[e];return r===void 0&&(this.bindingsIndexes[e]===void 0&&(this.bindingsIndexes[e]={binding:0,group:Object.keys(this.bindingsIndexes).length}),n[e]=r=[]),r}getBindings(){let e=this.bindGroups;if(e===null){const t={},n=this.bindings;for(const r of kT)for(const s in n[r]){const a=n[r][s];(t[s]||(t[s]=[])).push(...a)}e=[];for(const r in t){const s=t[r],a=this._getBindGroup(r,s);e.push(a)}this.bindGroups=e}return e}sortBindingGroups(){const e=this.getBindings();e.sort((t,n)=>t.bindings[0].groupNode.order-n.bindings[0].groupNode.order);for(let t=0;t=0?`${Math.round(t)}u`:"0u";if(e==="bool")return t?"true":"false";if(e==="color")return`${this.getType("vec3")}( ${vv(t.r)}, ${vv(t.g)}, ${vv(t.b)} )`;const n=this.getTypeLength(e),r=this.getComponentType(e),s=a=>this.generateConst(r,a);if(n===2)return`${this.getType(e)}( ${s(t.x)}, ${s(t.y)} )`;if(n===3)return`${this.getType(e)}( ${s(t.x)}, ${s(t.y)}, ${s(t.z)} )`;if(n===4)return`${this.getType(e)}( ${s(t.x)}, ${s(t.y)}, ${s(t.z)}, ${s(t.w)} )`;if(n>4&&t&&(t.isMatrix3||t.isMatrix4))return`${this.getType(e)}( ${t.elements.map(s).join(", ")} )`;if(n>4)return`${this.getType(e)}()`;throw new Error(`NodeBuilder: Type '${e}' not found in generate constant attempt.`)}getType(e){return e==="color"?"vec3":e}hasGeometryAttribute(e){return this.geometry&&this.geometry.getAttribute(e)!==void 0}getAttribute(e,t){const n=this.attributes;for(const s of n)if(s.name===e)return s;const r=new cN(e,t);return n.push(r),r}getPropertyName(e){return e.name}isVector(e){return/vec\d/.test(e)}isMatrix(e){return/mat\d/.test(e)}isReference(e){return e==="void"||e==="property"||e==="sampler"||e==="texture"||e==="cubeTexture"||e==="storageTexture"||e==="depthTexture"||e==="texture3D"}needsToWorkingColorSpace(){return!1}getComponentTypeFromTexture(e){const t=e.type;if(e.isDataTexture){if(t===Ns)return"int";if(t===Rr)return"uint"}return"float"}getElementType(e){return e==="mat2"?"vec2":e==="mat3"?"vec3":e==="mat4"?"vec4":this.getComponentType(e)}getComponentType(e){if(e=this.getVectorType(e),e==="float"||e==="bool"||e==="int"||e==="uint")return e;const t=/(b|i|u|)(vec|mat)([2-4])/.exec(e);return t===null?null:t[1]==="b"?"bool":t[1]==="i"?"int":t[1]==="u"?"uint":"float"}getVectorType(e){return e==="color"?"vec3":e==="texture"||e==="cubeTexture"||e==="storageTexture"||e==="texture3D"?"vec4":e}getTypeFromLength(e,t="float"){if(e===1)return t;const n=UP(e);return(t==="float"?"":t[0])+n}getTypeFromArray(e){return Xae.get(e.constructor)}getTypeFromAttribute(e){let t=e;e.isInterleavedBufferAttribute&&(t=e.data);const n=t.array,r=e.itemSize,s=e.normalized;let a;return!(e instanceof G7)&&s!==!0&&(a=this.getTypeFromArray(n)),this.getTypeFromLength(r,a)}getTypeLength(e){const t=this.getVectorType(e),n=/vec([2-4])/.exec(t);return n!==null?Number(n[1]):t==="float"||t==="bool"||t==="int"||t==="uint"?1:/mat2/.test(e)===!0?4:/mat3/.test(e)===!0?9:/mat4/.test(e)===!0?16:0}getVectorFromMatrix(e){return e.replace("mat","vec")}changeComponentType(e,t){return this.getTypeFromLength(this.getTypeLength(e),t)}getIntegerType(e){const t=this.getComponentType(e);return t==="int"||t==="uint"?e:this.changeComponentType(e,"int")}addStack(){return this.stack=e_(this.stack),this.stacks.push(PM()||this.stack),bg(this.stack),this.stack}removeStack(){const e=this.stack;return this.stack=e.parent,bg(this.stacks.pop()),e}getDataFromNode(e,t=this.shaderStage,n=null){n=n===null?e.isGlobal(this)?this.globalCache:this.cache:n;let r=n.getData(e);return r===void 0&&(r={},n.setData(e,r)),r[t]===void 0&&(r[t]={}),r[t]}getNodeProperties(e,t="any"){const n=this.getDataFromNode(e,t);return n.properties||(n.properties={outputNode:null})}getBufferAttributeFromNode(e,t){const n=this.getDataFromNode(e);let r=n.bufferAttribute;if(r===void 0){const s=this.uniforms.index++;r=new cN("nodeAttribute"+s,t,e),this.bufferAttributes.push(r),n.bufferAttribute=r}return r}getStructTypeFromNode(e,t,n=this.shaderStage){const r=this.getDataFromNode(e,n);let s=r.structType;if(s===void 0){const a=this.structs.index++;s=new Cae("StructType"+a,t),this.structs[n].push(s),r.structType=s}return s}getUniformFromNode(e,t,n=this.shaderStage,r=null){const s=this.getDataFromNode(e,n,this.globalCache);let a=s.uniform;if(a===void 0){const l=this.uniforms.index++;a=new Tae(r||"nodeUniform"+l,t,e),this.uniforms[n].push(a),s.uniform=a}return a}getVarFromNode(e,t=null,n=e.getNodeType(this),r=this.shaderStage){const s=this.getDataFromNode(e,r);let a=s.variable;if(a===void 0){const l=this.vars[r]||(this.vars[r]=[]);t===null&&(t="nodeVar"+l.length),a=new $B(t,n),l.push(a),s.variable=a}return a}getVaryingFromNode(e,t=null,n=e.getNodeType(this)){const r=this.getDataFromNode(e,"any");let s=r.varying;if(s===void 0){const a=this.varyings,l=a.length;t===null&&(t="nodeVarying"+l),s=new wae(t,n),a.push(s),r.varying=s}return s}getCodeFromNode(e,t,n=this.shaderStage){const r=this.getDataFromNode(e);let s=r.code;if(s===void 0){const a=this.codes[n]||(this.codes[n]=[]),l=a.length;s=new Mae("nodeCode"+l,t),a.push(s),r.code=s}return s}addFlowCodeHierarchy(e,t){const{flowCodes:n,flowCodeBlock:r}=this.getDataFromNode(e);let s=!0,a=t;for(;a;){if(r.get(a)===!0){s=!1;break}a=this.getDataFromNode(a).parentNodeBlock}if(s)for(const l of n)this.addLineFlowCode(l)}addLineFlowCodeBlock(e,t,n){const r=this.getDataFromNode(e),s=r.flowCodes||(r.flowCodes=[]),a=r.flowCodeBlock||(r.flowCodeBlock=new WeakMap);s.push(t),a.set(n,!0)}addLineFlowCode(e,t=null){return e===""?this:(t!==null&&this.context.nodeBlock&&this.addLineFlowCodeBlock(t,e,this.context.nodeBlock),e=this.tab+e,/;\s*$/.test(e)||(e=e+`; +`),this.flow.code+=e,this)}addFlowCode(e){return this.flow.code+=e,this}addFlowTab(){return this.tab+=" ",this}removeFlowTab(){return this.tab=this.tab.slice(0,-1),this}getFlowData(e){return this.flowsData.get(e)}flowNode(e){const t=e.getNodeType(this),n=this.flowChildNode(e,t);return this.flowsData.set(e,n),n}buildFunctionNode(e){const t=new SB,n=this.currentFunctionNode;return this.currentFunctionNode=t,t.code=this.buildFunctionCode(e),this.currentFunctionNode=n,t}flowShaderNode(e){const t=e.layout,n={[Symbol.iterator](){let a=0;const l=Object.values(this);return{next:()=>({value:l[a],done:a++>=l.length})}}};for(const a of t.inputs)n[a.name]=new tB(a.type,a.name);e.layout=null;const r=e.call(n),s=this.flowStagesNode(r,t.type);return e.layout=t,s}flowStagesNode(e,t=null){const n=this.flow,r=this.vars,s=this.cache,a=this.buildStage,l=this.stack,u={code:""};this.flow=u,this.vars={},this.cache=new uS,this.stack=e_();for(const h of FT)this.setBuildStage(h),u.result=e.build(this,t);return u.vars=this.getVars(this.shaderStage),this.flow=n,this.vars=r,this.cache=s,this.stack=l,this.setBuildStage(a),u}getFunctionOperator(){return null}flowChildNode(e,t=null){const n=this.flow,r={code:""};return this.flow=r,r.result=e.build(this,t),this.flow=n,r}flowNodeFromShaderStage(e,t,n=null,r=null){const s=this.shaderStage;this.setShaderStage(e);const a=this.flowChildNode(t,n);return r!==null&&(a.code+=`${this.tab+r} = ${a.result}; +`),this.flowCode[e]=this.flowCode[e]+a.code,this.setShaderStage(s),a}getAttributesArray(){return this.attributes.concat(this.bufferAttributes)}getAttributes(){console.warn("Abstract function.")}getVaryings(){console.warn("Abstract function.")}getVar(e,t){return`${this.getType(e)} ${t}`}getVars(e){let t="";const n=this.vars[e];if(n!==void 0)for(const r of n)t+=`${this.getVar(r.type,r.name)}; `;return t}getUniforms(){console.warn("Abstract function.")}getCodes(e){const t=this.codes[e];let n="";if(t!==void 0)for(const r of t)n+=r.code+` +`;return n}getHash(){return this.vertexShader+this.fragmentShader+this.computeShader}setShaderStage(e){this.shaderStage=e}getShaderStage(){return this.shaderStage}setBuildStage(e){this.buildStage=e}getBuildStage(){return this.buildStage}buildCode(){console.warn("Abstract function.")}build(){const{object:e,material:t,renderer:n}=this;if(t!==null){let r=n.library.fromMaterial(t);r===null&&(console.error(`NodeMaterial: Material "${t.type}" is not compatible.`),r=new Vr),r.build(this)}else this.addFlow("compute",e);for(const r of FT){this.setBuildStage(r),this.context.vertex&&this.context.vertex.isNode&&this.flowNodeFromShaderStage("vertex",this.context.vertex);for(const s of kT){this.setShaderStage(s);const a=this.flowNodes[s];for(const l of a)r==="generate"?this.flowNode(l):l.build(this)}}return this.setBuildStage(null),this.setShaderStage(null),this.buildCode(),this.buildUpdateNodes(),this}getNodeUniform(e,t){if(t==="float"||t==="int"||t==="uint")return new Oae(e);if(t==="vec2"||t==="ivec2"||t==="uvec2")return new Iae(e);if(t==="vec3"||t==="ivec3"||t==="uvec3")return new Fae(e);if(t==="vec4"||t==="ivec4"||t==="uvec4")return new kae(e);if(t==="color")return new zae(e);if(t==="mat3")return new Gae(e);if(t==="mat4")return new qae(e);throw new Error(`Uniform "${t}" not declared.`)}format(e,t,n){if(t=this.getVectorType(t),n=this.getVectorType(n),t===n||n===null||this.isReference(n))return e;const r=this.getTypeLength(t),s=this.getTypeLength(n);return r===16&&s===9?`${this.getType(n)}(${e}[0].xyz, ${e}[1].xyz, ${e}[2].xyz)`:r===9&&s===4?`${this.getType(n)}(${e}[0].xy, ${e}[1].xy)`:r>4||s>4||s===0?e:r===s?`${this.getType(n)}( ${e} )`:r>s?this.format(`${e}.${"xyz".slice(0,s)}`,this.getTypeFromLength(s,this.getComponentType(t)),n):s===4&&r>1?`${this.getType(n)}( ${this.format(e,t,"vec3")}, 1.0 )`:r===2?`${this.getType(n)}( ${this.format(e,t,"vec2")}, 0.0 )`:(r===1&&s>1&&t!==this.getComponentType(n)&&(e=`${this.getType(this.getComponentType(n))}( ${e} )`),`${this.getType(n)}( ${e} )`)}getSignature(){return`// Three.js r${V0} - Node System +`}createNodeMaterial(e="NodeMaterial"){throw new Error(`THREE.NodeBuilder: createNodeMaterial() was deprecated. Use new ${e}() instead.`)}}class vN{constructor(){this.time=0,this.deltaTime=0,this.frameId=0,this.renderId=0,this.updateMap=new WeakMap,this.updateBeforeMap=new WeakMap,this.updateAfterMap=new WeakMap,this.renderer=null,this.material=null,this.camera=null,this.object=null,this.scene=null}_getMaps(e,t){let n=e.get(t);return n===void 0&&(n={renderMap:new WeakMap,frameMap:new WeakMap},e.set(t,n)),n}updateBeforeNode(e){const t=e.getUpdateBeforeType(),n=e.updateReference(this);if(t===jn.FRAME){const{frameMap:r}=this._getMaps(this.updateBeforeMap,n);r.get(n)!==this.frameId&&e.updateBefore(this)!==!1&&r.set(n,this.frameId)}else if(t===jn.RENDER){const{renderMap:r}=this._getMaps(this.updateBeforeMap,n);r.get(n)!==this.renderId&&e.updateBefore(this)!==!1&&r.set(n,this.renderId)}else t===jn.OBJECT&&e.updateBefore(this)}updateAfterNode(e){const t=e.getUpdateAfterType(),n=e.updateReference(this);if(t===jn.FRAME){const{frameMap:r}=this._getMaps(this.updateAfterMap,n);r.get(n)!==this.frameId&&e.updateAfter(this)!==!1&&r.set(n,this.frameId)}else if(t===jn.RENDER){const{renderMap:r}=this._getMaps(this.updateAfterMap,n);r.get(n)!==this.renderId&&e.updateAfter(this)!==!1&&r.set(n,this.renderId)}else t===jn.OBJECT&&e.updateAfter(this)}updateNode(e){const t=e.getUpdateType(),n=e.updateReference(this);if(t===jn.FRAME){const{frameMap:r}=this._getMaps(this.updateMap,n);r.get(n)!==this.frameId&&e.update(this)!==!1&&r.set(n,this.frameId)}else if(t===jn.RENDER){const{renderMap:r}=this._getMaps(this.updateMap,n);r.get(n)!==this.renderId&&e.update(this)!==!1&&r.set(n,this.renderId)}else t===jn.OBJECT&&e.update(this)}update(){this.frameId++,this.lastTime===void 0&&(this.lastTime=performance.now()),this.deltaTime=(performance.now()-this.lastTime)/1e3,this.lastTime=performance.now(),this.time+=this.deltaTime}}class kE{constructor(e,t,n=null,r="",s=!1){this.type=e,this.name=t,this.count=n,this.qualifier=r,this.isConst=s}}kE.isNodeFunctionInput=!0;class Yae extends xA{static get type(){return"DirectionalLightNode"}constructor(e=null){super(e)}setup(e){super.setup(e);const t=e.context.lightingModel,n=this.colorNode,r=DE(this.light),s=e.context.reflectedLight;t.direct({lightDirection:r,lightColor:n,reflectedLight:s},e.stack,e)}}const pS=new kn,_v=new kn;let dm=null;class Qae extends xA{static get type(){return"RectAreaLightNode"}constructor(e=null){super(e),this.halfHeight=gn(new Ae).setGroup(Rn),this.halfWidth=gn(new Ae).setGroup(Rn),this.updateType=jn.RENDER}update(e){super.update(e);const{light:t}=this,n=e.camera.matrixWorldInverse;_v.identity(),pS.copy(t.matrixWorld),pS.premultiply(n),_v.extractRotation(pS),this.halfWidth.value.set(t.width*.5,0,0),this.halfHeight.value.set(0,t.height*.5,0),this.halfWidth.value.applyMatrix4(_v),this.halfHeight.value.applyMatrix4(_v)}setup(e){super.setup(e);let t,n;e.isAvailable("float32Filterable")?(t=di(dm.LTC_FLOAT_1),n=di(dm.LTC_FLOAT_2)):(t=di(dm.LTC_HALF_1),n=di(dm.LTC_HALF_2));const{colorNode:r,light:s}=this,a=e.context.lightingModel,l=Jy(s),u=e.context.reflectedLight;a.directRectArea({lightColor:r,lightPosition:l,halfWidth:this.halfWidth,halfHeight:this.halfHeight,reflectedLight:u,ltc_1:t,ltc_2:n},e.stack,e)}static setLTC(e){dm=e}}class YB extends xA{static get type(){return"SpotLightNode"}constructor(e=null){super(e),this.coneCosNode=gn(0).setGroup(Rn),this.penumbraCosNode=gn(0).setGroup(Rn),this.cutoffDistanceNode=gn(0).setGroup(Rn),this.decayExponentNode=gn(0).setGroup(Rn)}update(e){super.update(e);const{light:t}=this;this.coneCosNode.value=Math.cos(t.angle),this.penumbraCosNode.value=Math.cos(t.angle*(1-t.penumbra)),this.cutoffDistanceNode.value=t.distance,this.decayExponentNode.value=t.decay}getSpotAttenuation(e){const{coneCosNode:t,penumbraCosNode:n}=this;return kc(t,n,e)}setup(e){super.setup(e);const t=e.context.lightingModel,{colorNode:n,cutoffDistanceNode:r,decayExponentNode:s,light:a}=this,l=Jy(a).sub(Xr),u=l.normalize(),h=u.dot(DE(a)),m=this.getSpotAttenuation(h),v=l.length(),x=UE({lightDistance:v,cutoffDistance:r,decayExponent:s});let S=n.mul(m).mul(x);if(a.map){const R=EB(a),C=di(a.map,R.xy).onRenderUpdate(()=>a.map);S=R.mul(2).sub(1).abs().lessThan(1).all().select(S.mul(C),S)}const w=e.context.reflectedLight;t.direct({lightDirection:u,lightColor:S,reflectedLight:w},e.stack,e)}}class Kae extends YB{static get type(){return"IESSpotLightNode"}getSpotAttenuation(e){const t=this.light.iesMap;let n=null;if(t&&t.isTexture===!0){const r=e.acos().mul(1/Math.PI);n=di(t,Et(r,0),0).r}else n=super.getSpotAttenuation(e);return n}}class Zae extends xA{static get type(){return"AmbientLightNode"}constructor(e=null){super(e)}setup({context:e}){e.irradiance.addAssign(this.colorNode)}}class Jae extends xA{static get type(){return"HemisphereLightNode"}constructor(e=null){super(e),this.lightPositionNode=NE(e),this.lightDirectionNode=this.lightPositionNode.normalize(),this.groundColorNode=gn(new an).setGroup(Rn)}update(e){const{light:t}=this;super.update(e),this.lightPositionNode.object3d=t,this.groundColorNode.value.copy(t.groundColor).multiplyScalar(t.intensity)}setup(e){const{colorNode:t,groundColorNode:n,lightDirectionNode:r}=this,a=Jo.dot(r).mul(.5).add(.5),l=Fi(n,t,a);e.context.irradiance.addAssign(l)}}class eoe extends xA{static get type(){return"LightProbeNode"}constructor(e=null){super(e);const t=[];for(let n=0;n<9;n++)t.push(new Ae);this.lightProbe=Sc(t)}update(e){const{light:t}=this;super.update(e);for(let n=0;n<9;n++)this.lightProbe.array[n].copy(t.sh.coefficients[n]).multiplyScalar(t.intensity)}setup(e){const t=WB(Vy,this.lightProbe);e.context.irradiance.addAssign(t)}}class QB{parseFunction(){console.warn("Abstract function.")}}class zE{constructor(e,t,n="",r=""){this.type=e,this.inputs=t,this.name=n,this.precision=r}getCode(){console.warn("Abstract function.")}}zE.isNodeFunction=!0;const toe=/^\s*(highp|mediump|lowp)?\s*([a-z_0-9]+)\s*([a-z_0-9]+)?\s*\(([\s\S]*?)\)/i,noe=/[a-z_0-9]+/ig,_N="#pragma main",ioe=i=>{i=i.trim();const e=i.indexOf(_N),t=e!==-1?i.slice(e+_N.length):i,n=t.match(toe);if(n!==null&&n.length===5){const r=n[4],s=[];let a=null;for(;(a=noe.exec(r))!==null;)s.push(a);const l=[];let u=0;for(;u0||e.backgroundBlurriness>0&&t.backgroundBlurriness===0;if(t.background!==n||r){const s=this.getCacheNode("background",n,()=>{if(n.isCubeTexture===!0||n.mapping===zh||n.mapping===Gh||n.mapping===sA){if(e.backgroundBlurriness>0||n.mapping===sA)return yE(n);{let a;return n.isCubeTexture===!0?a=I0(n):a=di(n),BU(a)}}else{if(n.isTexture===!0)return di(n,bu.flipY()).setUpdateMatrix(!0);n.isColor!==!0&&console.error("WebGPUNodes: Unsupported background configuration.",n)}},r);t.backgroundNode=s,t.background=n,t.backgroundBlurriness=e.backgroundBlurriness}}else t.backgroundNode&&(delete t.backgroundNode,delete t.background)}getCacheNode(e,t,n,r=!1){const s=this.cacheLib[e]||(this.cacheLib[e]=new WeakMap);let a=s.get(t);return(a===void 0||r)&&(a=n(),s.set(t,a)),a}updateFog(e){const t=this.get(e),n=e.fog;if(n){if(t.fog!==n){const r=this.getCacheNode("fog",n,()=>{if(n.isFogExp2){const s=ji("color","color",n).setGroup(Rn),a=ji("density","float",n).setGroup(Rn);return Ng(s,EE(a))}else if(n.isFog){const s=ji("color","color",n).setGroup(Rn),a=ji("near","float",n).setGroup(Rn),l=ji("far","float",n).setGroup(Rn);return Ng(s,ME(a,l))}else console.error("THREE.Renderer: Unsupported fog configuration.",n)});t.fogNode=r,t.fog=n}}else delete t.fogNode,delete t.fog}updateEnvironment(e){const t=this.get(e),n=e.environment;if(n){if(t.environment!==n){const r=this.getCacheNode("environment",n,()=>{if(n.isCubeTexture===!0)return I0(n);if(n.isTexture===!0)return di(n);console.error("Nodes: Unsupported environment configuration.",n)});t.environmentNode=r,t.environment=n}}else t.environmentNode&&(delete t.environmentNode,delete t.environment)}getNodeFrame(e=this.renderer,t=null,n=null,r=null,s=null){const a=this.nodeFrame;return a.renderer=e,a.scene=t,a.object=n,a.camera=r,a.material=s,a}getNodeFrameForRender(e){return this.getNodeFrame(e.renderer,e.scene,e.object,e.camera,e.material)}getOutputCacheKey(){const e=this.renderer;return e.toneMapping+","+e.currentColorSpace}hasOutputChange(e){return yN.get(e)!==this.getOutputCacheKey()}getOutputNode(e){const t=this.renderer,n=this.getOutputCacheKey(),r=di(e,bu).renderOutput(t.toneMapping,t.currentColorSpace);return yN.set(e,n),r}updateBefore(e){const t=e.getNodeBuilderState();for(const n of t.updateBeforeNodes)this.getNodeFrameForRender(e).updateBeforeNode(n)}updateAfter(e){const t=e.getNodeBuilderState();for(const n of t.updateAfterNodes)this.getNodeFrameForRender(e).updateAfterNode(n)}updateForCompute(e){const t=this.getNodeFrame(),n=this.getForCompute(e);for(const r of n.updateNodes)t.updateNode(r)}updateForRender(e){const t=this.getNodeFrameForRender(e),n=e.getNodeBuilderState();for(const r of n.updateNodes)t.updateNode(r)}needsRefresh(e){const t=this.getNodeFrameForRender(e);return e.getMonitor().needsRefresh(e,t)}dispose(){super.dispose(),this.nodeFrame=new vN,this.nodeBuilderCache=new Map,this.cacheLib={}}}const mS=new Yl;class ay{constructor(e=null){this.version=0,this.clipIntersection=null,this.cacheKey="",this.shadowPass=!1,this.viewNormalMatrix=new Vn,this.clippingGroupContexts=new WeakMap,this.intersectionPlanes=[],this.unionPlanes=[],this.parentVersion=null,e!==null&&(this.viewNormalMatrix=e.viewNormalMatrix,this.clippingGroupContexts=e.clippingGroupContexts,this.shadowPass=e.shadowPass,this.viewMatrix=e.viewMatrix)}projectPlanes(e,t,n){const r=e.length;for(let s=0;s{await this.compileAsync(v,x);const w=this._renderLists.get(v,x),R=this._renderContexts.get(v,x,this._renderTarget),C=v.overrideMaterial||S.material,E=this._objects.get(S,C,v,x,w.lightsNode,R,R.clippingContext),{fragmentShader:B,vertexShader:L}=E.getNodeBuilderState();return{fragmentShader:B,vertexShader:L}}}}async init(){if(this._initialized)throw new Error("Renderer: Backend has already been initialized.");return this._initPromise!==null?this._initPromise:(this._initPromise=new Promise(async(e,t)=>{let n=this.backend;try{await n.init(this)}catch(r){if(this._getFallback!==null)try{this.backend=n=this._getFallback(r),await n.init(this)}catch(s){t(s);return}else{t(r);return}}this._nodes=new aoe(this,n),this._animation=new une(this._nodes,this.info),this._attributes=new mne(n),this._background=new xae(this,this._nodes),this._geometries=new vne(this._attributes,this.info),this._textures=new Pne(this,n,this.info),this._pipelines=new Sne(n,this._nodes),this._bindings=new Tne(n,this._nodes,this._textures,this._attributes,this._pipelines,this.info),this._objects=new Ane(this,this._nodes,this._geometries,this._pipelines,this._bindings,this.info),this._renderLists=new Ene(this.lighting),this._bundles=new loe,this._renderContexts=new Nne,this._animation.start(),this._initialized=!0,e()}),this._initPromise)}get coordinateSystem(){return this.backend.coordinateSystem}async compileAsync(e,t,n=null){if(this._isDeviceLost===!0)return;this._initialized===!1&&await this.init();const r=this._nodes.nodeFrame,s=r.renderId,a=this._currentRenderContext,l=this._currentRenderObjectFunction,u=this._compilationPromises,h=e.isScene===!0?e:xN;n===null&&(n=e);const m=this._renderTarget,v=this._renderContexts.get(n,t,m),x=this._activeMipmapLevel,S=[];this._currentRenderContext=v,this._currentRenderObjectFunction=this.renderObject,this._handleObjectFunction=this._createObjectPipeline,this._compilationPromises=S,r.renderId++,r.update(),v.depth=this.depth,v.stencil=this.stencil,v.clippingContext||(v.clippingContext=new ay),v.clippingContext.updateGlobal(h,t),h.onBeforeRender(this,e,t,m);const w=this._renderLists.get(e,t);if(w.begin(),this._projectObject(e,t,0,w,v.clippingContext),n!==e&&n.traverseVisible(function(L){L.isLight&&L.layers.test(t.layers)&&w.pushLight(L)}),w.finish(),m!==null){this._textures.updateRenderTarget(m,x);const L=this._textures.get(m);v.textures=L.textures,v.depthTexture=L.depthTexture}else v.textures=null,v.depthTexture=null;this._background.update(h,w,v);const R=w.opaque,C=w.transparent,E=w.transparentDoublePass,B=w.lightsNode;this.opaque===!0&&R.length>0&&this._renderObjects(R,t,h,B),this.transparent===!0&&C.length>0&&this._renderTransparents(C,E,t,h,B),r.renderId=s,this._currentRenderContext=a,this._currentRenderObjectFunction=l,this._compilationPromises=u,this._handleObjectFunction=this._renderObjectDirect,await Promise.all(S)}async renderAsync(e,t){this._initialized===!1&&await this.init();const n=this._renderScene(e,t);await this.backend.resolveTimestampAsync(n,"render")}async waitForGPU(){await this.backend.waitForGPU()}setMRT(e){return this._mrt=e,this}getMRT(){return this._mrt}_onDeviceLost(e){let t=`THREE.WebGPURenderer: ${e.api} Device Lost: + +Message: ${e.message}`;e.reason&&(t+=` +Reason: ${e.reason}`),console.error(t),this._isDeviceLost=!0}_renderBundle(e,t,n){const{bundleGroup:r,camera:s,renderList:a}=e,l=this._currentRenderContext,u=this._bundles.get(r,s),h=this.backend.get(u);h.renderContexts===void 0&&(h.renderContexts=new Set);const m=r.version!==h.version,v=h.renderContexts.has(l)===!1||m;if(h.renderContexts.add(l),v){this.backend.beginBundle(l),(h.renderObjects===void 0||m)&&(h.renderObjects=[]),this._currentRenderBundle=u;const x=a.opaque;this.opaque===!0&&x.length>0&&this._renderObjects(x,s,t,n),this._currentRenderBundle=null,this.backend.finishBundle(l,u),h.version=r.version}else{const{renderObjects:x}=h;for(let S=0,w=x.length;S>=x,w.viewportValue.height>>=x,w.viewportValue.minDepth=L,w.viewportValue.maxDepth=O,w.viewport=w.viewportValue.equals(gS)===!1,w.scissorValue.copy(E).multiplyScalar(B).floor(),w.scissor=this._scissorTest&&w.scissorValue.equals(gS)===!1,w.scissorValue.width>>=x,w.scissorValue.height>>=x,w.clippingContext||(w.clippingContext=new ay),w.clippingContext.updateGlobal(h,t),h.onBeforeRender(this,e,t,S),xv.multiplyMatrices(t.projectionMatrix,t.matrixWorldInverse),vS.setFromProjectionMatrix(xv,R);const G=this._renderLists.get(e,t);if(G.begin(),this._projectObject(e,t,0,G,w.clippingContext),G.finish(),this.sortObjects===!0&&G.sort(this._opaqueSort,this._transparentSort),S!==null){this._textures.updateRenderTarget(S,x);const Y=this._textures.get(S);w.textures=Y.textures,w.depthTexture=Y.depthTexture,w.width=Y.width,w.height=Y.height,w.renderTarget=S,w.depth=S.depthBuffer,w.stencil=S.stencilBuffer}else w.textures=null,w.depthTexture=null,w.width=this.domElement.width,w.height=this.domElement.height,w.depth=this.depth,w.stencil=this.stencil;w.width>>=x,w.height>>=x,w.activeCubeFace=v,w.activeMipmapLevel=x,w.occlusionQueryCount=G.occlusionQueryCount,this._background.update(h,G,w),this.backend.beginRender(w);const{bundles:q,lightsNode:z,transparentDoublePass:j,transparent:F,opaque:V}=G;if(q.length>0&&this._renderBundles(q,h,z),this.opaque===!0&&V.length>0&&this._renderObjects(V,t,h,z),this.transparent===!0&&F.length>0&&this._renderTransparents(F,j,t,h,z),this.backend.finishRender(w),s.renderId=a,this._currentRenderContext=l,this._currentRenderObjectFunction=u,r!==null){this.setRenderTarget(m,v,x);const Y=this._quad;this._nodes.hasOutputChange(S.texture)&&(Y.material.fragmentNode=this._nodes.getOutputNode(S.texture),Y.material.needsUpdate=!0),this._renderScene(Y,Y.camera,!1)}return h.onAfterRender(this,e,t,S),w}getMaxAnisotropy(){return this.backend.getMaxAnisotropy()}getActiveCubeFace(){return this._activeCubeFace}getActiveMipmapLevel(){return this._activeMipmapLevel}async setAnimationLoop(e){this._initialized===!1&&await this.init(),this._animation.setAnimationLoop(e)}async getArrayBufferAsync(e){return await this.backend.getArrayBufferAsync(e)}getContext(){return this.backend.getContext()}getPixelRatio(){return this._pixelRatio}getDrawingBufferSize(e){return e.set(this._width*this._pixelRatio,this._height*this._pixelRatio).floor()}getSize(e){return e.set(this._width,this._height)}setPixelRatio(e=1){this._pixelRatio!==e&&(this._pixelRatio=e,this.setSize(this._width,this._height,!1))}setDrawingBufferSize(e,t,n){this._width=e,this._height=t,this._pixelRatio=n,this.domElement.width=Math.floor(e*n),this.domElement.height=Math.floor(t*n),this.setViewport(0,0,e,t),this._initialized&&this.backend.updateSize()}setSize(e,t,n=!0){this._width=e,this._height=t,this.domElement.width=Math.floor(e*this._pixelRatio),this.domElement.height=Math.floor(t*this._pixelRatio),n===!0&&(this.domElement.style.width=e+"px",this.domElement.style.height=t+"px"),this.setViewport(0,0,e,t),this._initialized&&this.backend.updateSize()}setOpaqueSort(e){this._opaqueSort=e}setTransparentSort(e){this._transparentSort=e}getScissor(e){const t=this._scissor;return e.x=t.x,e.y=t.y,e.width=t.width,e.height=t.height,e}setScissor(e,t,n,r){const s=this._scissor;e.isVector4?s.copy(e):s.set(e,t,n,r)}getScissorTest(){return this._scissorTest}setScissorTest(e){this._scissorTest=e,this.backend.setScissorTest(e)}getViewport(e){return e.copy(this._viewport)}setViewport(e,t,n,r,s=0,a=1){const l=this._viewport;e.isVector4?l.copy(e):l.set(e,t,n,r),l.minDepth=s,l.maxDepth=a}getClearColor(e){return e.copy(this._clearColor)}setClearColor(e,t=1){this._clearColor.set(e),this._clearColor.a=t}getClearAlpha(){return this._clearColor.a}setClearAlpha(e){this._clearColor.a=e}getClearDepth(){return this._clearDepth}setClearDepth(e){this._clearDepth=e}getClearStencil(){return this._clearStencil}setClearStencil(e){this._clearStencil=e}isOccluded(e){const t=this._currentRenderContext;return t&&this.backend.isOccluded(t,e)}clear(e=!0,t=!0,n=!0){if(this._initialized===!1)return console.warn("THREE.Renderer: .clear() called before the backend is initialized. Try using .clearAsync() instead."),this.clearAsync(e,t,n);const r=this._renderTarget||this._getFrameBufferTarget();let s=null;if(r!==null){this._textures.updateRenderTarget(r);const a=this._textures.get(r);s=this._renderContexts.get(null,null,r),s.textures=a.textures,s.depthTexture=a.depthTexture,s.width=a.width,s.height=a.height,s.renderTarget=r,s.depth=r.depthBuffer,s.stencil=r.stencilBuffer}if(this.backend.clear(e,t,n,s),r!==null&&this._renderTarget===null){const a=this._quad;this._nodes.hasOutputChange(r.texture)&&(a.material.fragmentNode=this._nodes.getOutputNode(r.texture),a.material.needsUpdate=!0),this._renderScene(a,a.camera,!1)}}clearColor(){return this.clear(!0,!1,!1)}clearDepth(){return this.clear(!1,!0,!1)}clearStencil(){return this.clear(!1,!1,!0)}async clearAsync(e=!0,t=!0,n=!0){this._initialized===!1&&await this.init(),this.clear(e,t,n)}async clearColorAsync(){this.clearAsync(!0,!1,!1)}async clearDepthAsync(){this.clearAsync(!1,!0,!1)}async clearStencilAsync(){this.clearAsync(!1,!1,!0)}get currentToneMapping(){return this._renderTarget!==null?Za:this.toneMapping}get currentColorSpace(){return this._renderTarget!==null?Ro:this.outputColorSpace}dispose(){this.info.dispose(),this.backend.dispose(),this._animation.dispose(),this._objects.dispose(),this._pipelines.dispose(),this._nodes.dispose(),this._bindings.dispose(),this._renderLists.dispose(),this._renderContexts.dispose(),this._textures.dispose(),this.setRenderTarget(null),this.setAnimationLoop(null)}setRenderTarget(e,t=0,n=0){this._renderTarget=e,this._activeCubeFace=t,this._activeMipmapLevel=n}getRenderTarget(){return this._renderTarget}setRenderObjectFunction(e){this._renderObjectFunction=e}getRenderObjectFunction(){return this._renderObjectFunction}compute(e){if(this.isDeviceLost===!0)return;if(this._initialized===!1)return console.warn("THREE.Renderer: .compute() called before the backend is initialized. Try using .computeAsync() instead."),this.computeAsync(e);const t=this._nodes.nodeFrame,n=t.renderId;this.info.calls++,this.info.compute.calls++,this.info.compute.frameCalls++,t.renderId=this.info.calls;const r=this.backend,s=this._pipelines,a=this._bindings,l=this._nodes,u=Array.isArray(e)?e:[e];if(u[0]===void 0||u[0].isComputeNode!==!0)throw new Error("THREE.Renderer: .compute() expects a ComputeNode.");r.beginCompute(e);for(const h of u){if(s.has(h)===!1){const x=()=>{h.removeEventListener("dispose",x),s.delete(h),a.delete(h),l.delete(h)};h.addEventListener("dispose",x);const S=h.onInitFunction;S!==null&&S.call(h,{renderer:this})}l.updateForCompute(h),a.updateForCompute(h);const m=a.getForCompute(h),v=s.getForCompute(h,m);r.compute(e,h,m,v)}r.finishCompute(e),t.renderId=n}async computeAsync(e){this._initialized===!1&&await this.init(),this.compute(e),await this.backend.resolveTimestampAsync(e,"compute")}async hasFeatureAsync(e){return this._initialized===!1&&await this.init(),this.backend.hasFeature(e)}hasFeature(e){return this._initialized===!1?(console.warn("THREE.Renderer: .hasFeature() called before the backend is initialized. Try using .hasFeatureAsync() instead."),!1):this.backend.hasFeature(e)}hasInitialized(){return this._initialized}async initTextureAsync(e){this._initialized===!1&&await this.init(),this._textures.updateTexture(e)}initTexture(e){this._initialized===!1&&console.warn("THREE.Renderer: .initTexture() called before the backend is initialized. Try using .initTextureAsync() instead."),this._textures.updateTexture(e)}copyFramebufferToTexture(e,t=null){if(t!==null)if(t.isVector2)t=Sh.set(t.x,t.y,e.image.width,e.image.height).floor();else if(t.isVector4)t=Sh.copy(t).floor();else{console.error("THREE.Renderer.copyFramebufferToTexture: Invalid rectangle.");return}else t=Sh.set(0,0,e.image.width,e.image.height);let n=this._currentRenderContext,r;n!==null?r=n.renderTarget:(r=this._renderTarget||this._getFrameBufferTarget(),r!==null&&(this._textures.updateRenderTarget(r),n=this._textures.get(r))),this._textures.updateTexture(e,{renderTarget:r}),this.backend.copyFramebufferToTexture(e,n,t)}copyTextureToTexture(e,t,n=null,r=null,s=0){this._textures.updateTexture(e),this._textures.updateTexture(t),this.backend.copyTextureToTexture(e,t,n,r,s)}async readRenderTargetPixelsAsync(e,t,n,r,s,a=0,l=0){return this.backend.copyTextureToBuffer(e.textures[a],t,n,r,s,l)}_projectObject(e,t,n,r,s){if(e.visible===!1)return;if(e.layers.test(t.layers)){if(e.isGroup)n=e.renderOrder,e.isClippingGroup&&e.enabled&&(s=s.getGroupContext(e));else if(e.isLOD)e.autoUpdate===!0&&e.update(t);else if(e.isLight)r.pushLight(e);else if(e.isSprite){if(!e.frustumCulled||vS.intersectsSprite(e)){this.sortObjects===!0&&Sh.setFromMatrixPosition(e.matrixWorld).applyMatrix4(xv);const{geometry:u,material:h}=e;h.visible&&r.push(e,u,h,n,Sh.z,null,s)}}else if(e.isLineLoop)console.error("THREE.Renderer: Objects of type THREE.LineLoop are not supported. Please use THREE.Line or THREE.LineSegments.");else if((e.isMesh||e.isLine||e.isPoints)&&(!e.frustumCulled||vS.intersectsObject(e))){const{geometry:u,material:h}=e;if(this.sortObjects===!0&&(u.boundingSphere===null&&u.computeBoundingSphere(),Sh.copy(u.boundingSphere.center).applyMatrix4(e.matrixWorld).applyMatrix4(xv)),Array.isArray(h)){const m=u.groups;for(let v=0,x=m.length;v0){for(const{material:a}of t)a.side=hr;this._renderObjects(t,n,r,s,"backSide");for(const{material:a}of t)a.side=Nl;this._renderObjects(e,n,r,s);for(const{material:a}of t)a.side=as}else this._renderObjects(e,n,r,s)}_renderObjects(e,t,n,r,s=null){for(let a=0,l=e.length;a0,S.isShadowNodeMaterial&&(S.side=s.shadowSide===null?s.side:s.shadowSide,s.depthNode&&s.depthNode.isNode&&(x=S.depthNode,S.depthNode=s.depthNode),s.castShadowNode&&s.castShadowNode.isNode&&(v=S.colorNode,S.colorNode=s.castShadowNode)),s=S}s.transparent===!0&&s.side===as&&s.forceSinglePass===!1?(s.side=hr,this._handleObjectFunction(e,s,t,n,l,a,u,"backSide"),s.side=Nl,this._handleObjectFunction(e,s,t,n,l,a,u,h),s.side=as):this._handleObjectFunction(e,s,t,n,l,a,u,h),m!==void 0&&(t.overrideMaterial.positionNode=m),x!==void 0&&(t.overrideMaterial.depthNode=x),v!==void 0&&(t.overrideMaterial.colorNode=v),e.onAfterRender(this,t,n,r,s,a)}_renderObjectDirect(e,t,n,r,s,a,l,u){const h=this._objects.get(e,t,n,r,s,this._currentRenderContext,l,u);h.drawRange=e.geometry.drawRange,h.group=a;const m=this._nodes.needsRefresh(h);m&&(this._nodes.updateBefore(h),this._geometries.updateForRender(h),this._nodes.updateForRender(h),this._bindings.updateForRender(h)),this._pipelines.updateForRender(h),this._currentRenderBundle!==null&&(this.backend.get(this._currentRenderBundle).renderObjects.push(h),h.bundle=this._currentRenderBundle.bundleGroup),this.backend.draw(h,this.info),m&&this._nodes.updateAfter(h)}_createObjectPipeline(e,t,n,r,s,a,l,u){const h=this._objects.get(e,t,n,r,s,this._currentRenderContext,l,u);h.drawRange=e.geometry.drawRange,h.group=a,this._nodes.updateBefore(h),this._geometries.updateForRender(h),this._nodes.updateForRender(h),this._bindings.updateForRender(h),this._pipelines.getForRender(h,this._compilationPromises),this._nodes.updateAfter(h)}get compile(){return this.compileAsync}}class GE{constructor(e=""){this.name=e,this.visibility=0}setVisibility(e){this.visibility|=e}clone(){return Object.assign(new this.constructor,this)}}function foe(i){return i+(Lh-i%Lh)%Lh}class ZB extends GE{constructor(e,t=null){super(e),this.isBuffer=!0,this.bytesPerElement=Float32Array.BYTES_PER_ELEMENT,this._buffer=t}get byteLength(){return foe(this._buffer.byteLength)}get buffer(){return this._buffer}update(){return!0}}class JB extends ZB{constructor(e,t=null){super(e,t),this.isUniformBuffer=!0}}let Aoe=0;class eO extends JB{constructor(e,t){super("UniformBuffer_"+Aoe++,e?e.value:null),this.nodeUniform=e,this.groupNode=t}get buffer(){return this.nodeUniform.value}}class doe extends JB{constructor(e){super(e),this.isUniformsGroup=!0,this._values=null,this.uniforms=[]}addUniform(e){return this.uniforms.push(e),this}removeUniform(e){const t=this.uniforms.indexOf(e);return t!==-1&&this.uniforms.splice(t,1),this}get values(){return this._values===null&&(this._values=Array.from(this.buffer)),this._values}get buffer(){let e=this._buffer;if(e===null){const t=this.byteLength;e=new Float32Array(new ArrayBuffer(t)),this._buffer=e}return e}get byteLength(){let e=0;for(let t=0,n=this.uniforms.length;t0?x:"";l=`${m.name} { + ${v} ${a.name}[${S}]; +}; +`}else l=`${this.getVectorType(a.type)} ${this.getPropertyName(a,e)};`,u=!0;const h=a.node.precision;if(h!==null&&(l=xoe[h]+" "+l),u){l=" "+l;const m=a.groupNode.name;(r[m]||(r[m]=[])).push(l)}else l="uniform "+l,n.push(l)}let s="";for(const a in r){const l=r[a];s+=this._getGLSLUniformStruct(e+"_"+a,l.join(` +`))+` +`}return s+=n.join(` +`),s}getTypeFromAttribute(e){let t=super.getTypeFromAttribute(e);if(/^[iu]/.test(t)&&e.gpuType!==Ns){let n=e;e.isInterleavedBufferAttribute&&(n=e.data);const r=n.array;r instanceof Uint32Array||r instanceof Int32Array||(t=t.slice(1))}return t}getAttributes(e){let t="";if(e==="vertex"||e==="compute"){const n=this.getAttributesArray();let r=0;for(const s of n)t+=`layout( location = ${r++} ) in ${s.type} ${s.name}; +`}return t}getStructMembers(e){const t=[],n=e.getMemberTypes();for(let r=0;rn*r,1)}u`}getDrawIndex(){return this.renderer.backend.extensions.has("WEBGL_multi_draw")?"uint( gl_DrawID )":null}getFrontFacing(){return"gl_FrontFacing"}getFragCoord(){return"gl_FragCoord.xy"}getFragDepth(){return"gl_FragDepth"}enableExtension(e,t,n=this.shaderStage){const r=this.extensions[n]||(this.extensions[n]=new Map);r.has(e)===!1&&r.set(e,{name:e,behavior:t})}getExtensions(e){const t=[];if(e==="vertex"){const r=this.renderer.backend.extensions;this.object.isBatchedMesh&&r.has("WEBGL_multi_draw")&&this.enableExtension("GL_ANGLE_multi_draw","require",e)}const n=this.extensions[e];if(n!==void 0)for(const{name:r,behavior:s}of n.values())t.push(`#extension ${r} : ${s}`);return t.join(` +`)}getClipDistance(){return"gl_ClipDistance"}isAvailable(e){let t=bN[e];if(t===void 0){let n;switch(t=!1,e){case"float32Filterable":n="OES_texture_float_linear";break;case"clipDistance":n="WEBGL_clip_cull_distance";break}if(n!==void 0){const r=this.renderer.backend.extensions;r.has(n)&&(r.get(n),t=!0)}bN[e]=t}return t}isFlipY(){return!0}enableHardwareClipping(e){this.enableExtension("GL_ANGLE_clip_cull_distance","require"),this.builtins.vertex.push(`out float gl_ClipDistance[ ${e} ]`)}registerTransform(e,t){this.transforms.push({varyingName:e,attributeNode:t})}getTransforms(){const e=this.transforms;let t="";for(let n=0;n0&&(n+=` +`),n+=` // flow -> ${h} + `),n+=`${u.code} + `,l===s&&t!=="compute"&&(n+=`// result + `,t==="vertex"?(n+="gl_Position = ",n+=`${u.result};`):t==="fragment"&&(l.outputNode.isOutputStructNode||(n+="fragColor = ",n+=`${u.result};`)))}const a=e[t];a.extensions=this.getExtensions(t),a.uniforms=this.getUniforms(t),a.attributes=this.getAttributes(t),a.varyings=this.getVaryings(t),a.vars=this.getVars(t),a.structs=this.getStructs(t),a.codes=this.getCodes(t),a.transforms=this.getTransforms(t),a.flow=n}this.material!==null?(this.vertexShader=this._getGLSLVertexCode(e.vertex),this.fragmentShader=this._getGLSLFragmentCode(e.fragment)):this.computeShader=this._getGLSLVertexCode(e.compute)}getUniformFromNode(e,t,n,r=null){const s=super.getUniformFromNode(e,t,n,r),a=this.getDataFromNode(e,n,this.globalCache);let l=a.uniformGPU;if(l===void 0){const u=e.groupNode,h=u.name,m=this.getBindGroupArray(h,n);if(t==="texture")l=new ex(s.name,s.node,u),m.push(l);else if(t==="cubeTexture")l=new nO(s.name,s.node,u),m.push(l);else if(t==="texture3D")l=new iO(s.name,s.node,u),m.push(l);else if(t==="buffer"){e.name=`NodeBuffer_${e.id}`,s.name=`buffer${e.id}`;const v=new eO(e,u);v.name=e.name,m.push(v),l=v}else{const v=this.uniformGroups[n]||(this.uniformGroups[n]={});let x=v[h];x===void 0&&(x=new tO(n+"_"+h,u),v[h]=x,m.push(x)),l=this.getNodeUniform(s,t),x.addUniform(l)}a.uniformGPU=l}return s}}let _S=null,Pd=null;class rO{constructor(e={}){this.parameters=Object.assign({},e),this.data=new WeakMap,this.renderer=null,this.domElement=null}async init(e){this.renderer=e}get coordinateSystem(){}beginRender(){}finishRender(){}beginCompute(){}finishCompute(){}draw(){}compute(){}createProgram(){}destroyProgram(){}createBindings(){}updateBindings(){}updateBinding(){}createRenderPipeline(){}createComputePipeline(){}needsRenderUpdate(){}getRenderCacheKey(){}createNodeBuilder(){}createSampler(){}destroySampler(){}createDefaultTexture(){}createTexture(){}updateTexture(){}generateMipmaps(){}destroyTexture(){}copyTextureToBuffer(){}copyTextureToTexture(){}copyFramebufferToTexture(){}createAttribute(){}createIndexAttribute(){}createStorageAttribute(){}updateAttribute(){}destroyAttribute(){}getContext(){}updateSize(){}updateViewport(){}isOccluded(){}async resolveTimestampAsync(){}async waitForGPU(){}async hasFeatureAsync(){}hasFeature(){}getMaxAnisotropy(){}getDrawingBufferSize(){return _S=_S||new dt,this.renderer.getDrawingBufferSize(_S)}setScissorTest(){}getClearColor(){const e=this.renderer;return Pd=Pd||new bE,e.getClearColor(Pd),Pd.getRGB(Pd,this.renderer.currentColorSpace),Pd}getDomElement(){let e=this.domElement;return e===null&&(e=this.parameters.canvas!==void 0?this.parameters.canvas:F7(),"setAttribute"in e&&e.setAttribute("data-engine",`three.js r${V0} webgpu`),this.domElement=e),e}set(e,t){this.data.set(e,t)}get(e){let t=this.data.get(e);return t===void 0&&(t={},this.data.set(e,t)),t}has(e){return this.data.has(e)}delete(e){this.data.delete(e)}dispose(){}}let Soe=0;class Toe{constructor(e,t){this.buffers=[e.bufferGPU,t],this.type=e.type,this.bufferType=e.bufferType,this.pbo=e.pbo,this.byteLength=e.byteLength,this.bytesPerElement=e.BYTES_PER_ELEMENT,this.version=e.version,this.isInteger=e.isInteger,this.activeBufferIndex=0,this.baseId=e.id}get id(){return`${this.baseId}|${this.activeBufferIndex}`}get bufferGPU(){return this.buffers[this.activeBufferIndex]}get transformBuffer(){return this.buffers[this.activeBufferIndex^1]}switchBuffers(){this.activeBufferIndex^=1}}class woe{constructor(e){this.backend=e}createAttribute(e,t){const n=this.backend,{gl:r}=n,s=e.array,a=e.usage||r.STATIC_DRAW,l=e.isInterleavedBufferAttribute?e.data:e,u=n.get(l);let h=u.bufferGPU;h===void 0&&(h=this._createBuffer(r,t,s,a),u.bufferGPU=h,u.bufferType=t,u.version=l.version);let m;if(s instanceof Float32Array)m=r.FLOAT;else if(s instanceof Uint16Array)e.isFloat16BufferAttribute?m=r.HALF_FLOAT:m=r.UNSIGNED_SHORT;else if(s instanceof Int16Array)m=r.SHORT;else if(s instanceof Uint32Array)m=r.UNSIGNED_INT;else if(s instanceof Int32Array)m=r.INT;else if(s instanceof Int8Array)m=r.BYTE;else if(s instanceof Uint8Array)m=r.UNSIGNED_BYTE;else if(s instanceof Uint8ClampedArray)m=r.UNSIGNED_BYTE;else throw new Error("THREE.WebGLBackend: Unsupported buffer data format: "+s);let v={bufferGPU:h,bufferType:t,type:m,byteLength:s.byteLength,bytesPerElement:s.BYTES_PER_ELEMENT,version:e.version,pbo:e.pbo,isInteger:m===r.INT||m===r.UNSIGNED_INT||e.gpuType===Ns,id:Soe++};if(e.isStorageBufferAttribute||e.isStorageInstancedBufferAttribute){const x=this._createBuffer(r,t,s,a);v=new Toe(v,x)}n.set(e,v)}updateAttribute(e){const t=this.backend,{gl:n}=t,r=e.array,s=e.isInterleavedBufferAttribute?e.data:e,a=t.get(s),l=a.bufferType,u=e.isInterleavedBufferAttribute?e.data.updateRanges:e.updateRanges;if(n.bindBuffer(l,a.bufferGPU),u.length===0)n.bufferSubData(l,0,r);else{for(let h=0,m=u.length;h1?this.enable(r.SAMPLE_ALPHA_TO_COVERAGE):this.disable(r.SAMPLE_ALPHA_TO_COVERAGE),n>0&&this.currentClippingPlanes!==n)for(let u=0;u<8;u++)u{function s(){const a=e.clientWaitSync(t,e.SYNC_FLUSH_COMMANDS_BIT,0);if(a===e.WAIT_FAILED){e.deleteSync(t),r();return}if(a===e.TIMEOUT_EXPIRED){requestAnimationFrame(s);return}e.deleteSync(t),n()}s()})}}let wN=!1,bv,xS,MN;class Coe{constructor(e){this.backend=e,this.gl=e.gl,this.extensions=e.extensions,this.defaultTextures={},wN===!1&&(this._init(this.gl),wN=!0)}_init(e){bv={[aA]:e.REPEAT,[eu]:e.CLAMP_TO_EDGE,[oA]:e.MIRRORED_REPEAT},xS={[mr]:e.NEAREST,[s_]:e.NEAREST_MIPMAP_NEAREST,[tu]:e.NEAREST_MIPMAP_LINEAR,[gs]:e.LINEAR,[Jd]:e.LINEAR_MIPMAP_NEAREST,[Va]:e.LINEAR_MIPMAP_LINEAR},MN={[Fw]:e.NEVER,[Vw]:e.ALWAYS,[my]:e.LESS,[gy]:e.LEQUAL,[kw]:e.EQUAL,[qw]:e.GEQUAL,[zw]:e.GREATER,[Gw]:e.NOTEQUAL}}filterFallback(e){const{gl:t}=this;return e===mr||e===s_||e===tu?t.NEAREST:t.LINEAR}getGLTextureType(e){const{gl:t}=this;let n;return e.isCubeTexture===!0?n=t.TEXTURE_CUBE_MAP:e.isDataArrayTexture===!0||e.isCompressedArrayTexture===!0?n=t.TEXTURE_2D_ARRAY:e.isData3DTexture===!0?n=t.TEXTURE_3D:n=t.TEXTURE_2D,n}getInternalFormat(e,t,n,r,s=!1){const{gl:a,extensions:l}=this;if(e!==null){if(a[e]!==void 0)return a[e];console.warn("THREE.WebGLRenderer: Attempt to use non-existing WebGL internal format '"+e+"'")}let u=t;return t===a.RED&&(n===a.FLOAT&&(u=a.R32F),n===a.HALF_FLOAT&&(u=a.R16F),n===a.UNSIGNED_BYTE&&(u=a.R8),n===a.UNSIGNED_SHORT&&(u=a.R16),n===a.UNSIGNED_INT&&(u=a.R32UI),n===a.BYTE&&(u=a.R8I),n===a.SHORT&&(u=a.R16I),n===a.INT&&(u=a.R32I)),t===a.RED_INTEGER&&(n===a.UNSIGNED_BYTE&&(u=a.R8UI),n===a.UNSIGNED_SHORT&&(u=a.R16UI),n===a.UNSIGNED_INT&&(u=a.R32UI),n===a.BYTE&&(u=a.R8I),n===a.SHORT&&(u=a.R16I),n===a.INT&&(u=a.R32I)),t===a.RG&&(n===a.FLOAT&&(u=a.RG32F),n===a.HALF_FLOAT&&(u=a.RG16F),n===a.UNSIGNED_BYTE&&(u=a.RG8),n===a.UNSIGNED_SHORT&&(u=a.RG16),n===a.UNSIGNED_INT&&(u=a.RG32UI),n===a.BYTE&&(u=a.RG8I),n===a.SHORT&&(u=a.RG16I),n===a.INT&&(u=a.RG32I)),t===a.RG_INTEGER&&(n===a.UNSIGNED_BYTE&&(u=a.RG8UI),n===a.UNSIGNED_SHORT&&(u=a.RG16UI),n===a.UNSIGNED_INT&&(u=a.RG32UI),n===a.BYTE&&(u=a.RG8I),n===a.SHORT&&(u=a.RG16I),n===a.INT&&(u=a.RG32I)),t===a.RGB&&(n===a.FLOAT&&(u=a.RGB32F),n===a.HALF_FLOAT&&(u=a.RGB16F),n===a.UNSIGNED_BYTE&&(u=a.RGB8),n===a.UNSIGNED_SHORT&&(u=a.RGB16),n===a.UNSIGNED_INT&&(u=a.RGB32UI),n===a.BYTE&&(u=a.RGB8I),n===a.SHORT&&(u=a.RGB16I),n===a.INT&&(u=a.RGB32I),n===a.UNSIGNED_BYTE&&(u=r===_n&&s===!1?a.SRGB8:a.RGB8),n===a.UNSIGNED_SHORT_5_6_5&&(u=a.RGB565),n===a.UNSIGNED_SHORT_5_5_5_1&&(u=a.RGB5_A1),n===a.UNSIGNED_SHORT_4_4_4_4&&(u=a.RGB4),n===a.UNSIGNED_INT_5_9_9_9_REV&&(u=a.RGB9_E5)),t===a.RGB_INTEGER&&(n===a.UNSIGNED_BYTE&&(u=a.RGB8UI),n===a.UNSIGNED_SHORT&&(u=a.RGB16UI),n===a.UNSIGNED_INT&&(u=a.RGB32UI),n===a.BYTE&&(u=a.RGB8I),n===a.SHORT&&(u=a.RGB16I),n===a.INT&&(u=a.RGB32I)),t===a.RGBA&&(n===a.FLOAT&&(u=a.RGBA32F),n===a.HALF_FLOAT&&(u=a.RGBA16F),n===a.UNSIGNED_BYTE&&(u=a.RGBA8),n===a.UNSIGNED_SHORT&&(u=a.RGBA16),n===a.UNSIGNED_INT&&(u=a.RGBA32UI),n===a.BYTE&&(u=a.RGBA8I),n===a.SHORT&&(u=a.RGBA16I),n===a.INT&&(u=a.RGBA32I),n===a.UNSIGNED_BYTE&&(u=r===_n&&s===!1?a.SRGB8_ALPHA8:a.RGBA8),n===a.UNSIGNED_SHORT_4_4_4_4&&(u=a.RGBA4),n===a.UNSIGNED_SHORT_5_5_5_1&&(u=a.RGB5_A1)),t===a.RGBA_INTEGER&&(n===a.UNSIGNED_BYTE&&(u=a.RGBA8UI),n===a.UNSIGNED_SHORT&&(u=a.RGBA16UI),n===a.UNSIGNED_INT&&(u=a.RGBA32UI),n===a.BYTE&&(u=a.RGBA8I),n===a.SHORT&&(u=a.RGBA16I),n===a.INT&&(u=a.RGBA32I)),t===a.DEPTH_COMPONENT&&(n===a.UNSIGNED_INT&&(u=a.DEPTH24_STENCIL8),n===a.FLOAT&&(u=a.DEPTH_COMPONENT32F)),t===a.DEPTH_STENCIL&&n===a.UNSIGNED_INT_24_8&&(u=a.DEPTH24_STENCIL8),(u===a.R16F||u===a.R32F||u===a.RG16F||u===a.RG32F||u===a.RGBA16F||u===a.RGBA32F)&&l.get("EXT_color_buffer_float"),u}setTextureParameters(e,t){const{gl:n,extensions:r,backend:s}=this;n.pixelStorei(n.UNPACK_FLIP_Y_WEBGL,t.flipY),n.pixelStorei(n.UNPACK_PREMULTIPLY_ALPHA_WEBGL,t.premultiplyAlpha),n.pixelStorei(n.UNPACK_ALIGNMENT,t.unpackAlignment),n.pixelStorei(n.UNPACK_COLORSPACE_CONVERSION_WEBGL,n.NONE),n.texParameteri(e,n.TEXTURE_WRAP_S,bv[t.wrapS]),n.texParameteri(e,n.TEXTURE_WRAP_T,bv[t.wrapT]),(e===n.TEXTURE_3D||e===n.TEXTURE_2D_ARRAY)&&n.texParameteri(e,n.TEXTURE_WRAP_R,bv[t.wrapR]),n.texParameteri(e,n.TEXTURE_MAG_FILTER,xS[t.magFilter]);const a=t.mipmaps!==void 0&&t.mipmaps.length>0,l=t.minFilter===gs&&a?Va:t.minFilter;if(n.texParameteri(e,n.TEXTURE_MIN_FILTER,xS[l]),t.compareFunction&&(n.texParameteri(e,n.TEXTURE_COMPARE_MODE,n.COMPARE_REF_TO_TEXTURE),n.texParameteri(e,n.TEXTURE_COMPARE_FUNC,MN[t.compareFunction])),r.has("EXT_texture_filter_anisotropic")===!0){if(t.magFilter===mr||t.minFilter!==tu&&t.minFilter!==Va||t.type===$r&&r.has("OES_texture_float_linear")===!1)return;if(t.anisotropy>1){const u=r.get("EXT_texture_filter_anisotropic");n.texParameterf(e,u.TEXTURE_MAX_ANISOTROPY_EXT,Math.min(t.anisotropy,s.getMaxAnisotropy()))}}}createDefaultTexture(e){const{gl:t,backend:n,defaultTextures:r}=this,s=this.getGLTextureType(e);let a=r[s];a===void 0&&(a=t.createTexture(),n.state.bindTexture(s,a),t.texParameteri(s,t.TEXTURE_MIN_FILTER,t.NEAREST),t.texParameteri(s,t.TEXTURE_MAG_FILTER,t.NEAREST),r[s]=a),n.set(e,{textureGPU:a,glTextureType:s,isDefault:!0})}createTexture(e,t){const{gl:n,backend:r}=this,{levels:s,width:a,height:l,depth:u}=t,h=r.utils.convert(e.format,e.colorSpace),m=r.utils.convert(e.type),v=this.getInternalFormat(e.internalFormat,h,m,e.colorSpace,e.isVideoTexture),x=n.createTexture(),S=this.getGLTextureType(e);r.state.bindTexture(S,x),this.setTextureParameters(S,e),e.isDataArrayTexture||e.isCompressedArrayTexture?n.texStorage3D(n.TEXTURE_2D_ARRAY,s,v,a,l,u):e.isData3DTexture?n.texStorage3D(n.TEXTURE_3D,s,v,a,l,u):e.isVideoTexture||n.texStorage2D(S,s,v,a,l),r.set(e,{textureGPU:x,glTextureType:S,glFormat:h,glType:m,glInternalFormat:v})}copyBufferToTexture(e,t){const{gl:n,backend:r}=this,{textureGPU:s,glTextureType:a,glFormat:l,glType:u}=r.get(t),{width:h,height:m}=t.source.data;n.bindBuffer(n.PIXEL_UNPACK_BUFFER,e),r.state.bindTexture(a,s),n.pixelStorei(n.UNPACK_FLIP_Y_WEBGL,!1),n.pixelStorei(n.UNPACK_PREMULTIPLY_ALPHA_WEBGL,!1),n.texSubImage2D(a,0,0,0,h,m,l,u,0),n.bindBuffer(n.PIXEL_UNPACK_BUFFER,null),r.state.unbindTexture()}updateTexture(e,t){const{gl:n}=this,{width:r,height:s}=t,{textureGPU:a,glTextureType:l,glFormat:u,glType:h,glInternalFormat:m}=this.backend.get(e);if(e.isRenderTargetTexture||a===void 0)return;const v=x=>x.isDataTexture?x.image.data:typeof HTMLImageElement<"u"&&x instanceof HTMLImageElement||typeof HTMLCanvasElement<"u"&&x instanceof HTMLCanvasElement||typeof ImageBitmap<"u"&&x instanceof ImageBitmap||x instanceof OffscreenCanvas?x:x.data;if(this.backend.state.bindTexture(l,a),this.setTextureParameters(l,e),e.isCompressedTexture){const x=e.mipmaps,S=t.image;for(let w=0;w0,x=t.renderTarget?t.renderTarget.height:this.backend.getDrawingBufferSize().y;if(v){const S=l!==0||u!==0;let w,R;if(e.isDepthTexture===!0?(w=r.DEPTH_BUFFER_BIT,R=r.DEPTH_ATTACHMENT,t.stencil&&(w|=r.STENCIL_BUFFER_BIT)):(w=r.COLOR_BUFFER_BIT,R=r.COLOR_ATTACHMENT0),S){const C=this.backend.get(t.renderTarget),E=C.framebuffers[t.getCacheKey()],B=C.msaaFrameBuffer;s.bindFramebuffer(r.DRAW_FRAMEBUFFER,E),s.bindFramebuffer(r.READ_FRAMEBUFFER,B);const L=x-u-m;r.blitFramebuffer(l,L,l+h,L+m,l,L,l+h,L+m,w,r.NEAREST),s.bindFramebuffer(r.READ_FRAMEBUFFER,E),s.bindTexture(r.TEXTURE_2D,a),r.copyTexSubImage2D(r.TEXTURE_2D,0,0,0,l,L,h,m),s.unbindTexture()}else{const C=r.createFramebuffer();s.bindFramebuffer(r.DRAW_FRAMEBUFFER,C),r.framebufferTexture2D(r.DRAW_FRAMEBUFFER,R,r.TEXTURE_2D,a,0),r.blitFramebuffer(0,0,h,m,0,0,h,m,w,r.NEAREST),r.deleteFramebuffer(C)}}else s.bindTexture(r.TEXTURE_2D,a),r.copyTexSubImage2D(r.TEXTURE_2D,0,0,0,l,x-m-u,h,m),s.unbindTexture();e.generateMipmaps&&this.generateMipmaps(e),this.backend._setFramebuffer(t)}setupRenderBufferStorage(e,t){const{gl:n}=this,r=t.renderTarget,{samples:s,depthTexture:a,depthBuffer:l,stencilBuffer:u,width:h,height:m}=r;if(n.bindRenderbuffer(n.RENDERBUFFER,e),l&&!u){let v=n.DEPTH_COMPONENT24;s>0?(a&&a.isDepthTexture&&a.type===n.FLOAT&&(v=n.DEPTH_COMPONENT32F),n.renderbufferStorageMultisample(n.RENDERBUFFER,s,v,h,m)):n.renderbufferStorage(n.RENDERBUFFER,v,h,m),n.framebufferRenderbuffer(n.FRAMEBUFFER,n.DEPTH_ATTACHMENT,n.RENDERBUFFER,e)}else l&&u&&(s>0?n.renderbufferStorageMultisample(n.RENDERBUFFER,s,n.DEPTH24_STENCIL8,h,m):n.renderbufferStorage(n.RENDERBUFFER,n.DEPTH_STENCIL,h,m),n.framebufferRenderbuffer(n.FRAMEBUFFER,n.DEPTH_STENCIL_ATTACHMENT,n.RENDERBUFFER,e))}async copyTextureToBuffer(e,t,n,r,s,a){const{backend:l,gl:u}=this,{textureGPU:h,glFormat:m,glType:v}=this.backend.get(e),x=u.createFramebuffer();u.bindFramebuffer(u.READ_FRAMEBUFFER,x);const S=e.isCubeTexture?u.TEXTURE_CUBE_MAP_POSITIVE_X+a:u.TEXTURE_2D;u.framebufferTexture2D(u.READ_FRAMEBUFFER,u.COLOR_ATTACHMENT0,S,h,0);const w=this._getTypedArrayType(v),R=this._getBytesPerTexel(v,m),E=r*s*R,B=u.createBuffer();u.bindBuffer(u.PIXEL_PACK_BUFFER,B),u.bufferData(u.PIXEL_PACK_BUFFER,E,u.STREAM_READ),u.readPixels(t,n,r,s,m,v,0),u.bindBuffer(u.PIXEL_PACK_BUFFER,null),await l.utils._clientWaitAsync();const L=new w(E/w.BYTES_PER_ELEMENT);return u.bindBuffer(u.PIXEL_PACK_BUFFER,B),u.getBufferSubData(u.PIXEL_PACK_BUFFER,0,L),u.bindBuffer(u.PIXEL_PACK_BUFFER,null),u.deleteFramebuffer(x),L}_getTypedArrayType(e){const{gl:t}=this;if(e===t.UNSIGNED_BYTE)return Uint8Array;if(e===t.UNSIGNED_SHORT_4_4_4_4||e===t.UNSIGNED_SHORT_5_5_5_1||e===t.UNSIGNED_SHORT_5_6_5||e===t.UNSIGNED_SHORT)return Uint16Array;if(e===t.UNSIGNED_INT)return Uint32Array;if(e===t.HALF_FLOAT)return Uint16Array;if(e===t.FLOAT)return Float32Array;throw new Error(`Unsupported WebGL type: ${e}`)}_getBytesPerTexel(e,t){const{gl:n}=this;let r=0;if(e===n.UNSIGNED_BYTE&&(r=1),(e===n.UNSIGNED_SHORT_4_4_4_4||e===n.UNSIGNED_SHORT_5_5_5_1||e===n.UNSIGNED_SHORT_5_6_5||e===n.UNSIGNED_SHORT||e===n.HALF_FLOAT)&&(r=2),(e===n.UNSIGNED_INT||e===n.FLOAT)&&(r=4),t===n.RGBA)return r*4;if(t===n.RGB)return r*3;if(t===n.ALPHA)return r}}class Roe{constructor(e){this.backend=e,this.gl=this.backend.gl,this.availableExtensions=this.gl.getSupportedExtensions(),this.extensions={}}get(e){let t=this.extensions[e];return t===void 0&&(t=this.gl.getExtension(e),this.extensions[e]=t),t}has(e){return this.availableExtensions.includes(e)}}class Noe{constructor(e){this.backend=e,this.maxAnisotropy=null}getMaxAnisotropy(){if(this.maxAnisotropy!==null)return this.maxAnisotropy;const e=this.backend.gl,t=this.backend.extensions;if(t.has("EXT_texture_filter_anisotropic")===!0){const n=t.get("EXT_texture_filter_anisotropic");this.maxAnisotropy=e.getParameter(n.MAX_TEXTURE_MAX_ANISOTROPY_EXT)}else this.maxAnisotropy=0;return this.maxAnisotropy}}const EN={WEBGL_multi_draw:"WEBGL_multi_draw",WEBGL_compressed_texture_astc:"texture-compression-astc",WEBGL_compressed_texture_etc:"texture-compression-etc2",WEBGL_compressed_texture_etc1:"texture-compression-etc1",WEBGL_compressed_texture_pvrtc:"texture-compression-pvrtc",WEBKIT_WEBGL_compressed_texture_pvrtc:"texture-compression-pvrtc",WEBGL_compressed_texture_s3tc:"texture-compression-bc",EXT_texture_compression_bptc:"texture-compression-bptc",EXT_disjoint_timer_query_webgl2:"timestamp-query"};class Doe{constructor(e){this.gl=e.gl,this.extensions=e.extensions,this.info=e.renderer.info,this.mode=null,this.index=0,this.type=null,this.object=null}render(e,t){const{gl:n,mode:r,object:s,type:a,info:l,index:u}=this;u!==0?n.drawElements(r,t,a,e):n.drawArrays(r,e,t),l.update(s,t,r,1)}renderInstances(e,t,n){const{gl:r,mode:s,type:a,index:l,object:u,info:h}=this;n!==0&&(l!==0?r.drawElementsInstanced(s,t,a,e,n):r.drawArraysInstanced(s,e,t,n),h.update(u,t,s,n))}renderMultiDraw(e,t,n){const{extensions:r,mode:s,object:a,info:l}=this;if(n===0)return;const u=r.get("WEBGL_multi_draw");if(u===null)for(let h=0;h0)){const n=t.queryQueue.shift();this.initTimestampQuery(n)}}async resolveTimestampAsync(e,t="render"){if(!this.disjoint||!this.trackTimestamp)return;const n=this.get(e);n.gpuQueries||(n.gpuQueries=[]);for(let r=0;r0&&(n.currentOcclusionQueries=n.occlusionQueries,n.currentOcclusionQueryObjects=n.occlusionQueryObjects,n.lastOcclusionObject=null,n.occlusionQueries=new Array(r),n.occlusionQueryObjects=new Array(r),n.occlusionQueryIndex=0)}finishRender(e){const{gl:t,state:n}=this,r=this.get(e),s=r.previousContext,a=e.occlusionQueryCount;a>0&&(a>r.occlusionQueryIndex&&t.endQuery(t.ANY_SAMPLES_PASSED),this.resolveOccludedAsync(e));const l=e.textures;if(l!==null)for(let u=0;u0){const m=u.framebuffers[e.getCacheKey()],v=t.COLOR_BUFFER_BIT,x=u.msaaFrameBuffer,S=e.textures;n.bindFramebuffer(t.READ_FRAMEBUFFER,x),n.bindFramebuffer(t.DRAW_FRAMEBUFFER,m);for(let w=0;w{let u=0;for(let h=0;h0&&s.add(r[h]),n[h]=null,a.deleteQuery(m),u++)}u1?E.renderInstances(O,B,L):E.render(O,B),u.bindVertexArray(null)}needsRenderUpdate(){return!1}getRenderCacheKey(){return""}createDefaultTexture(e){this.textureUtils.createDefaultTexture(e)}createTexture(e,t){this.textureUtils.createTexture(e,t)}updateTexture(e,t){this.textureUtils.updateTexture(e,t)}generateMipmaps(e){this.textureUtils.generateMipmaps(e)}destroyTexture(e){this.textureUtils.destroyTexture(e)}copyTextureToBuffer(e,t,n,r,s,a){return this.textureUtils.copyTextureToBuffer(e,t,n,r,s,a)}createSampler(){}destroySampler(){}createNodeBuilder(e,t){return new boe(e,t)}createProgram(e){const t=this.gl,{stage:n,code:r}=e,s=n==="fragment"?t.createShader(t.FRAGMENT_SHADER):t.createShader(t.VERTEX_SHADER);t.shaderSource(s,r),t.compileShader(s),this.set(e,{shaderGPU:s})}destroyProgram(e){this.delete(e)}createRenderPipeline(e,t){const n=this.gl,r=e.pipeline,{fragmentProgram:s,vertexProgram:a}=r,l=n.createProgram(),u=this.get(s).shaderGPU,h=this.get(a).shaderGPU;if(n.attachShader(l,u),n.attachShader(l,h),n.linkProgram(l),this.set(r,{programGPU:l,fragmentShader:u,vertexShader:h}),t!==null&&this.parallel){const m=new Promise(v=>{const x=this.parallel,S=()=>{n.getProgramParameter(l,x.COMPLETION_STATUS_KHR)?(this._completeCompile(e,r),v()):requestAnimationFrame(S)};S()});t.push(m);return}this._completeCompile(e,r)}_handleSource(e,t){const n=e.split(` +`),r=[],s=Math.max(t-6,0),a=Math.min(t+6,n.length);for(let l=s;l":" "} ${u}: ${n[l]}`)}return r.join(` +`)}_getShaderErrors(e,t,n){const r=e.getShaderParameter(t,e.COMPILE_STATUS),s=e.getShaderInfoLog(t).trim();if(r&&s==="")return"";const a=/ERROR: 0:(\d+)/.exec(s);if(a){const l=parseInt(a[1]);return n.toUpperCase()+` + +`+s+` + +`+this._handleSource(e.getShaderSource(t),l)}else return s}_logProgramError(e,t,n){if(this.renderer.debug.checkShaderErrors){const r=this.gl,s=r.getProgramInfoLog(e).trim();if(r.getProgramParameter(e,r.LINK_STATUS)===!1)if(typeof this.renderer.debug.onShaderError=="function")this.renderer.debug.onShaderError(r,e,n,t);else{const a=this._getShaderErrors(r,n,"vertex"),l=this._getShaderErrors(r,t,"fragment");console.error("THREE.WebGLProgram: Shader Error "+r.getError()+" - VALIDATE_STATUS "+r.getProgramParameter(e,r.VALIDATE_STATUS)+` + +Program Info Log: `+s+` +`+a+` +`+l)}else s!==""&&console.warn("THREE.WebGLProgram: Program Info Log:",s)}}_completeCompile(e,t){const{state:n,gl:r}=this,s=this.get(t),{programGPU:a,fragmentShader:l,vertexShader:u}=s;r.getProgramParameter(a,r.LINK_STATUS)===!1&&this._logProgramError(a,l,u),n.useProgram(a);const h=e.getBindings();this._setupBindings(h,a),this.set(t,{programGPU:a})}createComputePipeline(e,t){const{state:n,gl:r}=this,s={stage:"fragment",code:`#version 300 es +precision highp float; +void main() {}`};this.createProgram(s);const{computeProgram:a}=e,l=r.createProgram(),u=this.get(s).shaderGPU,h=this.get(a).shaderGPU,m=a.transforms,v=[],x=[];for(let C=0;CEN[r]===e),n=this.extensions;for(let r=0;r0){if(S===void 0){const E=[];S=t.createFramebuffer(),n.bindFramebuffer(t.FRAMEBUFFER,S);const B=[],L=e.textures;for(let O=0;O, + @location( 0 ) vTex : vec2 +}; + +@vertex +fn main( @builtin( vertex_index ) vertexIndex : u32 ) -> VarysStruct { + + var Varys : VarysStruct; + + var pos = array< vec2, 4 >( + vec2( -1.0, 1.0 ), + vec2( 1.0, 1.0 ), + vec2( -1.0, -1.0 ), + vec2( 1.0, -1.0 ) + ); + + var tex = array< vec2, 4 >( + vec2( 0.0, 0.0 ), + vec2( 1.0, 0.0 ), + vec2( 0.0, 1.0 ), + vec2( 1.0, 1.0 ) + ); + + Varys.vTex = tex[ vertexIndex ]; + Varys.Position = vec4( pos[ vertexIndex ], 0.0, 1.0 ); + + return Varys; + +} +`,n=` +@group( 0 ) @binding( 0 ) +var imgSampler : sampler; + +@group( 0 ) @binding( 1 ) +var img : texture_2d; + +@fragment +fn main( @location( 0 ) vTex : vec2 ) -> @location( 0 ) vec4 { + + return textureSample( img, imgSampler, vTex ); + +} +`,r=` +@group( 0 ) @binding( 0 ) +var imgSampler : sampler; + +@group( 0 ) @binding( 1 ) +var img : texture_2d; + +@fragment +fn main( @location( 0 ) vTex : vec2 ) -> @location( 0 ) vec4 { + + return textureSample( img, imgSampler, vec2( vTex.x, 1.0 - vTex.y ) ); + +} +`;this.mipmapSampler=e.createSampler({minFilter:qf.Linear}),this.flipYSampler=e.createSampler({minFilter:qf.Nearest}),this.transferPipelines={},this.flipYPipelines={},this.mipmapVertexShaderModule=e.createShaderModule({label:"mipmapVertex",code:t}),this.mipmapFragmentShaderModule=e.createShaderModule({label:"mipmapFragment",code:n}),this.flipYFragmentShaderModule=e.createShaderModule({label:"flipYFragment",code:r})}getTransferPipeline(e){let t=this.transferPipelines[e];return t===void 0&&(t=this.device.createRenderPipeline({label:`mipmap-${e}`,vertex:{module:this.mipmapVertexShaderModule,entryPoint:"main"},fragment:{module:this.mipmapFragmentShaderModule,entryPoint:"main",targets:[{format:e}]},primitive:{topology:Zd.TriangleStrip,stripIndexFormat:k0.Uint32},layout:"auto"}),this.transferPipelines[e]=t),t}getFlipYPipeline(e){let t=this.flipYPipelines[e];return t===void 0&&(t=this.device.createRenderPipeline({label:`flipY-${e}`,vertex:{module:this.mipmapVertexShaderModule,entryPoint:"main"},fragment:{module:this.flipYFragmentShaderModule,entryPoint:"main",targets:[{format:e}]},primitive:{topology:Zd.TriangleStrip,stripIndexFormat:k0.Uint32},layout:"auto"}),this.flipYPipelines[e]=t),t}flipY(e,t,n=0){const r=t.format,{width:s,height:a}=t.size,l=this.getTransferPipeline(r),u=this.getFlipYPipeline(r),h=this.device.createTexture({size:{width:s,height:a,depthOrArrayLayers:1},format:r,usage:GPUTextureUsage.RENDER_ATTACHMENT|GPUTextureUsage.TEXTURE_BINDING}),m=e.createView({baseMipLevel:0,mipLevelCount:1,dimension:za.TwoD,baseArrayLayer:n}),v=h.createView({baseMipLevel:0,mipLevelCount:1,dimension:za.TwoD,baseArrayLayer:0}),x=this.device.createCommandEncoder({}),S=(w,R,C)=>{const E=w.getBindGroupLayout(0),B=this.device.createBindGroup({layout:E,entries:[{binding:0,resource:this.flipYSampler},{binding:1,resource:R}]}),L=x.beginRenderPass({colorAttachments:[{view:C,loadOp:Wr.Clear,storeOp:ia.Store,clearValue:[0,0,0,0]}]});L.setPipeline(w),L.setBindGroup(0,B),L.draw(4,1,0,0),L.end()};S(l,m,v),S(u,v,m),this.device.queue.submit([x.finish()]),h.destroy()}generateMipmaps(e,t,n=0){const r=this.get(e);r.useCount===void 0&&(r.useCount=0,r.layers=[]);const s=r.layers[n]||this._mipmapCreateBundles(e,t,n),a=this.device.createCommandEncoder({});this._mipmapRunBundles(a,s),this.device.queue.submit([a.finish()]),r.useCount!==0&&(r.layers[n]=s),r.useCount++}_mipmapCreateBundles(e,t,n){const r=this.getTransferPipeline(t.format),s=r.getBindGroupLayout(0);let a=e.createView({baseMipLevel:0,mipLevelCount:1,dimension:za.TwoD,baseArrayLayer:n});const l=[];for(let u=1;u1;for(let l=0;l]*\s*([a-z_0-9]+(?:<[\s\S]+?>)?)/i,Voe=/([a-z_0-9]+)\s*:\s*([a-z_0-9]+(?:<[\s\S]+?>)?)/ig,DN={f32:"float",i32:"int",u32:"uint",bool:"bool","vec2":"vec2","vec2":"ivec2","vec2":"uvec2","vec2":"bvec2",vec2f:"vec2",vec2i:"ivec2",vec2u:"uvec2",vec2b:"bvec2","vec3":"vec3","vec3":"ivec3","vec3":"uvec3","vec3":"bvec3",vec3f:"vec3",vec3i:"ivec3",vec3u:"uvec3",vec3b:"bvec3","vec4":"vec4","vec4":"ivec4","vec4":"uvec4","vec4":"bvec4",vec4f:"vec4",vec4i:"ivec4",vec4u:"uvec4",vec4b:"bvec4","mat2x2":"mat2",mat2x2f:"mat2","mat3x3":"mat3",mat3x3f:"mat3","mat4x4":"mat4",mat4x4f:"mat4",sampler:"sampler",texture_1d:"texture",texture_2d:"texture",texture_2d_array:"texture",texture_multisampled_2d:"cubeTexture",texture_depth_2d:"depthTexture",texture_depth_multisampled_2d:"depthTexture",texture_3d:"texture3D",texture_cube:"cubeTexture",texture_cube_array:"cubeTexture",texture_storage_1d:"storageTexture",texture_storage_2d:"storageTexture",texture_storage_2d_array:"storageTexture",texture_storage_3d:"storageTexture"},Hoe=i=>{i=i.trim();const e=i.match(qoe);if(e!==null&&e.length===4){const t=e[2],n=[];let r=null;for(;(r=Voe.exec(t))!==null;)n.push({name:r[1],type:r[2]});const s=[];for(let m=0;m "+this.outputType:"";return`fn ${e} ( ${this.inputsCode.trim()} ) ${t}`+this.blockCode}}class Woe extends QB{parseFunction(e){return new joe(e)}}const Ud=typeof self<"u"?self.GPUShaderStage:{VERTEX:1,FRAGMENT:2,COMPUTE:4},$oe={[sa.READ_ONLY]:"read",[sa.WRITE_ONLY]:"write",[sa.READ_WRITE]:"read_write"},PN={[aA]:"repeat",[eu]:"clamp",[oA]:"mirror"},Tv={vertex:Ud?Ud.VERTEX:1,fragment:Ud?Ud.FRAGMENT:2,compute:Ud?Ud.COMPUTE:4},LN={instance:!0,swizzleAssign:!1,storageBuffer:!0},Xoe={"^^":"tsl_xor"},Yoe={float:"f32",int:"i32",uint:"u32",bool:"bool",color:"vec3",vec2:"vec2",ivec2:"vec2",uvec2:"vec2",bvec2:"vec2",vec3:"vec3",ivec3:"vec3",uvec3:"vec3",bvec3:"vec3",vec4:"vec4",ivec4:"vec4",uvec4:"vec4",bvec4:"vec4",mat2:"mat2x2",mat3:"mat3x3",mat4:"mat4x4"},UN={},Wo={tsl_xor:new rs("fn tsl_xor( a : bool, b : bool ) -> bool { return ( a || b ) && !( a && b ); }"),mod_float:new rs("fn tsl_mod_float( x : f32, y : f32 ) -> f32 { return x - y * floor( x / y ); }"),mod_vec2:new rs("fn tsl_mod_vec2( x : vec2f, y : vec2f ) -> vec2f { return x - y * floor( x / y ); }"),mod_vec3:new rs("fn tsl_mod_vec3( x : vec3f, y : vec3f ) -> vec3f { return x - y * floor( x / y ); }"),mod_vec4:new rs("fn tsl_mod_vec4( x : vec4f, y : vec4f ) -> vec4f { return x - y * floor( x / y ); }"),equals_bool:new rs("fn tsl_equals_bool( a : bool, b : bool ) -> bool { return a == b; }"),equals_bvec2:new rs("fn tsl_equals_bvec2( a : vec2f, b : vec2f ) -> vec2 { return vec2( a.x == b.x, a.y == b.y ); }"),equals_bvec3:new rs("fn tsl_equals_bvec3( a : vec3f, b : vec3f ) -> vec3 { return vec3( a.x == b.x, a.y == b.y, a.z == b.z ); }"),equals_bvec4:new rs("fn tsl_equals_bvec4( a : vec4f, b : vec4f ) -> vec4 { return vec4( a.x == b.x, a.y == b.y, a.z == b.z, a.w == b.w ); }"),repeatWrapping_float:new rs("fn tsl_repeatWrapping_float( coord: f32 ) -> f32 { return fract( coord ); }"),mirrorWrapping_float:new rs("fn tsl_mirrorWrapping_float( coord: f32 ) -> f32 { let mirrored = fract( coord * 0.5 ) * 2.0; return 1.0 - abs( 1.0 - mirrored ); }"),clampWrapping_float:new rs("fn tsl_clampWrapping_float( coord: f32 ) -> f32 { return clamp( coord, 0.0, 1.0 ); }"),biquadraticTexture:new rs(` +fn tsl_biquadraticTexture( map : texture_2d, coord : vec2f, iRes : vec2u, level : u32 ) -> vec4f { + + let res = vec2f( iRes ); + + let uvScaled = coord * res; + let uvWrapping = ( ( uvScaled % res ) + res ) % res; + + // https://www.shadertoy.com/view/WtyXRy + + let uv = uvWrapping - 0.5; + let iuv = floor( uv ); + let f = fract( uv ); + + let rg1 = textureLoad( map, vec2u( iuv + vec2( 0.5, 0.5 ) ) % iRes, level ); + let rg2 = textureLoad( map, vec2u( iuv + vec2( 1.5, 0.5 ) ) % iRes, level ); + let rg3 = textureLoad( map, vec2u( iuv + vec2( 0.5, 1.5 ) ) % iRes, level ); + let rg4 = textureLoad( map, vec2u( iuv + vec2( 1.5, 1.5 ) ) % iRes, level ); + + return mix( mix( rg1, rg2, f.x ), mix( rg3, rg4, f.x ), f.y ); + +} +`)},Mm={dFdx:"dpdx",dFdy:"- dpdy",mod_float:"tsl_mod_float",mod_vec2:"tsl_mod_vec2",mod_vec3:"tsl_mod_vec3",mod_vec4:"tsl_mod_vec4",equals_bool:"tsl_equals_bool",equals_bvec2:"tsl_equals_bvec2",equals_bvec3:"tsl_equals_bvec3",equals_bvec4:"tsl_equals_bvec4",inversesqrt:"inverseSqrt",bitcast:"bitcast"};typeof navigator<"u"&&/Windows/g.test(navigator.userAgent)&&(Wo.pow_float=new rs("fn tsl_pow_float( a : f32, b : f32 ) -> f32 { return select( -pow( -a, b ), pow( a, b ), a > 0.0 ); }"),Wo.pow_vec2=new rs("fn tsl_pow_vec2( a : vec2f, b : vec2f ) -> vec2f { return vec2f( tsl_pow_float( a.x, b.x ), tsl_pow_float( a.y, b.y ) ); }",[Wo.pow_float]),Wo.pow_vec3=new rs("fn tsl_pow_vec3( a : vec3f, b : vec3f ) -> vec3f { return vec3f( tsl_pow_float( a.x, b.x ), tsl_pow_float( a.y, b.y ), tsl_pow_float( a.z, b.z ) ); }",[Wo.pow_float]),Wo.pow_vec4=new rs("fn tsl_pow_vec4( a : vec4f, b : vec4f ) -> vec4f { return vec4f( tsl_pow_float( a.x, b.x ), tsl_pow_float( a.y, b.y ), tsl_pow_float( a.z, b.z ), tsl_pow_float( a.w, b.w ) ); }",[Wo.pow_float]),Mm.pow_float="tsl_pow_float",Mm.pow_vec2="tsl_pow_vec2",Mm.pow_vec3="tsl_pow_vec3",Mm.pow_vec4="tsl_pow_vec4");let sO="";(typeof navigator<"u"&&/Firefox|Deno/g.test(navigator.userAgent))!==!0&&(sO+=`diagnostic( off, derivative_uniformity ); +`);class Qoe extends XB{constructor(e,t){super(e,t,new Woe),this.uniformGroups={},this.builtins={},this.directives={},this.scopedArrays=new Map}needsToWorkingColorSpace(e){return e.isVideoTexture===!0&&e.colorSpace!==Co}_generateTextureSample(e,t,n,r,s=this.shaderStage){return s==="fragment"?r?`textureSample( ${t}, ${t}_sampler, ${n}, ${r} )`:`textureSample( ${t}, ${t}_sampler, ${n} )`:this.isFilteredTexture(e)?this.generateFilteredTexture(e,t,n):this.generateTextureLod(e,t,n,r,"0")}_generateVideoSample(e,t,n=this.shaderStage){if(n==="fragment")return`textureSampleBaseClampToEdge( ${e}, ${e}_sampler, vec2( ${t}.x, 1.0 - ${t}.y ) )`;console.error(`WebGPURenderer: THREE.VideoTexture does not support ${n} shader.`)}_generateTextureSampleLevel(e,t,n,r,s,a=this.shaderStage){return(a==="fragment"||a==="compute")&&this.isUnfilterable(e)===!1?`textureSampleLevel( ${t}, ${t}_sampler, ${n}, ${r} )`:this.isFilteredTexture(e)?this.generateFilteredTexture(e,t,n,r):this.generateTextureLod(e,t,n,s,r)}generateWrapFunction(e){const t=`tsl_coord_${PN[e.wrapS]}S_${PN[e.wrapT]}_${e.isData3DTexture?"3d":"2d"}T`;let n=UN[t];if(n===void 0){const r=[],s=e.isData3DTexture?"vec3f":"vec2f";let a=`fn ${t}( coord : ${s} ) -> ${s} { + + return ${s}( +`;const l=(u,h)=>{u===aA?(r.push(Wo.repeatWrapping_float),a+=` tsl_repeatWrapping_float( coord.${h} )`):u===eu?(r.push(Wo.clampWrapping_float),a+=` tsl_clampWrapping_float( coord.${h} )`):u===oA?(r.push(Wo.mirrorWrapping_float),a+=` tsl_mirrorWrapping_float( coord.${h} )`):(a+=` coord.${h}`,console.warn(`WebGPURenderer: Unsupported texture wrap type "${u}" for vertex shader.`))};l(e.wrapS,"x"),a+=`, +`,l(e.wrapT,"y"),e.isData3DTexture&&(a+=`, +`,l(e.wrapR,"z")),a+=` + ); + +} +`,UN[t]=n=new rs(a,r)}return n.build(this),t}generateTextureDimension(e,t,n){const r=this.getDataFromNode(e,this.shaderStage,this.globalCache);r.dimensionsSnippet===void 0&&(r.dimensionsSnippet={});let s=r.dimensionsSnippet[n];if(r.dimensionsSnippet[n]===void 0){let a,l;const{primarySamples:u}=this.renderer.backend.utils.getTextureSampleData(e),h=u>1;e.isData3DTexture?l="vec3":l="vec2",h||e.isVideoTexture||e.isStorageTexture?a=t:a=`${t}${n?`, u32( ${n} )`:""}`,s=new Kv(new Zv(`textureDimensions( ${a} )`,l)),r.dimensionsSnippet[n]=s,(e.isDataArrayTexture||e.isData3DTexture)&&(r.arrayLayerCount=new Kv(new Zv(`textureNumLayers(${t})`,"u32"))),e.isTextureCube&&(r.cubeFaceCount=new Kv(new Zv("6u","u32")))}return s.build(this)}generateFilteredTexture(e,t,n,r="0u"){this._include("biquadraticTexture");const s=this.generateWrapFunction(e),a=this.generateTextureDimension(e,t,r);return`tsl_biquadraticTexture( ${t}, ${s}( ${n} ), ${a}, u32( ${r} ) )`}generateTextureLod(e,t,n,r,s="0u"){const a=this.generateWrapFunction(e),l=this.generateTextureDimension(e,t,s),u=e.isData3DTexture?"vec3":"vec2",h=`${u}(${a}(${n}) * ${u}(${l}))`;return this.generateTextureLoad(e,t,h,r,s)}generateTextureLoad(e,t,n,r,s="0u"){return e.isVideoTexture===!0||e.isStorageTexture===!0?`textureLoad( ${t}, ${n} )`:r?`textureLoad( ${t}, ${n}, ${r}, u32( ${s} ) )`:`textureLoad( ${t}, ${n}, u32( ${s} ) )`}generateTextureStore(e,t,n,r){return`textureStore( ${t}, ${n}, ${r} )`}isSampleCompare(e){return e.isDepthTexture===!0&&e.compareFunction!==null}isUnfilterable(e){return this.getComponentTypeFromTexture(e)!=="float"||!this.isAvailable("float32Filterable")&&e.isDataTexture===!0&&e.type===$r||this.isSampleCompare(e)===!1&&e.minFilter===mr&&e.magFilter===mr||this.renderer.backend.utils.getTextureSampleData(e).primarySamples>1}generateTexture(e,t,n,r,s=this.shaderStage){let a=null;return e.isVideoTexture===!0?a=this._generateVideoSample(t,n,s):this.isUnfilterable(e)?a=this.generateTextureLod(e,t,n,r,"0",s):a=this._generateTextureSample(e,t,n,r,s),a}generateTextureGrad(e,t,n,r,s,a=this.shaderStage){if(a==="fragment")return`textureSampleGrad( ${t}, ${t}_sampler, ${n}, ${r[0]}, ${r[1]} )`;console.error(`WebGPURenderer: THREE.TextureNode.gradient() does not support ${a} shader.`)}generateTextureCompare(e,t,n,r,s,a=this.shaderStage){if(a==="fragment")return`textureSampleCompare( ${t}, ${t}_sampler, ${n}, ${r} )`;console.error(`WebGPURenderer: THREE.DepthTexture.compareFunction() does not support ${a} shader.`)}generateTextureLevel(e,t,n,r,s,a=this.shaderStage){let l=null;return e.isVideoTexture===!0?l=this._generateVideoSample(t,n,a):l=this._generateTextureSampleLevel(e,t,n,r,s,a),l}generateTextureBias(e,t,n,r,s,a=this.shaderStage){if(a==="fragment")return`textureSampleBias( ${t}, ${t}_sampler, ${n}, ${r} )`;console.error(`WebGPURenderer: THREE.TextureNode.biasNode does not support ${a} shader.`)}getPropertyName(e,t=this.shaderStage){if(e.isNodeVarying===!0&&e.needsInterpolation===!0){if(t==="vertex")return`varyings.${e.name}`}else if(e.isNodeUniform===!0){const n=e.name,r=e.type;return r==="texture"||r==="cubeTexture"||r==="storageTexture"||r==="texture3D"?n:r==="buffer"||r==="storageBuffer"||r==="indirectStorageBuffer"?`NodeBuffer_${e.id}.${n}`:e.groupNode.name+"."+n}return super.getPropertyName(e)}getOutputStructName(){return"output"}_getUniformGroupCount(e){return Object.keys(this.uniforms[e]).length}getFunctionOperator(e){const t=Xoe[e];return t!==void 0?(this._include(t),t):null}getNodeAccess(e,t){return t!=="compute"?sa.READ_ONLY:e.access}getStorageAccess(e,t){return $oe[this.getNodeAccess(e,t)]}getUniformFromNode(e,t,n,r=null){const s=super.getUniformFromNode(e,t,n,r),a=this.getDataFromNode(e,n,this.globalCache);if(a.uniformGPU===void 0){let l;const u=e.groupNode,h=u.name,m=this.getBindGroupArray(h,n);if(t==="texture"||t==="cubeTexture"||t==="storageTexture"||t==="texture3D"){let v=null;const x=this.getNodeAccess(e,n);if(t==="texture"||t==="storageTexture"?v=new ex(s.name,s.node,u,x):t==="cubeTexture"?v=new nO(s.name,s.node,u,x):t==="texture3D"&&(v=new iO(s.name,s.node,u,x)),v.store=e.isStorageTextureNode===!0,v.setVisibility(Tv[n]),(n==="fragment"||n==="compute")&&this.isUnfilterable(e.value)===!1&&v.store===!1){const S=new Uoe(`${s.name}_sampler`,s.node,u);S.setVisibility(Tv[n]),m.push(S,v),l=[S,v]}else m.push(v),l=[v]}else if(t==="buffer"||t==="storageBuffer"||t==="indirectStorageBuffer"){const v=t==="buffer"?eO:Ioe,x=new v(e,u);x.setVisibility(Tv[n]),m.push(x),l=x}else{const v=this.uniformGroups[n]||(this.uniformGroups[n]={});let x=v[h];x===void 0&&(x=new tO(h,u),x.setVisibility(Tv[n]),v[h]=x,m.push(x)),l=this.getNodeUniform(s,t),x.addUniform(l)}a.uniformGPU=l}return s}getBuiltin(e,t,n,r=this.shaderStage){const s=this.builtins[r]||(this.builtins[r]=new Map);return s.has(e)===!1&&s.set(e,{name:e,property:t,type:n}),t}hasBuiltin(e,t=this.shaderStage){return this.builtins[t]!==void 0&&this.builtins[t].has(e)}getVertexIndex(){return this.shaderStage==="vertex"?this.getBuiltin("vertex_index","vertexIndex","u32","attribute"):"vertexIndex"}buildFunctionCode(e){const t=e.layout,n=this.flowShaderNode(e),r=[];for(const a of t.inputs)r.push(a.name+" : "+this.getType(a.type));let s=`fn ${t.name}( ${r.join(", ")} ) -> ${this.getType(t.type)} { +${n.vars} +${n.code} +`;return n.result&&(s+=` return ${n.result}; +`),s+=` +} +`,s}getInstanceIndex(){return this.shaderStage==="vertex"?this.getBuiltin("instance_index","instanceIndex","u32","attribute"):"instanceIndex"}getInvocationLocalIndex(){return this.getBuiltin("local_invocation_index","invocationLocalIndex","u32","attribute")}getSubgroupSize(){return this.enableSubGroups(),this.getBuiltin("subgroup_size","subgroupSize","u32","attribute")}getInvocationSubgroupIndex(){return this.enableSubGroups(),this.getBuiltin("subgroup_invocation_id","invocationSubgroupIndex","u32","attribute")}getSubgroupIndex(){return this.enableSubGroups(),this.getBuiltin("subgroup_id","subgroupIndex","u32","attribute")}getDrawIndex(){return null}getFrontFacing(){return this.getBuiltin("front_facing","isFront","bool")}getFragCoord(){return this.getBuiltin("position","fragCoord","vec4")+".xy"}getFragDepth(){return"output."+this.getBuiltin("frag_depth","depth","f32","output")}getClipDistance(){return"varyings.hw_clip_distances"}isFlipY(){return!1}enableDirective(e,t=this.shaderStage){(this.directives[t]||(this.directives[t]=new Set)).add(e)}getDirectives(e){const t=[],n=this.directives[e];if(n!==void 0)for(const r of n)t.push(`enable ${r};`);return t.join(` +`)}enableSubGroups(){this.enableDirective("subgroups")}enableSubgroupsF16(){this.enableDirective("subgroups-f16")}enableClipDistances(){this.enableDirective("clip_distances")}enableShaderF16(){this.enableDirective("f16")}enableDualSourceBlending(){this.enableDirective("dual_source_blending")}enableHardwareClipping(e){this.enableClipDistances(),this.getBuiltin("clip_distances","hw_clip_distances",`array`,"vertex")}getBuiltins(e){const t=[],n=this.builtins[e];if(n!==void 0)for(const{name:r,property:s,type:a}of n.values())t.push(`@builtin( ${r} ) ${s} : ${a}`);return t.join(`, + `)}getScopedArray(e,t,n,r){return this.scopedArrays.has(e)===!1&&this.scopedArrays.set(e,{name:e,scope:t,bufferType:n,bufferCount:r}),e}getScopedArrays(e){if(e!=="compute")return;const t=[];for(const{name:n,scope:r,bufferType:s,bufferCount:a}of this.scopedArrays.values()){const l=this.getType(s);t.push(`var<${r}> ${n}: array< ${l}, ${a} >;`)}return t.join(` +`)}getAttributes(e){const t=[];if(e==="compute"&&(this.getBuiltin("global_invocation_id","id","vec3","attribute"),this.getBuiltin("workgroup_id","workgroupId","vec3","attribute"),this.getBuiltin("local_invocation_id","localId","vec3","attribute"),this.getBuiltin("num_workgroups","numWorkgroups","vec3","attribute"),this.renderer.hasFeature("subgroups")&&(this.enableDirective("subgroups",e),this.getBuiltin("subgroup_size","subgroupSize","u32","attribute"))),e==="vertex"||e==="compute"){const n=this.getBuiltins("attribute");n&&t.push(n);const r=this.getAttributesArray();for(let s=0,a=r.length;s`)}const r=this.getBuiltins("output");return r&&t.push(" "+r),t.join(`, +`)}getStructs(e){const t=[],n=this.structs[e];for(let r=0,s=n.length;r output : ${l}; + +`)}return t.join(` + +`)}getVar(e,t){return`var ${t} : ${this.getType(e)}`}getVars(e){const t=[],n=this.vars[e];if(n!==void 0)for(const r of n)t.push(` ${this.getVar(r.type,r.name)};`);return` +${t.join(` +`)} +`}getVaryings(e){const t=[];if(e==="vertex"&&this.getBuiltin("position","Vertex","vec4","vertex"),e==="vertex"||e==="fragment"){const s=this.varyings,a=this.vars[e];for(let l=0;l1&&(S="_multisampled"),v.isCubeTexture===!0)x="texture_cube";else if(v.isDataArrayTexture===!0||v.isCompressedArrayTexture===!0)x="texture_2d_array";else if(v.isDepthTexture===!0)x=`texture_depth${S}_2d`;else if(v.isVideoTexture===!0)x="texture_external";else if(v.isData3DTexture===!0)x="texture_3d";else if(u.node.isStorageTextureNode===!0){const R=iw(v),C=this.getStorageAccess(u.node,e);x=`texture_storage_2d<${R}, ${C}>`}else{const R=this.getComponentTypeFromTexture(v).charAt(0);x=`texture${S}_2d<${R}32>`}n.push(`@binding( ${m.binding++} ) @group( ${m.group} ) var ${u.name} : ${x};`)}else if(u.type==="buffer"||u.type==="storageBuffer"||u.type==="indirectStorageBuffer"){const v=u.node,x=this.getType(v.bufferType),S=v.bufferCount,w=S>0&&u.type==="buffer"?", "+S:"",R=v.isAtomic?`atomic<${x}>`:`${x}`,C=` ${u.name} : array< ${R}${w} > +`,E=v.isStorageBufferNode?`storage, ${this.getStorageAccess(v,e)}`:"uniform";r.push(this._getWGSLStructBinding("NodeBuffer_"+v.id,C,E,m.binding++,m.group))}else{const v=this.getType(this.getVectorType(u.type)),x=u.groupNode.name;(a[x]||(a[x]={index:m.binding++,id:m.group,snippets:[]})).snippets.push(` ${u.name} : ${v}`)}}for(const u in a){const h=a[u];s.push(this._getWGSLStructBinding(u,h.snippets.join(`, +`),"uniform",h.index,h.id))}let l=n.join(` +`);return l+=r.join(` +`),l+=s.join(` +`),l}buildCode(){const e=this.material!==null?{fragment:{},vertex:{}}:{compute:{}};this.sortBindingGroups();for(const t in e){const n=e[t];n.uniforms=this.getUniforms(t),n.attributes=this.getAttributes(t),n.varyings=this.getVaryings(t),n.structs=this.getStructs(t),n.vars=this.getVars(t),n.codes=this.getCodes(t),n.directives=this.getDirectives(t),n.scopedArrays=this.getScopedArrays(t);let r=`// code + +`;r+=this.flowCode[t];const s=this.flowNodes[t],a=s[s.length-1],l=a.outputNode,u=l!==void 0&&l.isOutputStructNode===!0;for(const h of s){const m=this.getFlowData(h),v=h.name;if(v&&(r.length>0&&(r+=` +`),r+=` // flow -> ${v} + `),r+=`${m.code} + `,h===a&&t!=="compute"){if(r+=`// result + + `,t==="vertex")r+=`varyings.Vertex = ${m.result};`;else if(t==="fragment")if(u)n.returnType=l.nodeType,r+=`return ${m.result};`;else{let x=" @location(0) color: vec4";const S=this.getBuiltins("output");S&&(x+=`, + `+S),n.returnType="OutputStruct",n.structs+=this._getWGSLStruct("OutputStruct",x),n.structs+=` +var output : OutputStruct; + +`,r+=`output.color = ${m.result}; + + return output;`}}}n.flow=r}this.material!==null?(this.vertexShader=this._getWGSLVertexCode(e.vertex),this.fragmentShader=this._getWGSLFragmentCode(e.fragment)):this.computeShader=this._getWGSLComputeCode(e.compute,(this.object.workgroupSize||[64]).join(", "))}getMethod(e,t=null){let n;return t!==null&&(n=this._getWGSLMethod(e+"_"+t)),n===void 0&&(n=this._getWGSLMethod(e)),n||e}getType(e){return Yoe[e]||e}isAvailable(e){let t=LN[e];return t===void 0&&(e==="float32Filterable"?t=this.renderer.hasFeature("float32-filterable"):e==="clipDistance"&&(t=this.renderer.hasFeature("clip-distances")),LN[e]=t),t}_getWGSLMethod(e){return Wo[e]!==void 0&&this._include(e),Mm[e]}_include(e){const t=Wo[e];return t.build(this),this.currentFunctionNode!==null&&this.currentFunctionNode.includes.push(t),t}_getWGSLVertexCode(e){return`${this.getSignature()} +// directives +${e.directives} + +// uniforms +${e.uniforms} + +// varyings +${e.varyings} +var varyings : VaryingsStruct; + +// codes +${e.codes} + +@vertex +fn main( ${e.attributes} ) -> VaryingsStruct { + + // vars + ${e.vars} + + // flow + ${e.flow} + + return varyings; + +} +`}_getWGSLFragmentCode(e){return`${this.getSignature()} +// global +${sO} + +// uniforms +${e.uniforms} + +// structs +${e.structs} + +// codes +${e.codes} + +@fragment +fn main( ${e.varyings} ) -> ${e.returnType} { + + // vars + ${e.vars} + + // flow + ${e.flow} + +} +`}_getWGSLComputeCode(e,t){return`${this.getSignature()} +// directives +${e.directives} + +// system +var instanceIndex : u32; + +// locals +${e.scopedArrays} + +// uniforms +${e.uniforms} + +// codes +${e.codes} + +@compute @workgroup_size( ${t} ) +fn main( ${e.attributes} ) { + + // system + instanceIndex = id.x + id.y * numWorkgroups.x * u32(${t}) + id.z * numWorkgroups.x * numWorkgroups.y * u32(${t}); + + // vars + ${e.vars} + + // flow + ${e.flow} + +} +`}_getWGSLStruct(e,t){return` +struct ${e} { +${t} +};`}_getWGSLStructBinding(e,t,n,r=0,s=0){const a=e+"Struct";return`${this._getWGSLStruct(a,t)} +@binding( ${r} ) @group( ${s} ) +var<${n}> ${e} : ${a};`}}class Koe{constructor(e){this.backend=e}getCurrentDepthStencilFormat(e){let t;return e.depthTexture!==null?t=this.getTextureFormatGPU(e.depthTexture):e.depth&&e.stencil?t=Pe.Depth24PlusStencil8:e.depth&&(t=Pe.Depth24Plus),t}getTextureFormatGPU(e){return this.backend.get(e).format}getTextureSampleData(e){let t;if(e.isFramebufferTexture)t=1;else if(e.isDepthTexture&&!e.renderTarget){const s=this.backend.renderer,a=s.getRenderTarget();t=a?a.samples:s.samples}else e.renderTarget&&(t=e.renderTarget.samples);t=t||1;const n=t>1&&e.renderTarget!==null&&e.isDepthTexture!==!0&&e.isFramebufferTexture!==!0;return{samples:t,primarySamples:n?1:t,isMSAA:n}}getCurrentColorFormat(e){let t;return e.textures!==null?t=this.getTextureFormatGPU(e.textures[0]):t=this.getPreferredCanvasFormat(),t}getCurrentColorSpace(e){return e.textures!==null?e.textures[0].colorSpace:this.backend.renderer.outputColorSpace}getPrimitiveTopology(e,t){if(e.isPoints)return Zd.PointList;if(e.isLineSegments||e.isMesh&&t.wireframe===!0)return Zd.LineList;if(e.isLine)return Zd.LineStrip;if(e.isMesh)return Zd.TriangleList}getSampleCount(e){let t=1;return e>1&&(t=Math.pow(2,Math.floor(Math.log2(e))),t===2&&(t=4)),t}getSampleCountRenderContext(e){return e.textures!==null?this.getSampleCount(e.sampleCount):this.getSampleCount(this.backend.renderer.samples)}getPreferredCanvasFormat(){return navigator.userAgent.includes("Quest")?Pe.BGRA8Unorm:navigator.gpu.getPreferredCanvasFormat()}}const Zoe=new Map([[Int8Array,["sint8","snorm8"]],[Uint8Array,["uint8","unorm8"]],[Int16Array,["sint16","snorm16"]],[Uint16Array,["uint16","unorm16"]],[Int32Array,["sint32","snorm32"]],[Uint32Array,["uint32","unorm32"]],[Float32Array,["float32"]]]),Joe=new Map([[G7,["float16"]]]),ele=new Map([[Int32Array,"sint32"],[Int16Array,"sint32"],[Uint32Array,"uint32"],[Uint16Array,"uint32"],[Float32Array,"float32"]]);class tle{constructor(e){this.backend=e}createAttribute(e,t){const n=this._getBufferAttribute(e),r=this.backend,s=r.get(n);let a=s.buffer;if(a===void 0){const l=r.device;let u=n.array;if(e.normalized===!1&&(u.constructor===Int16Array||u.constructor===Uint16Array)){const m=new Uint32Array(u.length);for(let v=0;v1&&(u.multisampled=!0,a.texture.isDepthTexture||(u.sampleType=Ld.UnfilterableFloat)),a.texture.isDepthTexture)u.sampleType=Ld.Depth;else if(a.texture.isDataTexture||a.texture.isDataArrayTexture||a.texture.isData3DTexture){const m=a.texture.type;m===Ns?u.sampleType=Ld.SInt:m===Rr?u.sampleType=Ld.UInt:m===$r&&(this.backend.hasFeature("float32-filterable")?u.sampleType=Ld.Float:u.sampleType=Ld.UnfilterableFloat)}a.isSampledCubeTexture?u.viewDimension=za.Cube:a.texture.isDataArrayTexture||a.texture.isCompressedArrayTexture?u.viewDimension=za.TwoDArray:a.isSampledTexture3D&&(u.viewDimension=za.ThreeD),l.texture=u}else console.error(`WebGPUBindingUtils: Unsupported binding "${a}".`);r.push(l)}return n.createBindGroupLayout({entries:r})}createBindings(e,t,n,r=0){const{backend:s,bindGroupLayoutCache:a}=this,l=s.get(e);let u=a.get(e.bindingsReference);u===void 0&&(u=this.createBindingsLayout(e),a.set(e.bindingsReference,u));let h;n>0&&(l.groups===void 0&&(l.groups=[],l.versions=[]),l.versions[n]===r&&(h=l.groups[n])),h===void 0&&(h=this.createBindGroup(e,u),n>0&&(l.groups[n]=h,l.versions[n]=r)),l.group=h,l.layout=u}updateBinding(e){const t=this.backend,n=t.device,r=e.buffer,s=t.get(e).buffer;n.queue.writeBuffer(s,0,r,0)}createBindGroup(e,t){const n=this.backend,r=n.device;let s=0;const a=[];for(const l of e.bindings){if(l.isUniformBuffer){const u=n.get(l);if(u.buffer===void 0){const h=l.byteLength,m=GPUBufferUsage.UNIFORM|GPUBufferUsage.COPY_DST,v=r.createBuffer({label:"bindingBuffer_"+l.name,size:h,usage:m});u.buffer=v}a.push({binding:s,resource:{buffer:u.buffer}})}else if(l.isStorageBuffer){const u=n.get(l);if(u.buffer===void 0){const h=l.attribute;u.buffer=n.get(h).buffer}a.push({binding:s,resource:{buffer:u.buffer}})}else if(l.isSampler){const u=n.get(l.texture);a.push({binding:s,resource:u.sampler})}else if(l.isSampledTexture){const u=n.get(l.texture);let h;if(u.externalTexture!==void 0)h=r.importExternalTexture({source:u.externalTexture});else{const m=l.store?1:u.texture.mipLevelCount,v=`view-${u.texture.width}-${u.texture.height}-${m}`;if(h=u[v],h===void 0){const x=Poe.All;let S;l.isSampledCubeTexture?S=za.Cube:l.isSampledTexture3D?S=za.ThreeD:l.texture.isDataArrayTexture||l.texture.isCompressedArrayTexture?S=za.TwoDArray:S=za.TwoD,h=u[v]=u.texture.createView({aspect:x,dimension:S,mipLevelCount:m})}}a.push({binding:s,resource:h})}s++}return r.createBindGroup({label:"bindGroup_"+e.name,layout:t,entries:a})}}class ile{constructor(e){this.backend=e}_getSampleCount(e){return this.backend.utils.getSampleCountRenderContext(e)}createRenderPipeline(e,t){const{object:n,material:r,geometry:s,pipeline:a}=e,{vertexProgram:l,fragmentProgram:u}=a,h=this.backend,m=h.device,v=h.utils,x=h.get(a),S=[];for(const ne of e.getBindings()){const oe=h.get(ne);S.push(oe.layout)}const w=h.attributeUtils.createShaderVertexBuffers(e);let R;r.transparent===!0&&r.blending!==Qa&&(R=this._getBlending(r));let C={};r.stencilWrite===!0&&(C={compare:this._getStencilCompare(r),failOp:this._getStencilOperation(r.stencilFail),depthFailOp:this._getStencilOperation(r.stencilZFail),passOp:this._getStencilOperation(r.stencilZPass)});const E=this._getColorWriteMask(r),B=[];if(e.context.textures!==null){const ne=e.context.textures;for(let oe=0;oe1},layout:m.createPipelineLayout({bindGroupLayouts:S})},V={},Y=e.context.depth,J=e.context.stencil;if((Y===!0||J===!0)&&(Y===!0&&(V.format=z,V.depthWriteEnabled=r.depthWrite,V.depthCompare=q),J===!0&&(V.stencilFront=C,V.stencilBack={},V.stencilReadMask=r.stencilFuncMask,V.stencilWriteMask=r.stencilWriteMask),F.depthStencil=V),t===null)x.pipeline=m.createRenderPipeline(F);else{const ne=new Promise(oe=>{m.createRenderPipelineAsync(F).then(te=>{x.pipeline=te,oe()})});t.push(ne)}}createBundleEncoder(e){const t=this.backend,{utils:n,device:r}=t,s=n.getCurrentDepthStencilFormat(e),a=n.getCurrentColorFormat(e),l=this._getSampleCount(e),u={label:"renderBundleEncoder",colorFormats:[a],depthStencilFormat:s,sampleCount:l};return r.createRenderBundleEncoder(u)}createComputePipeline(e,t){const n=this.backend,r=n.device,s=n.get(e.computeProgram).module,a=n.get(e),l=[];for(const u of t){const h=n.get(u);l.push(h.layout)}a.pipeline=r.createComputePipeline({compute:s,layout:r.createPipelineLayout({bindGroupLayouts:l})})}_getBlending(e){let t,n;const r=e.blending,s=e.blendSrc,a=e.blendDst,l=e.blendEquation;if(r===xw){const u=e.blendSrcAlpha!==null?e.blendSrcAlpha:s,h=e.blendDstAlpha!==null?e.blendDstAlpha:a,m=e.blendEquationAlpha!==null?e.blendEquationAlpha:l;t={srcFactor:this._getBlendFactor(s),dstFactor:this._getBlendFactor(a),operation:this._getBlendOperation(l)},n={srcFactor:this._getBlendFactor(u),dstFactor:this._getBlendFactor(h),operation:this._getBlendOperation(m)}}else{const u=e.premultipliedAlpha,h=(m,v,x,S)=>{t={srcFactor:m,dstFactor:v,operation:Df.Add},n={srcFactor:x,dstFactor:S,operation:Df.Add}};if(u)switch(r){case Ka:h(Kn.One,Kn.OneMinusSrcAlpha,Kn.One,Kn.OneMinusSrcAlpha);break;case a0:h(Kn.One,Kn.One,Kn.One,Kn.One);break;case o0:h(Kn.Zero,Kn.OneMinusSrc,Kn.Zero,Kn.One);break;case l0:h(Kn.Zero,Kn.Src,Kn.Zero,Kn.SrcAlpha);break}else switch(r){case Ka:h(Kn.SrcAlpha,Kn.OneMinusSrcAlpha,Kn.One,Kn.OneMinusSrcAlpha);break;case a0:h(Kn.SrcAlpha,Kn.One,Kn.SrcAlpha,Kn.One);break;case o0:h(Kn.Zero,Kn.OneMinusSrc,Kn.Zero,Kn.One);break;case l0:h(Kn.Zero,Kn.Src,Kn.Zero,Kn.Src);break}}if(t!==void 0&&n!==void 0)return{color:t,alpha:n};console.error("THREE.WebGPURenderer: Invalid blending: ",r)}_getBlendFactor(e){let t;switch(e){case Tw:t=Kn.Zero;break;case ww:t=Kn.One;break;case Mw:t=Kn.Src;break;case Ew:t=Kn.OneMinusSrc;break;case qm:t=Kn.SrcAlpha;break;case Vm:t=Kn.OneMinusSrcAlpha;break;case Nw:t=Kn.Dst;break;case Dw:t=Kn.OneMinusDstColor;break;case Cw:t=Kn.DstAlpha;break;case Rw:t=Kn.OneMinusDstAlpha;break;case Pw:t=Kn.SrcAlphaSaturated;break;case dne:t=Kn.Constant;break;case pne:t=Kn.OneMinusConstant;break;default:console.error("THREE.WebGPURenderer: Blend factor not supported.",e)}return t}_getStencilCompare(e){let t;const n=e.stencilFunc;switch(n){case tk:t=Bs.Never;break;case WS:t=Bs.Always;break;case nk:t=Bs.Less;break;case rk:t=Bs.LessEqual;break;case ik:t=Bs.Equal;break;case ok:t=Bs.GreaterEqual;break;case sk:t=Bs.Greater;break;case ak:t=Bs.NotEqual;break;default:console.error("THREE.WebGPURenderer: Invalid stencil function.",n)}return t}_getStencilOperation(e){let t;switch(e){case Uf:t=Th.Keep;break;case XF:t=Th.Zero;break;case YF:t=Th.Replace;break;case ek:t=Th.Invert;break;case QF:t=Th.IncrementClamp;break;case KF:t=Th.DecrementClamp;break;case ZF:t=Th.IncrementWrap;break;case JF:t=Th.DecrementWrap;break;default:console.error("THREE.WebGPURenderer: Invalid stencil operation.",t)}return t}_getBlendOperation(e){let t;switch(e){case Eo:t=Df.Add;break;case bw:t=Df.Subtract;break;case Sw:t=Df.ReverseSubtract;break;case M7:t=Df.Min;break;case E7:t=Df.Max;break;default:console.error("THREE.WebGPUPipelineUtils: Blend equation not supported.",e)}return t}_getPrimitiveState(e,t,n){const r={},s=this.backend.utils;switch(r.topology=s.getPrimitiveTopology(e,n),t.index!==null&&e.isLine===!0&&e.isLineSegments!==!0&&(r.stripIndexFormat=t.index.array instanceof Uint16Array?k0.Uint16:k0.Uint32),n.side){case Nl:r.frontFace=bS.CCW,r.cullMode=SS.Back;break;case hr:r.frontFace=bS.CCW,r.cullMode=SS.Front;break;case as:r.frontFace=bS.CCW,r.cullMode=SS.None;break;default:console.error("THREE.WebGPUPipelineUtils: Unknown material.side value.",n.side);break}return r}_getColorWriteMask(e){return e.colorWrite===!0?RN.All:RN.None}_getDepthCompare(e){let t;if(e.depthTest===!1)t=Bs.Always;else{const n=e.depthFunc;switch(n){case Hm:t=Bs.Never;break;case jm:t=Bs.Always;break;case Wm:t=Bs.Less;break;case kh:t=Bs.LessEqual;break;case $m:t=Bs.Equal;break;case Xm:t=Bs.GreaterEqual;break;case Ym:t=Bs.Greater;break;case Qm:t=Bs.NotEqual;break;default:console.error("THREE.WebGPUPipelineUtils: Invalid depth function.",n)}}return t}}class rle extends rO{constructor(e={}){super(e),this.isWebGPUBackend=!0,this.parameters.alpha=e.alpha===void 0?!0:e.alpha,this.parameters.requiredLimits=e.requiredLimits===void 0?{}:e.requiredLimits,this.trackTimestamp=e.trackTimestamp===!0,this.device=null,this.context=null,this.colorBuffer=null,this.defaultRenderPassdescriptor=null,this.utils=new Koe(this),this.attributeUtils=new tle(this),this.bindingUtils=new nle(this),this.pipelineUtils=new ile(this),this.textureUtils=new Goe(this),this.occludedResolveCache=new Map}async init(e){await super.init(e);const t=this.parameters;let n;if(t.device===void 0){const a={powerPreference:t.powerPreference},l=typeof navigator<"u"?await navigator.gpu.requestAdapter(a):null;if(l===null)throw new Error("WebGPUBackend: Unable to create WebGPU adapter.");const u=Object.values(nw),h=[];for(const v of u)l.features.has(v)&&h.push(v);const m={requiredFeatures:h,requiredLimits:t.requiredLimits};n=await l.requestDevice(m)}else n=t.device;n.lost.then(a=>{const l={api:"WebGPU",message:a.message||"Unknown reason",reason:a.reason||null,originalEvent:a};e.onDeviceLost(l)});const r=t.context!==void 0?t.context:e.domElement.getContext("webgpu");this.device=n,this.context=r;const s=t.alpha?"premultiplied":"opaque";this.trackTimestamp=this.trackTimestamp&&this.hasFeature(nw.TimestampQuery),this.context.configure({device:this.device,format:this.utils.getPreferredCanvasFormat(),usage:GPUTextureUsage.RENDER_ATTACHMENT|GPUTextureUsage.COPY_SRC,alphaMode:s}),this.updateSize()}get coordinateSystem(){return pu}async getArrayBufferAsync(e){return await this.attributeUtils.getArrayBufferAsync(e)}getContext(){return this.context}_getDefaultRenderPassDescriptor(){let e=this.defaultRenderPassdescriptor;if(e===null){const n=this.renderer;e={colorAttachments:[{view:null}]},(this.renderer.depth===!0||this.renderer.stencil===!0)&&(e.depthStencilAttachment={view:this.textureUtils.getDepthBuffer(n.depth,n.stencil).createView()});const r=e.colorAttachments[0];this.renderer.samples>0?r.view=this.colorBuffer.createView():r.resolveTarget=void 0,this.defaultRenderPassdescriptor=e}const t=e.colorAttachments[0];return this.renderer.samples>0?t.resolveTarget=this.context.getCurrentTexture().createView():t.view=this.context.getCurrentTexture().createView(),e}_getRenderPassDescriptor(e,t={}){const n=e.renderTarget,r=this.get(n);let s=r.descriptors;if(s===void 0||r.width!==n.width||r.height!==n.height||r.dimensions!==n.dimensions||r.activeMipmapLevel!==n.activeMipmapLevel||r.activeCubeFace!==e.activeCubeFace||r.samples!==n.samples||r.loadOp!==t.loadOp){s={},r.descriptors=s;const u=()=>{n.removeEventListener("dispose",u),this.delete(n)};n.addEventListener("dispose",u)}const a=e.getCacheKey();let l=s[a];if(l===void 0){const u=e.textures,h=[];let m;for(let v=0;v0&&(t.currentOcclusionQuerySet&&t.currentOcclusionQuerySet.destroy(),t.currentOcclusionQueryBuffer&&t.currentOcclusionQueryBuffer.destroy(),t.currentOcclusionQuerySet=t.occlusionQuerySet,t.currentOcclusionQueryBuffer=t.occlusionQueryBuffer,t.currentOcclusionQueryObjects=t.occlusionQueryObjects,s=n.createQuerySet({type:"occlusion",count:r,label:`occlusionQuerySet_${e.id}`}),t.occlusionQuerySet=s,t.occlusionQueryIndex=0,t.occlusionQueryObjects=new Array(r),t.lastOcclusionObject=null);let a;e.textures===null?a=this._getDefaultRenderPassDescriptor():a=this._getRenderPassDescriptor(e,{loadOp:Wr.Load}),this.initTimestampQuery(e,a),a.occlusionQuerySet=s;const l=a.depthStencilAttachment;if(e.textures!==null){const m=a.colorAttachments;for(let v=0;v0&&t.currentPass.executeBundles(t.renderBundles),n>t.occlusionQueryIndex&&t.currentPass.endOcclusionQuery(),t.currentPass.end(),n>0){const r=n*8;let s=this.occludedResolveCache.get(r);s===void 0&&(s=this.device.createBuffer({size:r,usage:GPUBufferUsage.QUERY_RESOLVE|GPUBufferUsage.COPY_SRC}),this.occludedResolveCache.set(r,s));const a=this.device.createBuffer({size:r,usage:GPUBufferUsage.COPY_DST|GPUBufferUsage.MAP_READ});t.encoder.resolveQuerySet(t.occlusionQuerySet,0,n,s,0),t.encoder.copyBufferToBuffer(s,0,a,0,r),t.occlusionQueryBuffer=a,this.resolveOccludedAsync(e)}if(this.prepareTimestampBuffer(e,t.encoder),this.device.queue.submit([t.encoder.finish()]),e.textures!==null){const r=e.textures;for(let s=0;sl?(h.x=Math.min(t.dispatchCount,l),h.y=Math.ceil(t.dispatchCount/l)):h.x=t.dispatchCount,s.dispatchWorkgroups(h.x,h.y,h.z)}finishCompute(e){const t=this.get(e);t.passEncoderGPU.end(),this.prepareTimestampBuffer(e,t.cmdEncoderGPU),this.device.queue.submit([t.cmdEncoderGPU.finish()])}async waitForGPU(){await this.device.queue.onSubmittedWorkDone()}draw(e,t){const{object:n,context:r,pipeline:s}=e,a=e.getBindings(),l=this.get(r),u=this.get(s).pipeline,h=l.currentSets,m=l.currentPass,v=e.getDrawParameters();if(v===null)return;h.pipeline!==u&&(m.setPipeline(u),h.pipeline=u);const x=h.bindingGroups;for(let C=0,E=a.length;C1?0:O;w===!0?m.drawIndexed(E[O],G,C[O]/S.array.BYTES_PER_ELEMENT,0,q):m.draw(E[O],G,C[O],q)}}else if(w===!0){const{vertexCount:C,instanceCount:E,firstVertex:B}=v,L=e.getIndirect();if(L!==null){const O=this.get(L).buffer;m.drawIndexedIndirect(O,0)}else m.drawIndexed(C,E,B,0,0);t.update(n,C,E)}else{const{vertexCount:C,instanceCount:E,firstVertex:B}=v,L=e.getIndirect();if(L!==null){const O=this.get(L).buffer;m.drawIndirect(O,0)}else m.draw(C,E,B,0);t.update(n,C,E)}}needsRenderUpdate(e){const t=this.get(e),{object:n,material:r}=e,s=this.utils,a=s.getSampleCountRenderContext(e.context),l=s.getCurrentColorSpace(e.context),u=s.getCurrentColorFormat(e.context),h=s.getCurrentDepthStencilFormat(e.context),m=s.getPrimitiveTopology(n,r);let v=!1;return(t.material!==r||t.materialVersion!==r.version||t.transparent!==r.transparent||t.blending!==r.blending||t.premultipliedAlpha!==r.premultipliedAlpha||t.blendSrc!==r.blendSrc||t.blendDst!==r.blendDst||t.blendEquation!==r.blendEquation||t.blendSrcAlpha!==r.blendSrcAlpha||t.blendDstAlpha!==r.blendDstAlpha||t.blendEquationAlpha!==r.blendEquationAlpha||t.colorWrite!==r.colorWrite||t.depthWrite!==r.depthWrite||t.depthTest!==r.depthTest||t.depthFunc!==r.depthFunc||t.stencilWrite!==r.stencilWrite||t.stencilFunc!==r.stencilFunc||t.stencilFail!==r.stencilFail||t.stencilZFail!==r.stencilZFail||t.stencilZPass!==r.stencilZPass||t.stencilFuncMask!==r.stencilFuncMask||t.stencilWriteMask!==r.stencilWriteMask||t.side!==r.side||t.alphaToCoverage!==r.alphaToCoverage||t.sampleCount!==a||t.colorSpace!==l||t.colorFormat!==u||t.depthStencilFormat!==h||t.primitiveTopology!==m||t.clippingContextCacheKey!==e.clippingContextCacheKey)&&(t.material=r,t.materialVersion=r.version,t.transparent=r.transparent,t.blending=r.blending,t.premultipliedAlpha=r.premultipliedAlpha,t.blendSrc=r.blendSrc,t.blendDst=r.blendDst,t.blendEquation=r.blendEquation,t.blendSrcAlpha=r.blendSrcAlpha,t.blendDstAlpha=r.blendDstAlpha,t.blendEquationAlpha=r.blendEquationAlpha,t.colorWrite=r.colorWrite,t.depthWrite=r.depthWrite,t.depthTest=r.depthTest,t.depthFunc=r.depthFunc,t.stencilWrite=r.stencilWrite,t.stencilFunc=r.stencilFunc,t.stencilFail=r.stencilFail,t.stencilZFail=r.stencilZFail,t.stencilZPass=r.stencilZPass,t.stencilFuncMask=r.stencilFuncMask,t.stencilWriteMask=r.stencilWriteMask,t.side=r.side,t.alphaToCoverage=r.alphaToCoverage,t.sampleCount=a,t.colorSpace=l,t.colorFormat=u,t.depthStencilFormat=h,t.primitiveTopology=m,t.clippingContextCacheKey=e.clippingContextCacheKey,v=!0),v}getRenderCacheKey(e){const{object:t,material:n}=e,r=this.utils,s=e.context;return[n.transparent,n.blending,n.premultipliedAlpha,n.blendSrc,n.blendDst,n.blendEquation,n.blendSrcAlpha,n.blendDstAlpha,n.blendEquationAlpha,n.colorWrite,n.depthWrite,n.depthTest,n.depthFunc,n.stencilWrite,n.stencilFunc,n.stencilFail,n.stencilZFail,n.stencilZPass,n.stencilFuncMask,n.stencilWriteMask,n.side,r.getSampleCountRenderContext(s),r.getCurrentColorSpace(s),r.getCurrentColorFormat(s),r.getCurrentDepthStencilFormat(s),r.getPrimitiveTopology(t,n),e.getGeometryCacheKey(),e.clippingContextCacheKey].join()}createSampler(e){this.textureUtils.createSampler(e)}destroySampler(e){this.textureUtils.destroySampler(e)}createDefaultTexture(e){this.textureUtils.createDefaultTexture(e)}createTexture(e,t){this.textureUtils.createTexture(e,t)}updateTexture(e,t){this.textureUtils.updateTexture(e,t)}generateMipmaps(e){this.textureUtils.generateMipmaps(e)}destroyTexture(e){this.textureUtils.destroyTexture(e)}copyTextureToBuffer(e,t,n,r,s,a){return this.textureUtils.copyTextureToBuffer(e,t,n,r,s,a)}initTimestampQuery(e,t){if(!this.trackTimestamp)return;const n=this.get(e);if(!n.timeStampQuerySet){const r=e.isComputeNode?"compute":"render",s=this.device.createQuerySet({type:"timestamp",count:2,label:`timestamp_${r}_${e.id}`});Object.assign(t,{timestampWrites:{querySet:s,beginningOfPassWriteIndex:0,endOfPassWriteIndex:1}}),n.timeStampQuerySet=s}}prepareTimestampBuffer(e,t){if(!this.trackTimestamp)return;const n=this.get(e),r=2*BigInt64Array.BYTES_PER_ELEMENT;n.currentTimestampQueryBuffers===void 0&&(n.currentTimestampQueryBuffers={resolveBuffer:this.device.createBuffer({label:"timestamp resolve buffer",size:r,usage:GPUBufferUsage.QUERY_RESOLVE|GPUBufferUsage.COPY_SRC}),resultBuffer:this.device.createBuffer({label:"timestamp result buffer",size:r,usage:GPUBufferUsage.COPY_DST|GPUBufferUsage.MAP_READ})});const{resolveBuffer:s,resultBuffer:a}=n.currentTimestampQueryBuffers;t.resolveQuerySet(n.timeStampQuerySet,0,2,s,0),a.mapState==="unmapped"&&t.copyBufferToBuffer(s,0,a,0,r)}async resolveTimestampAsync(e,t="render"){if(!this.trackTimestamp)return;const n=this.get(e);if(n.currentTimestampQueryBuffers===void 0)return;const{resultBuffer:r}=n.currentTimestampQueryBuffers;r.mapState==="unmapped"&&r.mapAsync(GPUMapMode.READ).then(()=>{const s=new BigUint64Array(r.getMappedRange()),a=Number(s[1]-s[0])/1e6;this.renderer.info.updateTimestamp(t,a),r.unmap()})}createNodeBuilder(e,t){return new Qoe(e,t)}createProgram(e){const t=this.get(e);t.module={module:this.device.createShaderModule({code:e.code,label:e.stage+(e.name!==""?`_${e.name}`:"")}),entryPoint:"main"}}destroyProgram(e){this.delete(e)}createRenderPipeline(e,t){this.pipelineUtils.createRenderPipeline(e,t)}createComputePipeline(e,t){this.pipelineUtils.createComputePipeline(e,t)}beginBundle(e){const t=this.get(e);t._currentPass=t.currentPass,t._currentSets=t.currentSets,t.currentSets={attributes:{},bindingGroups:[],pipeline:null,index:null},t.currentPass=this.pipelineUtils.createBundleEncoder(e)}finishBundle(e,t){const n=this.get(e),s=n.currentPass.finish();this.get(t).bundleGPU=s,n.currentSets=n._currentSets,n.currentPass=n._currentPass}addBundle(e,t){this.get(e).renderBundles.push(this.get(t).bundleGPU)}createBindings(e,t,n,r){this.bindingUtils.createBindings(e,t,n,r)}updateBindings(e,t,n,r){this.bindingUtils.createBindings(e,t,n,r)}updateBinding(e){this.bindingUtils.updateBinding(e)}createIndexAttribute(e){this.attributeUtils.createAttribute(e,GPUBufferUsage.INDEX|GPUBufferUsage.COPY_SRC|GPUBufferUsage.COPY_DST)}createAttribute(e){this.attributeUtils.createAttribute(e,GPUBufferUsage.VERTEX|GPUBufferUsage.COPY_SRC|GPUBufferUsage.COPY_DST)}createStorageAttribute(e){this.attributeUtils.createAttribute(e,GPUBufferUsage.STORAGE|GPUBufferUsage.VERTEX|GPUBufferUsage.COPY_SRC|GPUBufferUsage.COPY_DST)}createIndirectStorageAttribute(e){this.attributeUtils.createAttribute(e,GPUBufferUsage.STORAGE|GPUBufferUsage.INDIRECT|GPUBufferUsage.COPY_SRC|GPUBufferUsage.COPY_DST)}updateAttribute(e){this.attributeUtils.updateAttribute(e)}destroyAttribute(e){this.attributeUtils.destroyAttribute(e)}updateSize(){this.colorBuffer=this.textureUtils.getColorBuffer(),this.defaultRenderPassdescriptor=null}getMaxAnisotropy(){return 16}hasFeature(e){return this.device.features.has(e)}copyTextureToTexture(e,t,n=null,r=null,s=0){let a=0,l=0,u=0,h=0,m=0,v=0,x=e.image.width,S=e.image.height;n!==null&&(h=n.x,m=n.y,v=n.z||0,x=n.width,S=n.height),r!==null&&(a=r.x,l=r.y,u=r.z||0);const w=this.device.createCommandEncoder({label:"copyTextureToTexture_"+e.id+"_"+t.id}),R=this.get(e).texture,C=this.get(t).texture;w.copyTextureToTexture({texture:R,mipLevel:s,origin:{x:h,y:m,z:v}},{texture:C,mipLevel:s,origin:{x:a,y:l,z:u}},[x,S,1]),this.device.queue.submit([w.finish()])}copyFramebufferToTexture(e,t,n){const r=this.get(t);let s=null;t.renderTarget?e.isDepthTexture?s=this.get(t.depthTexture).texture:s=this.get(t.textures[0]).texture:e.isDepthTexture?s=this.textureUtils.getDepthBuffer(t.depth,t.stencil):s=this.context.getCurrentTexture();const a=this.get(e).texture;if(s.format!==a.format){console.error("WebGPUBackend: copyFramebufferToTexture: Source and destination formats do not match.",s.format,a.format);return}let l;if(r.currentPass?(r.currentPass.end(),l=r.encoder):l=this.device.createCommandEncoder({label:"copyFramebufferToTexture_"+e.id}),l.copyTextureToTexture({texture:s,origin:[n.x,n.y,0]},{texture:a},[n.z,n.w]),e.generateMipmaps&&this.textureUtils.generateMipmaps(e),r.currentPass){const{descriptor:u}=r;for(let h=0;h(console.warn("THREE.WebGPURenderer: WebGPU is not available, running under WebGL2 backend."),new CN(e)));const n=new t(e);super(n,e),this.library=new ale,this.isWebGPURenderer=!0}}/** + * @license + * Copyright 2010-2024 Three.js Authors + * SPDX-License-Identifier: MIT + */W.BRDF_GGX;W.BRDF_Lambert;W.BasicShadowFilter;W.Break;W.Continue;W.DFGApprox;W.D_GGX;W.Discard;W.EPSILON;W.F_Schlick;const ole=W.Fn;W.INFINITY;const lle=W.If,ule=W.Loop;W.NodeShaderStage;W.NodeType;W.NodeUpdateType;W.NodeAccess;W.PCFShadowFilter;W.PCFSoftShadowFilter;W.PI;W.PI2;W.Return;W.Schlick_to_F0;W.ScriptableNodeResources;W.ShaderNode;W.TBNViewMatrix;W.VSMShadowFilter;W.V_GGX_SmithCorrelated;W.abs;W.acesFilmicToneMapping;W.acos;W.add;W.addNodeElement;W.agxToneMapping;W.all;W.alphaT;W.and;W.anisotropy;W.anisotropyB;W.anisotropyT;W.any;W.append;W.arrayBuffer;const cle=W.asin;W.assign;W.atan;W.atan2;W.atomicAdd;W.atomicAnd;W.atomicFunc;W.atomicMax;W.atomicMin;W.atomicOr;W.atomicStore;W.atomicSub;W.atomicXor;W.attenuationColor;W.attenuationDistance;W.attribute;W.attributeArray;W.backgroundBlurriness;W.backgroundIntensity;W.backgroundRotation;W.batch;W.billboarding;W.bitAnd;W.bitNot;W.bitOr;W.bitXor;W.bitangentGeometry;W.bitangentLocal;W.bitangentView;W.bitangentWorld;W.bitcast;W.blendBurn;W.blendColor;W.blendDodge;W.blendOverlay;W.blendScreen;W.blur;W.bool;W.buffer;W.bufferAttribute;W.bumpMap;W.burn;W.bvec2;W.bvec3;W.bvec4;W.bypass;W.cache;W.call;W.cameraFar;W.cameraNear;W.cameraNormalMatrix;W.cameraPosition;W.cameraProjectionMatrix;W.cameraProjectionMatrixInverse;W.cameraViewMatrix;W.cameraWorldMatrix;W.cbrt;W.cdl;W.ceil;W.checker;W.cineonToneMapping;W.clamp;W.clearcoat;W.clearcoatRoughness;W.code;W.color;W.colorSpaceToWorking;W.colorToDirection;W.compute;W.cond;W.context;W.convert;W.convertColorSpace;W.convertToTexture;const hle=W.cos;W.cross;W.cubeTexture;W.dFdx;W.dFdy;W.dashSize;W.defaultBuildStages;W.defaultShaderStages;W.defined;W.degrees;W.deltaTime;W.densityFog;W.densityFogFactor;W.depth;W.depthPass;W.difference;W.diffuseColor;W.directPointLight;W.directionToColor;W.dispersion;W.distance;W.div;W.dodge;W.dot;W.drawIndex;W.dynamicBufferAttribute;W.element;W.emissive;W.equal;W.equals;W.equirectUV;const fle=W.exp;W.exp2;W.expression;W.faceDirection;W.faceForward;W.faceforward;const Ale=W.float;W.floor;W.fog;W.fract;W.frameGroup;W.frameId;W.frontFacing;W.fwidth;W.gain;W.gapSize;W.getConstNodeType;W.getCurrentStack;W.getDirection;W.getDistanceAttenuation;W.getGeometryRoughness;W.getNormalFromDepth;W.getParallaxCorrectNormal;W.getRoughness;W.getScreenPosition;W.getShIrradianceAt;W.getTextureIndex;W.getViewPosition;W.glsl;W.glslFn;W.grayscale;W.greaterThan;W.greaterThanEqual;W.hash;W.highpModelNormalViewMatrix;W.highpModelViewMatrix;W.hue;W.instance;const dle=W.instanceIndex;W.instancedArray;W.instancedBufferAttribute;W.instancedDynamicBufferAttribute;W.instancedMesh;W.int;W.inverseSqrt;W.inversesqrt;W.invocationLocalIndex;W.invocationSubgroupIndex;W.ior;W.iridescence;W.iridescenceIOR;W.iridescenceThickness;W.ivec2;W.ivec3;W.ivec4;W.js;W.label;W.length;W.lengthSq;W.lessThan;W.lessThanEqual;W.lightPosition;W.lightTargetDirection;W.lightTargetPosition;W.lightViewPosition;W.lightingContext;W.lights;W.linearDepth;W.linearToneMapping;W.localId;W.log;W.log2;W.logarithmicDepthToViewZ;W.loop;W.luminance;W.mediumpModelViewMatrix;W.mat2;W.mat3;W.mat4;W.matcapUV;W.materialAO;W.materialAlphaTest;W.materialAnisotropy;W.materialAnisotropyVector;W.materialAttenuationColor;W.materialAttenuationDistance;W.materialClearcoat;W.materialClearcoatNormal;W.materialClearcoatRoughness;W.materialColor;W.materialDispersion;W.materialEmissive;W.materialIOR;W.materialIridescence;W.materialIridescenceIOR;W.materialIridescenceThickness;W.materialLightMap;W.materialLineDashOffset;W.materialLineDashSize;W.materialLineGapSize;W.materialLineScale;W.materialLineWidth;W.materialMetalness;W.materialNormal;W.materialOpacity;W.materialPointWidth;W.materialReference;W.materialReflectivity;W.materialRefractionRatio;W.materialRotation;W.materialRoughness;W.materialSheen;W.materialSheenRoughness;W.materialShininess;W.materialSpecular;W.materialSpecularColor;W.materialSpecularIntensity;W.materialSpecularStrength;W.materialThickness;W.materialTransmission;W.max;W.maxMipLevel;W.metalness;W.min;W.mix;W.mixElement;W.mod;W.modInt;W.modelDirection;W.modelNormalMatrix;W.modelPosition;W.modelScale;W.modelViewMatrix;W.modelViewPosition;W.modelViewProjection;W.modelWorldMatrix;W.modelWorldMatrixInverse;W.morphReference;W.mrt;W.mul;W.mx_aastep;W.mx_cell_noise_float;W.mx_contrast;W.mx_fractal_noise_float;W.mx_fractal_noise_vec2;W.mx_fractal_noise_vec3;W.mx_fractal_noise_vec4;W.mx_hsvtorgb;W.mx_noise_float;W.mx_noise_vec3;W.mx_noise_vec4;W.mx_ramplr;W.mx_ramptb;W.mx_rgbtohsv;W.mx_safepower;W.mx_splitlr;W.mx_splittb;W.mx_srgb_texture_to_lin_rec709;W.mx_transform_uv;W.mx_worley_noise_float;W.mx_worley_noise_vec2;W.mx_worley_noise_vec3;const ple=W.negate;W.neutralToneMapping;W.nodeArray;W.nodeImmutable;W.nodeObject;W.nodeObjects;W.nodeProxy;W.normalFlat;W.normalGeometry;W.normalLocal;W.normalMap;W.normalView;W.normalWorld;W.normalize;W.not;W.notEqual;W.numWorkgroups;W.objectDirection;W.objectGroup;W.objectPosition;W.objectScale;W.objectViewPosition;W.objectWorldMatrix;W.oneMinus;W.or;W.orthographicDepthToViewZ;W.oscSawtooth;W.oscSine;W.oscSquare;W.oscTriangle;W.output;W.outputStruct;W.overlay;W.overloadingFn;W.parabola;W.parallaxDirection;W.parallaxUV;W.parameter;W.pass;W.passTexture;W.pcurve;W.perspectiveDepthToViewZ;W.pmremTexture;W.pointUV;W.pointWidth;W.positionGeometry;W.positionLocal;W.positionPrevious;W.positionView;W.positionViewDirection;W.positionWorld;W.positionWorldDirection;W.posterize;W.pow;W.pow2;W.pow3;W.pow4;W.property;W.radians;W.rand;W.range;W.rangeFog;W.rangeFogFactor;W.reciprocal;W.reference;W.referenceBuffer;W.reflect;W.reflectVector;W.reflectView;W.reflector;W.refract;W.refractVector;W.refractView;W.reinhardToneMapping;W.remainder;W.remap;W.remapClamp;W.renderGroup;W.renderOutput;W.rendererReference;W.rotate;W.rotateUV;W.roughness;W.round;W.rtt;W.sRGBTransferEOTF;W.sRGBTransferOETF;W.sampler;W.saturate;W.saturation;W.screen;W.screenCoordinate;W.screenSize;W.screenUV;W.scriptable;W.scriptableValue;W.select;W.setCurrentStack;W.shaderStages;W.shadow;W.shadowPositionWorld;W.sharedUniformGroup;W.sheen;W.sheenRoughness;W.shiftLeft;W.shiftRight;W.shininess;W.sign;const mle=W.sin;W.sinc;W.skinning;W.skinningReference;W.smoothstep;W.smoothstepElement;W.specularColor;W.specularF90;W.spherizeUV;W.split;W.spritesheetUV;const gle=W.sqrt;W.stack;W.step;const vle=W.storage;W.storageBarrier;W.storageObject;W.storageTexture;W.string;W.sub;W.subgroupIndex;W.subgroupSize;W.tan;W.tangentGeometry;W.tangentLocal;W.tangentView;W.tangentWorld;W.temp;W.texture;W.texture3D;W.textureBarrier;W.textureBicubic;W.textureCubeUV;W.textureLoad;W.textureSize;W.textureStore;W.thickness;W.threshold;W.time;W.timerDelta;W.timerGlobal;W.timerLocal;W.toOutputColorSpace;W.toWorkingColorSpace;W.toneMapping;W.toneMappingExposure;W.toonOutlinePass;W.transformDirection;W.transformNormal;W.transformNormalToView;W.transformedBentNormalView;W.transformedBitangentView;W.transformedBitangentWorld;W.transformedClearcoatNormalView;W.transformedNormalView;W.transformedNormalWorld;W.transformedTangentView;W.transformedTangentWorld;W.transmission;W.transpose;W.tri;W.tri3;W.triNoise3D;W.triplanarTexture;W.triplanarTextures;W.trunc;W.tslFn;W.uint;const _le=W.uniform;W.uniformArray;W.uniformGroup;W.uniforms;W.userData;W.uv;W.uvec2;W.uvec3;W.uvec4;W.varying;W.varyingProperty;W.vec2;W.vec3;W.vec4;W.vectorComponents;W.velocity;W.vertexColor;W.vertexIndex;W.vibrance;W.viewZToLogarithmicDepth;W.viewZToOrthographicDepth;W.viewZToPerspectiveDepth;W.viewport;W.viewportBottomLeft;W.viewportCoordinate;W.viewportDepthTexture;W.viewportLinearDepth;W.viewportMipTexture;W.viewportResolution;W.viewportSafeUV;W.viewportSharedTexture;W.viewportSize;W.viewportTexture;W.viewportTopLeft;W.viewportUV;W.wgsl;W.wgslFn;W.workgroupArray;W.workgroupBarrier;W.workgroupId;W.workingToColorSpace;W.xor;const BN=new Gc,wv=new Ae;class oO extends $z{constructor(){super(),this.isLineSegmentsGeometry=!0,this.type="LineSegmentsGeometry";const e=[-1,2,0,1,2,0,-1,1,0,1,1,0,-1,0,0,1,0,0,-1,-1,0,1,-1,0],t=[-1,2,1,2,-1,1,1,1,-1,-1,1,-1,-1,-2,1,-2],n=[0,2,1,2,3,1,2,4,3,4,5,3,4,6,5,6,7,5];this.setIndex(n),this.setAttribute("position",new Mi(e,3)),this.setAttribute("uv",new Mi(t,2))}applyMatrix4(e){const t=this.attributes.instanceStart,n=this.attributes.instanceEnd;return t!==void 0&&(t.applyMatrix4(e),n.applyMatrix4(e),t.needsUpdate=!0),this.boundingBox!==null&&this.computeBoundingBox(),this.boundingSphere!==null&&this.computeBoundingSphere(),this}setPositions(e){let t;e instanceof Float32Array?t=e:Array.isArray(e)&&(t=new Float32Array(e));const n=new h_(t,6,1);return this.setAttribute("instanceStart",new nu(n,3,0)),this.setAttribute("instanceEnd",new nu(n,3,3)),this.instanceCount=this.attributes.instanceStart.count,this.computeBoundingBox(),this.computeBoundingSphere(),this}setColors(e){let t;e instanceof Float32Array?t=e:Array.isArray(e)&&(t=new Float32Array(e));const n=new h_(t,6,1);return this.setAttribute("instanceColorStart",new nu(n,3,0)),this.setAttribute("instanceColorEnd",new nu(n,3,3)),this}fromWireframeGeometry(e){return this.setPositions(e.attributes.position.array),this}fromEdgesGeometry(e){return this.setPositions(e.attributes.position.array),this}fromMesh(e){return this.fromWireframeGeometry(new Ez(e.geometry)),this}fromLineSegments(e){const t=e.geometry;return this.setPositions(t.attributes.position.array),this}computeBoundingBox(){this.boundingBox===null&&(this.boundingBox=new Gc);const e=this.attributes.instanceStart,t=this.attributes.instanceEnd;e!==void 0&&t!==void 0&&(this.boundingBox.setFromBufferAttribute(e),BN.setFromBufferAttribute(t),this.boundingBox.union(BN))}computeBoundingSphere(){this.boundingSphere===null&&(this.boundingSphere=new dA),this.boundingBox===null&&this.computeBoundingBox();const e=this.attributes.instanceStart,t=this.attributes.instanceEnd;if(e!==void 0&&t!==void 0){const n=this.boundingSphere.center;this.boundingBox.getCenter(n);let r=0;for(let s=0,a=e.count;s + #include + #include + #include + #include + + uniform float linewidth; + uniform vec2 resolution; + + attribute vec3 instanceStart; + attribute vec3 instanceEnd; + + attribute vec3 instanceColorStart; + attribute vec3 instanceColorEnd; + + #ifdef WORLD_UNITS + + varying vec4 worldPos; + varying vec3 worldStart; + varying vec3 worldEnd; + + #ifdef USE_DASH + + varying vec2 vUv; + + #endif + + #else + + varying vec2 vUv; + + #endif + + #ifdef USE_DASH + + uniform float dashScale; + attribute float instanceDistanceStart; + attribute float instanceDistanceEnd; + varying float vLineDistance; + + #endif + + void trimSegment( const in vec4 start, inout vec4 end ) { + + // trim end segment so it terminates between the camera plane and the near plane + + // conservative estimate of the near plane + float a = projectionMatrix[ 2 ][ 2 ]; // 3nd entry in 3th column + float b = projectionMatrix[ 3 ][ 2 ]; // 3nd entry in 4th column + float nearEstimate = - 0.5 * b / a; + + float alpha = ( nearEstimate - start.z ) / ( end.z - start.z ); + + end.xyz = mix( start.xyz, end.xyz, alpha ); + + } + + void main() { + + #ifdef USE_COLOR + + vColor.xyz = ( position.y < 0.5 ) ? instanceColorStart : instanceColorEnd; + + #endif + + #ifdef USE_DASH + + vLineDistance = ( position.y < 0.5 ) ? dashScale * instanceDistanceStart : dashScale * instanceDistanceEnd; + vUv = uv; + + #endif + + float aspect = resolution.x / resolution.y; + + // camera space + vec4 start = modelViewMatrix * vec4( instanceStart, 1.0 ); + vec4 end = modelViewMatrix * vec4( instanceEnd, 1.0 ); + + #ifdef WORLD_UNITS + + worldStart = start.xyz; + worldEnd = end.xyz; + + #else + + vUv = uv; + + #endif + + // special case for perspective projection, and segments that terminate either in, or behind, the camera plane + // clearly the gpu firmware has a way of addressing this issue when projecting into ndc space + // but we need to perform ndc-space calculations in the shader, so we must address this issue directly + // perhaps there is a more elegant solution -- WestLangley + + bool perspective = ( projectionMatrix[ 2 ][ 3 ] == - 1.0 ); // 4th entry in the 3rd column + + if ( perspective ) { + + if ( start.z < 0.0 && end.z >= 0.0 ) { + + trimSegment( start, end ); + + } else if ( end.z < 0.0 && start.z >= 0.0 ) { + + trimSegment( end, start ); + + } + + } + + // clip space + vec4 clipStart = projectionMatrix * start; + vec4 clipEnd = projectionMatrix * end; + + // ndc space + vec3 ndcStart = clipStart.xyz / clipStart.w; + vec3 ndcEnd = clipEnd.xyz / clipEnd.w; + + // direction + vec2 dir = ndcEnd.xy - ndcStart.xy; + + // account for clip-space aspect ratio + dir.x *= aspect; + dir = normalize( dir ); + + #ifdef WORLD_UNITS + + vec3 worldDir = normalize( end.xyz - start.xyz ); + vec3 tmpFwd = normalize( mix( start.xyz, end.xyz, 0.5 ) ); + vec3 worldUp = normalize( cross( worldDir, tmpFwd ) ); + vec3 worldFwd = cross( worldDir, worldUp ); + worldPos = position.y < 0.5 ? start: end; + + // height offset + float hw = linewidth * 0.5; + worldPos.xyz += position.x < 0.0 ? hw * worldUp : - hw * worldUp; + + // don't extend the line if we're rendering dashes because we + // won't be rendering the endcaps + #ifndef USE_DASH + + // cap extension + worldPos.xyz += position.y < 0.5 ? - hw * worldDir : hw * worldDir; + + // add width to the box + worldPos.xyz += worldFwd * hw; + + // endcaps + if ( position.y > 1.0 || position.y < 0.0 ) { + + worldPos.xyz -= worldFwd * 2.0 * hw; + + } + + #endif + + // project the worldpos + vec4 clip = projectionMatrix * worldPos; + + // shift the depth of the projected points so the line + // segments overlap neatly + vec3 clipPose = ( position.y < 0.5 ) ? ndcStart : ndcEnd; + clip.z = clipPose.z * clip.w; + + #else + + vec2 offset = vec2( dir.y, - dir.x ); + // undo aspect ratio adjustment + dir.x /= aspect; + offset.x /= aspect; + + // sign flip + if ( position.x < 0.0 ) offset *= - 1.0; + + // endcaps + if ( position.y < 0.0 ) { + + offset += - dir; + + } else if ( position.y > 1.0 ) { + + offset += dir; + + } + + // adjust for linewidth + offset *= linewidth; + + // adjust for clip-space to screen-space conversion // maybe resolution should be based on viewport ... + offset /= resolution.y; + + // select end + vec4 clip = ( position.y < 0.5 ) ? clipStart : clipEnd; + + // back to clip space + offset *= clip.w; + + clip.xy += offset; + + #endif + + gl_Position = clip; + + vec4 mvPosition = ( position.y < 0.5 ) ? start : end; // this is an approximation + + #include + #include + #include + + } + `,fragmentShader:` + uniform vec3 diffuse; + uniform float opacity; + uniform float linewidth; + + #ifdef USE_DASH + + uniform float dashOffset; + uniform float dashSize; + uniform float gapSize; + + #endif + + varying float vLineDistance; + + #ifdef WORLD_UNITS + + varying vec4 worldPos; + varying vec3 worldStart; + varying vec3 worldEnd; + + #ifdef USE_DASH + + varying vec2 vUv; + + #endif + + #else + + varying vec2 vUv; + + #endif + + #include + #include + #include + #include + #include + + vec2 closestLineToLine(vec3 p1, vec3 p2, vec3 p3, vec3 p4) { + + float mua; + float mub; + + vec3 p13 = p1 - p3; + vec3 p43 = p4 - p3; + + vec3 p21 = p2 - p1; + + float d1343 = dot( p13, p43 ); + float d4321 = dot( p43, p21 ); + float d1321 = dot( p13, p21 ); + float d4343 = dot( p43, p43 ); + float d2121 = dot( p21, p21 ); + + float denom = d2121 * d4343 - d4321 * d4321; + + float numer = d1343 * d4321 - d1321 * d4343; + + mua = numer / denom; + mua = clamp( mua, 0.0, 1.0 ); + mub = ( d1343 + d4321 * ( mua ) ) / d4343; + mub = clamp( mub, 0.0, 1.0 ); + + return vec2( mua, mub ); + + } + + void main() { + + #include + + #ifdef USE_DASH + + if ( vUv.y < - 1.0 || vUv.y > 1.0 ) discard; // discard endcaps + + if ( mod( vLineDistance + dashOffset, dashSize + gapSize ) > dashSize ) discard; // todo - FIX + + #endif + + float alpha = opacity; + + #ifdef WORLD_UNITS + + // Find the closest points on the view ray and the line segment + vec3 rayEnd = normalize( worldPos.xyz ) * 1e5; + vec3 lineDir = worldEnd - worldStart; + vec2 params = closestLineToLine( worldStart, worldEnd, vec3( 0.0, 0.0, 0.0 ), rayEnd ); + + vec3 p1 = worldStart + lineDir * params.x; + vec3 p2 = rayEnd * params.y; + vec3 delta = p1 - p2; + float len = length( delta ); + float norm = len / linewidth; + + #ifndef USE_DASH + + #ifdef USE_ALPHA_TO_COVERAGE + + float dnorm = fwidth( norm ); + alpha = 1.0 - smoothstep( 0.5 - dnorm, 0.5 + dnorm, norm ); + + #else + + if ( norm > 0.5 ) { + + discard; + + } + + #endif + + #endif + + #else + + #ifdef USE_ALPHA_TO_COVERAGE + + // artifacts appear on some hardware if a derivative is taken within a conditional + float a = vUv.x; + float b = ( vUv.y > 0.0 ) ? vUv.y - 1.0 : vUv.y + 1.0; + float len2 = a * a + b * b; + float dlen = fwidth( len2 ); + + if ( abs( vUv.y ) > 1.0 ) { + + alpha = 1.0 - smoothstep( 1.0 - dlen, 1.0 + dlen, len2 ); + + } + + #else + + if ( abs( vUv.y ) > 1.0 ) { + + float a = vUv.x; + float b = ( vUv.y > 0.0 ) ? vUv.y - 1.0 : vUv.y + 1.0; + float len2 = a * a + b * b; + + if ( len2 > 1.0 ) discard; + + } + + #endif + + #endif + + vec4 diffuseColor = vec4( diffuse, alpha ); + + #include + #include + + gl_FragColor = vec4( diffuseColor.rgb, alpha ); + + #include + #include + #include + #include + + } + `};class qE extends Ja{constructor(e){super({type:"LineMaterial",uniforms:vy.clone(Ga.line.uniforms),vertexShader:Ga.line.vertexShader,fragmentShader:Ga.line.fragmentShader,clipping:!0}),this.isLineMaterial=!0,this.setValues(e)}get color(){return this.uniforms.diffuse.value}set color(e){this.uniforms.diffuse.value=e}get worldUnits(){return"WORLD_UNITS"in this.defines}set worldUnits(e){e===!0?this.defines.WORLD_UNITS="":delete this.defines.WORLD_UNITS}get linewidth(){return this.uniforms.linewidth.value}set linewidth(e){this.uniforms.linewidth&&(this.uniforms.linewidth.value=e)}get dashed(){return"USE_DASH"in this.defines}set dashed(e){e===!0!==this.dashed&&(this.needsUpdate=!0),e===!0?this.defines.USE_DASH="":delete this.defines.USE_DASH}get dashScale(){return this.uniforms.dashScale.value}set dashScale(e){this.uniforms.dashScale.value=e}get dashSize(){return this.uniforms.dashSize.value}set dashSize(e){this.uniforms.dashSize.value=e}get dashOffset(){return this.uniforms.dashOffset.value}set dashOffset(e){this.uniforms.dashOffset.value=e}get gapSize(){return this.uniforms.gapSize.value}set gapSize(e){this.uniforms.gapSize.value=e}get opacity(){return this.uniforms.opacity.value}set opacity(e){this.uniforms&&(this.uniforms.opacity.value=e)}get resolution(){return this.uniforms.resolution.value}set resolution(e){this.uniforms.resolution.value.copy(e)}get alphaToCoverage(){return"USE_ALPHA_TO_COVERAGE"in this.defines}set alphaToCoverage(e){this.defines&&(e===!0!==this.alphaToCoverage&&(this.needsUpdate=!0),e===!0?this.defines.USE_ALPHA_TO_COVERAGE="":delete this.defines.USE_ALPHA_TO_COVERAGE)}}const ES=new Ln,ON=new Ae,IN=new Ae,Os=new Ln,Is=new Ln,jl=new Ln,CS=new Ae,RS=new kn,Fs=new Qz,FN=new Ae,Mv=new Gc,Ev=new dA,Wl=new Ln;let Jl,rA;function kN(i,e,t){return Wl.set(0,0,-e,1).applyMatrix4(i.projectionMatrix),Wl.multiplyScalar(1/Wl.w),Wl.x=rA/t.width,Wl.y=rA/t.height,Wl.applyMatrix4(i.projectionMatrixInverse),Wl.multiplyScalar(1/Wl.w),Math.abs(Math.max(Wl.x,Wl.y))}function yle(i,e){const t=i.matrixWorld,n=i.geometry,r=n.attributes.instanceStart,s=n.attributes.instanceEnd,a=Math.min(n.instanceCount,r.count);for(let l=0,u=a;lv&&Is.z>v)continue;if(Os.z>v){const L=Os.z-Is.z,O=(Os.z-v)/L;Os.lerp(Is,O)}else if(Is.z>v){const L=Is.z-Os.z,O=(Is.z-v)/L;Is.lerp(Os,O)}Os.applyMatrix4(n),Is.applyMatrix4(n),Os.multiplyScalar(1/Os.w),Is.multiplyScalar(1/Is.w),Os.x*=s.x/2,Os.y*=s.y/2,Is.x*=s.x/2,Is.y*=s.y/2,Fs.start.copy(Os),Fs.start.z=0,Fs.end.copy(Is),Fs.end.z=0;const R=Fs.closestPointToPointParameter(CS,!0);Fs.at(R,FN);const C=M0.lerp(Os.z,Is.z,R),E=C>=-1&&C<=1,B=CS.distanceTo(FN)i.length)&&(e=i.length);for(var t=0,n=Array(e);t3?(Q=we===te)&&(j=ue[(z=ue[4])?5:(z=3,3)],ue[4]=ue[5]=i):ue[0]<=he&&((Q=oe<2&&hete||te>we)&&(ue[4]=oe,ue[5]=te,J.n=we,z=0))}if(Q||oe>1)return a;throw Y=!0,te}return function(oe,te,Q){if(F>1)throw TypeError("Generator is already running");for(Y&&te===1&&ne(te,Q),z=te,j=Q;(e=z<2?i:j)||!Y;){q||(z?z<3?(z>1&&(J.n=-1),ne(z,j)):J.n=j:J.v=j);try{if(F=2,q){if(z||(oe="next"),e=q[oe]){if(!(e=e.call(q,j)))throw TypeError("iterator result is not an object");if(!e.done)return e;j=e.value,z<2&&(z=0)}else z===1&&(e=q.return)&&e.call(q),z<2&&(j=TypeError("The iterator does not provide a '"+oe+"' method"),z=1);q=i}else if((e=(Y=J.n<0)?j:L.call(O,J))!==a)break}catch(ue){q=i,z=1,j=ue}finally{F=1}}return{value:e,done:Y}}})(S,R,C),!0),B}var a={};function l(){}function u(){}function h(){}e=Object.getPrototypeOf;var m=[][n]?e(e([][n]())):(yo(e={},n,function(){return this}),e),v=h.prototype=l.prototype=Object.create(m);function x(S){return Object.setPrototypeOf?Object.setPrototypeOf(S,h):(S.__proto__=h,yo(S,r,"GeneratorFunction")),S.prototype=Object.create(v),S}return u.prototype=h,yo(v,"constructor",h),yo(h,"constructor",u),u.displayName="GeneratorFunction",yo(h,r,"GeneratorFunction"),yo(v),yo(v,r,"Generator"),yo(v,n,function(){return this}),yo(v,"toString",function(){return"[object Generator]"}),(aw=function(){return{w:s,m:x}})()}function yo(i,e,t,n){var r=Object.defineProperty;try{r({},"",{})}catch{r=0}yo=function(s,a,l,u){function h(m,v){yo(s,m,function(x){return this._invoke(m,v,x)})}a?r?r(s,a,{value:l,enumerable:!u,configurable:!u,writable:!u}):s[a]=l:(h("next",0),h("throw",1),h("return",2))},yo(i,e,t,n)}function ow(i,e){return ow=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,n){return t.__proto__=n,t},ow(i,e)}function gr(i,e){return Ele(i)||Ule(i,e)||hO(i,e)||Ble()}function zle(i,e){for(;!{}.hasOwnProperty.call(i,e)&&(i=z0(i))!==null;);return i}function PS(i,e,t,n){var r=sw(z0(i.prototype),e,t);return typeof r=="function"?function(s){return r.apply(t,s)}:r}function Qi(i){return Cle(i)||Lle(i)||hO(i)||Ole()}function Gle(i,e){if(typeof i!="object"||!i)return i;var t=i[Symbol.toPrimitive];if(t!==void 0){var n=t.call(i,e);if(typeof n!="object")return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return(e==="string"?String:Number)(i)}function cO(i){var e=Gle(i,"string");return typeof e=="symbol"?e:e+""}function hO(i,e){if(i){if(typeof i=="string")return rw(i,e);var t={}.toString.call(i).slice(8,-1);return t==="Object"&&i.constructor&&(t=i.constructor.name),t==="Map"||t==="Set"?Array.from(i):t==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t)?rw(i,e):void 0}}var fO=function(e){e instanceof Array?e.forEach(fO):(e.map&&e.map.dispose(),e.dispose())},jE=function(e){e.geometry&&e.geometry.dispose(),e.material&&fO(e.material),e.texture&&e.texture.dispose(),e.children&&e.children.forEach(jE)},nr=function(e){if(e&&e.children)for(;e.children.length;){var t=e.children[0];e.remove(t),jE(t)}};function wa(i,e){var t=new e;return{linkProp:function(r){return{default:t[r](),onChange:function(a,l){l[i][r](a)},triggerUpdate:!1}},linkMethod:function(r){return function(s){for(var a=s[i],l=arguments.length,u=new Array(l>1?l-1:0),h=1;h2&&arguments[2]!==void 0?arguments[2]:0,n=(90-i)*Math.PI/180,r=(90-e)*Math.PI/180,s=cr*(1+t),a=Math.sin(n);return{x:s*a*Math.cos(r),y:s*Math.cos(n),z:s*a*Math.sin(r)}}function AO(i){var e=i.x,t=i.y,n=i.z,r=Math.sqrt(e*e+t*t+n*n),s=Math.acos(t/r),a=Math.atan2(n,e);return{lat:90-s*180/Math.PI,lng:90-a*180/Math.PI-(a<-Math.PI/2?360:0),altitude:r/cr-1}}function Vf(i){return i*Math.PI/180}var Dg=window.THREE?window.THREE:{BackSide:hr,BufferAttribute:wr,Color:an,Mesh:zi,ShaderMaterial:Ja},qle=` +uniform float hollowRadius; + +varying vec3 vVertexWorldPosition; +varying vec3 vVertexNormal; +varying float vCameraDistanceToObjCenter; +varying float vVertexAngularDistanceToHollowRadius; + +void main() { + vVertexNormal = normalize(normalMatrix * normal); + vVertexWorldPosition = (modelMatrix * vec4(position, 1.0)).xyz; + + vec4 objCenterViewPosition = modelViewMatrix * vec4(0.0, 0.0, 0.0, 1.0); + vCameraDistanceToObjCenter = length(objCenterViewPosition); + + float edgeAngle = atan(hollowRadius / vCameraDistanceToObjCenter); + float vertexAngle = acos(dot(normalize(modelViewMatrix * vec4(position, 1.0)), normalize(objCenterViewPosition))); + vVertexAngularDistanceToHollowRadius = vertexAngle - edgeAngle; + + gl_Position = projectionMatrix * modelViewMatrix * vec4(position, 1.0); +}`,Vle=` +uniform vec3 color; +uniform float coefficient; +uniform float power; +uniform float hollowRadius; + +varying vec3 vVertexNormal; +varying vec3 vVertexWorldPosition; +varying float vCameraDistanceToObjCenter; +varying float vVertexAngularDistanceToHollowRadius; + +void main() { + if (vCameraDistanceToObjCenter < hollowRadius) discard; // inside the hollowRadius + if (vVertexAngularDistanceToHollowRadius < 0.0) discard; // frag position is within the hollow radius + + vec3 worldCameraToVertex = vVertexWorldPosition - cameraPosition; + vec3 viewCameraToVertex = (viewMatrix * vec4(worldCameraToVertex, 0.0)).xyz; + viewCameraToVertex = normalize(viewCameraToVertex); + float intensity = pow( + coefficient + dot(vVertexNormal, viewCameraToVertex), + power + ); + gl_FragColor = vec4(color, intensity); +}`;function Hle(i,e,t,n){return new Dg.ShaderMaterial({depthWrite:!1,transparent:!0,vertexShader:qle,fragmentShader:Vle,uniforms:{coefficient:{value:i},color:{value:new Dg.Color(e)},power:{value:t},hollowRadius:{value:n}}})}function jle(i,e){for(var t=i.clone(),n=new Float32Array(i.attributes.position.count*3),r=0,s=n.length;r1&&arguments[1]!==void 0?arguments[1]:{},s=r.color,a=s===void 0?"gold":s,l=r.size,u=l===void 0?2:l,h=r.coefficient,m=h===void 0?.5:h,v=r.power,x=v===void 0?1:v,S=r.hollowRadius,w=S===void 0?0:S,R=r.backside,C=R===void 0?!0:R;nx(this,e),n=tx(this,e);var E=jle(t,u),B=Hle(m,a,x,w);return C&&(B.side=Dg.BackSide),n.geometry=E,n.material=B,n}return rx(e,i),ix(e)})(Dg.Mesh),$l=window.THREE?window.THREE:{Color:an,Group:ja,LineBasicMaterial:$0,LineSegments:j7,Mesh:zi,MeshPhongMaterial:iD,SphereGeometry:Eu,SRGBColorSpace:_n,TextureLoader:rM},dO=xs({props:{globeImageUrl:{},bumpImageUrl:{},showGlobe:{default:!0,onChange:function(e,t){t.globeGroup.visible=!!e},triggerUpdate:!1},showGraticules:{default:!1,onChange:function(e,t){t.graticulesObj.visible=!!e},triggerUpdate:!1},showAtmosphere:{default:!0,onChange:function(e,t){t.atmosphereObj&&(t.atmosphereObj.visible=!!e)},triggerUpdate:!1},atmosphereColor:{default:"lightskyblue"},atmosphereAltitude:{default:.15},globeCurvatureResolution:{default:4},globeTileEngineUrl:{onChange:function(e,t){t.tileEngine.tileUrl=e}},globeTileEngineMaxLevel:{default:17,onChange:function(e,t){t.tileEngine.maxLevel=e},triggerUpdate:!1},updatePov:{onChange:function(e,t){t.tileEngine.updatePov(e)},triggerUpdate:!1},onReady:{default:function(){},triggerUpdate:!1}},methods:{globeMaterial:function(e,t){return t!==void 0?(e.globeObj.material=t||e.defaultGlobeMaterial,this):e.globeObj.material},globeTileEngineClearCache:function(e){e.tileEngine.clearTiles()},_destructor:function(e){nr(e.globeObj),nr(e.tileEngine),nr(e.graticulesObj)}},stateInit:function(){var e=new $l.MeshPhongMaterial({color:0}),t=new $l.Mesh(void 0,e);t.rotation.y=-Math.PI/2;var n=new tY(cr),r=new $l.Group;r.__globeObjType="globe",r.add(t),r.add(n);var s=new $l.LineSegments(new cP(_X(),cr,2),new $l.LineBasicMaterial({color:"lightgrey",transparent:!0,opacity:.1}));return{globeGroup:r,globeObj:t,graticulesObj:s,defaultGlobeMaterial:e,tileEngine:n}},init:function(e,t){nr(e),t.scene=e,t.scene.add(t.globeGroup),t.scene.add(t.graticulesObj),t.ready=!1},update:function(e,t){var n=e.globeObj.material;if(e.tileEngine.visible=!(e.globeObj.visible=!e.globeTileEngineUrl),t.hasOwnProperty("globeCurvatureResolution")){var r;(r=e.globeObj.geometry)===null||r===void 0||r.dispose();var s=Math.max(4,Math.round(360/e.globeCurvatureResolution));e.globeObj.geometry=new $l.SphereGeometry(cr,s,s/2),e.tileEngine.curvatureResolution=e.globeCurvatureResolution}if(t.hasOwnProperty("globeImageUrl")&&(e.globeImageUrl?new $l.TextureLoader().load(e.globeImageUrl,function(l){l.colorSpace=$l.SRGBColorSpace,n.map=l,n.color=null,n.needsUpdate=!0,!e.ready&&(e.ready=!0)&&setTimeout(e.onReady)}):!n.color&&(n.color=new $l.Color(0))),t.hasOwnProperty("bumpImageUrl")&&(e.bumpImageUrl?e.bumpImageUrl&&new $l.TextureLoader().load(e.bumpImageUrl,function(l){n.bumpMap=l,n.needsUpdate=!0}):(n.bumpMap=null,n.needsUpdate=!0)),(t.hasOwnProperty("atmosphereColor")||t.hasOwnProperty("atmosphereAltitude"))&&(e.atmosphereObj&&(e.scene.remove(e.atmosphereObj),nr(e.atmosphereObj)),e.atmosphereColor&&e.atmosphereAltitude)){var a=e.atmosphereObj=new Wle(e.globeObj.geometry,{color:e.atmosphereColor,size:cr*e.atmosphereAltitude,hollowRadius:cr,coefficient:.1,power:3.5});a.visible=!!e.showAtmosphere,a.__globeObjType="atmosphere",e.scene.add(a)}!e.ready&&(!e.globeImageUrl||e.globeTileEngineUrl)&&(e.ready=!0,e.onReady())}}),wu=function(e){return isNaN(e)?parseInt(yn(e).toHex(),16):e},Rl=function(e){return e&&isNaN(e)?cA(e).opacity:1},jh=function(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:!0,n=arguments.length>2&&arguments[2]!==void 0?arguments[2]:!1,r,s=1,a=/^rgba\(\s*(\d+)\s*,\s*(\d+)\s*,\s*(\d+)\s*,\s*([\d.eE+-]+)\s*\)$/.exec(e.trim().toLowerCase());if(a){var l=a.slice(1),u=gr(l,4),h=u[0],m=u[1],v=u[2],x=u[3];r=new an("rgb(".concat(+h,",").concat(+m,",").concat(+v,")")),s=Math.min(+x,1)}else r=new an(e);n&&r.convertLinearToSRGB();var S=r.toArray();return t?[].concat(Qi(S),[s]):S};function $le(i,e,t){return i.opacity=e,i.transparent=e<1,i.depthWrite=e>=1,i}var HN=window.THREE?window.THREE:{BufferAttribute:wr};function Mu(i){var e=arguments.length>1&&arguments[1]!==void 0?arguments[1]:1,t=arguments.length>2&&arguments[2]!==void 0?arguments[2]:Float32Array;if(e===1)return new HN.BufferAttribute(new t(i),e);for(var n=new HN.BufferAttribute(new t(i.length*e),e),r=0,s=i.length;r1&&arguments[1]!==void 0?arguments[1]:{},s=r.dataBindAttr,a=s===void 0?"__data":s,l=r.objBindAttr,u=l===void 0?"__threeObj":l,h=r.removeDelay,m=h===void 0?0:h;return nx(this,e),n=tx(this,e),Ps(n,"scene",void 0),NS(n,LS,void 0),NS(n,Cv,void 0),NS(n,Rv,void 0),n.scene=t,DS(LS,n,a),DS(Cv,n,u),DS(Rv,n,m),n.onRemoveObj(function(){}),n}return rx(e,i),ix(e,[{key:"onCreateObj",value:function(n){var r=this;return PS(e,"onCreateObj",this)([function(s){var a=n(s);return s[mm(Cv,r)]=a,a[mm(LS,r)]=s,r.scene.add(a),a}]),this}},{key:"onRemoveObj",value:function(n){var r=this;return PS(e,"onRemoveObj",this)([function(s,a){var l=PS(e,"getData",r)([s]);n(s,a);var u=function(){r.scene.remove(s),nr(s),delete l[mm(Cv,r)]};mm(Rv,r)?setTimeout(u,mm(Rv,r)):u()}]),this}}])})(NQ),_l=window.THREE?window.THREE:{BufferGeometry:Ki,CylinderGeometry:eM,Matrix4:kn,Mesh:zi,MeshLambertMaterial:Vc,Object3D:vr,Vector3:Ae},jN=Object.assign({},yM),WN=jN.BufferGeometryUtils||jN,pO=xs({props:{pointsData:{default:[]},pointLat:{default:"lat"},pointLng:{default:"lng"},pointColor:{default:function(){return"#ffffaa"}},pointAltitude:{default:.1},pointRadius:{default:.25},pointResolution:{default:12,triggerUpdate:!1},pointsMerge:{default:!1},pointsTransitionDuration:{default:1e3,triggerUpdate:!1}},init:function(e,t,n){var r=n.tweenGroup;nr(e),t.scene=e,t.tweenGroup=r,t.dataMapper=new ao(e,{objBindAttr:"__threeObjPoint"})},update:function(e,t){var n=Ct(e.pointLat),r=Ct(e.pointLng),s=Ct(e.pointAltitude),a=Ct(e.pointRadius),l=Ct(e.pointColor),u=new _l.CylinderGeometry(1,1,1,e.pointResolution);u.applyMatrix4(new _l.Matrix4().makeRotationX(Math.PI/2)),u.applyMatrix4(new _l.Matrix4().makeTranslation(0,0,-.5));var h=2*Math.PI*cr/360,m={};if(!e.pointsMerge&&t.hasOwnProperty("pointsMerge")&&nr(e.scene),e.dataMapper.scene=e.pointsMerge?new _l.Object3D:e.scene,e.dataMapper.onCreateObj(S).onUpdateObj(w).digest(e.pointsData),e.pointsMerge){var v=e.pointsData.length?(WN.mergeGeometries||WN.mergeBufferGeometries)(e.pointsData.map(function(R){var C=e.dataMapper.getObj(R),E=C.geometry.clone();C.updateMatrix(),E.applyMatrix4(C.matrix);var B=jh(l(R));return E.setAttribute("color",Mu(Array(E.getAttribute("position").count).fill(B),4)),E})):new _l.BufferGeometry,x=new _l.Mesh(v,new _l.MeshLambertMaterial({color:16777215,transparent:!0,vertexColors:!0}));x.__globeObjType="points",x.__data=e.pointsData,e.dataMapper.clear(),nr(e.scene),e.scene.add(x)}function S(){var R=new _l.Mesh(u);return R.__globeObjType="point",R}function w(R,C){var E=function(j){var F=R.__currentTargetD=j,V=F.r,Y=F.alt,J=F.lat,ne=F.lng;Object.assign(R.position,el(J,ne));var oe=e.pointsMerge?new _l.Vector3(0,0,0):e.scene.localToWorld(new _l.Vector3(0,0,0));R.lookAt(oe),R.scale.x=R.scale.y=Math.min(30,V)*h,R.scale.z=Math.max(Y*cr,.1)},B={alt:+s(C),r:+a(C),lat:+n(C),lng:+r(C)},L=R.__currentTargetD||Object.assign({},B,{alt:-.001});if(Object.keys(B).some(function(z){return L[z]!==B[z]})&&(e.pointsMerge||!e.pointsTransitionDuration||e.pointsTransitionDuration<0?E(B):e.tweenGroup.add(new ca(L).to(B,e.pointsTransitionDuration).easing(os.Quadratic.InOut).onUpdate(E).start())),!e.pointsMerge){var O=l(C),G=O?Rl(O):0,q=!!G;R.visible=q,q&&(m.hasOwnProperty(O)||(m[O]=new _l.MeshLambertMaterial({color:wu(O),transparent:G<1,opacity:G})),R.material=m[O])}}}}),mO=function(){return{uniforms:{dashOffset:{value:0},dashSize:{value:1},gapSize:{value:0},dashTranslate:{value:0}},vertexShader:` + `.concat(Zn.common,` + `).concat(Zn.logdepthbuf_pars_vertex,` + + uniform float dashTranslate; + + attribute vec4 color; + varying vec4 vColor; + + attribute float relDistance; + varying float vRelDistance; + + void main() { + // pass through colors and distances + vColor = color; + vRelDistance = relDistance + dashTranslate; + gl_Position = projectionMatrix * modelViewMatrix * vec4(position, 1.0); + + `).concat(Zn.logdepthbuf_vertex,` + } + `),fragmentShader:` + `.concat(Zn.logdepthbuf_pars_fragment,` + + uniform float dashOffset; + uniform float dashSize; + uniform float gapSize; + + varying vec4 vColor; + varying float vRelDistance; + + void main() { + // ignore pixels in the gap + if (vRelDistance < dashOffset) discard; + if (mod(vRelDistance - dashOffset, dashSize + gapSize) > dashSize) discard; + + // set px color: [r, g, b, a], interpolated between vertices + gl_FragColor = vColor; + + `).concat(Zn.logdepthbuf_fragment,` + } + `)}},lw=function(e){return e.uniforms.uSurfaceRadius={type:"float",value:0},e.vertexShader=(`attribute float surfaceRadius; +varying float vSurfaceRadius; +varying vec3 vPos; +`+e.vertexShader).replace("void main() {",["void main() {","vSurfaceRadius = surfaceRadius;","vPos = position;"].join(` +`)),e.fragmentShader=(`uniform float uSurfaceRadius; +varying float vSurfaceRadius; +varying vec3 vPos; +`+e.fragmentShader).replace("void main() {",["void main() {","if (length(vPos) < max(uSurfaceRadius, vSurfaceRadius)) discard;"].join(` +`)),e},Yle=function(e){return e.vertexShader=` + attribute float r; + + const float PI = 3.1415926535897932384626433832795; + float toRad(in float a) { + return a * PI / 180.0; + } + + vec3 Polar2Cartesian(in vec3 c) { // [lat, lng, r] + float phi = toRad(90.0 - c.x); + float theta = toRad(90.0 - c.y); + float r = c.z; + return vec3( // x,y,z + r * sin(phi) * cos(theta), + r * cos(phi), + r * sin(phi) * sin(theta) + ); + } + + vec2 Cartesian2Polar(in vec3 p) { + float r = sqrt(p.x * p.x + p.y * p.y + p.z * p.z); + float phi = acos(p.y / r); + float theta = atan(p.z, p.x); + return vec2( // lat,lng + 90.0 - phi * 180.0 / PI, + 90.0 - theta * 180.0 / PI - (theta < -PI / 2.0 ? 360.0 : 0.0) + ); + } + `.concat(e.vertexShader.replace("}",` + vec3 pos = Polar2Cartesian(vec3(Cartesian2Polar(position), r)); + gl_Position = projectionMatrix * modelViewMatrix * vec4(pos, 1.0); + } + `),` + `),e},WE=function(e,t){return e.onBeforeCompile=function(n){e.userData.shader=t(n)},e},Qle=function(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:function(r){return r};if(e.userData.shader)t(e.userData.shader.uniforms);else{var n=e.onBeforeCompile;e.onBeforeCompile=function(r){n(r),t(r.uniforms)}}},Kle=["stroke"],yl=window.THREE?window.THREE:{BufferGeometry:Ki,CubicBezierCurve3:X7,Curve:Pl,Group:ja,Line:xy,Mesh:zi,NormalBlending:Ka,ShaderMaterial:Ja,TubeGeometry:nM,Vector3:Ae},Zle=L0.default||L0,gO=xs({props:{arcsData:{default:[]},arcStartLat:{default:"startLat"},arcStartLng:{default:"startLng"},arcStartAltitude:{default:0},arcEndLat:{default:"endLat"},arcEndLng:{default:"endLng"},arcEndAltitude:{default:0},arcColor:{default:function(){return"#ffffaa"}},arcAltitude:{},arcAltitudeAutoScale:{default:.5},arcStroke:{},arcCurveResolution:{default:64,triggerUpdate:!1},arcCircularResolution:{default:6,triggerUpdate:!1},arcDashLength:{default:1},arcDashGap:{default:0},arcDashInitialGap:{default:0},arcDashAnimateTime:{default:0},arcsTransitionDuration:{default:1e3,triggerUpdate:!1}},methods:{pauseAnimation:function(e){var t;(t=e.ticker)===null||t===void 0||t.pause()},resumeAnimation:function(e){var t;(t=e.ticker)===null||t===void 0||t.resume()},_destructor:function(e){var t;e.sharedMaterial.dispose(),(t=e.ticker)===null||t===void 0||t.dispose()}},stateInit:function(e){var t=e.tweenGroup;return{tweenGroup:t,ticker:new Zle,sharedMaterial:new yl.ShaderMaterial(Hi(Hi({},mO()),{},{transparent:!0,blending:yl.NormalBlending}))}},init:function(e,t){nr(e),t.scene=e,t.dataMapper=new ao(e,{objBindAttr:"__threeObjArc"}).onCreateObj(function(){var n=new yl.Group;return n.__globeObjType="arc",n}),t.ticker.onTick.add(function(n,r){t.dataMapper.entries().map(function(s){var a=gr(s,2),l=a[1];return l}).filter(function(s){return s.children.length&&s.children[0].material&&s.children[0].__dashAnimateStep}).forEach(function(s){var a=s.children[0],l=a.__dashAnimateStep*r,u=a.material.uniforms.dashTranslate.value%1e9;a.material.uniforms.dashTranslate.value=u+l})})},update:function(e){var t=Ct(e.arcStartLat),n=Ct(e.arcStartLng),r=Ct(e.arcStartAltitude),s=Ct(e.arcEndLat),a=Ct(e.arcEndLng),l=Ct(e.arcEndAltitude),u=Ct(e.arcAltitude),h=Ct(e.arcAltitudeAutoScale),m=Ct(e.arcStroke),v=Ct(e.arcColor),x=Ct(e.arcDashLength),S=Ct(e.arcDashGap),w=Ct(e.arcDashInitialGap),R=Ct(e.arcDashAnimateTime);e.dataMapper.onUpdateObj(function(L,O){var G=m(O),q=G!=null;if(!L.children.length||q!==(L.children[0].type==="Mesh")){nr(L);var z=q?new yl.Mesh:new yl.Line(new yl.BufferGeometry);z.material=e.sharedMaterial.clone(),L.add(z)}var j=L.children[0];Object.assign(j.material.uniforms,{dashSize:{value:x(O)},gapSize:{value:S(O)},dashOffset:{value:w(O)}});var F=R(O);j.__dashAnimateStep=F>0?1e3/F:0;var V=E(v(O),e.arcCurveResolution,q?e.arcCircularResolution+1:1),Y=B(e.arcCurveResolution,q?e.arcCircularResolution+1:1,!0);j.geometry.setAttribute("color",V),j.geometry.setAttribute("relDistance",Y);var J=function(Q){var ue=L.__currentTargetD=Q,he=ue.stroke,we=Ile(ue,Kle),Te=C(we);q?(j.geometry&&j.geometry.dispose(),j.geometry=new yl.TubeGeometry(Te,e.arcCurveResolution,he/2,e.arcCircularResolution),j.geometry.setAttribute("color",V),j.geometry.setAttribute("relDistance",Y)):j.geometry.setFromPoints(Te.getPoints(e.arcCurveResolution))},ne={stroke:G,alt:u(O),altAutoScale:+h(O),startLat:+t(O),startLng:+n(O),startAlt:+r(O),endLat:+s(O),endLng:+a(O),endAlt:+l(O)},oe=L.__currentTargetD||Object.assign({},ne,{altAutoScale:-.001});Object.keys(ne).some(function(te){return oe[te]!==ne[te]})&&(!e.arcsTransitionDuration||e.arcsTransitionDuration<0?J(ne):e.tweenGroup.add(new ca(oe).to(ne,e.arcsTransitionDuration).easing(os.Quadratic.InOut).onUpdate(J).start()))}).digest(e.arcsData);function C(L){var O=L.alt,G=L.altAutoScale,q=L.startLat,z=L.startLng,j=L.startAlt,F=L.endLat,V=L.endLng,Y=L.endAlt,J=function(xe){var Le=gr(xe,3),ct=Le[0],_t=Le[1],xt=Le[2],Ft=el(_t,ct,xt),Ye=Ft.x,rt=Ft.y,fe=Ft.z;return new yl.Vector3(Ye,rt,fe)},ne=[z,q],oe=[V,F],te=O;if(te==null&&(te=Vh(ne,oe)/2*G+Math.max(j,Y)),te||j||Y){var Q=pM(ne,oe),ue=function(xe,Le){return Le+(Le-xe)*(xe2&&arguments[2]!==void 0?arguments[2]:1,q=O+1,z;if(L instanceof Array||L instanceof Function){var j=L instanceof Array?Pc().domain(L.map(function(te,Q){return Q/(L.length-1)})).range(L):L;z=function(Q){return jh(j(Q),!0,!0)}}else{var F=jh(L,!0,!0);z=function(){return F}}for(var V=[],Y=0,J=q;Y1&&arguments[1]!==void 0?arguments[1]:1,G=arguments.length>2&&arguments[2]!==void 0?arguments[2]:!1,q=L+1,z=[],j=0,F=q;j=j?G:q}),4)),O})):new wh.BufferGeometry,w=new wh.MeshLambertMaterial({color:16777215,transparent:!0,vertexColors:!0,side:wh.DoubleSide});w.onBeforeCompile=function(B){w.userData.shader=lw(B)};var R=new wh.Mesh(S,w);R.__globeObjType="hexBinPoints",R.__data=v,e.dataMapper.clear(),nr(e.scene),e.scene.add(R)}function C(B){var L=new wh.Mesh;L.__hexCenter=RP(B.h3Idx),L.__hexGeoJson=NP(B.h3Idx,!0).reverse();var O=L.__hexCenter[1];return L.__hexGeoJson.forEach(function(G){var q=G[0];Math.abs(O-q)>170&&(G[0]+=O>q?360:-360)}),L.__globeObjType="hexbin",L}function E(B,L){var O=function(ue,he,we){return ue-(ue-he)*we},G=Math.max(0,Math.min(1,+h(L))),q=gr(B.__hexCenter,2),z=q[0],j=q[1],F=G===0?B.__hexGeoJson:B.__hexGeoJson.map(function(Q){var ue=gr(Q,2),he=ue[0],we=ue[1];return[[he,j],[we,z]].map(function(Te){var ce=gr(Te,2),be=ce[0],ze=ce[1];return O(be,ze,G)})}),V=e.hexTopCurvatureResolution;B.geometry&&B.geometry.dispose(),B.geometry=new wM([F],0,cr,!1,!0,!0,V);var Y={alt:+a(L)},J=function(ue){var he=B.__currentTargetD=ue,we=he.alt;B.scale.x=B.scale.y=B.scale.z=1+we;var Te=cr/(we+1);B.geometry.setAttribute("surfaceRadius",Mu(Array(B.geometry.getAttribute("position").count).fill(Te),1))},ne=B.__currentTargetD||Object.assign({},Y,{alt:-.001});if(Object.keys(Y).some(function(Q){return ne[Q]!==Y[Q]})&&(e.hexBinMerge||!e.hexTransitionDuration||e.hexTransitionDuration<0?J(Y):e.tweenGroup.add(new ca(ne).to(Y,e.hexTransitionDuration).easing(os.Quadratic.InOut).onUpdate(J).start())),!e.hexBinMerge){var oe=u(L),te=l(L);[oe,te].forEach(function(Q){if(!x.hasOwnProperty(Q)){var ue=Rl(Q);x[Q]=WE(new wh.MeshLambertMaterial({color:wu(Q),transparent:ue<1,opacity:ue,side:wh.DoubleSide}),lw)}}),B.material=[oe,te].map(function(Q){return x[Q]})}}}}),_O=function(e){return e*e},wc=function(e){return e*Math.PI/180};function Jle(i,e){var t=Math.sqrt,n=Math.cos,r=function(m){return _O(Math.sin(m/2))},s=wc(i[1]),a=wc(e[1]),l=wc(i[0]),u=wc(e[0]);return 2*Math.asin(t(r(a-s)+n(s)*n(a)*r(u-l)))}var eue=Math.sqrt(2*Math.PI);function tue(i,e){return Math.exp(-_O(i/e)/2)/(e*eue)}var nue=function(e){var t=gr(e,2),n=t[0],r=t[1],s=arguments.length>1&&arguments[1]!==void 0?arguments[1]:[],a=arguments.length>2&&arguments[2]!==void 0?arguments[2]:{},l=a.lngAccessor,u=l===void 0?function(C){return C[0]}:l,h=a.latAccessor,m=h===void 0?function(C){return C[1]}:h,v=a.weightAccessor,x=v===void 0?function(){return 1}:v,S=a.bandwidth,w=[n,r],R=S*Math.PI/180;return YW(s.map(function(C){var E=x(C);if(!E)return 0;var B=Jle(w,[u(C),m(C)]);return tue(B,R)*E}))},iue=(function(){var i=Nle(aw().m(function e(t){var n,r,s,a,l,u,h,m,v,x,S,w,R,C,E,B,L,O,G,q,z,j,F,V,Y,J,ne,oe,te,Q,ue,he,we,Te,ce,be,ze,Ee,Ge,xe,Le=arguments,ct,_t,xt;return aw().w(function(Ft){for(;;)switch(Ft.n){case 0:if(r=Le.length>1&&Le[1]!==void 0?Le[1]:[],s=Le.length>2&&Le[2]!==void 0?Le[2]:{},a=s.lngAccessor,l=a===void 0?function(Ye){return Ye[0]}:a,u=s.latAccessor,h=u===void 0?function(Ye){return Ye[1]}:u,m=s.weightAccessor,v=m===void 0?function(){return 1}:m,x=s.bandwidth,(n=navigator)!==null&&n!==void 0&&n.gpu){Ft.n=1;break}return console.warn("WebGPU not enabled in browser. Please consider enabling it to improve performance."),Ft.a(2,t.map(function(Ye){return nue(Ye,r,{lngAccessor:l,latAccessor:h,weightAccessor:v,bandwidth:x})}));case 1:return S=4,w=ole,R=lle,C=_le,E=vle,B=Ale,L=dle,O=ule,G=gle,q=mle,z=hle,j=cle,F=fle,V=ple,Y=E(new t_(new Float32Array(t.flat().map(wc)),2),"vec2",t.length),J=E(new t_(new Float32Array(r.map(function(Ye){return[wc(l(Ye)),wc(h(Ye)),v(Ye)]}).flat()),3),"vec3",r.length),ne=new t_(t.length,1),oe=E(ne,"float",t.length),te=B(Math.PI),Q=G(te.mul(2)),ue=function(rt){return rt.mul(rt)},he=function(rt){return ue(q(rt.div(2)))},we=function(rt,fe){var zt=B(rt[1]),ft=B(fe[1]),Dt=B(rt[0]),pt=B(fe[0]);return B(2).mul(j(G(he(ft.sub(zt)).add(z(zt).mul(z(ft)).mul(he(pt.sub(Dt)))))))},Te=function(rt,fe){return F(V(ue(rt.div(fe)).div(2))).div(fe.mul(Q))},ce=C(wc(x)),be=C(wc(x*S)),ze=C(r.length),Ee=w(function(){var Ye=Y.element(L),rt=oe.element(L);rt.assign(0),O(ze,function(fe){var zt=fe.i,ft=J.element(zt),Dt=ft.z;R(Dt,function(){var pt=we(ft.xy,Ye.xy);R(pt&&pt.lessThan(be),function(){rt.addAssign(Te(pt,ce).mul(Dt))})})})}),Ge=Ee().compute(t.length),xe=new aO,Ft.n=2,xe.computeAsync(Ge);case 2:return ct=Array,_t=Float32Array,Ft.n=3,xe.getArrayBufferAsync(ne);case 3:return xt=Ft.v,Ft.a(2,ct.from.call(ct,new _t(xt)))}},e)}));return function(t){return i.apply(this,arguments)}})(),Nv=window.THREE?window.THREE:{Mesh:zi,MeshLambertMaterial:Vc,SphereGeometry:Eu},rue=3.5,sue=.1,YN=100,aue=function(e){var t=cA(kZ(e));return t.opacity=Math.cbrt(e),t.formatRgb()},yO=xs({props:{heatmapsData:{default:[]},heatmapPoints:{default:function(e){return e}},heatmapPointLat:{default:function(e){return e[0]}},heatmapPointLng:{default:function(e){return e[1]}},heatmapPointWeight:{default:1},heatmapBandwidth:{default:2.5},heatmapColorFn:{default:function(){return aue}},heatmapColorSaturation:{default:1.5},heatmapBaseAltitude:{default:.01},heatmapTopAltitude:{},heatmapsTransitionDuration:{default:0,triggerUpdate:!1}},init:function(e,t,n){var r=n.tweenGroup;nr(e),t.scene=e,t.tweenGroup=r,t.dataMapper=new ao(e,{objBindAttr:"__threeObjHeatmap"}).onCreateObj(function(){var s=new Nv.Mesh(new Nv.SphereGeometry(cr),WE(new Nv.MeshLambertMaterial({vertexColors:!0,transparent:!0}),Yle));return s.__globeObjType="heatmap",s})},update:function(e){var t=Ct(e.heatmapPoints),n=Ct(e.heatmapPointLat),r=Ct(e.heatmapPointLng),s=Ct(e.heatmapPointWeight),a=Ct(e.heatmapBandwidth),l=Ct(e.heatmapColorFn),u=Ct(e.heatmapColorSaturation),h=Ct(e.heatmapBaseAltitude),m=Ct(e.heatmapTopAltitude);e.dataMapper.onUpdateObj(function(v,x){var S=a(x),w=l(x),R=u(x),C=h(x),E=m(x),B=t(x).map(function(z){var j=n(z),F=r(z),V=el(j,F),Y=V.x,J=V.y,ne=V.z;return{x:Y,y:J,z:ne,lat:j,lng:F,weight:s(z)}}),L=Math.max(sue,S/rue),O=Math.ceil(360/(L||-1));v.geometry.parameters.widthSegments!==O&&(v.geometry.dispose(),v.geometry=new Nv.SphereGeometry(cr,O,O/2));var G=Xle(v.geometry.getAttribute("position")),q=G.map(function(z){var j=gr(z,3),F=j[0],V=j[1],Y=j[2],J=AO({x:F,y:V,z:Y}),ne=J.lng,oe=J.lat;return[ne,oe]});iue(q,B,{latAccessor:function(j){return j.lat},lngAccessor:function(j){return j.lng},weightAccessor:function(j){return j.weight},bandwidth:S}).then(function(z){var j=Qi(new Array(YN)).map(function(J,ne){return jh(w(ne/(YN-1)))}),F=function(ne){var oe=v.__currentTargetD=ne,te=oe.kdeVals,Q=oe.topAlt,ue=oe.saturation,he=WW(te.map(Math.abs))||1e-15,we=ND([0,he/ue],j);v.geometry.setAttribute("color",Mu(te.map(function(ce){return we(Math.abs(ce))}),4));var Te=Pc([0,he],[cr*(1+C),cr*(1+(Q||C))]);v.geometry.setAttribute("r",Mu(te.map(Te)))},V={kdeVals:z,topAlt:E,saturation:R},Y=v.__currentTargetD||Object.assign({},V,{kdeVals:z.map(function(){return 0}),topAlt:E&&C,saturation:.5});Y.kdeVals.length!==z.length&&(Y.kdeVals=z.slice()),Object.keys(V).some(function(J){return Y[J]!==V[J]})&&(!e.heatmapsTransitionDuration||e.heatmapsTransitionDuration<0?F(V):e.tweenGroup.add(new ca(Y).to(V,e.heatmapsTransitionDuration).easing(os.Quadratic.InOut).onUpdate(F).start()))})}).digest(e.heatmapsData)}}),Mh=window.THREE?window.THREE:{DoubleSide:as,Group:ja,LineBasicMaterial:$0,LineSegments:j7,Mesh:zi,MeshBasicMaterial:pA},xO=xs({props:{polygonsData:{default:[]},polygonGeoJsonGeometry:{default:"geometry"},polygonSideColor:{default:function(){return"#ffffaa"}},polygonSideMaterial:{},polygonCapColor:{default:function(){return"#ffffaa"}},polygonCapMaterial:{},polygonStrokeColor:{},polygonAltitude:{default:.01},polygonCapCurvatureResolution:{default:5},polygonsTransitionDuration:{default:1e3,triggerUpdate:!1}},init:function(e,t,n){var r=n.tweenGroup;nr(e),t.scene=e,t.tweenGroup=r,t.dataMapper=new ao(e,{objBindAttr:"__threeObjPolygon"}).id(function(s){return s.id}).onCreateObj(function(){var s=new Mh.Group;return s.__defaultSideMaterial=WE(new Mh.MeshBasicMaterial({side:Mh.DoubleSide,depthWrite:!0}),lw),s.__defaultCapMaterial=new Mh.MeshBasicMaterial({side:Mh.DoubleSide,depthWrite:!0}),s.add(new Mh.Mesh(void 0,[s.__defaultSideMaterial,s.__defaultCapMaterial])),s.add(new Mh.LineSegments(void 0,new Mh.LineBasicMaterial)),s.__globeObjType="polygon",s})},update:function(e){var t=Ct(e.polygonGeoJsonGeometry),n=Ct(e.polygonAltitude),r=Ct(e.polygonCapCurvatureResolution),s=Ct(e.polygonCapColor),a=Ct(e.polygonCapMaterial),l=Ct(e.polygonSideColor),u=Ct(e.polygonSideMaterial),h=Ct(e.polygonStrokeColor),m=[];e.polygonsData.forEach(function(v){var x={data:v,capColor:s(v),capMaterial:a(v),sideColor:l(v),sideMaterial:u(v),strokeColor:h(v),altitude:+n(v),capCurvatureResolution:+r(v)},S=t(v),w=v.__id||"".concat(Math.round(Math.random()*1e9));v.__id=w,S.type==="Polygon"?m.push(Hi({id:"".concat(w,"_0"),coords:S.coordinates},x)):S.type==="MultiPolygon"?m.push.apply(m,Qi(S.coordinates.map(function(R,C){return Hi({id:"".concat(w,"_").concat(C),coords:R},x)}))):console.warn("Unsupported GeoJson geometry type: ".concat(S.type,". Skipping geometry..."))}),e.dataMapper.onUpdateObj(function(v,x){var S=x.coords,w=x.capColor,R=x.capMaterial,C=x.sideColor,E=x.sideMaterial,B=x.strokeColor,L=x.altitude,O=x.capCurvatureResolution,G=gr(v.children,2),q=G[0],z=G[1],j=!!B;z.visible=j;var F=!!(w||R),V=!!(C||E);oue(q.geometry.parameters||{},{polygonGeoJson:S,curvatureResolution:O,closedTop:F,includeSides:V})||(q.geometry&&q.geometry.dispose(),q.geometry=new wM(S,0,cr,!1,F,V,O)),j&&(!z.geometry.parameters||z.geometry.parameters.geoJson.coordinates!==S||z.geometry.parameters.resolution!==O)&&(z.geometry&&z.geometry.dispose(),z.geometry=new cP({type:"Polygon",coordinates:S},cr,O));var Y=V?0:-1,J=F?V?1:0:-1;if(Y>=0&&(q.material[Y]=E||v.__defaultSideMaterial),J>=0&&(q.material[J]=R||v.__defaultCapMaterial),[[!E&&C,Y],[!R&&w,J]].forEach(function(he){var we=gr(he,2),Te=we[0],ce=we[1];if(!(!Te||ce<0)){var be=q.material[ce],ze=Rl(Te);be.color.set(wu(Te)),be.transparent=ze<1,be.opacity=ze}}),j){var ne=z.material,oe=Rl(B);ne.color.set(wu(B)),ne.transparent=oe<1,ne.opacity=oe}var te={alt:L},Q=function(we){var Te=v.__currentTargetD=we,ce=Te.alt;q.scale.x=q.scale.y=q.scale.z=1+ce,j&&(z.scale.x=z.scale.y=z.scale.z=1+ce+1e-4),Qle(v.__defaultSideMaterial,function(be){return be.uSurfaceRadius.value=cr/(ce+1)})},ue=v.__currentTargetD||Object.assign({},te,{alt:-.001});Object.keys(te).some(function(he){return ue[he]!==te[he]})&&(!e.polygonsTransitionDuration||e.polygonsTransitionDuration<0||ue.alt===te.alt?Q(te):e.tweenGroup.add(new ca(ue).to(te,e.polygonsTransitionDuration).easing(os.Quadratic.InOut).onUpdate(Q).start()))}).digest(m)}});function oue(i,e){var t=arguments.length>2&&arguments[2]!==void 0?arguments[2]:function(){return function(n,r){return n===r}};return Object.entries(e).every(function(n){var r=gr(n,2),s=r[0],a=r[1];return i.hasOwnProperty(s)&&t(s)(i[s],a)})}var Bd=window.THREE?window.THREE:{BufferGeometry:Ki,DoubleSide:as,Mesh:zi,MeshLambertMaterial:Vc,Vector3:Ae},QN=Object.assign({},yM),KN=QN.BufferGeometryUtils||QN,bO=xs({props:{hexPolygonsData:{default:[]},hexPolygonGeoJsonGeometry:{default:"geometry"},hexPolygonColor:{default:function(){return"#ffffaa"}},hexPolygonAltitude:{default:.001},hexPolygonResolution:{default:3},hexPolygonMargin:{default:.2},hexPolygonUseDots:{default:!1},hexPolygonCurvatureResolution:{default:5},hexPolygonDotResolution:{default:12},hexPolygonsTransitionDuration:{default:0,triggerUpdate:!1}},init:function(e,t,n){var r=n.tweenGroup;nr(e),t.scene=e,t.tweenGroup=r,t.dataMapper=new ao(e,{objBindAttr:"__threeObjHexPolygon"}).onCreateObj(function(){var s=new Bd.Mesh(void 0,new Bd.MeshLambertMaterial({side:Bd.DoubleSide}));return s.__globeObjType="hexPolygon",s})},update:function(e){var t=Ct(e.hexPolygonGeoJsonGeometry),n=Ct(e.hexPolygonColor),r=Ct(e.hexPolygonAltitude),s=Ct(e.hexPolygonResolution),a=Ct(e.hexPolygonMargin),l=Ct(e.hexPolygonUseDots),u=Ct(e.hexPolygonCurvatureResolution),h=Ct(e.hexPolygonDotResolution);e.dataMapper.onUpdateObj(function(m,v){var x=t(v),S=s(v),w=r(v),R=Math.max(0,Math.min(1,+a(v))),C=l(v),E=u(v),B=h(v),L=n(v),O=Rl(L);m.material.color.set(wu(L)),m.material.transparent=O<1,m.material.opacity=O;var G={alt:w,margin:R,curvatureResolution:E},q={geoJson:x,h3Res:S},z=m.__currentTargetD||Object.assign({},G,{alt:-.001}),j=m.__currentMemD||q;if(Object.keys(G).some(function(J){return z[J]!==G[J]})||Object.keys(q).some(function(J){return j[J]!==q[J]})){m.__currentMemD=q;var F=[];x.type==="Polygon"?R6(x.coordinates,S,!0).forEach(function(J){return F.push(J)}):x.type==="MultiPolygon"?x.coordinates.forEach(function(J){return R6(J,S,!0).forEach(function(ne){return F.push(ne)})}):console.warn("Unsupported GeoJson geometry type: ".concat(x.type,". Skipping geometry..."));var V=F.map(function(J){var ne=RP(J),oe=NP(J,!0).reverse(),te=ne[1];return oe.forEach(function(Q){var ue=Q[0];Math.abs(te-ue)>170&&(Q[0]+=te>ue?360:-360)}),{h3Idx:J,hexCenter:ne,hexGeoJson:oe}}),Y=function(ne){var oe=m.__currentTargetD=ne,te=oe.alt,Q=oe.margin,ue=oe.curvatureResolution;m.geometry&&m.geometry.dispose(),m.geometry=V.length?(KN.mergeGeometries||KN.mergeBufferGeometries)(V.map(function(he){var we=gr(he.hexCenter,2),Te=we[0],ce=we[1];if(C){var be=el(Te,ce,te),ze=el(he.hexGeoJson[0][1],he.hexGeoJson[0][0],te),Ee=.85*(1-Q)*new Bd.Vector3(be.x,be.y,be.z).distanceTo(new Bd.Vector3(ze.x,ze.y,ze.z)),Ge=new by(Ee,B);return Ge.rotateX(Vf(-Te)),Ge.rotateY(Vf(ce)),Ge.translate(be.x,be.y,be.z),Ge}else{var xe=function(_t,xt,Ft){return _t-(_t-xt)*Ft},Le=Q===0?he.hexGeoJson:he.hexGeoJson.map(function(ct){var _t=gr(ct,2),xt=_t[0],Ft=_t[1];return[[xt,ce],[Ft,Te]].map(function(Ye){var rt=gr(Ye,2),fe=rt[0],zt=rt[1];return xe(fe,zt,Q)})});return new wM([Le],cr,cr*(1+te),!1,!0,!1,ue)}})):new Bd.BufferGeometry};!e.hexPolygonsTransitionDuration||e.hexPolygonsTransitionDuration<0?Y(G):e.tweenGroup.add(new ca(z).to(G,e.hexPolygonsTransitionDuration).easing(os.Quadratic.InOut).onUpdate(Y).start())}}).digest(e.hexPolygonsData)}}),lue=window.THREE?window.THREE:{Vector3:Ae};function uue(i,e){var t=function(a,l){var u=a[a.length-1];return[].concat(Qi(a),Qi(Array(l-a.length).fill(u)))},n=Math.max(i.length,e.length),r=h$.apply(void 0,Qi([i,e].map(function(s){return s.map(function(a){var l=a.x,u=a.y,h=a.z;return[l,u,h]})}).map(function(s){return t(s,n)})));return function(s){return s===0?i:s===1?e:r(s).map(function(a){var l=gr(a,3),u=l[0],h=l[1],m=l[2];return new lue.Vector3(u,h,m)})}}var Pf=window.THREE?window.THREE:{BufferGeometry:Ki,Color:an,Group:ja,Line:xy,NormalBlending:Ka,ShaderMaterial:Ja,Vector3:Ae},cue=L0.default||L0,SO=xs({props:{pathsData:{default:[]},pathPoints:{default:function(e){return e}},pathPointLat:{default:function(e){return e[0]}},pathPointLng:{default:function(e){return e[1]}},pathPointAlt:{default:.001},pathResolution:{default:2},pathColor:{default:function(){return"#ffffaa"}},pathStroke:{},pathDashLength:{default:1},pathDashGap:{default:0},pathDashInitialGap:{default:0},pathDashAnimateTime:{default:0},pathTransitionDuration:{default:1e3,triggerUpdate:!1},rendererSize:{}},methods:{pauseAnimation:function(e){var t;(t=e.ticker)===null||t===void 0||t.pause()},resumeAnimation:function(e){var t;(t=e.ticker)===null||t===void 0||t.resume()},_destructor:function(e){var t;(t=e.ticker)===null||t===void 0||t.dispose()}},stateInit:function(e){var t=e.tweenGroup;return{tweenGroup:t,ticker:new cue,sharedMaterial:new Pf.ShaderMaterial(Hi(Hi({},mO()),{},{transparent:!0,blending:Pf.NormalBlending}))}},init:function(e,t){nr(e),t.scene=e,t.dataMapper=new ao(e,{objBindAttr:"__threeObjPath"}).onCreateObj(function(){var n=new Pf.Group;return n.__globeObjType="path",n}),t.ticker.onTick.add(function(n,r){t.dataMapper.entries().map(function(s){var a=gr(s,2),l=a[1];return l}).filter(function(s){return s.children.length&&s.children[0].material&&s.children[0].__dashAnimateStep}).forEach(function(s){var a=s.children[0],l=a.__dashAnimateStep*r;if(a.type==="Line"){var u=a.material.uniforms.dashTranslate.value%1e9;a.material.uniforms.dashTranslate.value=u+l}else if(a.type==="Line2"){for(var h=a.material.dashOffset-l,m=a.material.dashSize+a.material.gapSize;h<=-m;)h+=m;a.material.dashOffset=h}})})},update:function(e){var t=Ct(e.pathPoints),n=Ct(e.pathPointLat),r=Ct(e.pathPointLng),s=Ct(e.pathPointAlt),a=Ct(e.pathStroke),l=Ct(e.pathColor),u=Ct(e.pathDashLength),h=Ct(e.pathDashGap),m=Ct(e.pathDashInitialGap),v=Ct(e.pathDashAnimateTime);e.dataMapper.onUpdateObj(function(C,E){var B=a(E),L=B!=null;if(!C.children.length||L===(C.children[0].type==="Line")){nr(C);var O=L?new Sle(new lO,new qE):new Pf.Line(new Pf.BufferGeometry,e.sharedMaterial.clone());C.add(O)}var G=C.children[0],q=S(t(E),n,r,s,e.pathResolution),z=v(E);if(G.__dashAnimateStep=z>0?1e3/z:0,L){G.material.resolution=e.rendererSize;{var V=u(E),Y=h(E),J=m(E);G.material.dashed=Y>0,G.material.dashed?G.material.defines.USE_DASH="":delete G.material.defines.USE_DASH,G.material.dashed&&(G.material.dashScale=1/x(q),G.material.dashSize=V,G.material.gapSize=Y,G.material.dashOffset=-J)}{var ne=l(E);if(ne instanceof Array){var oe=w(l(E),q.length-1,1,!1);G.geometry.setColors(oe.array),G.material.vertexColors=!0}else{var te=ne,Q=Rl(te);G.material.color=new Pf.Color(wu(te)),G.material.transparent=Q<1,G.material.opacity=Q,G.material.vertexColors=!1}}G.material.needsUpdate=!0}else{Object.assign(G.material.uniforms,{dashSize:{value:u(E)},gapSize:{value:h(E)},dashOffset:{value:m(E)}});var j=w(l(E),q.length),F=R(q.length,1,!0);G.geometry.setAttribute("color",j),G.geometry.setAttribute("relDistance",F)}var ue=uue(C.__currentTargetD&&C.__currentTargetD.points||[q[0]],q),he=function(be){var ze=C.__currentTargetD=be,Ee=ze.stroke,Ge=ze.interpolK,xe=C.__currentTargetD.points=ue(Ge);if(L){var Le;G.geometry.setPositions((Le=[]).concat.apply(Le,Qi(xe.map(function(ct){var _t=ct.x,xt=ct.y,Ft=ct.z;return[_t,xt,Ft]})))),G.material.linewidth=Ee,G.material.dashed&&G.computeLineDistances()}else G.geometry.setFromPoints(xe),G.geometry.computeBoundingSphere()},we={stroke:B,interpolK:1},Te=Object.assign({},C.__currentTargetD||we,{interpolK:0});Object.keys(we).some(function(ce){return Te[ce]!==we[ce]})&&(!e.pathTransitionDuration||e.pathTransitionDuration<0?he(we):e.tweenGroup.add(new ca(Te).to(we,e.pathTransitionDuration).easing(os.Quadratic.InOut).onUpdate(he).start()))}).digest(e.pathsData);function x(C){var E=0,B;return C.forEach(function(L){B&&(E+=B.distanceTo(L)),B=L}),E}function S(C,E,B,L,O){var G=function(F,V,Y){for(var J=[],ne=1;ne<=Y;ne++)J.push(F+(V-F)*ne/(Y+1));return J},q=function(){var F=arguments.length>0&&arguments[0]!==void 0?arguments[0]:[],V=arguments.length>1&&arguments[1]!==void 0?arguments[1]:1,Y=[],J=null;return F.forEach(function(ne){if(J){for(;Math.abs(J[1]-ne[1])>180;)J[1]+=360*(J[1]V)for(var te=Math.floor(oe/V),Q=G(J[0],ne[0],te),ue=G(J[1],ne[1],te),he=G(J[2],ne[2],te),we=0,Te=Q.length;we2&&arguments[2]!==void 0?arguments[2]:1,L=arguments.length>3&&arguments[3]!==void 0?arguments[3]:!0,O=E+1,G;if(C instanceof Array||C instanceof Function){var q=C instanceof Array?Pc().domain(C.map(function(ne,oe){return oe/(C.length-1)})).range(C):C;G=function(oe){return jh(q(oe),L,!0)}}else{var z=jh(C,L,!0);G=function(){return z}}for(var j=[],F=0,V=O;F1&&arguments[1]!==void 0?arguments[1]:1,B=arguments.length>2&&arguments[2]!==void 0?arguments[2]:!1,L=C+1,O=[],G=0,q=L;G0&&arguments[0]!==void 0?arguments[0]:1,r=arguments.length>1&&arguments[1]!==void 0?arguments[1]:32;nx(this,e),t=tx(this,e),t.type="CircleLineGeometry",t.parameters={radius:n,segmentCount:r};for(var s=[],a=0;a<=r;a++){var l=(a/r-.25)*Math.PI*2;s.push({x:Math.cos(l)*n,y:Math.sin(l)*n,z:0})}return t.setFromPoints(s),t}return rx(e,i),ix(e)})(hue.BufferGeometry),Id=window.THREE?window.THREE:{Color:an,Group:ja,Line:xy,LineBasicMaterial:$0,Vector3:Ae},Aue=L0.default||L0,MO=xs({props:{ringsData:{default:[]},ringLat:{default:"lat"},ringLng:{default:"lng"},ringAltitude:{default:.0015},ringColor:{default:function(){return"#ffffaa"},triggerUpdate:!1},ringResolution:{default:64,triggerUpdate:!1},ringMaxRadius:{default:2,triggerUpdate:!1},ringPropagationSpeed:{default:1,triggerUpdate:!1},ringRepeatPeriod:{default:700,triggerUpdate:!1}},methods:{pauseAnimation:function(e){var t;(t=e.ticker)===null||t===void 0||t.pause()},resumeAnimation:function(e){var t;(t=e.ticker)===null||t===void 0||t.resume()},_destructor:function(e){var t;(t=e.ticker)===null||t===void 0||t.dispose()}},init:function(e,t,n){var r=n.tweenGroup;nr(e),t.scene=e,t.tweenGroup=r,t.dataMapper=new ao(e,{objBindAttr:"__threeObjRing",removeDelay:3e4}).onCreateObj(function(){var s=new Id.Group;return s.__globeObjType="ring",s}),t.ticker=new Aue,t.ticker.onTick.add(function(s){if(t.ringsData.length){var a=Ct(t.ringColor),l=Ct(t.ringAltitude),u=Ct(t.ringMaxRadius),h=Ct(t.ringPropagationSpeed),m=Ct(t.ringRepeatPeriod);t.dataMapper.entries().filter(function(v){var x=gr(v,2),S=x[1];return S}).forEach(function(v){var x=gr(v,2),S=x[0],w=x[1];if((w.__nextRingTime||0)<=s){var R=m(S)/1e3;w.__nextRingTime=s+(R<=0?1/0:R);var C=new Id.Line(new fue(1,t.ringResolution),new Id.LineBasicMaterial),E=a(S),B=E instanceof Array||E instanceof Function,L;B?E instanceof Array?(L=Pc().domain(E.map(function(Y,J){return J/(E.length-1)})).range(E),C.material.transparent=E.some(function(Y){return Rl(Y)<1})):(L=E,C.material.transparent=!0):(C.material.color=new Id.Color(wu(E)),$le(C.material,Rl(E)));var O=cr*(1+l(S)),G=u(S),q=G*Math.PI/180,z=h(S),j=z<=0,F=function(J){var ne=J.t,oe=(j?1-ne:ne)*q;if(C.scale.x=C.scale.y=O*Math.sin(oe),C.position.z=O*(1-Math.cos(oe)),B){var te=L(ne);C.material.color=new Id.Color(wu(te)),C.material.transparent&&(C.material.opacity=Rl(te))}};if(z===0)F({t:0}),w.add(C);else{var V=Math.abs(G/z)*1e3;t.tweenGroup.add(new ca({t:0}).to({t:1},V).onUpdate(F).onStart(function(){return w.add(C)}).onComplete(function(){w.remove(C),jE(C)}).start())}}})}})},update:function(e){var t=Ct(e.ringLat),n=Ct(e.ringLng),r=Ct(e.ringAltitude),s=e.scene.localToWorld(new Id.Vector3(0,0,0));e.dataMapper.onUpdateObj(function(a,l){var u=t(l),h=n(l),m=r(l);Object.assign(a.position,el(u,h,m)),a.lookAt(s)}).digest(e.ringsData)}}),due={0:{x_min:73,x_max:715,ha:792,o:"m 394 -29 q 153 129 242 -29 q 73 479 73 272 q 152 829 73 687 q 394 989 241 989 q 634 829 545 989 q 715 479 715 684 q 635 129 715 270 q 394 -29 546 -29 m 394 89 q 546 211 489 89 q 598 479 598 322 q 548 748 598 640 q 394 871 491 871 q 241 748 298 871 q 190 479 190 637 q 239 211 190 319 q 394 89 296 89 "},1:{x_min:215.671875,x_max:574,ha:792,o:"m 574 0 l 442 0 l 442 697 l 215 697 l 215 796 q 386 833 330 796 q 475 986 447 875 l 574 986 l 574 0 "},2:{x_min:59,x_max:731,ha:792,o:"m 731 0 l 59 0 q 197 314 59 188 q 457 487 199 315 q 598 691 598 580 q 543 819 598 772 q 411 867 488 867 q 272 811 328 867 q 209 630 209 747 l 81 630 q 182 901 81 805 q 408 986 271 986 q 629 909 536 986 q 731 694 731 826 q 613 449 731 541 q 378 316 495 383 q 201 122 235 234 l 731 122 l 731 0 "},3:{x_min:54,x_max:737,ha:792,o:"m 737 284 q 635 55 737 141 q 399 -25 541 -25 q 156 52 248 -25 q 54 308 54 140 l 185 308 q 245 147 185 202 q 395 96 302 96 q 539 140 484 96 q 602 280 602 190 q 510 429 602 390 q 324 454 451 454 l 324 565 q 487 584 441 565 q 565 719 565 617 q 515 835 565 791 q 395 879 466 879 q 255 824 307 879 q 203 661 203 769 l 78 661 q 166 909 78 822 q 387 992 250 992 q 603 921 513 992 q 701 723 701 844 q 669 607 701 656 q 578 524 637 558 q 696 434 655 499 q 737 284 737 369 "},4:{x_min:48,x_max:742.453125,ha:792,o:"m 742 243 l 602 243 l 602 0 l 476 0 l 476 243 l 48 243 l 48 368 l 476 958 l 602 958 l 602 354 l 742 354 l 742 243 m 476 354 l 476 792 l 162 354 l 476 354 "},5:{x_min:54.171875,x_max:738,ha:792,o:"m 738 314 q 626 60 738 153 q 382 -23 526 -23 q 155 47 248 -23 q 54 256 54 125 l 183 256 q 259 132 204 174 q 382 91 314 91 q 533 149 471 91 q 602 314 602 213 q 538 469 602 411 q 386 528 475 528 q 284 506 332 528 q 197 439 237 484 l 81 439 l 159 958 l 684 958 l 684 840 l 254 840 l 214 579 q 306 627 258 612 q 407 643 354 643 q 636 552 540 643 q 738 314 738 457 "},6:{x_min:53,x_max:739,ha:792,o:"m 739 312 q 633 62 739 162 q 400 -31 534 -31 q 162 78 257 -31 q 53 439 53 206 q 178 859 53 712 q 441 986 284 986 q 643 912 559 986 q 732 713 732 833 l 601 713 q 544 830 594 786 q 426 875 494 875 q 268 793 331 875 q 193 517 193 697 q 301 597 240 570 q 427 624 362 624 q 643 540 552 624 q 739 312 739 451 m 603 298 q 540 461 603 400 q 404 516 484 516 q 268 461 323 516 q 207 300 207 401 q 269 137 207 198 q 405 83 325 83 q 541 137 486 83 q 603 298 603 197 "},7:{x_min:58.71875,x_max:730.953125,ha:792,o:"m 730 839 q 469 448 560 641 q 335 0 378 255 l 192 0 q 328 441 235 252 q 593 830 421 630 l 58 830 l 58 958 l 730 958 l 730 839 "},8:{x_min:55,x_max:736,ha:792,o:"m 571 527 q 694 424 652 491 q 736 280 736 358 q 648 71 736 158 q 395 -26 551 -26 q 142 69 238 -26 q 55 279 55 157 q 96 425 55 359 q 220 527 138 491 q 120 615 153 562 q 88 726 88 668 q 171 904 88 827 q 395 986 261 986 q 618 905 529 986 q 702 727 702 830 q 670 616 702 667 q 571 527 638 565 m 394 565 q 519 610 475 565 q 563 717 563 655 q 521 823 563 781 q 392 872 474 872 q 265 824 312 872 q 224 720 224 783 q 265 613 224 656 q 394 565 312 565 m 395 91 q 545 150 488 91 q 597 280 597 204 q 546 408 597 355 q 395 465 492 465 q 244 408 299 465 q 194 280 194 356 q 244 150 194 203 q 395 91 299 91 "},9:{x_min:53,x_max:739,ha:792,o:"m 739 524 q 619 94 739 241 q 362 -32 516 -32 q 150 47 242 -32 q 59 244 59 126 l 191 244 q 246 129 191 176 q 373 82 301 82 q 526 161 466 82 q 597 440 597 255 q 363 334 501 334 q 130 432 216 334 q 53 650 53 521 q 134 880 53 786 q 383 986 226 986 q 659 841 566 986 q 739 524 739 719 m 388 449 q 535 514 480 449 q 585 658 585 573 q 535 805 585 744 q 388 873 480 873 q 242 809 294 873 q 191 658 191 745 q 239 514 191 572 q 388 449 292 449 "},ο:{x_min:0,x_max:712,ha:815,o:"m 356 -25 q 96 88 192 -25 q 0 368 0 201 q 92 642 0 533 q 356 761 192 761 q 617 644 517 761 q 712 368 712 533 q 619 91 712 201 q 356 -25 520 -25 m 356 85 q 527 175 465 85 q 583 369 583 255 q 528 562 583 484 q 356 651 466 651 q 189 560 250 651 q 135 369 135 481 q 187 177 135 257 q 356 85 250 85 "},S:{x_min:0,x_max:788,ha:890,o:"m 788 291 q 662 54 788 144 q 397 -26 550 -26 q 116 68 226 -26 q 0 337 0 168 l 131 337 q 200 152 131 220 q 384 85 269 85 q 557 129 479 85 q 650 270 650 183 q 490 429 650 379 q 194 513 341 470 q 33 739 33 584 q 142 964 33 881 q 388 1041 242 1041 q 644 957 543 1041 q 756 716 756 867 l 625 716 q 561 874 625 816 q 395 933 497 933 q 243 891 309 933 q 164 759 164 841 q 325 609 164 656 q 625 526 475 568 q 788 291 788 454 "},"¦":{x_min:343,x_max:449,ha:792,o:"m 449 462 l 343 462 l 343 986 l 449 986 l 449 462 m 449 -242 l 343 -242 l 343 280 l 449 280 l 449 -242 "},"/":{x_min:183.25,x_max:608.328125,ha:792,o:"m 608 1041 l 266 -129 l 183 -129 l 520 1041 l 608 1041 "},Τ:{x_min:-.4375,x_max:777.453125,ha:839,o:"m 777 893 l 458 893 l 458 0 l 319 0 l 319 892 l 0 892 l 0 1013 l 777 1013 l 777 893 "},y:{x_min:0,x_max:684.78125,ha:771,o:"m 684 738 l 388 -83 q 311 -216 356 -167 q 173 -279 252 -279 q 97 -266 133 -279 l 97 -149 q 132 -155 109 -151 q 168 -160 155 -160 q 240 -114 213 -160 q 274 -26 248 -98 l 0 738 l 137 737 l 341 139 l 548 737 l 684 738 "},Π:{x_min:0,x_max:803,ha:917,o:"m 803 0 l 667 0 l 667 886 l 140 886 l 140 0 l 0 0 l 0 1012 l 803 1012 l 803 0 "},ΐ:{x_min:-111,x_max:339,ha:361,o:"m 339 800 l 229 800 l 229 925 l 339 925 l 339 800 m -1 800 l -111 800 l -111 925 l -1 925 l -1 800 m 284 3 q 233 -10 258 -5 q 182 -15 207 -15 q 85 26 119 -15 q 42 200 42 79 l 42 737 l 167 737 l 168 215 q 172 141 168 157 q 226 101 183 101 q 248 103 239 101 q 284 112 257 104 l 284 3 m 302 1040 l 113 819 l 30 819 l 165 1040 l 302 1040 "},g:{x_min:0,x_max:686,ha:838,o:"m 686 34 q 586 -213 686 -121 q 331 -306 487 -306 q 131 -252 216 -306 q 31 -84 31 -190 l 155 -84 q 228 -174 166 -138 q 345 -207 284 -207 q 514 -109 454 -207 q 564 89 564 -27 q 461 6 521 36 q 335 -23 401 -23 q 88 100 184 -23 q 0 370 0 215 q 87 634 0 522 q 330 758 183 758 q 457 728 398 758 q 564 644 515 699 l 564 737 l 686 737 l 686 34 m 582 367 q 529 560 582 481 q 358 652 468 652 q 189 561 250 652 q 135 369 135 482 q 189 176 135 255 q 361 85 251 85 q 529 176 468 85 q 582 367 582 255 "},"²":{x_min:0,x_max:442,ha:539,o:"m 442 383 l 0 383 q 91 566 0 492 q 260 668 176 617 q 354 798 354 727 q 315 875 354 845 q 227 905 277 905 q 136 869 173 905 q 99 761 99 833 l 14 761 q 82 922 14 864 q 232 974 141 974 q 379 926 316 974 q 442 797 442 878 q 351 635 442 704 q 183 539 321 611 q 92 455 92 491 l 442 455 l 442 383 "},"–":{x_min:0,x_max:705.5625,ha:803,o:"m 705 334 l 0 334 l 0 410 l 705 410 l 705 334 "},Κ:{x_min:0,x_max:819.5625,ha:893,o:"m 819 0 l 650 0 l 294 509 l 139 356 l 139 0 l 0 0 l 0 1013 l 139 1013 l 139 526 l 626 1013 l 809 1013 l 395 600 l 819 0 "},ƒ:{x_min:-46.265625,x_max:392,ha:513,o:"m 392 651 l 259 651 l 79 -279 l -46 -278 l 134 651 l 14 651 l 14 751 l 135 751 q 151 948 135 900 q 304 1041 185 1041 q 334 1040 319 1041 q 392 1034 348 1039 l 392 922 q 337 931 360 931 q 271 883 287 931 q 260 793 260 853 l 260 751 l 392 751 l 392 651 "},e:{x_min:0,x_max:714,ha:813,o:"m 714 326 l 140 326 q 200 157 140 227 q 359 87 260 87 q 488 130 431 87 q 561 245 545 174 l 697 245 q 577 48 670 123 q 358 -26 484 -26 q 97 85 195 -26 q 0 363 0 197 q 94 642 0 529 q 358 765 195 765 q 626 627 529 765 q 714 326 714 503 m 576 429 q 507 583 564 522 q 355 650 445 650 q 206 583 266 650 q 140 429 152 522 l 576 429 "},ό:{x_min:0,x_max:712,ha:815,o:"m 356 -25 q 94 91 194 -25 q 0 368 0 202 q 92 642 0 533 q 356 761 192 761 q 617 644 517 761 q 712 368 712 533 q 619 91 712 201 q 356 -25 520 -25 m 356 85 q 527 175 465 85 q 583 369 583 255 q 528 562 583 484 q 356 651 466 651 q 189 560 250 651 q 135 369 135 481 q 187 177 135 257 q 356 85 250 85 m 576 1040 l 387 819 l 303 819 l 438 1040 l 576 1040 "},J:{x_min:0,x_max:588,ha:699,o:"m 588 279 q 287 -26 588 -26 q 58 73 126 -26 q 0 327 0 158 l 133 327 q 160 172 133 227 q 288 96 198 96 q 426 171 391 96 q 449 336 449 219 l 449 1013 l 588 1013 l 588 279 "},"»":{x_min:-1,x_max:503,ha:601,o:"m 503 302 l 280 136 l 281 256 l 429 373 l 281 486 l 280 608 l 503 440 l 503 302 m 221 302 l 0 136 l 0 255 l 145 372 l 0 486 l -1 608 l 221 440 l 221 302 "},"©":{x_min:-3,x_max:1008,ha:1106,o:"m 502 -7 q 123 151 263 -7 q -3 501 -3 294 q 123 851 -3 706 q 502 1011 263 1011 q 881 851 739 1011 q 1008 501 1008 708 q 883 151 1008 292 q 502 -7 744 -7 m 502 60 q 830 197 709 60 q 940 501 940 322 q 831 805 940 681 q 502 944 709 944 q 174 805 296 944 q 65 501 65 680 q 173 197 65 320 q 502 60 294 60 m 741 394 q 661 246 731 302 q 496 190 591 190 q 294 285 369 190 q 228 497 228 370 q 295 714 228 625 q 499 813 370 813 q 656 762 588 813 q 733 625 724 711 l 634 625 q 589 704 629 673 q 498 735 550 735 q 377 666 421 735 q 334 504 334 597 q 374 340 334 408 q 490 272 415 272 q 589 304 549 272 q 638 394 628 337 l 741 394 "},ώ:{x_min:0,x_max:922,ha:1030,o:"m 687 1040 l 498 819 l 415 819 l 549 1040 l 687 1040 m 922 339 q 856 97 922 203 q 650 -26 780 -26 q 538 9 587 -26 q 461 103 489 44 q 387 12 436 46 q 277 -22 339 -22 q 69 97 147 -22 q 0 338 0 202 q 45 551 0 444 q 161 737 84 643 l 302 737 q 175 552 219 647 q 124 336 124 446 q 155 179 124 248 q 275 88 197 88 q 375 163 341 88 q 400 294 400 219 l 400 572 l 524 572 l 524 294 q 561 135 524 192 q 643 88 591 88 q 762 182 719 88 q 797 341 797 257 q 745 555 797 450 q 619 737 705 637 l 760 737 q 874 551 835 640 q 922 339 922 444 "},"^":{x_min:193.0625,x_max:598.609375,ha:792,o:"m 598 772 l 515 772 l 395 931 l 277 772 l 193 772 l 326 1013 l 462 1013 l 598 772 "},"«":{x_min:0,x_max:507.203125,ha:604,o:"m 506 136 l 284 302 l 284 440 l 506 608 l 507 485 l 360 371 l 506 255 l 506 136 m 222 136 l 0 302 l 0 440 l 222 608 l 221 486 l 73 373 l 222 256 l 222 136 "},D:{x_min:0,x_max:828,ha:935,o:"m 389 1013 q 714 867 593 1013 q 828 521 828 729 q 712 161 828 309 q 382 0 587 0 l 0 0 l 0 1013 l 389 1013 m 376 124 q 607 247 523 124 q 681 510 681 355 q 607 771 681 662 q 376 896 522 896 l 139 896 l 139 124 l 376 124 "},"∙":{x_min:0,x_max:142,ha:239,o:"m 142 585 l 0 585 l 0 738 l 142 738 l 142 585 "},ÿ:{x_min:0,x_max:47,ha:125,o:"m 47 3 q 37 -7 47 -7 q 28 0 30 -7 q 39 -4 32 -4 q 45 3 45 -1 l 37 0 q 28 9 28 0 q 39 19 28 19 l 47 16 l 47 19 l 47 3 m 37 1 q 44 8 44 1 q 37 16 44 16 q 30 8 30 16 q 37 1 30 1 m 26 1 l 23 22 l 14 0 l 3 22 l 3 3 l 0 25 l 13 1 l 22 25 l 26 1 "},w:{x_min:0,x_max:1009.71875,ha:1100,o:"m 1009 738 l 783 0 l 658 0 l 501 567 l 345 0 l 222 0 l 0 738 l 130 738 l 284 174 l 432 737 l 576 738 l 721 173 l 881 737 l 1009 738 "},$:{x_min:0,x_max:700,ha:793,o:"m 664 717 l 542 717 q 490 825 531 785 q 381 872 450 865 l 381 551 q 620 446 540 522 q 700 241 700 370 q 618 45 700 116 q 381 -25 536 -25 l 381 -152 l 307 -152 l 307 -25 q 81 62 162 -25 q 0 297 0 149 l 124 297 q 169 146 124 204 q 307 81 215 89 l 307 441 q 80 536 148 469 q 13 725 13 603 q 96 910 13 839 q 307 982 180 982 l 307 1077 l 381 1077 l 381 982 q 574 917 494 982 q 664 717 664 845 m 307 565 l 307 872 q 187 831 233 872 q 142 724 142 791 q 180 618 142 656 q 307 565 218 580 m 381 76 q 562 237 562 96 q 517 361 562 313 q 381 423 472 409 l 381 76 "},"\\":{x_min:-.015625,x_max:425.0625,ha:522,o:"m 425 -129 l 337 -129 l 0 1041 l 83 1041 l 425 -129 "},µ:{x_min:0,x_max:697.21875,ha:747,o:"m 697 -4 q 629 -14 658 -14 q 498 97 513 -14 q 422 9 470 41 q 313 -23 374 -23 q 207 4 258 -23 q 119 81 156 32 l 119 -278 l 0 -278 l 0 738 l 124 738 l 124 343 q 165 173 124 246 q 308 83 216 83 q 452 178 402 83 q 493 359 493 255 l 493 738 l 617 738 l 617 214 q 623 136 617 160 q 673 92 637 92 q 697 96 684 92 l 697 -4 "},Ι:{x_min:42,x_max:181,ha:297,o:"m 181 0 l 42 0 l 42 1013 l 181 1013 l 181 0 "},Ύ:{x_min:0,x_max:1144.5,ha:1214,o:"m 1144 1012 l 807 416 l 807 0 l 667 0 l 667 416 l 325 1012 l 465 1012 l 736 533 l 1004 1012 l 1144 1012 m 277 1040 l 83 799 l 0 799 l 140 1040 l 277 1040 "},"’":{x_min:0,x_max:139,ha:236,o:"m 139 851 q 102 737 139 784 q 0 669 65 690 l 0 734 q 59 787 42 741 q 72 873 72 821 l 0 873 l 0 1013 l 139 1013 l 139 851 "},Ν:{x_min:0,x_max:801,ha:915,o:"m 801 0 l 651 0 l 131 822 l 131 0 l 0 0 l 0 1013 l 151 1013 l 670 191 l 670 1013 l 801 1013 l 801 0 "},"-":{x_min:8.71875,x_max:350.390625,ha:478,o:"m 350 317 l 8 317 l 8 428 l 350 428 l 350 317 "},Q:{x_min:0,x_max:968,ha:1072,o:"m 954 5 l 887 -79 l 744 35 q 622 -11 687 2 q 483 -26 556 -26 q 127 130 262 -26 q 0 504 0 279 q 127 880 0 728 q 484 1041 262 1041 q 841 884 708 1041 q 968 507 968 735 q 933 293 968 398 q 832 104 899 188 l 954 5 m 723 191 q 802 330 777 248 q 828 499 828 412 q 744 790 828 673 q 483 922 650 922 q 228 791 322 922 q 142 505 142 673 q 227 221 142 337 q 487 91 323 91 q 632 123 566 91 l 520 215 l 587 301 l 723 191 "},ς:{x_min:1,x_max:676.28125,ha:740,o:"m 676 460 l 551 460 q 498 595 542 546 q 365 651 448 651 q 199 578 263 651 q 136 401 136 505 q 266 178 136 241 q 508 106 387 142 q 640 -50 640 62 q 625 -158 640 -105 q 583 -278 611 -211 l 465 -278 q 498 -182 490 -211 q 515 -80 515 -126 q 381 12 515 -15 q 134 91 197 51 q 1 388 1 179 q 100 651 1 542 q 354 761 199 761 q 587 680 498 761 q 676 460 676 599 "},M:{x_min:0,x_max:954,ha:1067,o:"m 954 0 l 819 0 l 819 869 l 537 0 l 405 0 l 128 866 l 128 0 l 0 0 l 0 1013 l 200 1013 l 472 160 l 757 1013 l 954 1013 l 954 0 "},Ψ:{x_min:0,x_max:1006,ha:1094,o:"m 1006 678 q 914 319 1006 429 q 571 200 814 200 l 571 0 l 433 0 l 433 200 q 92 319 194 200 q 0 678 0 429 l 0 1013 l 139 1013 l 139 679 q 191 417 139 492 q 433 326 255 326 l 433 1013 l 571 1013 l 571 326 l 580 326 q 813 423 747 326 q 868 679 868 502 l 868 1013 l 1006 1013 l 1006 678 "},C:{x_min:0,x_max:886,ha:944,o:"m 886 379 q 760 87 886 201 q 455 -26 634 -26 q 112 136 236 -26 q 0 509 0 283 q 118 882 0 737 q 469 1041 245 1041 q 748 955 630 1041 q 879 708 879 859 l 745 708 q 649 862 724 805 q 473 920 573 920 q 219 791 312 920 q 136 509 136 675 q 217 229 136 344 q 470 99 311 99 q 672 179 591 99 q 753 379 753 259 l 886 379 "},"!":{x_min:0,x_max:138,ha:236,o:"m 138 684 q 116 409 138 629 q 105 244 105 299 l 33 244 q 16 465 33 313 q 0 684 0 616 l 0 1013 l 138 1013 l 138 684 m 138 0 l 0 0 l 0 151 l 138 151 l 138 0 "},"{":{x_min:0,x_max:480.5625,ha:578,o:"m 480 -286 q 237 -213 303 -286 q 187 -45 187 -159 q 194 48 187 -15 q 201 141 201 112 q 164 264 201 225 q 0 314 118 314 l 0 417 q 164 471 119 417 q 201 605 201 514 q 199 665 201 644 q 193 772 193 769 q 241 941 193 887 q 480 1015 308 1015 l 480 915 q 336 866 375 915 q 306 742 306 828 q 310 662 306 717 q 314 577 314 606 q 288 452 314 500 q 176 365 256 391 q 289 275 257 337 q 314 143 314 226 q 313 84 314 107 q 310 -11 310 -5 q 339 -131 310 -94 q 480 -182 377 -182 l 480 -286 "},X:{x_min:-.015625,x_max:854.15625,ha:940,o:"m 854 0 l 683 0 l 423 409 l 166 0 l 0 0 l 347 519 l 18 1013 l 186 1013 l 428 637 l 675 1013 l 836 1013 l 504 520 l 854 0 "},"#":{x_min:0,x_max:963.890625,ha:1061,o:"m 963 690 l 927 590 l 719 590 l 655 410 l 876 410 l 840 310 l 618 310 l 508 -3 l 393 -2 l 506 309 l 329 310 l 215 -2 l 102 -3 l 212 310 l 0 310 l 36 410 l 248 409 l 312 590 l 86 590 l 120 690 l 347 690 l 459 1006 l 573 1006 l 462 690 l 640 690 l 751 1006 l 865 1006 l 754 690 l 963 690 m 606 590 l 425 590 l 362 410 l 543 410 l 606 590 "},ι:{x_min:42,x_max:284,ha:361,o:"m 284 3 q 233 -10 258 -5 q 182 -15 207 -15 q 85 26 119 -15 q 42 200 42 79 l 42 738 l 167 738 l 168 215 q 172 141 168 157 q 226 101 183 101 q 248 103 239 101 q 284 112 257 104 l 284 3 "},Ά:{x_min:0,x_max:906.953125,ha:982,o:"m 283 1040 l 88 799 l 5 799 l 145 1040 l 283 1040 m 906 0 l 756 0 l 650 303 l 251 303 l 143 0 l 0 0 l 376 1012 l 529 1012 l 906 0 m 609 421 l 452 866 l 293 421 l 609 421 "},")":{x_min:0,x_max:318,ha:415,o:"m 318 365 q 257 25 318 191 q 87 -290 197 -141 l 0 -290 q 140 21 93 -128 q 193 360 193 189 q 141 704 193 537 q 0 1024 97 850 l 87 1024 q 257 706 197 871 q 318 365 318 542 "},ε:{x_min:0,x_max:634.71875,ha:714,o:"m 634 234 q 527 38 634 110 q 300 -25 433 -25 q 98 29 183 -25 q 0 204 0 93 q 37 314 0 265 q 128 390 67 353 q 56 460 82 419 q 26 555 26 505 q 114 712 26 654 q 295 763 191 763 q 499 700 416 763 q 589 515 589 631 l 478 515 q 419 618 464 580 q 307 657 374 657 q 207 630 253 657 q 151 547 151 598 q 238 445 151 469 q 389 434 280 434 l 389 331 l 349 331 q 206 315 255 331 q 125 210 125 287 q 183 107 125 145 q 302 76 233 76 q 436 117 379 76 q 509 234 493 159 l 634 234 "},Δ:{x_min:0,x_max:952.78125,ha:1028,o:"m 952 0 l 0 0 l 400 1013 l 551 1013 l 952 0 m 762 124 l 476 867 l 187 124 l 762 124 "},"}":{x_min:0,x_max:481,ha:578,o:"m 481 314 q 318 262 364 314 q 282 136 282 222 q 284 65 282 97 q 293 -58 293 -48 q 241 -217 293 -166 q 0 -286 174 -286 l 0 -182 q 143 -130 105 -182 q 171 -2 171 -93 q 168 81 171 22 q 165 144 165 140 q 188 275 165 229 q 306 365 220 339 q 191 455 224 391 q 165 588 165 505 q 168 681 165 624 q 171 742 171 737 q 141 865 171 827 q 0 915 102 915 l 0 1015 q 243 942 176 1015 q 293 773 293 888 q 287 675 293 741 q 282 590 282 608 q 318 466 282 505 q 481 417 364 417 l 481 314 "},"‰":{x_min:-3,x_max:1672,ha:1821,o:"m 846 0 q 664 76 732 0 q 603 244 603 145 q 662 412 603 344 q 846 489 729 489 q 1027 412 959 489 q 1089 244 1089 343 q 1029 76 1089 144 q 846 0 962 0 m 845 103 q 945 143 910 103 q 981 243 981 184 q 947 340 981 301 q 845 385 910 385 q 745 342 782 385 q 709 243 709 300 q 742 147 709 186 q 845 103 781 103 m 888 986 l 284 -25 l 199 -25 l 803 986 l 888 986 m 241 468 q 58 545 126 468 q -3 715 -3 615 q 56 881 -3 813 q 238 958 124 958 q 421 881 353 958 q 483 712 483 813 q 423 544 483 612 q 241 468 356 468 m 241 855 q 137 811 175 855 q 100 710 100 768 q 136 612 100 653 q 240 572 172 572 q 344 614 306 572 q 382 713 382 656 q 347 810 382 771 q 241 855 308 855 m 1428 0 q 1246 76 1314 0 q 1185 244 1185 145 q 1244 412 1185 344 q 1428 489 1311 489 q 1610 412 1542 489 q 1672 244 1672 343 q 1612 76 1672 144 q 1428 0 1545 0 m 1427 103 q 1528 143 1492 103 q 1564 243 1564 184 q 1530 340 1564 301 q 1427 385 1492 385 q 1327 342 1364 385 q 1291 243 1291 300 q 1324 147 1291 186 q 1427 103 1363 103 "},a:{x_min:0,x_max:698.609375,ha:794,o:"m 698 0 q 661 -12 679 -7 q 615 -17 643 -17 q 536 12 564 -17 q 500 96 508 41 q 384 6 456 37 q 236 -25 312 -25 q 65 31 130 -25 q 0 194 0 88 q 118 390 0 334 q 328 435 180 420 q 488 483 476 451 q 495 523 495 504 q 442 619 495 584 q 325 654 389 654 q 209 617 257 654 q 152 513 161 580 l 33 513 q 123 705 33 633 q 332 772 207 772 q 528 712 448 772 q 617 531 617 645 l 617 163 q 624 108 617 126 q 664 90 632 90 l 698 94 l 698 0 m 491 262 l 491 372 q 272 329 350 347 q 128 201 128 294 q 166 113 128 144 q 264 83 205 83 q 414 130 346 83 q 491 262 491 183 "},"—":{x_min:0,x_max:941.671875,ha:1039,o:"m 941 334 l 0 334 l 0 410 l 941 410 l 941 334 "},"=":{x_min:8.71875,x_max:780.953125,ha:792,o:"m 780 510 l 8 510 l 8 606 l 780 606 l 780 510 m 780 235 l 8 235 l 8 332 l 780 332 l 780 235 "},N:{x_min:0,x_max:801,ha:914,o:"m 801 0 l 651 0 l 131 823 l 131 0 l 0 0 l 0 1013 l 151 1013 l 670 193 l 670 1013 l 801 1013 l 801 0 "},ρ:{x_min:0,x_max:712,ha:797,o:"m 712 369 q 620 94 712 207 q 362 -26 521 -26 q 230 2 292 -26 q 119 83 167 30 l 119 -278 l 0 -278 l 0 362 q 91 643 0 531 q 355 764 190 764 q 617 647 517 764 q 712 369 712 536 m 583 366 q 530 559 583 480 q 359 651 469 651 q 190 562 252 651 q 135 370 135 483 q 189 176 135 257 q 359 85 250 85 q 528 175 466 85 q 583 366 583 254 "},"¯":{x_min:0,x_max:941.671875,ha:938,o:"m 941 1033 l 0 1033 l 0 1109 l 941 1109 l 941 1033 "},Z:{x_min:0,x_max:779,ha:849,o:"m 779 0 l 0 0 l 0 113 l 621 896 l 40 896 l 40 1013 l 779 1013 l 778 887 l 171 124 l 779 124 l 779 0 "},u:{x_min:0,x_max:617,ha:729,o:"m 617 0 l 499 0 l 499 110 q 391 10 460 45 q 246 -25 322 -25 q 61 58 127 -25 q 0 258 0 136 l 0 738 l 125 738 l 125 284 q 156 148 125 202 q 273 82 197 82 q 433 165 369 82 q 493 340 493 243 l 493 738 l 617 738 l 617 0 "},k:{x_min:0,x_max:612.484375,ha:697,o:"m 612 738 l 338 465 l 608 0 l 469 0 l 251 382 l 121 251 l 121 0 l 0 0 l 0 1013 l 121 1013 l 121 402 l 456 738 l 612 738 "},Η:{x_min:0,x_max:803,ha:917,o:"m 803 0 l 667 0 l 667 475 l 140 475 l 140 0 l 0 0 l 0 1013 l 140 1013 l 140 599 l 667 599 l 667 1013 l 803 1013 l 803 0 "},Α:{x_min:0,x_max:906.953125,ha:985,o:"m 906 0 l 756 0 l 650 303 l 251 303 l 143 0 l 0 0 l 376 1013 l 529 1013 l 906 0 m 609 421 l 452 866 l 293 421 l 609 421 "},s:{x_min:0,x_max:604,ha:697,o:"m 604 217 q 501 36 604 104 q 292 -23 411 -23 q 86 43 166 -23 q 0 238 0 114 l 121 237 q 175 122 121 164 q 300 85 223 85 q 415 112 363 85 q 479 207 479 147 q 361 309 479 276 q 140 372 141 370 q 21 544 21 426 q 111 708 21 647 q 298 761 190 761 q 492 705 413 761 q 583 531 583 643 l 462 531 q 412 625 462 594 q 298 657 363 657 q 199 636 242 657 q 143 558 143 608 q 262 454 143 486 q 484 394 479 397 q 604 217 604 341 "},B:{x_min:0,x_max:778,ha:876,o:"m 580 546 q 724 469 670 535 q 778 311 778 403 q 673 83 778 171 q 432 0 575 0 l 0 0 l 0 1013 l 411 1013 q 629 957 541 1013 q 732 768 732 892 q 691 633 732 693 q 580 546 650 572 m 393 899 l 139 899 l 139 588 l 379 588 q 521 624 462 588 q 592 744 592 667 q 531 859 592 819 q 393 899 471 899 m 419 124 q 566 169 504 124 q 635 303 635 219 q 559 436 635 389 q 402 477 494 477 l 139 477 l 139 124 l 419 124 "},"…":{x_min:0,x_max:614,ha:708,o:"m 142 0 l 0 0 l 0 151 l 142 151 l 142 0 m 378 0 l 236 0 l 236 151 l 378 151 l 378 0 m 614 0 l 472 0 l 472 151 l 614 151 l 614 0 "},"?":{x_min:0,x_max:607,ha:704,o:"m 607 777 q 543 599 607 674 q 422 474 482 537 q 357 272 357 391 l 236 272 q 297 487 236 395 q 411 619 298 490 q 474 762 474 691 q 422 885 474 838 q 301 933 371 933 q 179 880 228 933 q 124 706 124 819 l 0 706 q 94 963 0 872 q 302 1044 177 1044 q 511 973 423 1044 q 607 777 607 895 m 370 0 l 230 0 l 230 151 l 370 151 l 370 0 "},H:{x_min:0,x_max:803,ha:915,o:"m 803 0 l 667 0 l 667 475 l 140 475 l 140 0 l 0 0 l 0 1013 l 140 1013 l 140 599 l 667 599 l 667 1013 l 803 1013 l 803 0 "},ν:{x_min:0,x_max:675,ha:761,o:"m 675 738 l 404 0 l 272 0 l 0 738 l 133 738 l 340 147 l 541 738 l 675 738 "},c:{x_min:1,x_max:701.390625,ha:775,o:"m 701 264 q 584 53 681 133 q 353 -26 487 -26 q 91 91 188 -26 q 1 370 1 201 q 92 645 1 537 q 353 761 190 761 q 572 688 479 761 q 690 493 666 615 l 556 493 q 487 606 545 562 q 356 650 428 650 q 186 563 246 650 q 134 372 134 487 q 188 179 134 258 q 359 88 250 88 q 492 136 437 88 q 566 264 548 185 l 701 264 "},"¶":{x_min:0,x_max:566.671875,ha:678,o:"m 21 892 l 52 892 l 98 761 l 145 892 l 176 892 l 178 741 l 157 741 l 157 867 l 108 741 l 88 741 l 40 871 l 40 741 l 21 741 l 21 892 m 308 854 l 308 731 q 252 691 308 691 q 227 691 240 691 q 207 696 213 695 l 207 712 l 253 706 q 288 733 288 706 l 288 763 q 244 741 279 741 q 193 797 193 741 q 261 860 193 860 q 287 860 273 860 q 308 854 302 855 m 288 842 l 263 843 q 213 796 213 843 q 248 756 213 756 q 288 796 288 756 l 288 842 m 566 988 l 502 988 l 502 -1 l 439 -1 l 439 988 l 317 988 l 317 -1 l 252 -1 l 252 602 q 81 653 155 602 q 0 805 0 711 q 101 989 0 918 q 309 1053 194 1053 l 566 1053 l 566 988 "},β:{x_min:0,x_max:660,ha:745,o:"m 471 550 q 610 450 561 522 q 660 280 660 378 q 578 64 660 151 q 367 -22 497 -22 q 239 5 299 -22 q 126 82 178 32 l 126 -278 l 0 -278 l 0 593 q 54 903 0 801 q 318 1042 127 1042 q 519 964 436 1042 q 603 771 603 887 q 567 644 603 701 q 471 550 532 586 m 337 79 q 476 138 418 79 q 535 279 535 198 q 427 437 535 386 q 226 477 344 477 l 226 583 q 398 620 329 583 q 486 762 486 668 q 435 884 486 833 q 312 935 384 935 q 169 861 219 935 q 126 698 126 797 l 126 362 q 170 169 126 242 q 337 79 224 79 "},Μ:{x_min:0,x_max:954,ha:1068,o:"m 954 0 l 819 0 l 819 868 l 537 0 l 405 0 l 128 865 l 128 0 l 0 0 l 0 1013 l 199 1013 l 472 158 l 758 1013 l 954 1013 l 954 0 "},Ό:{x_min:.109375,x_max:1120,ha:1217,o:"m 1120 505 q 994 132 1120 282 q 642 -29 861 -29 q 290 130 422 -29 q 167 505 167 280 q 294 883 167 730 q 650 1046 430 1046 q 999 882 868 1046 q 1120 505 1120 730 m 977 504 q 896 784 977 669 q 644 915 804 915 q 391 785 484 915 q 307 504 307 669 q 391 224 307 339 q 644 95 486 95 q 894 224 803 95 q 977 504 977 339 m 277 1040 l 83 799 l 0 799 l 140 1040 l 277 1040 "},Ή:{x_min:0,x_max:1158,ha:1275,o:"m 1158 0 l 1022 0 l 1022 475 l 496 475 l 496 0 l 356 0 l 356 1012 l 496 1012 l 496 599 l 1022 599 l 1022 1012 l 1158 1012 l 1158 0 m 277 1040 l 83 799 l 0 799 l 140 1040 l 277 1040 "},"•":{x_min:0,x_max:663.890625,ha:775,o:"m 663 529 q 566 293 663 391 q 331 196 469 196 q 97 294 194 196 q 0 529 0 393 q 96 763 0 665 q 331 861 193 861 q 566 763 469 861 q 663 529 663 665 "},"¥":{x_min:.1875,x_max:819.546875,ha:886,o:"m 563 561 l 697 561 l 696 487 l 520 487 l 482 416 l 482 380 l 697 380 l 695 308 l 482 308 l 482 0 l 342 0 l 342 308 l 125 308 l 125 380 l 342 380 l 342 417 l 303 487 l 125 487 l 125 561 l 258 561 l 0 1013 l 140 1013 l 411 533 l 679 1013 l 819 1013 l 563 561 "},"(":{x_min:0,x_max:318.0625,ha:415,o:"m 318 -290 l 230 -290 q 61 23 122 -142 q 0 365 0 190 q 62 712 0 540 q 230 1024 119 869 l 318 1024 q 175 705 219 853 q 125 360 125 542 q 176 22 125 187 q 318 -290 223 -127 "},U:{x_min:0,x_max:796,ha:904,o:"m 796 393 q 681 93 796 212 q 386 -25 566 -25 q 101 95 208 -25 q 0 393 0 211 l 0 1013 l 138 1013 l 138 391 q 204 191 138 270 q 394 107 276 107 q 586 191 512 107 q 656 391 656 270 l 656 1013 l 796 1013 l 796 393 "},γ:{x_min:.5,x_max:744.953125,ha:822,o:"m 744 737 l 463 54 l 463 -278 l 338 -278 l 338 54 l 154 495 q 104 597 124 569 q 13 651 67 651 l 0 651 l 0 751 l 39 753 q 168 711 121 753 q 242 594 207 676 l 403 208 l 617 737 l 744 737 "},α:{x_min:0,x_max:765.5625,ha:809,o:"m 765 -4 q 698 -14 726 -14 q 564 97 586 -14 q 466 7 525 40 q 337 -26 407 -26 q 88 98 186 -26 q 0 369 0 212 q 88 637 0 525 q 337 760 184 760 q 465 728 407 760 q 563 637 524 696 l 563 739 l 685 739 l 685 222 q 693 141 685 168 q 748 94 708 94 q 765 96 760 94 l 765 -4 m 584 371 q 531 562 584 485 q 360 653 470 653 q 192 566 254 653 q 135 379 135 489 q 186 181 135 261 q 358 84 247 84 q 528 176 465 84 q 584 371 584 260 "},F:{x_min:0,x_max:683.328125,ha:717,o:"m 683 888 l 140 888 l 140 583 l 613 583 l 613 458 l 140 458 l 140 0 l 0 0 l 0 1013 l 683 1013 l 683 888 "},"­":{x_min:0,x_max:705.5625,ha:803,o:"m 705 334 l 0 334 l 0 410 l 705 410 l 705 334 "},":":{x_min:0,x_max:142,ha:239,o:"m 142 585 l 0 585 l 0 738 l 142 738 l 142 585 m 142 0 l 0 0 l 0 151 l 142 151 l 142 0 "},Χ:{x_min:0,x_max:854.171875,ha:935,o:"m 854 0 l 683 0 l 423 409 l 166 0 l 0 0 l 347 519 l 18 1013 l 186 1013 l 427 637 l 675 1013 l 836 1013 l 504 521 l 854 0 "},"*":{x_min:116,x_max:674,ha:792,o:"m 674 768 l 475 713 l 610 544 l 517 477 l 394 652 l 272 478 l 178 544 l 314 713 l 116 766 l 153 876 l 341 812 l 342 1013 l 446 1013 l 446 811 l 635 874 l 674 768 "},"†":{x_min:0,x_max:777,ha:835,o:"m 458 804 l 777 804 l 777 683 l 458 683 l 458 0 l 319 0 l 319 681 l 0 683 l 0 804 l 319 804 l 319 1015 l 458 1013 l 458 804 "},"°":{x_min:0,x_max:347,ha:444,o:"m 173 802 q 43 856 91 802 q 0 977 0 905 q 45 1101 0 1049 q 173 1153 90 1153 q 303 1098 255 1153 q 347 977 347 1049 q 303 856 347 905 q 173 802 256 802 m 173 884 q 238 910 214 884 q 262 973 262 937 q 239 1038 262 1012 q 173 1064 217 1064 q 108 1037 132 1064 q 85 973 85 1010 q 108 910 85 937 q 173 884 132 884 "},V:{x_min:0,x_max:862.71875,ha:940,o:"m 862 1013 l 505 0 l 361 0 l 0 1013 l 143 1013 l 434 165 l 718 1012 l 862 1013 "},Ξ:{x_min:0,x_max:734.71875,ha:763,o:"m 723 889 l 9 889 l 9 1013 l 723 1013 l 723 889 m 673 463 l 61 463 l 61 589 l 673 589 l 673 463 m 734 0 l 0 0 l 0 124 l 734 124 l 734 0 "}," ":{x_min:0,x_max:0,ha:853},Ϋ:{x_min:.328125,x_max:819.515625,ha:889,o:"m 588 1046 l 460 1046 l 460 1189 l 588 1189 l 588 1046 m 360 1046 l 232 1046 l 232 1189 l 360 1189 l 360 1046 m 819 1012 l 482 416 l 482 0 l 342 0 l 342 416 l 0 1012 l 140 1012 l 411 533 l 679 1012 l 819 1012 "},"”":{x_min:0,x_max:347,ha:454,o:"m 139 851 q 102 737 139 784 q 0 669 65 690 l 0 734 q 59 787 42 741 q 72 873 72 821 l 0 873 l 0 1013 l 139 1013 l 139 851 m 347 851 q 310 737 347 784 q 208 669 273 690 l 208 734 q 267 787 250 741 q 280 873 280 821 l 208 873 l 208 1013 l 347 1013 l 347 851 "},"@":{x_min:0,x_max:1260,ha:1357,o:"m 1098 -45 q 877 -160 1001 -117 q 633 -203 752 -203 q 155 -29 327 -203 q 0 360 0 127 q 176 802 0 616 q 687 1008 372 1008 q 1123 854 969 1008 q 1260 517 1260 718 q 1155 216 1260 341 q 868 82 1044 82 q 772 106 801 82 q 737 202 737 135 q 647 113 700 144 q 527 82 594 82 q 367 147 420 82 q 314 312 314 212 q 401 565 314 452 q 639 690 498 690 q 810 588 760 690 l 849 668 l 938 668 q 877 441 900 532 q 833 226 833 268 q 853 182 833 198 q 902 167 873 167 q 1088 272 1012 167 q 1159 512 1159 372 q 1051 793 1159 681 q 687 925 925 925 q 248 747 415 925 q 97 361 97 586 q 226 26 97 159 q 627 -122 370 -122 q 856 -87 737 -122 q 1061 8 976 -53 l 1098 -45 m 786 488 q 738 580 777 545 q 643 615 700 615 q 483 517 548 615 q 425 322 425 430 q 457 203 425 250 q 552 156 490 156 q 722 273 665 156 q 786 488 738 309 "},Ί:{x_min:0,x_max:499,ha:613,o:"m 277 1040 l 83 799 l 0 799 l 140 1040 l 277 1040 m 499 0 l 360 0 l 360 1012 l 499 1012 l 499 0 "},i:{x_min:14,x_max:136,ha:275,o:"m 136 873 l 14 873 l 14 1013 l 136 1013 l 136 873 m 136 0 l 14 0 l 14 737 l 136 737 l 136 0 "},Β:{x_min:0,x_max:778,ha:877,o:"m 580 545 q 724 468 671 534 q 778 310 778 402 q 673 83 778 170 q 432 0 575 0 l 0 0 l 0 1013 l 411 1013 q 629 957 541 1013 q 732 768 732 891 q 691 632 732 692 q 580 545 650 571 m 393 899 l 139 899 l 139 587 l 379 587 q 521 623 462 587 q 592 744 592 666 q 531 859 592 819 q 393 899 471 899 m 419 124 q 566 169 504 124 q 635 302 635 219 q 559 435 635 388 q 402 476 494 476 l 139 476 l 139 124 l 419 124 "},υ:{x_min:0,x_max:617,ha:725,o:"m 617 352 q 540 94 617 199 q 308 -24 455 -24 q 76 94 161 -24 q 0 352 0 199 l 0 739 l 126 739 l 126 355 q 169 185 126 257 q 312 98 220 98 q 451 185 402 98 q 492 355 492 257 l 492 739 l 617 739 l 617 352 "},"]":{x_min:0,x_max:275,ha:372,o:"m 275 -281 l 0 -281 l 0 -187 l 151 -187 l 151 920 l 0 920 l 0 1013 l 275 1013 l 275 -281 "},m:{x_min:0,x_max:1019,ha:1128,o:"m 1019 0 l 897 0 l 897 454 q 860 591 897 536 q 739 660 816 660 q 613 586 659 660 q 573 436 573 522 l 573 0 l 447 0 l 447 455 q 412 591 447 535 q 294 657 372 657 q 165 586 213 657 q 122 437 122 521 l 122 0 l 0 0 l 0 738 l 117 738 l 117 640 q 202 730 150 697 q 316 763 254 763 q 437 730 381 763 q 525 642 494 697 q 621 731 559 700 q 753 763 682 763 q 943 694 867 763 q 1019 512 1019 625 l 1019 0 "},χ:{x_min:8.328125,x_max:780.5625,ha:815,o:"m 780 -278 q 715 -294 747 -294 q 616 -257 663 -294 q 548 -175 576 -227 l 379 133 l 143 -277 l 9 -277 l 313 254 l 163 522 q 127 586 131 580 q 36 640 91 640 q 8 637 27 640 l 8 752 l 52 757 q 162 719 113 757 q 236 627 200 690 l 383 372 l 594 737 l 726 737 l 448 250 l 625 -69 q 670 -153 647 -110 q 743 -188 695 -188 q 780 -184 759 -188 l 780 -278 "},ί:{x_min:42,x_max:326.71875,ha:361,o:"m 284 3 q 233 -10 258 -5 q 182 -15 207 -15 q 85 26 119 -15 q 42 200 42 79 l 42 737 l 167 737 l 168 215 q 172 141 168 157 q 226 101 183 101 q 248 102 239 101 q 284 112 257 104 l 284 3 m 326 1040 l 137 819 l 54 819 l 189 1040 l 326 1040 "},Ζ:{x_min:0,x_max:779.171875,ha:850,o:"m 779 0 l 0 0 l 0 113 l 620 896 l 40 896 l 40 1013 l 779 1013 l 779 887 l 170 124 l 779 124 l 779 0 "},R:{x_min:0,x_max:781.953125,ha:907,o:"m 781 0 l 623 0 q 587 242 590 52 q 407 433 585 433 l 138 433 l 138 0 l 0 0 l 0 1013 l 396 1013 q 636 946 539 1013 q 749 731 749 868 q 711 597 749 659 q 608 502 674 534 q 718 370 696 474 q 729 207 722 352 q 781 26 736 62 l 781 0 m 373 551 q 533 594 465 551 q 614 731 614 645 q 532 859 614 815 q 373 896 465 896 l 138 896 l 138 551 l 373 551 "},o:{x_min:0,x_max:713,ha:821,o:"m 357 -25 q 94 91 194 -25 q 0 368 0 202 q 93 642 0 533 q 357 761 193 761 q 618 644 518 761 q 713 368 713 533 q 619 91 713 201 q 357 -25 521 -25 m 357 85 q 528 175 465 85 q 584 369 584 255 q 529 562 584 484 q 357 651 467 651 q 189 560 250 651 q 135 369 135 481 q 187 177 135 257 q 357 85 250 85 "},K:{x_min:0,x_max:819.46875,ha:906,o:"m 819 0 l 649 0 l 294 509 l 139 355 l 139 0 l 0 0 l 0 1013 l 139 1013 l 139 526 l 626 1013 l 809 1013 l 395 600 l 819 0 "},",":{x_min:0,x_max:142,ha:239,o:"m 142 -12 q 105 -132 142 -82 q 0 -205 68 -182 l 0 -138 q 57 -82 40 -124 q 70 0 70 -51 l 0 0 l 0 151 l 142 151 l 142 -12 "},d:{x_min:0,x_max:683,ha:796,o:"m 683 0 l 564 0 l 564 93 q 456 6 516 38 q 327 -25 395 -25 q 87 100 181 -25 q 0 365 0 215 q 90 639 0 525 q 343 763 187 763 q 564 647 486 763 l 564 1013 l 683 1013 l 683 0 m 582 373 q 529 562 582 484 q 361 653 468 653 q 190 561 253 653 q 135 365 135 479 q 189 175 135 254 q 358 85 251 85 q 529 178 468 85 q 582 373 582 258 "},"¨":{x_min:-109,x_max:247,ha:232,o:"m 247 1046 l 119 1046 l 119 1189 l 247 1189 l 247 1046 m 19 1046 l -109 1046 l -109 1189 l 19 1189 l 19 1046 "},E:{x_min:0,x_max:736.109375,ha:789,o:"m 736 0 l 0 0 l 0 1013 l 725 1013 l 725 889 l 139 889 l 139 585 l 677 585 l 677 467 l 139 467 l 139 125 l 736 125 l 736 0 "},Y:{x_min:0,x_max:820,ha:886,o:"m 820 1013 l 482 416 l 482 0 l 342 0 l 342 416 l 0 1013 l 140 1013 l 411 534 l 679 1012 l 820 1013 "},'"':{x_min:0,x_max:299,ha:396,o:"m 299 606 l 203 606 l 203 988 l 299 988 l 299 606 m 96 606 l 0 606 l 0 988 l 96 988 l 96 606 "},"‹":{x_min:17.984375,x_max:773.609375,ha:792,o:"m 773 40 l 18 376 l 17 465 l 773 799 l 773 692 l 159 420 l 773 149 l 773 40 "},"„":{x_min:0,x_max:364,ha:467,o:"m 141 -12 q 104 -132 141 -82 q 0 -205 67 -182 l 0 -138 q 56 -82 40 -124 q 69 0 69 -51 l 0 0 l 0 151 l 141 151 l 141 -12 m 364 -12 q 327 -132 364 -82 q 222 -205 290 -182 l 222 -138 q 279 -82 262 -124 q 292 0 292 -51 l 222 0 l 222 151 l 364 151 l 364 -12 "},δ:{x_min:1,x_max:710,ha:810,o:"m 710 360 q 616 87 710 196 q 356 -28 518 -28 q 99 82 197 -28 q 1 356 1 192 q 100 606 1 509 q 355 703 199 703 q 180 829 288 754 q 70 903 124 866 l 70 1012 l 643 1012 l 643 901 l 258 901 q 462 763 422 794 q 636 592 577 677 q 710 360 710 485 m 584 365 q 552 501 584 447 q 451 602 521 555 q 372 611 411 611 q 197 541 258 611 q 136 355 136 472 q 190 171 136 245 q 358 85 252 85 q 528 173 465 85 q 584 365 584 252 "},έ:{x_min:0,x_max:634.71875,ha:714,o:"m 634 234 q 527 38 634 110 q 300 -25 433 -25 q 98 29 183 -25 q 0 204 0 93 q 37 313 0 265 q 128 390 67 352 q 56 459 82 419 q 26 555 26 505 q 114 712 26 654 q 295 763 191 763 q 499 700 416 763 q 589 515 589 631 l 478 515 q 419 618 464 580 q 307 657 374 657 q 207 630 253 657 q 151 547 151 598 q 238 445 151 469 q 389 434 280 434 l 389 331 l 349 331 q 206 315 255 331 q 125 210 125 287 q 183 107 125 145 q 302 76 233 76 q 436 117 379 76 q 509 234 493 159 l 634 234 m 520 1040 l 331 819 l 248 819 l 383 1040 l 520 1040 "},ω:{x_min:0,x_max:922,ha:1031,o:"m 922 339 q 856 97 922 203 q 650 -26 780 -26 q 538 9 587 -26 q 461 103 489 44 q 387 12 436 46 q 277 -22 339 -22 q 69 97 147 -22 q 0 339 0 203 q 45 551 0 444 q 161 738 84 643 l 302 738 q 175 553 219 647 q 124 336 124 446 q 155 179 124 249 q 275 88 197 88 q 375 163 341 88 q 400 294 400 219 l 400 572 l 524 572 l 524 294 q 561 135 524 192 q 643 88 591 88 q 762 182 719 88 q 797 342 797 257 q 745 556 797 450 q 619 738 705 638 l 760 738 q 874 551 835 640 q 922 339 922 444 "},"´":{x_min:0,x_max:96,ha:251,o:"m 96 606 l 0 606 l 0 988 l 96 988 l 96 606 "},"±":{x_min:11,x_max:781,ha:792,o:"m 781 490 l 446 490 l 446 255 l 349 255 l 349 490 l 11 490 l 11 586 l 349 586 l 349 819 l 446 819 l 446 586 l 781 586 l 781 490 m 781 21 l 11 21 l 11 115 l 781 115 l 781 21 "},"|":{x_min:343,x_max:449,ha:792,o:"m 449 462 l 343 462 l 343 986 l 449 986 l 449 462 m 449 -242 l 343 -242 l 343 280 l 449 280 l 449 -242 "},ϋ:{x_min:0,x_max:617,ha:725,o:"m 482 800 l 372 800 l 372 925 l 482 925 l 482 800 m 239 800 l 129 800 l 129 925 l 239 925 l 239 800 m 617 352 q 540 93 617 199 q 308 -24 455 -24 q 76 93 161 -24 q 0 352 0 199 l 0 738 l 126 738 l 126 354 q 169 185 126 257 q 312 98 220 98 q 451 185 402 98 q 492 354 492 257 l 492 738 l 617 738 l 617 352 "},"§":{x_min:0,x_max:593,ha:690,o:"m 593 425 q 554 312 593 369 q 467 233 516 254 q 537 83 537 172 q 459 -74 537 -12 q 288 -133 387 -133 q 115 -69 184 -133 q 47 96 47 -6 l 166 96 q 199 7 166 40 q 288 -26 232 -26 q 371 -5 332 -26 q 420 60 420 21 q 311 201 420 139 q 108 309 210 255 q 0 490 0 383 q 33 602 0 551 q 124 687 66 654 q 75 743 93 712 q 58 812 58 773 q 133 984 58 920 q 300 1043 201 1043 q 458 987 394 1043 q 529 814 529 925 l 411 814 q 370 908 404 877 q 289 939 336 939 q 213 911 246 939 q 180 841 180 883 q 286 720 180 779 q 484 612 480 615 q 593 425 593 534 m 467 409 q 355 544 467 473 q 196 630 228 612 q 146 587 162 609 q 124 525 124 558 q 239 387 124 462 q 398 298 369 315 q 448 345 429 316 q 467 409 467 375 "},b:{x_min:0,x_max:685,ha:783,o:"m 685 372 q 597 99 685 213 q 347 -25 501 -25 q 219 5 277 -25 q 121 93 161 36 l 121 0 l 0 0 l 0 1013 l 121 1013 l 121 634 q 214 723 157 692 q 341 754 272 754 q 591 637 493 754 q 685 372 685 526 m 554 356 q 499 550 554 470 q 328 644 437 644 q 162 556 223 644 q 108 369 108 478 q 160 176 108 256 q 330 83 221 83 q 498 169 435 83 q 554 356 554 245 "},q:{x_min:0,x_max:683,ha:876,o:"m 683 -278 l 564 -278 l 564 97 q 474 8 533 39 q 345 -23 415 -23 q 91 93 188 -23 q 0 364 0 203 q 87 635 0 522 q 337 760 184 760 q 466 727 408 760 q 564 637 523 695 l 564 737 l 683 737 l 683 -278 m 582 375 q 527 564 582 488 q 358 652 466 652 q 190 565 253 652 q 135 377 135 488 q 189 179 135 261 q 361 84 251 84 q 530 179 469 84 q 582 375 582 260 "},Ω:{x_min:-.171875,x_max:969.5625,ha:1068,o:"m 969 0 l 555 0 l 555 123 q 744 308 675 194 q 814 558 814 423 q 726 812 814 709 q 484 922 633 922 q 244 820 334 922 q 154 567 154 719 q 223 316 154 433 q 412 123 292 199 l 412 0 l 0 0 l 0 124 l 217 124 q 68 327 122 210 q 15 572 15 444 q 144 911 15 781 q 484 1041 274 1041 q 822 909 691 1041 q 953 569 953 777 q 899 326 953 443 q 750 124 846 210 l 969 124 l 969 0 "},ύ:{x_min:0,x_max:617,ha:725,o:"m 617 352 q 540 93 617 199 q 308 -24 455 -24 q 76 93 161 -24 q 0 352 0 199 l 0 738 l 126 738 l 126 354 q 169 185 126 257 q 312 98 220 98 q 451 185 402 98 q 492 354 492 257 l 492 738 l 617 738 l 617 352 m 535 1040 l 346 819 l 262 819 l 397 1040 l 535 1040 "},z:{x_min:-.015625,x_max:613.890625,ha:697,o:"m 613 0 l 0 0 l 0 100 l 433 630 l 20 630 l 20 738 l 594 738 l 593 636 l 163 110 l 613 110 l 613 0 "},"™":{x_min:0,x_max:894,ha:1e3,o:"m 389 951 l 229 951 l 229 503 l 160 503 l 160 951 l 0 951 l 0 1011 l 389 1011 l 389 951 m 894 503 l 827 503 l 827 939 l 685 503 l 620 503 l 481 937 l 481 503 l 417 503 l 417 1011 l 517 1011 l 653 580 l 796 1010 l 894 1011 l 894 503 "},ή:{x_min:.78125,x_max:697,ha:810,o:"m 697 -278 l 572 -278 l 572 454 q 540 587 572 536 q 425 650 501 650 q 271 579 337 650 q 206 420 206 509 l 206 0 l 81 0 l 81 489 q 73 588 81 562 q 0 644 56 644 l 0 741 q 68 755 38 755 q 158 721 124 755 q 200 630 193 687 q 297 726 234 692 q 434 761 359 761 q 620 692 544 761 q 697 516 697 624 l 697 -278 m 479 1040 l 290 819 l 207 819 l 341 1040 l 479 1040 "},Θ:{x_min:0,x_max:960,ha:1056,o:"m 960 507 q 833 129 960 280 q 476 -32 698 -32 q 123 129 255 -32 q 0 507 0 280 q 123 883 0 732 q 476 1045 255 1045 q 832 883 696 1045 q 960 507 960 732 m 817 500 q 733 789 817 669 q 476 924 639 924 q 223 792 317 924 q 142 507 142 675 q 222 222 142 339 q 476 89 315 89 q 730 218 636 89 q 817 500 817 334 m 716 449 l 243 449 l 243 571 l 716 571 l 716 449 "},"®":{x_min:-3,x_max:1008,ha:1106,o:"m 503 532 q 614 562 566 532 q 672 658 672 598 q 614 747 672 716 q 503 772 569 772 l 338 772 l 338 532 l 503 532 m 502 -7 q 123 151 263 -7 q -3 501 -3 294 q 123 851 -3 706 q 502 1011 263 1011 q 881 851 739 1011 q 1008 501 1008 708 q 883 151 1008 292 q 502 -7 744 -7 m 502 60 q 830 197 709 60 q 940 501 940 322 q 831 805 940 681 q 502 944 709 944 q 174 805 296 944 q 65 501 65 680 q 173 197 65 320 q 502 60 294 60 m 788 146 l 678 146 q 653 316 655 183 q 527 449 652 449 l 338 449 l 338 146 l 241 146 l 241 854 l 518 854 q 688 808 621 854 q 766 658 766 755 q 739 563 766 607 q 668 497 713 519 q 751 331 747 472 q 788 164 756 190 l 788 146 "},"~":{x_min:0,x_max:833,ha:931,o:"m 833 958 q 778 753 833 831 q 594 665 716 665 q 402 761 502 665 q 240 857 302 857 q 131 795 166 857 q 104 665 104 745 l 0 665 q 54 867 0 789 q 237 958 116 958 q 429 861 331 958 q 594 765 527 765 q 704 827 670 765 q 729 958 729 874 l 833 958 "},Ε:{x_min:0,x_max:736.21875,ha:778,o:"m 736 0 l 0 0 l 0 1013 l 725 1013 l 725 889 l 139 889 l 139 585 l 677 585 l 677 467 l 139 467 l 139 125 l 736 125 l 736 0 "},"³":{x_min:0,x_max:450,ha:547,o:"m 450 552 q 379 413 450 464 q 220 366 313 366 q 69 414 130 366 q 0 567 0 470 l 85 567 q 126 470 85 504 q 225 437 168 437 q 320 467 280 437 q 360 552 360 498 q 318 632 360 608 q 213 657 276 657 q 195 657 203 657 q 176 657 181 657 l 176 722 q 279 733 249 722 q 334 815 334 752 q 300 881 334 856 q 220 907 267 907 q 133 875 169 907 q 97 781 97 844 l 15 781 q 78 926 15 875 q 220 972 135 972 q 364 930 303 972 q 426 817 426 888 q 344 697 426 733 q 421 642 392 681 q 450 552 450 603 "},"[":{x_min:0,x_max:273.609375,ha:371,o:"m 273 -281 l 0 -281 l 0 1013 l 273 1013 l 273 920 l 124 920 l 124 -187 l 273 -187 l 273 -281 "},L:{x_min:0,x_max:645.828125,ha:696,o:"m 645 0 l 0 0 l 0 1013 l 140 1013 l 140 126 l 645 126 l 645 0 "},σ:{x_min:0,x_max:803.390625,ha:894,o:"m 803 628 l 633 628 q 713 368 713 512 q 618 93 713 204 q 357 -25 518 -25 q 94 91 194 -25 q 0 368 0 201 q 94 644 0 533 q 356 761 194 761 q 481 750 398 761 q 608 739 564 739 l 803 739 l 803 628 m 360 85 q 529 180 467 85 q 584 374 584 262 q 527 566 584 490 q 352 651 463 651 q 187 559 247 651 q 135 368 135 478 q 189 175 135 254 q 360 85 251 85 "},ζ:{x_min:0,x_max:573,ha:642,o:"m 573 -40 q 553 -162 573 -97 q 510 -278 543 -193 l 400 -278 q 441 -187 428 -219 q 462 -90 462 -132 q 378 -14 462 -14 q 108 45 197 -14 q 0 290 0 117 q 108 631 0 462 q 353 901 194 767 l 55 901 l 55 1012 l 561 1012 l 561 924 q 261 669 382 831 q 128 301 128 489 q 243 117 128 149 q 458 98 350 108 q 573 -40 573 80 "},θ:{x_min:0,x_max:674,ha:778,o:"m 674 496 q 601 160 674 304 q 336 -26 508 -26 q 73 153 165 -26 q 0 485 0 296 q 72 840 0 683 q 343 1045 166 1045 q 605 844 516 1045 q 674 496 674 692 m 546 579 q 498 798 546 691 q 336 935 437 935 q 178 798 237 935 q 126 579 137 701 l 546 579 m 546 475 l 126 475 q 170 233 126 348 q 338 80 230 80 q 504 233 447 80 q 546 475 546 346 "},Ο:{x_min:0,x_max:958,ha:1054,o:"m 485 1042 q 834 883 703 1042 q 958 511 958 735 q 834 136 958 287 q 481 -26 701 -26 q 126 130 261 -26 q 0 504 0 279 q 127 880 0 729 q 485 1042 263 1042 m 480 98 q 731 225 638 98 q 815 504 815 340 q 733 783 815 670 q 480 913 640 913 q 226 785 321 913 q 142 504 142 671 q 226 224 142 339 q 480 98 319 98 "},Γ:{x_min:0,x_max:705.28125,ha:749,o:"m 705 886 l 140 886 l 140 0 l 0 0 l 0 1012 l 705 1012 l 705 886 "}," ":{x_min:0,x_max:0,ha:375},"%":{x_min:-3,x_max:1089,ha:1186,o:"m 845 0 q 663 76 731 0 q 602 244 602 145 q 661 412 602 344 q 845 489 728 489 q 1027 412 959 489 q 1089 244 1089 343 q 1029 76 1089 144 q 845 0 962 0 m 844 103 q 945 143 909 103 q 981 243 981 184 q 947 340 981 301 q 844 385 909 385 q 744 342 781 385 q 708 243 708 300 q 741 147 708 186 q 844 103 780 103 m 888 986 l 284 -25 l 199 -25 l 803 986 l 888 986 m 241 468 q 58 545 126 468 q -3 715 -3 615 q 56 881 -3 813 q 238 958 124 958 q 421 881 353 958 q 483 712 483 813 q 423 544 483 612 q 241 468 356 468 m 241 855 q 137 811 175 855 q 100 710 100 768 q 136 612 100 653 q 240 572 172 572 q 344 614 306 572 q 382 713 382 656 q 347 810 382 771 q 241 855 308 855 "},P:{x_min:0,x_max:726,ha:806,o:"m 424 1013 q 640 931 555 1013 q 726 719 726 850 q 637 506 726 587 q 413 426 548 426 l 140 426 l 140 0 l 0 0 l 0 1013 l 424 1013 m 379 889 l 140 889 l 140 548 l 372 548 q 522 589 459 548 q 593 720 593 637 q 528 845 593 801 q 379 889 463 889 "},Έ:{x_min:0,x_max:1078.21875,ha:1118,o:"m 1078 0 l 342 0 l 342 1013 l 1067 1013 l 1067 889 l 481 889 l 481 585 l 1019 585 l 1019 467 l 481 467 l 481 125 l 1078 125 l 1078 0 m 277 1040 l 83 799 l 0 799 l 140 1040 l 277 1040 "},Ώ:{x_min:.125,x_max:1136.546875,ha:1235,o:"m 1136 0 l 722 0 l 722 123 q 911 309 842 194 q 981 558 981 423 q 893 813 981 710 q 651 923 800 923 q 411 821 501 923 q 321 568 321 720 q 390 316 321 433 q 579 123 459 200 l 579 0 l 166 0 l 166 124 l 384 124 q 235 327 289 210 q 182 572 182 444 q 311 912 182 782 q 651 1042 441 1042 q 989 910 858 1042 q 1120 569 1120 778 q 1066 326 1120 443 q 917 124 1013 210 l 1136 124 l 1136 0 m 277 1040 l 83 800 l 0 800 l 140 1041 l 277 1040 "},_:{x_min:0,x_max:705.5625,ha:803,o:"m 705 -334 l 0 -334 l 0 -234 l 705 -234 l 705 -334 "},Ϊ:{x_min:-110,x_max:246,ha:275,o:"m 246 1046 l 118 1046 l 118 1189 l 246 1189 l 246 1046 m 18 1046 l -110 1046 l -110 1189 l 18 1189 l 18 1046 m 136 0 l 0 0 l 0 1012 l 136 1012 l 136 0 "},"+":{x_min:23,x_max:768,ha:792,o:"m 768 372 l 444 372 l 444 0 l 347 0 l 347 372 l 23 372 l 23 468 l 347 468 l 347 840 l 444 840 l 444 468 l 768 468 l 768 372 "},"½":{x_min:0,x_max:1050,ha:1149,o:"m 1050 0 l 625 0 q 712 178 625 108 q 878 277 722 187 q 967 385 967 328 q 932 456 967 429 q 850 484 897 484 q 759 450 798 484 q 721 352 721 416 l 640 352 q 706 502 640 448 q 851 551 766 551 q 987 509 931 551 q 1050 385 1050 462 q 976 251 1050 301 q 829 179 902 215 q 717 68 740 133 l 1050 68 l 1050 0 m 834 985 l 215 -28 l 130 -28 l 750 984 l 834 985 m 224 422 l 142 422 l 142 811 l 0 811 l 0 867 q 104 889 62 867 q 164 973 157 916 l 224 973 l 224 422 "},Ρ:{x_min:0,x_max:720,ha:783,o:"m 424 1013 q 637 933 554 1013 q 720 723 720 853 q 633 508 720 591 q 413 426 546 426 l 140 426 l 140 0 l 0 0 l 0 1013 l 424 1013 m 378 889 l 140 889 l 140 548 l 371 548 q 521 589 458 548 q 592 720 592 637 q 527 845 592 801 q 378 889 463 889 "},"'":{x_min:0,x_max:139,ha:236,o:"m 139 851 q 102 737 139 784 q 0 669 65 690 l 0 734 q 59 787 42 741 q 72 873 72 821 l 0 873 l 0 1013 l 139 1013 l 139 851 "},ª:{x_min:0,x_max:350,ha:397,o:"m 350 625 q 307 616 328 616 q 266 631 281 616 q 247 673 251 645 q 190 628 225 644 q 116 613 156 613 q 32 641 64 613 q 0 722 0 669 q 72 826 0 800 q 247 866 159 846 l 247 887 q 220 934 247 916 q 162 953 194 953 q 104 934 129 953 q 76 882 80 915 l 16 882 q 60 976 16 941 q 166 1011 104 1011 q 266 979 224 1011 q 308 891 308 948 l 308 706 q 311 679 308 688 q 331 670 315 670 l 350 672 l 350 625 m 247 757 l 247 811 q 136 790 175 798 q 64 726 64 773 q 83 682 64 697 q 132 667 103 667 q 207 690 174 667 q 247 757 247 718 "},"΅":{x_min:0,x_max:450,ha:553,o:"m 450 800 l 340 800 l 340 925 l 450 925 l 450 800 m 406 1040 l 212 800 l 129 800 l 269 1040 l 406 1040 m 110 800 l 0 800 l 0 925 l 110 925 l 110 800 "},T:{x_min:0,x_max:777,ha:835,o:"m 777 894 l 458 894 l 458 0 l 319 0 l 319 894 l 0 894 l 0 1013 l 777 1013 l 777 894 "},Φ:{x_min:0,x_max:915,ha:997,o:"m 527 0 l 389 0 l 389 122 q 110 231 220 122 q 0 509 0 340 q 110 785 0 677 q 389 893 220 893 l 389 1013 l 527 1013 l 527 893 q 804 786 693 893 q 915 509 915 679 q 805 231 915 341 q 527 122 696 122 l 527 0 m 527 226 q 712 310 641 226 q 779 507 779 389 q 712 705 779 627 q 527 787 641 787 l 527 226 m 389 226 l 389 787 q 205 698 275 775 q 136 505 136 620 q 206 308 136 391 q 389 226 276 226 "},"⁋":{x_min:0,x_max:0,ha:694},j:{x_min:-77.78125,x_max:167,ha:349,o:"m 167 871 l 42 871 l 42 1013 l 167 1013 l 167 871 m 167 -80 q 121 -231 167 -184 q -26 -278 76 -278 l -77 -278 l -77 -164 l -41 -164 q 26 -143 11 -164 q 42 -65 42 -122 l 42 737 l 167 737 l 167 -80 "},Σ:{x_min:0,x_max:756.953125,ha:819,o:"m 756 0 l 0 0 l 0 107 l 395 523 l 22 904 l 22 1013 l 745 1013 l 745 889 l 209 889 l 566 523 l 187 125 l 756 125 l 756 0 "},"›":{x_min:18.0625,x_max:774,ha:792,o:"m 774 376 l 18 40 l 18 149 l 631 421 l 18 692 l 18 799 l 774 465 l 774 376 "},"<":{x_min:17.984375,x_max:773.609375,ha:792,o:"m 773 40 l 18 376 l 17 465 l 773 799 l 773 692 l 159 420 l 773 149 l 773 40 "},"£":{x_min:0,x_max:704.484375,ha:801,o:"m 704 41 q 623 -10 664 5 q 543 -26 583 -26 q 359 15 501 -26 q 243 36 288 36 q 158 23 197 36 q 73 -21 119 10 l 6 76 q 125 195 90 150 q 175 331 175 262 q 147 443 175 383 l 0 443 l 0 512 l 108 512 q 43 734 43 623 q 120 929 43 854 q 358 1010 204 1010 q 579 936 487 1010 q 678 729 678 857 l 678 684 l 552 684 q 504 838 552 780 q 362 896 457 896 q 216 852 263 896 q 176 747 176 815 q 199 627 176 697 q 248 512 217 574 l 468 512 l 468 443 l 279 443 q 297 356 297 398 q 230 194 297 279 q 153 107 211 170 q 227 133 190 125 q 293 142 264 142 q 410 119 339 142 q 516 96 482 96 q 579 105 550 96 q 648 142 608 115 l 704 41 "},t:{x_min:0,x_max:367,ha:458,o:"m 367 0 q 312 -5 339 -2 q 262 -8 284 -8 q 145 28 183 -8 q 108 143 108 64 l 108 638 l 0 638 l 0 738 l 108 738 l 108 944 l 232 944 l 232 738 l 367 738 l 367 638 l 232 638 l 232 185 q 248 121 232 140 q 307 102 264 102 q 345 104 330 102 q 367 107 360 107 l 367 0 "},"¬":{x_min:0,x_max:706,ha:803,o:"m 706 411 l 706 158 l 630 158 l 630 335 l 0 335 l 0 411 l 706 411 "},λ:{x_min:0,x_max:750,ha:803,o:"m 750 -7 q 679 -15 716 -15 q 538 59 591 -15 q 466 214 512 97 l 336 551 l 126 0 l 0 0 l 270 705 q 223 837 247 770 q 116 899 190 899 q 90 898 100 899 l 90 1004 q 152 1011 125 1011 q 298 938 244 1011 q 373 783 326 901 l 605 192 q 649 115 629 136 q 716 95 669 95 l 736 95 q 750 97 745 97 l 750 -7 "},W:{x_min:0,x_max:1263.890625,ha:1351,o:"m 1263 1013 l 995 0 l 859 0 l 627 837 l 405 0 l 265 0 l 0 1013 l 136 1013 l 342 202 l 556 1013 l 701 1013 l 921 207 l 1133 1012 l 1263 1013 "},">":{x_min:18.0625,x_max:774,ha:792,o:"m 774 376 l 18 40 l 18 149 l 631 421 l 18 692 l 18 799 l 774 465 l 774 376 "},v:{x_min:0,x_max:675.15625,ha:761,o:"m 675 738 l 404 0 l 272 0 l 0 738 l 133 737 l 340 147 l 541 737 l 675 738 "},τ:{x_min:.28125,x_max:644.5,ha:703,o:"m 644 628 l 382 628 l 382 179 q 388 120 382 137 q 436 91 401 91 q 474 94 447 91 q 504 97 501 97 l 504 0 q 454 -9 482 -5 q 401 -14 426 -14 q 278 67 308 -14 q 260 233 260 118 l 260 628 l 0 628 l 0 739 l 644 739 l 644 628 "},ξ:{x_min:0,x_max:624.9375,ha:699,o:"m 624 -37 q 608 -153 624 -96 q 563 -278 593 -211 l 454 -278 q 491 -183 486 -200 q 511 -83 511 -126 q 484 -23 511 -44 q 370 1 452 1 q 323 0 354 1 q 283 -1 293 -1 q 84 76 169 -1 q 0 266 0 154 q 56 431 0 358 q 197 538 108 498 q 94 613 134 562 q 54 730 54 665 q 77 823 54 780 q 143 901 101 867 l 27 901 l 27 1012 l 576 1012 l 576 901 l 380 901 q 244 863 303 901 q 178 745 178 820 q 312 600 178 636 q 532 582 380 582 l 532 479 q 276 455 361 479 q 118 281 118 410 q 165 173 118 217 q 274 120 208 133 q 494 101 384 110 q 624 -37 624 76 "},"&":{x_min:-3,x_max:894.25,ha:992,o:"m 894 0 l 725 0 l 624 123 q 471 0 553 40 q 306 -41 390 -41 q 168 -7 231 -41 q 62 92 105 26 q 14 187 31 139 q -3 276 -3 235 q 55 433 -3 358 q 248 581 114 508 q 170 689 196 640 q 137 817 137 751 q 214 985 137 922 q 384 1041 284 1041 q 548 988 483 1041 q 622 824 622 928 q 563 666 622 739 q 431 556 516 608 l 621 326 q 649 407 639 361 q 663 493 653 426 l 781 493 q 703 229 781 352 l 894 0 m 504 818 q 468 908 504 877 q 384 940 433 940 q 293 907 331 940 q 255 818 255 875 q 289 714 255 767 q 363 628 313 678 q 477 729 446 682 q 504 818 504 771 m 556 209 l 314 499 q 179 395 223 449 q 135 283 135 341 q 146 222 135 253 q 183 158 158 192 q 333 80 241 80 q 556 209 448 80 "},Λ:{x_min:0,x_max:862.5,ha:942,o:"m 862 0 l 719 0 l 426 847 l 143 0 l 0 0 l 356 1013 l 501 1013 l 862 0 "},I:{x_min:41,x_max:180,ha:293,o:"m 180 0 l 41 0 l 41 1013 l 180 1013 l 180 0 "},G:{x_min:0,x_max:921,ha:1011,o:"m 921 0 l 832 0 l 801 136 q 655 15 741 58 q 470 -28 568 -28 q 126 133 259 -28 q 0 499 0 284 q 125 881 0 731 q 486 1043 259 1043 q 763 957 647 1043 q 905 709 890 864 l 772 709 q 668 866 747 807 q 486 926 589 926 q 228 795 322 926 q 142 507 142 677 q 228 224 142 342 q 483 94 323 94 q 712 195 625 94 q 796 435 796 291 l 477 435 l 477 549 l 921 549 l 921 0 "},ΰ:{x_min:0,x_max:617,ha:725,o:"m 524 800 l 414 800 l 414 925 l 524 925 l 524 800 m 183 800 l 73 800 l 73 925 l 183 925 l 183 800 m 617 352 q 540 93 617 199 q 308 -24 455 -24 q 76 93 161 -24 q 0 352 0 199 l 0 738 l 126 738 l 126 354 q 169 185 126 257 q 312 98 220 98 q 451 185 402 98 q 492 354 492 257 l 492 738 l 617 738 l 617 352 m 489 1040 l 300 819 l 216 819 l 351 1040 l 489 1040 "},"`":{x_min:0,x_max:138.890625,ha:236,o:"m 138 699 l 0 699 l 0 861 q 36 974 0 929 q 138 1041 72 1020 l 138 977 q 82 931 95 969 q 69 839 69 893 l 138 839 l 138 699 "},"·":{x_min:0,x_max:142,ha:239,o:"m 142 585 l 0 585 l 0 738 l 142 738 l 142 585 "},Υ:{x_min:.328125,x_max:819.515625,ha:889,o:"m 819 1013 l 482 416 l 482 0 l 342 0 l 342 416 l 0 1013 l 140 1013 l 411 533 l 679 1013 l 819 1013 "},r:{x_min:0,x_max:355.5625,ha:432,o:"m 355 621 l 343 621 q 179 569 236 621 q 122 411 122 518 l 122 0 l 0 0 l 0 737 l 117 737 l 117 604 q 204 719 146 686 q 355 753 262 753 l 355 621 "},x:{x_min:0,x_max:675,ha:764,o:"m 675 0 l 525 0 l 331 286 l 144 0 l 0 0 l 256 379 l 12 738 l 157 737 l 336 473 l 516 738 l 661 738 l 412 380 l 675 0 "},μ:{x_min:0,x_max:696.609375,ha:747,o:"m 696 -4 q 628 -14 657 -14 q 498 97 513 -14 q 422 8 470 41 q 313 -24 374 -24 q 207 3 258 -24 q 120 80 157 31 l 120 -278 l 0 -278 l 0 738 l 124 738 l 124 343 q 165 172 124 246 q 308 82 216 82 q 451 177 402 82 q 492 358 492 254 l 492 738 l 616 738 l 616 214 q 623 136 616 160 q 673 92 636 92 q 696 95 684 92 l 696 -4 "},h:{x_min:0,x_max:615,ha:724,o:"m 615 472 l 615 0 l 490 0 l 490 454 q 456 590 490 535 q 338 654 416 654 q 186 588 251 654 q 122 436 122 522 l 122 0 l 0 0 l 0 1013 l 122 1013 l 122 633 q 218 727 149 694 q 362 760 287 760 q 552 676 484 760 q 615 472 615 600 "},".":{x_min:0,x_max:142,ha:239,o:"m 142 0 l 0 0 l 0 151 l 142 151 l 142 0 "},φ:{x_min:-2,x_max:878,ha:974,o:"m 496 -279 l 378 -279 l 378 -17 q 101 88 204 -17 q -2 367 -2 194 q 68 626 -2 510 q 283 758 151 758 l 283 646 q 167 537 209 626 q 133 373 133 462 q 192 177 133 254 q 378 93 259 93 l 378 758 q 445 764 426 763 q 476 765 464 765 q 765 659 653 765 q 878 377 878 553 q 771 96 878 209 q 496 -17 665 -17 l 496 -279 m 496 93 l 514 93 q 687 183 623 93 q 746 380 746 265 q 691 569 746 491 q 522 658 629 658 l 496 656 l 496 93 "},";":{x_min:0,x_max:142,ha:239,o:"m 142 585 l 0 585 l 0 738 l 142 738 l 142 585 m 142 -12 q 105 -132 142 -82 q 0 -206 68 -182 l 0 -138 q 58 -82 43 -123 q 68 0 68 -56 l 0 0 l 0 151 l 142 151 l 142 -12 "},f:{x_min:0,x_max:378,ha:472,o:"m 378 638 l 246 638 l 246 0 l 121 0 l 121 638 l 0 638 l 0 738 l 121 738 q 137 935 121 887 q 290 1028 171 1028 q 320 1027 305 1028 q 378 1021 334 1026 l 378 908 q 323 918 346 918 q 257 870 273 918 q 246 780 246 840 l 246 738 l 378 738 l 378 638 "},"“":{x_min:1,x_max:348.21875,ha:454,o:"m 140 670 l 1 670 l 1 830 q 37 943 1 897 q 140 1011 74 990 l 140 947 q 82 900 97 940 q 68 810 68 861 l 140 810 l 140 670 m 348 670 l 209 670 l 209 830 q 245 943 209 897 q 348 1011 282 990 l 348 947 q 290 900 305 940 q 276 810 276 861 l 348 810 l 348 670 "},A:{x_min:.03125,x_max:906.953125,ha:1008,o:"m 906 0 l 756 0 l 648 303 l 251 303 l 142 0 l 0 0 l 376 1013 l 529 1013 l 906 0 m 610 421 l 452 867 l 293 421 l 610 421 "},"‘":{x_min:1,x_max:139.890625,ha:236,o:"m 139 670 l 1 670 l 1 830 q 37 943 1 897 q 139 1011 74 990 l 139 947 q 82 900 97 940 q 68 810 68 861 l 139 810 l 139 670 "},ϊ:{x_min:-70,x_max:283,ha:361,o:"m 283 800 l 173 800 l 173 925 l 283 925 l 283 800 m 40 800 l -70 800 l -70 925 l 40 925 l 40 800 m 283 3 q 232 -10 257 -5 q 181 -15 206 -15 q 84 26 118 -15 q 41 200 41 79 l 41 737 l 166 737 l 167 215 q 171 141 167 157 q 225 101 182 101 q 247 103 238 101 q 283 112 256 104 l 283 3 "},π:{x_min:-.21875,x_max:773.21875,ha:857,o:"m 773 -7 l 707 -11 q 575 40 607 -11 q 552 174 552 77 l 552 226 l 552 626 l 222 626 l 222 0 l 97 0 l 97 626 l 0 626 l 0 737 l 773 737 l 773 626 l 676 626 l 676 171 q 695 103 676 117 q 773 90 714 90 l 773 -7 "},ά:{x_min:0,x_max:765.5625,ha:809,o:"m 765 -4 q 698 -14 726 -14 q 564 97 586 -14 q 466 7 525 40 q 337 -26 407 -26 q 88 98 186 -26 q 0 369 0 212 q 88 637 0 525 q 337 760 184 760 q 465 727 407 760 q 563 637 524 695 l 563 738 l 685 738 l 685 222 q 693 141 685 168 q 748 94 708 94 q 765 95 760 94 l 765 -4 m 584 371 q 531 562 584 485 q 360 653 470 653 q 192 566 254 653 q 135 379 135 489 q 186 181 135 261 q 358 84 247 84 q 528 176 465 84 q 584 371 584 260 m 604 1040 l 415 819 l 332 819 l 466 1040 l 604 1040 "},O:{x_min:0,x_max:958,ha:1057,o:"m 485 1041 q 834 882 702 1041 q 958 512 958 734 q 834 136 958 287 q 481 -26 702 -26 q 126 130 261 -26 q 0 504 0 279 q 127 880 0 728 q 485 1041 263 1041 m 480 98 q 731 225 638 98 q 815 504 815 340 q 733 783 815 669 q 480 912 640 912 q 226 784 321 912 q 142 504 142 670 q 226 224 142 339 q 480 98 319 98 "},n:{x_min:0,x_max:615,ha:724,o:"m 615 463 l 615 0 l 490 0 l 490 454 q 453 592 490 537 q 331 656 410 656 q 178 585 240 656 q 117 421 117 514 l 117 0 l 0 0 l 0 738 l 117 738 l 117 630 q 218 728 150 693 q 359 764 286 764 q 552 675 484 764 q 615 463 615 593 "},l:{x_min:41,x_max:166,ha:279,o:"m 166 0 l 41 0 l 41 1013 l 166 1013 l 166 0 "},"¤":{x_min:40.09375,x_max:728.796875,ha:825,o:"m 728 304 l 649 224 l 512 363 q 383 331 458 331 q 256 363 310 331 l 119 224 l 40 304 l 177 441 q 150 553 150 493 q 184 673 150 621 l 40 818 l 119 898 l 267 749 q 321 766 291 759 q 384 773 351 773 q 447 766 417 773 q 501 749 477 759 l 649 898 l 728 818 l 585 675 q 612 618 604 648 q 621 553 621 587 q 591 441 621 491 l 728 304 m 384 682 q 280 643 318 682 q 243 551 243 604 q 279 461 243 499 q 383 423 316 423 q 487 461 449 423 q 525 553 525 500 q 490 641 525 605 q 384 682 451 682 "},κ:{x_min:0,x_max:632.328125,ha:679,o:"m 632 0 l 482 0 l 225 384 l 124 288 l 124 0 l 0 0 l 0 738 l 124 738 l 124 446 l 433 738 l 596 738 l 312 466 l 632 0 "},p:{x_min:0,x_max:685,ha:786,o:"m 685 364 q 598 96 685 205 q 350 -23 504 -23 q 121 89 205 -23 l 121 -278 l 0 -278 l 0 738 l 121 738 l 121 633 q 220 726 159 691 q 351 761 280 761 q 598 636 504 761 q 685 364 685 522 m 557 371 q 501 560 557 481 q 330 651 437 651 q 162 559 223 651 q 108 366 108 479 q 162 177 108 254 q 333 87 224 87 q 502 178 441 87 q 557 371 557 258 "},"‡":{x_min:0,x_max:777,ha:835,o:"m 458 238 l 458 0 l 319 0 l 319 238 l 0 238 l 0 360 l 319 360 l 319 681 l 0 683 l 0 804 l 319 804 l 319 1015 l 458 1013 l 458 804 l 777 804 l 777 683 l 458 683 l 458 360 l 777 360 l 777 238 l 458 238 "},ψ:{x_min:0,x_max:808,ha:907,o:"m 465 -278 l 341 -278 l 341 -15 q 87 102 180 -15 q 0 378 0 210 l 0 739 l 133 739 l 133 379 q 182 195 133 275 q 341 98 242 98 l 341 922 l 465 922 l 465 98 q 623 195 563 98 q 675 382 675 278 l 675 742 l 808 742 l 808 381 q 720 104 808 213 q 466 -13 627 -13 l 465 -278 "},η:{x_min:.78125,x_max:697,ha:810,o:"m 697 -278 l 572 -278 l 572 454 q 540 587 572 536 q 425 650 501 650 q 271 579 337 650 q 206 420 206 509 l 206 0 l 81 0 l 81 489 q 73 588 81 562 q 0 644 56 644 l 0 741 q 68 755 38 755 q 158 720 124 755 q 200 630 193 686 q 297 726 234 692 q 434 761 359 761 q 620 692 544 761 q 697 516 697 624 l 697 -278 "}},pue="normal",mue=1189,gue=-100,vue="normal",_ue={yMin:-334,xMin:-111,yMax:1189,xMax:1672},yue=1e3,xue={postscript_name:"Helvetiker-Regular",version_string:"Version 1.00 2004 initial release",vendor_url:"http://www.magenta.gr/",full_font_name:"Helvetiker",font_family_name:"Helvetiker",copyright:"Copyright (c) Μagenta ltd, 2004",description:"",trademark:"",designer:"",designer_url:"",unique_font_identifier:"Μagenta ltd:Helvetiker:22-10-104",license_url:"http://www.ellak.gr/fonts/MgOpen/license.html",license_description:`Copyright (c) 2004 by MAGENTA Ltd. All Rights Reserved.\r +\r +Permission is hereby granted, free of charge, to any person obtaining a copy of the fonts accompanying this license ("Fonts") and associated documentation files (the "Font Software"), to reproduce and distribute the Font Software, including without limitation the rights to use, copy, merge, publish, distribute, and/or sell copies of the Font Software, and to permit persons to whom the Font Software is furnished to do so, subject to the following conditions: \r +\r +The above copyright and this permission notice shall be included in all copies of one or more of the Font Software typefaces.\r +\r +The Font Software may be modified, altered, or added to, and in particular the designs of glyphs or characters in the Fonts may be modified and additional glyphs or characters may be added to the Fonts, only if the fonts are renamed to names not containing the word "MgOpen", or if the modifications are accepted for inclusion in the Font Software itself by the each appointed Administrator.\r +\r +This License becomes null and void to the extent applicable to Fonts or Font Software that has been modified and is distributed under the "MgOpen" name.\r +\r +The Font Software may be sold as part of a larger software package but no copy of one or more of the Font Software typefaces may be sold by itself. \r +\r +THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL MAGENTA OR PERSONS OR BODIES IN CHARGE OF ADMINISTRATION AND MAINTENANCE OF THE FONT SOFTWARE BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE FONT SOFTWARE.`,manufacturer_name:"Μagenta ltd",font_sub_family_name:"Regular"},bue=-334,Sue="Helvetiker",Tue=1522,wue=50,Mue={glyphs:due,cssFontWeight:pue,ascender:mue,underlinePosition:gue,cssFontStyle:vue,boundingBox:_ue,resolution:yue,original_font_information:xue,descender:bue,familyName:Sue,lineHeight:Tue,underlineThickness:wue},xl=Hi(Hi({},window.THREE?window.THREE:{BoxGeometry:$h,CircleGeometry:by,DoubleSide:as,Group:ja,Mesh:zi,MeshLambertMaterial:Vc,TextGeometry:zN,Vector3:Ae}),{},{Font:Tle,TextGeometry:zN}),EO=xs({props:{labelsData:{default:[]},labelLat:{default:"lat"},labelLng:{default:"lng"},labelAltitude:{default:.002},labelText:{default:"text"},labelSize:{default:.5},labelTypeFace:{default:Mue,onChange:function(e,t){t.font=new xl.Font(e)}},labelColor:{default:function(){return"lightgrey"}},labelRotation:{default:0},labelResolution:{default:3},labelIncludeDot:{default:!0},labelDotRadius:{default:.1},labelDotOrientation:{default:function(){return"bottom"}},labelsTransitionDuration:{default:1e3,triggerUpdate:!1}},init:function(e,t,n){var r=n.tweenGroup;nr(e),t.scene=e,t.tweenGroup=r;var s=new xl.CircleGeometry(1,32);t.dataMapper=new ao(e,{objBindAttr:"__threeObjLabel"}).onCreateObj(function(){var a=new xl.MeshLambertMaterial;a.side=as;var l=new xl.Group;l.add(new xl.Mesh(s,a));var u=new xl.Mesh(void 0,a);l.add(u);var h=new xl.Mesh;return h.visible=!1,u.add(h),l.__globeObjType="label",l})},update:function(e){var t=Ct(e.labelLat),n=Ct(e.labelLng),r=Ct(e.labelAltitude),s=Ct(e.labelText),a=Ct(e.labelSize),l=Ct(e.labelRotation),u=Ct(e.labelColor),h=Ct(e.labelIncludeDot),m=Ct(e.labelDotRadius),v=Ct(e.labelDotOrientation),x=new Set(["right","top","bottom"]),S=2*Math.PI*cr/360;e.dataMapper.onUpdateObj(function(w,R){var C=gr(w.children,2),E=C[0],B=C[1],L=gr(B.children,1),O=L[0],G=u(R),q=Rl(G);B.material.color.set(wu(G)),B.material.transparent=q<1,B.material.opacity=q;var z=h(R),j=v(R);!z||!x.has(j)&&(j="bottom");var F=z?+m(R)*S:1e-12;E.scale.x=E.scale.y=F;var V=+a(R)*S;if(B.geometry&&B.geometry.dispose(),B.geometry=new xl.TextGeometry(s(R),{font:e.font,size:V,depth:0,bevelEnabled:!0,bevelThickness:0,bevelSize:0,curveSegments:e.labelResolution}),O.geometry&&O.geometry.dispose(),B.geometry.computeBoundingBox(),O.geometry=VE(xl.BoxGeometry,Qi(new xl.Vector3().subVectors(B.geometry.boundingBox.max,B.geometry.boundingBox.min).clampScalar(0,1/0).toArray())),j!=="right"&&B.geometry.center(),z){var Y=F+V/2;j==="right"&&(B.position.x=Y),B.position.y={right:-V/2,top:Y+V/2,bottom:-Y-V/2}[j]}var J=function(Q){var ue=w.__currentTargetD=Q,he=ue.lat,we=ue.lng,Te=ue.alt,ce=ue.rot,be=ue.scale;Object.assign(w.position,el(he,we,Te)),w.lookAt(e.scene.localToWorld(new xl.Vector3(0,0,0))),w.rotateY(Math.PI),w.rotateZ(-ce*Math.PI/180),w.scale.x=w.scale.y=w.scale.z=be},ne={lat:+t(R),lng:+n(R),alt:+r(R),rot:+l(R),scale:1},oe=w.__currentTargetD||Object.assign({},ne,{scale:1e-12});Object.keys(ne).some(function(te){return oe[te]!==ne[te]})&&(!e.labelsTransitionDuration||e.labelsTransitionDuration<0?J(ne):e.tweenGroup.add(new ca(oe).to(ne,e.labelsTransitionDuration).easing(os.Quadratic.InOut).onUpdate(J).start()))}).digest(e.labelsData)}}),Eue=Hi(Hi({},window.THREE?window.THREE:{}),{},{CSS2DObject:Bj}),CO=xs({props:{htmlElementsData:{default:[]},htmlLat:{default:"lat"},htmlLng:{default:"lng"},htmlAltitude:{default:0},htmlElement:{},htmlElementVisibilityModifier:{triggerUpdate:!1},htmlTransitionDuration:{default:1e3,triggerUpdate:!1},isBehindGlobe:{onChange:function(){this.updateObjVisibility()},triggerUpdate:!1}},methods:{updateObjVisibility:function(e,t){if(e.dataMapper){var n=t?[t]:e.dataMapper.entries().map(function(r){var s=gr(r,2),a=s[1];return a}).filter(function(r){return r});n.forEach(function(r){var s=!e.isBehindGlobe||!e.isBehindGlobe(r.position);e.htmlElementVisibilityModifier?(r.visible=!0,e.htmlElementVisibilityModifier(r.element,s)):r.visible=s})}}},init:function(e,t,n){var r=n.tweenGroup;nr(e),t.scene=e,t.tweenGroup=r,t.dataMapper=new ao(e,{objBindAttr:"__threeObjHtml"}).onCreateObj(function(s){var a=Ct(t.htmlElement)(s),l=new Eue.CSS2DObject(a);return l.__globeObjType="html",l})},update:function(e,t){var n=this,r=Ct(e.htmlLat),s=Ct(e.htmlLng),a=Ct(e.htmlAltitude);t.hasOwnProperty("htmlElement")&&e.dataMapper.clear(),e.dataMapper.onUpdateObj(function(l,u){var h=function(x){var S=l.__currentTargetD=x,w=S.alt,R=S.lat,C=S.lng;Object.assign(l.position,el(R,C,w)),n.updateObjVisibility(l)},m={lat:+r(u),lng:+s(u),alt:+a(u)};!e.htmlTransitionDuration||e.htmlTransitionDuration<0||!l.__currentTargetD?h(m):e.tweenGroup.add(new ca(l.__currentTargetD).to(m,e.htmlTransitionDuration).easing(os.Quadratic.InOut).onUpdate(h).start())}).digest(e.htmlElementsData)}}),Pv=window.THREE?window.THREE:{Group:ja,Mesh:zi,MeshLambertMaterial:Vc,SphereGeometry:Eu},RO=xs({props:{objectsData:{default:[]},objectLat:{default:"lat"},objectLng:{default:"lng"},objectAltitude:{default:.01},objectFacesSurface:{default:!0},objectRotation:{},objectThreeObject:{default:new Pv.Mesh(new Pv.SphereGeometry(1,16,8),new Pv.MeshLambertMaterial({color:"#ffffaa",transparent:!0,opacity:.7}))}},init:function(e,t){nr(e),t.scene=e,t.dataMapper=new ao(e,{objBindAttr:"__threeObjObject"}).onCreateObj(function(n){var r=Ct(t.objectThreeObject)(n);t.objectThreeObject===r&&(r=r.clone());var s=new Pv.Group;return s.add(r),s.__globeObjType="object",s})},update:function(e,t){var n=Ct(e.objectLat),r=Ct(e.objectLng),s=Ct(e.objectAltitude),a=Ct(e.objectFacesSurface),l=Ct(e.objectRotation);t.hasOwnProperty("objectThreeObject")&&e.dataMapper.clear(),e.dataMapper.onUpdateObj(function(u,h){var m=+n(h),v=+r(h),x=+s(h);Object.assign(u.position,el(m,v,x)),a(h)?u.setRotationFromEuler(new la(Vf(-m),Vf(v),0,"YXZ")):u.rotation.set(0,0,0);var S=u.children[0],w=l(h);w&&S.setRotationFromEuler(new la(Vf(w.x||0),Vf(w.y||0),Vf(w.z||0)))}).digest(e.objectsData)}}),NO=xs({props:{customLayerData:{default:[]},customThreeObject:{},customThreeObjectUpdate:{triggerUpdate:!1}},init:function(e,t){nr(e),t.scene=e,t.dataMapper=new ao(e,{objBindAttr:"__threeObjCustom"}).onCreateObj(function(n){var r=Ct(t.customThreeObject)(n,cr);return r&&(t.customThreeObject===r&&(r=r.clone()),r.__globeObjType="custom"),r})},update:function(e,t){e.customThreeObjectUpdate||nr(e.scene);var n=Ct(e.customThreeObjectUpdate);t.hasOwnProperty("customThreeObject")&&e.dataMapper.clear(),e.dataMapper.onUpdateObj(function(r,s){return n(r,s,cr)}).digest(e.customLayerData)}}),Lv=window.THREE?window.THREE:{Camera:_y,Group:ja,Vector2:dt,Vector3:Ae},Cue=["globeLayer","pointsLayer","arcsLayer","hexBinLayer","heatmapsLayer","polygonsLayer","hexedPolygonsLayer","pathsLayer","tilesLayer","particlesLayer","ringsLayer","labelsLayer","htmlElementsLayer","objectsLayer","customLayer"],DO=wa("globeLayer",dO),Rue=Object.assign.apply(Object,Qi(["globeImageUrl","bumpImageUrl","globeCurvatureResolution","globeTileEngineUrl","globeTileEngineMaxLevel","showGlobe","showGraticules","showAtmosphere","atmosphereColor","atmosphereAltitude"].map(function(i){return Ps({},i,DO.linkProp(i))}))),Nue=Object.assign.apply(Object,Qi(["globeMaterial","globeTileEngineClearCache"].map(function(i){return Ps({},i,DO.linkMethod(i))}))),Due=wa("pointsLayer",pO),Pue=Object.assign.apply(Object,Qi(["pointsData","pointLat","pointLng","pointColor","pointAltitude","pointRadius","pointResolution","pointsMerge","pointsTransitionDuration"].map(function(i){return Ps({},i,Due.linkProp(i))}))),Lue=wa("arcsLayer",gO),Uue=Object.assign.apply(Object,Qi(["arcsData","arcStartLat","arcStartLng","arcStartAltitude","arcEndLat","arcEndLng","arcEndAltitude","arcColor","arcAltitude","arcAltitudeAutoScale","arcStroke","arcCurveResolution","arcCircularResolution","arcDashLength","arcDashGap","arcDashInitialGap","arcDashAnimateTime","arcsTransitionDuration"].map(function(i){return Ps({},i,Lue.linkProp(i))}))),Bue=wa("hexBinLayer",vO),Oue=Object.assign.apply(Object,Qi(["hexBinPointsData","hexBinPointLat","hexBinPointLng","hexBinPointWeight","hexBinResolution","hexMargin","hexTopCurvatureResolution","hexTopColor","hexSideColor","hexAltitude","hexBinMerge","hexTransitionDuration"].map(function(i){return Ps({},i,Bue.linkProp(i))}))),Iue=wa("heatmapsLayer",yO),Fue=Object.assign.apply(Object,Qi(["heatmapsData","heatmapPoints","heatmapPointLat","heatmapPointLng","heatmapPointWeight","heatmapBandwidth","heatmapColorFn","heatmapColorSaturation","heatmapBaseAltitude","heatmapTopAltitude","heatmapsTransitionDuration"].map(function(i){return Ps({},i,Iue.linkProp(i))}))),kue=wa("hexedPolygonsLayer",bO),zue=Object.assign.apply(Object,Qi(["hexPolygonsData","hexPolygonGeoJsonGeometry","hexPolygonColor","hexPolygonAltitude","hexPolygonResolution","hexPolygonMargin","hexPolygonUseDots","hexPolygonCurvatureResolution","hexPolygonDotResolution","hexPolygonsTransitionDuration"].map(function(i){return Ps({},i,kue.linkProp(i))}))),Gue=wa("polygonsLayer",xO),que=Object.assign.apply(Object,Qi(["polygonsData","polygonGeoJsonGeometry","polygonCapColor","polygonCapMaterial","polygonSideColor","polygonSideMaterial","polygonStrokeColor","polygonAltitude","polygonCapCurvatureResolution","polygonsTransitionDuration"].map(function(i){return Ps({},i,Gue.linkProp(i))}))),Vue=wa("pathsLayer",SO),Hue=Object.assign.apply(Object,Qi(["pathsData","pathPoints","pathPointLat","pathPointLng","pathPointAlt","pathResolution","pathColor","pathStroke","pathDashLength","pathDashGap","pathDashInitialGap","pathDashAnimateTime","pathTransitionDuration"].map(function(i){return Ps({},i,Vue.linkProp(i))}))),jue=wa("tilesLayer",TO),Wue=Object.assign.apply(Object,Qi(["tilesData","tileLat","tileLng","tileAltitude","tileWidth","tileHeight","tileUseGlobeProjection","tileMaterial","tileCurvatureResolution","tilesTransitionDuration"].map(function(i){return Ps({},i,jue.linkProp(i))}))),$ue=wa("particlesLayer",wO),Xue=Object.assign.apply(Object,Qi(["particlesData","particlesList","particleLat","particleLng","particleAltitude","particlesSize","particlesSizeAttenuation","particlesColor","particlesTexture"].map(function(i){return Ps({},i,$ue.linkProp(i))}))),Yue=wa("ringsLayer",MO),Que=Object.assign.apply(Object,Qi(["ringsData","ringLat","ringLng","ringAltitude","ringColor","ringResolution","ringMaxRadius","ringPropagationSpeed","ringRepeatPeriod"].map(function(i){return Ps({},i,Yue.linkProp(i))}))),Kue=wa("labelsLayer",EO),Zue=Object.assign.apply(Object,Qi(["labelsData","labelLat","labelLng","labelAltitude","labelRotation","labelText","labelSize","labelTypeFace","labelColor","labelResolution","labelIncludeDot","labelDotRadius","labelDotOrientation","labelsTransitionDuration"].map(function(i){return Ps({},i,Kue.linkProp(i))}))),Jue=wa("htmlElementsLayer",CO),ece=Object.assign.apply(Object,Qi(["htmlElementsData","htmlLat","htmlLng","htmlAltitude","htmlElement","htmlElementVisibilityModifier","htmlTransitionDuration"].map(function(i){return Ps({},i,Jue.linkProp(i))}))),tce=wa("objectsLayer",RO),nce=Object.assign.apply(Object,Qi(["objectsData","objectLat","objectLng","objectAltitude","objectRotation","objectFacesSurface","objectThreeObject"].map(function(i){return Ps({},i,tce.linkProp(i))}))),ice=wa("customLayer",NO),rce=Object.assign.apply(Object,Qi(["customLayerData","customThreeObject","customThreeObjectUpdate"].map(function(i){return Ps({},i,ice.linkProp(i))}))),sce=xs({props:Hi(Hi(Hi(Hi(Hi(Hi(Hi(Hi(Hi(Hi(Hi(Hi(Hi(Hi(Hi({onGlobeReady:{triggerUpdate:!1},rendererSize:{default:new Lv.Vector2(window.innerWidth,window.innerHeight),onChange:function(e,t){t.pathsLayer.rendererSize(e)},triggerUpdate:!1}},Rue),Pue),Uue),Oue),Fue),que),zue),Hue),Wue),Xue),Que),Zue),ece),nce),rce),methods:Hi({getGlobeRadius:VN,getCoords:function(e){for(var t=arguments.length,n=new Array(t>1?t-1:0),r=1;r1?t-1:0),r=1;r1&&arguments[1]!==void 0?arguments[1]:Object,t=arguments.length>2&&arguments[2]!==void 0?arguments[2]:!1,n=(function(r){function s(){var a;nx(this,s);for(var l=arguments.length,u=new Array(l),h=0;hZN&&(this.dispatchEvent(US),this._lastPosition.copy(this.object.position))):this.object.isOrthographicCamera?(this.object.lookAt(this.target),(this._lastPosition.distanceToSquared(this.object.position)>ZN||this._lastZoom!==this.object.zoom)&&(this.dispatchEvent(US),this._lastPosition.copy(this.object.position),this._lastZoom=this.object.zoom)):console.warn("THREE.TrackballControls: Unsupported camera type.")}reset(){this.state=Ii.NONE,this.keyState=Ii.NONE,this.target.copy(this._target0),this.object.position.copy(this._position0),this.object.up.copy(this._up0),this.object.zoom=this._zoom0,this.object.updateProjectionMatrix(),this._eye.subVectors(this.object.position,this.target),this.object.lookAt(this.target),this.dispatchEvent(US),this._lastPosition.copy(this.object.position),this._lastZoom=this.object.zoom}_panCamera(){if(Eh.copy(this._panEnd).sub(this._panStart),Eh.lengthSq()){if(this.object.isOrthographicCamera){const e=(this.object.right-this.object.left)/this.object.zoom/this.domElement.clientWidth,t=(this.object.top-this.object.bottom)/this.object.zoom/this.domElement.clientWidth;Eh.x*=e,Eh.y*=t}Eh.multiplyScalar(this._eye.length()*this.panSpeed),Bv.copy(this._eye).cross(this.object.up).setLength(Eh.x),Bv.add(lce.copy(this.object.up).setLength(Eh.y)),this.object.position.add(Bv),this.target.add(Bv),this.staticMoving?this._panStart.copy(this._panEnd):this._panStart.add(Eh.subVectors(this._panEnd,this._panStart).multiplyScalar(this.dynamicDampingFactor))}}_rotateCamera(){Iv.set(this._moveCurr.x-this._movePrev.x,this._moveCurr.y-this._movePrev.y,0);let e=Iv.length();e?(this._eye.copy(this.object.position).sub(this.target),JN.copy(this._eye).normalize(),Ov.copy(this.object.up).normalize(),OS.crossVectors(Ov,JN).normalize(),Ov.setLength(this._moveCurr.y-this._movePrev.y),OS.setLength(this._moveCurr.x-this._movePrev.x),Iv.copy(Ov.add(OS)),BS.crossVectors(Iv,this._eye).normalize(),e*=this.rotateSpeed,Fd.setFromAxisAngle(BS,e),this._eye.applyQuaternion(Fd),this.object.up.applyQuaternion(Fd),this._lastAxis.copy(BS),this._lastAngle=e):!this.staticMoving&&this._lastAngle&&(this._lastAngle*=Math.sqrt(1-this.dynamicDampingFactor),this._eye.copy(this.object.position).sub(this.target),Fd.setFromAxisAngle(this._lastAxis,this._lastAngle),this._eye.applyQuaternion(Fd),this.object.up.applyQuaternion(Fd)),this._movePrev.copy(this._moveCurr)}_zoomCamera(){let e;this.state===Ii.TOUCH_ZOOM_PAN?(e=this._touchZoomDistanceStart/this._touchZoomDistanceEnd,this._touchZoomDistanceStart=this._touchZoomDistanceEnd,this.object.isPerspectiveCamera?this._eye.multiplyScalar(e):this.object.isOrthographicCamera?(this.object.zoom=M0.clamp(this.object.zoom/e,this.minZoom,this.maxZoom),this._lastZoom!==this.object.zoom&&this.object.updateProjectionMatrix()):console.warn("THREE.TrackballControls: Unsupported camera type")):(e=1+(this._zoomEnd.y-this._zoomStart.y)*this.zoomSpeed,e!==1&&e>0&&(this.object.isPerspectiveCamera?this._eye.multiplyScalar(e):this.object.isOrthographicCamera?(this.object.zoom=M0.clamp(this.object.zoom/e,this.minZoom,this.maxZoom),this._lastZoom!==this.object.zoom&&this.object.updateProjectionMatrix()):console.warn("THREE.TrackballControls: Unsupported camera type")),this.staticMoving?this._zoomStart.copy(this._zoomEnd):this._zoomStart.y+=(this._zoomEnd.y-this._zoomStart.y)*this.dynamicDampingFactor)}_getMouseOnScreen(e,t){return Uv.set((e-this.screen.left)/this.screen.width,(t-this.screen.top)/this.screen.height),Uv}_getMouseOnCircle(e,t){return Uv.set((e-this.screen.width*.5-this.screen.left)/(this.screen.width*.5),(this.screen.height+2*(this.screen.top-t))/this.screen.width),Uv}_addPointer(e){this._pointers.push(e)}_removePointer(e){delete this._pointerPositions[e.pointerId];for(let t=0;tthis.maxDistance*this.maxDistance&&(this.object.position.addVectors(this.target,this._eye.setLength(this.maxDistance)),this._zoomStart.copy(this._zoomEnd)),this._eye.lengthSq()Math.PI&&(n-=Fa),r<-Math.PI?r+=Fa:r>Math.PI&&(r-=Fa),n<=r?this._spherical.theta=Math.max(n,Math.min(r,this._spherical.theta)):this._spherical.theta=this._spherical.theta>(n+r)/2?Math.max(n,this._spherical.theta):Math.min(r,this._spherical.theta)),this._spherical.phi=Math.max(this.minPolarAngle,Math.min(this.maxPolarAngle,this._spherical.phi)),this._spherical.makeSafe(),this.enableDamping===!0?this.target.addScaledVector(this._panOffset,this.dampingFactor):this.target.add(this._panOffset),this.target.sub(this.cursor),this.target.clampLength(this.minTargetRadius,this.maxTargetRadius),this.target.add(this.cursor);let s=!1;if(this.zoomToCursor&&this._performCursorZoom||this.object.isOrthographicCamera)this._spherical.radius=this._clampDistance(this._spherical.radius);else{const a=this._spherical.radius;this._spherical.radius=this._clampDistance(this._spherical.radius*this._scale),s=a!=this._spherical.radius}if(ps.setFromSpherical(this._spherical),ps.applyQuaternion(this._quatInverse),t.copy(this.target).add(ps),this.object.lookAt(this.target),this.enableDamping===!0?(this._sphericalDelta.theta*=1-this.dampingFactor,this._sphericalDelta.phi*=1-this.dampingFactor,this._panOffset.multiplyScalar(1-this.dampingFactor)):(this._sphericalDelta.set(0,0,0),this._panOffset.set(0,0,0)),this.zoomToCursor&&this._performCursorZoom){let a=null;if(this.object.isPerspectiveCamera){const l=ps.length();a=this._clampDistance(l*this._scale);const u=l-a;this.object.position.addScaledVector(this._dollyDirection,u),this.object.updateMatrixWorld(),s=!!u}else if(this.object.isOrthographicCamera){const l=new Ae(this._mouse.x,this._mouse.y,0);l.unproject(this.object);const u=this.object.zoom;this.object.zoom=Math.max(this.minZoom,Math.min(this.maxZoom,this.object.zoom/this._scale)),this.object.updateProjectionMatrix(),s=u!==this.object.zoom;const h=new Ae(this._mouse.x,this._mouse.y,0);h.unproject(this.object),this.object.position.sub(h).add(l),this.object.updateMatrixWorld(),a=ps.length()}else console.warn("WARNING: OrbitControls.js encountered an unknown camera type - zoom to cursor disabled."),this.zoomToCursor=!1;a!==null&&(this.screenSpacePanning?this.target.set(0,0,-1).transformDirection(this.object.matrix).multiplyScalar(a).add(this.object.position):(Fv.origin.copy(this.object.position),Fv.direction.set(0,0,-1).transformDirection(this.object.matrix),Math.abs(this.object.up.dot(Fv.direction))IS||8*(1-this._lastQuaternion.dot(this.object.quaternion))>IS||this._lastTargetPosition.distanceToSquared(this.target)>IS?(this.dispatchEvent(e7),this._lastPosition.copy(this.object.position),this._lastQuaternion.copy(this.object.quaternion),this._lastTargetPosition.copy(this.target),!0):!1}_getAutoRotationAngle(e){return e!==null?Fa/60*this.autoRotateSpeed*e:Fa/60/60*this.autoRotateSpeed}_getZoomScale(e){const t=Math.abs(e*.01);return Math.pow(.95,this.zoomSpeed*t)}_rotateLeft(e){this._sphericalDelta.theta-=e}_rotateUp(e){this._sphericalDelta.phi-=e}_panLeft(e,t){ps.setFromMatrixColumn(t,0),ps.multiplyScalar(-e),this._panOffset.add(ps)}_panUp(e,t){this.screenSpacePanning===!0?ps.setFromMatrixColumn(t,1):(ps.setFromMatrixColumn(t,0),ps.crossVectors(this.object.up,ps)),ps.multiplyScalar(e),this._panOffset.add(ps)}_pan(e,t){const n=this.domElement;if(this.object.isPerspectiveCamera){const r=this.object.position;ps.copy(r).sub(this.target);let s=ps.length();s*=Math.tan(this.object.fov/2*Math.PI/180),this._panLeft(2*e*s/n.clientHeight,this.object.matrix),this._panUp(2*t*s/n.clientHeight,this.object.matrix)}else this.object.isOrthographicCamera?(this._panLeft(e*(this.object.right-this.object.left)/this.object.zoom/n.clientWidth,this.object.matrix),this._panUp(t*(this.object.top-this.object.bottom)/this.object.zoom/n.clientHeight,this.object.matrix)):(console.warn("WARNING: OrbitControls.js encountered an unknown camera type - pan disabled."),this.enablePan=!1)}_dollyOut(e){this.object.isPerspectiveCamera||this.object.isOrthographicCamera?this._scale/=e:(console.warn("WARNING: OrbitControls.js encountered an unknown camera type - dolly/zoom disabled."),this.enableZoom=!1)}_dollyIn(e){this.object.isPerspectiveCamera||this.object.isOrthographicCamera?this._scale*=e:(console.warn("WARNING: OrbitControls.js encountered an unknown camera type - dolly/zoom disabled."),this.enableZoom=!1)}_updateZoomParameters(e,t){if(!this.zoomToCursor)return;this._performCursorZoom=!0;const n=this.domElement.getBoundingClientRect(),r=e-n.left,s=t-n.top,a=n.width,l=n.height;this._mouse.x=r/a*2-1,this._mouse.y=-(s/l)*2+1,this._dollyDirection.set(this._mouse.x,this._mouse.y,1).unproject(this.object).sub(this.object.position).normalize()}_clampDistance(e){return Math.max(this.minDistance,Math.min(this.maxDistance,e))}_handleMouseDownRotate(e){this._rotateStart.set(e.clientX,e.clientY)}_handleMouseDownDolly(e){this._updateZoomParameters(e.clientX,e.clientX),this._dollyStart.set(e.clientX,e.clientY)}_handleMouseDownPan(e){this._panStart.set(e.clientX,e.clientY)}_handleMouseMoveRotate(e){this._rotateEnd.set(e.clientX,e.clientY),this._rotateDelta.subVectors(this._rotateEnd,this._rotateStart).multiplyScalar(this.rotateSpeed);const t=this.domElement;this._rotateLeft(Fa*this._rotateDelta.x/t.clientHeight),this._rotateUp(Fa*this._rotateDelta.y/t.clientHeight),this._rotateStart.copy(this._rotateEnd),this.update()}_handleMouseMoveDolly(e){this._dollyEnd.set(e.clientX,e.clientY),this._dollyDelta.subVectors(this._dollyEnd,this._dollyStart),this._dollyDelta.y>0?this._dollyOut(this._getZoomScale(this._dollyDelta.y)):this._dollyDelta.y<0&&this._dollyIn(this._getZoomScale(this._dollyDelta.y)),this._dollyStart.copy(this._dollyEnd),this.update()}_handleMouseMovePan(e){this._panEnd.set(e.clientX,e.clientY),this._panDelta.subVectors(this._panEnd,this._panStart).multiplyScalar(this.panSpeed),this._pan(this._panDelta.x,this._panDelta.y),this._panStart.copy(this._panEnd),this.update()}_handleMouseWheel(e){this._updateZoomParameters(e.clientX,e.clientY),e.deltaY<0?this._dollyIn(this._getZoomScale(e.deltaY)):e.deltaY>0&&this._dollyOut(this._getZoomScale(e.deltaY)),this.update()}_handleKeyDown(e){let t=!1;switch(e.code){case this.keys.UP:e.ctrlKey||e.metaKey||e.shiftKey?this.enableRotate&&this._rotateUp(Fa*this.keyRotateSpeed/this.domElement.clientHeight):this.enablePan&&this._pan(0,this.keyPanSpeed),t=!0;break;case this.keys.BOTTOM:e.ctrlKey||e.metaKey||e.shiftKey?this.enableRotate&&this._rotateUp(-Fa*this.keyRotateSpeed/this.domElement.clientHeight):this.enablePan&&this._pan(0,-this.keyPanSpeed),t=!0;break;case this.keys.LEFT:e.ctrlKey||e.metaKey||e.shiftKey?this.enableRotate&&this._rotateLeft(Fa*this.keyRotateSpeed/this.domElement.clientHeight):this.enablePan&&this._pan(this.keyPanSpeed,0),t=!0;break;case this.keys.RIGHT:e.ctrlKey||e.metaKey||e.shiftKey?this.enableRotate&&this._rotateLeft(-Fa*this.keyRotateSpeed/this.domElement.clientHeight):this.enablePan&&this._pan(-this.keyPanSpeed,0),t=!0;break}t&&(e.preventDefault(),this.update())}_handleTouchStartRotate(e){if(this._pointers.length===1)this._rotateStart.set(e.pageX,e.pageY);else{const t=this._getSecondPointerPosition(e),n=.5*(e.pageX+t.x),r=.5*(e.pageY+t.y);this._rotateStart.set(n,r)}}_handleTouchStartPan(e){if(this._pointers.length===1)this._panStart.set(e.pageX,e.pageY);else{const t=this._getSecondPointerPosition(e),n=.5*(e.pageX+t.x),r=.5*(e.pageY+t.y);this._panStart.set(n,r)}}_handleTouchStartDolly(e){const t=this._getSecondPointerPosition(e),n=e.pageX-t.x,r=e.pageY-t.y,s=Math.sqrt(n*n+r*r);this._dollyStart.set(0,s)}_handleTouchStartDollyPan(e){this.enableZoom&&this._handleTouchStartDolly(e),this.enablePan&&this._handleTouchStartPan(e)}_handleTouchStartDollyRotate(e){this.enableZoom&&this._handleTouchStartDolly(e),this.enableRotate&&this._handleTouchStartRotate(e)}_handleTouchMoveRotate(e){if(this._pointers.length==1)this._rotateEnd.set(e.pageX,e.pageY);else{const n=this._getSecondPointerPosition(e),r=.5*(e.pageX+n.x),s=.5*(e.pageY+n.y);this._rotateEnd.set(r,s)}this._rotateDelta.subVectors(this._rotateEnd,this._rotateStart).multiplyScalar(this.rotateSpeed);const t=this.domElement;this._rotateLeft(Fa*this._rotateDelta.x/t.clientHeight),this._rotateUp(Fa*this._rotateDelta.y/t.clientHeight),this._rotateStart.copy(this._rotateEnd)}_handleTouchMovePan(e){if(this._pointers.length===1)this._panEnd.set(e.pageX,e.pageY);else{const t=this._getSecondPointerPosition(e),n=.5*(e.pageX+t.x),r=.5*(e.pageY+t.y);this._panEnd.set(n,r)}this._panDelta.subVectors(this._panEnd,this._panStart).multiplyScalar(this.panSpeed),this._pan(this._panDelta.x,this._panDelta.y),this._panStart.copy(this._panEnd)}_handleTouchMoveDolly(e){const t=this._getSecondPointerPosition(e),n=e.pageX-t.x,r=e.pageY-t.y,s=Math.sqrt(n*n+r*r);this._dollyEnd.set(0,s),this._dollyDelta.set(0,Math.pow(this._dollyEnd.y/this._dollyStart.y,this.zoomSpeed)),this._dollyOut(this._dollyDelta.y),this._dollyStart.copy(this._dollyEnd);const a=(e.pageX+t.x)*.5,l=(e.pageY+t.y)*.5;this._updateZoomParameters(a,l)}_handleTouchMoveDollyPan(e){this.enableZoom&&this._handleTouchMoveDolly(e),this.enablePan&&this._handleTouchMovePan(e)}_handleTouchMoveDollyRotate(e){this.enableZoom&&this._handleTouchMoveDolly(e),this.enableRotate&&this._handleTouchMoveRotate(e)}_addPointer(e){this._pointers.push(e.pointerId)}_removePointer(e){delete this._pointerPositions[e.pointerId];for(let t=0;tn7||8*(1-this._lastQuaternion.dot(t.quaternion))>n7)&&(this.dispatchEvent(Fce),this._lastQuaternion.copy(t.quaternion),this._lastPosition.copy(t.position))}_updateMovementVector(){const e=this._moveState.forward||this.autoForward&&!this._moveState.back?1:0;this._moveVector.x=-this._moveState.left+this._moveState.right,this._moveVector.y=-this._moveState.down+this._moveState.up,this._moveVector.z=-e+this._moveState.back}_updateRotationVector(){this._rotationVector.x=-this._moveState.pitchDown+this._moveState.pitchUp,this._rotationVector.y=-this._moveState.yawRight+this._moveState.yawLeft,this._rotationVector.z=-this._moveState.rollRight+this._moveState.rollLeft}_getContainerDimensions(){return this.domElement!=document?{size:[this.domElement.offsetWidth,this.domElement.offsetHeight],offset:[this.domElement.offsetLeft,this.domElement.offsetTop]}:{size:[window.innerWidth,window.innerHeight],offset:[0,0]}}}function zce(i){if(!(i.altKey||this.enabled===!1)){switch(i.code){case"ShiftLeft":case"ShiftRight":this.movementSpeedMultiplier=.1;break;case"KeyW":this._moveState.forward=1;break;case"KeyS":this._moveState.back=1;break;case"KeyA":this._moveState.left=1;break;case"KeyD":this._moveState.right=1;break;case"KeyR":this._moveState.up=1;break;case"KeyF":this._moveState.down=1;break;case"ArrowUp":this._moveState.pitchUp=1;break;case"ArrowDown":this._moveState.pitchDown=1;break;case"ArrowLeft":this._moveState.yawLeft=1;break;case"ArrowRight":this._moveState.yawRight=1;break;case"KeyQ":this._moveState.rollLeft=1;break;case"KeyE":this._moveState.rollRight=1;break}this._updateMovementVector(),this._updateRotationVector()}}function Gce(i){if(this.enabled!==!1){switch(i.code){case"ShiftLeft":case"ShiftRight":this.movementSpeedMultiplier=1;break;case"KeyW":this._moveState.forward=0;break;case"KeyS":this._moveState.back=0;break;case"KeyA":this._moveState.left=0;break;case"KeyD":this._moveState.right=0;break;case"KeyR":this._moveState.up=0;break;case"KeyF":this._moveState.down=0;break;case"ArrowUp":this._moveState.pitchUp=0;break;case"ArrowDown":this._moveState.pitchDown=0;break;case"ArrowLeft":this._moveState.yawLeft=0;break;case"ArrowRight":this._moveState.yawRight=0;break;case"KeyQ":this._moveState.rollLeft=0;break;case"KeyE":this._moveState.rollRight=0;break}this._updateMovementVector(),this._updateRotationVector()}}function qce(i){if(this.enabled!==!1)if(this.dragToLook)this._status++;else{switch(i.button){case 0:this._moveState.forward=1;break;case 2:this._moveState.back=1;break}this._updateMovementVector()}}function Vce(i){if(this.enabled!==!1&&(!this.dragToLook||this._status>0)){const e=this._getContainerDimensions(),t=e.size[0]/2,n=e.size[1]/2;this._moveState.yawLeft=-(i.pageX-e.offset[0]-t)/t,this._moveState.pitchDown=(i.pageY-e.offset[1]-n)/n,this._updateRotationVector()}}function Hce(i){if(this.enabled!==!1){if(this.dragToLook)this._status--,this._moveState.yawLeft=this._moveState.pitchDown=0;else{switch(i.button){case 0:this._moveState.forward=0;break;case 2:this._moveState.back=0;break}this._updateMovementVector()}this._updateRotationVector()}}function jce(){this.enabled!==!1&&(this.dragToLook?(this._status=0,this._moveState.yawLeft=this._moveState.pitchDown=0):(this._moveState.forward=0,this._moveState.back=0,this._updateMovementVector()),this._updateRotationVector())}function Wce(i){this.enabled!==!1&&i.preventDefault()}const $ce={name:"CopyShader",uniforms:{tDiffuse:{value:null},opacity:{value:1}},vertexShader:` + + varying vec2 vUv; + + void main() { + + vUv = uv; + gl_Position = projectionMatrix * modelViewMatrix * vec4( position, 1.0 ); + + }`,fragmentShader:` + + uniform float opacity; + + uniform sampler2D tDiffuse; + + varying vec2 vUv; + + void main() { + + vec4 texel = texture2D( tDiffuse, vUv ); + gl_FragColor = opacity * texel; + + + }`};class sx{constructor(){this.isPass=!0,this.enabled=!0,this.needsSwap=!0,this.clear=!1,this.renderToScreen=!1}setSize(){}render(){console.error("THREE.Pass: .render() must be implemented in derived pass.")}dispose(){}}const Xce=new kg(-1,1,1,-1,0,1);class Yce extends Ki{constructor(){super(),this.setAttribute("position",new Mi([-1,3,0,-1,-1,0,3,-1,0],3)),this.setAttribute("uv",new Mi([0,2,0,0,2,0],2))}}const Qce=new Yce;class Kce{constructor(e){this._mesh=new zi(Qce,e)}dispose(){this._mesh.geometry.dispose()}render(e){e.render(this._mesh,Xce)}get material(){return this._mesh.material}set material(e){this._mesh.material=e}}class Zce extends sx{constructor(e,t){super(),this.textureID=t!==void 0?t:"tDiffuse",e instanceof Ja?(this.uniforms=e.uniforms,this.material=e):e&&(this.uniforms=vy.clone(e.uniforms),this.material=new Ja({name:e.name!==void 0?e.name:"unspecified",defines:Object.assign({},e.defines),uniforms:this.uniforms,vertexShader:e.vertexShader,fragmentShader:e.fragmentShader})),this.fsQuad=new Kce(this.material)}render(e,t,n){this.uniforms[this.textureID]&&(this.uniforms[this.textureID].value=n.texture),this.fsQuad.material=this.material,this.renderToScreen?(e.setRenderTarget(null),this.fsQuad.render(e)):(e.setRenderTarget(t),this.clear&&e.clear(e.autoClearColor,e.autoClearDepth,e.autoClearStencil),this.fsQuad.render(e))}dispose(){this.material.dispose(),this.fsQuad.dispose()}}class r7 extends sx{constructor(e,t){super(),this.scene=e,this.camera=t,this.clear=!0,this.needsSwap=!1,this.inverse=!1}render(e,t,n){const r=e.getContext(),s=e.state;s.buffers.color.setMask(!1),s.buffers.depth.setMask(!1),s.buffers.color.setLocked(!0),s.buffers.depth.setLocked(!0);let a,l;this.inverse?(a=0,l=1):(a=1,l=0),s.buffers.stencil.setTest(!0),s.buffers.stencil.setOp(r.REPLACE,r.REPLACE,r.REPLACE),s.buffers.stencil.setFunc(r.ALWAYS,a,4294967295),s.buffers.stencil.setClear(l),s.buffers.stencil.setLocked(!0),e.setRenderTarget(n),this.clear&&e.clear(),e.render(this.scene,this.camera),e.setRenderTarget(t),this.clear&&e.clear(),e.render(this.scene,this.camera),s.buffers.color.setLocked(!1),s.buffers.depth.setLocked(!1),s.buffers.color.setMask(!0),s.buffers.depth.setMask(!0),s.buffers.stencil.setLocked(!1),s.buffers.stencil.setFunc(r.EQUAL,1,4294967295),s.buffers.stencil.setOp(r.KEEP,r.KEEP,r.KEEP),s.buffers.stencil.setLocked(!0)}}class Jce extends sx{constructor(){super(),this.needsSwap=!1}render(e){e.state.buffers.stencil.setLocked(!1),e.state.buffers.stencil.setTest(!1)}}class ehe{constructor(e,t){if(this.renderer=e,this._pixelRatio=e.getPixelRatio(),t===void 0){const n=e.getSize(new dt);this._width=n.width,this._height=n.height,t=new qh(this._width*this._pixelRatio,this._height*this._pixelRatio,{type:Gs}),t.texture.name="EffectComposer.rt1"}else this._width=t.width,this._height=t.height;this.renderTarget1=t,this.renderTarget2=t.clone(),this.renderTarget2.texture.name="EffectComposer.rt2",this.writeBuffer=this.renderTarget1,this.readBuffer=this.renderTarget2,this.renderToScreen=!0,this.passes=[],this.copyPass=new Zce($ce),this.copyPass.material.blending=Qa,this.clock=new oD}swapBuffers(){const e=this.readBuffer;this.readBuffer=this.writeBuffer,this.writeBuffer=e}addPass(e){this.passes.push(e),e.setSize(this._width*this._pixelRatio,this._height*this._pixelRatio)}insertPass(e,t){this.passes.splice(t,0,e),e.setSize(this._width*this._pixelRatio,this._height*this._pixelRatio)}removePass(e){const t=this.passes.indexOf(e);t!==-1&&this.passes.splice(t,1)}isLastEnabledPass(e){for(let t=e+1;t=0&&r<1?(l=s,u=a):r>=1&&r<2?(l=a,u=s):r>=2&&r<3?(u=s,h=a):r>=3&&r<4?(u=a,h=s):r>=4&&r<5?(l=a,h=s):r>=5&&r<6&&(l=s,h=a);var m=t-s/2,v=l+m,x=u+m,S=h+m;return n(v,x,S)}var s7={aliceblue:"f0f8ff",antiquewhite:"faebd7",aqua:"00ffff",aquamarine:"7fffd4",azure:"f0ffff",beige:"f5f5dc",bisque:"ffe4c4",black:"000",blanchedalmond:"ffebcd",blue:"0000ff",blueviolet:"8a2be2",brown:"a52a2a",burlywood:"deb887",cadetblue:"5f9ea0",chartreuse:"7fff00",chocolate:"d2691e",coral:"ff7f50",cornflowerblue:"6495ed",cornsilk:"fff8dc",crimson:"dc143c",cyan:"00ffff",darkblue:"00008b",darkcyan:"008b8b",darkgoldenrod:"b8860b",darkgray:"a9a9a9",darkgreen:"006400",darkgrey:"a9a9a9",darkkhaki:"bdb76b",darkmagenta:"8b008b",darkolivegreen:"556b2f",darkorange:"ff8c00",darkorchid:"9932cc",darkred:"8b0000",darksalmon:"e9967a",darkseagreen:"8fbc8f",darkslateblue:"483d8b",darkslategray:"2f4f4f",darkslategrey:"2f4f4f",darkturquoise:"00ced1",darkviolet:"9400d3",deeppink:"ff1493",deepskyblue:"00bfff",dimgray:"696969",dimgrey:"696969",dodgerblue:"1e90ff",firebrick:"b22222",floralwhite:"fffaf0",forestgreen:"228b22",fuchsia:"ff00ff",gainsboro:"dcdcdc",ghostwhite:"f8f8ff",gold:"ffd700",goldenrod:"daa520",gray:"808080",green:"008000",greenyellow:"adff2f",grey:"808080",honeydew:"f0fff0",hotpink:"ff69b4",indianred:"cd5c5c",indigo:"4b0082",ivory:"fffff0",khaki:"f0e68c",lavender:"e6e6fa",lavenderblush:"fff0f5",lawngreen:"7cfc00",lemonchiffon:"fffacd",lightblue:"add8e6",lightcoral:"f08080",lightcyan:"e0ffff",lightgoldenrodyellow:"fafad2",lightgray:"d3d3d3",lightgreen:"90ee90",lightgrey:"d3d3d3",lightpink:"ffb6c1",lightsalmon:"ffa07a",lightseagreen:"20b2aa",lightskyblue:"87cefa",lightslategray:"789",lightslategrey:"789",lightsteelblue:"b0c4de",lightyellow:"ffffe0",lime:"0f0",limegreen:"32cd32",linen:"faf0e6",magenta:"f0f",maroon:"800000",mediumaquamarine:"66cdaa",mediumblue:"0000cd",mediumorchid:"ba55d3",mediumpurple:"9370db",mediumseagreen:"3cb371",mediumslateblue:"7b68ee",mediumspringgreen:"00fa9a",mediumturquoise:"48d1cc",mediumvioletred:"c71585",midnightblue:"191970",mintcream:"f5fffa",mistyrose:"ffe4e1",moccasin:"ffe4b5",navajowhite:"ffdead",navy:"000080",oldlace:"fdf5e6",olive:"808000",olivedrab:"6b8e23",orange:"ffa500",orangered:"ff4500",orchid:"da70d6",palegoldenrod:"eee8aa",palegreen:"98fb98",paleturquoise:"afeeee",palevioletred:"db7093",papayawhip:"ffefd5",peachpuff:"ffdab9",peru:"cd853f",pink:"ffc0cb",plum:"dda0dd",powderblue:"b0e0e6",purple:"800080",rebeccapurple:"639",red:"f00",rosybrown:"bc8f8f",royalblue:"4169e1",saddlebrown:"8b4513",salmon:"fa8072",sandybrown:"f4a460",seagreen:"2e8b57",seashell:"fff5ee",sienna:"a0522d",silver:"c0c0c0",skyblue:"87ceeb",slateblue:"6a5acd",slategray:"708090",slategrey:"708090",snow:"fffafa",springgreen:"00ff7f",steelblue:"4682b4",tan:"d2b48c",teal:"008080",thistle:"d8bfd8",tomato:"ff6347",turquoise:"40e0d0",violet:"ee82ee",wheat:"f5deb3",white:"fff",whitesmoke:"f5f5f5",yellow:"ff0",yellowgreen:"9acd32"};function ohe(i){if(typeof i!="string")return i;var e=i.toLowerCase();return s7[e]?"#"+s7[e]:i}var lhe=/^#[a-fA-F0-9]{6}$/,uhe=/^#[a-fA-F0-9]{8}$/,che=/^#[a-fA-F0-9]{3}$/,hhe=/^#[a-fA-F0-9]{4}$/,kS=/^rgb\(\s*(\d{1,3})\s*(?:,)?\s*(\d{1,3})\s*(?:,)?\s*(\d{1,3})\s*\)$/i,fhe=/^rgb(?:a)?\(\s*(\d{1,3})\s*(?:,)?\s*(\d{1,3})\s*(?:,)?\s*(\d{1,3})\s*(?:,|\/)\s*([-+]?\d*[.]?\d+[%]?)\s*\)$/i,Ahe=/^hsl\(\s*(\d{0,3}[.]?[0-9]+(?:deg)?)\s*(?:,)?\s*(\d{1,3}[.]?[0-9]?)%\s*(?:,)?\s*(\d{1,3}[.]?[0-9]?)%\s*\)$/i,dhe=/^hsl(?:a)?\(\s*(\d{0,3}[.]?[0-9]+(?:deg)?)\s*(?:,)?\s*(\d{1,3}[.]?[0-9]?)%\s*(?:,)?\s*(\d{1,3}[.]?[0-9]?)%\s*(?:,|\/)\s*([-+]?\d*[.]?\d+[%]?)\s*\)$/i;function G0(i){if(typeof i!="string")throw new ru(3);var e=ohe(i);if(e.match(lhe))return{red:parseInt(""+e[1]+e[2],16),green:parseInt(""+e[3]+e[4],16),blue:parseInt(""+e[5]+e[6],16)};if(e.match(uhe)){var t=parseFloat((parseInt(""+e[7]+e[8],16)/255).toFixed(2));return{red:parseInt(""+e[1]+e[2],16),green:parseInt(""+e[3]+e[4],16),blue:parseInt(""+e[5]+e[6],16),alpha:t}}if(e.match(che))return{red:parseInt(""+e[1]+e[1],16),green:parseInt(""+e[2]+e[2],16),blue:parseInt(""+e[3]+e[3],16)};if(e.match(hhe)){var n=parseFloat((parseInt(""+e[4]+e[4],16)/255).toFixed(2));return{red:parseInt(""+e[1]+e[1],16),green:parseInt(""+e[2]+e[2],16),blue:parseInt(""+e[3]+e[3],16),alpha:n}}var r=kS.exec(e);if(r)return{red:parseInt(""+r[1],10),green:parseInt(""+r[2],10),blue:parseInt(""+r[3],10)};var s=fhe.exec(e.substring(0,50));if(s)return{red:parseInt(""+s[1],10),green:parseInt(""+s[2],10),blue:parseInt(""+s[3],10),alpha:parseFloat(""+s[4])>1?parseFloat(""+s[4])/100:parseFloat(""+s[4])};var a=Ahe.exec(e);if(a){var l=parseInt(""+a[1],10),u=parseInt(""+a[2],10)/100,h=parseInt(""+a[3],10)/100,m="rgb("+oy(l,u,h)+")",v=kS.exec(m);if(!v)throw new ru(4,e,m);return{red:parseInt(""+v[1],10),green:parseInt(""+v[2],10),blue:parseInt(""+v[3],10)}}var x=dhe.exec(e.substring(0,50));if(x){var S=parseInt(""+x[1],10),w=parseInt(""+x[2],10)/100,R=parseInt(""+x[3],10)/100,C="rgb("+oy(S,w,R)+")",E=kS.exec(C);if(!E)throw new ru(4,e,C);return{red:parseInt(""+E[1],10),green:parseInt(""+E[2],10),blue:parseInt(""+E[3],10),alpha:parseFloat(""+x[4])>1?parseFloat(""+x[4])/100:parseFloat(""+x[4])}}throw new ru(5)}function phe(i){var e=i.red/255,t=i.green/255,n=i.blue/255,r=Math.max(e,t,n),s=Math.min(e,t,n),a=(r+s)/2;if(r===s)return i.alpha!==void 0?{hue:0,saturation:0,lightness:a,alpha:i.alpha}:{hue:0,saturation:0,lightness:a};var l,u=r-s,h=a>.5?u/(2-r-s):u/(r+s);switch(r){case e:l=(t-n)/u+(t=1?BO(i.hue,i.saturation,i.lightness):"rgba("+oy(i.hue,i.saturation,i.lightness)+","+i.alpha+")";throw new ru(2)}function OO(i,e,t){if(typeof i=="number"&&typeof e=="number"&&typeof t=="number")return hw("#"+Ff(i)+Ff(e)+Ff(t));if(typeof i=="object"&&e===void 0&&t===void 0)return hw("#"+Ff(i.red)+Ff(i.green)+Ff(i.blue));throw new ru(6)}function ax(i,e,t,n){if(typeof i=="object"&&e===void 0&&t===void 0&&n===void 0)return i.alpha>=1?OO(i.red,i.green,i.blue):"rgba("+i.red+","+i.green+","+i.blue+","+i.alpha+")";throw new ru(7)}var yhe=function(e){return typeof e.red=="number"&&typeof e.green=="number"&&typeof e.blue=="number"&&(typeof e.alpha!="number"||typeof e.alpha>"u")},xhe=function(e){return typeof e.red=="number"&&typeof e.green=="number"&&typeof e.blue=="number"&&typeof e.alpha=="number"},bhe=function(e){return typeof e.hue=="number"&&typeof e.saturation=="number"&&typeof e.lightness=="number"&&(typeof e.alpha!="number"||typeof e.alpha>"u")},She=function(e){return typeof e.hue=="number"&&typeof e.saturation=="number"&&typeof e.lightness=="number"&&typeof e.alpha=="number"};function Kh(i){if(typeof i!="object")throw new ru(8);if(xhe(i))return ax(i);if(yhe(i))return OO(i);if(She(i))return _he(i);if(bhe(i))return vhe(i);throw new ru(8)}function IO(i,e,t){return function(){var r=t.concat(Array.prototype.slice.call(arguments));return r.length>=e?i.apply(this,r):IO(i,e,r)}}function Do(i){return IO(i,i.length,[])}function The(i,e){if(e==="transparent")return e;var t=Qh(e);return Kh(io({},t,{hue:t.hue+parseFloat(i)}))}Do(The);function J0(i,e,t){return Math.max(i,Math.min(e,t))}function whe(i,e){if(e==="transparent")return e;var t=Qh(e);return Kh(io({},t,{lightness:J0(0,1,t.lightness-parseFloat(i))}))}Do(whe);function Mhe(i,e){if(e==="transparent")return e;var t=Qh(e);return Kh(io({},t,{saturation:J0(0,1,t.saturation-parseFloat(i))}))}Do(Mhe);function Ehe(i,e){if(e==="transparent")return e;var t=Qh(e);return Kh(io({},t,{lightness:J0(0,1,t.lightness+parseFloat(i))}))}Do(Ehe);function Che(i,e,t){if(e==="transparent")return t;if(t==="transparent")return e;if(i===0)return t;var n=G0(e),r=io({},n,{alpha:typeof n.alpha=="number"?n.alpha:1}),s=G0(t),a=io({},s,{alpha:typeof s.alpha=="number"?s.alpha:1}),l=r.alpha-a.alpha,u=parseFloat(i)*2-1,h=u*l===-1?u:u+l,m=1+u*l,v=(h/m+1)/2,x=1-v,S={red:Math.floor(r.red*v+a.red*x),green:Math.floor(r.green*v+a.green*x),blue:Math.floor(r.blue*v+a.blue*x),alpha:r.alpha*parseFloat(i)+a.alpha*(1-parseFloat(i))};return ax(S)}var Rhe=Do(Che),FO=Rhe;function Nhe(i,e){if(e==="transparent")return e;var t=G0(e),n=typeof t.alpha=="number"?t.alpha:1,r=io({},t,{alpha:J0(0,1,(n*100+parseFloat(i)*100)/100)});return ax(r)}var Dhe=Do(Nhe),Phe=Dhe;function Lhe(i,e){if(e==="transparent")return e;var t=Qh(e);return Kh(io({},t,{saturation:J0(0,1,t.saturation+parseFloat(i))}))}Do(Lhe);function Uhe(i,e){return e==="transparent"?e:Kh(io({},Qh(e),{hue:parseFloat(i)}))}Do(Uhe);function Bhe(i,e){return e==="transparent"?e:Kh(io({},Qh(e),{lightness:parseFloat(i)}))}Do(Bhe);function Ohe(i,e){return e==="transparent"?e:Kh(io({},Qh(e),{saturation:parseFloat(i)}))}Do(Ohe);function Ihe(i,e){return e==="transparent"?e:FO(parseFloat(i),"rgb(0, 0, 0)",e)}Do(Ihe);function Fhe(i,e){return e==="transparent"?e:FO(parseFloat(i),"rgb(255, 255, 255)",e)}Do(Fhe);function khe(i,e){if(e==="transparent")return e;var t=G0(e),n=typeof t.alpha=="number"?t.alpha:1,r=io({},t,{alpha:J0(0,1,+(n*100-parseFloat(i)*100).toFixed(2)/100)});return ax(r)}Do(khe);var fw="http://www.w3.org/1999/xhtml";const a7={svg:"http://www.w3.org/2000/svg",xhtml:fw,xlink:"http://www.w3.org/1999/xlink",xml:"http://www.w3.org/XML/1998/namespace",xmlns:"http://www.w3.org/2000/xmlns/"};function kO(i){var e=i+="",t=e.indexOf(":");return t>=0&&(e=i.slice(0,t))!=="xmlns"&&(i=i.slice(t+1)),a7.hasOwnProperty(e)?{space:a7[e],local:i}:i}function zhe(i){return function(){var e=this.ownerDocument,t=this.namespaceURI;return t===fw&&e.documentElement.namespaceURI===fw?e.createElement(i):e.createElementNS(t,i)}}function Ghe(i){return function(){return this.ownerDocument.createElementNS(i.space,i.local)}}function zO(i){var e=kO(i);return(e.local?Ghe:zhe)(e)}function qhe(){}function GO(i){return i==null?qhe:function(){return this.querySelector(i)}}function Vhe(i){typeof i!="function"&&(i=GO(i));for(var e=this._groups,t=e.length,n=new Array(t),r=0;r=L&&(L=B+1);!(G=C[L])&&++L=0;)(a=n[r])&&(s&&a.compareDocumentPosition(s)^4&&s.parentNode.insertBefore(a,s),s=a);return this}function mfe(i){i||(i=gfe);function e(v,x){return v&&x?i(v.__data__,x.__data__):!v-!x}for(var t=this._groups,n=t.length,r=new Array(n),s=0;se?1:i>=e?0:NaN}function vfe(){var i=arguments[0];return arguments[0]=this,i.apply(null,arguments),this}function _fe(){return Array.from(this)}function yfe(){for(var i=this._groups,e=0,t=i.length;e1?this.each((e==null?Dfe:typeof e=="function"?Lfe:Pfe)(i,e,t??"")):Bfe(this.node(),i)}function Bfe(i,e){return i.style.getPropertyValue(e)||HO(i).getComputedStyle(i,null).getPropertyValue(e)}function Ofe(i){return function(){delete this[i]}}function Ife(i,e){return function(){this[i]=e}}function Ffe(i,e){return function(){var t=e.apply(this,arguments);t==null?delete this[i]:this[i]=t}}function kfe(i,e){return arguments.length>1?this.each((e==null?Ofe:typeof e=="function"?Ffe:Ife)(i,e)):this.node()[i]}function jO(i){return i.trim().split(/^|\s+/)}function QE(i){return i.classList||new WO(i)}function WO(i){this._node=i,this._names=jO(i.getAttribute("class")||"")}WO.prototype={add:function(i){var e=this._names.indexOf(i);e<0&&(this._names.push(i),this._node.setAttribute("class",this._names.join(" ")))},remove:function(i){var e=this._names.indexOf(i);e>=0&&(this._names.splice(e,1),this._node.setAttribute("class",this._names.join(" ")))},contains:function(i){return this._names.indexOf(i)>=0}};function $O(i,e){for(var t=QE(i),n=-1,r=e.length;++n=0&&(t=e.slice(n+1),e=e.slice(0,n)),{type:e,name:t}})}function AAe(i){return function(){var e=this.__on;if(e){for(var t=0,n=-1,r=e.length,s;t2&&(a.children=arguments.length>3?i1.call(arguments,2):t),typeof i=="function"&&i.defaultProps!=null)for(s in i.defaultProps)a[s]===void 0&&(a[s]=i.defaultProps[s]);return Gm(i,a,n,r,null)}function Gm(i,e,t,n,r){var s={type:i,props:e,key:t,ref:n,__k:null,__:null,__b:0,__e:null,__c:null,constructor:void 0,__v:r??++QO,__i:-1,__u:0};return r==null&&Tr.vnode!=null&&Tr.vnode(s),s}function lx(i){return i.children}function r_(i,e){this.props=i,this.context=e}function q0(i,e){if(e==null)return i.__?q0(i.__,i.__i+1):null;for(var t;ee&&Hf.sort(JO),i=Hf.shift(),e=Hf.length,EAe(i);hy.__r=0}function nI(i,e,t,n,r,s,a,l,u,h,m){var v,x,S,w,R,C,E,B=n&&n.__k||cy,L=e.length;for(u=CAe(t,e,B,u,L),v=0;v0?a=i.__k[s]=Gm(a.type,a.props,a.key,a.ref?a.ref:null,a.__v):i.__k[s]=a,u=s+x,a.__=i,a.__b=i.__b+1,l=null,(h=a.__i=RAe(a,t,u,v))!=-1&&(v--,(l=t[h])&&(l.__u|=2)),l==null||l.__v==null?(h==-1&&(r>m?x--:ru?x--:x++,a.__u|=4))):i.__k[s]=null;if(v)for(s=0;s(m?1:0)){for(r=t-1,s=t+1;r>=0||s=0?r--:s++])!=null&&(2&h.__u)==0&&l==h.key&&u==h.type)return a}return-1}function u7(i,e,t){e[0]=="-"?i.setProperty(e,t??""):i[e]=t==null?"":typeof t!="number"||wAe.test(e)?t:t+"px"}function kv(i,e,t,n,r){var s,a;e:if(e=="style")if(typeof t=="string")i.style.cssText=t;else{if(typeof n=="string"&&(i.style.cssText=n=""),n)for(e in n)t&&e in t||u7(i.style,e,"");if(t)for(e in t)n&&t[e]==n[e]||u7(i.style,e,t[e])}else if(e[0]=="o"&&e[1]=="n")s=e!=(e=e.replace(eI,"$1")),a=e.toLowerCase(),e=a in i||e=="onFocusOut"||e=="onFocusIn"?a.slice(2):e.slice(2),i.l||(i.l={}),i.l[e+s]=t,t?n?t.u=n.u:(t.u=KE,i.addEventListener(e,s?dw:Aw,s)):i.removeEventListener(e,s?dw:Aw,s);else{if(r=="http://www.w3.org/2000/svg")e=e.replace(/xlink(H|:h)/,"h").replace(/sName$/,"s");else if(e!="width"&&e!="height"&&e!="href"&&e!="list"&&e!="form"&&e!="tabIndex"&&e!="download"&&e!="rowSpan"&&e!="colSpan"&&e!="role"&&e!="popover"&&e in i)try{i[e]=t??"";break e}catch{}typeof t=="function"||(t==null||t===!1&&e[4]!="-"?i.removeAttribute(e):i.setAttribute(e,e=="popover"&&t==1?"":t))}}function c7(i){return function(e){if(this.l){var t=this.l[e.type+i];if(e.t==null)e.t=KE++;else if(e.t0?i:ox(i)?i.map(sI):su({},i)}function NAe(i,e,t,n,r,s,a,l,u){var h,m,v,x,S,w,R,C=t.props||uy,E=e.props,B=e.type;if(B=="svg"?r="http://www.w3.org/2000/svg":B=="math"?r="http://www.w3.org/1998/Math/MathML":r||(r="http://www.w3.org/1999/xhtml"),s!=null){for(h=0;h2&&(l.children=arguments.length>3?i1.call(arguments,2):t),Gm(i.type,l,n||i.key,r||i.ref,null)}i1=cy.slice,Tr={__e:function(i,e,t,n){for(var r,s,a;e=e.__;)if((r=e.__c)&&!r.__)try{if((s=r.constructor)&&s.getDerivedStateFromError!=null&&(r.setState(s.getDerivedStateFromError(i)),a=r.__d),r.componentDidCatch!=null&&(r.componentDidCatch(i,n||{}),a=r.__d),a)return r.__E=r}catch(l){i=l}throw i}},QO=0,KO=function(i){return i!=null&&i.constructor===void 0},r_.prototype.setState=function(i,e){var t;t=this.__s!=null&&this.__s!=this.state?this.__s:this.__s=su({},this.state),typeof i=="function"&&(i=i(su({},t),this.props)),i&&su(t,i),i!=null&&this.__v&&(e&&this._sb.push(e),l7(this))},r_.prototype.forceUpdate=function(i){this.__v&&(this.__e=!0,i&&this.__h.push(i),l7(this))},r_.prototype.render=lx,Hf=[],ZO=typeof Promise=="function"?Promise.prototype.then.bind(Promise.resolve()):setTimeout,JO=function(i,e){return i.__v.__b-e.__v.__b},hy.__r=0,eI=/(PointerCapture)$|Capture$/i,KE=0,Aw=c7(!1),dw=c7(!0);function h7(i,e){(e==null||e>i.length)&&(e=i.length);for(var t=0,n=Array(e);t"u")){var n=document.head||document.getElementsByTagName("head")[0],r=document.createElement("style");r.type="text/css",t==="top"&&n.firstChild?n.insertBefore(r,n.firstChild):n.appendChild(r),r.styleSheet?r.styleSheet.cssText=i:r.appendChild(document.createTextNode(i))}}var jAe=`.float-tooltip-kap { + position: absolute; + width: max-content; /* prevent shrinking near right edge */ + max-width: max(50%, 150px); + padding: 3px 5px; + border-radius: 3px; + font: 12px sans-serif; + color: #eee; + background: rgba(0,0,0,0.6); + pointer-events: none; +} +`;HAe(jAe);var WAe=xs({props:{content:{default:!1},offsetX:{triggerUpdate:!1},offsetY:{triggerUpdate:!1}},init:function(e,t){var n=arguments.length>2&&arguments[2]!==void 0?arguments[2]:{},r=n.style,s=r===void 0?{}:r,a=!!e&&fy(e)==="object"&&!!e.node&&typeof e.node=="function",l=bAe(a?e.node():e);l.style("position")==="static"&&l.style("position","relative"),t.tooltipEl=l.append("div").attr("class","float-tooltip-kap"),Object.entries(s).forEach(function(h){var m=FAe(h,2),v=m[0],x=m[1];return t.tooltipEl.style(v,x)}),t.tooltipEl.style("left","-10000px").style("display","none");var u="tooltip-".concat(Math.round(Math.random()*1e12));t.mouseInside=!1,l.on("mousemove.".concat(u),function(h){t.mouseInside=!0;var m=TAe(h),v=l.node(),x=v.offsetWidth,S=v.offsetHeight,w=[t.offsetX===null||t.offsetX===void 0?"-".concat(m[0]/x*100,"%"):typeof t.offsetX=="number"?"calc(-50% + ".concat(t.offsetX,"px)"):t.offsetX,t.offsetY===null||t.offsetY===void 0?S>130&&S-m[1]<100?"calc(-100% - 6px)":"21px":typeof t.offsetY=="number"?t.offsetY<0?"calc(-100% - ".concat(Math.abs(t.offsetY),"px)"):"".concat(t.offsetY,"px"):t.offsetY];t.tooltipEl.style("left",m[0]+"px").style("top",m[1]+"px").style("transform","translate(".concat(w.join(","),")")),t.content&&t.tooltipEl.style("display","inline")}),l.on("mouseover.".concat(u),function(){t.mouseInside=!0,t.content&&t.tooltipEl.style("display","inline")}),l.on("mouseout.".concat(u),function(){t.mouseInside=!1,t.tooltipEl.style("display","none")})},update:function(e){e.tooltipEl.style("display",e.content&&e.mouseInside?"inline":"none"),e.content?e.content instanceof HTMLElement?(e.tooltipEl.text(""),e.tooltipEl.append(function(){return e.content})):typeof e.content=="string"?e.tooltipEl.html(e.content):qAe(e.content)?(e.tooltipEl.text(""),VAe(e.content,e.tooltipEl.node())):(e.tooltipEl.style("display","none"),console.warn("Tooltip content is invalid, skipping.",e.content,e.content.toString())):e.tooltipEl.text("")}});function $Ae(i,e){e===void 0&&(e={});var t=e.insertAt;if(!(typeof document>"u")){var n=document.head||document.getElementsByTagName("head")[0],r=document.createElement("style");r.type="text/css",t==="top"&&n.firstChild?n.insertBefore(r,n.firstChild):n.appendChild(r),r.styleSheet?r.styleSheet.cssText=i:r.appendChild(document.createTextNode(i))}}var XAe=`.scene-nav-info { + position: absolute; + bottom: 5px; + width: 100%; + text-align: center; + color: slategrey; + opacity: 0.7; + font-size: 10px; + font-family: sans-serif; + pointer-events: none; + user-select: none; +} + +.scene-container canvas:focus { + outline: none; +}`;$Ae(XAe);function gw(i,e){(e==null||e>i.length)&&(e=i.length);for(var t=0,n=Array(e);t=e.pointerRaycasterThrottleMs){e.lastRaycasterCheck=t;var n=null;if(e.hoverDuringDrag||!e.isPointerDragging){var r=this.intersectingObjects(e.pointerPos.x,e.pointerPos.y);e.hoverOrderComparator&&r.sort(function(a,l){return e.hoverOrderComparator(a.object,l.object)});var s=r.find(function(a){return e.hoverFilter(a.object)})||null;n=s?s.object:null,e.intersection=s||null}n!==e.hoverObj&&(e.onHover(n,e.hoverObj,e.intersection),e.tooltip.content(n&&Ct(e.tooltipContent)(n,e.intersection)||null),e.hoverObj=n)}e.tweenGroup.update()}return this},getPointerPos:function(e){var t=e.pointerPos,n=t.x,r=t.y;return{x:n,y:r}},cameraPosition:function(e,t,n,r){var s=e.camera;if(t&&e.initialised){var a=t,l=n||{x:0,y:0,z:0};if(!r)m(a),v(l);else{var u=Object.assign({},s.position),h=x();e.tweenGroup.add(new ca(u).to(a,r).easing(os.Quadratic.Out).onUpdate(m).start()),e.tweenGroup.add(new ca(h).to(l,r/3).easing(os.Quadratic.Out).onUpdate(v).start())}return this}return Object.assign({},s.position,{lookAt:x()});function m(S){var w=S.x,R=S.y,C=S.z;w!==void 0&&(s.position.x=w),R!==void 0&&(s.position.y=R),C!==void 0&&(s.position.z=C)}function v(S){var w=new br.Vector3(S.x,S.y,S.z);e.controls.enabled&&e.controls.target?e.controls.target=w:s.lookAt(w)}function x(){return Object.assign(new br.Vector3(0,0,-1e3).applyQuaternion(s.quaternion).add(s.position))}},zoomToFit:function(e){for(var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:0,n=arguments.length>2&&arguments[2]!==void 0?arguments[2]:10,r=arguments.length,s=new Array(r>3?r-3:0),a=3;a2&&arguments[2]!==void 0?arguments[2]:0,r=arguments.length>3&&arguments[3]!==void 0?arguments[3]:10,s=e.camera;if(t){var a=new br.Vector3(0,0,0),l=Math.max.apply(Math,Lf(Object.entries(t).map(function(S){var w=nde(S,2),R=w[0],C=w[1];return Math.max.apply(Math,Lf(C.map(function(E){return Math.abs(a[R]-E)})))})))*2,u=(1-r*2/e.height)*s.fov,h=l/Math.atan(u*Math.PI/180),m=h/s.aspect,v=Math.max(h,m);if(v>0){var x=a.clone().sub(s.position).normalize().multiplyScalar(-v);this.cameraPosition(x,a,n)}}return this},getBbox:function(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:function(){return!0},n=new br.Box3(new br.Vector3(0,0,0),new br.Vector3(0,0,0)),r=e.objects.filter(t);return r.length?(r.forEach(function(s){return n.expandByObject(s)}),Object.assign.apply(Object,Lf(["x","y","z"].map(function(s){return KAe({},s,[n.min[s],n.max[s]])})))):null},getScreenCoords:function(e,t,n,r){var s=new br.Vector3(t,n,r);return s.project(this.camera()),{x:(s.x+1)*e.width/2,y:-(s.y-1)*e.height/2}},getSceneCoords:function(e,t,n){var r=arguments.length>3&&arguments[3]!==void 0?arguments[3]:0,s=new br.Vector2(t/e.width*2-1,-(n/e.height)*2+1),a=new br.Raycaster;return a.setFromCamera(s,e.camera),Object.assign({},a.ray.at(r,new br.Vector3))},intersectingObjects:function(e,t,n){var r=new br.Vector2(t/e.width*2-1,-(n/e.height)*2+1),s=new br.Raycaster;return s.params.Line.threshold=e.lineHoverPrecision,s.params.Points.threshold=e.pointsHoverPrecision,s.setFromCamera(r,e.camera),s.intersectObjects(e.objects,!0)},renderer:function(e){return e.renderer},scene:function(e){return e.scene},camera:function(e){return e.camera},postProcessingComposer:function(e){return e.postProcessingComposer},controls:function(e){return e.controls},tbControls:function(e){return e.controls}},stateInit:function(){return{scene:new br.Scene,camera:new br.PerspectiveCamera,clock:new br.Clock,tweenGroup:new My,lastRaycasterCheck:0}},init:function(e,t){var n=arguments.length>2&&arguments[2]!==void 0?arguments[2]:{},r=n.controlType,s=r===void 0?"trackball":r,a=n.useWebGPU,l=a===void 0?!1:a,u=n.rendererConfig,h=u===void 0?{}:u,m=n.extraRenderers,v=m===void 0?[]:m,x=n.waitForLoadComplete,S=x===void 0?!0:x;e.innerHTML="",e.appendChild(t.container=document.createElement("div")),t.container.className="scene-container",t.container.style.position="relative",t.container.appendChild(t.navInfo=document.createElement("div")),t.navInfo.className="scene-nav-info",t.navInfo.textContent={orbit:"Left-click: rotate, Mouse-wheel/middle-click: zoom, Right-click: pan",trackball:"Left-click: rotate, Mouse-wheel/middle-click: zoom, Right-click: pan",fly:"WASD: move, R|F: up | down, Q|E: roll, up|down: pitch, left|right: yaw"}[s]||"",t.navInfo.style.display=t.showNavInfo?null:"none",t.tooltip=new WAe(t.container),t.pointerPos=new br.Vector2,t.pointerPos.x=-2,t.pointerPos.y=-2,["pointermove","pointerdown"].forEach(function(w){return t.container.addEventListener(w,function(R){if(w==="pointerdown"&&(t.isPointerPressed=!0),!t.isPointerDragging&&R.type==="pointermove"&&(R.pressure>0||t.isPointerPressed)&&(R.pointerType==="mouse"||R.movementX===void 0||[R.movementX,R.movementY].some(function(B){return Math.abs(B)>1}))&&(t.isPointerDragging=!0),t.enablePointerInteraction){var C=E(t.container);t.pointerPos.x=R.pageX-C.left,t.pointerPos.y=R.pageY-C.top}function E(B){var L=B.getBoundingClientRect(),O=window.pageXOffset||document.documentElement.scrollLeft,G=window.pageYOffset||document.documentElement.scrollTop;return{top:L.top+G,left:L.left+O}}},{passive:!0})}),t.container.addEventListener("pointerup",function(w){t.isPointerPressed&&(t.isPointerPressed=!1,!(t.isPointerDragging&&(t.isPointerDragging=!1,!t.clickAfterDrag))&&requestAnimationFrame(function(){w.button===0&&t.onClick(t.hoverObj||null,w,t.intersection),w.button===2&&t.onRightClick&&t.onRightClick(t.hoverObj||null,w,t.intersection)}))},{passive:!0,capture:!0}),t.container.addEventListener("contextmenu",function(w){t.onRightClick&&w.preventDefault()}),t.renderer=new(l?aO:br.WebGLRenderer)(Object.assign({antialias:!0,alpha:!0},h)),t.renderer.setPixelRatio(Math.min(2,window.devicePixelRatio)),t.container.appendChild(t.renderer.domElement),t.extraRenderers=v,t.extraRenderers.forEach(function(w){w.domElement.style.position="absolute",w.domElement.style.top="0px",w.domElement.style.pointerEvents="none",t.container.appendChild(w.domElement)}),t.postProcessingComposer=new ehe(t.renderer),t.postProcessingComposer.addPass(new the(t.scene,t.camera)),t.controls=new{trackball:uce,orbit:wce,fly:kce}[s](t.camera,t.renderer.domElement),s==="fly"&&(t.controls.movementSpeed=300,t.controls.rollSpeed=Math.PI/6,t.controls.dragToLook=!0),(s==="trackball"||s==="orbit")&&(t.controls.minDistance=.1,t.controls.maxDistance=t.skyRadius,t.controls.addEventListener("start",function(){t.controlsEngaged=!0}),t.controls.addEventListener("change",function(){t.controlsEngaged&&(t.controlsDragging=!0)}),t.controls.addEventListener("end",function(){t.controlsEngaged=!1,t.controlsDragging=!1})),[t.renderer,t.postProcessingComposer].concat(Lf(t.extraRenderers)).forEach(function(w){return w.setSize(t.width,t.height)}),t.camera.aspect=t.width/t.height,t.camera.updateProjectionMatrix(),t.camera.position.z=1e3,t.scene.add(t.skysphere=new br.Mesh),t.skysphere.visible=!1,t.loadComplete=t.scene.visible=!S,window.scene=t.scene},update:function(e,t){if(e.width&&e.height&&(t.hasOwnProperty("width")||t.hasOwnProperty("height"))){var n,r=e.width,s=e.height;e.container.style.width="".concat(r,"px"),e.container.style.height="".concat(s,"px"),[e.renderer,e.postProcessingComposer].concat(Lf(e.extraRenderers)).forEach(function(S){return S.setSize(r,s)}),e.camera.aspect=r/s;var a=e.viewOffset.slice(0,2);a.some(function(S){return S})&&(n=e.camera).setViewOffset.apply(n,[r,s].concat(Lf(a),[r,s])),e.camera.updateProjectionMatrix()}if(t.hasOwnProperty("viewOffset")){var l,u=e.width,h=e.height,m=e.viewOffset.slice(0,2);m.some(function(S){return S})?(l=e.camera).setViewOffset.apply(l,[u,h].concat(Lf(m),[u,h])):e.camera.clearViewOffset()}if(t.hasOwnProperty("skyRadius")&&e.skyRadius&&(e.controls.hasOwnProperty("maxDistance")&&t.skyRadius&&(e.controls.maxDistance=Math.min(e.controls.maxDistance,e.skyRadius)),e.camera.far=e.skyRadius*2.5,e.camera.updateProjectionMatrix(),e.skysphere.geometry=new br.SphereGeometry(e.skyRadius)),t.hasOwnProperty("backgroundColor")){var v=G0(e.backgroundColor).alpha;v===void 0&&(v=1),e.renderer.setClearColor(new br.Color(Phe(1,e.backgroundColor)),v)}t.hasOwnProperty("backgroundImageUrl")&&(e.backgroundImageUrl?new br.TextureLoader().load(e.backgroundImageUrl,function(S){S.colorSpace=br.SRGBColorSpace,e.skysphere.material=new br.MeshBasicMaterial({map:S,side:br.BackSide}),e.skysphere.visible=!0,e.onBackgroundImageLoaded&&setTimeout(e.onBackgroundImageLoaded),!e.loadComplete&&x()}):(e.skysphere.visible=!1,e.skysphere.material.map=null,!e.loadComplete&&x())),t.hasOwnProperty("showNavInfo")&&(e.navInfo.style.display=e.showNavInfo?null:"none"),t.hasOwnProperty("lights")&&((t.lights||[]).forEach(function(S){return e.scene.remove(S)}),e.lights.forEach(function(S){return e.scene.add(S)})),t.hasOwnProperty("objects")&&((t.objects||[]).forEach(function(S){return e.scene.remove(S)}),e.objects.forEach(function(S){return e.scene.add(S)}));function x(){e.loadComplete=e.scene.visible=!0}}});function sde(i,e){e===void 0&&(e={});var t=e.insertAt;if(!(typeof document>"u")){var n=document.head||document.getElementsByTagName("head")[0],r=document.createElement("style");r.type="text/css",t==="top"&&n.firstChild?n.insertBefore(r,n.firstChild):n.appendChild(r),r.styleSheet?r.styleSheet.cssText=i:r.appendChild(document.createTextNode(i))}}var ade=`.scene-container .clickable { + cursor: pointer; +}`;sde(ade);function vw(i,e){(e==null||e>i.length)&&(e=i.length);for(var t=0,n=Array(e);t1?l-1:0),h=1;h1&&arguments[1]!==void 0?arguments[1]:{},n=arguments.length>2&&arguments[2]!==void 0?arguments[2]:0,r=a();if(t.lat===void 0&&t.lng===void 0&&t.altitude===void 0)return r;var s=Object.assign({},r,t);if(["lat","lng","altitude"].forEach(function(u){return s[u]=+s[u]}),!n)l(s);else{for(;r.lng-s.lng>180;)r.lng-=360;for(;r.lng-s.lng<-180;)r.lng+=360;e.tweenGroup.add(new ca(r).to(s,n).easing(os.Cubic.InOut).onUpdate(l).start())}return this;function a(){return e.globe.toGeoCoords(e.renderObjs.cameraPosition())}function l(u){var h=u.lat,m=u.lng,v=u.altitude;e.renderObjs.cameraPosition(e.globe.getCoords(h,m,v)),e.globe.setPointOfView(e.renderObjs.camera())}},getScreenCoords:function(e){for(var t,n=arguments.length,r=new Array(n>1?n-1:0),s=1;slocalStorage.getItem("radio-theme")||"default"),[a,l]=ye.useState([]),[u,h]=ye.useState(null),[m,v]=ye.useState([]),[x,S]=ye.useState(!1),[w,R]=ye.useState({}),[C,E]=ye.useState([]),[B,L]=ye.useState(""),[O,G]=ye.useState(""),[q,z]=ye.useState(""),[j,F]=ye.useState([]),[V,Y]=ye.useState(!1),[J,ne]=ye.useState([]),[oe,te]=ye.useState(!1),[Q,ue]=ye.useState(!1),[he,we]=ye.useState(.5),[Te,ce]=ye.useState(null),[be,ze]=ye.useState(!1),[Ee,Ge]=ye.useState(!1),xe=ye.useRef(void 0),Le=ye.useRef(void 0),ct=ye.useRef(B);ye.useEffect(()=>{fetch("/api/radio/places").then($=>$.json()).then(l).catch(console.error),fetch("/api/radio/guilds").then($=>$.json()).then($=>{if(E($),$.length>0){L($[0].id);const se=$[0].voiceChannels.find(Se=>Se.members>0)??$[0].voiceChannels[0];se&&G(se.id)}}).catch(console.error),fetch("/api/radio/favorites").then($=>$.json()).then(ne).catch(console.error)},[]),ye.useEffect(()=>{ct.current=B},[B]),ye.useEffect(()=>{i!=null&&i.guildId&&"playing"in i&&i.type!=="radio_voicestats"?R($=>{if(i.playing)return{...$,[i.guildId]:i.playing};const se={...$};return delete se[i.guildId],se}):i!=null&&i.playing&&!(i!=null&&i.guildId)&&R(i.playing),i!=null&&i.favorites&&ne(i.favorites),i!=null&&i.volumes&&B&&i.volumes[B]!=null&&we(i.volumes[B]),(i==null?void 0:i.volume)!=null&&(i==null?void 0:i.guildId)===B&&we(i.volume),(i==null?void 0:i.type)==="radio_voicestats"&&i.guildId===ct.current&&ce({voicePing:i.voicePing,gatewayPing:i.gatewayPing,status:i.status,channelName:i.channelName,connectedSince:i.connectedSince})},[i,B]),ye.useEffect(()=>{if(localStorage.setItem("radio-theme",r),t.current&&e.current){const se=getComputedStyle(e.current.parentElement).getPropertyValue("--accent-rgb").trim();t.current.pointColor(()=>`rgba(${se}, 0.85)`).atmosphereColor(`rgba(${se}, 0.25)`)}},[r]);const _t=ye.useRef(u);_t.current=u;const xt=ye.useRef(oe);xt.current=oe;const Ft=ye.useCallback(()=>{var se;const $=(se=t.current)==null?void 0:se.controls();$&&($.autoRotate=!1),n.current&&clearTimeout(n.current),n.current=setTimeout(()=>{var Fe;if(_t.current||xt.current)return;const Se=(Fe=t.current)==null?void 0:Fe.controls();Se&&(Se.autoRotate=!0)},5e3)},[]);ye.useEffect(()=>{var se;const $=(se=t.current)==null?void 0:se.controls();$&&(u||oe?($.autoRotate=!1,n.current&&clearTimeout(n.current)):$.autoRotate=!0)},[u,oe]);const Ye=ye.useRef(void 0);Ye.current=$=>{h($),te(!1),S(!0),v([]),Ft(),t.current&&t.current.pointOfView({lat:$.geo[1],lng:$.geo[0],altitude:.4},800),fetch(`/api/radio/place/${$.id}/channels`).then(se=>se.json()).then(se=>{v(se),S(!1)}).catch(()=>S(!1))},ye.useEffect(()=>{const $=e.current;if(!$)return;$.clientWidth>0&&$.clientHeight>0&&Ge(!0);const se=new ResizeObserver(Se=>{for(const Fe of Se){const{width:qe,height:wt}=Fe.contentRect;qe>0&&wt>0&&Ge(!0)}});return se.observe($),()=>se.disconnect()},[]),ye.useEffect(()=>{if(!e.current||a.length===0)return;const $=e.current.clientWidth,se=e.current.clientHeight;if(t.current){t.current.pointsData(a),$>0&&se>0&&t.current.width($).height(se);return}if($===0||se===0)return;const Fe=getComputedStyle(e.current.parentElement).getPropertyValue("--accent-rgb").trim()||"230, 126, 34",qe=new yde(e.current).backgroundColor("rgba(0,0,0,0)").atmosphereColor(`rgba(${Fe}, 0.25)`).atmosphereAltitude(.12).globeImageUrl("/nasa-blue-marble.jpg").pointsData(a).pointLat(Ht=>Ht.geo[1]).pointLng(Ht=>Ht.geo[0]).pointColor(()=>`rgba(${Fe}, 0.85)`).pointRadius(Ht=>Math.max(.12,Math.min(.45,.06+(Ht.size??1)*.005))).pointAltitude(.001).pointResolution(24).pointLabel(Ht=>`

`).onPointClick(Ht=>{var Pt;return(Pt=Ye.current)==null?void 0:Pt.call(Ye,Ht)}).width(e.current.clientWidth).height(e.current.clientHeight);qe.renderer().setPixelRatio(window.devicePixelRatio),qe.pointOfView({lat:48,lng:10,altitude:GS});const wt=qe.controls();wt&&(wt.autoRotate=!0,wt.autoRotateSpeed=.3);let Mt=GS;const Gt=()=>{const Pt=qe.pointOfView().altitude;if(Math.abs(Pt-Mt)/Mt<.05)return;Mt=Pt;const It=Math.sqrt(Pt/GS);qe.pointRadius(Nn=>Math.max(.12,Math.min(.45,.06+(Nn.size??1)*.005))*Math.max(.15,Math.min(2.5,It)))};wt.addEventListener("change",Gt),t.current=qe;const $t=e.current,vt=()=>Ft();$t.addEventListener("mousedown",vt),$t.addEventListener("touchstart",vt),$t.addEventListener("wheel",vt);const Yt=()=>{if(e.current&&t.current){const Ht=e.current.clientWidth,Pt=e.current.clientHeight;Ht>0&&Pt>0&&t.current.width(Ht).height(Pt)}};window.addEventListener("resize",Yt);const rn=new ResizeObserver(()=>Yt());return rn.observe($t),()=>{wt.removeEventListener("change",Gt),$t.removeEventListener("mousedown",vt),$t.removeEventListener("touchstart",vt),$t.removeEventListener("wheel",vt),window.removeEventListener("resize",Yt),rn.disconnect()}},[a,Ft,Ee]);const rt=ye.useCallback(async($,se,Se,Fe)=>{if(!(!B||!O)){ue(!0);try{(await(await fetch("/api/radio/play",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({guildId:B,voiceChannelId:O,stationId:$,stationName:se,placeName:Se??(u==null?void 0:u.title)??"",country:Fe??(u==null?void 0:u.country)??""})})).json()).ok&&(R(Mt=>{var Gt,$t;return{...Mt,[B]:{stationId:$,stationName:se,placeName:Se??(u==null?void 0:u.title)??"",country:Fe??(u==null?void 0:u.country)??"",startedAt:new Date().toISOString(),channelName:(($t=(Gt=C.find(vt=>vt.id===B))==null?void 0:Gt.voiceChannels.find(vt=>vt.id===O))==null?void 0:$t.name)??""}}}),Ft())}catch(qe){console.error(qe)}ue(!1)}},[B,O,u,C]),fe=ye.useCallback(async()=>{B&&(await fetch("/api/radio/stop",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({guildId:B})}),R($=>{const se={...$};return delete se[B],se}))},[B]),zt=ye.useCallback($=>{if(z($),xe.current&&clearTimeout(xe.current),!$.trim()){F([]),Y(!1);return}xe.current=setTimeout(async()=>{try{const Se=await(await fetch(`/api/radio/search?q=${encodeURIComponent($)}`)).json();F(Se),Y(!0)}catch{F([])}},350)},[]),ft=ye.useCallback($=>{var se,Se,Fe;if(Y(!1),z(""),F([]),$.type==="channel"){const qe=(se=$.url.match(/\/listen\/[^/]+\/([^/]+)/))==null?void 0:se[1];qe&&rt(qe,$.title,$.subtitle,"")}else if($.type==="place"){const qe=(Se=$.url.match(/\/visit\/[^/]+\/([^/]+)/))==null?void 0:Se[1],wt=a.find(Mt=>Mt.id===qe);wt&&((Fe=Ye.current)==null||Fe.call(Ye,wt))}},[a,rt]),Dt=ye.useCallback(async($,se)=>{try{const Fe=await(await fetch("/api/radio/favorites",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({stationId:$,stationName:se,placeName:(u==null?void 0:u.title)??"",country:(u==null?void 0:u.country)??"",placeId:(u==null?void 0:u.id)??""})})).json();Fe.favorites&&ne(Fe.favorites)}catch{}},[u]),pt=ye.useCallback($=>{we($),B&&(Le.current&&clearTimeout(Le.current),Le.current=setTimeout(()=>{fetch("/api/radio/volume",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({guildId:B,volume:$})}).catch(console.error)},100))},[B]),en=$=>J.some(se=>se.stationId===$),Re=B?w[B]:null,re=C.find($=>$.id===B);return k.jsxs("div",{className:"radio-container","data-theme":r,children:[k.jsxs("header",{className:"radio-topbar",children:[k.jsxs("div",{className:"radio-topbar-left",children:[k.jsx("span",{className:"radio-topbar-logo",children:"🌍"}),k.jsx("span",{className:"radio-topbar-title",children:"World Radio"}),C.length>1&&k.jsx("select",{className:"radio-sel",value:B,onChange:$=>{L($.target.value);const se=C.find(Fe=>Fe.id===$.target.value),Se=(se==null?void 0:se.voiceChannels.find(Fe=>Fe.members>0))??(se==null?void 0:se.voiceChannels[0]);G((Se==null?void 0:Se.id)??"")},children:C.map($=>k.jsx("option",{value:$.id,children:$.name},$.id))}),k.jsxs("select",{className:"radio-sel",value:O,onChange:$=>G($.target.value),children:[k.jsx("option",{value:"",children:"Voice Channel..."}),re==null?void 0:re.voiceChannels.map($=>k.jsxs("option",{value:$.id,children:["🔊"," ",$.name,$.members>0?` (${$.members})`:""]},$.id))]})]}),Re&&k.jsxs("div",{className:"radio-topbar-np",children:[k.jsxs("div",{className:"radio-eq radio-eq-np",children:[k.jsx("span",{}),k.jsx("span",{}),k.jsx("span",{})]}),k.jsxs("div",{className:"radio-np-info",children:[k.jsx("span",{className:"radio-np-name",children:Re.stationName}),k.jsxs("span",{className:"radio-np-loc",children:[Re.placeName,Re.country?`, ${Re.country}`:""]})]})]}),k.jsxs("div",{className:"radio-topbar-right",children:[Re&&k.jsxs(k.Fragment,{children:[k.jsxs("div",{className:"radio-volume",children:[k.jsx("span",{className:"radio-volume-icon",children:he===0?"🔇":he<.4?"🔉":"🔊"}),k.jsx("input",{type:"range",className:"radio-volume-slider",min:0,max:1,step:.01,value:he,onChange:$=>pt(Number($.target.value))}),k.jsxs("span",{className:"radio-volume-val",children:[Math.round(he*100),"%"]})]}),k.jsxs("div",{className:"radio-conn",onClick:()=>ze(!0),title:"Verbindungsdetails",children:[k.jsx("span",{className:"radio-conn-dot"}),"Verbunden",(Te==null?void 0:Te.voicePing)!=null&&k.jsxs("span",{className:"radio-conn-ping",children:[Te.voicePing,"ms"]})]}),k.jsxs("button",{className:"radio-topbar-stop",onClick:fe,children:["⏹"," Stop"]})]}),k.jsx("div",{className:"radio-theme-inline",children:xde.map($=>k.jsx("div",{className:`radio-theme-dot ${r===$.id?"active":""}`,style:{background:$.color},title:$.label,onClick:()=>s($.id)},$.id))})]})]}),k.jsxs("div",{className:"radio-globe-wrap",children:[k.jsx("div",{className:"radio-globe",ref:e}),k.jsxs("div",{className:"radio-search",children:[k.jsxs("div",{className:"radio-search-wrap",children:[k.jsx("span",{className:"radio-search-icon",children:"🔍"}),k.jsx("input",{className:"radio-search-input",type:"text",placeholder:"Sender oder Stadt suchen...",value:q,onChange:$=>zt($.target.value),onFocus:()=>{j.length&&Y(!0)}}),q&&k.jsx("button",{className:"radio-search-clear",onClick:()=>{z(""),F([]),Y(!1)},children:"✕"})]}),V&&j.length>0&&k.jsx("div",{className:"radio-search-results",children:j.slice(0,12).map($=>k.jsxs("button",{className:"radio-search-result",onClick:()=>ft($),children:[k.jsx("span",{className:"radio-search-result-icon",children:$.type==="channel"?"📻":$.type==="place"?"📍":"🌍"}),k.jsxs("div",{className:"radio-search-result-text",children:[k.jsx("span",{className:"radio-search-result-title",children:$.title}),k.jsx("span",{className:"radio-search-result-sub",children:$.subtitle})]})]},$.id+$.url))})]}),!u&&!oe&&k.jsxs("button",{className:"radio-fab",onClick:()=>{te(!0),h(null)},title:"Favoriten",children:["⭐",J.length>0&&k.jsx("span",{className:"radio-fab-badge",children:J.length})]}),oe&&k.jsxs("div",{className:"radio-panel open",children:[k.jsxs("div",{className:"radio-panel-header",children:[k.jsxs("h3",{children:["⭐"," Favoriten"]}),k.jsx("button",{className:"radio-panel-close",onClick:()=>te(!1),children:"✕"})]}),k.jsx("div",{className:"radio-panel-body",children:J.length===0?k.jsx("div",{className:"radio-panel-empty",children:"Noch keine Favoriten"}):J.map($=>k.jsxs("div",{className:`radio-station ${(Re==null?void 0:Re.stationId)===$.stationId?"playing":""}`,children:[k.jsxs("div",{className:"radio-station-info",children:[k.jsx("span",{className:"radio-station-name",children:$.stationName}),k.jsxs("span",{className:"radio-station-loc",children:[$.placeName,", ",$.country]})]}),k.jsxs("div",{className:"radio-station-btns",children:[k.jsx("button",{className:"radio-btn-play",onClick:()=>rt($.stationId,$.stationName,$.placeName,$.country),disabled:!O||Q,children:"▶"}),k.jsx("button",{className:"radio-btn-fav active",onClick:()=>Dt($.stationId,$.stationName),children:"★"})]})]},$.stationId))})]}),u&&!oe&&k.jsxs("div",{className:"radio-panel open",children:[k.jsxs("div",{className:"radio-panel-header",children:[k.jsxs("div",{children:[k.jsx("h3",{children:u.title}),k.jsx("span",{className:"radio-panel-sub",children:u.country})]}),k.jsx("button",{className:"radio-panel-close",onClick:()=>h(null),children:"✕"})]}),k.jsx("div",{className:"radio-panel-body",children:x?k.jsxs("div",{className:"radio-panel-loading",children:[k.jsx("div",{className:"radio-spinner"}),"Sender werden geladen..."]}):m.length===0?k.jsx("div",{className:"radio-panel-empty",children:"Keine Sender gefunden"}):m.map($=>k.jsxs("div",{className:`radio-station ${(Re==null?void 0:Re.stationId)===$.id?"playing":""}`,children:[k.jsxs("div",{className:"radio-station-info",children:[k.jsx("span",{className:"radio-station-name",children:$.title}),(Re==null?void 0:Re.stationId)===$.id&&k.jsxs("span",{className:"radio-station-live",children:[k.jsxs("span",{className:"radio-eq",children:[k.jsx("span",{}),k.jsx("span",{}),k.jsx("span",{})]}),"Live"]})]}),k.jsxs("div",{className:"radio-station-btns",children:[(Re==null?void 0:Re.stationId)===$.id?k.jsx("button",{className:"radio-btn-stop",onClick:fe,children:"⏹"}):k.jsx("button",{className:"radio-btn-play",onClick:()=>rt($.id,$.title),disabled:!O||Q,children:"▶"}),k.jsx("button",{className:`radio-btn-fav ${en($.id)?"active":""}`,onClick:()=>Dt($.id,$.title),children:en($.id)?"★":"☆"})]})]},$.id))})]}),k.jsxs("div",{className:"radio-counter",children:["📻"," ",a.length.toLocaleString("de-DE")," Sender weltweit"]}),k.jsx("a",{className:"radio-attribution",href:"https://science.nasa.gov/earth/earth-observatory/blue-marble-next-generation/",target:"_blank",rel:"noreferrer",children:"Imagery © NASA Blue Marble"})]}),be&&(()=>{const $=Te!=null&&Te.connectedSince?Math.floor((Date.now()-new Date(Te.connectedSince).getTime())/1e3):0,se=Math.floor($/3600),Se=Math.floor($%3600/60),Fe=$%60,qe=se>0?`${se}h ${String(Se).padStart(2,"0")}m ${String(Fe).padStart(2,"0")}s`:Se>0?`${Se}m ${String(Fe).padStart(2,"0")}s`:`${Fe}s`,wt=Mt=>Mt==null?"var(--text-faint)":Mt<80?"var(--success)":Mt<150?"#f0a830":"#e04040";return k.jsx("div",{className:"radio-modal-overlay",onClick:()=>ze(!1),children:k.jsxs("div",{className:"radio-modal",onClick:Mt=>Mt.stopPropagation(),children:[k.jsxs("div",{className:"radio-modal-header",children:[k.jsx("span",{children:"📡"}),k.jsx("span",{children:"Verbindungsdetails"}),k.jsx("button",{className:"radio-modal-close",onClick:()=>ze(!1),children:"✕"})]}),k.jsxs("div",{className:"radio-modal-body",children:[k.jsxs("div",{className:"radio-modal-stat",children:[k.jsx("span",{className:"radio-modal-label",children:"Voice Ping"}),k.jsxs("span",{className:"radio-modal-value",children:[k.jsx("span",{className:"radio-modal-dot",style:{background:wt((Te==null?void 0:Te.voicePing)??null)}}),(Te==null?void 0:Te.voicePing)!=null?`${Te.voicePing} ms`:"---"]})]}),k.jsxs("div",{className:"radio-modal-stat",children:[k.jsx("span",{className:"radio-modal-label",children:"Gateway Ping"}),k.jsxs("span",{className:"radio-modal-value",children:[k.jsx("span",{className:"radio-modal-dot",style:{background:wt((Te==null?void 0:Te.gatewayPing)??null)}}),Te&&Te.gatewayPing>=0?`${Te.gatewayPing} ms`:"---"]})]}),k.jsxs("div",{className:"radio-modal-stat",children:[k.jsx("span",{className:"radio-modal-label",children:"Status"}),k.jsx("span",{className:"radio-modal-value",style:{color:(Te==null?void 0:Te.status)==="ready"?"var(--success)":"#f0a830"},children:(Te==null?void 0:Te.status)==="ready"?"Verbunden":(Te==null?void 0:Te.status)??"Warte auf Verbindung"})]}),k.jsxs("div",{className:"radio-modal-stat",children:[k.jsx("span",{className:"radio-modal-label",children:"Kanal"}),k.jsx("span",{className:"radio-modal-value",children:(Te==null?void 0:Te.channelName)||"---"})]}),k.jsxs("div",{className:"radio-modal-stat",children:[k.jsx("span",{className:"radio-modal-label",children:"Verbunden seit"}),k.jsx("span",{className:"radio-modal-value",children:qe||"---"})]})]})]})})})()]})}function Sde(i,e,t=365){const n=new Date(Date.now()+t*24*60*60*1e3).toUTCString();document.cookie=`${encodeURIComponent(i)}=${encodeURIComponent(e)}; expires=${n}; path=/; SameSite=Lax`}function Tde(i){const e=`${encodeURIComponent(i)}=`,t=document.cookie.split(";");for(const n of t){const r=n.trim();if(r.startsWith(e))return decodeURIComponent(r.slice(e.length))}return null}const us="/api/soundboard";async function d7(i,e,t,n){const r=new URL(`${us}/sounds`,window.location.origin);i&&r.searchParams.set("q",i),e!==void 0&&r.searchParams.set("folder",e),r.searchParams.set("fuzzy","0");const s=await fetch(r.toString());if(!s.ok)throw new Error("Fehler beim Laden der Sounds");return s.json()}async function wde(){const i=await fetch(`${us}/analytics`);if(!i.ok)throw new Error("Fehler beim Laden der Analytics");return i.json()}async function Mde(){const i=await fetch(`${us}/categories`,{credentials:"include"});if(!i.ok)throw new Error("Fehler beim Laden der Kategorien");return i.json()}async function Ede(){const i=await fetch(`${us}/channels`);if(!i.ok)throw new Error("Fehler beim Laden der Channels");return i.json()}async function Cde(){const i=await fetch(`${us}/selected-channels`);if(!i.ok)throw new Error("Fehler beim Laden der Channel-Auswahl");const e=await i.json();return(e==null?void 0:e.selected)||{}}async function Rde(i,e){if(!(await fetch(`${us}/selected-channel`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({guildId:i,channelId:e})})).ok)throw new Error("Channel-Auswahl setzen fehlgeschlagen")}async function Nde(i,e,t,n,r){const s=await fetch(`${us}/play`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({soundName:i,guildId:e,channelId:t,volume:n,relativePath:r})});if(!s.ok){const a=await s.json().catch(()=>({}));throw new Error((a==null?void 0:a.error)||"Play fehlgeschlagen")}}async function Dde(i,e,t,n,r){const s=await fetch(`${us}/play-url`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({url:i,guildId:e,channelId:t,volume:n,filename:r})}),a=await s.json().catch(()=>({}));if(!s.ok)throw new Error((a==null?void 0:a.error)||"Play-URL fehlgeschlagen");return a}async function Pde(i,e){const t=await fetch(`${us}/download-url`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({url:i,filename:e})}),n=await t.json().catch(()=>({}));if(!t.ok)throw new Error((n==null?void 0:n.error)||"Download fehlgeschlagen");return n}async function Lde(i,e){if(!(await fetch(`${us}/party/start`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({guildId:i,channelId:e})})).ok)throw new Error("Partymode Start fehlgeschlagen")}async function Ude(i){if(!(await fetch(`${us}/party/stop`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({guildId:i})})).ok)throw new Error("Partymode Stop fehlgeschlagen")}async function p7(i,e){const t=await fetch(`${us}/volume`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({guildId:i,volume:e})});if(!t.ok){const n=await t.json().catch(()=>({}));throw new Error((n==null?void 0:n.error)||"Volume aendern fehlgeschlagen")}}async function Bde(i){const e=new URL(`${us}/volume`,window.location.origin);e.searchParams.set("guildId",i);const t=await fetch(e.toString());if(!t.ok)throw new Error("Fehler beim Laden der Lautstaerke");const n=await t.json();return typeof(n==null?void 0:n.volume)=="number"?n.volume:1}async function Ode(){const i=await fetch(`${us}/admin/status`,{credentials:"include"});if(!i.ok)return!1;const e=await i.json();return!!(e!=null&&e.authenticated)}async function Ide(i){return(await fetch(`${us}/admin/login`,{method:"POST",headers:{"Content-Type":"application/json"},credentials:"include",body:JSON.stringify({password:i})})).ok}async function Fde(){await fetch(`${us}/admin/logout`,{method:"POST",credentials:"include"})}async function kde(i){if(!(await fetch(`${us}/admin/sounds/delete`,{method:"POST",headers:{"Content-Type":"application/json"},credentials:"include",body:JSON.stringify({paths:i})})).ok)throw new Error("Loeschen fehlgeschlagen")}async function zde(i,e){const t=await fetch(`${us}/admin/sounds/rename`,{method:"POST",headers:{"Content-Type":"application/json"},credentials:"include",body:JSON.stringify({from:i,to:e})});if(!t.ok)throw new Error("Umbenennen fehlgeschlagen");const n=await t.json();return n==null?void 0:n.to}function Gde(i,e){return new Promise((t,n)=>{const r=new FormData;r.append("files",i);const s=new XMLHttpRequest;s.open("POST",`${us}/upload`),s.upload.onprogress=a=>{a.lengthComputable&&e(Math.round(a.loaded/a.total*100))},s.onload=()=>{var a,l;if(s.status===200)try{const u=JSON.parse(s.responseText);t(((l=(a=u.files)==null?void 0:a[0])==null?void 0:l.name)??i.name)}catch{t(i.name)}else try{n(new Error(JSON.parse(s.responseText).error))}catch{n(new Error(`HTTP ${s.status}`))}},s.onerror=()=>n(new Error("Netzwerkfehler")),s.send(r)})}const qde=[{id:"default",color:"#5865f2",label:"Discord"},{id:"purple",color:"#9b59b6",label:"Midnight"},{id:"forest",color:"#2ecc71",label:"Forest"},{id:"sunset",color:"#e67e22",label:"Sunset"},{id:"ocean",color:"#3498db",label:"Ocean"}],m7=["#3b82f6","#f59e0b","#8b5cf6","#ec4899","#14b8a6","#f97316","#06b6d4","#ef4444","#a855f7","#84cc16","#d946ef","#0ea5e9","#f43f5e","#10b981"];function Vde({data:i}){const[e,t]=ye.useState([]),[n,r]=ye.useState(0),[s,a]=ye.useState([]),[l,u]=ye.useState([]),[h,m]=ye.useState({totalSounds:0,totalPlays:0,mostPlayed:[]}),[v,x]=ye.useState("all"),[S,w]=ye.useState(""),[R,C]=ye.useState(""),[E,B]=ye.useState(""),[L,O]=ye.useState(!1),[G,q]=ye.useState(null),[z,j]=ye.useState([]),[F,V]=ye.useState(""),Y=ye.useRef(""),[J,ne]=ye.useState(!1),[oe,te]=ye.useState(1),[Q,ue]=ye.useState(""),[he,we]=ye.useState({}),[Te,ce]=ye.useState(()=>localStorage.getItem("jb-theme")||"default"),[be,ze]=ye.useState(()=>parseInt(localStorage.getItem("jb-card-size")||"110")),[Ee,Ge]=ye.useState(!1),[xe,Le]=ye.useState([]),ct=ye.useRef(!1),_t=ye.useRef(void 0),[xt,Ft]=ye.useState(!1),[Ye,rt]=ye.useState(!1),[fe,zt]=ye.useState(""),[ft,Dt]=ye.useState([]),[pt,en]=ye.useState(!1),[Re,re]=ye.useState(""),[$,se]=ye.useState({}),[Se,Fe]=ye.useState(""),[qe,wt]=ye.useState(""),[Mt,Gt]=ye.useState(!1),[$t,vt]=ye.useState([]),[Yt,rn]=ye.useState(!1),Ht=ye.useRef(0),Pt=ye.useRef(void 0),[It,Nn]=ye.useState(null),[Jn,ge]=ye.useState(!1),[Wt,it]=ye.useState(null),[bt,Xt]=ye.useState(""),[qt,xn]=ye.useState(null),[qi,rr]=ye.useState(0);ye.useEffect(()=>{ct.current=Ee},[Ee]),ye.useEffect(()=>{Y.current=F},[F]),ye.useEffect(()=>{const _e=cn=>{var Yn;Array.from(((Yn=cn.dataTransfer)==null?void 0:Yn.items)??[]).some(xi=>xi.kind==="file")&&(Ht.current++,Gt(!0))},ot=()=>{Ht.current=Math.max(0,Ht.current-1),Ht.current===0&&Gt(!1)},Rt=cn=>cn.preventDefault(),Jt=cn=>{var xi;cn.preventDefault(),Ht.current=0,Gt(!1);const Yn=Array.from(((xi=cn.dataTransfer)==null?void 0:xi.files)??[]).filter(js=>/\.(mp3|wav)$/i.test(js.name));Yn.length&&Hs(Yn)};return window.addEventListener("dragenter",_e),window.addEventListener("dragleave",ot),window.addEventListener("dragover",Rt),window.addEventListener("drop",Jt),()=>{window.removeEventListener("dragenter",_e),window.removeEventListener("dragleave",ot),window.removeEventListener("dragover",Rt),window.removeEventListener("drop",Jt)}},[xt]);const pn=ye.useCallback((_e,ot="info")=>{it({msg:_e,type:ot}),setTimeout(()=>it(null),3e3)},[]),$i=ye.useCallback(_e=>_e.relativePath??_e.fileName,[]),Jr=["youtube.com","www.youtube.com","m.youtube.com","youtu.be","music.youtube.com","instagram.com","www.instagram.com"],Je=ye.useCallback(_e=>{const ot=_e.trim();return!ot||/^https?:\/\//i.test(ot)?ot:"https://"+ot},[]),mt=ye.useCallback(_e=>{try{const ot=new URL(Je(_e)),Rt=ot.hostname.toLowerCase();return!!(ot.pathname.toLowerCase().endsWith(".mp3")||Jr.some(Jt=>Rt===Jt||Rt.endsWith("."+Jt)))}catch{return!1}},[Je]),kt=ye.useCallback(_e=>{try{const ot=new URL(Je(_e)),Rt=ot.hostname.toLowerCase();return Rt.includes("youtube")||Rt==="youtu.be"?"youtube":Rt.includes("instagram")?"instagram":ot.pathname.toLowerCase().endsWith(".mp3")?"mp3":null}catch{return null}},[Je]),at=F?F.split(":")[0]:"",d=F?F.split(":")[1]:"",ee=ye.useMemo(()=>z.find(_e=>`${_e.guildId}:${_e.channelId}`===F),[z,F]);ye.useEffect(()=>{const _e=()=>{const Rt=new Date,Jt=String(Rt.getHours()).padStart(2,"0"),cn=String(Rt.getMinutes()).padStart(2,"0"),Yn=String(Rt.getSeconds()).padStart(2,"0");Xt(`${Jt}:${cn}:${Yn}`)};_e();const ot=setInterval(_e,1e3);return()=>clearInterval(ot)},[]),ye.useEffect(()=>{(async()=>{try{const[_e,ot]=await Promise.all([Ede(),Cde()]);if(j(_e),_e.length){const Rt=_e[0].guildId,Jt=ot[Rt],cn=Jt&&_e.find(Yn=>Yn.guildId===Rt&&Yn.channelId===Jt);V(cn?`${Rt}:${Jt}`:`${_e[0].guildId}:${_e[0].channelId}`)}}catch(_e){pn((_e==null?void 0:_e.message)||"Channel-Fehler","error")}try{Ft(await Ode())}catch{}try{const _e=await Mde();u(_e.categories||[])}catch{}})()},[]),ye.useEffect(()=>{localStorage.setItem("jb-theme",Te)},[Te]);const $n=ye.useRef(null);ye.useEffect(()=>{const _e=$n.current;if(!_e)return;_e.style.setProperty("--card-size",be+"px");const ot=be/110;_e.style.setProperty("--card-emoji",Math.round(28*ot)+"px"),_e.style.setProperty("--card-font",Math.max(9,Math.round(11*ot))+"px"),localStorage.setItem("jb-card-size",String(be))},[be]),ye.useEffect(()=>{var _e,ot,Rt,Jt,cn,Yn,xi,js;if(i){if(i.soundboard){const mi=i.soundboard;Array.isArray(mi.party)&&Le(mi.party);try{const Pr=mi.selected||{},Ei=(_e=Y.current)==null?void 0:_e.split(":")[0];Ei&&Pr[Ei]&&V(`${Ei}:${Pr[Ei]}`)}catch{}try{const Pr=mi.volumes||{},Ei=(ot=Y.current)==null?void 0:ot.split(":")[0];Ei&&typeof Pr[Ei]=="number"&&te(Pr[Ei])}catch{}try{const Pr=mi.nowplaying||{},Ei=(Rt=Y.current)==null?void 0:Rt.split(":")[0];Ei&&typeof Pr[Ei]=="string"&&ue(Pr[Ei])}catch{}try{const Pr=mi.voicestats||{},Ei=(Jt=Y.current)==null?void 0:Jt.split(":")[0];Ei&&Pr[Ei]&&Nn(Pr[Ei])}catch{}}if(i.type==="soundboard_party")Le(mi=>{const Pr=new Set(mi);return i.active?Pr.add(i.guildId):Pr.delete(i.guildId),Array.from(Pr)});else if(i.type==="soundboard_channel"){const mi=(cn=Y.current)==null?void 0:cn.split(":")[0];i.guildId===mi&&V(`${i.guildId}:${i.channelId}`)}else if(i.type==="soundboard_volume"){const mi=(Yn=Y.current)==null?void 0:Yn.split(":")[0];i.guildId===mi&&typeof i.volume=="number"&&te(i.volume)}else if(i.type==="soundboard_nowplaying"){const mi=(xi=Y.current)==null?void 0:xi.split(":")[0];i.guildId===mi&&ue(i.name||"")}else if(i.type==="soundboard_voicestats"){const mi=(js=Y.current)==null?void 0:js.split(":")[0];i.guildId===mi&&Nn({voicePing:i.voicePing,gatewayPing:i.gatewayPing,status:i.status,channelName:i.channelName,connectedSince:i.connectedSince})}}},[i]),ye.useEffect(()=>{Ge(at?xe.includes(at):!1)},[F,xe,at]),ye.useEffect(()=>{(async()=>{try{let _e="__all__";v==="recent"?_e="__recent__":S&&(_e=S);const ot=await d7(R,_e,void 0,!1);t(ot.items),r(ot.total),a(ot.folders)}catch(_e){pn((_e==null?void 0:_e.message)||"Sounds-Fehler","error")}})()},[v,S,R,qi,pn]),ye.useEffect(()=>{Gn()},[qi]),ye.useEffect(()=>{const _e=Tde("favs");if(_e)try{we(JSON.parse(_e))}catch{}},[]),ye.useEffect(()=>{try{Sde("favs",JSON.stringify(he))}catch{}},[he]),ye.useEffect(()=>{F&&(async()=>{try{const _e=await Bde(at);te(_e)}catch{}})()},[F]),ye.useEffect(()=>{const _e=()=>{ne(!1),xn(null)};return document.addEventListener("click",_e),()=>document.removeEventListener("click",_e)},[]),ye.useEffect(()=>{Ye&&xt&&le()},[Ye,xt]);async function Gn(){try{const _e=await wde();m(_e)}catch{}}async function Xn(_e){if(!F)return pn("Bitte einen Voice-Channel auswaehlen","error");try{await Nde(_e.name,at,d,oe,_e.relativePath),ue(_e.name),Gn()}catch(ot){pn((ot==null?void 0:ot.message)||"Play fehlgeschlagen","error")}}function un(){var Jt;const _e=Je(E);if(!_e)return pn("Bitte einen Link eingeben","error");if(!mt(_e))return pn("Nur YouTube, Instagram oder direkte MP3-Links","error");const ot=kt(_e);let Rt="";if(ot==="mp3")try{Rt=((Jt=new URL(_e).pathname.split("/").pop())==null?void 0:Jt.replace(/\.mp3$/i,""))??""}catch{}q({url:_e,type:ot,filename:Rt,phase:"input"})}async function qn(){if(G){q(_e=>_e?{..._e,phase:"downloading"}:null);try{let _e;const ot=G.filename.trim()||void 0;F&&at&&d?_e=(await Dde(G.url,at,d,oe,ot)).saved:_e=(await Pde(G.url,ot)).saved,q(Rt=>Rt?{...Rt,phase:"done",savedName:_e}:null),B(""),rr(Rt=>Rt+1),Gn(),setTimeout(()=>q(null),2500)}catch(_e){q(ot=>ot?{...ot,phase:"error",error:(_e==null?void 0:_e.message)||"Fehler"}:null)}}}async function Hs(_e){if(!xt){pn("Admin-Login erforderlich zum Hochladen","error");return}Pt.current&&clearTimeout(Pt.current);const ot=_e.map(Jt=>({id:Math.random().toString(36).slice(2),file:Jt,status:"waiting",progress:0}));vt(ot),rn(!0);const Rt=[...ot];for(let Jt=0;Jt{Rt[Jt]={...Rt[Jt],progress:Yn},vt([...Rt])});Rt[Jt]={...Rt[Jt],status:"done",progress:100,savedName:cn}}catch(cn){Rt[Jt]={...Rt[Jt],status:"error",error:(cn==null?void 0:cn.message)??"Fehler"}}vt([...Rt])}rr(Jt=>Jt+1),Gn(),Pt.current=setTimeout(()=>{rn(!1),vt([])},3500)}async function ui(){if(F){ue("");try{await fetch(`${us}/stop?guildId=${encodeURIComponent(at)}`,{method:"POST"})}catch{}}}async function Fn(){if(!Z.length||!F)return;const _e=Z[Math.floor(Math.random()*Z.length)];Xn(_e)}async function cs(){if(Ee){await ui();try{await Ude(at)}catch{}}else{if(!F)return pn("Bitte einen Channel auswaehlen","error");try{await Lde(at,d)}catch{}}}async function Ma(_e){const ot=`${_e.guildId}:${_e.channelId}`;V(ot),ne(!1);try{await Rde(_e.guildId,_e.channelId)}catch{}}function Ul(_e){we(ot=>({...ot,[_e]:!ot[_e]}))}async function le(){en(!0);try{const _e=await d7("","__all__",void 0,!1);Dt(_e.items||[])}catch(_e){pn((_e==null?void 0:_e.message)||"Admin-Sounds konnten nicht geladen werden","error")}finally{en(!1)}}function Ie(_e){se(ot=>({...ot,[_e]:!ot[_e]}))}function Ke(_e){Fe($i(_e)),wt(_e.name)}function Xe(){Fe(""),wt("")}async function ke(){if(!Se)return;const _e=qe.trim().replace(/\.(mp3|wav)$/i,"");if(!_e){pn("Bitte einen gueltigen Namen eingeben","error");return}try{await zde(Se,_e),pn("Sound umbenannt"),Xe(),rr(ot=>ot+1),Ye&&await le()}catch(ot){pn((ot==null?void 0:ot.message)||"Umbenennen fehlgeschlagen","error")}}async function Ot(_e){if(_e.length!==0)try{await kde(_e),pn(_e.length===1?"Sound geloescht":`${_e.length} Sounds geloescht`),se({}),Xe(),rr(ot=>ot+1),Ye&&await le()}catch(ot){pn((ot==null?void 0:ot.message)||"Loeschen fehlgeschlagen","error")}}async function jt(){try{await Ide(fe)?(Ft(!0),zt(""),pn("Admin eingeloggt")):pn("Falsches Passwort","error")}catch{pn("Login fehlgeschlagen","error")}}async function At(){try{await Fde(),Ft(!1),se({}),Xe(),pn("Ausgeloggt")}catch{}}const Z=ye.useMemo(()=>v==="favorites"?e.filter(_e=>he[_e.relativePath??_e.fileName]):e,[e,v,he]),Bt=ye.useMemo(()=>Object.values(he).filter(Boolean).length,[he]),bn=ye.useMemo(()=>s.filter(_e=>!["__all__","__recent__","__top3__"].includes(_e.key)),[s]),fn=ye.useMemo(()=>{const _e={};return bn.forEach((ot,Rt)=>{_e[ot.key]=m7[Rt%m7.length]}),_e},[bn]),ci=ye.useMemo(()=>{const _e=new Set,ot=new Set;return Z.forEach((Rt,Jt)=>{const cn=Rt.name.charAt(0).toUpperCase();_e.has(cn)||(_e.add(cn),ot.add(Jt))}),ot},[Z]),hi=ye.useMemo(()=>{const _e={};return z.forEach(ot=>{_e[ot.guildName]||(_e[ot.guildName]=[]),_e[ot.guildName].push(ot)}),_e},[z]),yi=ye.useMemo(()=>{const _e=Re.trim().toLowerCase();return _e?ft.filter(ot=>{const Rt=$i(ot).toLowerCase();return ot.name.toLowerCase().includes(_e)||(ot.folder||"").toLowerCase().includes(_e)||Rt.includes(_e)}):ft},[Re,ft,$i]),K=ye.useMemo(()=>Object.keys($).filter(_e=>$[_e]),[$]),Un=ye.useMemo(()=>yi.filter(_e=>!!$[$i(_e)]).length,[yi,$,$i]),mn=yi.length>0&&Un===yi.length,yr=h.mostPlayed.slice(0,10),fi=h.totalSounds||n,bs=bt.slice(0,5),fa=bt.slice(5);return k.jsxs("div",{className:"sb-app","data-theme":Te,ref:$n,children:[Ee&&k.jsx("div",{className:"party-overlay active"}),k.jsxs("header",{className:"topbar",children:[k.jsxs("div",{className:"topbar-left",children:[k.jsx("div",{className:"sb-app-logo",children:k.jsx("span",{className:"material-icons",style:{fontSize:16,color:"white"},children:"music_note"})}),k.jsx("span",{className:"sb-app-title",children:"Soundboard"}),k.jsxs("div",{className:"channel-dropdown",onClick:_e=>_e.stopPropagation(),children:[k.jsxs("button",{className:`channel-btn ${J?"open":""}`,onClick:()=>ne(!J),children:[k.jsx("span",{className:"material-icons cb-icon",children:"headset"}),F&&k.jsx("span",{className:"channel-status"}),k.jsx("span",{className:"channel-label",children:ee?`${ee.channelName}${ee.members?` (${ee.members})`:""}`:"Channel..."}),k.jsx("span",{className:"material-icons chevron",children:"expand_more"})]}),J&&k.jsxs("div",{className:"channel-menu visible",children:[Object.entries(hi).map(([_e,ot])=>k.jsxs(UF.Fragment,{children:[k.jsx("div",{className:"channel-menu-header",children:_e}),ot.map(Rt=>k.jsxs("div",{className:`channel-option ${`${Rt.guildId}:${Rt.channelId}`===F?"active":""}`,onClick:()=>Ma(Rt),children:[k.jsx("span",{className:"material-icons co-icon",children:"volume_up"}),Rt.channelName,Rt.members?` (${Rt.members})`:""]},`${Rt.guildId}:${Rt.channelId}`))]},_e)),z.length===0&&k.jsx("div",{className:"channel-option",style:{color:"var(--text-faint)",cursor:"default"},children:"Keine Channels verfuegbar"})]})]})]}),k.jsx("div",{className:"clock-wrap",children:k.jsxs("div",{className:"clock",children:[bs,k.jsx("span",{className:"clock-seconds",children:fa})]})}),k.jsxs("div",{className:"topbar-right",children:[Q&&k.jsxs("div",{className:"now-playing",children:[k.jsxs("div",{className:"np-waves active",children:[k.jsx("div",{className:"np-wave-bar"}),k.jsx("div",{className:"np-wave-bar"}),k.jsx("div",{className:"np-wave-bar"}),k.jsx("div",{className:"np-wave-bar"})]}),k.jsx("span",{className:"np-label",children:"Last Played:"})," ",k.jsx("span",{className:"np-name",children:Q})]}),F&&k.jsxs("div",{className:"connection",onClick:()=>ge(!0),style:{cursor:"pointer"},title:"Verbindungsdetails",children:[k.jsx("span",{className:"conn-dot"}),"Verbunden",(It==null?void 0:It.voicePing)!=null&&k.jsxs("span",{className:"conn-ping",children:[It.voicePing,"ms"]})]}),k.jsx("button",{className:`admin-btn-icon ${xt?"active":""}`,onClick:()=>rt(!0),title:"Admin",children:k.jsx("span",{className:"material-icons",children:"settings"})})]})]}),k.jsxs("div",{className:"toolbar",children:[k.jsxs("div",{className:"cat-tabs",children:[k.jsxs("button",{className:`cat-tab ${v==="all"?"active":""}`,onClick:()=>{x("all"),w("")},children:["Alle",k.jsx("span",{className:"tab-count",children:n})]}),k.jsx("button",{className:`cat-tab ${v==="recent"?"active":""}`,onClick:()=>{x("recent"),w("")},children:"Neu hinzugefuegt"}),k.jsxs("button",{className:`cat-tab ${v==="favorites"?"active":""}`,onClick:()=>{x("favorites"),w("")},children:["Favoriten",Bt>0&&k.jsx("span",{className:"tab-count",children:Bt})]})]}),k.jsxs("div",{className:"search-wrap",children:[k.jsx("span",{className:"material-icons search-icon",children:"search"}),k.jsx("input",{className:"search-input",type:"text",placeholder:"Suchen...",value:R,onChange:_e=>C(_e.target.value)}),R&&k.jsx("button",{className:"search-clear",onClick:()=>C(""),children:k.jsx("span",{className:"material-icons",style:{fontSize:14},children:"close"})})]}),k.jsxs("div",{className:"url-import-wrap",children:[k.jsx("span",{className:"material-icons url-import-icon",children:kt(E)==="youtube"?"smart_display":kt(E)==="instagram"?"photo_camera":"link"}),k.jsx("input",{className:"url-import-input",type:"text",placeholder:"YouTube / Instagram / MP3-Link...",value:E,onChange:_e=>B(_e.target.value),onKeyDown:_e=>{_e.key==="Enter"&&un()}}),E&&k.jsx("span",{className:`url-import-tag ${mt(E)?"valid":"invalid"}`,children:kt(E)==="youtube"?"YT":kt(E)==="instagram"?"IG":kt(E)==="mp3"?"MP3":"?"}),k.jsx("button",{className:"url-import-btn",onClick:()=>{un()},disabled:L||!!E&&!mt(E),title:"Sound herunterladen",children:L?"Laedt...":"Download"})]}),k.jsx("div",{className:"toolbar-spacer"}),k.jsxs("div",{className:"volume-control",children:[k.jsx("span",{className:"material-icons vol-icon",onClick:()=>{const _e=oe>0?0:.5;te(_e),at&&p7(at,_e).catch(()=>{})},children:oe===0?"volume_off":oe<.5?"volume_down":"volume_up"}),k.jsx("input",{type:"range",className:"vol-slider",min:0,max:1,step:.01,value:oe,onChange:_e=>{const ot=parseFloat(_e.target.value);te(ot),at&&(_t.current&&clearTimeout(_t.current),_t.current=setTimeout(()=>{p7(at,ot).catch(()=>{})},120))},style:{"--vol":`${Math.round(oe*100)}%`}}),k.jsxs("span",{className:"vol-pct",children:[Math.round(oe*100),"%"]})]}),k.jsxs("button",{className:"tb-btn random",onClick:Fn,title:"Zufaelliger Sound",children:[k.jsx("span",{className:"material-icons tb-icon",children:"shuffle"}),"Random"]}),k.jsxs("button",{className:`tb-btn party ${Ee?"active":""}`,onClick:cs,title:"Party Mode",children:[k.jsx("span",{className:"material-icons tb-icon",children:Ee?"celebration":"auto_awesome"}),Ee?"Party!":"Party"]}),k.jsxs("button",{className:"tb-btn stop",onClick:ui,title:"Alle stoppen",children:[k.jsx("span",{className:"material-icons tb-icon",children:"stop"}),"Stop"]}),k.jsxs("div",{className:"size-control",title:"Button-Groesse",children:[k.jsx("span",{className:"material-icons sc-icon",children:"grid_view"}),k.jsx("input",{type:"range",className:"size-slider",min:80,max:160,value:be,onChange:_e=>ze(parseInt(_e.target.value))})]}),k.jsx("div",{className:"theme-selector",children:qde.map(_e=>k.jsx("div",{className:`theme-dot ${Te===_e.id?"active":""}`,style:{background:_e.color},title:_e.label,onClick:()=>ce(_e.id)},_e.id))})]}),k.jsxs("div",{className:"analytics-strip",children:[k.jsxs("div",{className:"analytics-card",children:[k.jsx("span",{className:"material-icons analytics-icon",children:"library_music"}),k.jsxs("div",{className:"analytics-copy",children:[k.jsx("span",{className:"analytics-label",children:"Sounds gesamt"}),k.jsx("strong",{className:"analytics-value",children:fi})]})]}),k.jsxs("div",{className:"analytics-card analytics-wide",children:[k.jsx("span",{className:"material-icons analytics-icon",children:"leaderboard"}),k.jsxs("div",{className:"analytics-copy",children:[k.jsx("span",{className:"analytics-label",children:"Most Played"}),k.jsx("div",{className:"analytics-top-list",children:yr.length===0?k.jsx("span",{className:"analytics-muted",children:"Noch keine Plays"}):yr.map((_e,ot)=>k.jsxs("span",{className:"analytics-chip",children:[ot+1,". ",_e.name," (",_e.count,")"]},_e.relativePath))})]})]})]}),v==="all"&&bn.length>0&&k.jsx("div",{className:"category-strip",children:bn.map(_e=>{const ot=fn[_e.key]||"#888",Rt=S===_e.key;return k.jsxs("button",{className:`cat-chip ${Rt?"active":""}`,onClick:()=>w(Rt?"":_e.key),style:Rt?{borderColor:ot,color:ot}:void 0,children:[k.jsx("span",{className:"cat-dot",style:{background:ot}}),_e.name.replace(/\s*\(\d+\)\s*$/,""),k.jsx("span",{className:"cat-count",children:_e.count})]},_e.key)})}),k.jsx("main",{className:"main",children:Z.length===0?k.jsxs("div",{className:"empty-state visible",children:[k.jsx("div",{className:"empty-emoji",children:v==="favorites"?"⭐":"🔇"}),k.jsx("div",{className:"empty-title",children:v==="favorites"?"Noch keine Favoriten":R?`Kein Sound fuer "${R}" gefunden`:"Keine Sounds vorhanden"}),k.jsx("div",{className:"empty-desc",children:v==="favorites"?"Klick den Stern auf einem Sound!":"Hier gibt's noch nichts zu hoeren."})]}):k.jsx("div",{className:"sound-grid",children:Z.map((_e,ot)=>{var Pr;const Rt=_e.relativePath??_e.fileName,Jt=!!he[Rt],cn=Q===_e.name,Yn=_e.isRecent||((Pr=_e.badges)==null?void 0:Pr.includes("new")),xi=_e.name.charAt(0).toUpperCase(),js=ci.has(ot),mi=_e.folder&&fn[_e.folder]||"var(--accent)";return k.jsxs("div",{className:`sound-card ${cn?"playing":""} ${js?"has-initial":""}`,style:{animationDelay:`${Math.min(ot*20,400)}ms`},onClick:Ei=>{const Zh=Ei.currentTarget,Bl=Zh.getBoundingClientRect(),nl=document.createElement("div");nl.className="ripple";const Bi=Math.max(Bl.width,Bl.height);nl.style.width=nl.style.height=Bi+"px",nl.style.left=Ei.clientX-Bl.left-Bi/2+"px",nl.style.top=Ei.clientY-Bl.top-Bi/2+"px",Zh.appendChild(nl),setTimeout(()=>nl.remove(),500),Xn(_e)},onContextMenu:Ei=>{Ei.preventDefault(),Ei.stopPropagation(),xn({x:Math.min(Ei.clientX,window.innerWidth-170),y:Math.min(Ei.clientY,window.innerHeight-140),sound:_e})},title:`${_e.name}${_e.folder?` (${_e.folder})`:""}`,children:[Yn&&k.jsx("span",{className:"new-badge",children:"NEU"}),k.jsx("span",{className:`fav-star ${Jt?"active":""}`,onClick:Ei=>{Ei.stopPropagation(),Ul(Rt)},children:k.jsx("span",{className:"material-icons fav-icon",children:Jt?"star":"star_border"})}),js&&k.jsx("span",{className:"sound-emoji",style:{color:mi},children:xi}),k.jsx("span",{className:"sound-name",children:_e.name}),_e.folder&&k.jsx("span",{className:"sound-duration",children:_e.folder}),k.jsxs("div",{className:"playing-indicator",children:[k.jsx("div",{className:"wave-bar"}),k.jsx("div",{className:"wave-bar"}),k.jsx("div",{className:"wave-bar"}),k.jsx("div",{className:"wave-bar"})]})]},Rt)})})}),qt&&k.jsxs("div",{className:"ctx-menu visible",style:{left:qt.x,top:qt.y},onClick:_e=>_e.stopPropagation(),children:[k.jsxs("div",{className:"ctx-item",onClick:()=>{Xn(qt.sound),xn(null)},children:[k.jsx("span",{className:"material-icons ctx-icon",children:"play_arrow"}),"Abspielen"]}),k.jsxs("div",{className:"ctx-item",onClick:()=>{Ul(qt.sound.relativePath??qt.sound.fileName),xn(null)},children:[k.jsx("span",{className:"material-icons ctx-icon",children:he[qt.sound.relativePath??qt.sound.fileName]?"star":"star_border"}),"Favorit"]}),xt&&k.jsxs(k.Fragment,{children:[k.jsx("div",{className:"ctx-sep"}),k.jsxs("div",{className:"ctx-item danger",onClick:async()=>{const _e=qt.sound.relativePath??qt.sound.fileName;await Ot([_e]),xn(null)},children:[k.jsx("span",{className:"material-icons ctx-icon",children:"delete"}),"Loeschen"]})]})]}),Jn&&(()=>{const _e=It!=null&&It.connectedSince?Math.floor((Date.now()-new Date(It.connectedSince).getTime())/1e3):0,ot=Math.floor(_e/3600),Rt=Math.floor(_e%3600/60),Jt=_e%60,cn=ot>0?`${ot}h ${String(Rt).padStart(2,"0")}m ${String(Jt).padStart(2,"0")}s`:Rt>0?`${Rt}m ${String(Jt).padStart(2,"0")}s`:`${Jt}s`,Yn=xi=>xi==null?"var(--muted)":xi<80?"var(--green)":xi<150?"#f0a830":"#e04040";return k.jsx("div",{className:"conn-modal-overlay",onClick:()=>ge(!1),children:k.jsxs("div",{className:"conn-modal",onClick:xi=>xi.stopPropagation(),children:[k.jsxs("div",{className:"conn-modal-header",children:[k.jsx("span",{className:"material-icons",style:{fontSize:20,color:"var(--green)"},children:"cell_tower"}),k.jsx("span",{children:"Verbindungsdetails"}),k.jsx("button",{className:"conn-modal-close",onClick:()=>ge(!1),children:k.jsx("span",{className:"material-icons",children:"close"})})]}),k.jsxs("div",{className:"conn-modal-body",children:[k.jsxs("div",{className:"conn-stat",children:[k.jsx("span",{className:"conn-stat-label",children:"Voice Ping"}),k.jsxs("span",{className:"conn-stat-value",children:[k.jsx("span",{className:"conn-ping-dot",style:{background:Yn((It==null?void 0:It.voicePing)??null)}}),(It==null?void 0:It.voicePing)!=null?`${It.voicePing} ms`:"---"]})]}),k.jsxs("div",{className:"conn-stat",children:[k.jsx("span",{className:"conn-stat-label",children:"Gateway Ping"}),k.jsxs("span",{className:"conn-stat-value",children:[k.jsx("span",{className:"conn-ping-dot",style:{background:Yn((It==null?void 0:It.gatewayPing)??null)}}),It&&It.gatewayPing>=0?`${It.gatewayPing} ms`:"---"]})]}),k.jsxs("div",{className:"conn-stat",children:[k.jsx("span",{className:"conn-stat-label",children:"Status"}),k.jsx("span",{className:"conn-stat-value",style:{color:(It==null?void 0:It.status)==="ready"?"var(--green)":"#f0a830"},children:(It==null?void 0:It.status)==="ready"?"Verbunden":(It==null?void 0:It.status)??"Warte auf Verbindung"})]}),k.jsxs("div",{className:"conn-stat",children:[k.jsx("span",{className:"conn-stat-label",children:"Kanal"}),k.jsx("span",{className:"conn-stat-value",children:(It==null?void 0:It.channelName)||"---"})]}),k.jsxs("div",{className:"conn-stat",children:[k.jsx("span",{className:"conn-stat-label",children:"Verbunden seit"}),k.jsx("span",{className:"conn-stat-value",children:cn||"---"})]})]})]})})})(),Wt&&k.jsxs("div",{className:`toast ${Wt.type}`,children:[k.jsx("span",{className:"material-icons toast-icon",children:Wt.type==="error"?"error_outline":"check_circle"}),Wt.msg]}),Ye&&k.jsx("div",{className:"admin-overlay",onClick:_e=>{_e.target===_e.currentTarget&&rt(!1)},children:k.jsxs("div",{className:"admin-panel",children:[k.jsxs("h3",{children:["Admin",k.jsx("button",{className:"admin-close",onClick:()=>rt(!1),children:k.jsx("span",{className:"material-icons",style:{fontSize:18},children:"close"})})]}),xt?k.jsxs("div",{className:"admin-shell",children:[k.jsxs("div",{className:"admin-header-row",children:[k.jsx("p",{className:"admin-status",children:"Eingeloggt als Admin"}),k.jsxs("div",{className:"admin-actions-inline",children:[k.jsx("button",{className:"admin-btn-action outline",onClick:()=>{le()},disabled:pt,children:"Aktualisieren"}),k.jsx("button",{className:"admin-btn-action outline",onClick:At,children:"Logout"})]})]}),k.jsxs("div",{className:"admin-field admin-search-field",children:[k.jsx("label",{children:"Sounds verwalten"}),k.jsx("input",{type:"text",value:Re,onChange:_e=>re(_e.target.value),placeholder:"Nach Name, Ordner oder Pfad filtern..."})]}),k.jsxs("div",{className:"admin-bulk-row",children:[k.jsxs("label",{className:"admin-select-all",children:[k.jsx("input",{type:"checkbox",checked:mn,onChange:_e=>{const ot=_e.target.checked,Rt={...$};yi.forEach(Jt=>{Rt[$i(Jt)]=ot}),se(Rt)}}),k.jsxs("span",{children:["Alle sichtbaren auswaehlen (",Un,"/",yi.length,")"]})]}),k.jsx("button",{className:"admin-btn-action danger",disabled:K.length===0,onClick:async()=>{window.confirm(`Wirklich ${K.length} Sound(s) loeschen?`)&&await Ot(K)},children:"Ausgewaehlte loeschen"})]}),k.jsx("div",{className:"admin-list-wrap",children:pt?k.jsx("div",{className:"admin-empty",children:"Lade Sounds..."}):yi.length===0?k.jsx("div",{className:"admin-empty",children:"Keine Sounds gefunden."}):k.jsx("div",{className:"admin-list",children:yi.map(_e=>{const ot=$i(_e),Rt=Se===ot;return k.jsxs("div",{className:"admin-item",children:[k.jsx("label",{className:"admin-item-check",children:k.jsx("input",{type:"checkbox",checked:!!$[ot],onChange:()=>Ie(ot)})}),k.jsxs("div",{className:"admin-item-main",children:[k.jsx("div",{className:"admin-item-name",children:_e.name}),k.jsxs("div",{className:"admin-item-meta",children:[_e.folder?`Ordner: ${_e.folder}`:"Root"," · ",ot]}),Rt&&k.jsxs("div",{className:"admin-rename-row",children:[k.jsx("input",{value:qe,onChange:Jt=>wt(Jt.target.value),onKeyDown:Jt=>{Jt.key==="Enter"&&ke(),Jt.key==="Escape"&&Xe()},placeholder:"Neuer Name..."}),k.jsx("button",{className:"admin-btn-action primary",onClick:()=>{ke()},children:"Speichern"}),k.jsx("button",{className:"admin-btn-action outline",onClick:Xe,children:"Abbrechen"})]})]}),!Rt&&k.jsxs("div",{className:"admin-item-actions",children:[k.jsx("button",{className:"admin-btn-action outline",onClick:()=>Ke(_e),children:"Umbenennen"}),k.jsx("button",{className:"admin-btn-action danger ghost",onClick:async()=>{window.confirm(`Sound "${_e.name}" loeschen?`)&&await Ot([ot])},children:"Loeschen"})]})]},ot)})})})]}):k.jsxs("div",{children:[k.jsxs("div",{className:"admin-field",children:[k.jsx("label",{children:"Passwort"}),k.jsx("input",{type:"password",value:fe,onChange:_e=>zt(_e.target.value),onKeyDown:_e=>_e.key==="Enter"&&jt(),placeholder:"Admin-Passwort..."})]}),k.jsx("button",{className:"admin-btn-action primary",onClick:jt,children:"Login"})]})]})}),Mt&&k.jsx("div",{className:"drop-overlay",children:k.jsxs("div",{className:"drop-zone",children:[k.jsx("span",{className:"material-icons drop-icon",children:"cloud_upload"}),k.jsx("div",{className:"drop-title",children:"MP3 & WAV hier ablegen"}),k.jsx("div",{className:"drop-sub",children:"Mehrere Dateien gleichzeitig moeglich"})]})}),Yt&&$t.length>0&&k.jsxs("div",{className:"upload-queue",children:[k.jsxs("div",{className:"uq-header",children:[k.jsx("span",{className:"material-icons",style:{fontSize:16},children:"upload"}),k.jsx("span",{children:$t.every(_e=>_e.status==="done"||_e.status==="error")?`${$t.filter(_e=>_e.status==="done").length} von ${$t.length} hochgeladen`:`Lade hoch… (${$t.filter(_e=>_e.status==="done").length}/${$t.length})`}),k.jsx("button",{className:"uq-close",onClick:()=>{rn(!1),vt([])},children:k.jsx("span",{className:"material-icons",style:{fontSize:14},children:"close"})})]}),k.jsx("div",{className:"uq-list",children:$t.map(_e=>k.jsxs("div",{className:`uq-item uq-${_e.status}`,children:[k.jsx("span",{className:"material-icons uq-file-icon",children:"audio_file"}),k.jsxs("div",{className:"uq-info",children:[k.jsx("div",{className:"uq-name",title:_e.savedName??_e.file.name,children:_e.savedName??_e.file.name}),k.jsxs("div",{className:"uq-size",children:[(_e.file.size/1024).toFixed(0)," KB"]})]}),(_e.status==="waiting"||_e.status==="uploading")&&k.jsx("div",{className:"uq-progress-wrap",children:k.jsx("div",{className:"uq-progress-bar",style:{width:`${_e.progress}%`}})}),k.jsx("span",{className:`material-icons uq-status-icon uq-status-${_e.status}`,children:_e.status==="done"?"check_circle":_e.status==="error"?"error":_e.status==="uploading"?"sync":"schedule"}),_e.status==="error"&&k.jsx("div",{className:"uq-error",children:_e.error})]},_e.id))})]}),G&&k.jsx("div",{className:"dl-modal-overlay",onClick:()=>G.phase!=="downloading"&&q(null),children:k.jsxs("div",{className:"dl-modal",onClick:_e=>_e.stopPropagation(),children:[k.jsxs("div",{className:"dl-modal-header",children:[k.jsx("span",{className:"material-icons",style:{fontSize:20},children:G.type==="youtube"?"smart_display":G.type==="instagram"?"photo_camera":"audio_file"}),k.jsx("span",{children:G.phase==="input"?"Sound herunterladen":G.phase==="downloading"?"Wird heruntergeladen...":G.phase==="done"?"Fertig!":"Fehler"}),G.phase!=="downloading"&&k.jsx("button",{className:"dl-modal-close",onClick:()=>q(null),children:k.jsx("span",{className:"material-icons",style:{fontSize:16},children:"close"})})]}),k.jsxs("div",{className:"dl-modal-body",children:[k.jsxs("div",{className:"dl-modal-url",children:[k.jsx("span",{className:`dl-modal-tag ${G.type??""}`,children:G.type==="youtube"?"YouTube":G.type==="instagram"?"Instagram":"MP3"}),k.jsx("span",{className:"dl-modal-url-text",title:G.url,children:G.url.length>60?G.url.slice(0,57)+"...":G.url})]}),G.phase==="input"&&k.jsxs("div",{className:"dl-modal-field",children:[k.jsx("label",{className:"dl-modal-label",children:"Dateiname"}),k.jsxs("div",{className:"dl-modal-input-wrap",children:[k.jsx("input",{className:"dl-modal-input",type:"text",placeholder:G.type==="mp3"?"Dateiname...":"Wird automatisch erkannt...",value:G.filename,onChange:_e=>q(ot=>ot?{...ot,filename:_e.target.value}:null),onKeyDown:_e=>{_e.key==="Enter"&&qn()},autoFocus:!0}),k.jsx("span",{className:"dl-modal-ext",children:".mp3"})]}),k.jsx("span",{className:"dl-modal-hint",children:"Leer lassen = automatischer Name"})]}),G.phase==="downloading"&&k.jsxs("div",{className:"dl-modal-progress",children:[k.jsx("div",{className:"dl-modal-spinner"}),k.jsx("span",{children:G.type==="youtube"||G.type==="instagram"?"Audio wird extrahiert...":"MP3 wird heruntergeladen..."})]}),G.phase==="done"&&k.jsxs("div",{className:"dl-modal-success",children:[k.jsx("span",{className:"material-icons dl-modal-check",children:"check_circle"}),k.jsxs("span",{children:["Gespeichert als ",k.jsx("b",{children:G.savedName})]})]}),G.phase==="error"&&k.jsxs("div",{className:"dl-modal-error",children:[k.jsx("span",{className:"material-icons",style:{color:"#e74c3c"},children:"error"}),k.jsx("span",{children:G.error})]})]}),G.phase==="input"&&k.jsxs("div",{className:"dl-modal-actions",children:[k.jsx("button",{className:"dl-modal-cancel",onClick:()=>q(null),children:"Abbrechen"}),k.jsxs("button",{className:"dl-modal-submit",onClick:()=>void qn(),children:[k.jsx("span",{className:"material-icons",style:{fontSize:16},children:"download"}),"Herunterladen"]})]}),G.phase==="error"&&k.jsxs("div",{className:"dl-modal-actions",children:[k.jsx("button",{className:"dl-modal-cancel",onClick:()=>q(null),children:"Schliessen"}),k.jsxs("button",{className:"dl-modal-submit",onClick:()=>q(_e=>_e?{..._e,phase:"input",error:void 0}:null),children:[k.jsx("span",{className:"material-icons",style:{fontSize:16},children:"refresh"}),"Nochmal"]})]})]})})]})}const g7={IRON:"#6b6b6b",BRONZE:"#8c6239",SILVER:"#8c8c8c",GOLD:"#d4a017",PLATINUM:"#28b29e",EMERALD:"#1e9e5e",DIAMOND:"#576cce",MASTER:"#9d48e0",GRANDMASTER:"#e44c3e",CHALLENGER:"#f4c874"},Hde={SOLORANKED:"Ranked Solo",FLEXRANKED:"Ranked Flex",NORMAL:"Normal",ARAM:"ARAM",ARENA:"Arena",URF:"URF",BOT:"Co-op vs AI"},jde="https://ddragon.leagueoflegends.com/cdn/15.5.1/img";function zv(i){return`${jde}/champion/${i}.png`}function v7(i){const e=Math.floor((Date.now()-new Date(i).getTime())/1e3);return e<60?`${e}s`:e<3600?`${Math.floor(e/60)}m`:e<86400?`${Math.floor(e/3600)}h`:`${Math.floor(e/86400)}d`}function Wde(i){const e=Math.floor(i/60),t=i%60;return`${e}:${String(t).padStart(2,"0")}`}function _7(i,e,t){return e===0?"Perfect":((i+t)/e).toFixed(2)}function y7(i,e){const t=i+e;return t>0?Math.round(i/t*100):0}function $de(i,e){if(!i)return"Unranked";const t=["","I","II","III","IV"];return`${i.charAt(0)}${i.slice(1).toLowerCase()}${e?" "+(t[e]??e):""}`}function Xde({data:i}){var be,ze,Ee,Ge;const[e,t]=ye.useState(""),[n,r]=ye.useState("EUW"),[s,a]=ye.useState([]),[l,u]=ye.useState(null),[h,m]=ye.useState([]),[v,x]=ye.useState(!1),[S,w]=ye.useState(null),[R,C]=ye.useState([]),[E,B]=ye.useState(null),[L,O]=ye.useState({}),[G,q]=ye.useState(!1),[z,j]=ye.useState(!1),[F,V]=ye.useState(null),Y=ye.useRef(null),J=ye.useRef(null);ye.useEffect(()=>{fetch("/api/lolstats/regions").then(xe=>xe.json()).then(a).catch(()=>{}),fetch("/api/lolstats/recent").then(xe=>xe.json()).then(C).catch(()=>{})},[]),ye.useEffect(()=>{i&&(i.recentSearches&&C(i.recentSearches),i.regions&&!s.length&&a(i.regions))},[i]);const ne=ye.useCallback(async(xe,Le,ct)=>{j(!0);try{const _t=`gameName=${encodeURIComponent(xe)}&tagLine=${encodeURIComponent(Le)}®ion=${ct}`,xt=await fetch(`/api/lolstats/renew?${_t}`,{method:"POST"});if(xt.ok){const Ft=await xt.json();return Ft.last_updated_at&&V(Ft.last_updated_at),Ft.renewed??!1}}catch{}return j(!1),!1},[]),oe=ye.useCallback(async(xe,Le,ct,_t=!1)=>{var rt,fe;let xt=xe??"",Ft=Le??"";const Ye=ct??n;if(!xt){const zt=e.split("#");xt=((rt=zt[0])==null?void 0:rt.trim())??"",Ft=((fe=zt[1])==null?void 0:fe.trim())??""}if(!xt||!Ft){w("Bitte im Format Name#Tag eingeben");return}x(!0),w(null),u(null),m([]),B(null),O({}),J.current={gameName:xt,tagLine:Ft,region:Ye},_t||ne(xt,Ft,Ye).finally(()=>j(!1));try{const zt=`gameName=${encodeURIComponent(xt)}&tagLine=${encodeURIComponent(Ft)}®ion=${Ye}`,[ft,Dt]=await Promise.all([fetch(`/api/lolstats/profile?${zt}`),fetch(`/api/lolstats/matches?${zt}&limit=10`)]);if(!ft.ok){const en=await ft.json();throw new Error(en.error??`Fehler ${ft.status}`)}const pt=await ft.json();if(u(pt),pt.updated_at&&V(pt.updated_at),Dt.ok){const en=await Dt.json();m(Array.isArray(en)?en:[])}}catch(zt){w(zt.message)}x(!1)},[e,n,ne]),te=ye.useCallback(async()=>{const xe=J.current;if(!(!xe||z)){j(!0);try{await ne(xe.gameName,xe.tagLine,xe.region),await new Promise(Le=>setTimeout(Le,1500)),await oe(xe.gameName,xe.tagLine,xe.region,!0)}finally{j(!1)}}},[ne,oe,z]),Q=ye.useCallback(async()=>{if(!(!l||G)){q(!0);try{const xe=`gameName=${encodeURIComponent(l.game_name)}&tagLine=${encodeURIComponent(l.tagline)}®ion=${n}&limit=20`,Le=await fetch(`/api/lolstats/matches?${xe}`);if(Le.ok){const ct=await Le.json();m(Array.isArray(ct)?ct:[])}}catch{}q(!1)}},[l,n,G]),ue=ye.useCallback(async xe=>{var Le;if(E===xe.id){B(null);return}if(B(xe.id),!(((Le=xe.participants)==null?void 0:Le.length)>=10||L[xe.id]))try{const ct=`region=${n}&createdAt=${encodeURIComponent(xe.created_at)}`,_t=await fetch(`/api/lolstats/match/${encodeURIComponent(xe.id)}?${ct}`);if(_t.ok){const xt=await _t.json();O(Ft=>({...Ft,[xe.id]:xt}))}}catch{}},[E,L,n]),he=ye.useCallback(xe=>{t(`${xe.game_name}#${xe.tag_line}`),r(xe.region),oe(xe.game_name,xe.tag_line,xe.region)},[oe]),we=ye.useCallback(xe=>{var ct,_t,xt;if(!l)return((ct=xe.participants)==null?void 0:ct[0])??null;const Le=l.game_name.toLowerCase();return((_t=xe.participants)==null?void 0:_t.find(Ft=>{var Ye,rt;return((rt=(Ye=Ft.summoner)==null?void 0:Ye.game_name)==null?void 0:rt.toLowerCase())===Le}))??((xt=xe.participants)==null?void 0:xt[0])??null},[l]),Te=xe=>{var fe,zt,ft;const Le=we(xe);if(!Le)return null;const ct=((fe=Le.stats)==null?void 0:fe.result)==="WIN",_t=_7(Le.stats.kill,Le.stats.death,Le.stats.assist),xt=(Le.stats.minion_kill??0)+(Le.stats.neutral_minion_kill??0),Ft=xe.game_length_second>0?(xt/(xe.game_length_second/60)).toFixed(1):"0",Ye=E===xe.id,rt=L[xe.id]??(((zt=xe.participants)==null?void 0:zt.length)>=10?xe:null);return k.jsxs("div",{children:[k.jsxs("div",{className:`lol-match ${ct?"win":"loss"}`,onClick:()=>ue(xe),children:[k.jsx("div",{className:"lol-match-result",children:ct?"W":"L"}),k.jsxs("div",{className:"lol-match-champ",children:[k.jsx("img",{src:zv(Le.champion_name),alt:Le.champion_name,title:Le.champion_name}),k.jsx("span",{className:"lol-match-champ-level",children:Le.stats.champion_level})]}),k.jsxs("div",{className:"lol-match-kda",children:[k.jsxs("div",{className:"lol-match-kda-nums",children:[Le.stats.kill,"/",Le.stats.death,"/",Le.stats.assist]}),k.jsxs("div",{className:`lol-match-kda-ratio ${_t==="Perfect"?"perfect":Number(_t)>=4?"great":""}`,children:[_t," KDA"]})]}),k.jsxs("div",{className:"lol-match-stats",children:[k.jsxs("span",{children:[xt," CS (",Ft,"/m)"]}),k.jsxs("span",{children:[Le.stats.ward_place," wards"]})]}),k.jsx("div",{className:"lol-match-items",children:(Le.items_names??[]).slice(0,7).map((Dt,pt)=>Dt?k.jsx("img",{src:zv("Aatrox"),alt:Dt,title:Dt,style:{background:"var(--bg-deep)"},onError:en=>{en.target.style.display="none"}},pt):k.jsx("div",{className:"lol-match-item-empty"},pt))}),k.jsxs("div",{className:"lol-match-meta",children:[k.jsx("div",{className:"lol-match-duration",children:Wde(xe.game_length_second)}),k.jsx("div",{className:"lol-match-queue",children:Hde[xe.game_type]??xe.game_type}),k.jsxs("div",{className:"lol-match-ago",children:[v7(xe.created_at)," ago"]})]})]}),Ye&&rt&&k.jsx("div",{className:"lol-match-detail",children:ce(rt,(ft=Le.summoner)==null?void 0:ft.game_name)})]},xe.id)},ce=(xe,Le)=>{var Ye,rt,fe,zt,ft;const ct=((Ye=xe.participants)==null?void 0:Ye.filter(Dt=>Dt.team_key==="BLUE"))??[],_t=((rt=xe.participants)==null?void 0:rt.filter(Dt=>Dt.team_key==="RED"))??[],xt=(ft=(zt=(fe=xe.teams)==null?void 0:fe.find(Dt=>Dt.key==="BLUE"))==null?void 0:zt.game_stat)==null?void 0:ft.is_win,Ft=(Dt,pt,en)=>k.jsxs("div",{className:"lol-match-detail-team",children:[k.jsxs("div",{className:`lol-match-detail-team-header ${pt?"win":"loss"}`,children:[en," — ",pt?"Victory":"Defeat"]}),Dt.map((Re,re)=>{var Se,Fe,qe,wt,Mt,Gt,$t,vt,Yt,rn,Ht,Pt;const $=((Fe=(Se=Re.summoner)==null?void 0:Se.game_name)==null?void 0:Fe.toLowerCase())===(Le==null?void 0:Le.toLowerCase()),se=(((qe=Re.stats)==null?void 0:qe.minion_kill)??0)+(((wt=Re.stats)==null?void 0:wt.neutral_minion_kill)??0);return k.jsxs("div",{className:`lol-detail-row ${$?"me":""}`,children:[k.jsx("img",{className:"lol-detail-champ",src:zv(Re.champion_name),alt:Re.champion_name}),k.jsx("span",{className:"lol-detail-name",title:`${(Mt=Re.summoner)==null?void 0:Mt.game_name}#${(Gt=Re.summoner)==null?void 0:Gt.tagline}`,children:(($t=Re.summoner)==null?void 0:$t.game_name)??Re.champion_name}),k.jsxs("span",{className:"lol-detail-kda",children:[(vt=Re.stats)==null?void 0:vt.kill,"/",(Yt=Re.stats)==null?void 0:Yt.death,"/",(rn=Re.stats)==null?void 0:rn.assist]}),k.jsxs("span",{className:"lol-detail-cs",children:[se," CS"]}),k.jsxs("span",{className:"lol-detail-dmg",children:[((((Ht=Re.stats)==null?void 0:Ht.total_damage_dealt_to_champions)??0)/1e3).toFixed(1),"k"]}),k.jsxs("span",{className:"lol-detail-gold",children:[((((Pt=Re.stats)==null?void 0:Pt.gold_earned)??0)/1e3).toFixed(1),"k"]})]},re)})]});return k.jsxs(k.Fragment,{children:[Ft(ct,xt,"Blue Team"),Ft(_t,xt===void 0?void 0:!xt,"Red Team")]})};return k.jsxs("div",{className:"lol-container",children:[k.jsxs("div",{className:"lol-search",children:[k.jsx("input",{ref:Y,className:"lol-search-input",placeholder:"Summoner Name#Tag",value:e,onChange:xe=>t(xe.target.value),onKeyDown:xe=>xe.key==="Enter"&&oe()}),k.jsx("select",{className:"lol-search-region",value:n,onChange:xe=>r(xe.target.value),children:s.map(xe=>k.jsx("option",{value:xe.code,children:xe.code},xe.code))}),k.jsx("button",{className:"lol-search-btn",onClick:()=>oe(),disabled:v,children:v?"...":"Search"})]}),R.length>0&&k.jsx("div",{className:"lol-recent",children:R.map((xe,Le)=>k.jsxs("button",{className:"lol-recent-chip",onClick:()=>he(xe),children:[xe.profile_image_url&&k.jsx("img",{src:xe.profile_image_url,alt:""}),xe.game_name,"#",xe.tag_line,xe.tier&&k.jsx("span",{className:"lol-recent-tier",style:{color:g7[xe.tier]},children:xe.tier})]},Le))}),S&&k.jsx("div",{className:"lol-error",children:S}),v&&k.jsxs("div",{className:"lol-loading",children:[k.jsx("div",{className:"lol-spinner"}),"Lade Profil..."]}),l&&!v&&k.jsxs(k.Fragment,{children:[k.jsxs("div",{className:"lol-profile",children:[k.jsx("img",{className:"lol-profile-icon",src:l.profile_image_url,alt:""}),k.jsxs("div",{className:"lol-profile-info",children:[k.jsxs("h2",{children:[l.game_name,k.jsxs("span",{children:["#",l.tagline]})]}),k.jsxs("div",{className:"lol-profile-level",children:["Level ",l.level]}),((be=l.ladder_rank)==null?void 0:be.rank)&&k.jsxs("div",{className:"lol-profile-ladder",children:["Ladder Rank #",l.ladder_rank.rank.toLocaleString()," / ",(ze=l.ladder_rank.total)==null?void 0:ze.toLocaleString()]}),F&&k.jsxs("div",{className:"lol-profile-updated",children:["Updated ",v7(F)," ago"]})]}),k.jsxs("button",{className:`lol-update-btn ${z?"renewing":""}`,onClick:te,disabled:z,title:"Refresh data from Riot servers",children:[k.jsx("span",{className:"lol-update-icon",children:z?"⟳":"↻"}),z?"Updating...":"Update"]})]}),k.jsx("div",{className:"lol-ranked-row",children:(l.league_stats??[]).filter(xe=>xe.game_type==="SOLORANKED"||xe.game_type==="FLEXRANKED").map(xe=>{const Le=xe.tier_info,ct=!!(Le!=null&&Le.tier),_t=g7[(Le==null?void 0:Le.tier)??""]??"var(--text-normal)";return k.jsxs("div",{className:`lol-ranked-card ${ct?"has-rank":""}`,style:{"--tier-color":_t},children:[k.jsx("div",{className:"lol-ranked-type",children:xe.game_type==="SOLORANKED"?"Ranked Solo/Duo":"Ranked Flex"}),ct?k.jsxs(k.Fragment,{children:[k.jsxs("div",{className:"lol-ranked-tier",style:{color:_t},children:[$de(Le.tier,Le.division),k.jsxs("span",{className:"lol-ranked-lp",children:[Le.lp," LP"]})]}),k.jsxs("div",{className:"lol-ranked-record",children:[xe.win,"W ",xe.lose,"L",k.jsxs("span",{className:"lol-ranked-wr",children:["(",y7(xe.win??0,xe.lose??0),"%)"]}),xe.is_hot_streak&&k.jsx("span",{className:"lol-ranked-streak",children:"🔥"})]})]}):k.jsx("div",{className:"lol-ranked-tier",children:"Unranked"})]},xe.game_type)})}),((Ge=(Ee=l.most_champions)==null?void 0:Ee.champion_stats)==null?void 0:Ge.length)>0&&k.jsxs(k.Fragment,{children:[k.jsx("div",{className:"lol-section-title",children:"Top Champions"}),k.jsx("div",{className:"lol-champs",children:l.most_champions.champion_stats.slice(0,7).map(xe=>{const Le=y7(xe.win,xe.lose),ct=xe.play>0?_7(xe.kill/xe.play,xe.death/xe.play,xe.assist/xe.play):"0";return k.jsxs("div",{className:"lol-champ-card",children:[k.jsx("img",{className:"lol-champ-icon",src:zv(xe.champion_name),alt:xe.champion_name}),k.jsxs("div",{children:[k.jsx("div",{className:"lol-champ-name",children:xe.champion_name}),k.jsxs("div",{className:"lol-champ-stats",children:[xe.play," games · ",Le,"% WR"]}),k.jsxs("div",{className:"lol-champ-kda",children:[ct," KDA"]})]})]},xe.champion_name)})})]}),h.length>0&&k.jsxs(k.Fragment,{children:[k.jsx("div",{className:"lol-section-title",children:"Match History"}),k.jsx("div",{className:"lol-matches",children:h.map(xe=>Te(xe))}),h.length<20&&k.jsx("button",{className:"lol-load-more",onClick:Q,disabled:G,children:G?"Laden...":"Mehr laden"})]})]}),!l&&!v&&!S&&k.jsxs("div",{className:"lol-empty",children:[k.jsx("div",{className:"lol-empty-icon",children:"⚔️"}),k.jsx("h3",{children:"League of Legends Stats"}),k.jsx("p",{children:"Gib einen Summoner Name#Tag ein und wähle die Region"})]})]})}const x7={iceServers:[{urls:"stun:stun.l.google.com:19302"},{urls:"stun:stun1.l.google.com:19302"}]};function qS(i){const e=Math.max(0,Math.floor((Date.now()-new Date(i).getTime())/1e3)),t=Math.floor(e/3600),n=Math.floor(e%3600/60),r=e%60;return t>0?`${t}:${String(n).padStart(2,"0")}:${String(r).padStart(2,"0")}`:`${n}:${String(r).padStart(2,"0")}`}function Yde({data:i}){var re,$;const[e,t]=ye.useState([]),[n,r]=ye.useState(()=>localStorage.getItem("streaming_name")||""),[s,a]=ye.useState("Screen Share"),[l,u]=ye.useState(""),[h,m]=ye.useState(null),[v,x]=ye.useState(null),[S,w]=ye.useState(null),[R,C]=ye.useState(!1),[E,B]=ye.useState(!1),[L,O]=ye.useState(null),[,G]=ye.useState(0),[q,z]=ye.useState(null),[j,F]=ye.useState(null),V=ye.useRef(null),Y=ye.useRef(""),J=ye.useRef(null),ne=ye.useRef(null),oe=ye.useRef(null),te=ye.useRef(new Map),Q=ye.useRef(null),ue=ye.useRef(new Map),he=ye.useRef(null),we=ye.useRef(1e3),Te=ye.useRef(!1),ce=ye.useRef(null);ye.useEffect(()=>{Te.current=R},[R]),ye.useEffect(()=>{ce.current=L},[L]),ye.useEffect(()=>{if(!(e.length>0||R))return;const Se=setInterval(()=>G(Fe=>Fe+1),1e3);return()=>clearInterval(Se)},[e.length,R]),ye.useEffect(()=>{i!=null&&i.streams&&t(i.streams)},[i]),ye.useEffect(()=>{n&&localStorage.setItem("streaming_name",n)},[n]),ye.useEffect(()=>{if(!q)return;const se=()=>z(null);return document.addEventListener("click",se),()=>document.removeEventListener("click",se)},[q]);const be=ye.useCallback(se=>{var Se;((Se=V.current)==null?void 0:Se.readyState)===WebSocket.OPEN&&V.current.send(JSON.stringify(se))},[]),ze=ye.useCallback((se,Se,Fe)=>{if(se.remoteDescription)se.addIceCandidate(new RTCIceCandidate(Fe)).catch(()=>{});else{let qe=ue.current.get(Se);qe||(qe=[],ue.current.set(Se,qe)),qe.push(Fe)}},[]),Ee=ye.useCallback((se,Se)=>{const Fe=ue.current.get(Se);if(Fe){for(const qe of Fe)se.addIceCandidate(new RTCIceCandidate(qe)).catch(()=>{});ue.current.delete(Se)}},[]),Ge=ye.useCallback(()=>{Q.current&&(Q.current.close(),Q.current=null),oe.current&&(oe.current.srcObject=null)},[]),xe=ye.useRef(()=>{});xe.current=se=>{var Se;switch(se.type){case"welcome":Y.current=se.clientId,se.streams&&t(se.streams);break;case"broadcast_started":w(se.streamId),C(!0),Te.current=!0,B(!1);break;case"stream_available":break;case"stream_ended":((Se=ce.current)==null?void 0:Se.streamId)===se.streamId&&(Ge(),O(null));break;case"viewer_joined":{const Fe=se.viewerId,qe=te.current.get(Fe);qe&&(qe.close(),te.current.delete(Fe)),ue.current.delete(Fe);const wt=new RTCPeerConnection(x7);te.current.set(Fe,wt);const Mt=J.current;if(Mt)for(const $t of Mt.getTracks())wt.addTrack($t,Mt);wt.onicecandidate=$t=>{$t.candidate&&be({type:"ice_candidate",targetId:Fe,candidate:$t.candidate.toJSON()})};const Gt=wt.getSenders().find($t=>{var vt;return((vt=$t.track)==null?void 0:vt.kind)==="video"});if(Gt){const $t=Gt.getParameters();(!$t.encodings||$t.encodings.length===0)&&($t.encodings=[{}]),$t.encodings[0].maxFramerate=60,$t.encodings[0].maxBitrate=8e6,Gt.setParameters($t).catch(()=>{})}wt.createOffer().then($t=>wt.setLocalDescription($t)).then(()=>be({type:"offer",targetId:Fe,sdp:wt.localDescription})).catch(console.error);break}case"viewer_left":{const Fe=te.current.get(se.viewerId);Fe&&(Fe.close(),te.current.delete(se.viewerId)),ue.current.delete(se.viewerId);break}case"offer":{const Fe=se.fromId;Q.current&&(Q.current.close(),Q.current=null),ue.current.delete(Fe);const qe=new RTCPeerConnection(x7);Q.current=qe,qe.ontrack=wt=>{oe.current&&wt.streams[0]&&(oe.current.srcObject=wt.streams[0]),O(Mt=>Mt&&{...Mt,phase:"connected"})},qe.onicecandidate=wt=>{wt.candidate&&be({type:"ice_candidate",targetId:Fe,candidate:wt.candidate.toJSON()})},qe.oniceconnectionstatechange=()=>{(qe.iceConnectionState==="failed"||qe.iceConnectionState==="disconnected")&&O(wt=>wt&&{...wt,phase:"error",error:"Verbindung verloren"})},qe.setRemoteDescription(new RTCSessionDescription(se.sdp)).then(()=>(Ee(qe,Fe),qe.createAnswer())).then(wt=>qe.setLocalDescription(wt)).then(()=>be({type:"answer",targetId:Fe,sdp:qe.localDescription})).catch(console.error);break}case"answer":{const Fe=te.current.get(se.fromId);Fe&&Fe.setRemoteDescription(new RTCSessionDescription(se.sdp)).then(()=>Ee(Fe,se.fromId)).catch(console.error);break}case"ice_candidate":{if(!se.candidate)break;const Fe=te.current.get(se.fromId);Fe?ze(Fe,se.fromId,se.candidate):Q.current&&ze(Q.current,se.fromId,se.candidate);break}case"error":se.code==="WRONG_PASSWORD"?x(Fe=>Fe&&{...Fe,error:se.message}):m(se.message),B(!1);break}};const Le=ye.useCallback(()=>{if(V.current&&V.current.readyState===WebSocket.OPEN)return;const se=location.protocol==="https:"?"wss":"ws",Se=new WebSocket(`${se}://${location.host}/ws/streaming`);V.current=Se,Se.onopen=()=>{we.current=1e3},Se.onmessage=Fe=>{let qe;try{qe=JSON.parse(Fe.data)}catch{return}xe.current(qe)},Se.onclose=()=>{V.current=null,(Te.current||ce.current)&&(he.current=setTimeout(()=>{we.current=Math.min(we.current*2,1e4),Le()},we.current))},Se.onerror=()=>{Se.close()}},[]),ct=ye.useCallback(async()=>{var se,Se;if(!n.trim()){m("Bitte gib einen Namen ein.");return}if(!l.trim()){m("Passwort ist Pflicht.");return}if(!((se=navigator.mediaDevices)!=null&&se.getDisplayMedia)){m("Dein Browser unterstützt keine Bildschirmfreigabe.");return}m(null),B(!0);try{const Fe=await navigator.mediaDevices.getDisplayMedia({video:{frameRate:{ideal:60},width:{ideal:1920},height:{ideal:1080}},audio:!0});J.current=Fe,ne.current&&(ne.current.srcObject=Fe),(Se=Fe.getVideoTracks()[0])==null||Se.addEventListener("ended",()=>{_t()}),Le();const qe=()=>{var wt;((wt=V.current)==null?void 0:wt.readyState)===WebSocket.OPEN?be({type:"start_broadcast",name:n.trim(),title:s.trim()||"Screen Share",password:l.trim()}):setTimeout(qe,100)};qe()}catch(Fe){B(!1),Fe.name==="NotAllowedError"?m("Bildschirmfreigabe wurde abgelehnt."):m(`Fehler: ${Fe.message}`)}},[n,s,l,Le,be]),_t=ye.useCallback(()=>{var se;be({type:"stop_broadcast"}),(se=J.current)==null||se.getTracks().forEach(Se=>Se.stop()),J.current=null,ne.current&&(ne.current.srcObject=null);for(const Se of te.current.values())Se.close();te.current.clear(),C(!1),Te.current=!1,w(null),u("")},[be]),xt=ye.useCallback(se=>{x({streamId:se.id,streamTitle:se.title,broadcasterName:se.broadcasterName,password:"",error:null})},[]),Ft=ye.useCallback(()=>{if(!v)return;if(!v.password.trim()){x(qe=>qe&&{...qe,error:"Passwort eingeben."});return}const{streamId:se,password:Se}=v;x(null),m(null),O({streamId:se,phase:"connecting"}),Le();const Fe=()=>{var qe;((qe=V.current)==null?void 0:qe.readyState)===WebSocket.OPEN?be({type:"join_viewer",name:n.trim()||"Viewer",streamId:se,password:Se.trim()}):setTimeout(Fe,100)};Fe()},[v,n,Le,be]),Ye=ye.useCallback(()=>{be({type:"leave_viewer"}),Ge(),O(null)},[Ge,be]);ye.useEffect(()=>{const se=Fe=>{(Te.current||ce.current)&&Fe.preventDefault()},Se=()=>{Y.current&&navigator.sendBeacon("/api/streaming/disconnect",JSON.stringify({clientId:Y.current}))};return window.addEventListener("beforeunload",se),window.addEventListener("pagehide",Se),()=>{window.removeEventListener("beforeunload",se),window.removeEventListener("pagehide",Se)}},[]);const rt=ye.useRef(null),[fe,zt]=ye.useState(!1),ft=ye.useCallback(()=>{const se=rt.current;se&&(document.fullscreenElement?document.exitFullscreen().catch(()=>{}):se.requestFullscreen().catch(()=>{}))},[]);ye.useEffect(()=>{const se=()=>zt(!!document.fullscreenElement);return document.addEventListener("fullscreenchange",se),()=>document.removeEventListener("fullscreenchange",se)},[]),ye.useEffect(()=>()=>{var se;(se=J.current)==null||se.getTracks().forEach(Se=>Se.stop());for(const Se of te.current.values())Se.close();Q.current&&Q.current.close(),V.current&&V.current.close(),he.current&&clearTimeout(he.current)},[]);const Dt=ye.useRef(null);ye.useEffect(()=>{const Se=new URLSearchParams(location.search).get("viewStream");if(Se){Dt.current=Se;const Fe=new URL(location.href);Fe.searchParams.delete("viewStream"),window.history.replaceState({},"",Fe.toString())}},[]),ye.useEffect(()=>{const se=Dt.current;if(!se||e.length===0)return;const Se=e.find(Fe=>Fe.id===se);Se&&(Dt.current=null,xt(Se))},[e,xt]);const pt=ye.useCallback(se=>{const Se=new URL(location.href);return Se.searchParams.set("viewStream",se),Se.hash="",Se.toString()},[]),en=ye.useCallback(se=>{navigator.clipboard.writeText(pt(se)).then(()=>{F(se),setTimeout(()=>F(null),2e3)}).catch(()=>{})},[pt]),Re=ye.useCallback(se=>{window.open(pt(se),"_blank","noopener"),z(null)},[pt]);if(L){const se=e.find(Se=>Se.id===L.streamId);return k.jsxs("div",{className:"stream-viewer-overlay",ref:rt,children:[k.jsxs("div",{className:"stream-viewer-header",children:[k.jsxs("div",{className:"stream-viewer-header-left",children:[k.jsxs("span",{className:"stream-live-badge",children:[k.jsx("span",{className:"stream-live-dot"})," LIVE"]}),k.jsxs("div",{children:[k.jsx("div",{className:"stream-viewer-title",children:(se==null?void 0:se.title)||"Stream"}),k.jsxs("div",{className:"stream-viewer-subtitle",children:[(se==null?void 0:se.broadcasterName)||"..."," ",se?` · ${se.viewerCount} Zuschauer`:""]})]})]}),k.jsxs("div",{className:"stream-viewer-header-right",children:[k.jsx("button",{className:"stream-viewer-fullscreen",onClick:ft,title:fe?"Vollbild verlassen":"Vollbild",children:fe?"✖":"⛶"}),k.jsx("button",{className:"stream-viewer-close",onClick:Ye,children:"Verlassen"})]})]}),k.jsxs("div",{className:"stream-viewer-video",children:[L.phase==="connecting"?k.jsxs("div",{className:"stream-viewer-connecting",children:[k.jsx("div",{className:"stream-viewer-spinner"}),"Verbindung wird hergestellt..."]}):L.phase==="error"?k.jsxs("div",{className:"stream-viewer-connecting",children:[L.error||"Verbindungsfehler",k.jsx("button",{className:"stream-btn",onClick:Ye,children:"Zurück"})]}):null,k.jsx("video",{ref:oe,autoPlay:!0,playsInline:!0,style:L.phase==="connected"?{}:{display:"none"}})]})]})}return k.jsxs("div",{className:"stream-container",children:[h&&k.jsxs("div",{className:"stream-error",children:[h,k.jsx("button",{className:"stream-error-dismiss",onClick:()=>m(null),children:"×"})]}),k.jsxs("div",{className:"stream-topbar",children:[k.jsx("input",{className:"stream-input stream-input-name",placeholder:"Dein Name",value:n,onChange:se=>r(se.target.value),disabled:R}),k.jsx("input",{className:"stream-input stream-input-title",placeholder:"Stream-Titel",value:s,onChange:se=>a(se.target.value),disabled:R}),k.jsx("input",{className:"stream-input stream-input-password",type:"password",placeholder:"Passwort",value:l,onChange:se=>u(se.target.value),disabled:R}),R?k.jsxs("button",{className:"stream-btn stream-btn-stop",onClick:_t,children:["⏹"," Stream beenden"]}):k.jsx("button",{className:"stream-btn",onClick:ct,disabled:E,children:E?"Starte...":"🖥️ Stream starten"})]}),e.length===0&&!R?k.jsxs("div",{className:"stream-empty",children:[k.jsx("div",{className:"stream-empty-icon",children:"📺"}),k.jsx("h3",{children:"Keine aktiven Streams"}),k.jsx("p",{children:"Starte einen Stream, um deinen Bildschirm zu teilen."})]}):k.jsxs("div",{className:"stream-grid",children:[R&&k.jsxs("div",{className:"stream-tile own broadcasting",children:[k.jsxs("div",{className:"stream-tile-preview",children:[k.jsx("video",{ref:ne,autoPlay:!0,playsInline:!0,muted:!0}),k.jsxs("span",{className:"stream-live-badge",children:[k.jsx("span",{className:"stream-live-dot"})," LIVE"]}),k.jsxs("span",{className:"stream-tile-viewers",children:["👥"," ",((re=e.find(se=>se.id===S))==null?void 0:re.viewerCount)??0]})]}),k.jsxs("div",{className:"stream-tile-info",children:[k.jsxs("div",{className:"stream-tile-meta",children:[k.jsxs("div",{className:"stream-tile-name",children:[n," (Du)"]}),k.jsx("div",{className:"stream-tile-title",children:s})]}),k.jsx("span",{className:"stream-tile-time",children:S&&(($=e.find(se=>se.id===S))!=null&&$.startedAt)?qS(e.find(se=>se.id===S).startedAt):"0:00"})]})]}),e.filter(se=>se.id!==S).map(se=>k.jsxs("div",{className:"stream-tile",onClick:()=>Re(se.id),children:[k.jsxs("div",{className:"stream-tile-preview",children:[k.jsx("span",{className:"stream-tile-icon",children:"🖥️"}),k.jsxs("span",{className:"stream-live-badge",children:[k.jsx("span",{className:"stream-live-dot"})," LIVE"]}),k.jsxs("span",{className:"stream-tile-viewers",children:["👥"," ",se.viewerCount]}),se.hasPassword&&k.jsx("span",{className:"stream-tile-lock",children:"🔒"})]}),k.jsxs("div",{className:"stream-tile-info",children:[k.jsxs("div",{className:"stream-tile-meta",children:[k.jsx("div",{className:"stream-tile-name",children:se.broadcasterName}),k.jsx("div",{className:"stream-tile-title",children:se.title})]}),k.jsx("span",{className:"stream-tile-time",children:qS(se.startedAt)}),k.jsxs("div",{className:"stream-tile-menu-wrap",children:[k.jsx("button",{className:"stream-tile-menu",onClick:Se=>{Se.stopPropagation(),z(q===se.id?null:se.id)},children:"⋮"}),q===se.id&&k.jsxs("div",{className:"stream-tile-dropdown",onClick:Se=>Se.stopPropagation(),children:[k.jsxs("div",{className:"stream-tile-dropdown-header",children:[k.jsx("div",{className:"stream-tile-dropdown-name",children:se.broadcasterName}),k.jsx("div",{className:"stream-tile-dropdown-title",children:se.title}),k.jsxs("div",{className:"stream-tile-dropdown-detail",children:["👥"," ",se.viewerCount," Zuschauer · ",qS(se.startedAt)]})]}),k.jsx("div",{className:"stream-tile-dropdown-divider"}),k.jsxs("button",{className:"stream-tile-dropdown-item",onClick:()=>Re(se.id),children:["🗗"," In neuem Fenster öffnen"]}),k.jsx("button",{className:"stream-tile-dropdown-item",onClick:()=>{en(se.id),z(null)},children:j===se.id?"✅ Kopiert!":"🔗 Link teilen"})]})]})]})]},se.id))]}),v&&k.jsx("div",{className:"stream-pw-overlay",onClick:()=>x(null),children:k.jsxs("div",{className:"stream-pw-modal",onClick:se=>se.stopPropagation(),children:[k.jsx("h3",{children:v.broadcasterName}),k.jsx("p",{children:v.streamTitle}),v.error&&k.jsx("div",{className:"stream-pw-modal-error",children:v.error}),k.jsx("input",{className:"stream-input",type:"password",placeholder:"Stream-Passwort",value:v.password,onChange:se=>x(Se=>Se&&{...Se,password:se.target.value,error:null}),onKeyDown:se=>{se.key==="Enter"&&Ft()},autoFocus:!0}),k.jsxs("div",{className:"stream-pw-actions",children:[k.jsx("button",{className:"stream-pw-cancel",onClick:()=>x(null),children:"Abbrechen"}),k.jsx("button",{className:"stream-btn",onClick:Ft,children:"Beitreten"})]})]})})]})}function b7(i){const e=Math.floor(i),t=Math.floor(e/3600),n=Math.floor(e%3600/60),r=e%60;return t>0?`${t}:${String(n).padStart(2,"0")}:${String(r).padStart(2,"0")}`:`${n}:${String(r).padStart(2,"0")}`}function Qde(i){const e=i.match(/(?:youtube\.com\/(?:watch\?v=|embed\/|shorts\/)|youtu\.be\/)([a-zA-Z0-9_-]{11})/);return e?{type:"youtube",videoId:e[1]}:/\.(mp4|webm|ogg)(\?|$)/i.test(i)||i.startsWith("http")?{type:"direct",url:i}:null}function Kde({data:i}){const[e,t]=ye.useState([]),[n,r]=ye.useState(()=>localStorage.getItem("wt_name")||""),[s,a]=ye.useState(""),[l,u]=ye.useState(""),[h,m]=ye.useState(null),[v,x]=ye.useState(null),[S,w]=ye.useState(null),[R,C]=ye.useState(""),[E,B]=ye.useState(()=>{const Re=localStorage.getItem("wt_volume");return Re?parseFloat(Re):1}),[L,O]=ye.useState(!1),[G,q]=ye.useState(0),[z,j]=ye.useState(0),F=ye.useRef(null),V=ye.useRef(""),Y=ye.useRef(null),J=ye.useRef(1e3),ne=ye.useRef(null),oe=ye.useRef(null),te=ye.useRef(null),Q=ye.useRef(null),ue=ye.useRef(null),he=ye.useRef(null),we=ye.useRef(!1),Te=ye.useRef(!1),ce=ye.useRef(null);ye.useEffect(()=>{ne.current=h},[h]);const be=h!=null&&V.current===h.hostId;ye.useEffect(()=>{i!=null&&i.rooms&&t(i.rooms)},[i]),ye.useEffect(()=>{n&&localStorage.setItem("wt_name",n)},[n]),ye.useEffect(()=>{localStorage.setItem("wt_volume",String(E)),te.current&&typeof te.current.setVolume=="function"&&te.current.setVolume(E*100),Q.current&&(Q.current.volume=E)},[E]),ye.useEffect(()=>{if(window.YT){we.current=!0;return}const Re=document.createElement("script");Re.src="https://www.youtube.com/iframe_api",document.head.appendChild(Re);const re=window.onYouTubeIframeAPIReady;window.onYouTubeIframeAPIReady=()=>{we.current=!0,re&&re()}},[]);const ze=ye.useCallback(Re=>{var re;((re=F.current)==null?void 0:re.readyState)===WebSocket.OPEN&&F.current.send(JSON.stringify(Re))},[]),Ee=ye.useCallback(()=>he.current==="youtube"&&te.current&&typeof te.current.getCurrentTime=="function"?te.current.getCurrentTime():he.current==="direct"&&Q.current?Q.current.currentTime:null,[]);ye.useCallback(()=>he.current==="youtube"&&te.current&&typeof te.current.getDuration=="function"?te.current.getDuration()||0:he.current==="direct"&&Q.current&&Q.current.duration||0,[]);const Ge=ye.useCallback(()=>{if(te.current){try{te.current.destroy()}catch{}te.current=null}Q.current&&(Q.current.pause(),Q.current.removeAttribute("src"),Q.current.load()),he.current=null,ce.current&&(clearInterval(ce.current),ce.current=null)},[]),xe=ye.useCallback(Re=>{Ge();const re=Qde(Re);if(re)if(re.type==="youtube"){if(he.current="youtube",!we.current||!ue.current)return;const $=ue.current,se=document.createElement("div");se.id="wt-yt-player-"+Date.now(),$.innerHTML="",$.appendChild(se),te.current=new window.YT.Player(se.id,{videoId:re.videoId,playerVars:{autoplay:1,controls:0,modestbranding:1,rel:0},events:{onReady:Se=>{Se.target.setVolume(E*100),q(Se.target.getDuration()||0),ce.current=setInterval(()=>{te.current&&typeof te.current.getCurrentTime=="function"&&(j(te.current.getCurrentTime()),q(te.current.getDuration()||0))},500)},onStateChange:Se=>{if(Se.data===window.YT.PlayerState.ENDED){const Fe=ne.current;Fe&&V.current===Fe.hostId&&ze({type:"skip"})}}}})}else he.current="direct",Q.current&&(Q.current.src=re.url,Q.current.volume=E,Q.current.play().catch(()=>{}))},[Ge,E,ze]);ye.useEffect(()=>{const Re=Q.current;if(!Re)return;const re=()=>{const se=ne.current;se&&V.current===se.hostId&&ze({type:"skip"})},$=()=>{j(Re.currentTime),q(Re.duration||0)};return Re.addEventListener("ended",re),Re.addEventListener("timeupdate",$),()=>{Re.removeEventListener("ended",re),Re.removeEventListener("timeupdate",$)}},[ze]);const Le=ye.useRef(()=>{});Le.current=Re=>{var re,$,se,Se,Fe,qe,wt,Mt,Gt,$t,vt,Yt,rn,Ht;switch(Re.type){case"welcome":V.current=Re.clientId,Re.rooms&&t(Re.rooms);break;case"room_created":m({id:Re.roomId,name:Re.name,hostId:Re.hostId,members:Re.members||[],currentVideo:null,playing:!1,currentTime:0,queue:[]});break;case"room_joined":m({id:Re.roomId,name:Re.name,hostId:Re.hostId,members:Re.members||[],currentVideo:Re.currentVideo||null,playing:Re.playing||!1,currentTime:Re.currentTime||0,queue:Re.queue||[]}),(re=Re.currentVideo)!=null&&re.url&&setTimeout(()=>xe(Re.currentVideo.url),100);break;case"playback_state":{const Pt=ne.current;if(!Pt)break;const It=Re.currentVideo,Nn=($=Pt.currentVideo)==null?void 0:$.url;if(It!=null&&It.url&&It.url!==Nn?xe(It.url):!It&&Nn&&Ge(),he.current==="youtube"&&te.current){const Jn=(Se=(se=te.current).getPlayerState)==null?void 0:Se.call(se);Re.playing&&Jn!==((qe=(Fe=window.YT)==null?void 0:Fe.PlayerState)==null?void 0:qe.PLAYING)?(Mt=(wt=te.current).playVideo)==null||Mt.call(wt):!Re.playing&&Jn===(($t=(Gt=window.YT)==null?void 0:Gt.PlayerState)==null?void 0:$t.PLAYING)&&((Yt=(vt=te.current).pauseVideo)==null||Yt.call(vt))}else he.current==="direct"&&Q.current&&(Re.playing&&Q.current.paused?Q.current.play().catch(()=>{}):!Re.playing&&!Q.current.paused&&Q.current.pause());if(Re.currentTime!==void 0&&!Te.current){const Jn=Ee();Jn!==null&&Math.abs(Jn-Re.currentTime)>2&&(he.current==="youtube"&&te.current?(Ht=(rn=te.current).seekTo)==null||Ht.call(rn,Re.currentTime,!0):he.current==="direct"&&Q.current&&(Q.current.currentTime=Re.currentTime))}m(Jn=>Jn&&{...Jn,currentVideo:It||null,playing:Re.playing,currentTime:Re.currentTime??Jn.currentTime});break}case"queue_updated":m(Pt=>Pt&&{...Pt,queue:Re.queue});break;case"members_updated":m(Pt=>Pt&&{...Pt,members:Re.members,hostId:Re.hostId});break;case"error":Re.code==="WRONG_PASSWORD"?x(Pt=>Pt&&{...Pt,error:Re.message}):w(Re.message);break}};const ct=ye.useCallback(()=>{if(F.current&&F.current.readyState===WebSocket.OPEN)return;const Re=location.protocol==="https:"?"wss":"ws",re=new WebSocket(`${Re}://${location.host}/ws/watch-together`);F.current=re,re.onopen=()=>{J.current=1e3},re.onmessage=$=>{let se;try{se=JSON.parse($.data)}catch{return}Le.current(se)},re.onclose=()=>{F.current=null,ne.current&&(Y.current=setTimeout(()=>{J.current=Math.min(J.current*2,1e4),ct()},J.current))},re.onerror=()=>{re.close()}},[]),_t=ye.useCallback(()=>{if(!n.trim()){w("Bitte gib einen Namen ein.");return}if(!s.trim()){w("Bitte gib einen Raumnamen ein.");return}w(null),ct();const Re=()=>{var re;((re=F.current)==null?void 0:re.readyState)===WebSocket.OPEN?ze({type:"create_room",name:n.trim(),roomName:s.trim(),password:l.trim()||void 0}):setTimeout(Re,100)};Re()},[n,s,l,ct,ze]),xt=ye.useCallback((Re,re)=>{if(!n.trim()){w("Bitte gib einen Namen ein.");return}w(null),ct();const $=()=>{var se;((se=F.current)==null?void 0:se.readyState)===WebSocket.OPEN?ze({type:"join_room",name:n.trim(),roomId:Re,password:(re==null?void 0:re.trim())||void 0}):setTimeout($,100)};$()},[n,ct,ze]),Ft=ye.useCallback(()=>{ze({type:"leave_room"}),Ge(),m(null),C(""),q(0),j(0)},[ze,Ge]),Ye=ye.useCallback(()=>{R.trim()&&(ze({type:"add_to_queue",url:R.trim()}),C(""))},[R,ze]),rt=ye.useCallback(Re=>{ze({type:"remove_from_queue",index:Re})},[ze]),fe=ye.useCallback(()=>{ze({type:"toggle_play"})},[ze]),zt=ye.useCallback(()=>{ze({type:"skip"})},[ze]),ft=ye.useCallback(Re=>{var re,$;Te.current=!0,ze({type:"seek",time:Re}),he.current==="youtube"&&te.current?($=(re=te.current).seekTo)==null||$.call(re,Re,!0):he.current==="direct"&&Q.current&&(Q.current.currentTime=Re),j(Re),setTimeout(()=>{Te.current=!1},1e3)},[ze]);ye.useEffect(()=>{if(!be||!(h!=null&&h.playing))return;const Re=setInterval(()=>{const re=Ee();re!==null&&ze({type:"report_time",time:re})},2e3);return()=>clearInterval(Re)},[be,h==null?void 0:h.playing,ze,Ee]);const Dt=ye.useCallback(()=>{const Re=oe.current;Re&&(document.fullscreenElement?document.exitFullscreen().catch(()=>{}):Re.requestFullscreen().catch(()=>{}))},[]);ye.useEffect(()=>{const Re=()=>O(!!document.fullscreenElement);return document.addEventListener("fullscreenchange",Re),()=>document.removeEventListener("fullscreenchange",Re)},[]),ye.useEffect(()=>{const Re=$=>{ne.current&&$.preventDefault()},re=()=>{V.current&&navigator.sendBeacon("/api/watch-together/disconnect",JSON.stringify({clientId:V.current}))};return window.addEventListener("beforeunload",Re),window.addEventListener("pagehide",re),()=>{window.removeEventListener("beforeunload",Re),window.removeEventListener("pagehide",re)}},[]),ye.useEffect(()=>()=>{Ge(),F.current&&F.current.close(),Y.current&&clearTimeout(Y.current)},[Ge]);const pt=ye.useCallback(()=>{if(!v)return;if(!v.password.trim()){x($=>$&&{...$,error:"Passwort eingeben."});return}const{roomId:Re,password:re}=v;x(null),xt(Re,re)},[v,xt]),en=ye.useCallback(Re=>{Re.hasPassword?x({roomId:Re.id,roomName:Re.name,password:"",error:null}):xt(Re.id)},[xt]);if(h){const Re=h.members.find(re=>re.id===h.hostId);return k.jsxs("div",{className:"wt-room-overlay",ref:oe,children:[k.jsxs("div",{className:"wt-room-header",children:[k.jsxs("div",{className:"wt-room-header-left",children:[k.jsx("span",{className:"wt-room-name",children:h.name}),k.jsxs("span",{className:"wt-room-members",children:[h.members.length," Mitglieder"]}),Re&&k.jsxs("span",{className:"wt-host-badge",children:["Host: ",Re.name]})]}),k.jsxs("div",{className:"wt-room-header-right",children:[k.jsx("button",{className:"wt-fullscreen-btn",onClick:Dt,title:L?"Vollbild verlassen":"Vollbild",children:L?"✖":"⛶"}),k.jsx("button",{className:"wt-leave-btn",onClick:Ft,children:"Verlassen"})]})]}),k.jsxs("div",{className:"wt-room-body",children:[k.jsxs("div",{className:"wt-player-section",children:[k.jsxs("div",{className:"wt-player-wrap",children:[k.jsx("div",{ref:ue,className:"wt-yt-container",style:he.current==="youtube"?{}:{display:"none"}}),k.jsx("video",{ref:Q,className:"wt-video-element",style:he.current==="direct"?{}:{display:"none"},playsInline:!0}),!h.currentVideo&&k.jsxs("div",{className:"wt-player-placeholder",children:[k.jsx("div",{className:"wt-placeholder-icon",children:"🎬"}),k.jsx("p",{children:"Fuege ein Video zur Warteschlange hinzu"})]})]}),k.jsxs("div",{className:"wt-controls",children:[be?k.jsxs(k.Fragment,{children:[k.jsx("button",{className:"wt-ctrl-btn",onClick:fe,disabled:!h.currentVideo,title:h.playing?"Pause":"Abspielen",children:h.playing?"⏸":"▶"}),k.jsx("button",{className:"wt-ctrl-btn",onClick:zt,disabled:!h.currentVideo,title:"Weiter",children:"⏭"}),k.jsx("input",{className:"wt-seek",type:"range",min:0,max:G||0,step:.5,value:z,onChange:re=>ft(parseFloat(re.target.value)),disabled:!h.currentVideo})]}):k.jsxs(k.Fragment,{children:[k.jsx("span",{className:"wt-ctrl-status",children:h.playing?"▶":"⏸"}),k.jsx("div",{className:"wt-seek-readonly",children:k.jsx("div",{className:"wt-seek-progress",style:{width:G>0?`${z/G*100}%`:"0%"}})})]}),k.jsxs("span",{className:"wt-time",children:[b7(z)," / ",b7(G)]}),k.jsxs("div",{className:"wt-volume",children:[k.jsx("span",{className:"wt-volume-icon",children:E===0?"🔇":E<.5?"🔉":"🔊"}),k.jsx("input",{className:"wt-volume-slider",type:"range",min:0,max:1,step:.01,value:E,onChange:re=>B(parseFloat(re.target.value))})]})]})]}),k.jsxs("div",{className:"wt-queue-panel",children:[k.jsxs("div",{className:"wt-queue-header",children:["Warteschlange (",h.queue.length,")"]}),k.jsx("div",{className:"wt-queue-list",children:h.queue.length===0?k.jsx("div",{className:"wt-queue-empty",children:"Keine Videos in der Warteschlange"}):h.queue.map((re,$)=>{var se;return k.jsxs("div",{className:`wt-queue-item${((se=h.currentVideo)==null?void 0:se.url)===re.url?" playing":""}`,children:[k.jsxs("div",{className:"wt-queue-item-info",children:[k.jsx("div",{className:"wt-queue-item-title",children:re.title||re.url}),k.jsx("div",{className:"wt-queue-item-by",children:re.addedBy})]}),be&&k.jsx("button",{className:"wt-queue-item-remove",onClick:()=>rt($),title:"Entfernen",children:"×"})]},$)})}),k.jsxs("div",{className:"wt-queue-add",children:[k.jsx("input",{className:"wt-input wt-queue-input",placeholder:"Video-URL eingeben",value:R,onChange:re=>C(re.target.value),onKeyDown:re=>{re.key==="Enter"&&Ye()}}),k.jsx("button",{className:"wt-btn wt-queue-add-btn",onClick:Ye,children:"Hinzufuegen"})]})]})]})]})}return k.jsxs("div",{className:"wt-container",children:[S&&k.jsxs("div",{className:"wt-error",children:[S,k.jsx("button",{className:"wt-error-dismiss",onClick:()=>w(null),children:"×"})]}),k.jsxs("div",{className:"wt-topbar",children:[k.jsx("input",{className:"wt-input wt-input-name",placeholder:"Dein Name",value:n,onChange:Re=>r(Re.target.value)}),k.jsx("input",{className:"wt-input wt-input-room",placeholder:"Raumname",value:s,onChange:Re=>a(Re.target.value)}),k.jsx("input",{className:"wt-input wt-input-password",type:"password",placeholder:"Passwort (optional)",value:l,onChange:Re=>u(Re.target.value)}),k.jsx("button",{className:"wt-btn",onClick:_t,children:"Raum erstellen"})]}),e.length===0?k.jsxs("div",{className:"wt-empty",children:[k.jsx("div",{className:"wt-empty-icon",children:"🎬"}),k.jsx("h3",{children:"Keine aktiven Raeume"}),k.jsx("p",{children:"Erstelle einen Raum, um gemeinsam Videos zu schauen."})]}):k.jsx("div",{className:"wt-grid",children:e.map(Re=>k.jsxs("div",{className:"wt-tile",onClick:()=>en(Re),children:[k.jsxs("div",{className:"wt-tile-preview",children:[k.jsx("span",{className:"wt-tile-icon",children:"🎬"}),k.jsxs("span",{className:"wt-tile-members",children:["👥"," ",Re.memberCount]}),Re.hasPassword&&k.jsx("span",{className:"wt-tile-lock",children:"🔒"}),Re.playing&&k.jsx("span",{className:"wt-tile-playing",children:"▶"})]}),k.jsx("div",{className:"wt-tile-info",children:k.jsxs("div",{className:"wt-tile-meta",children:[k.jsx("div",{className:"wt-tile-name",children:Re.name}),k.jsx("div",{className:"wt-tile-host",children:Re.hostName})]})})]},Re.id))}),v&&k.jsx("div",{className:"wt-modal-overlay",onClick:()=>x(null),children:k.jsxs("div",{className:"wt-modal",onClick:Re=>Re.stopPropagation(),children:[k.jsx("h3",{children:v.roomName}),k.jsx("p",{children:"Raum-Passwort"}),v.error&&k.jsx("div",{className:"wt-modal-error",children:v.error}),k.jsx("input",{className:"wt-input",type:"password",placeholder:"Passwort",value:v.password,onChange:Re=>x(re=>re&&{...re,password:Re.target.value,error:null}),onKeyDown:Re=>{Re.key==="Enter"&&pt()},autoFocus:!0}),k.jsxs("div",{className:"wt-modal-actions",children:[k.jsx("button",{className:"wt-modal-cancel",onClick:()=>x(null),children:"Abbrechen"}),k.jsx("button",{className:"wt-btn",onClick:pt,children:"Beitreten"})]})]})})]})}const Zde={radio:bde,soundboard:Vde,lolstats:Xde,streaming:Yde,"watch-together":Kde};function Jde(){const[i,e]=ye.useState(!1),[t,n]=ye.useState([]),[r,s]=ye.useState(()=>localStorage.getItem("hub_activeTab")??""),a=x=>{s(x),localStorage.setItem("hub_activeTab",x)},[l,u]=ye.useState({}),h=ye.useRef(null);ye.useEffect(()=>{fetch("/api/plugins").then(x=>x.json()).then(x=>{if(n(x),new URLSearchParams(location.search).has("viewStream")&&x.some(C=>C.name==="streaming")){a("streaming");return}const w=localStorage.getItem("hub_activeTab"),R=x.some(C=>C.name===w);x.length>0&&!R&&a(x[0].name)}).catch(()=>{})},[]),ye.useEffect(()=>{let x=null,S;function w(){x=new EventSource("/api/events"),h.current=x,x.onopen=()=>e(!0),x.onmessage=R=>{try{const C=JSON.parse(R.data);C.type==="snapshot"?u(E=>({...E,...C})):C.plugin&&u(E=>({...E,[C.plugin]:{...E[C.plugin]||{},...C}}))}catch{}},x.onerror=()=>{e(!1),x==null||x.close(),S=setTimeout(w,3e3)}}return w(),()=>{x==null||x.close(),clearTimeout(S)}},[]);const m="1.0.0-dev",v={radio:"🌍",soundboard:"🎵",lolstats:"⚔️",stats:"📊",events:"📅",games:"🎲",gamevote:"🎮",streaming:"📺","watch-together":"🎬"};return k.jsxs("div",{className:"hub-app",children:[k.jsxs("header",{className:"hub-header",children:[k.jsxs("div",{className:"hub-header-left",children:[k.jsx("span",{className:"hub-logo",children:"🎮"}),k.jsx("span",{className:"hub-title",children:"Gaming Hub"}),k.jsx("span",{className:`hub-conn-dot ${i?"online":""}`})]}),k.jsx("nav",{className:"hub-tabs",children:t.map(x=>k.jsxs("button",{className:`hub-tab ${r===x.name?"active":""}`,onClick:()=>a(x.name),title:x.description,children:[k.jsx("span",{className:"hub-tab-icon",children:v[x.name]??"📦"}),k.jsx("span",{className:"hub-tab-label",children:x.name})]},x.name))}),k.jsxs("div",{className:"hub-header-right",children:[!window.electronAPI&&k.jsx("a",{className:"hub-download-btn",href:"/downloads/GamingHub-Setup.exe",title:"Desktop App herunterladen",children:"⬇️"}),k.jsxs("span",{className:"hub-version",children:["v",m]})]})]}),k.jsx("main",{className:"hub-content",children:t.length===0?k.jsxs("div",{className:"hub-empty",children:[k.jsx("span",{className:"hub-empty-icon",children:"📦"}),k.jsx("h2",{children:"Keine Plugins geladen"}),k.jsx("p",{children:"Plugins werden im Server konfiguriert."})]}):t.map(x=>{const S=Zde[x.name];if(!S)return null;const w=r===x.name;return k.jsx("div",{className:`hub-tab-panel ${w?"active":""}`,style:w?{display:"flex",flexDirection:"column",width:"100%",height:"100%"}:{display:"none"},children:k.jsx(S,{data:l[x.name]||{}})},x.name)})})]})}LF.createRoot(document.getElementById("root")).render(k.jsx(Jde,{})); diff --git a/web/dist/index.html b/web/dist/index.html index ea80d0c..668fc48 100644 --- a/web/dist/index.html +++ b/web/dist/index.html @@ -5,8 +5,8 @@ Gaming Hub - - + +
diff --git a/web/src/App.tsx b/web/src/App.tsx index ce45862..07fce22 100644 --- a/web/src/App.tsx +++ b/web/src/App.tsx @@ -3,6 +3,7 @@ import RadioTab from './plugins/radio/RadioTab'; import SoundboardTab from './plugins/soundboard/SoundboardTab'; import LolstatsTab from './plugins/lolstats/LolstatsTab'; import StreamingTab from './plugins/streaming/StreamingTab'; +import WatchTogetherTab from './plugins/watch-together/WatchTogetherTab'; interface PluginInfo { name: string; @@ -16,6 +17,7 @@ const tabComponents: Record> = { soundboard: SoundboardTab, lolstats: LolstatsTab, streaming: StreamingTab, + 'watch-together': WatchTogetherTab, }; export function registerTab(pluginName: string, component: React.FC<{ data: any }>) { @@ -101,6 +103,7 @@ export default function App() { games: '\u{1F3B2}', gamevote: '\u{1F3AE}', streaming: '\u{1F4FA}', + 'watch-together': '\u{1F3AC}', }; return ( @@ -127,6 +130,15 @@ export default function App() {
diff --git a/web/src/plugins/watch-together/WatchTogetherTab.tsx b/web/src/plugins/watch-together/WatchTogetherTab.tsx new file mode 100644 index 0000000..837d0e4 --- /dev/null +++ b/web/src/plugins/watch-together/WatchTogetherTab.tsx @@ -0,0 +1,758 @@ +import { useState, useEffect, useRef, useCallback } from 'react'; +import './watch-together.css'; + +// ── Types ── + +interface RoomInfo { + id: string; + name: string; + hostName: string; + memberCount: number; + hasPassword: boolean; + playing: boolean; +} + +interface RoomState { + id: string; + name: string; + hostId: string; + members: Array<{ id: string; name: string }>; + currentVideo: { url: string; title: string } | null; + playing: boolean; + currentTime: number; + queue: Array<{ url: string; title: string; addedBy: string }>; +} + +interface JoinModal { + roomId: string; + roomName: string; + password: string; + error: string | null; +} + +// ── Helpers ── + +function formatTime(s: number): string { + const sec = Math.floor(s); + const h = Math.floor(sec / 3600); + const m = Math.floor((sec % 3600) / 60); + const ss = sec % 60; + if (h > 0) return `${h}:${String(m).padStart(2, '0')}:${String(ss).padStart(2, '0')}`; + return `${m}:${String(ss).padStart(2, '0')}`; +} + +function parseVideoUrl(url: string): { type: 'youtube'; videoId: string } | { type: 'direct'; url: string } | null { + const ytMatch = url.match(/(?:youtube\.com\/(?:watch\?v=|embed\/|shorts\/)|youtu\.be\/)([a-zA-Z0-9_-]{11})/); + if (ytMatch) return { type: 'youtube', videoId: ytMatch[1] }; + if (/\.(mp4|webm|ogg)(\?|$)/i.test(url) || url.startsWith('http')) return { type: 'direct', url }; + return null; +} + +declare global { + interface Window { + YT: any; + onYouTubeIframeAPIReady: (() => void) | undefined; + } +} + +// ── Component ── + +export default function WatchTogetherTab({ data }: { data: any }) { + // ── State ── + const [rooms, setRooms] = useState([]); + const [userName, setUserName] = useState(() => localStorage.getItem('wt_name') || ''); + const [roomName, setRoomName] = useState(''); + const [roomPassword, setRoomPassword] = useState(''); + const [currentRoom, setCurrentRoom] = useState(null); + const [joinModal, setJoinModal] = useState(null); + const [error, setError] = useState(null); + const [queueUrl, setQueueUrl] = useState(''); + const [volume, setVolume] = useState(() => { + const v = localStorage.getItem('wt_volume'); + return v ? parseFloat(v) : 1; + }); + const [isFullscreen, setIsFullscreen] = useState(false); + const [duration, setDuration] = useState(0); + const [currentTime, setCurrentTime] = useState(0); + + // ── Refs ── + const wsRef = useRef(null); + const clientIdRef = useRef(''); + const reconnectTimerRef = useRef | null>(null); + const reconnectDelayRef = useRef(1000); + const currentRoomRef = useRef(null); + const roomContainerRef = useRef(null); + + // Player refs + const ytPlayerRef = useRef(null); + const videoRef = useRef(null); + const playerContainerRef = useRef(null); + const currentVideoTypeRef = useRef<'youtube' | 'direct' | null>(null); + const ytReadyRef = useRef(false); + const seekingRef = useRef(false); + const timeUpdateRef = useRef | null>(null); + + // Mirror state to refs + useEffect(() => { currentRoomRef.current = currentRoom; }, [currentRoom]); + + const isHost = currentRoom != null && clientIdRef.current === currentRoom.hostId; + + // ── SSE data ── + useEffect(() => { + if (data?.rooms) { + setRooms(data.rooms); + } + }, [data]); + + // ── Save name ── + useEffect(() => { + if (userName) localStorage.setItem('wt_name', userName); + }, [userName]); + + // ── Save volume ── + useEffect(() => { + localStorage.setItem('wt_volume', String(volume)); + if (ytPlayerRef.current && typeof ytPlayerRef.current.setVolume === 'function') { + ytPlayerRef.current.setVolume(volume * 100); + } + if (videoRef.current) { + videoRef.current.volume = volume; + } + }, [volume]); + + // ── YouTube IFrame API ── + useEffect(() => { + if (window.YT) { ytReadyRef.current = true; return; } + const tag = document.createElement('script'); + tag.src = 'https://www.youtube.com/iframe_api'; + document.head.appendChild(tag); + const prev = window.onYouTubeIframeAPIReady; + window.onYouTubeIframeAPIReady = () => { + ytReadyRef.current = true; + if (prev) prev(); + }; + }, []); + + // ── WS send ── + const wsSend = useCallback((d: Record) => { + if (wsRef.current?.readyState === WebSocket.OPEN) { + wsRef.current.send(JSON.stringify(d)); + } + }, []); + + // ── Get current time from active player ── + const getCurrentTime = useCallback((): number | null => { + if (currentVideoTypeRef.current === 'youtube' && ytPlayerRef.current && typeof ytPlayerRef.current.getCurrentTime === 'function') { + return ytPlayerRef.current.getCurrentTime(); + } + if (currentVideoTypeRef.current === 'direct' && videoRef.current) { + return videoRef.current.currentTime; + } + return null; + }, []); + + // ── Get duration from active player ── + const getDuration = useCallback((): number => { + if (currentVideoTypeRef.current === 'youtube' && ytPlayerRef.current && typeof ytPlayerRef.current.getDuration === 'function') { + return ytPlayerRef.current.getDuration() || 0; + } + if (currentVideoTypeRef.current === 'direct' && videoRef.current) { + return videoRef.current.duration || 0; + } + return 0; + }, []); + + // ── Destroy player ── + const destroyPlayer = useCallback(() => { + if (ytPlayerRef.current) { + try { ytPlayerRef.current.destroy(); } catch {} + ytPlayerRef.current = null; + } + if (videoRef.current) { + videoRef.current.pause(); + videoRef.current.removeAttribute('src'); + videoRef.current.load(); + } + currentVideoTypeRef.current = null; + if (timeUpdateRef.current) { + clearInterval(timeUpdateRef.current); + timeUpdateRef.current = null; + } + }, []); + + // ── Load video ── + const loadVideo = useCallback((url: string) => { + destroyPlayer(); + const parsed = parseVideoUrl(url); + if (!parsed) return; + + if (parsed.type === 'youtube') { + currentVideoTypeRef.current = 'youtube'; + if (!ytReadyRef.current || !playerContainerRef.current) return; + + // Create a fresh div for YT player + const container = playerContainerRef.current; + const ytDiv = document.createElement('div'); + ytDiv.id = 'wt-yt-player-' + Date.now(); + container.innerHTML = ''; + container.appendChild(ytDiv); + + ytPlayerRef.current = new window.YT.Player(ytDiv.id, { + videoId: parsed.videoId, + playerVars: { autoplay: 1, controls: 0, modestbranding: 1, rel: 0 }, + events: { + onReady: (ev: any) => { + ev.target.setVolume(volume * 100); + setDuration(ev.target.getDuration() || 0); + // Time update interval + timeUpdateRef.current = setInterval(() => { + if (ytPlayerRef.current && typeof ytPlayerRef.current.getCurrentTime === 'function') { + setCurrentTime(ytPlayerRef.current.getCurrentTime()); + setDuration(ytPlayerRef.current.getDuration() || 0); + } + }, 500); + }, + onStateChange: (ev: any) => { + if (ev.data === window.YT.PlayerState.ENDED) { + const room = currentRoomRef.current; + if (room && clientIdRef.current === room.hostId) { + wsSend({ type: 'skip' }); + } + } + }, + }, + }); + } else { + currentVideoTypeRef.current = 'direct'; + if (videoRef.current) { + videoRef.current.src = parsed.url; + videoRef.current.volume = volume; + videoRef.current.play().catch(() => {}); + } + } + }, [destroyPlayer, volume, wsSend]); + + // ── HTML5 video ended handler ── + useEffect(() => { + const video = videoRef.current; + if (!video) return; + const onEnded = () => { + const room = currentRoomRef.current; + if (room && clientIdRef.current === room.hostId) { + wsSend({ type: 'skip' }); + } + }; + const onTimeUpdate = () => { + setCurrentTime(video.currentTime); + setDuration(video.duration || 0); + }; + video.addEventListener('ended', onEnded); + video.addEventListener('timeupdate', onTimeUpdate); + return () => { + video.removeEventListener('ended', onEnded); + video.removeEventListener('timeupdate', onTimeUpdate); + }; + }, [wsSend]); + + // ── WS message handler ── + const handleWsMessageRef = useRef<(msg: any) => void>(() => {}); + handleWsMessageRef.current = (msg: any) => { + switch (msg.type) { + case 'welcome': + clientIdRef.current = msg.clientId; + if (msg.rooms) setRooms(msg.rooms); + break; + + case 'room_created': + setCurrentRoom({ + id: msg.roomId, + name: msg.name, + hostId: msg.hostId, + members: msg.members || [], + currentVideo: null, + playing: false, + currentTime: 0, + queue: [], + }); + break; + + case 'room_joined': + setCurrentRoom({ + id: msg.roomId, + name: msg.name, + hostId: msg.hostId, + members: msg.members || [], + currentVideo: msg.currentVideo || null, + playing: msg.playing || false, + currentTime: msg.currentTime || 0, + queue: msg.queue || [], + }); + // Load video if one is playing + if (msg.currentVideo?.url) { + setTimeout(() => loadVideo(msg.currentVideo.url), 100); + } + break; + + case 'playback_state': { + const room = currentRoomRef.current; + if (!room) break; + + const newVideo = msg.currentVideo; + const prevUrl = room.currentVideo?.url; + + // 1. Video URL changed → load new video + if (newVideo?.url && newVideo.url !== prevUrl) { + loadVideo(newVideo.url); + } else if (!newVideo && prevUrl) { + destroyPlayer(); + } + + // 2. Playing mismatch → play or pause + if (currentVideoTypeRef.current === 'youtube' && ytPlayerRef.current) { + const playerState = ytPlayerRef.current.getPlayerState?.(); + if (msg.playing && playerState !== window.YT?.PlayerState?.PLAYING) { + ytPlayerRef.current.playVideo?.(); + } else if (!msg.playing && playerState === window.YT?.PlayerState?.PLAYING) { + ytPlayerRef.current.pauseVideo?.(); + } + } else if (currentVideoTypeRef.current === 'direct' && videoRef.current) { + if (msg.playing && videoRef.current.paused) { + videoRef.current.play().catch(() => {}); + } else if (!msg.playing && !videoRef.current.paused) { + videoRef.current.pause(); + } + } + + // 3. Drift correction: if |localTime - serverTime| > 2 → seek + if (msg.currentTime !== undefined && !seekingRef.current) { + const localTime = getCurrentTime(); + if (localTime !== null && Math.abs(localTime - msg.currentTime) > 2) { + if (currentVideoTypeRef.current === 'youtube' && ytPlayerRef.current) { + ytPlayerRef.current.seekTo?.(msg.currentTime, true); + } else if (currentVideoTypeRef.current === 'direct' && videoRef.current) { + videoRef.current.currentTime = msg.currentTime; + } + } + } + + setCurrentRoom(prev => prev ? { + ...prev, + currentVideo: newVideo || null, + playing: msg.playing, + currentTime: msg.currentTime ?? prev.currentTime, + } : prev); + break; + } + + case 'queue_updated': + setCurrentRoom(prev => prev ? { ...prev, queue: msg.queue } : prev); + break; + + case 'members_updated': + setCurrentRoom(prev => prev ? { ...prev, members: msg.members, hostId: msg.hostId } : prev); + break; + + case 'error': + if (msg.code === 'WRONG_PASSWORD') { + setJoinModal(prev => prev ? { ...prev, error: msg.message } : prev); + } else { + setError(msg.message); + } + break; + } + }; + + // ── WebSocket connect ── + const connectWs = useCallback(() => { + if (wsRef.current && wsRef.current.readyState === WebSocket.OPEN) return; + + const proto = location.protocol === 'https:' ? 'wss' : 'ws'; + const ws = new WebSocket(`${proto}://${location.host}/ws/watch-together`); + wsRef.current = ws; + + ws.onopen = () => { reconnectDelayRef.current = 1000; }; + + ws.onmessage = (ev) => { + let msg: any; + try { msg = JSON.parse(ev.data); } catch { return; } + handleWsMessageRef.current(msg); + }; + + ws.onclose = () => { + wsRef.current = null; + if (currentRoomRef.current) { + reconnectTimerRef.current = setTimeout(() => { + reconnectDelayRef.current = Math.min(reconnectDelayRef.current * 2, 10000); + connectWs(); + }, reconnectDelayRef.current); + } + }; + + ws.onerror = () => { ws.close(); }; + }, []); + + // ── Create room ── + const createRoom = useCallback(() => { + if (!userName.trim()) { setError('Bitte gib einen Namen ein.'); return; } + if (!roomName.trim()) { setError('Bitte gib einen Raumnamen ein.'); return; } + setError(null); + connectWs(); + + const waitForWs = () => { + if (wsRef.current?.readyState === WebSocket.OPEN) { + wsSend({ + type: 'create_room', + name: userName.trim(), + roomName: roomName.trim(), + password: roomPassword.trim() || undefined, + }); + } else { + setTimeout(waitForWs, 100); + } + }; + waitForWs(); + }, [userName, roomName, roomPassword, connectWs, wsSend]); + + // ── Join room ── + const joinRoom = useCallback((roomId: string, password?: string) => { + if (!userName.trim()) { setError('Bitte gib einen Namen ein.'); return; } + setError(null); + connectWs(); + + const waitForWs = () => { + if (wsRef.current?.readyState === WebSocket.OPEN) { + wsSend({ + type: 'join_room', + name: userName.trim(), + roomId, + password: password?.trim() || undefined, + }); + } else { + setTimeout(waitForWs, 100); + } + }; + waitForWs(); + }, [userName, connectWs, wsSend]); + + // ── Leave room ── + const leaveRoom = useCallback(() => { + wsSend({ type: 'leave_room' }); + destroyPlayer(); + setCurrentRoom(null); + setQueueUrl(''); + setDuration(0); + setCurrentTime(0); + }, [wsSend, destroyPlayer]); + + // ── Add to queue ── + const addToQueue = useCallback(() => { + if (!queueUrl.trim()) return; + wsSend({ type: 'add_to_queue', url: queueUrl.trim() }); + setQueueUrl(''); + }, [queueUrl, wsSend]); + + // ── Remove from queue ── + const removeFromQueue = useCallback((index: number) => { + wsSend({ type: 'remove_from_queue', index }); + }, [wsSend]); + + // ── Playback controls (host only) ── + const togglePlay = useCallback(() => { + wsSend({ type: 'toggle_play' }); + }, [wsSend]); + + const skip = useCallback(() => { + wsSend({ type: 'skip' }); + }, [wsSend]); + + const seek = useCallback((time: number) => { + seekingRef.current = true; + wsSend({ type: 'seek', time }); + // Seek locally immediately + if (currentVideoTypeRef.current === 'youtube' && ytPlayerRef.current) { + ytPlayerRef.current.seekTo?.(time, true); + } else if (currentVideoTypeRef.current === 'direct' && videoRef.current) { + videoRef.current.currentTime = time; + } + setCurrentTime(time); + setTimeout(() => { seekingRef.current = false; }, 1000); + }, [wsSend]); + + // ── Host time reporting ── + useEffect(() => { + if (!isHost || !currentRoom?.playing) return; + const iv = setInterval(() => { + const time = getCurrentTime(); + if (time !== null) wsSend({ type: 'report_time', time }); + }, 2000); + return () => clearInterval(iv); + }, [isHost, currentRoom?.playing, wsSend, getCurrentTime]); + + // ── Fullscreen ── + const toggleFullscreen = useCallback(() => { + const el = roomContainerRef.current; + if (!el) return; + if (!document.fullscreenElement) el.requestFullscreen().catch(() => {}); + else document.exitFullscreen().catch(() => {}); + }, []); + + useEffect(() => { + const handler = () => setIsFullscreen(!!document.fullscreenElement); + document.addEventListener('fullscreenchange', handler); + return () => document.removeEventListener('fullscreenchange', handler); + }, []); + + // ── beforeunload + pagehide ── + useEffect(() => { + const beforeUnload = (e: BeforeUnloadEvent) => { + if (currentRoomRef.current) e.preventDefault(); + }; + const pageHide = () => { + if (clientIdRef.current) { + navigator.sendBeacon('/api/watch-together/disconnect', JSON.stringify({ clientId: clientIdRef.current })); + } + }; + window.addEventListener('beforeunload', beforeUnload); + window.addEventListener('pagehide', pageHide); + return () => { + window.removeEventListener('beforeunload', beforeUnload); + window.removeEventListener('pagehide', pageHide); + }; + }, []); + + // ── Cleanup on unmount ── + useEffect(() => { + return () => { + destroyPlayer(); + if (wsRef.current) wsRef.current.close(); + if (reconnectTimerRef.current) clearTimeout(reconnectTimerRef.current); + }; + }, [destroyPlayer]); + + // ── Join modal submit ── + const submitJoinModal = useCallback(() => { + if (!joinModal) return; + if (!joinModal.password.trim()) { + setJoinModal(prev => prev ? { ...prev, error: 'Passwort eingeben.' } : prev); + return; + } + const { roomId, password } = joinModal; + setJoinModal(null); + joinRoom(roomId, password); + }, [joinModal, joinRoom]); + + // ── Tile click ── + const handleTileClick = useCallback((room: RoomInfo) => { + if (room.hasPassword) { + setJoinModal({ roomId: room.id, roomName: room.name, password: '', error: null }); + } else { + joinRoom(room.id); + } + }, [joinRoom]); + + // ── Render: Room View ── + if (currentRoom) { + const hostMember = currentRoom.members.find(m => m.id === currentRoom.hostId); + return ( +
+
+
+ {currentRoom.name} + {currentRoom.members.length} Mitglieder + {hostMember && Host: {hostMember.name}} +
+
+ + +
+
+ +
+
+
+
+
+ +
+ {isHost ? ( + <> + + + seek(parseFloat(e.target.value))} + disabled={!currentRoom.currentVideo} + /> + + ) : ( + <> + {currentRoom.playing ? '\u25B6' : '\u23F8'} +
+
0 ? `${(currentTime / duration) * 100}%` : '0%' }} /> +
+ + )} + {formatTime(currentTime)} / {formatTime(duration)} +
+ {volume === 0 ? '\uD83D\uDD07' : volume < 0.5 ? '\uD83D\uDD09' : '\uD83D\uDD0A'} + setVolume(parseFloat(e.target.value))} + /> +
+
+
+ +
+
Warteschlange ({currentRoom.queue.length})
+
+ {currentRoom.queue.length === 0 ? ( +
Keine Videos in der Warteschlange
+ ) : ( + currentRoom.queue.map((item, i) => ( +
+
+
{item.title || item.url}
+
{item.addedBy}
+
+ {isHost && ( + + )} +
+ )) + )} +
+
+ setQueueUrl(e.target.value)} + onKeyDown={e => { if (e.key === 'Enter') addToQueue(); }} + /> + +
+
+
+
+ ); + } + + // ── Render: Lobby ── + return ( +
+ {error && ( +
+ {error} + +
+ )} + +
+ setUserName(e.target.value)} + /> + setRoomName(e.target.value)} + /> + setRoomPassword(e.target.value)} + /> + +
+ + {rooms.length === 0 ? ( +
+
{'\uD83C\uDFAC'}
+

Keine aktiven Raeume

+

Erstelle einen Raum, um gemeinsam Videos zu schauen.

+
+ ) : ( +
+ {rooms.map(room => ( +
handleTileClick(room)}> +
+ {'\uD83C\uDFAC'} + {'\uD83D\uDC65'} {room.memberCount} + {room.hasPassword && {'\uD83D\uDD12'}} + {room.playing && {'\u25B6'}} +
+
+
+
{room.name}
+
{room.hostName}
+
+
+
+ ))} +
+ )} + + {joinModal && ( +
setJoinModal(null)}> +
e.stopPropagation()}> +

{joinModal.roomName}

+

Raum-Passwort

+ {joinModal.error &&
{joinModal.error}
} + setJoinModal(prev => prev ? { ...prev, password: e.target.value, error: null } : prev)} + onKeyDown={e => { if (e.key === 'Enter') submitJoinModal(); }} + autoFocus + /> +
+ + +
+
+
+ )} +
+ ); +} diff --git a/web/src/plugins/watch-together/watch-together.css b/web/src/plugins/watch-together/watch-together.css new file mode 100644 index 0000000..09dd4c9 --- /dev/null +++ b/web/src/plugins/watch-together/watch-together.css @@ -0,0 +1,730 @@ +/* ── Watch Together Plugin ── */ + +.wt-container { + height: 100%; + overflow-y: auto; + padding: 16px; +} + +/* ── Top Bar ── */ +.wt-topbar { + display: flex; + align-items: center; + gap: 10px; + margin-bottom: 16px; + flex-wrap: wrap; +} + +.wt-input { + padding: 10px 14px; + border: 1px solid var(--bg-tertiary); + border-radius: var(--radius); + background: var(--bg-secondary); + color: var(--text-normal); + font-size: 14px; + outline: none; + transition: border-color var(--transition); + min-width: 0; +} +.wt-input:focus { border-color: var(--accent); } +.wt-input::placeholder { color: var(--text-faint); } +.wt-input-name { width: 150px; } +.wt-input-room { flex: 1; min-width: 180px; } +.wt-input-password { width: 170px; } + +.wt-btn { + padding: 10px 20px; + border: none; + border-radius: var(--radius); + background: var(--accent); + color: #fff; + font-weight: 600; + font-size: 14px; + cursor: pointer; + transition: background var(--transition); + white-space: nowrap; + display: flex; + align-items: center; + gap: 6px; +} +.wt-btn:hover { background: var(--accent-hover); } +.wt-btn:disabled { + opacity: 0.5; + cursor: not-allowed; +} + +/* ── Grid ── */ +.wt-grid { + display: grid; + grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); + gap: 16px; +} + +/* ── Tile ── */ +.wt-tile { + background: var(--bg-secondary); + border-radius: var(--radius-lg); + overflow: hidden; + cursor: pointer; + transition: transform var(--transition), box-shadow var(--transition); + position: relative; +} +.wt-tile:hover { + transform: translateY(-2px); + box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4); +} + +/* Preview area (16:9) */ +.wt-tile-preview { + position: relative; + width: 100%; + padding-top: 56.25%; + background: var(--bg-deep); + overflow: hidden; +} +.wt-tile-icon { + position: absolute; + top: 50%; + left: 50%; + transform: translate(-50%, -50%); + font-size: 48px; + opacity: 0.3; +} + +/* Member count on tile */ +.wt-tile-members { + position: absolute; + top: 8px; + right: 8px; + background: rgba(0, 0, 0, 0.6); + color: #fff; + font-size: 12px; + padding: 2px 8px; + border-radius: 4px; + display: flex; + align-items: center; + gap: 4px; +} + +/* Lock icon on tile */ +.wt-tile-lock { + position: absolute; + bottom: 8px; + right: 8px; + font-size: 16px; + opacity: 0.6; +} + +/* Playing indicator on tile */ +.wt-tile-playing { + position: absolute; + top: 8px; + left: 8px; + background: var(--accent); + color: #fff; + font-size: 11px; + font-weight: 700; + padding: 2px 8px; + border-radius: 4px; + display: flex; + align-items: center; + gap: 4px; +} + +/* Info bar below preview */ +.wt-tile-info { + padding: 10px 12px; + display: flex; + align-items: center; + justify-content: space-between; + gap: 8px; +} +.wt-tile-meta { + min-width: 0; + flex: 1; +} +.wt-tile-name { + font-size: 14px; + font-weight: 600; + color: var(--text-normal); + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; +} +.wt-tile-host { + font-size: 12px; + color: var(--text-muted); + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; +} + +/* ── Empty state ── */ +.wt-empty { + text-align: center; + padding: 60px 20px; + color: var(--text-muted); +} +.wt-empty-icon { + font-size: 48px; + margin-bottom: 12px; + opacity: 0.4; +} +.wt-empty h3 { + font-size: 18px; + font-weight: 600; + color: var(--text-normal); + margin-bottom: 6px; +} +.wt-empty p { + font-size: 14px; +} + +/* ── Error ── */ +.wt-error { + background: rgba(237, 66, 69, 0.12); + color: var(--danger); + padding: 10px 14px; + border-radius: var(--radius); + font-size: 14px; + margin-bottom: 12px; + display: flex; + align-items: center; + gap: 8px; +} +.wt-error-dismiss { + background: none; + border: none; + color: var(--danger); + cursor: pointer; + margin-left: auto; + font-size: 16px; + padding: 0 4px; +} + +/* ── Password / Join Modal ── */ +.wt-modal-overlay { + position: fixed; + inset: 0; + z-index: 1000; + background: rgba(0, 0, 0, 0.7); + display: flex; + align-items: center; + justify-content: center; +} +.wt-modal { + background: var(--bg-secondary); + border-radius: var(--radius-lg); + padding: 24px; + width: 340px; + max-width: 90vw; +} +.wt-modal h3 { + font-size: 16px; + font-weight: 600; + margin-bottom: 4px; +} +.wt-modal p { + font-size: 13px; + color: var(--text-muted); + margin-bottom: 16px; +} +.wt-modal .wt-input { + width: 100%; + margin-bottom: 12px; +} +.wt-modal-error { + color: var(--danger); + font-size: 13px; + margin-bottom: 8px; +} +.wt-modal-actions { + display: flex; + gap: 8px; + justify-content: flex-end; +} +.wt-modal-cancel { + padding: 8px 16px; + border: 1px solid var(--bg-tertiary); + border-radius: var(--radius); + background: transparent; + color: var(--text-muted); + cursor: pointer; + font-size: 14px; +} +.wt-modal-cancel:hover { + color: var(--text-normal); + border-color: var(--text-faint); +} + +/* ══════════════════════════════════════ + ROOM VIEW (Fullscreen Overlay) + ══════════════════════════════════════ */ + +.wt-room-overlay { + position: fixed; + inset: 0; + z-index: 1000; + background: #000; + display: flex; + flex-direction: column; +} + +/* ── Room Header ── */ +.wt-room-header { + display: flex; + align-items: center; + justify-content: space-between; + padding: 12px 16px; + background: rgba(0, 0, 0, 0.8); + color: #fff; + z-index: 1; + flex-shrink: 0; +} +.wt-room-header-left { + display: flex; + align-items: center; + gap: 12px; +} +.wt-room-name { + font-weight: 600; + font-size: 16px; +} +.wt-room-members { + font-size: 13px; + color: var(--text-muted); +} +.wt-host-badge { + font-size: 11px; + background: rgba(255, 255, 255, 0.1); + padding: 2px 8px; + border-radius: 4px; + color: var(--accent); + font-weight: 600; +} +.wt-room-header-right { + display: flex; + align-items: center; + gap: 8px; +} +.wt-fullscreen-btn { + background: rgba(255, 255, 255, 0.1); + border: none; + color: #fff; + width: 36px; + height: 36px; + border-radius: var(--radius); + cursor: pointer; + font-size: 18px; + display: flex; + align-items: center; + justify-content: center; + transition: background var(--transition); +} +.wt-fullscreen-btn:hover { + background: rgba(255, 255, 255, 0.25); +} +.wt-leave-btn { + background: rgba(255, 255, 255, 0.1); + border: none; + color: #fff; + padding: 8px 16px; + border-radius: var(--radius); + cursor: pointer; + font-size: 14px; + transition: background var(--transition); +} +.wt-leave-btn:hover { + background: rgba(255, 255, 255, 0.2); +} + +/* ── Room Body ── */ +.wt-room-body { + display: flex; + flex: 1; + overflow: hidden; +} + +/* ── Player Section ── */ +.wt-player-section { + flex: 1; + display: flex; + flex-direction: column; + min-width: 0; +} +.wt-player-wrap { + position: relative; + width: 100%; + flex: 1; + background: #000; + display: flex; + align-items: center; + justify-content: center; + overflow: hidden; +} +.wt-yt-container { + position: absolute; + inset: 0; + width: 100%; + height: 100%; +} +.wt-yt-container iframe { + width: 100%; + height: 100%; +} +.wt-video-element { + width: 100%; + height: 100%; + object-fit: contain; +} +.wt-player-placeholder { + display: flex; + flex-direction: column; + align-items: center; + gap: 12px; + color: var(--text-muted); + font-size: 16px; +} +.wt-placeholder-icon { + font-size: 48px; + opacity: 0.3; +} + +/* ── Controls ── */ +.wt-controls { + display: flex; + align-items: center; + gap: 12px; + padding: 12px 16px; + background: rgba(0, 0, 0, 0.8); + flex-shrink: 0; +} +.wt-ctrl-btn { + background: rgba(255, 255, 255, 0.1); + border: none; + color: #fff; + width: 36px; + height: 36px; + border-radius: var(--radius); + cursor: pointer; + font-size: 16px; + display: flex; + align-items: center; + justify-content: center; + transition: background var(--transition); + flex-shrink: 0; +} +.wt-ctrl-btn:hover:not(:disabled) { + background: rgba(255, 255, 255, 0.25); +} +.wt-ctrl-btn:disabled { + opacity: 0.3; + cursor: not-allowed; +} +.wt-ctrl-status { + color: var(--text-muted); + font-size: 16px; + width: 36px; + text-align: center; + flex-shrink: 0; +} + +/* ── Seek Slider ── */ +.wt-seek { + -webkit-appearance: none; + appearance: none; + flex: 1; + height: 4px; + border-radius: 2px; + background: var(--bg-tertiary); + outline: none; + cursor: pointer; + min-width: 60px; +} +.wt-seek::-webkit-slider-thumb { + -webkit-appearance: none; + appearance: none; + width: 14px; + height: 14px; + border-radius: 50%; + background: var(--accent); + cursor: pointer; + border: none; + box-shadow: 0 0 4px rgba(0, 0, 0, 0.3); +} +.wt-seek::-moz-range-thumb { + width: 14px; + height: 14px; + border-radius: 50%; + background: var(--accent); + cursor: pointer; + border: none; + box-shadow: 0 0 4px rgba(0, 0, 0, 0.3); +} +.wt-seek::-webkit-slider-runnable-track { + height: 4px; + border-radius: 2px; +} +.wt-seek::-moz-range-track { + height: 4px; + border-radius: 2px; + background: var(--bg-tertiary); +} + +/* Read-only seek for non-host */ +.wt-seek-readonly { + flex: 1; + height: 4px; + border-radius: 2px; + background: var(--bg-tertiary); + position: relative; + overflow: hidden; + min-width: 60px; +} +.wt-seek-progress { + position: absolute; + top: 0; + left: 0; + height: 100%; + background: var(--accent); + border-radius: 2px; + transition: width 0.3s linear; +} + +/* ── Time Display ── */ +.wt-time { + font-variant-numeric: tabular-nums; + color: #fff; + font-size: 13px; + white-space: nowrap; + flex-shrink: 0; +} + +/* ── Volume ── */ +.wt-volume { + display: flex; + align-items: center; + gap: 6px; + flex-shrink: 0; + margin-left: auto; +} +.wt-volume-icon { + font-size: 16px; + width: 20px; + text-align: center; + cursor: default; +} +.wt-volume-slider { + -webkit-appearance: none; + appearance: none; + width: 100px; + height: 4px; + border-radius: 2px; + background: var(--bg-tertiary); + outline: none; + cursor: pointer; +} +.wt-volume-slider::-webkit-slider-thumb { + -webkit-appearance: none; + appearance: none; + width: 14px; + height: 14px; + border-radius: 50%; + background: var(--accent); + cursor: pointer; + border: none; + box-shadow: 0 0 4px rgba(0, 0, 0, 0.3); +} +.wt-volume-slider::-moz-range-thumb { + width: 14px; + height: 14px; + border-radius: 50%; + background: var(--accent); + cursor: pointer; + border: none; + box-shadow: 0 0 4px rgba(0, 0, 0, 0.3); +} + +/* ══════════════════════════════════════ + QUEUE PANEL + ══════════════════════════════════════ */ + +.wt-queue-panel { + width: 280px; + background: var(--bg-secondary); + border-left: 1px solid var(--bg-tertiary); + display: flex; + flex-direction: column; + flex-shrink: 0; +} +.wt-queue-header { + padding: 14px 16px; + font-weight: 600; + font-size: 14px; + color: var(--text-normal); + border-bottom: 1px solid var(--bg-tertiary); + flex-shrink: 0; +} +.wt-queue-list { + flex: 1; + overflow-y: auto; + scrollbar-width: thin; + scrollbar-color: var(--bg-tertiary) transparent; +} +.wt-queue-list::-webkit-scrollbar { + width: 4px; +} +.wt-queue-list::-webkit-scrollbar-thumb { + background: var(--bg-tertiary); + border-radius: 2px; +} +.wt-queue-empty { + padding: 24px 16px; + text-align: center; + color: var(--text-faint); + font-size: 13px; +} +.wt-queue-item { + padding: 10px 12px; + border-bottom: 1px solid var(--bg-tertiary); + display: flex; + align-items: center; + gap: 8px; + transition: background var(--transition); +} +.wt-queue-item:hover { + background: var(--bg-tertiary); +} +.wt-queue-item.playing { + border-left: 3px solid var(--accent); + background: rgba(230, 126, 34, 0.08); +} +.wt-queue-item-info { + flex: 1; + min-width: 0; +} +.wt-queue-item-title { + font-size: 13px; + font-weight: 500; + color: var(--text-normal); + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; +} +.wt-queue-item-by { + font-size: 11px; + color: var(--text-faint); + margin-top: 2px; +} +.wt-queue-item-remove { + background: none; + border: none; + color: var(--text-faint); + cursor: pointer; + font-size: 18px; + padding: 2px 6px; + border-radius: 4px; + transition: all var(--transition); + flex-shrink: 0; +} +.wt-queue-item-remove:hover { + color: var(--danger); + background: rgba(237, 66, 69, 0.12); +} + +/* ── Queue Add ── */ +.wt-queue-add { + padding: 12px; + display: flex; + gap: 8px; + border-top: 1px solid var(--bg-tertiary); + flex-shrink: 0; +} +.wt-queue-input { + flex: 1; + font-size: 13px; + padding: 8px 10px; +} +.wt-queue-add-btn { + padding: 8px 12px; + font-size: 13px; + flex-shrink: 0; +} + +/* ══════════════════════════════════════ + RESPONSIVE + ══════════════════════════════════════ */ + +@media (max-width: 768px) { + .wt-room-body { + flex-direction: column; + } + + .wt-queue-panel { + width: 100%; + max-height: 40vh; + border-left: none; + border-top: 1px solid var(--bg-tertiary); + } + + .wt-player-wrap { + min-height: 200px; + } + + .wt-controls { + flex-wrap: wrap; + gap: 8px; + padding: 10px 12px; + } + + .wt-volume { + margin-left: 0; + } + + .wt-volume-slider { + width: 80px; + } + + .wt-room-header { + padding: 10px 12px; + } + + .wt-room-name { + font-size: 14px; + } + + .wt-room-members, + .wt-host-badge { + font-size: 11px; + } +} + +@media (max-width: 480px) { + .wt-topbar { + gap: 8px; + } + + .wt-input-name { + width: 100%; + } + + .wt-input-room { + min-width: 0; + } + + .wt-input-password { + width: 100%; + } + + .wt-volume-slider { + width: 60px; + } + + .wt-time { + font-size: 12px; + } + + .wt-host-badge { + display: none; + } +} diff --git a/web/src/styles.css b/web/src/styles.css index b472759..8debeb2 100644 --- a/web/src/styles.css +++ b/web/src/styles.css @@ -188,6 +188,17 @@ html, body { flex-shrink: 0; } +.hub-download-btn { + font-size: 16px; + text-decoration: none; + opacity: 0.6; + transition: opacity var(--transition); + cursor: pointer; +} +.hub-download-btn:hover { + opacity: 1; +} + .hub-version { font-size: 12px; color: var(--text-faint);