livedesk 0.1.437 → 0.1.439

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/hub/src/server.js CHANGED
@@ -61,7 +61,7 @@ const runtimeManager = createHubRuntime({
61
61
  });
62
62
  runtimeManager.emit('runtime.started', { role: runtimeRole, pid: process.pid });
63
63
  const frameBackpressureBytes = readPositiveIntegerEnv('LIVEDESK_FRAME_WS_BACKPRESSURE_BYTES', 8 * 1024 * 1024);
64
- const frameClientQueuePackets = readPositiveIntegerEnv('LIVEDESK_FRAME_WS_QUEUE_PACKETS', 4);
64
+ const frameClientQueuePackets = readPositiveIntegerEnv('LIVEDESK_FRAME_WS_QUEUE_PACKETS', 8);
65
65
  const controlFrameClientQueuePackets = readPositiveIntegerEnv('LIVEDESK_CONTROL_FRAME_WS_QUEUE_PACKETS', 2);
66
66
  const frameStreamStopGraceMs = readPositiveIntegerEnv('LIVEDESK_FRAME_STREAM_STOP_GRACE_MS', 1500);
67
67
  const mode5FrameBackpressureBytes = readPositiveIntegerEnv('LIVEDESK_MODE5_WS_BACKPRESSURE_BYTES', 2 * 1024 * 1024);
@@ -1821,11 +1821,21 @@ function enqueueFramePacketForClient(ws, packet, meta) {
1821
1821
  ws.liveDeskFrameBackpressureDrops = Number(ws.liveDeskFrameBackpressureDrops || 0) + 1;
1822
1822
  }
1823
1823
  }
1824
- while (lane.queue.length >= frameClientQueueLimit(ws)) {
1825
- dropQueuedFrameForLane(lane);
1826
- ws.liveDeskFrameBackpressureDrops = Number(ws.liveDeskFrameBackpressureDrops || 0) + 1;
1827
- }
1828
- lane.queue.push({
1824
+ while (lane.queue.length >= frameClientQueueLimit(ws)) {
1825
+ dropQueuedFrameForLane(lane);
1826
+ ws.liveDeskFrameBackpressureDrops = Number(ws.liveDeskFrameBackpressureDrops || 0) + 1;
1827
+ }
1828
+ // Queue eviction can put this H.264 device into key-frame recovery after
1829
+ // the pre-overflow check above. Never enqueue the current dependent delta
1830
+ // while the decoder is waiting for a fresh recovery key frame.
1831
+ if (meta.isH264 && meta.isKeyFrame) {
1832
+ lane.awaitingKeyFrames.delete(meta.deviceId);
1833
+ } else if (meta.isH264 && lane.awaitingKeyFrames.has(meta.deviceId)) {
1834
+ lane.dropped += 1;
1835
+ ws.liveDeskFrameBackpressureDrops = Number(ws.liveDeskFrameBackpressureDrops || 0) + 1;
1836
+ return false;
1837
+ }
1838
+ lane.queue.push({
1829
1839
  packet,
1830
1840
  deviceId: meta.deviceId,
1831
1841
  frameSeq: meta.frameSeq,
@@ -2043,10 +2053,28 @@ function buildRemoteFrameBinaryPacket(frameEvent, diagnostics = {}) {
2043
2053
  agentPaceMs: Number(frame.agentPaceMs || 0) || 0,
2044
2054
  agentQueueBeforePaceMs: Number(frame.agentQueueBeforePaceMs || 0) || 0,
2045
2055
  agentFrameAgeMs: Number(frame.agentFrameAgeMs || 0) || 0,
2046
- droppedByAgent: Number(frame.droppedByAgent || 0) || 0,
2047
- hubIngressDropped: Number(frame.hubIngressDropped || 0) || 0,
2048
- hubClientDropped: Number(diagnostics.hubClientDropped || 0) || 0,
2049
- hardwareEncoder: frame.hardwareEncoder || '',
2056
+ droppedByAgent: Number(frame.droppedByAgent || 0) || 0,
2057
+ hubIngressDropped: Number(frame.hubIngressDropped || 0) || 0,
2058
+ hubClientDropped: Number(diagnostics.hubClientDropped || 0) || 0,
2059
+ hubClientQueueDepth: Number(diagnostics.hubClientQueueDepth || 0) || 0,
2060
+ hubClientQueueLimit: Number(diagnostics.hubClientQueueLimit || 0) || 0,
2061
+ hubClientBufferedBytes: Number(diagnostics.hubClientBufferedBytes || 0) || 0,
2062
+ udpIncompleteFrames: Number(frame.udpIncompleteFrames || 0) || 0,
2063
+ transport: frame.transport || '',
2064
+ videoTransport: frame.videoTransport || (frame.transport === 'udp-p2p'
2065
+ ? 'p2p-udp'
2066
+ : frame.transport === 'ws-binary'
2067
+ ? 'direct-ws'
2068
+ : 'direct-tcp'),
2069
+ frameTransportActive: frame.frameTransportActive || '',
2070
+ frameTransportProtocol: frame.frameTransportProtocol || '',
2071
+ frameTransportState: frame.frameTransportState || '',
2072
+ frameTransportP2pReady: frame.frameTransportP2pReady === true,
2073
+ frameTransportReason: frame.frameTransportReason || '',
2074
+ frameTransportChangedAt: frame.frameTransportChangedAt || '',
2075
+ frameTransportSwitchCount: Number(frame.frameTransportSwitchCount || 0) || 0,
2076
+ frameTransportTcpFailureCount: Number(frame.frameTransportTcpFailureCount || 0) || 0,
2077
+ hardwareEncoder: frame.hardwareEncoder || '',
2050
2078
  platformProfile: frame.platformProfile || '',
2051
2079
  monitorIndex: Number.isFinite(Number(frame.monitorIndex)) ? Number(frame.monitorIndex) : 0,
2052
2080
  monitorCount: Number.isFinite(Number(frame.monitorCount)) ? Number(frame.monitorCount) : 1,
@@ -2157,7 +2185,6 @@ function broadcastRemoteBinaryFrame(frameEvent) {
2157
2185
  const isMode5 = String(frame.frameMode || frame.mode || '').toLowerCase() === 'mode5-lzo-delta';
2158
2186
  const isKeyFrame = frame.isKeyFrame === true || String(frame.chunkType || '').toLowerCase() === 'key';
2159
2187
  const frameSeq = Number(frame.frameSeq || 0) || 0;
2160
- let sharedPacket = null;
2161
2188
  for (const client of targetClients) {
2162
2189
  if (client.readyState !== client.OPEN) {
2163
2190
  continue;
@@ -2197,13 +2224,18 @@ function broadcastRemoteBinaryFrame(frameEvent) {
2197
2224
  client.liveDeskFrameBackpressureDrops = Number(client.liveDeskFrameBackpressureDrops || 0) + 1;
2198
2225
  continue;
2199
2226
  }
2200
- sharedPacket ||= buildRemoteFrameBinaryPacket(frameEvent);
2201
- if (!sharedPacket) {
2227
+ const packet = buildRemoteFrameBinaryPacket(frameEvent, {
2228
+ hubClientDropped: lane.dropped,
2229
+ hubClientQueueDepth: lane.queue.length,
2230
+ hubClientQueueLimit: frameClientQueueLimit(client),
2231
+ hubClientBufferedBytes: Number(client.bufferedAmount || 0) || 0
2232
+ });
2233
+ if (!packet) {
2202
2234
  continue;
2203
2235
  }
2204
- enqueueFramePacketForClient(client, sharedPacket, { deviceId, frameSeq, isH264, isMode5, isKeyFrame });
2205
- }
2206
- }
2236
+ enqueueFramePacketForClient(client, packet, { deviceId, frameSeq, isH264, isMode5, isKeyFrame });
2237
+ }
2238
+ }
2207
2239
 
2208
2240
  function broadcastRemoteBinaryAudio(audioEvent) {
2209
2241
  const deviceId = String(audioEvent?.deviceId || audioEvent?.frame?.deviceId || '').trim();
@@ -4034,12 +4066,26 @@ app.post('/api/remote/devices/:deviceId/live/start', requireHubFeatureAccess, (r
4034
4066
  res.json(remoteHub.startLiveStream(req.params.deviceId, req.body || {}));
4035
4067
  });
4036
4068
 
4037
- app.post('/api/remote/devices/:deviceId/live/stop', (req, res) => {
4038
- noStore(res);
4039
- res.json(remoteHub.stopLiveStream(req.params.deviceId, req.body || {}));
4040
- });
4041
-
4042
- app.post('/api/remote/devices/:deviceId/audio/start', requireHubFeatureAccess, (req, res) => {
4069
+ app.post('/api/remote/devices/:deviceId/live/stop', (req, res) => {
4070
+ noStore(res);
4071
+ res.json(remoteHub.stopLiveStream(req.params.deviceId, req.body || {}));
4072
+ });
4073
+
4074
+ app.post('/api/remote/devices/:deviceId/live/pause', async (req, res, next) => {
4075
+ noStore(res);
4076
+ try {
4077
+ res.json(await remoteHub.pauseLiveCapture(req.params.deviceId, req.body || {}));
4078
+ } catch (error) {
4079
+ next(error);
4080
+ }
4081
+ });
4082
+
4083
+ app.post('/api/remote/devices/:deviceId/live/resume', requireHubFeatureAccess, (req, res) => {
4084
+ noStore(res);
4085
+ res.json(remoteHub.resumeLiveCapture(req.params.deviceId, req.body || {}));
4086
+ });
4087
+
4088
+ app.post('/api/remote/devices/:deviceId/audio/start', requireHubFeatureAccess, (req, res) => {
4043
4089
  noStore(res);
4044
4090
  res.json(remoteHub.startAudioStream(req.params.deviceId, req.body || {}));
4045
4091
  });
@@ -4203,9 +4249,10 @@ audioWss.on('connection', (ws, req) => {
4203
4249
  });
4204
4250
  });
4205
4251
 
4206
- inputWss.on('connection', ws => {
4207
- inputClients.add(ws);
4208
- ws.liveDeskInputClientId = `riws-${++inputClientSeq}`;
4252
+ inputWss.on('connection', ws => {
4253
+ inputClients.add(ws);
4254
+ ws.liveDeskInputClientId = `riws-${++inputClientSeq}`;
4255
+ ws.liveDeskInputDeviceIds = new Set();
4209
4256
  try {
4210
4257
  ws._socket?.setNoDelay?.(true);
4211
4258
  } catch {
@@ -4229,6 +4276,9 @@ inputWss.on('connection', ws => {
4229
4276
  const input = payload?.input && typeof payload.input === 'object'
4230
4277
  ? { ...payload.input, inputEventId, hubConnectionId: ws.liveDeskInputClientId, hubReceivedAtEpochMs: Date.now() }
4231
4278
  : { ...payload, inputEventId, hubConnectionId: ws.liveDeskInputClientId, hubReceivedAtEpochMs: Date.now() };
4279
+ if (deviceId) {
4280
+ ws.liveDeskInputDeviceIds.add(deviceId);
4281
+ }
4232
4282
  const result = remoteHub.sendInputControl(deviceId, input);
4233
4283
  const inputType = String(input?.type || '').toLowerCase();
4234
4284
  const fireAndForget = payload?.fireAndForget === true
@@ -4248,8 +4298,15 @@ inputWss.on('connection', ws => {
4248
4298
  timestamp: new Date().toISOString()
4249
4299
  });
4250
4300
  });
4251
- ws.on('close', () => inputClients.delete(ws));
4252
- ws.on('error', () => inputClients.delete(ws));
4301
+ const releaseBrowserInputOwner = reason => {
4302
+ inputClients.delete(ws);
4303
+ for (const deviceId of ws.liveDeskInputDeviceIds || []) {
4304
+ remoteHub.releaseInputOwner(deviceId, ws.liveDeskInputClientId, reason);
4305
+ }
4306
+ ws.liveDeskInputDeviceIds?.clear?.();
4307
+ };
4308
+ ws.on('close', () => releaseBrowserInputOwner('browser-input-websocket-closed'));
4309
+ ws.on('error', () => releaseBrowserInputOwner('browser-input-websocket-error'));
4253
4310
  sendJson(ws, {
4254
4311
  type: 'RemoteInputSocketReady',
4255
4312
  protocol: 'livedesk.remote.input.json.v1',
@@ -146,15 +146,23 @@ export function createHubUdpTransport({ env = process.env, logEvent = () => {},
146
146
  return;
147
147
  }
148
148
  if (packet.type !== 'frame') return;
149
- const complete = session.reassembler.ingest(packet);
150
- if (!complete) return;
151
- session.framesReceived += 1;
152
- frameHandler({
153
- deviceId: session.deviceId,
154
- sessionId: session.sessionId,
155
- header: complete.header,
156
- payload: complete.payload,
157
- transport: 'udp-p2p'
149
+ const complete = session.reassembler.ingest(packet);
150
+ if (!complete) return;
151
+ session.framesReceived += 1;
152
+ const reassembly = session.reassembler.getStats();
153
+ frameHandler({
154
+ deviceId: session.deviceId,
155
+ sessionId: session.sessionId,
156
+ header: {
157
+ ...complete.header,
158
+ hubIngressDropped: Math.max(
159
+ Number(complete.header?.hubIngressDropped || 0) || 0,
160
+ reassembly.droppedFrames
161
+ ),
162
+ udpIncompleteFrames: reassembly.droppedFrames
163
+ },
164
+ payload: complete.payload,
165
+ transport: 'udp-p2p'
158
166
  });
159
167
  sendPacket(session, 'pong', {
160
168
  state: 'frame-ack',
@@ -246,9 +254,10 @@ export function createHubUdpTransport({ env = process.env, logEvent = () => {},
246
254
  state: session.ready ? 'udp-ready' : 'udp-session-created',
247
255
  ready: session.ready,
248
256
  sessionId: session.sessionId,
249
- lastPacketAt: session.lastPacketAt ? new Date(session.lastPacketAt).toISOString() : '',
250
- framesReceived: session.framesReceived
251
- };
257
+ lastPacketAt: session.lastPacketAt ? new Date(session.lastPacketAt).toISOString() : '',
258
+ framesReceived: session.framesReceived,
259
+ ...session.reassembler.getStats()
260
+ };
252
261
  }
253
262
 
254
263
  async function close() {
@@ -194,8 +194,11 @@ export class UdpFrameReassembler {
194
194
  constructor({ maxPending = 2, timeoutMs = 500, maxFrameBytes = 8 * 1024 * 1024 } = {}) {
195
195
  this.maxPending = Math.max(1, Math.min(16, Math.floor(Number(maxPending) || 2)));
196
196
  this.timeoutMs = Math.max(20, Math.min(2000, Math.floor(Number(timeoutMs) || 500)));
197
- this.maxFrameBytes = Math.max(64 * 1024, Math.min(16 * 1024 * 1024, Math.floor(Number(maxFrameBytes) || 8 * 1024 * 1024)));
198
- this.pending = new Map();
197
+ this.maxFrameBytes = Math.max(64 * 1024, Math.min(16 * 1024 * 1024, Math.floor(Number(maxFrameBytes) || 8 * 1024 * 1024)));
198
+ this.pending = new Map();
199
+ this.droppedFrames = 0;
200
+ this.expiredFrames = 0;
201
+ this.evictedFrames = 0;
199
202
  }
200
203
 
201
204
  ingest(packet, now = Date.now()) {
@@ -209,11 +212,14 @@ export class UdpFrameReassembler {
209
212
  || chunkIndex < 0 || chunkCount < 1 || chunkCount > 4096 || chunkIndex >= chunkCount) return null;
210
213
  let state = this.pending.get(frameId);
211
214
  if (!state) {
212
- while (this.pending.size >= this.maxPending) {
213
- const oldest = this.pending.keys().next().value;
214
- if (oldest === undefined) break;
215
- this.pending.delete(oldest);
216
- }
215
+ while (this.pending.size >= this.maxPending) {
216
+ const oldest = this.pending.keys().next().value;
217
+ if (oldest === undefined) break;
218
+ if (this.pending.delete(oldest)) {
219
+ this.droppedFrames += 1;
220
+ this.evictedFrames += 1;
221
+ }
222
+ }
217
223
  state = { createdAt: now, chunkCount, chunks: new Array(chunkCount), received: 0, totalBytes: 0, frameHeader: null };
218
224
  this.pending.set(frameId, state);
219
225
  }
@@ -224,9 +230,9 @@ export class UdpFrameReassembler {
224
230
  state.totalBytes += payload.length;
225
231
  const decodedFrameHeader = decodeFrameHeader(header);
226
232
  if (decodedFrameHeader) state.frameHeader = decodedFrameHeader;
227
- if (state.totalBytes > this.maxFrameBytes) {
228
- this.pending.delete(frameId);
229
- return null;
233
+ if (state.totalBytes > this.maxFrameBytes) {
234
+ if (this.pending.delete(frameId)) this.droppedFrames += 1;
235
+ return null;
230
236
  }
231
237
  if (state.received !== state.chunkCount) return null;
232
238
  this.pending.delete(frameId);
@@ -234,7 +240,10 @@ export class UdpFrameReassembler {
234
240
  Buffer.concat(state.chunks, state.totalBytes),
235
241
  state.frameHeader || header.frameHeader || {}
236
242
  );
237
- if (!complete) return null;
243
+ if (!complete) {
244
+ this.droppedFrames += 1;
245
+ return null;
246
+ }
238
247
  return {
239
248
  frameId,
240
249
  header: complete.header,
@@ -242,12 +251,24 @@ export class UdpFrameReassembler {
242
251
  };
243
252
  }
244
253
 
245
- expire(now = Date.now()) {
246
- for (const [frameId, state] of this.pending) {
247
- if (now - state.createdAt > this.timeoutMs) this.pending.delete(frameId);
248
- }
249
- }
250
- }
254
+ expire(now = Date.now()) {
255
+ for (const [frameId, state] of this.pending) {
256
+ if (now - state.createdAt > this.timeoutMs && this.pending.delete(frameId)) {
257
+ this.droppedFrames += 1;
258
+ this.expiredFrames += 1;
259
+ }
260
+ }
261
+ }
262
+
263
+ getStats() {
264
+ return {
265
+ pendingFrames: this.pending.size,
266
+ droppedFrames: this.droppedFrames,
267
+ expiredFrames: this.expiredFrames,
268
+ evictedFrames: this.evictedFrames
269
+ };
270
+ }
271
+ }
251
272
 
252
273
  export function encodeRendezvousMessage(message) {
253
274
  const payload = Buffer.from(JSON.stringify(message && typeof message === 'object' ? message : {}), 'utf8');
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "livedesk",
3
- "version": "0.1.437",
4
- "livedeskClientVersion": "0.1.193",
3
+ "version": "0.1.439",
4
+ "livedeskClientVersion": "0.1.194",
5
5
  "buildFlavor": "production",
6
6
  "description": "LiveDesk Hub and client launcher",
7
7
  "type": "module",
@@ -50,10 +50,10 @@
50
50
  "ws": "^8.18.3"
51
51
  },
52
52
  "optionalDependencies": {
53
- "@livedesk/fast-linux-x64": "0.1.400",
54
- "@livedesk/fast-osx-arm64": "0.1.400",
55
- "@livedesk/fast-osx-x64": "0.1.400",
56
- "@livedesk/fast-win-x64": "0.1.400"
53
+ "@livedesk/fast-linux-x64": "0.1.401",
54
+ "@livedesk/fast-osx-arm64": "0.1.401",
55
+ "@livedesk/fast-osx-x64": "0.1.401",
56
+ "@livedesk/fast-win-x64": "0.1.401"
57
57
  },
58
58
  "publishConfig": {
59
59
  "access": "public"
@@ -1 +1 @@
1
- function t1(y){return y&&y.__esModule&&Object.prototype.hasOwnProperty.call(y,"default")?y.default:y}var R={exports:{}},a={};var Y;function o1(){if(Y)return a;Y=1;var y=Symbol.for("react.transitional.element"),d=Symbol.for("react.portal"),p=Symbol.for("react.fragment"),k=Symbol.for("react.strict_mode"),m=Symbol.for("react.profiler"),f=Symbol.for("react.consumer"),$=Symbol.for("react.context"),x=Symbol.for("react.forward_ref"),N=Symbol.for("react.suspense"),C=Symbol.for("react.memo"),g=Symbol.for("react.lazy"),K=Symbol.for("react.activity"),T=Symbol.iterator;function W(e){return e===null||typeof e!="object"?null:(e=T&&e[T]||e["@@iterator"],typeof e=="function"?e:null)}var j={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},S=Object.assign,L={};function _(e,o,c){this.props=e,this.context=o,this.refs=L,this.updater=c||j}_.prototype.isReactComponent={},_.prototype.setState=function(e,o){if(typeof e!="object"&&typeof e!="function"&&e!=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,e,o,"setState")},_.prototype.forceUpdate=function(e){this.updater.enqueueForceUpdate(this,e,"forceUpdate")};function V(){}V.prototype=_.prototype;function E(e,o,c){this.props=e,this.context=o,this.refs=L,this.updater=c||j}var b=E.prototype=new V;b.constructor=E,S(b,_.prototype),b.isPureReactComponent=!0;var P=Array.isArray;function A(){}var i={H:null,A:null,T:null,S:null},O=Object.prototype.hasOwnProperty;function H(e,o,c){var n=c.ref;return{$$typeof:y,type:e,key:o,ref:n!==void 0?n:null,props:c}}function G(e,o){return H(e.type,o,e.props)}function q(e){return typeof e=="object"&&e!==null&&e.$$typeof===y}function F(e){var o={"=":"=0",":":"=2"};return"$"+e.replace(/[=:]/g,function(c){return o[c]})}var U=/\/+/g;function z(e,o){return typeof e=="object"&&e!==null&&e.key!=null?F(""+e.key):o.toString(36)}function Q(e){switch(e.status){case"fulfilled":return e.value;case"rejected":throw e.reason;default:switch(typeof e.status=="string"?e.then(A,A):(e.status="pending",e.then(function(o){e.status==="pending"&&(e.status="fulfilled",e.value=o)},function(o){e.status==="pending"&&(e.status="rejected",e.reason=o)})),e.status){case"fulfilled":return e.value;case"rejected":throw e.reason}}throw e}function v(e,o,c,n,r){var s=typeof e;(s==="undefined"||s==="boolean")&&(e=null);var h=!1;if(e===null)h=!0;else switch(s){case"bigint":case"string":case"number":h=!0;break;case"object":switch(e.$$typeof){case y:case d:h=!0;break;case g:return h=e._init,v(h(e._payload),o,c,n,r)}}if(h)return r=r(e),h=n===""?"."+z(e,0):n,P(r)?(c="",h!=null&&(c=h.replace(U,"$&/")+"/"),v(r,o,c,"",function(e1){return e1})):r!=null&&(q(r)&&(r=G(r,c+(r.key==null||e&&e.key===r.key?"":(""+r.key).replace(U,"$&/")+"/")+h)),o.push(r)),1;h=0;var l=n===""?".":n+":";if(P(e))for(var u=0;u<e.length;u++)n=e[u],s=l+z(n,u),h+=v(n,o,c,s,r);else if(u=W(e),typeof u=="function")for(e=u.call(e),u=0;!(n=e.next()).done;)n=n.value,s=l+z(n,u++),h+=v(n,o,c,s,r);else if(s==="object"){if(typeof e.then=="function")return v(Q(e),o,c,n,r);throw o=String(e),Error("Objects are not valid as a React child (found: "+(o==="[object Object]"?"object with keys {"+Object.keys(e).join(", ")+"}":o)+"). If you meant to render a collection of children, use an array instead.")}return h}function w(e,o,c){if(e==null)return e;var n=[],r=0;return v(e,n,"","",function(s){return o.call(c,s,r++)}),n}function X(e){if(e._status===-1){var o=e._result;o=o(),o.then(function(c){(e._status===0||e._status===-1)&&(e._status=1,e._result=c)},function(c){(e._status===0||e._status===-1)&&(e._status=2,e._result=c)}),e._status===-1&&(e._status=0,e._result=o)}if(e._status===1)return e._result.default;throw e._result}var I=typeof reportError=="function"?reportError:function(e){if(typeof window=="object"&&typeof window.ErrorEvent=="function"){var o=new window.ErrorEvent("error",{bubbles:!0,cancelable:!0,message:typeof e=="object"&&e!==null&&typeof e.message=="string"?String(e.message):String(e),error:e});if(!window.dispatchEvent(o))return}else if(typeof process=="object"&&typeof process.emit=="function"){process.emit("uncaughtException",e);return}console.error(e)},J={map:w,forEach:function(e,o,c){w(e,function(){o.apply(this,arguments)},c)},count:function(e){var o=0;return w(e,function(){o++}),o},toArray:function(e){return w(e,function(o){return o})||[]},only:function(e){if(!q(e))throw Error("React.Children.only expected to receive a single React element child.");return e}};return a.Activity=K,a.Children=J,a.Component=_,a.Fragment=p,a.Profiler=m,a.PureComponent=E,a.StrictMode=k,a.Suspense=N,a.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE=i,a.__COMPILER_RUNTIME={__proto__:null,c:function(e){return i.H.useMemoCache(e)}},a.cache=function(e){return function(){return e.apply(null,arguments)}},a.cacheSignal=function(){return null},a.cloneElement=function(e,o,c){if(e==null)throw Error("The argument must be a React element, but you passed "+e+".");var n=S({},e.props),r=e.key;if(o!=null)for(s in o.key!==void 0&&(r=""+o.key),o)!O.call(o,s)||s==="key"||s==="__self"||s==="__source"||s==="ref"&&o.ref===void 0||(n[s]=o[s]);var s=arguments.length-2;if(s===1)n.children=c;else if(1<s){for(var h=Array(s),l=0;l<s;l++)h[l]=arguments[l+2];n.children=h}return H(e.type,r,n)},a.createContext=function(e){return e={$$typeof:$,_currentValue:e,_currentValue2:e,_threadCount:0,Provider:null,Consumer:null},e.Provider=e,e.Consumer={$$typeof:f,_context:e},e},a.createElement=function(e,o,c){var n,r={},s=null;if(o!=null)for(n in o.key!==void 0&&(s=""+o.key),o)O.call(o,n)&&n!=="key"&&n!=="__self"&&n!=="__source"&&(r[n]=o[n]);var h=arguments.length-2;if(h===1)r.children=c;else if(1<h){for(var l=Array(h),u=0;u<h;u++)l[u]=arguments[u+2];r.children=l}if(e&&e.defaultProps)for(n in h=e.defaultProps,h)r[n]===void 0&&(r[n]=h[n]);return H(e,s,r)},a.createRef=function(){return{current:null}},a.forwardRef=function(e){return{$$typeof:x,render:e}},a.isValidElement=q,a.lazy=function(e){return{$$typeof:g,_payload:{_status:-1,_result:e},_init:X}},a.memo=function(e,o){return{$$typeof:C,type:e,compare:o===void 0?null:o}},a.startTransition=function(e){var o=i.T,c={};i.T=c;try{var n=e(),r=i.S;r!==null&&r(c,n),typeof n=="object"&&n!==null&&typeof n.then=="function"&&n.then(A,I)}catch(s){I(s)}finally{o!==null&&c.types!==null&&(o.types=c.types),i.T=o}},a.unstable_useCacheRefresh=function(){return i.H.useCacheRefresh()},a.use=function(e){return i.H.use(e)},a.useActionState=function(e,o,c){return i.H.useActionState(e,o,c)},a.useCallback=function(e,o){return i.H.useCallback(e,o)},a.useContext=function(e){return i.H.useContext(e)},a.useDebugValue=function(){},a.useDeferredValue=function(e,o){return i.H.useDeferredValue(e,o)},a.useEffect=function(e,o){return i.H.useEffect(e,o)},a.useEffectEvent=function(e){return i.H.useEffectEvent(e)},a.useId=function(){return i.H.useId()},a.useImperativeHandle=function(e,o,c){return i.H.useImperativeHandle(e,o,c)},a.useInsertionEffect=function(e,o){return i.H.useInsertionEffect(e,o)},a.useLayoutEffect=function(e,o){return i.H.useLayoutEffect(e,o)},a.useMemo=function(e,o){return i.H.useMemo(e,o)},a.useOptimistic=function(e,o){return i.H.useOptimistic(e,o)},a.useReducer=function(e,o,c){return i.H.useReducer(e,o,c)},a.useRef=function(e){return i.H.useRef(e)},a.useState=function(e){return i.H.useState(e)},a.useSyncExternalStore=function(e,o,c){return i.H.useSyncExternalStore(e,o,c)},a.useTransition=function(){return i.H.useTransition()},a.version="19.2.7",a}var D;function a1(){return D||(D=1,R.exports=o1()),R.exports}var M=a1();const De=t1(M);const n1=y=>y.replace(/([a-z0-9])([A-Z])/g,"$1-$2").toLowerCase(),c1=y=>y.replace(/^([A-Z])|[\s-_]+(\w)/g,(d,p,k)=>k?k.toUpperCase():p.toLowerCase()),B=y=>{const d=c1(y);return d.charAt(0).toUpperCase()+d.slice(1)},Z=(...y)=>y.filter((d,p,k)=>!!d&&d.trim()!==""&&k.indexOf(d)===p).join(" ").trim(),r1=y=>{for(const d in y)if(d.startsWith("aria-")||d==="role"||d==="title")return!0};var s1={xmlns:"http://www.w3.org/2000/svg",width:24,height:24,viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:2,strokeLinecap:"round",strokeLinejoin:"round"};const y1=M.forwardRef(({color:y="currentColor",size:d=24,strokeWidth:p=2,absoluteStrokeWidth:k,className:m="",children:f,iconNode:$,...x},N)=>M.createElement("svg",{ref:N,...s1,width:d,height:d,stroke:y,strokeWidth:k?Number(p)*24/Number(d):p,className:Z("lucide",m),...!f&&!r1(x)&&{"aria-hidden":"true"},...x},[...$.map(([C,g])=>M.createElement(C,g)),...Array.isArray(f)?f:[f]]));const t=(y,d)=>{const p=M.forwardRef(({className:k,...m},f)=>M.createElement(y1,{ref:f,iconNode:d,className:Z(`lucide-${n1(B(y))}`,`lucide-${y}`,k),...m}));return p.displayName=B(y),p};const i1=[["path",{d:"M22 12h-2.48a2 2 0 0 0-1.93 1.46l-2.35 8.36a.25.25 0 0 1-.48 0L9.24 2.18a.25.25 0 0 0-.48 0l-2.35 8.36A2 2 0 0 1 4.49 12H2",key:"169zse"}]],Be=t("activity",i1);const h1=[["path",{d:"M12 17V3",key:"1cwfxf"}],["path",{d:"m6 11 6 6 6-6",key:"12ii2o"}],["path",{d:"M19 21H5",key:"150jfl"}]],Ze=t("arrow-down-to-line",h1);const d1=[["path",{d:"M5 12h14",key:"1ays0h"}],["path",{d:"m12 5 7 7-7 7",key:"xquz4c"}]],Ke=t("arrow-right",d1);const u1=[["path",{d:"m18 9-6-6-6 6",key:"kcunyi"}],["path",{d:"M12 3v14",key:"7cf3v8"}],["path",{d:"M5 21h14",key:"11awu3"}]],We=t("arrow-up-from-line",u1);const p1=[["path",{d:"m5 12 7-7 7 7",key:"hav0vg"}],["path",{d:"M12 19V5",key:"x0mq9r"}]],Ge=t("arrow-up",p1);const k1=[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z",key:"3c2336"}],["path",{d:"m9 12 2 2 4-4",key:"dzmm74"}]],Fe=t("badge-check",k1);const l1=[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"m4.9 4.9 14.2 14.2",key:"1m5liu"}]],Qe=t("ban",l1);const f1=[["path",{d:"M10.268 21a2 2 0 0 0 3.464 0",key:"vwvbt9"}],["path",{d:"M3.262 15.326A1 1 0 0 0 4 17h16a1 1 0 0 0 .74-1.673C19.41 13.956 18 12.499 18 8A6 6 0 0 0 6 8c0 4.499-1.411 5.956-2.738 7.326",key:"11g9vi"}]],Xe=t("bell",f1);const _1=[["path",{d:"M12 7v14",key:"1akyts"}],["path",{d:"M3 18a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h5a4 4 0 0 1 4 4 4 4 0 0 1 4-4h5a1 1 0 0 1 1 1v13a1 1 0 0 1-1 1h-6a3 3 0 0 0-3 3 3 3 0 0 0-3-3z",key:"ruj8y"}]],Je=t("book-open",_1);const v1=[["path",{d:"M12 8V4H8",key:"hb8ula"}],["rect",{width:"16",height:"12",x:"4",y:"8",rx:"2",key:"enze0r"}],["path",{d:"M2 14h2",key:"vft8re"}],["path",{d:"M20 14h2",key:"4cs60a"}],["path",{d:"M15 13v2",key:"1xurst"}],["path",{d:"M9 13v2",key:"rq6x2g"}]],et=t("bot",v1);const M1=[["path",{d:"m8 2 1.88 1.88",key:"fmnt4t"}],["path",{d:"M14.12 3.88 16 2",key:"qol33r"}],["path",{d:"M9 7.13v-1a3.003 3.003 0 1 1 6 0v1",key:"d7y7pr"}],["path",{d:"M12 20c-3.3 0-6-2.7-6-6v-3a4 4 0 0 1 4-4h4a4 4 0 0 1 4 4v3c0 3.3-2.7 6-6 6",key:"xs1cw7"}],["path",{d:"M12 20v-9",key:"1qisl0"}],["path",{d:"M6.53 9C4.6 8.8 3 7.1 3 5",key:"32zzws"}],["path",{d:"M6 13H2",key:"82j7cp"}],["path",{d:"M3 21c0-2.1 1.7-3.9 3.8-4",key:"4p0ekp"}],["path",{d:"M20.97 5c0 2.1-1.6 3.8-3.5 4",key:"18gb23"}],["path",{d:"M22 13h-4",key:"1jl80f"}],["path",{d:"M17.2 17c2.1.1 3.8 1.9 3.8 4",key:"k3fwyw"}]],tt=t("bug",M1);const m1=[["path",{d:"M14.5 4h-5L7 7H4a2 2 0 0 0-2 2v9a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2h-3l-2.5-3z",key:"1tc9qg"}],["circle",{cx:"12",cy:"13",r:"3",key:"1vg3eu"}]],ot=t("camera",m1);const x1=[["path",{d:"M20 6 9 17l-5-5",key:"1gmf2c"}]],at=t("check",x1);const g1=[["path",{d:"m6 9 6 6 6-6",key:"qrunsl"}]],nt=t("chevron-down",g1);const w1=[["path",{d:"m15 18-6-6 6-6",key:"1wnfg3"}]],ct=t("chevron-left",w1);const $1=[["path",{d:"m9 18 6-6-6-6",key:"mthhwq"}]],rt=t("chevron-right",$1);const N1=[["path",{d:"m18 15-6-6-6 6",key:"153udz"}]],st=t("chevron-up",N1);const C1=[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["line",{x1:"12",x2:"12",y1:"8",y2:"12",key:"1pkeuh"}],["line",{x1:"12",x2:"12.01",y1:"16",y2:"16",key:"4dfq90"}]],yt=t("circle-alert",C1);const E1=[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"m9 12 2 2 4-4",key:"dzmm74"}]],it=t("circle-check",E1);const b1=[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3",key:"1u773s"}],["path",{d:"M12 17h.01",key:"p32p05"}]],ht=t("circle-question-mark",b1);const A1=[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"m15 9-6 6",key:"1uzhvr"}],["path",{d:"m9 9 6 6",key:"z0biqf"}]],dt=t("circle-x",A1);const H1=[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}]],ut=t("circle",H1);const q1=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M11 9h4a2 2 0 0 0 2-2V3",key:"1ve2rv"}],["circle",{cx:"9",cy:"9",r:"2",key:"af1f0g"}],["path",{d:"M7 21v-4a2 2 0 0 1 2-2h4",key:"1fwkro"}],["circle",{cx:"15",cy:"15",r:"2",key:"3i40o0"}]],pt=t("circuit-board",q1);const z1=[["rect",{width:"8",height:"4",x:"8",y:"2",rx:"1",ry:"1",key:"tgr4d6"}],["path",{d:"M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2",key:"116196"}]],kt=t("clipboard",z1);const R1=[["path",{d:"M12 6v6h4",key:"135r8i"}],["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}]],lt=t("clock-3",R1);const T1=[["path",{d:"M12 20v2",key:"1lh1kg"}],["path",{d:"M12 2v2",key:"tus03m"}],["path",{d:"M17 20v2",key:"1rnc9c"}],["path",{d:"M17 2v2",key:"11trls"}],["path",{d:"M2 12h2",key:"1t8f8n"}],["path",{d:"M2 17h2",key:"7oei6x"}],["path",{d:"M2 7h2",key:"asdhe0"}],["path",{d:"M20 12h2",key:"1q8mjw"}],["path",{d:"M20 17h2",key:"1fpfkl"}],["path",{d:"M20 7h2",key:"1o8tra"}],["path",{d:"M7 20v2",key:"4gnj0m"}],["path",{d:"M7 2v2",key:"1i4yhu"}],["rect",{x:"4",y:"4",width:"16",height:"16",rx:"2",key:"1vbyd7"}],["rect",{x:"8",y:"8",width:"8",height:"8",rx:"1",key:"z9xiuo"}]],ft=t("cpu",T1);const j1=[["rect",{width:"20",height:"14",x:"2",y:"5",rx:"2",key:"ynyp8z"}],["line",{x1:"2",x2:"22",y1:"10",y2:"10",key:"1b3vmo"}]],_t=t("credit-card",j1);const S1=[["ellipse",{cx:"12",cy:"5",rx:"9",ry:"3",key:"msslwz"}],["path",{d:"M3 5V19A9 3 0 0 0 21 19V5",key:"1wlel7"}],["path",{d:"M3 12A9 3 0 0 0 21 12",key:"mv7ke4"}]],vt=t("database",S1);const L1=[["path",{d:"M12 15V3",key:"m9g1x1"}],["path",{d:"M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4",key:"ih7n3h"}],["path",{d:"m7 10 5 5 5-5",key:"brsn70"}]],Mt=t("download",L1);const V1=[["path",{d:"M21.54 15H17a2 2 0 0 0-2 2v4.54",key:"1djwo0"}],["path",{d:"M7 3.34V5a3 3 0 0 0 3 3a2 2 0 0 1 2 2c0 1.1.9 2 2 2a2 2 0 0 0 2-2c0-1.1.9-2 2-2h3.17",key:"1tzkfa"}],["path",{d:"M11 21.95V18a2 2 0 0 0-2-2a2 2 0 0 1-2-2v-1a2 2 0 0 0-2-2H2.05",key:"14pb5j"}],["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}]],mt=t("earth",V1);const P1=[["path",{d:"M15 3h6v6",key:"1q9fwt"}],["path",{d:"M10 14 21 3",key:"gplh6r"}],["path",{d:"M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6",key:"a6xqqp"}]],xt=t("external-link",P1);const O1=[["path",{d:"M10.733 5.076a10.744 10.744 0 0 1 11.205 6.575 1 1 0 0 1 0 .696 10.747 10.747 0 0 1-1.444 2.49",key:"ct8e1f"}],["path",{d:"M14.084 14.158a3 3 0 0 1-4.242-4.242",key:"151rxh"}],["path",{d:"M17.479 17.499a10.75 10.75 0 0 1-15.417-5.151 1 1 0 0 1 0-.696 10.75 10.75 0 0 1 4.446-5.143",key:"13bj9a"}],["path",{d:"m2 2 20 20",key:"1ooewy"}]],gt=t("eye-off",O1);const U1=[["path",{d:"M17.5 22h.5a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v3",key:"rslqgf"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4",key:"tnqrlb"}],["path",{d:"M2 19a2 2 0 1 1 4 0v1a2 2 0 1 1-4 0v-4a6 6 0 0 1 12 0v4a2 2 0 1 1-4 0v-1a2 2 0 1 1 4 0",key:"9f7x3i"}]],wt=t("file-audio",U1);const I1=[["path",{d:"M14 2v4a2 2 0 0 0 2 2h4",key:"tnqrlb"}],["path",{d:"m2.305 15.53.923-.382",key:"yfp9st"}],["path",{d:"m3.228 12.852-.924-.383",key:"bckynb"}],["path",{d:"M4.677 21.5a2 2 0 0 0 1.313.5H18a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v2.5",key:"1yo3oz"}],["path",{d:"m4.852 11.228-.383-.923",key:"1j88i9"}],["path",{d:"m4.852 16.772-.383.924",key:"sag1dv"}],["path",{d:"m7.148 11.228.383-.923",key:"rj39hk"}],["path",{d:"m7.53 17.696-.382-.924",key:"1uu5cs"}],["path",{d:"m8.772 12.852.923-.383",key:"13811l"}],["path",{d:"m8.772 15.148.923.383",key:"z1a5l0"}],["circle",{cx:"6",cy:"14",r:"3",key:"a1xfv6"}]],$t=t("file-cog",I1);const Y1=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z",key:"1rqfz7"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4",key:"tnqrlb"}],["path",{d:"M12 12v6",key:"3ahymv"}],["path",{d:"m15 15-3-3-3 3",key:"15xj92"}]],Nt=t("file-up",Y1);const D1=[["path",{d:"m6 14 1.5-2.9A2 2 0 0 1 9.24 10H20a2 2 0 0 1 1.94 2.5l-1.54 6a2 2 0 0 1-1.95 1.5H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H18a2 2 0 0 1 2 2v2",key:"usdka0"}]],Ct=t("folder-open",D1);const B1=[["path",{d:"M9 20H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H20a2 2 0 0 1 2 2v.5",key:"1dkoa9"}],["path",{d:"M12 10v4h4",key:"1czhmt"}],["path",{d:"m12 14 1.535-1.605a5 5 0 0 1 8 1.5",key:"lvuxfi"}],["path",{d:"M22 22v-4h-4",key:"1ewp4q"}],["path",{d:"m22 18-1.535 1.605a5 5 0 0 1-8-1.5",key:"14ync0"}]],Et=t("folder-sync",B1);const Z1=[["path",{d:"M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z",key:"1kt360"}],["path",{d:"M12 10v6",key:"1bos4e"}],["path",{d:"m9 13 3-3 3 3",key:"1pxg3c"}]],bt=t("folder-up",Z1);const K1=[["path",{d:"M10 20a1 1 0 0 0 .553.895l2 1A1 1 0 0 0 14 21v-7a2 2 0 0 1 .517-1.341L21.74 4.67A1 1 0 0 0 21 3H3a1 1 0 0 0-.742 1.67l7.225 7.989A2 2 0 0 1 10 14z",key:"sc7q7i"}]],At=t("funnel",K1);const W1=[["line",{x1:"22",x2:"2",y1:"12",y2:"12",key:"1y58io"}],["path",{d:"M5.45 5.11 2 12v6a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-6l-3.45-6.89A2 2 0 0 0 16.76 4H7.24a2 2 0 0 0-1.79 1.11z",key:"oot6mr"}],["line",{x1:"6",x2:"6.01",y1:"16",y2:"16",key:"sgf278"}],["line",{x1:"10",x2:"10.01",y1:"16",y2:"16",key:"1l4acy"}]],Ht=t("hard-drive",W1);const G1=[["path",{d:"M3 12a9 9 0 1 0 9-9 9.75 9.75 0 0 0-6.74 2.74L3 8",key:"1357e3"}],["path",{d:"M3 3v5h5",key:"1xhq8a"}],["path",{d:"M12 7v5l4 2",key:"1fdv2h"}]],qt=t("history",G1);const F1=[["path",{d:"M2.586 17.414A2 2 0 0 0 2 18.828V21a1 1 0 0 0 1 1h3a1 1 0 0 0 1-1v-1a1 1 0 0 1 1-1h1a1 1 0 0 0 1-1v-1a1 1 0 0 1 1-1h.172a2 2 0 0 0 1.414-.586l.814-.814a6.5 6.5 0 1 0-4-4z",key:"1s6t7t"}],["circle",{cx:"16.5",cy:"7.5",r:".5",fill:"currentColor",key:"w0ekpg"}]],zt=t("key-round",F1);const Q1=[["rect",{width:"7",height:"7",x:"3",y:"3",rx:"1",key:"1g98yp"}],["rect",{width:"7",height:"7",x:"14",y:"3",rx:"1",key:"6d4xhi"}],["rect",{width:"7",height:"7",x:"14",y:"14",rx:"1",key:"nxv5o0"}],["rect",{width:"7",height:"7",x:"3",y:"14",rx:"1",key:"1bb6yr"}]],Rt=t("layout-grid",Q1);const X1=[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"m4.93 4.93 4.24 4.24",key:"1ymg45"}],["path",{d:"m14.83 9.17 4.24-4.24",key:"1cb5xl"}],["path",{d:"m14.83 14.83 4.24 4.24",key:"q42g0n"}],["path",{d:"m9.17 14.83-4.24 4.24",key:"bqpfvv"}],["circle",{cx:"12",cy:"12",r:"4",key:"4exip2"}]],Tt=t("life-buoy",X1);const J1=[["path",{d:"M15 14c.2-1 .7-1.7 1.5-2.5 1-.9 1.5-2.2 1.5-3.5A6 6 0 0 0 6 8c0 1 .2 2.2 1.5 3.5.7.7 1.3 1.5 1.5 2.5",key:"1gvzjb"}],["path",{d:"M9 18h6",key:"x1upvd"}],["path",{d:"M10 22h4",key:"ceow96"}]],jt=t("lightbulb",J1);const ee=[["path",{d:"M21 12a9 9 0 1 1-6.219-8.56",key:"13zald"}]],St=t("loader-circle",ee);const te=[["circle",{cx:"12",cy:"16",r:"1",key:"1au0dj"}],["rect",{x:"3",y:"10",width:"18",height:"12",rx:"2",key:"6s8ecr"}],["path",{d:"M7 10V7a5 5 0 0 1 10 0v3",key:"1pqi11"}]],Lt=t("lock-keyhole",te);const oe=[["path",{d:"m10 17 5-5-5-5",key:"1bsop3"}],["path",{d:"M15 12H3",key:"6jk70r"}],["path",{d:"M15 3h4a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-4",key:"u53s6r"}]],Vt=t("log-in",oe);const ae=[["rect",{width:"18",height:"11",x:"3",y:"11",rx:"2",ry:"2",key:"1w4ew1"}],["path",{d:"M7 11V7a5 5 0 0 1 10 0v4",key:"fwvmzm"}]],Pt=t("lock",ae);const ne=[["path",{d:"m16 17 5-5-5-5",key:"1bji2h"}],["path",{d:"M21 12H9",key:"dn1m92"}],["path",{d:"M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4",key:"1uf3rs"}]],Ot=t("log-out",ne);const ce=[["path",{d:"M11 6a13 13 0 0 0 8.4-2.8A1 1 0 0 1 21 4v12a1 1 0 0 1-1.6.8A13 13 0 0 0 11 14H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2z",key:"q8bfy3"}],["path",{d:"M6 14a12 12 0 0 0 2.4 7.2 2 2 0 0 0 3.2-2.4A8 8 0 0 1 10 14",key:"1853fq"}],["path",{d:"M8 6v8",key:"15ugcq"}]],Ut=t("megaphone",ce);const re=[["path",{d:"M6 19v-3",key:"1nvgqn"}],["path",{d:"M10 19v-3",key:"iu8nkm"}],["path",{d:"M14 19v-3",key:"kcehxu"}],["path",{d:"M18 19v-3",key:"1vh91z"}],["path",{d:"M8 11V9",key:"63erz4"}],["path",{d:"M16 11V9",key:"fru6f3"}],["path",{d:"M12 11V9",key:"ha00sb"}],["path",{d:"M2 15h20",key:"16ne18"}],["path",{d:"M2 7a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v1.1a2 2 0 0 0 0 3.837V17a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-5.1a2 2 0 0 0 0-3.837Z",key:"lhddv3"}]],It=t("memory-stick",re);const se=[["path",{d:"M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z",key:"1lielz"}],["path",{d:"M13 8H7",key:"14i4kc"}],["path",{d:"M17 12H7",key:"16if0g"}]],Yt=t("message-square-text",se);const ye=[["path",{d:"M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z",key:"1lielz"}]],Dt=t("message-square",ye);const ie=[["rect",{width:"20",height:"14",x:"2",y:"3",rx:"2",key:"48i651"}],["line",{x1:"8",x2:"16",y1:"21",y2:"21",key:"1svkeh"}],["line",{x1:"12",x2:"12",y1:"17",y2:"21",key:"vw1qmm"}]],Bt=t("monitor",ie);const he=[["path",{d:"M12 3a6 6 0 0 0 9 9 9 9 0 1 1-9-9Z",key:"a7tn18"}]],Zt=t("moon",he);const de=[["path",{d:"M4.037 4.688a.495.495 0 0 1 .651-.651l16 6.5a.5.5 0 0 1-.063.947l-6.124 1.58a2 2 0 0 0-1.438 1.435l-1.579 6.126a.5.5 0 0 1-.947.063z",key:"edeuup"}]],Kt=t("mouse-pointer-2",de);const ue=[["rect",{x:"16",y:"16",width:"6",height:"6",rx:"1",key:"4q2zg0"}],["rect",{x:"2",y:"16",width:"6",height:"6",rx:"1",key:"8cvhb9"}],["rect",{x:"9",y:"2",width:"6",height:"6",rx:"1",key:"1egb70"}],["path",{d:"M5 16v-3a1 1 0 0 1 1-1h12a1 1 0 0 1 1 1v3",key:"1jsf9p"}],["path",{d:"M12 12V8",key:"2874zd"}]],Wt=t("network",ue);const pe=[["path",{d:"M21.174 6.812a1 1 0 0 0-3.986-3.987L3.842 16.174a2 2 0 0 0-.5.83l-1.321 4.352a.5.5 0 0 0 .623.622l4.353-1.32a2 2 0 0 0 .83-.497z",key:"1a8usu"}],["path",{d:"m15 5 4 4",key:"1mk7zo"}]],Gt=t("pencil",pe);const ke=[["path",{d:"M12 17v5",key:"bb1du9"}],["path",{d:"M9 10.76a2 2 0 0 1-1.11 1.79l-1.78.9A2 2 0 0 0 5 15.24V16a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-.76a2 2 0 0 0-1.11-1.79l-1.78-.9A2 2 0 0 1 15 10.76V7a1 1 0 0 1 1-1 2 2 0 0 0 0-4H8a2 2 0 0 0 0 4 1 1 0 0 1 1 1z",key:"1nkz8b"}]],Ft=t("pin",ke);const le=[["path",{d:"M5 12h14",key:"1ays0h"}],["path",{d:"M12 5v14",key:"s699le"}]],Qt=t("plus",le);const fe=[["path",{d:"M12 2v10",key:"mnfbl"}],["path",{d:"M18.4 6.6a9 9 0 1 1-12.77.04",key:"obofu9"}]],Xt=t("power",fe);const _e=[["path",{d:"M3 12a9 9 0 0 1 9-9 9.75 9.75 0 0 1 6.74 2.74L21 8",key:"v9h5vc"}],["path",{d:"M21 3v5h-5",key:"1q7to0"}],["path",{d:"M21 12a9 9 0 0 1-9 9 9.75 9.75 0 0 1-6.74-2.74L3 16",key:"3uifl3"}],["path",{d:"M8 16H3v5",key:"1cv678"}]],Jt=t("refresh-cw",_e);const ve=[["path",{d:"M3 12a9 9 0 1 0 9-9 9.75 9.75 0 0 0-6.74 2.74L3 8",key:"1357e3"}],["path",{d:"M3 3v5h5",key:"1xhq8a"}]],e2=t("rotate-ccw",ve);const Me=[["path",{d:"M15.2 3a2 2 0 0 1 1.4.6l3.8 3.8a2 2 0 0 1 .6 1.4V19a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2z",key:"1c8476"}],["path",{d:"M17 21v-7a1 1 0 0 0-1-1H8a1 1 0 0 0-1 1v7",key:"1ydtos"}],["path",{d:"M7 3v4a1 1 0 0 0 1 1h7",key:"t51u73"}]],t2=t("save",Me);const me=[["path",{d:"m21 21-4.34-4.34",key:"14j7rj"}],["circle",{cx:"11",cy:"11",r:"8",key:"4ej97u"}]],o2=t("search",me);const xe=[["path",{d:"M14.536 21.686a.5.5 0 0 0 .937-.024l6.5-19a.496.496 0 0 0-.635-.635l-19 6.5a.5.5 0 0 0-.024.937l7.93 3.18a2 2 0 0 1 1.112 1.11z",key:"1ffxy3"}],["path",{d:"m21.854 2.147-10.94 10.939",key:"12cjpa"}]],a2=t("send",xe);const ge=[["path",{d:"m10.852 14.772-.383.923",key:"11vil6"}],["path",{d:"M13.148 14.772a3 3 0 1 0-2.296-5.544l-.383-.923",key:"1v3clb"}],["path",{d:"m13.148 9.228.383-.923",key:"t2zzyc"}],["path",{d:"m13.53 15.696-.382-.924a3 3 0 1 1-2.296-5.544",key:"1bxfiv"}],["path",{d:"m14.772 10.852.923-.383",key:"k9m8cz"}],["path",{d:"m14.772 13.148.923.383",key:"1xvhww"}],["path",{d:"M4.5 10H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2h-.5",key:"tn8das"}],["path",{d:"M4.5 14H4a2 2 0 0 0-2 2v4a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-4a2 2 0 0 0-2-2h-.5",key:"1g2pve"}],["path",{d:"M6 18h.01",key:"uhywen"}],["path",{d:"M6 6h.01",key:"1utrut"}],["path",{d:"m9.228 10.852-.923-.383",key:"1wtb30"}],["path",{d:"m9.228 13.148-.923.383",key:"1a830x"}]],n2=t("server-cog",ge);const we=[["rect",{width:"20",height:"8",x:"2",y:"2",rx:"2",ry:"2",key:"ngkwjq"}],["rect",{width:"20",height:"8",x:"2",y:"14",rx:"2",ry:"2",key:"iecqi9"}],["line",{x1:"6",x2:"6.01",y1:"6",y2:"6",key:"16zg32"}],["line",{x1:"6",x2:"6.01",y1:"18",y2:"18",key:"nzw8ys"}]],c2=t("server",we);const $e=[["path",{d:"M14 17H5",key:"gfn3mx"}],["path",{d:"M19 7h-9",key:"6i9tg"}],["circle",{cx:"17",cy:"17",r:"3",key:"18b49y"}],["circle",{cx:"7",cy:"7",r:"3",key:"dfmy0x"}]],r2=t("settings-2",$e);const Ne=[["path",{d:"M12.22 2h-.44a2 2 0 0 0-2 2v.18a2 2 0 0 1-1 1.73l-.43.25a2 2 0 0 1-2 0l-.15-.08a2 2 0 0 0-2.73.73l-.22.38a2 2 0 0 0 .73 2.73l.15.1a2 2 0 0 1 1 1.72v.51a2 2 0 0 1-1 1.74l-.15.09a2 2 0 0 0-.73 2.73l.22.38a2 2 0 0 0 2.73.73l.15-.08a2 2 0 0 1 2 0l.43.25a2 2 0 0 1 1 1.73V20a2 2 0 0 0 2 2h.44a2 2 0 0 0 2-2v-.18a2 2 0 0 1 1-1.73l.43-.25a2 2 0 0 1 2 0l.15.08a2 2 0 0 0 2.73-.73l.22-.39a2 2 0 0 0-.73-2.73l-.15-.08a2 2 0 0 1-1-1.74v-.5a2 2 0 0 1 1-1.74l.15-.09a2 2 0 0 0 .73-2.73l-.22-.38a2 2 0 0 0-2.73-.73l-.15.08a2 2 0 0 1-2 0l-.43-.25a2 2 0 0 1-1-1.73V4a2 2 0 0 0-2-2z",key:"1qme2f"}],["circle",{cx:"12",cy:"12",r:"3",key:"1v7zrd"}]],s2=t("settings",Ne);const Ce=[["circle",{cx:"18",cy:"5",r:"3",key:"gq8acd"}],["circle",{cx:"6",cy:"12",r:"3",key:"w7nqdw"}],["circle",{cx:"18",cy:"19",r:"3",key:"1xt0gg"}],["line",{x1:"8.59",x2:"15.42",y1:"13.51",y2:"17.49",key:"47mynk"}],["line",{x1:"15.41",x2:"8.59",y1:"6.51",y2:"10.49",key:"1n3mei"}]],y2=t("share-2",Ce);const Ee=[["path",{d:"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z",key:"oel41y"}],["path",{d:"M12 8v4",key:"1got3b"}],["path",{d:"M12 16h.01",key:"1drbdi"}]],i2=t("shield-alert",Ee);const be=[["path",{d:"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z",key:"oel41y"}],["path",{d:"m9 12 2 2 4-4",key:"dzmm74"}]],h2=t("shield-check",be);const Ae=[["path",{d:"M9.937 15.5A2 2 0 0 0 8.5 14.063l-6.135-1.582a.5.5 0 0 1 0-.962L8.5 9.936A2 2 0 0 0 9.937 8.5l1.582-6.135a.5.5 0 0 1 .963 0L14.063 8.5A2 2 0 0 0 15.5 9.937l6.135 1.581a.5.5 0 0 1 0 .964L15.5 14.063a2 2 0 0 0-1.437 1.437l-1.582 6.135a.5.5 0 0 1-.963 0z",key:"4pj2yx"}],["path",{d:"M20 3v4",key:"1olli1"}],["path",{d:"M22 5h-4",key:"1gvqau"}],["path",{d:"M4 17v2",key:"vumght"}],["path",{d:"M5 18H3",key:"zchphs"}]],d2=t("sparkles",Ae);const He=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}]],u2=t("square",He);const qe=[["path",{d:"M11.525 2.295a.53.53 0 0 1 .95 0l2.31 4.679a2.123 2.123 0 0 0 1.595 1.16l5.166.756a.53.53 0 0 1 .294.904l-3.736 3.638a2.123 2.123 0 0 0-.611 1.878l.882 5.14a.53.53 0 0 1-.771.56l-4.618-2.428a2.122 2.122 0 0 0-1.973 0L6.396 21.01a.53.53 0 0 1-.77-.56l.881-5.139a2.122 2.122 0 0 0-.611-1.879L2.16 9.795a.53.53 0 0 1 .294-.906l5.165-.755a2.122 2.122 0 0 0 1.597-1.16z",key:"r04s7s"}]],p2=t("star",qe);const ze=[["path",{d:"M11 2v2",key:"1539x4"}],["path",{d:"M5 2v2",key:"1yf1q8"}],["path",{d:"M5 3H4a2 2 0 0 0-2 2v4a6 6 0 0 0 12 0V5a2 2 0 0 0-2-2h-1",key:"rb5t3r"}],["path",{d:"M8 15a6 6 0 0 0 12 0v-3",key:"x18d4x"}],["circle",{cx:"20",cy:"10",r:"2",key:"ts1r5v"}]],k2=t("stethoscope",ze);const Re=[["path",{d:"M12 19h8",key:"baeox8"}],["path",{d:"m4 17 6-6-6-6",key:"1yngyt"}]],l2=t("terminal",Re);const Te=[["path",{d:"M21 7 6.82 21.18a2.83 2.83 0 0 1-3.99-.01a2.83 2.83 0 0 1 0-4L17 3",key:"1ub6xw"}],["path",{d:"m16 2 6 6",key:"1gw87d"}],["path",{d:"M12 16H4",key:"1cjfip"}]],f2=t("test-tube-diagonal",Te);const je=[["path",{d:"M7 10v12",key:"1qc93n"}],["path",{d:"M15 5.88 14 10h5.83a2 2 0 0 1 1.92 2.56l-2.33 8A2 2 0 0 1 17.5 22H4a2 2 0 0 1-2-2v-8a2 2 0 0 1 2-2h2.76a2 2 0 0 0 1.79-1.11L12 2a3.13 3.13 0 0 1 3 3.88Z",key:"emmmcr"}]],_2=t("thumbs-up",je);const Se=[["line",{x1:"10",x2:"14",y1:"2",y2:"2",key:"14vaq8"}],["line",{x1:"12",x2:"15",y1:"14",y2:"11",key:"17fdiu"}],["circle",{cx:"12",cy:"14",r:"8",key:"1e1u0o"}]],v2=t("timer",Se);const Le=[["path",{d:"M3 6h18",key:"d0wm0j"}],["path",{d:"M19 6v14c0 1-1 2-2 2H7c-1 0-2-1-2-2V6",key:"4alrt4"}],["path",{d:"M8 6V4c0-1 1-2 2-2h4c1 0 2 1 2 2v2",key:"v07s0e"}],["line",{x1:"10",x2:"10",y1:"11",y2:"17",key:"1uufr5"}],["line",{x1:"14",x2:"14",y1:"11",y2:"17",key:"xtxkd"}]],M2=t("trash-2",Le);const Ve=[["path",{d:"m21.73 18-8-14a2 2 0 0 0-3.48 0l-8 14A2 2 0 0 0 4 21h16a2 2 0 0 0 1.73-3",key:"wmoenq"}],["path",{d:"M12 9v4",key:"juzpu7"}],["path",{d:"M12 17h.01",key:"p32p05"}]],m2=t("triangle-alert",Ve);const Pe=[["circle",{cx:"10",cy:"7",r:"1",key:"dypaad"}],["circle",{cx:"4",cy:"20",r:"1",key:"22iqad"}],["path",{d:"M4.7 19.3 19 5",key:"1enqfc"}],["path",{d:"m21 3-3 1 2 2Z",key:"d3ov82"}],["path",{d:"M9.26 7.68 5 12l2 5",key:"1esawj"}],["path",{d:"m10 14 5 2 3.5-3.5",key:"v8oal5"}],["path",{d:"m18 12 1-1 1 1-1 1Z",key:"1bh22v"}]],x2=t("usb",Pe);const Oe=[["path",{d:"M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2",key:"1yyitq"}],["path",{d:"M16 3.128a4 4 0 0 1 0 7.744",key:"16gr8j"}],["path",{d:"M22 21v-2a4 4 0 0 0-3-3.87",key:"kshegd"}],["circle",{cx:"9",cy:"7",r:"4",key:"nufk8"}]],g2=t("users",Oe);const Ue=[["path",{d:"M11 4.702a.705.705 0 0 0-1.203-.498L6.413 7.587A1.4 1.4 0 0 1 5.416 8H3a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h2.416a1.4 1.4 0 0 1 .997.413l3.383 3.384A.705.705 0 0 0 11 19.298z",key:"uqj9uw"}],["path",{d:"M16 9a5 5 0 0 1 0 6",key:"1q6k2b"}],["path",{d:"M19.364 18.364a9 9 0 0 0 0-12.728",key:"ijwkga"}]],w2=t("volume-2",Ue);const Ie=[["path",{d:"M12 20h.01",key:"zekei9"}],["path",{d:"M2 8.82a15 15 0 0 1 20 0",key:"dnpr2z"}],["path",{d:"M5 12.859a10 10 0 0 1 14 0",key:"1x1e6c"}],["path",{d:"M8.5 16.429a5 5 0 0 1 7 0",key:"1bycff"}]],$2=t("wifi",Ie);const Ye=[["path",{d:"M18 6 6 18",key:"1bl5f8"}],["path",{d:"m6 6 12 12",key:"d8bk6v"}]],N2=t("x",Ye);export{Wt as $,Ge as A,Xe as B,at as C,Mt as D,gt as E,At as F,wt as G,Ht as H,d2 as I,r2 as J,zt as K,Lt as L,Dt as M,f2 as N,Pt as O,Qt as P,et as Q,Jt as R,h2 as S,_2 as T,M2 as U,e2 as V,$2 as W,N2 as X,t2 as Y,De as Z,x2 as _,M as a,Nt as a0,bt as a1,St as a2,yt as a3,rt as a4,i2 as a5,g2 as a6,Et as a7,Yt as a8,ut as a9,Zt as aA,Xt as aB,st as aa,nt as ab,Qe as ac,o2 as ad,p2 as ae,m2 as af,Tt as ag,$t as ah,n2 as ai,xt as aj,y2 as ak,ot as al,u2 as am,qt as an,v2 as ao,k2 as ap,Rt as aq,Kt as ar,l2 as as,Ke as at,mt as au,vt as av,kt as aw,Fe as ax,w2 as ay,ct as az,a2 as b,Gt as c,Ft as d,it as e,ht as f,tt as g,jt as h,Ut as i,c2 as j,Bt as k,Je as l,_t as m,s2 as n,Vt as o,Ot as p,Be as q,a1 as r,dt as s,lt as t,ft as u,It as v,pt as w,Ze as x,We as y,Ct as z};
1
+ function t1(y){return y&&y.__esModule&&Object.prototype.hasOwnProperty.call(y,"default")?y.default:y}var R={exports:{}},a={};var Y;function o1(){if(Y)return a;Y=1;var y=Symbol.for("react.transitional.element"),d=Symbol.for("react.portal"),p=Symbol.for("react.fragment"),k=Symbol.for("react.strict_mode"),m=Symbol.for("react.profiler"),f=Symbol.for("react.consumer"),$=Symbol.for("react.context"),x=Symbol.for("react.forward_ref"),N=Symbol.for("react.suspense"),C=Symbol.for("react.memo"),g=Symbol.for("react.lazy"),K=Symbol.for("react.activity"),T=Symbol.iterator;function W(e){return e===null||typeof e!="object"?null:(e=T&&e[T]||e["@@iterator"],typeof e=="function"?e:null)}var j={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},S=Object.assign,L={};function _(e,o,c){this.props=e,this.context=o,this.refs=L,this.updater=c||j}_.prototype.isReactComponent={},_.prototype.setState=function(e,o){if(typeof e!="object"&&typeof e!="function"&&e!=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,e,o,"setState")},_.prototype.forceUpdate=function(e){this.updater.enqueueForceUpdate(this,e,"forceUpdate")};function V(){}V.prototype=_.prototype;function E(e,o,c){this.props=e,this.context=o,this.refs=L,this.updater=c||j}var b=E.prototype=new V;b.constructor=E,S(b,_.prototype),b.isPureReactComponent=!0;var P=Array.isArray;function A(){}var i={H:null,A:null,T:null,S:null},O=Object.prototype.hasOwnProperty;function H(e,o,c){var n=c.ref;return{$$typeof:y,type:e,key:o,ref:n!==void 0?n:null,props:c}}function G(e,o){return H(e.type,o,e.props)}function q(e){return typeof e=="object"&&e!==null&&e.$$typeof===y}function F(e){var o={"=":"=0",":":"=2"};return"$"+e.replace(/[=:]/g,function(c){return o[c]})}var U=/\/+/g;function z(e,o){return typeof e=="object"&&e!==null&&e.key!=null?F(""+e.key):o.toString(36)}function Q(e){switch(e.status){case"fulfilled":return e.value;case"rejected":throw e.reason;default:switch(typeof e.status=="string"?e.then(A,A):(e.status="pending",e.then(function(o){e.status==="pending"&&(e.status="fulfilled",e.value=o)},function(o){e.status==="pending"&&(e.status="rejected",e.reason=o)})),e.status){case"fulfilled":return e.value;case"rejected":throw e.reason}}throw e}function v(e,o,c,n,r){var s=typeof e;(s==="undefined"||s==="boolean")&&(e=null);var h=!1;if(e===null)h=!0;else switch(s){case"bigint":case"string":case"number":h=!0;break;case"object":switch(e.$$typeof){case y:case d:h=!0;break;case g:return h=e._init,v(h(e._payload),o,c,n,r)}}if(h)return r=r(e),h=n===""?"."+z(e,0):n,P(r)?(c="",h!=null&&(c=h.replace(U,"$&/")+"/"),v(r,o,c,"",function(e1){return e1})):r!=null&&(q(r)&&(r=G(r,c+(r.key==null||e&&e.key===r.key?"":(""+r.key).replace(U,"$&/")+"/")+h)),o.push(r)),1;h=0;var l=n===""?".":n+":";if(P(e))for(var u=0;u<e.length;u++)n=e[u],s=l+z(n,u),h+=v(n,o,c,s,r);else if(u=W(e),typeof u=="function")for(e=u.call(e),u=0;!(n=e.next()).done;)n=n.value,s=l+z(n,u++),h+=v(n,o,c,s,r);else if(s==="object"){if(typeof e.then=="function")return v(Q(e),o,c,n,r);throw o=String(e),Error("Objects are not valid as a React child (found: "+(o==="[object Object]"?"object with keys {"+Object.keys(e).join(", ")+"}":o)+"). If you meant to render a collection of children, use an array instead.")}return h}function w(e,o,c){if(e==null)return e;var n=[],r=0;return v(e,n,"","",function(s){return o.call(c,s,r++)}),n}function X(e){if(e._status===-1){var o=e._result;o=o(),o.then(function(c){(e._status===0||e._status===-1)&&(e._status=1,e._result=c)},function(c){(e._status===0||e._status===-1)&&(e._status=2,e._result=c)}),e._status===-1&&(e._status=0,e._result=o)}if(e._status===1)return e._result.default;throw e._result}var I=typeof reportError=="function"?reportError:function(e){if(typeof window=="object"&&typeof window.ErrorEvent=="function"){var o=new window.ErrorEvent("error",{bubbles:!0,cancelable:!0,message:typeof e=="object"&&e!==null&&typeof e.message=="string"?String(e.message):String(e),error:e});if(!window.dispatchEvent(o))return}else if(typeof process=="object"&&typeof process.emit=="function"){process.emit("uncaughtException",e);return}console.error(e)},J={map:w,forEach:function(e,o,c){w(e,function(){o.apply(this,arguments)},c)},count:function(e){var o=0;return w(e,function(){o++}),o},toArray:function(e){return w(e,function(o){return o})||[]},only:function(e){if(!q(e))throw Error("React.Children.only expected to receive a single React element child.");return e}};return a.Activity=K,a.Children=J,a.Component=_,a.Fragment=p,a.Profiler=m,a.PureComponent=E,a.StrictMode=k,a.Suspense=N,a.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE=i,a.__COMPILER_RUNTIME={__proto__:null,c:function(e){return i.H.useMemoCache(e)}},a.cache=function(e){return function(){return e.apply(null,arguments)}},a.cacheSignal=function(){return null},a.cloneElement=function(e,o,c){if(e==null)throw Error("The argument must be a React element, but you passed "+e+".");var n=S({},e.props),r=e.key;if(o!=null)for(s in o.key!==void 0&&(r=""+o.key),o)!O.call(o,s)||s==="key"||s==="__self"||s==="__source"||s==="ref"&&o.ref===void 0||(n[s]=o[s]);var s=arguments.length-2;if(s===1)n.children=c;else if(1<s){for(var h=Array(s),l=0;l<s;l++)h[l]=arguments[l+2];n.children=h}return H(e.type,r,n)},a.createContext=function(e){return e={$$typeof:$,_currentValue:e,_currentValue2:e,_threadCount:0,Provider:null,Consumer:null},e.Provider=e,e.Consumer={$$typeof:f,_context:e},e},a.createElement=function(e,o,c){var n,r={},s=null;if(o!=null)for(n in o.key!==void 0&&(s=""+o.key),o)O.call(o,n)&&n!=="key"&&n!=="__self"&&n!=="__source"&&(r[n]=o[n]);var h=arguments.length-2;if(h===1)r.children=c;else if(1<h){for(var l=Array(h),u=0;u<h;u++)l[u]=arguments[u+2];r.children=l}if(e&&e.defaultProps)for(n in h=e.defaultProps,h)r[n]===void 0&&(r[n]=h[n]);return H(e,s,r)},a.createRef=function(){return{current:null}},a.forwardRef=function(e){return{$$typeof:x,render:e}},a.isValidElement=q,a.lazy=function(e){return{$$typeof:g,_payload:{_status:-1,_result:e},_init:X}},a.memo=function(e,o){return{$$typeof:C,type:e,compare:o===void 0?null:o}},a.startTransition=function(e){var o=i.T,c={};i.T=c;try{var n=e(),r=i.S;r!==null&&r(c,n),typeof n=="object"&&n!==null&&typeof n.then=="function"&&n.then(A,I)}catch(s){I(s)}finally{o!==null&&c.types!==null&&(o.types=c.types),i.T=o}},a.unstable_useCacheRefresh=function(){return i.H.useCacheRefresh()},a.use=function(e){return i.H.use(e)},a.useActionState=function(e,o,c){return i.H.useActionState(e,o,c)},a.useCallback=function(e,o){return i.H.useCallback(e,o)},a.useContext=function(e){return i.H.useContext(e)},a.useDebugValue=function(){},a.useDeferredValue=function(e,o){return i.H.useDeferredValue(e,o)},a.useEffect=function(e,o){return i.H.useEffect(e,o)},a.useEffectEvent=function(e){return i.H.useEffectEvent(e)},a.useId=function(){return i.H.useId()},a.useImperativeHandle=function(e,o,c){return i.H.useImperativeHandle(e,o,c)},a.useInsertionEffect=function(e,o){return i.H.useInsertionEffect(e,o)},a.useLayoutEffect=function(e,o){return i.H.useLayoutEffect(e,o)},a.useMemo=function(e,o){return i.H.useMemo(e,o)},a.useOptimistic=function(e,o){return i.H.useOptimistic(e,o)},a.useReducer=function(e,o,c){return i.H.useReducer(e,o,c)},a.useRef=function(e){return i.H.useRef(e)},a.useState=function(e){return i.H.useState(e)},a.useSyncExternalStore=function(e,o,c){return i.H.useSyncExternalStore(e,o,c)},a.useTransition=function(){return i.H.useTransition()},a.version="19.2.7",a}var D;function a1(){return D||(D=1,R.exports=o1()),R.exports}var M=a1();const Ze=t1(M);const n1=y=>y.replace(/([a-z0-9])([A-Z])/g,"$1-$2").toLowerCase(),c1=y=>y.replace(/^([A-Z])|[\s-_]+(\w)/g,(d,p,k)=>k?k.toUpperCase():p.toLowerCase()),B=y=>{const d=c1(y);return d.charAt(0).toUpperCase()+d.slice(1)},Z=(...y)=>y.filter((d,p,k)=>!!d&&d.trim()!==""&&k.indexOf(d)===p).join(" ").trim(),r1=y=>{for(const d in y)if(d.startsWith("aria-")||d==="role"||d==="title")return!0};var s1={xmlns:"http://www.w3.org/2000/svg",width:24,height:24,viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:2,strokeLinecap:"round",strokeLinejoin:"round"};const y1=M.forwardRef(({color:y="currentColor",size:d=24,strokeWidth:p=2,absoluteStrokeWidth:k,className:m="",children:f,iconNode:$,...x},N)=>M.createElement("svg",{ref:N,...s1,width:d,height:d,stroke:y,strokeWidth:k?Number(p)*24/Number(d):p,className:Z("lucide",m),...!f&&!r1(x)&&{"aria-hidden":"true"},...x},[...$.map(([C,g])=>M.createElement(C,g)),...Array.isArray(f)?f:[f]]));const t=(y,d)=>{const p=M.forwardRef(({className:k,...m},f)=>M.createElement(y1,{ref:f,iconNode:d,className:Z(`lucide-${n1(B(y))}`,`lucide-${y}`,k),...m}));return p.displayName=B(y),p};const i1=[["path",{d:"M22 12h-2.48a2 2 0 0 0-1.93 1.46l-2.35 8.36a.25.25 0 0 1-.48 0L9.24 2.18a.25.25 0 0 0-.48 0l-2.35 8.36A2 2 0 0 1 4.49 12H2",key:"169zse"}]],Ke=t("activity",i1);const h1=[["path",{d:"M12 17V3",key:"1cwfxf"}],["path",{d:"m6 11 6 6 6-6",key:"12ii2o"}],["path",{d:"M19 21H5",key:"150jfl"}]],We=t("arrow-down-to-line",h1);const d1=[["path",{d:"M5 12h14",key:"1ays0h"}],["path",{d:"m12 5 7 7-7 7",key:"xquz4c"}]],Ge=t("arrow-right",d1);const u1=[["path",{d:"m18 9-6-6-6 6",key:"kcunyi"}],["path",{d:"M12 3v14",key:"7cf3v8"}],["path",{d:"M5 21h14",key:"11awu3"}]],Fe=t("arrow-up-from-line",u1);const p1=[["path",{d:"m5 12 7-7 7 7",key:"hav0vg"}],["path",{d:"M12 19V5",key:"x0mq9r"}]],Qe=t("arrow-up",p1);const k1=[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z",key:"3c2336"}],["path",{d:"m9 12 2 2 4-4",key:"dzmm74"}]],Xe=t("badge-check",k1);const l1=[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"m4.9 4.9 14.2 14.2",key:"1m5liu"}]],Je=t("ban",l1);const f1=[["path",{d:"M10.268 21a2 2 0 0 0 3.464 0",key:"vwvbt9"}],["path",{d:"M3.262 15.326A1 1 0 0 0 4 17h16a1 1 0 0 0 .74-1.673C19.41 13.956 18 12.499 18 8A6 6 0 0 0 6 8c0 4.499-1.411 5.956-2.738 7.326",key:"11g9vi"}]],et=t("bell",f1);const _1=[["path",{d:"M12 7v14",key:"1akyts"}],["path",{d:"M3 18a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h5a4 4 0 0 1 4 4 4 4 0 0 1 4-4h5a1 1 0 0 1 1 1v13a1 1 0 0 1-1 1h-6a3 3 0 0 0-3 3 3 3 0 0 0-3-3z",key:"ruj8y"}]],tt=t("book-open",_1);const v1=[["path",{d:"M12 8V4H8",key:"hb8ula"}],["rect",{width:"16",height:"12",x:"4",y:"8",rx:"2",key:"enze0r"}],["path",{d:"M2 14h2",key:"vft8re"}],["path",{d:"M20 14h2",key:"4cs60a"}],["path",{d:"M15 13v2",key:"1xurst"}],["path",{d:"M9 13v2",key:"rq6x2g"}]],ot=t("bot",v1);const M1=[["path",{d:"m8 2 1.88 1.88",key:"fmnt4t"}],["path",{d:"M14.12 3.88 16 2",key:"qol33r"}],["path",{d:"M9 7.13v-1a3.003 3.003 0 1 1 6 0v1",key:"d7y7pr"}],["path",{d:"M12 20c-3.3 0-6-2.7-6-6v-3a4 4 0 0 1 4-4h4a4 4 0 0 1 4 4v3c0 3.3-2.7 6-6 6",key:"xs1cw7"}],["path",{d:"M12 20v-9",key:"1qisl0"}],["path",{d:"M6.53 9C4.6 8.8 3 7.1 3 5",key:"32zzws"}],["path",{d:"M6 13H2",key:"82j7cp"}],["path",{d:"M3 21c0-2.1 1.7-3.9 3.8-4",key:"4p0ekp"}],["path",{d:"M20.97 5c0 2.1-1.6 3.8-3.5 4",key:"18gb23"}],["path",{d:"M22 13h-4",key:"1jl80f"}],["path",{d:"M17.2 17c2.1.1 3.8 1.9 3.8 4",key:"k3fwyw"}]],at=t("bug",M1);const m1=[["path",{d:"M14.5 4h-5L7 7H4a2 2 0 0 0-2 2v9a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2h-3l-2.5-3z",key:"1tc9qg"}],["circle",{cx:"12",cy:"13",r:"3",key:"1vg3eu"}]],nt=t("camera",m1);const x1=[["path",{d:"M20 6 9 17l-5-5",key:"1gmf2c"}]],ct=t("check",x1);const g1=[["path",{d:"m6 9 6 6 6-6",key:"qrunsl"}]],rt=t("chevron-down",g1);const w1=[["path",{d:"m15 18-6-6 6-6",key:"1wnfg3"}]],st=t("chevron-left",w1);const $1=[["path",{d:"m9 18 6-6-6-6",key:"mthhwq"}]],yt=t("chevron-right",$1);const N1=[["path",{d:"m18 15-6-6-6 6",key:"153udz"}]],it=t("chevron-up",N1);const C1=[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["line",{x1:"12",x2:"12",y1:"8",y2:"12",key:"1pkeuh"}],["line",{x1:"12",x2:"12.01",y1:"16",y2:"16",key:"4dfq90"}]],ht=t("circle-alert",C1);const E1=[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"m9 12 2 2 4-4",key:"dzmm74"}]],dt=t("circle-check",E1);const b1=[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3",key:"1u773s"}],["path",{d:"M12 17h.01",key:"p32p05"}]],ut=t("circle-question-mark",b1);const A1=[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"m15 9-6 6",key:"1uzhvr"}],["path",{d:"m9 9 6 6",key:"z0biqf"}]],pt=t("circle-x",A1);const H1=[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}]],kt=t("circle",H1);const q1=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M11 9h4a2 2 0 0 0 2-2V3",key:"1ve2rv"}],["circle",{cx:"9",cy:"9",r:"2",key:"af1f0g"}],["path",{d:"M7 21v-4a2 2 0 0 1 2-2h4",key:"1fwkro"}],["circle",{cx:"15",cy:"15",r:"2",key:"3i40o0"}]],lt=t("circuit-board",q1);const z1=[["rect",{width:"8",height:"4",x:"8",y:"2",rx:"1",ry:"1",key:"tgr4d6"}],["path",{d:"M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2",key:"116196"}]],ft=t("clipboard",z1);const R1=[["path",{d:"M12 6v6h4",key:"135r8i"}],["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}]],_t=t("clock-3",R1);const T1=[["path",{d:"M12 20v2",key:"1lh1kg"}],["path",{d:"M12 2v2",key:"tus03m"}],["path",{d:"M17 20v2",key:"1rnc9c"}],["path",{d:"M17 2v2",key:"11trls"}],["path",{d:"M2 12h2",key:"1t8f8n"}],["path",{d:"M2 17h2",key:"7oei6x"}],["path",{d:"M2 7h2",key:"asdhe0"}],["path",{d:"M20 12h2",key:"1q8mjw"}],["path",{d:"M20 17h2",key:"1fpfkl"}],["path",{d:"M20 7h2",key:"1o8tra"}],["path",{d:"M7 20v2",key:"4gnj0m"}],["path",{d:"M7 2v2",key:"1i4yhu"}],["rect",{x:"4",y:"4",width:"16",height:"16",rx:"2",key:"1vbyd7"}],["rect",{x:"8",y:"8",width:"8",height:"8",rx:"1",key:"z9xiuo"}]],vt=t("cpu",T1);const j1=[["rect",{width:"20",height:"14",x:"2",y:"5",rx:"2",key:"ynyp8z"}],["line",{x1:"2",x2:"22",y1:"10",y2:"10",key:"1b3vmo"}]],Mt=t("credit-card",j1);const S1=[["ellipse",{cx:"12",cy:"5",rx:"9",ry:"3",key:"msslwz"}],["path",{d:"M3 5V19A9 3 0 0 0 21 19V5",key:"1wlel7"}],["path",{d:"M3 12A9 3 0 0 0 21 12",key:"mv7ke4"}]],mt=t("database",S1);const L1=[["path",{d:"M12 15V3",key:"m9g1x1"}],["path",{d:"M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4",key:"ih7n3h"}],["path",{d:"m7 10 5 5 5-5",key:"brsn70"}]],xt=t("download",L1);const V1=[["path",{d:"M21.54 15H17a2 2 0 0 0-2 2v4.54",key:"1djwo0"}],["path",{d:"M7 3.34V5a3 3 0 0 0 3 3a2 2 0 0 1 2 2c0 1.1.9 2 2 2a2 2 0 0 0 2-2c0-1.1.9-2 2-2h3.17",key:"1tzkfa"}],["path",{d:"M11 21.95V18a2 2 0 0 0-2-2a2 2 0 0 1-2-2v-1a2 2 0 0 0-2-2H2.05",key:"14pb5j"}],["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}]],gt=t("earth",V1);const P1=[["path",{d:"M15 3h6v6",key:"1q9fwt"}],["path",{d:"M10 14 21 3",key:"gplh6r"}],["path",{d:"M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6",key:"a6xqqp"}]],wt=t("external-link",P1);const O1=[["path",{d:"M10.733 5.076a10.744 10.744 0 0 1 11.205 6.575 1 1 0 0 1 0 .696 10.747 10.747 0 0 1-1.444 2.49",key:"ct8e1f"}],["path",{d:"M14.084 14.158a3 3 0 0 1-4.242-4.242",key:"151rxh"}],["path",{d:"M17.479 17.499a10.75 10.75 0 0 1-15.417-5.151 1 1 0 0 1 0-.696 10.75 10.75 0 0 1 4.446-5.143",key:"13bj9a"}],["path",{d:"m2 2 20 20",key:"1ooewy"}]],$t=t("eye-off",O1);const U1=[["path",{d:"M17.5 22h.5a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v3",key:"rslqgf"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4",key:"tnqrlb"}],["path",{d:"M2 19a2 2 0 1 1 4 0v1a2 2 0 1 1-4 0v-4a6 6 0 0 1 12 0v4a2 2 0 1 1-4 0v-1a2 2 0 1 1 4 0",key:"9f7x3i"}]],Nt=t("file-audio",U1);const I1=[["path",{d:"M14 2v4a2 2 0 0 0 2 2h4",key:"tnqrlb"}],["path",{d:"m2.305 15.53.923-.382",key:"yfp9st"}],["path",{d:"m3.228 12.852-.924-.383",key:"bckynb"}],["path",{d:"M4.677 21.5a2 2 0 0 0 1.313.5H18a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v2.5",key:"1yo3oz"}],["path",{d:"m4.852 11.228-.383-.923",key:"1j88i9"}],["path",{d:"m4.852 16.772-.383.924",key:"sag1dv"}],["path",{d:"m7.148 11.228.383-.923",key:"rj39hk"}],["path",{d:"m7.53 17.696-.382-.924",key:"1uu5cs"}],["path",{d:"m8.772 12.852.923-.383",key:"13811l"}],["path",{d:"m8.772 15.148.923.383",key:"z1a5l0"}],["circle",{cx:"6",cy:"14",r:"3",key:"a1xfv6"}]],Ct=t("file-cog",I1);const Y1=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z",key:"1rqfz7"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4",key:"tnqrlb"}],["path",{d:"M12 12v6",key:"3ahymv"}],["path",{d:"m15 15-3-3-3 3",key:"15xj92"}]],Et=t("file-up",Y1);const D1=[["path",{d:"m6 14 1.5-2.9A2 2 0 0 1 9.24 10H20a2 2 0 0 1 1.94 2.5l-1.54 6a2 2 0 0 1-1.95 1.5H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H18a2 2 0 0 1 2 2v2",key:"usdka0"}]],bt=t("folder-open",D1);const B1=[["path",{d:"M9 20H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H20a2 2 0 0 1 2 2v.5",key:"1dkoa9"}],["path",{d:"M12 10v4h4",key:"1czhmt"}],["path",{d:"m12 14 1.535-1.605a5 5 0 0 1 8 1.5",key:"lvuxfi"}],["path",{d:"M22 22v-4h-4",key:"1ewp4q"}],["path",{d:"m22 18-1.535 1.605a5 5 0 0 1-8-1.5",key:"14ync0"}]],At=t("folder-sync",B1);const Z1=[["path",{d:"M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z",key:"1kt360"}],["path",{d:"M12 10v6",key:"1bos4e"}],["path",{d:"m9 13 3-3 3 3",key:"1pxg3c"}]],Ht=t("folder-up",Z1);const K1=[["path",{d:"M10 20a1 1 0 0 0 .553.895l2 1A1 1 0 0 0 14 21v-7a2 2 0 0 1 .517-1.341L21.74 4.67A1 1 0 0 0 21 3H3a1 1 0 0 0-.742 1.67l7.225 7.989A2 2 0 0 1 10 14z",key:"sc7q7i"}]],qt=t("funnel",K1);const W1=[["line",{x1:"22",x2:"2",y1:"12",y2:"12",key:"1y58io"}],["path",{d:"M5.45 5.11 2 12v6a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-6l-3.45-6.89A2 2 0 0 0 16.76 4H7.24a2 2 0 0 0-1.79 1.11z",key:"oot6mr"}],["line",{x1:"6",x2:"6.01",y1:"16",y2:"16",key:"sgf278"}],["line",{x1:"10",x2:"10.01",y1:"16",y2:"16",key:"1l4acy"}]],zt=t("hard-drive",W1);const G1=[["path",{d:"M3 12a9 9 0 1 0 9-9 9.75 9.75 0 0 0-6.74 2.74L3 8",key:"1357e3"}],["path",{d:"M3 3v5h5",key:"1xhq8a"}],["path",{d:"M12 7v5l4 2",key:"1fdv2h"}]],Rt=t("history",G1);const F1=[["path",{d:"M2.586 17.414A2 2 0 0 0 2 18.828V21a1 1 0 0 0 1 1h3a1 1 0 0 0 1-1v-1a1 1 0 0 1 1-1h1a1 1 0 0 0 1-1v-1a1 1 0 0 1 1-1h.172a2 2 0 0 0 1.414-.586l.814-.814a6.5 6.5 0 1 0-4-4z",key:"1s6t7t"}],["circle",{cx:"16.5",cy:"7.5",r:".5",fill:"currentColor",key:"w0ekpg"}]],Tt=t("key-round",F1);const Q1=[["rect",{width:"7",height:"7",x:"3",y:"3",rx:"1",key:"1g98yp"}],["rect",{width:"7",height:"7",x:"14",y:"3",rx:"1",key:"6d4xhi"}],["rect",{width:"7",height:"7",x:"14",y:"14",rx:"1",key:"nxv5o0"}],["rect",{width:"7",height:"7",x:"3",y:"14",rx:"1",key:"1bb6yr"}]],jt=t("layout-grid",Q1);const X1=[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"m4.93 4.93 4.24 4.24",key:"1ymg45"}],["path",{d:"m14.83 9.17 4.24-4.24",key:"1cb5xl"}],["path",{d:"m14.83 14.83 4.24 4.24",key:"q42g0n"}],["path",{d:"m9.17 14.83-4.24 4.24",key:"bqpfvv"}],["circle",{cx:"12",cy:"12",r:"4",key:"4exip2"}]],St=t("life-buoy",X1);const J1=[["path",{d:"M15 14c.2-1 .7-1.7 1.5-2.5 1-.9 1.5-2.2 1.5-3.5A6 6 0 0 0 6 8c0 1 .2 2.2 1.5 3.5.7.7 1.3 1.5 1.5 2.5",key:"1gvzjb"}],["path",{d:"M9 18h6",key:"x1upvd"}],["path",{d:"M10 22h4",key:"ceow96"}]],Lt=t("lightbulb",J1);const ee=[["path",{d:"M21 12a9 9 0 1 1-6.219-8.56",key:"13zald"}]],Vt=t("loader-circle",ee);const te=[["circle",{cx:"12",cy:"16",r:"1",key:"1au0dj"}],["rect",{x:"3",y:"10",width:"18",height:"12",rx:"2",key:"6s8ecr"}],["path",{d:"M7 10V7a5 5 0 0 1 10 0v3",key:"1pqi11"}]],Pt=t("lock-keyhole",te);const oe=[["path",{d:"m10 17 5-5-5-5",key:"1bsop3"}],["path",{d:"M15 12H3",key:"6jk70r"}],["path",{d:"M15 3h4a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-4",key:"u53s6r"}]],Ot=t("log-in",oe);const ae=[["rect",{width:"18",height:"11",x:"3",y:"11",rx:"2",ry:"2",key:"1w4ew1"}],["path",{d:"M7 11V7a5 5 0 0 1 10 0v4",key:"fwvmzm"}]],Ut=t("lock",ae);const ne=[["path",{d:"m16 17 5-5-5-5",key:"1bji2h"}],["path",{d:"M21 12H9",key:"dn1m92"}],["path",{d:"M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4",key:"1uf3rs"}]],It=t("log-out",ne);const ce=[["path",{d:"M11 6a13 13 0 0 0 8.4-2.8A1 1 0 0 1 21 4v12a1 1 0 0 1-1.6.8A13 13 0 0 0 11 14H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2z",key:"q8bfy3"}],["path",{d:"M6 14a12 12 0 0 0 2.4 7.2 2 2 0 0 0 3.2-2.4A8 8 0 0 1 10 14",key:"1853fq"}],["path",{d:"M8 6v8",key:"15ugcq"}]],Yt=t("megaphone",ce);const re=[["path",{d:"M6 19v-3",key:"1nvgqn"}],["path",{d:"M10 19v-3",key:"iu8nkm"}],["path",{d:"M14 19v-3",key:"kcehxu"}],["path",{d:"M18 19v-3",key:"1vh91z"}],["path",{d:"M8 11V9",key:"63erz4"}],["path",{d:"M16 11V9",key:"fru6f3"}],["path",{d:"M12 11V9",key:"ha00sb"}],["path",{d:"M2 15h20",key:"16ne18"}],["path",{d:"M2 7a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v1.1a2 2 0 0 0 0 3.837V17a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-5.1a2 2 0 0 0 0-3.837Z",key:"lhddv3"}]],Dt=t("memory-stick",re);const se=[["path",{d:"M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z",key:"1lielz"}],["path",{d:"M13 8H7",key:"14i4kc"}],["path",{d:"M17 12H7",key:"16if0g"}]],Bt=t("message-square-text",se);const ye=[["path",{d:"M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z",key:"1lielz"}]],Zt=t("message-square",ye);const ie=[["rect",{width:"20",height:"14",x:"2",y:"3",rx:"2",key:"48i651"}],["line",{x1:"8",x2:"16",y1:"21",y2:"21",key:"1svkeh"}],["line",{x1:"12",x2:"12",y1:"17",y2:"21",key:"vw1qmm"}]],Kt=t("monitor",ie);const he=[["path",{d:"M12 3a6 6 0 0 0 9 9 9 9 0 1 1-9-9Z",key:"a7tn18"}]],Wt=t("moon",he);const de=[["path",{d:"M4.037 4.688a.495.495 0 0 1 .651-.651l16 6.5a.5.5 0 0 1-.063.947l-6.124 1.58a2 2 0 0 0-1.438 1.435l-1.579 6.126a.5.5 0 0 1-.947.063z",key:"edeuup"}]],Gt=t("mouse-pointer-2",de);const ue=[["rect",{x:"16",y:"16",width:"6",height:"6",rx:"1",key:"4q2zg0"}],["rect",{x:"2",y:"16",width:"6",height:"6",rx:"1",key:"8cvhb9"}],["rect",{x:"9",y:"2",width:"6",height:"6",rx:"1",key:"1egb70"}],["path",{d:"M5 16v-3a1 1 0 0 1 1-1h12a1 1 0 0 1 1 1v3",key:"1jsf9p"}],["path",{d:"M12 12V8",key:"2874zd"}]],Ft=t("network",ue);const pe=[["rect",{x:"14",y:"4",width:"4",height:"16",rx:"1",key:"zuxfzm"}],["rect",{x:"6",y:"4",width:"4",height:"16",rx:"1",key:"1okwgv"}]],Qt=t("pause",pe);const ke=[["path",{d:"M21.174 6.812a1 1 0 0 0-3.986-3.987L3.842 16.174a2 2 0 0 0-.5.83l-1.321 4.352a.5.5 0 0 0 .623.622l4.353-1.32a2 2 0 0 0 .83-.497z",key:"1a8usu"}],["path",{d:"m15 5 4 4",key:"1mk7zo"}]],Xt=t("pencil",ke);const le=[["path",{d:"M12 17v5",key:"bb1du9"}],["path",{d:"M9 10.76a2 2 0 0 1-1.11 1.79l-1.78.9A2 2 0 0 0 5 15.24V16a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-.76a2 2 0 0 0-1.11-1.79l-1.78-.9A2 2 0 0 1 15 10.76V7a1 1 0 0 1 1-1 2 2 0 0 0 0-4H8a2 2 0 0 0 0 4 1 1 0 0 1 1 1z",key:"1nkz8b"}]],Jt=t("pin",le);const fe=[["polygon",{points:"6 3 20 12 6 21 6 3",key:"1oa8hb"}]],e2=t("play",fe);const _e=[["path",{d:"M5 12h14",key:"1ays0h"}],["path",{d:"M12 5v14",key:"s699le"}]],t2=t("plus",_e);const ve=[["path",{d:"M12 2v10",key:"mnfbl"}],["path",{d:"M18.4 6.6a9 9 0 1 1-12.77.04",key:"obofu9"}]],o2=t("power",ve);const Me=[["path",{d:"M3 12a9 9 0 0 1 9-9 9.75 9.75 0 0 1 6.74 2.74L21 8",key:"v9h5vc"}],["path",{d:"M21 3v5h-5",key:"1q7to0"}],["path",{d:"M21 12a9 9 0 0 1-9 9 9.75 9.75 0 0 1-6.74-2.74L3 16",key:"3uifl3"}],["path",{d:"M8 16H3v5",key:"1cv678"}]],a2=t("refresh-cw",Me);const me=[["path",{d:"M3 12a9 9 0 1 0 9-9 9.75 9.75 0 0 0-6.74 2.74L3 8",key:"1357e3"}],["path",{d:"M3 3v5h5",key:"1xhq8a"}]],n2=t("rotate-ccw",me);const xe=[["path",{d:"M15.2 3a2 2 0 0 1 1.4.6l3.8 3.8a2 2 0 0 1 .6 1.4V19a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2z",key:"1c8476"}],["path",{d:"M17 21v-7a1 1 0 0 0-1-1H8a1 1 0 0 0-1 1v7",key:"1ydtos"}],["path",{d:"M7 3v4a1 1 0 0 0 1 1h7",key:"t51u73"}]],c2=t("save",xe);const ge=[["path",{d:"m21 21-4.34-4.34",key:"14j7rj"}],["circle",{cx:"11",cy:"11",r:"8",key:"4ej97u"}]],r2=t("search",ge);const we=[["path",{d:"M14.536 21.686a.5.5 0 0 0 .937-.024l6.5-19a.496.496 0 0 0-.635-.635l-19 6.5a.5.5 0 0 0-.024.937l7.93 3.18a2 2 0 0 1 1.112 1.11z",key:"1ffxy3"}],["path",{d:"m21.854 2.147-10.94 10.939",key:"12cjpa"}]],s2=t("send",we);const $e=[["path",{d:"m10.852 14.772-.383.923",key:"11vil6"}],["path",{d:"M13.148 14.772a3 3 0 1 0-2.296-5.544l-.383-.923",key:"1v3clb"}],["path",{d:"m13.148 9.228.383-.923",key:"t2zzyc"}],["path",{d:"m13.53 15.696-.382-.924a3 3 0 1 1-2.296-5.544",key:"1bxfiv"}],["path",{d:"m14.772 10.852.923-.383",key:"k9m8cz"}],["path",{d:"m14.772 13.148.923.383",key:"1xvhww"}],["path",{d:"M4.5 10H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2h-.5",key:"tn8das"}],["path",{d:"M4.5 14H4a2 2 0 0 0-2 2v4a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-4a2 2 0 0 0-2-2h-.5",key:"1g2pve"}],["path",{d:"M6 18h.01",key:"uhywen"}],["path",{d:"M6 6h.01",key:"1utrut"}],["path",{d:"m9.228 10.852-.923-.383",key:"1wtb30"}],["path",{d:"m9.228 13.148-.923.383",key:"1a830x"}]],y2=t("server-cog",$e);const Ne=[["rect",{width:"20",height:"8",x:"2",y:"2",rx:"2",ry:"2",key:"ngkwjq"}],["rect",{width:"20",height:"8",x:"2",y:"14",rx:"2",ry:"2",key:"iecqi9"}],["line",{x1:"6",x2:"6.01",y1:"6",y2:"6",key:"16zg32"}],["line",{x1:"6",x2:"6.01",y1:"18",y2:"18",key:"nzw8ys"}]],i2=t("server",Ne);const Ce=[["path",{d:"M14 17H5",key:"gfn3mx"}],["path",{d:"M19 7h-9",key:"6i9tg"}],["circle",{cx:"17",cy:"17",r:"3",key:"18b49y"}],["circle",{cx:"7",cy:"7",r:"3",key:"dfmy0x"}]],h2=t("settings-2",Ce);const Ee=[["path",{d:"M12.22 2h-.44a2 2 0 0 0-2 2v.18a2 2 0 0 1-1 1.73l-.43.25a2 2 0 0 1-2 0l-.15-.08a2 2 0 0 0-2.73.73l-.22.38a2 2 0 0 0 .73 2.73l.15.1a2 2 0 0 1 1 1.72v.51a2 2 0 0 1-1 1.74l-.15.09a2 2 0 0 0-.73 2.73l.22.38a2 2 0 0 0 2.73.73l.15-.08a2 2 0 0 1 2 0l.43.25a2 2 0 0 1 1 1.73V20a2 2 0 0 0 2 2h.44a2 2 0 0 0 2-2v-.18a2 2 0 0 1 1-1.73l.43-.25a2 2 0 0 1 2 0l.15.08a2 2 0 0 0 2.73-.73l.22-.39a2 2 0 0 0-.73-2.73l-.15-.08a2 2 0 0 1-1-1.74v-.5a2 2 0 0 1 1-1.74l.15-.09a2 2 0 0 0 .73-2.73l-.22-.38a2 2 0 0 0-2.73-.73l-.15.08a2 2 0 0 1-2 0l-.43-.25a2 2 0 0 1-1-1.73V4a2 2 0 0 0-2-2z",key:"1qme2f"}],["circle",{cx:"12",cy:"12",r:"3",key:"1v7zrd"}]],d2=t("settings",Ee);const be=[["circle",{cx:"18",cy:"5",r:"3",key:"gq8acd"}],["circle",{cx:"6",cy:"12",r:"3",key:"w7nqdw"}],["circle",{cx:"18",cy:"19",r:"3",key:"1xt0gg"}],["line",{x1:"8.59",x2:"15.42",y1:"13.51",y2:"17.49",key:"47mynk"}],["line",{x1:"15.41",x2:"8.59",y1:"6.51",y2:"10.49",key:"1n3mei"}]],u2=t("share-2",be);const Ae=[["path",{d:"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z",key:"oel41y"}],["path",{d:"M12 8v4",key:"1got3b"}],["path",{d:"M12 16h.01",key:"1drbdi"}]],p2=t("shield-alert",Ae);const He=[["path",{d:"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z",key:"oel41y"}],["path",{d:"m9 12 2 2 4-4",key:"dzmm74"}]],k2=t("shield-check",He);const qe=[["path",{d:"M9.937 15.5A2 2 0 0 0 8.5 14.063l-6.135-1.582a.5.5 0 0 1 0-.962L8.5 9.936A2 2 0 0 0 9.937 8.5l1.582-6.135a.5.5 0 0 1 .963 0L14.063 8.5A2 2 0 0 0 15.5 9.937l6.135 1.581a.5.5 0 0 1 0 .964L15.5 14.063a2 2 0 0 0-1.437 1.437l-1.582 6.135a.5.5 0 0 1-.963 0z",key:"4pj2yx"}],["path",{d:"M20 3v4",key:"1olli1"}],["path",{d:"M22 5h-4",key:"1gvqau"}],["path",{d:"M4 17v2",key:"vumght"}],["path",{d:"M5 18H3",key:"zchphs"}]],l2=t("sparkles",qe);const ze=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}]],f2=t("square",ze);const Re=[["path",{d:"M11.525 2.295a.53.53 0 0 1 .95 0l2.31 4.679a2.123 2.123 0 0 0 1.595 1.16l5.166.756a.53.53 0 0 1 .294.904l-3.736 3.638a2.123 2.123 0 0 0-.611 1.878l.882 5.14a.53.53 0 0 1-.771.56l-4.618-2.428a2.122 2.122 0 0 0-1.973 0L6.396 21.01a.53.53 0 0 1-.77-.56l.881-5.139a2.122 2.122 0 0 0-.611-1.879L2.16 9.795a.53.53 0 0 1 .294-.906l5.165-.755a2.122 2.122 0 0 0 1.597-1.16z",key:"r04s7s"}]],_2=t("star",Re);const Te=[["path",{d:"M11 2v2",key:"1539x4"}],["path",{d:"M5 2v2",key:"1yf1q8"}],["path",{d:"M5 3H4a2 2 0 0 0-2 2v4a6 6 0 0 0 12 0V5a2 2 0 0 0-2-2h-1",key:"rb5t3r"}],["path",{d:"M8 15a6 6 0 0 0 12 0v-3",key:"x18d4x"}],["circle",{cx:"20",cy:"10",r:"2",key:"ts1r5v"}]],v2=t("stethoscope",Te);const je=[["path",{d:"M12 19h8",key:"baeox8"}],["path",{d:"m4 17 6-6-6-6",key:"1yngyt"}]],M2=t("terminal",je);const Se=[["path",{d:"M21 7 6.82 21.18a2.83 2.83 0 0 1-3.99-.01a2.83 2.83 0 0 1 0-4L17 3",key:"1ub6xw"}],["path",{d:"m16 2 6 6",key:"1gw87d"}],["path",{d:"M12 16H4",key:"1cjfip"}]],m2=t("test-tube-diagonal",Se);const Le=[["path",{d:"M7 10v12",key:"1qc93n"}],["path",{d:"M15 5.88 14 10h5.83a2 2 0 0 1 1.92 2.56l-2.33 8A2 2 0 0 1 17.5 22H4a2 2 0 0 1-2-2v-8a2 2 0 0 1 2-2h2.76a2 2 0 0 0 1.79-1.11L12 2a3.13 3.13 0 0 1 3 3.88Z",key:"emmmcr"}]],x2=t("thumbs-up",Le);const Ve=[["line",{x1:"10",x2:"14",y1:"2",y2:"2",key:"14vaq8"}],["line",{x1:"12",x2:"15",y1:"14",y2:"11",key:"17fdiu"}],["circle",{cx:"12",cy:"14",r:"8",key:"1e1u0o"}]],g2=t("timer",Ve);const Pe=[["path",{d:"M3 6h18",key:"d0wm0j"}],["path",{d:"M19 6v14c0 1-1 2-2 2H7c-1 0-2-1-2-2V6",key:"4alrt4"}],["path",{d:"M8 6V4c0-1 1-2 2-2h4c1 0 2 1 2 2v2",key:"v07s0e"}],["line",{x1:"10",x2:"10",y1:"11",y2:"17",key:"1uufr5"}],["line",{x1:"14",x2:"14",y1:"11",y2:"17",key:"xtxkd"}]],w2=t("trash-2",Pe);const Oe=[["path",{d:"m21.73 18-8-14a2 2 0 0 0-3.48 0l-8 14A2 2 0 0 0 4 21h16a2 2 0 0 0 1.73-3",key:"wmoenq"}],["path",{d:"M12 9v4",key:"juzpu7"}],["path",{d:"M12 17h.01",key:"p32p05"}]],$2=t("triangle-alert",Oe);const Ue=[["circle",{cx:"10",cy:"7",r:"1",key:"dypaad"}],["circle",{cx:"4",cy:"20",r:"1",key:"22iqad"}],["path",{d:"M4.7 19.3 19 5",key:"1enqfc"}],["path",{d:"m21 3-3 1 2 2Z",key:"d3ov82"}],["path",{d:"M9.26 7.68 5 12l2 5",key:"1esawj"}],["path",{d:"m10 14 5 2 3.5-3.5",key:"v8oal5"}],["path",{d:"m18 12 1-1 1 1-1 1Z",key:"1bh22v"}]],N2=t("usb",Ue);const Ie=[["path",{d:"M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2",key:"1yyitq"}],["path",{d:"M16 3.128a4 4 0 0 1 0 7.744",key:"16gr8j"}],["path",{d:"M22 21v-2a4 4 0 0 0-3-3.87",key:"kshegd"}],["circle",{cx:"9",cy:"7",r:"4",key:"nufk8"}]],C2=t("users",Ie);const Ye=[["path",{d:"M11 4.702a.705.705 0 0 0-1.203-.498L6.413 7.587A1.4 1.4 0 0 1 5.416 8H3a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h2.416a1.4 1.4 0 0 1 .997.413l3.383 3.384A.705.705 0 0 0 11 19.298z",key:"uqj9uw"}],["path",{d:"M16 9a5 5 0 0 1 0 6",key:"1q6k2b"}],["path",{d:"M19.364 18.364a9 9 0 0 0 0-12.728",key:"ijwkga"}]],E2=t("volume-2",Ye);const De=[["path",{d:"M12 20h.01",key:"zekei9"}],["path",{d:"M2 8.82a15 15 0 0 1 20 0",key:"dnpr2z"}],["path",{d:"M5 12.859a10 10 0 0 1 14 0",key:"1x1e6c"}],["path",{d:"M8.5 16.429a5 5 0 0 1 7 0",key:"1bycff"}]],b2=t("wifi",De);const Be=[["path",{d:"M18 6 6 18",key:"1bl5f8"}],["path",{d:"m6 6 12 12",key:"d8bk6v"}]],A2=t("x",Be);export{Ft as $,Qe as A,et as B,ct as C,xt as D,$t as E,qt as F,Nt as G,zt as H,l2 as I,h2 as J,Tt as K,Pt as L,Zt as M,m2 as N,Ut as O,t2 as P,ot as Q,a2 as R,k2 as S,x2 as T,w2 as U,n2 as V,b2 as W,A2 as X,c2 as Y,Ze as Z,N2 as _,M as a,Et as a0,Ht as a1,Vt as a2,ht as a3,yt as a4,p2 as a5,C2 as a6,At as a7,Bt as a8,kt as a9,e2 as aA,Qt as aB,Wt as aC,o2 as aD,it as aa,rt as ab,Je as ac,r2 as ad,_2 as ae,$2 as af,St as ag,Ct as ah,y2 as ai,wt as aj,u2 as ak,nt as al,f2 as am,Rt as an,g2 as ao,v2 as ap,jt as aq,Gt as ar,M2 as as,Ge as at,gt as au,mt as av,ft as aw,Xe as ax,E2 as ay,st as az,s2 as b,Xt as c,Jt as d,dt as e,ut as f,at as g,Lt as h,Yt as i,i2 as j,Kt as k,tt as l,Mt as m,d2 as n,Ot as o,It as p,Ke as q,a1 as r,pt as s,_t as t,vt as u,Dt as v,lt as w,We as x,Fe as y,bt as z};