@zhangferry-dev/tokendash 1.3.0 → 1.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +31 -3
- package/bin/tokendash.js +5 -1
- package/dist/client/assets/{index-D-RErhSy.js → index-B4YgU_cb.js} +42 -42
- package/dist/client/assets/index-iYDpTV63.css +1 -0
- package/dist/client/index.html +2 -2
- package/dist/client/popover.html +1105 -0
- package/dist/electron-server.cjs +2162 -0
- package/dist/electron-server.cjs.map +7 -0
- package/dist/server/index.d.ts +4 -1
- package/dist/server/index.js +59 -22
- package/electron/main.cjs +450 -0
- package/electron/main.js +291 -0
- package/electron/preload.cjs +22 -0
- package/electron/trayBadge.cjs +25 -0
- package/electron/trayBadge.js +30 -0
- package/electron/trayHelper +0 -0
- package/electron/trayHelper.swift +130 -0
- package/electron-builder.yml +17 -0
- package/package.json +13 -4
- package/resources/cache_diagram.html +456 -0
- package/resources/cache_diagram.png +0 -0
- package/resources/entitlements.mac.plist +10 -0
- package/resources/icon.png +0 -0
- package/resources/pr1_preview.png +0 -0
- package/resources/product_screenshoot.png +0 -0
- package/resources/test_single_agent.png +0 -0
- package/dist/client/assets/index-x7K7fQX4.css +0 -1
|
@@ -0,0 +1,456 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="zh">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="UTF-8">
|
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
6
|
+
<style>
|
|
7
|
+
* { margin: 0; padding: 0; box-sizing: border-box; }
|
|
8
|
+
body {
|
|
9
|
+
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
|
|
10
|
+
background: #fafaf9;
|
|
11
|
+
padding: 40px 48px;
|
|
12
|
+
width: 900px;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.title {
|
|
16
|
+
font-size: 22px;
|
|
17
|
+
font-weight: 800;
|
|
18
|
+
color: #1c1917;
|
|
19
|
+
margin-bottom: 8px;
|
|
20
|
+
}
|
|
21
|
+
.subtitle {
|
|
22
|
+
font-size: 14px;
|
|
23
|
+
color: #78716c;
|
|
24
|
+
margin-bottom: 36px;
|
|
25
|
+
line-height: 1.6;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.turn {
|
|
29
|
+
margin-bottom: 28px;
|
|
30
|
+
position: relative;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.turn-label {
|
|
34
|
+
display: inline-flex;
|
|
35
|
+
align-items: center;
|
|
36
|
+
gap: 8px;
|
|
37
|
+
margin-bottom: 12px;
|
|
38
|
+
}
|
|
39
|
+
.turn-badge {
|
|
40
|
+
background: #1c1917;
|
|
41
|
+
color: white;
|
|
42
|
+
font-size: 12px;
|
|
43
|
+
font-weight: 700;
|
|
44
|
+
padding: 3px 10px;
|
|
45
|
+
border-radius: 6px;
|
|
46
|
+
letter-spacing: 0.03em;
|
|
47
|
+
}
|
|
48
|
+
.turn-desc {
|
|
49
|
+
font-size: 13px;
|
|
50
|
+
color: #57534e;
|
|
51
|
+
font-weight: 500;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
.blocks {
|
|
55
|
+
display: flex;
|
|
56
|
+
border-radius: 10px;
|
|
57
|
+
overflow: hidden;
|
|
58
|
+
box-shadow: 0 1px 3px rgba(0,0,0,0.06);
|
|
59
|
+
height: 52px;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
.block {
|
|
63
|
+
display: flex;
|
|
64
|
+
align-items: center;
|
|
65
|
+
justify-content: center;
|
|
66
|
+
font-size: 12px;
|
|
67
|
+
font-weight: 600;
|
|
68
|
+
letter-spacing: 0.02em;
|
|
69
|
+
position: relative;
|
|
70
|
+
transition: all 0.2s;
|
|
71
|
+
border-right: 1px solid rgba(255,255,255,0.3);
|
|
72
|
+
}
|
|
73
|
+
.block:last-child { border-right: none; }
|
|
74
|
+
|
|
75
|
+
/* Colors */
|
|
76
|
+
.block.system {
|
|
77
|
+
background: #6366f1;
|
|
78
|
+
color: white;
|
|
79
|
+
}
|
|
80
|
+
.block.history {
|
|
81
|
+
background: #818cf8;
|
|
82
|
+
color: white;
|
|
83
|
+
}
|
|
84
|
+
.block.new-input {
|
|
85
|
+
background: #10b981;
|
|
86
|
+
color: white;
|
|
87
|
+
}
|
|
88
|
+
.block.output {
|
|
89
|
+
background: #f59e0b;
|
|
90
|
+
color: white;
|
|
91
|
+
}
|
|
92
|
+
.block.cached {
|
|
93
|
+
background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
|
|
94
|
+
color: white;
|
|
95
|
+
position: relative;
|
|
96
|
+
}
|
|
97
|
+
.block.cached::after {
|
|
98
|
+
content: '';
|
|
99
|
+
position: absolute;
|
|
100
|
+
top: 3px;
|
|
101
|
+
right: 3px;
|
|
102
|
+
width: 16px;
|
|
103
|
+
height: 16px;
|
|
104
|
+
background: rgba(255,255,255,0.25);
|
|
105
|
+
border-radius: 4px;
|
|
106
|
+
display: flex;
|
|
107
|
+
align-items: center;
|
|
108
|
+
justify-content: center;
|
|
109
|
+
font-size: 10px;
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
/* Legend */
|
|
113
|
+
.legend {
|
|
114
|
+
display: flex;
|
|
115
|
+
gap: 20px;
|
|
116
|
+
margin-top: 36px;
|
|
117
|
+
margin-bottom: 32px;
|
|
118
|
+
padding: 16px 20px;
|
|
119
|
+
background: white;
|
|
120
|
+
border-radius: 10px;
|
|
121
|
+
border: 1px solid #e7e5e4;
|
|
122
|
+
}
|
|
123
|
+
.legend-item {
|
|
124
|
+
display: flex;
|
|
125
|
+
align-items: center;
|
|
126
|
+
gap: 8px;
|
|
127
|
+
font-size: 12px;
|
|
128
|
+
font-weight: 500;
|
|
129
|
+
color: #44403c;
|
|
130
|
+
}
|
|
131
|
+
.legend-dot {
|
|
132
|
+
width: 14px;
|
|
133
|
+
height: 14px;
|
|
134
|
+
border-radius: 4px;
|
|
135
|
+
flex-shrink: 0;
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
/* Annotation */
|
|
139
|
+
.annotation {
|
|
140
|
+
display: flex;
|
|
141
|
+
gap: 16px;
|
|
142
|
+
margin-top: 24px;
|
|
143
|
+
}
|
|
144
|
+
.anno-card {
|
|
145
|
+
flex: 1;
|
|
146
|
+
background: white;
|
|
147
|
+
border: 1px solid #e7e5e4;
|
|
148
|
+
border-radius: 10px;
|
|
149
|
+
padding: 16px 18px;
|
|
150
|
+
}
|
|
151
|
+
.anno-card .anno-title {
|
|
152
|
+
font-size: 13px;
|
|
153
|
+
font-weight: 700;
|
|
154
|
+
color: #1c1917;
|
|
155
|
+
margin-bottom: 6px;
|
|
156
|
+
}
|
|
157
|
+
.anno-card .anno-text {
|
|
158
|
+
font-size: 12px;
|
|
159
|
+
color: #78716c;
|
|
160
|
+
line-height: 1.7;
|
|
161
|
+
}
|
|
162
|
+
.anno-card.highlight {
|
|
163
|
+
border-color: #10b981;
|
|
164
|
+
background: #ecfdf5;
|
|
165
|
+
}
|
|
166
|
+
.anno-card.highlight .anno-title { color: #059669; }
|
|
167
|
+
|
|
168
|
+
/* Cost comparison */
|
|
169
|
+
.cost-row {
|
|
170
|
+
display: flex;
|
|
171
|
+
align-items: center;
|
|
172
|
+
gap: 12px;
|
|
173
|
+
margin-top: 6px;
|
|
174
|
+
}
|
|
175
|
+
.cost-tag {
|
|
176
|
+
display: inline-flex;
|
|
177
|
+
align-items: center;
|
|
178
|
+
gap: 4px;
|
|
179
|
+
font-size: 12px;
|
|
180
|
+
font-weight: 700;
|
|
181
|
+
padding: 2px 8px;
|
|
182
|
+
border-radius: 5px;
|
|
183
|
+
font-family: 'SF Mono', 'Fira Code', monospace;
|
|
184
|
+
}
|
|
185
|
+
.cost-tag.expensive {
|
|
186
|
+
background: #fef2f2;
|
|
187
|
+
color: #dc2626;
|
|
188
|
+
}
|
|
189
|
+
.cost-tag.cheap {
|
|
190
|
+
background: #ecfdf5;
|
|
191
|
+
color: #059669;
|
|
192
|
+
}
|
|
193
|
+
.cost-tag.free {
|
|
194
|
+
background: #f0f9ff;
|
|
195
|
+
color: #0284c7;
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
.arrow-container {
|
|
199
|
+
display: flex;
|
|
200
|
+
align-items: center;
|
|
201
|
+
justify-content: center;
|
|
202
|
+
margin: 4px 0;
|
|
203
|
+
position: relative;
|
|
204
|
+
}
|
|
205
|
+
.arrow-down {
|
|
206
|
+
width: 2px;
|
|
207
|
+
height: 20px;
|
|
208
|
+
background: #d6d3d1;
|
|
209
|
+
position: relative;
|
|
210
|
+
}
|
|
211
|
+
.arrow-down::after {
|
|
212
|
+
content: '';
|
|
213
|
+
position: absolute;
|
|
214
|
+
bottom: -3px;
|
|
215
|
+
left: 50%;
|
|
216
|
+
transform: translateX(-50%);
|
|
217
|
+
border-left: 5px solid transparent;
|
|
218
|
+
border-right: 5px solid transparent;
|
|
219
|
+
border-top: 6px solid #d6d3d1;
|
|
220
|
+
}
|
|
221
|
+
.arrow-label {
|
|
222
|
+
position: absolute;
|
|
223
|
+
right: calc(50% + 16px);
|
|
224
|
+
font-size: 11px;
|
|
225
|
+
color: #a8a29e;
|
|
226
|
+
font-weight: 500;
|
|
227
|
+
}
|
|
228
|
+
|
|
229
|
+
/* Hit rate bar */
|
|
230
|
+
.hit-rate-section {
|
|
231
|
+
margin-top: 28px;
|
|
232
|
+
background: white;
|
|
233
|
+
border: 1px solid #e7e5e4;
|
|
234
|
+
border-radius: 10px;
|
|
235
|
+
padding: 20px;
|
|
236
|
+
}
|
|
237
|
+
.hit-rate-title {
|
|
238
|
+
font-size: 14px;
|
|
239
|
+
font-weight: 700;
|
|
240
|
+
color: #1c1917;
|
|
241
|
+
margin-bottom: 16px;
|
|
242
|
+
}
|
|
243
|
+
.hit-row {
|
|
244
|
+
display: flex;
|
|
245
|
+
align-items: center;
|
|
246
|
+
gap: 12px;
|
|
247
|
+
margin-bottom: 10px;
|
|
248
|
+
}
|
|
249
|
+
.hit-label {
|
|
250
|
+
font-size: 12px;
|
|
251
|
+
font-weight: 600;
|
|
252
|
+
color: #57534e;
|
|
253
|
+
width: 60px;
|
|
254
|
+
text-align: right;
|
|
255
|
+
flex-shrink: 0;
|
|
256
|
+
}
|
|
257
|
+
.hit-bar-container {
|
|
258
|
+
flex: 1;
|
|
259
|
+
height: 22px;
|
|
260
|
+
border-radius: 6px;
|
|
261
|
+
overflow: hidden;
|
|
262
|
+
display: flex;
|
|
263
|
+
background: #f5f5f4;
|
|
264
|
+
}
|
|
265
|
+
.hit-bar-cached {
|
|
266
|
+
background: #6366f1;
|
|
267
|
+
height: 100%;
|
|
268
|
+
display: flex;
|
|
269
|
+
align-items: center;
|
|
270
|
+
justify-content: center;
|
|
271
|
+
color: white;
|
|
272
|
+
font-size: 10px;
|
|
273
|
+
font-weight: 700;
|
|
274
|
+
transition: width 0.3s;
|
|
275
|
+
}
|
|
276
|
+
.hit-bar-new {
|
|
277
|
+
background: #10b981;
|
|
278
|
+
height: 100%;
|
|
279
|
+
display: flex;
|
|
280
|
+
align-items: center;
|
|
281
|
+
justify-content: center;
|
|
282
|
+
color: white;
|
|
283
|
+
font-size: 10px;
|
|
284
|
+
font-weight: 700;
|
|
285
|
+
transition: width 0.3s;
|
|
286
|
+
}
|
|
287
|
+
.hit-value {
|
|
288
|
+
font-size: 12px;
|
|
289
|
+
font-weight: 700;
|
|
290
|
+
color: #6366f1;
|
|
291
|
+
width: 40px;
|
|
292
|
+
flex-shrink: 0;
|
|
293
|
+
}
|
|
294
|
+
|
|
295
|
+
/* Bottom note */
|
|
296
|
+
.note {
|
|
297
|
+
margin-top: 24px;
|
|
298
|
+
padding: 14px 18px;
|
|
299
|
+
background: #fffbeb;
|
|
300
|
+
border: 1px solid #fde68a;
|
|
301
|
+
border-radius: 10px;
|
|
302
|
+
font-size: 12px;
|
|
303
|
+
color: #92400e;
|
|
304
|
+
line-height: 1.7;
|
|
305
|
+
}
|
|
306
|
+
.note strong { color: #78350f; }
|
|
307
|
+
</style>
|
|
308
|
+
</head>
|
|
309
|
+
<body>
|
|
310
|
+
|
|
311
|
+
<div class="title">Prompt Caching 是如何工作的</div>
|
|
312
|
+
<div class="subtitle">在一次持续的 Claude Code 对话中,系统会自动将重复的上下文前缀缓存起来。随着对话轮次增加,缓存命中的比例越来越高,费用越来越低。</div>
|
|
313
|
+
|
|
314
|
+
<!-- Turn 1 -->
|
|
315
|
+
<div class="turn">
|
|
316
|
+
<div class="turn-label">
|
|
317
|
+
<span class="turn-badge">Turn 1</span>
|
|
318
|
+
<span class="turn-desc">第一轮对话 — 全部是新 Token,无缓存</span>
|
|
319
|
+
</div>
|
|
320
|
+
<div class="blocks">
|
|
321
|
+
<div class="block system" style="width: 25%;">System Prompt</div>
|
|
322
|
+
<div class="block new-input" style="width: 35%;">User Input</div>
|
|
323
|
+
<div class="block output" style="width: 40%;">Model Output</div>
|
|
324
|
+
</div>
|
|
325
|
+
<div class="cost-row">
|
|
326
|
+
<span class="cost-tag expensive">全额计费: $0.03/M</span>
|
|
327
|
+
<span style="font-size: 11px; color: #a8a29e;">— 所有输入按正常费率计算</span>
|
|
328
|
+
</div>
|
|
329
|
+
</div>
|
|
330
|
+
|
|
331
|
+
<div class="arrow-container">
|
|
332
|
+
<div class="arrow-down"></div>
|
|
333
|
+
<span class="arrow-label">上下文写入缓存</span>
|
|
334
|
+
</div>
|
|
335
|
+
|
|
336
|
+
<!-- Turn 2 -->
|
|
337
|
+
<div class="turn">
|
|
338
|
+
<div class="turn-label">
|
|
339
|
+
<span class="turn-badge">Turn 2</span>
|
|
340
|
+
<span class="turn-desc">第二轮对话 — 系统提示和第一轮对话被缓存命中</span>
|
|
341
|
+
</div>
|
|
342
|
+
<div class="blocks">
|
|
343
|
+
<div class="block cached" style="width: 22%;">System Prompt ✓</div>
|
|
344
|
+
<div class="block cached" style="width: 28%;">Turn 1 History ✓</div>
|
|
345
|
+
<div class="block new-input" style="width: 18%;">New Input</div>
|
|
346
|
+
<div class="block output" style="width: 32%;">Model Output</div>
|
|
347
|
+
</div>
|
|
348
|
+
<div class="cost-row">
|
|
349
|
+
<span class="cost-tag cheap">缓存计费: $0.003/M</span>
|
|
350
|
+
<span class="cost-tag free">新输入: $0.03/M</span>
|
|
351
|
+
<span style="font-size: 11px; color: #a8a29e;">— 50% 的输入从缓存读取,费用大幅降低</span>
|
|
352
|
+
</div>
|
|
353
|
+
</div>
|
|
354
|
+
|
|
355
|
+
<div class="arrow-container">
|
|
356
|
+
<div class="arrow-down"></div>
|
|
357
|
+
<span class="arrow-label">更多上下文写入缓存</span>
|
|
358
|
+
</div>
|
|
359
|
+
|
|
360
|
+
<!-- Turn 3 -->
|
|
361
|
+
<div class="turn">
|
|
362
|
+
<div class="turn-label">
|
|
363
|
+
<span class="turn-badge">Turn 3</span>
|
|
364
|
+
<span class="turn-desc">第三轮对话 — 大部分上下文已被缓存</span>
|
|
365
|
+
</div>
|
|
366
|
+
<div class="blocks">
|
|
367
|
+
<div class="block cached" style="width: 18%;">System Prompt ✓</div>
|
|
368
|
+
<div class="block cached" style="width: 22%;">Turn 1 ✓</div>
|
|
369
|
+
<div class="block cached" style="width: 20%;">Turn 2 ✓</div>
|
|
370
|
+
<div class="block new-input" style="width: 12%;">New Input</div>
|
|
371
|
+
<div class="block output" style="width: 28%;">Model Output</div>
|
|
372
|
+
</div>
|
|
373
|
+
<div class="cost-row">
|
|
374
|
+
<span class="cost-tag cheap">缓存: $0.003/M</span>
|
|
375
|
+
<span class="cost-tag free">新输入: $0.03/M</span>
|
|
376
|
+
<span style="font-size: 11px; color: #a8a29e;">— 仅 16% 按正常费率,其余全部 1/10 价格</span>
|
|
377
|
+
</div>
|
|
378
|
+
</div>
|
|
379
|
+
|
|
380
|
+
<!-- Legend -->
|
|
381
|
+
<div class="legend">
|
|
382
|
+
<div class="legend-item">
|
|
383
|
+
<div class="legend-dot" style="background: #6366f1;"></div>
|
|
384
|
+
缓存命中 (1/10 价格)
|
|
385
|
+
</div>
|
|
386
|
+
<div class="legend-item">
|
|
387
|
+
<div class="legend-dot" style="background: #10b981;"></div>
|
|
388
|
+
新输入 (正常价格)
|
|
389
|
+
</div>
|
|
390
|
+
<div class="legend-item">
|
|
391
|
+
<div class="legend-dot" style="background: #f59e0b;"></div>
|
|
392
|
+
模型输出
|
|
393
|
+
</div>
|
|
394
|
+
</div>
|
|
395
|
+
|
|
396
|
+
<!-- Cache Hit Rate -->
|
|
397
|
+
<div class="hit-rate-section">
|
|
398
|
+
<div class="hit-rate-title">缓存命中率变化趋势</div>
|
|
399
|
+
<div class="hit-row">
|
|
400
|
+
<span class="hit-label">Turn 1</span>
|
|
401
|
+
<div class="hit-bar-container">
|
|
402
|
+
<div class="hit-bar-cached" style="width: 0%;"></div>
|
|
403
|
+
<div class="hit-bar-new" style="width: 100%;">100%</div>
|
|
404
|
+
</div>
|
|
405
|
+
<span class="hit-value" style="color: #dc2626;">0%</span>
|
|
406
|
+
</div>
|
|
407
|
+
<div class="hit-row">
|
|
408
|
+
<span class="hit-label">Turn 2</span>
|
|
409
|
+
<div class="hit-bar-container">
|
|
410
|
+
<div class="hit-bar-cached" style="width: 50%;">缓存</div>
|
|
411
|
+
<div class="hit-bar-new" style="width: 50%;">新</div>
|
|
412
|
+
</div>
|
|
413
|
+
<span class="hit-value">50%</span>
|
|
414
|
+
</div>
|
|
415
|
+
<div class="hit-row">
|
|
416
|
+
<span class="hit-label">Turn 3</span>
|
|
417
|
+
<div class="hit-bar-container">
|
|
418
|
+
<div class="hit-bar-cached" style="width: 75%;">缓存命中</div>
|
|
419
|
+
<div class="hit-bar-new" style="width: 25%;">新</div>
|
|
420
|
+
</div>
|
|
421
|
+
<span class="hit-value">75%</span>
|
|
422
|
+
</div>
|
|
423
|
+
<div class="hit-row">
|
|
424
|
+
<span class="hit-label">Turn 5+</span>
|
|
425
|
+
<div class="hit-bar-container">
|
|
426
|
+
<div class="hit-bar-cached" style="width: 90%;">缓存命中 — 几乎全部从缓存读取</div>
|
|
427
|
+
<div class="hit-bar-new" style="width: 10%;"></div>
|
|
428
|
+
</div>
|
|
429
|
+
<span class="hit-value">90%+</span>
|
|
430
|
+
</div>
|
|
431
|
+
</div>
|
|
432
|
+
|
|
433
|
+
<!-- Key insights -->
|
|
434
|
+
<div class="annotation">
|
|
435
|
+
<div class="anno-card">
|
|
436
|
+
<div class="anno-title">什么样的请求会产生缓存?</div>
|
|
437
|
+
<div class="anno-text">
|
|
438
|
+
只要上下文的<strong>前缀相同</strong>,就会命中缓存。在同一会话中,System Prompt 和之前的对话历史构成固定前缀,每轮只会增加新的内容。这就是为什么对话越长,缓存命中率越高。
|
|
439
|
+
</div>
|
|
440
|
+
</div>
|
|
441
|
+
<div class="anno-card highlight">
|
|
442
|
+
<div class="anno-title">实际省多少?</div>
|
|
443
|
+
<div class="anno-text">
|
|
444
|
+
以 Sonnet 为例:正常输入 $3.00/M,缓存输入 $0.30/M。<br>
|
|
445
|
+
一个 10 轮对话中,假设累计输入 100 万 Token,其中 80 万命中缓存:<br>
|
|
446
|
+
<strong>节省 = 80万 × ($3.00 - $0.30) / 100万 = $2.16</strong>
|
|
447
|
+
</div>
|
|
448
|
+
</div>
|
|
449
|
+
</div>
|
|
450
|
+
|
|
451
|
+
<div class="note">
|
|
452
|
+
<strong>为什么缓存不是免费的?</strong> 缓存只跳过了 Token 的编码阶段,但命中的 Token 仍需通过模型的 Attention 层参与推理计算,同时 KV Cache 需要常驻 GPU 显存。所以 Anthropic 和 OpenAI 的定价策略都是缓存输入按正常价格的 <strong>1/10</strong> 计费,而非免费。
|
|
453
|
+
</div>
|
|
454
|
+
|
|
455
|
+
</body>
|
|
456
|
+
</html>
|
|
Binary file
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
3
|
+
<plist version="1.0">
|
|
4
|
+
<dict>
|
|
5
|
+
<key>com.apple.security.cs.allow-jit</key>
|
|
6
|
+
<true/>
|
|
7
|
+
<key>com.apple.security.cs.allow-unsigned-executable-memory</key>
|
|
8
|
+
<true/>
|
|
9
|
+
</dict>
|
|
10
|
+
</plist>
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
/*! tailwindcss v4.2.2 | MIT License | https://tailwindcss.com */@layer properties{@supports (((-webkit-hyphens:none)) and (not (margin-trim:inline))) or ((-moz-orient:inline) and (not (color:rgb(from red r g b)))){*,:before,:after,::backdrop{--tw-translate-x:0;--tw-translate-y:0;--tw-translate-z:0;--tw-space-y-reverse:0;--tw-border-style:solid;--tw-leading:initial;--tw-font-weight:initial;--tw-tracking:initial;--tw-shadow:0 0 #0000;--tw-shadow-color:initial;--tw-shadow-alpha:100%;--tw-inset-shadow:0 0 #0000;--tw-inset-shadow-color:initial;--tw-inset-shadow-alpha:100%;--tw-ring-color:initial;--tw-ring-shadow:0 0 #0000;--tw-inset-ring-color:initial;--tw-inset-ring-shadow:0 0 #0000;--tw-ring-inset:initial;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-offset-shadow:0 0 #0000;--tw-blur:initial;--tw-brightness:initial;--tw-contrast:initial;--tw-grayscale:initial;--tw-hue-rotate:initial;--tw-invert:initial;--tw-opacity:initial;--tw-saturate:initial;--tw-sepia:initial;--tw-drop-shadow:initial;--tw-drop-shadow-color:initial;--tw-drop-shadow-alpha:100%;--tw-drop-shadow-size:initial;--tw-duration:initial}}}@layer theme{:root,:host{--font-sans:"Geist", "Geist Fallback", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;--font-mono:"Geist Mono", "Geist Mono Fallback", ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;--color-red-50:oklch(97.1% .013 17.38);--color-red-200:oklch(88.5% .062 18.334);--color-red-600:oklch(57.7% .245 27.325);--color-orange-600:oklch(64.6% .222 41.116);--color-amber-50:oklch(98.7% .022 95.277);--color-amber-200:oklch(92.4% .12 95.746);--color-amber-400:oklch(82.8% .189 84.429);--color-amber-600:oklch(66.6% .179 58.318);--color-amber-700:oklch(55.5% .163 48.998);--color-emerald-50:oklch(97.9% .021 166.113);--color-emerald-100:oklch(95% .052 163.051);--color-emerald-200:oklch(90.5% .093 164.15);--color-emerald-400:oklch(76.5% .177 163.223);--color-emerald-500:oklch(69.6% .17 162.48);--color-emerald-600:oklch(59.6% .145 163.225);--color-emerald-700:oklch(50.8% .118 165.612);--color-indigo-50:oklch(96.2% .018 272.314);--color-indigo-500:oklch(58.5% .233 277.117);--color-indigo-600:oklch(51.1% .262 276.966);--color-stone-50:oklch(98.5% .001 106.423);--color-stone-100:oklch(97% .001 106.424);--color-stone-200:oklch(92.3% .003 48.717);--color-stone-400:oklch(70.9% .01 56.259);--color-stone-500:oklch(55.3% .013 58.071);--color-stone-600:oklch(44.4% .011 73.639);--color-stone-700:oklch(37.4% .01 67.558);--color-stone-800:oklch(26.8% .007 34.298);--color-stone-900:oklch(21.6% .006 56.043);--color-white:#fff;--spacing:.25rem;--text-xs:.75rem;--text-xs--line-height:calc(1 / .75);--text-sm:.875rem;--text-sm--line-height:calc(1.25 / .875);--text-base:1rem;--text-base--line-height: 1.5 ;--text-lg:1.125rem;--text-lg--line-height:calc(1.75 / 1.125);--text-2xl:1.5rem;--text-2xl--line-height:calc(2 / 1.5);--text-3xl:1.875rem;--text-3xl--line-height: 1.2 ;--font-weight-medium:500;--font-weight-semibold:600;--font-weight-bold:700;--font-weight-extrabold:800;--font-weight-black:900;--tracking-tighter:-.05em;--tracking-tight:-.025em;--tracking-wide:.025em;--tracking-wider:.05em;--leading-relaxed:1.625;--radius-md:.375rem;--radius-lg:.5rem;--radius-xl:.75rem;--radius-2xl:1rem;--animate-spin:spin 1s linear infinite;--default-transition-duration:.15s;--default-transition-timing-function:cubic-bezier(.4, 0, .2, 1);--default-font-family:var(--font-sans);--default-mono-font-family:var(--font-mono)}}@layer base{*,:after,:before,::backdrop{box-sizing:border-box;border:0 solid;margin:0;padding:0}::file-selector-button{box-sizing:border-box;border:0 solid;margin:0;padding:0}html,:host{-webkit-text-size-adjust:100%;-moz-tab-size:4;tab-size:4;line-height:1.5;font-family:var(--default-font-family,ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");font-feature-settings:var(--default-font-feature-settings,normal);font-variation-settings:var(--default-font-variation-settings,normal);-webkit-tap-highlight-color:transparent}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;-webkit-text-decoration:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,samp,pre{font-family:var(--default-mono-font-family,ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);font-feature-settings:var(--default-mono-font-feature-settings,normal);font-variation-settings:var(--default-mono-font-variation-settings,normal);font-size:1em}small{font-size:80%}sub,sup{vertical-align:baseline;font-size:75%;line-height:0;position:relative}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}:-moz-focusring{outline:auto}progress{vertical-align:baseline}summary{display:list-item}ol,ul,menu{list-style:none}img,svg,video,canvas,audio,iframe,embed,object{vertical-align:middle;display:block}img,video{max-width:100%;height:auto}button,input,select,optgroup,textarea{font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;color:inherit;opacity:1;background-color:#0000;border-radius:0}::file-selector-button{font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;color:inherit;opacity:1;background-color:#0000;border-radius:0}:where(select:is([multiple],[size])) optgroup{font-weight:bolder}:where(select:is([multiple],[size])) optgroup option{padding-inline-start:20px}::file-selector-button{margin-inline-end:4px}::placeholder{opacity:1}@supports (not ((-webkit-appearance:-apple-pay-button))) or (contain-intrinsic-size:1px){::placeholder{color:currentColor}@supports (color:color-mix(in lab,red,red)){::placeholder{color:color-mix(in oklab,currentcolor 50%,transparent)}}}textarea{resize:vertical}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-date-and-time-value{min-height:1lh;text-align:inherit}::-webkit-datetime-edit{display:inline-flex}::-webkit-datetime-edit-fields-wrapper{padding:0}::-webkit-datetime-edit{padding-block:0}::-webkit-datetime-edit-year-field{padding-block:0}::-webkit-datetime-edit-month-field{padding-block:0}::-webkit-datetime-edit-day-field{padding-block:0}::-webkit-datetime-edit-hour-field{padding-block:0}::-webkit-datetime-edit-minute-field{padding-block:0}::-webkit-datetime-edit-second-field{padding-block:0}::-webkit-datetime-edit-millisecond-field{padding-block:0}::-webkit-datetime-edit-meridiem-field{padding-block:0}::-webkit-calendar-picker-indicator{line-height:1}:-moz-ui-invalid{box-shadow:none}button,input:where([type=button],[type=reset],[type=submit]){-webkit-appearance:button;-moz-appearance:button;appearance:button}::file-selector-button{-webkit-appearance:button;-moz-appearance:button;appearance:button}::-webkit-inner-spin-button{height:auto}::-webkit-outer-spin-button{height:auto}[hidden]:where(:not([hidden=until-found])){display:none!important}}@layer components;@layer utilities{.pointer-events-none{pointer-events:none}.collapse{visibility:collapse}.visible{visibility:visible}.absolute{position:absolute}.relative{position:relative}.static{position:static}.start{inset-inline-start:var(--spacing)}.-top-1\.5{top:calc(var(--spacing) * -1.5)}.top-full{top:100%}.bottom-full{bottom:100%}.left-1\/2{left:50%}.z-20{z-index:20}.z-50{z-index:50}.mx-auto{margin-inline:auto}.mt-0\.5{margin-top:calc(var(--spacing) * .5)}.mt-1{margin-top:calc(var(--spacing) * 1)}.mt-1\.5{margin-top:calc(var(--spacing) * 1.5)}.mt-2{margin-top:calc(var(--spacing) * 2)}.mt-2\.5{margin-top:calc(var(--spacing) * 2.5)}.mr-2{margin-right:calc(var(--spacing) * 2)}.mb-0\.5{margin-bottom:calc(var(--spacing) * .5)}.mb-1{margin-bottom:calc(var(--spacing) * 1)}.mb-1\.5{margin-bottom:calc(var(--spacing) * 1.5)}.mb-2{margin-bottom:calc(var(--spacing) * 2)}.mb-2\.5{margin-bottom:calc(var(--spacing) * 2.5)}.mb-3{margin-bottom:calc(var(--spacing) * 3)}.mb-4{margin-bottom:calc(var(--spacing) * 4)}.mb-5{margin-bottom:calc(var(--spacing) * 5)}.mb-6{margin-bottom:calc(var(--spacing) * 6)}.mb-8{margin-bottom:calc(var(--spacing) * 8)}.ml-10{margin-left:calc(var(--spacing) * 10)}.block{display:block}.flex{display:flex}.grid{display:grid}.hidden{display:none}.inline-block{display:inline-block}.table{display:table}.h-1\.5{height:calc(var(--spacing) * 1.5)}.h-3{height:calc(var(--spacing) * 3)}.h-3\.5{height:calc(var(--spacing) * 3.5)}.h-4{height:calc(var(--spacing) * 4)}.h-6{height:calc(var(--spacing) * 6)}.h-8{height:calc(var(--spacing) * 8)}.h-10{height:calc(var(--spacing) * 10)}.h-20{height:calc(var(--spacing) * 20)}.h-48{height:calc(var(--spacing) * 48)}.h-64{height:calc(var(--spacing) * 64)}.h-72{height:calc(var(--spacing) * 72)}.h-\[22px\]{height:22px}.h-\[44px\]{height:44px}.min-h-0{min-height:calc(var(--spacing) * 0)}.min-h-dvh{min-height:100dvh}.w-1\.5{width:calc(var(--spacing) * 1.5)}.w-3{width:calc(var(--spacing) * 3)}.w-3\.5{width:calc(var(--spacing) * 3.5)}.w-4{width:calc(var(--spacing) * 4)}.w-6{width:calc(var(--spacing) * 6)}.w-8{width:calc(var(--spacing) * 8)}.w-20{width:calc(var(--spacing) * 20)}.w-48{width:calc(var(--spacing) * 48)}.w-72{width:calc(var(--spacing) * 72)}.w-\[320px\]{width:320px}.w-fit{width:fit-content}.w-full{width:100%}.w-px{width:1px}.max-w-\[200px\]{max-width:200px}.max-w-\[220px\]{max-width:220px}.max-w-\[1440px\]{max-width:1440px}.flex-1{flex:1}.shrink-0{flex-shrink:0}.-translate-x-1\/2{--tw-translate-x: -50% ;translate:var(--tw-translate-x) var(--tw-translate-y)}.rotate-45{rotate:45deg}.animate-spin{animation:var(--animate-spin)}.grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))}.grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.flex-col{flex-direction:column}.flex-wrap{flex-wrap:wrap}.items-center{align-items:center}.items-start{align-items:flex-start}.justify-around{justify-content:space-around}.justify-between{justify-content:space-between}.justify-center{justify-content:center}.gap-0\.5{gap:calc(var(--spacing) * .5)}.gap-1{gap:calc(var(--spacing) * 1)}.gap-1\.5{gap:calc(var(--spacing) * 1.5)}.gap-2{gap:calc(var(--spacing) * 2)}.gap-3{gap:calc(var(--spacing) * 3)}.gap-4{gap:calc(var(--spacing) * 4)}.gap-5{gap:calc(var(--spacing) * 5)}.gap-6{gap:calc(var(--spacing) * 6)}:where(.space-y-1>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing) * 1) * var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing) * 1) * calc(1 - var(--tw-space-y-reverse)))}.truncate{text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.overflow-x-auto{overflow-x:auto}.rounded{border-radius:.25rem}.rounded-2xl{border-radius:var(--radius-2xl)}.rounded-\[3px\]{border-radius:3px}.rounded-full{border-radius:3.40282e38px}.rounded-lg{border-radius:var(--radius-lg)}.rounded-md{border-radius:var(--radius-md)}.rounded-xl{border-radius:var(--radius-xl)}.border{border-style:var(--tw-border-style);border-width:1px}.border-t{border-top-style:var(--tw-border-style);border-top-width:1px}.border-b{border-bottom-style:var(--tw-border-style);border-bottom-width:1px}.border-l{border-left-style:var(--tw-border-style);border-left-width:1px}.border-amber-200\/60{border-color:#fee68599}@supports (color:color-mix(in lab,red,red)){.border-amber-200\/60{border-color:color-mix(in oklab,var(--color-amber-200) 60%,transparent)}}.border-emerald-100\/50{border-color:#d0fae580}@supports (color:color-mix(in lab,red,red)){.border-emerald-100\/50{border-color:color-mix(in oklab,var(--color-emerald-100) 50%,transparent)}}.border-red-200\/60{border-color:#ffcaca99}@supports (color:color-mix(in lab,red,red)){.border-red-200\/60{border-color:color-mix(in oklab,var(--color-red-200) 60%,transparent)}}.border-stone-100{border-color:var(--color-stone-100)}.border-stone-200{border-color:var(--color-stone-200)}.border-stone-200\/40{border-color:#e7e5e466}@supports (color:color-mix(in lab,red,red)){.border-stone-200\/40{border-color:color-mix(in oklab,var(--color-stone-200) 40%,transparent)}}.border-stone-200\/50{border-color:#e7e5e480}@supports (color:color-mix(in lab,red,red)){.border-stone-200\/50{border-color:color-mix(in oklab,var(--color-stone-200) 50%,transparent)}}.border-stone-200\/60{border-color:#e7e5e499}@supports (color:color-mix(in lab,red,red)){.border-stone-200\/60{border-color:color-mix(in oklab,var(--color-stone-200) 60%,transparent)}}.bg-amber-50{background-color:var(--color-amber-50)}.bg-emerald-50\/50{background-color:#ecfdf580}@supports (color:color-mix(in lab,red,red)){.bg-emerald-50\/50{background-color:color-mix(in oklab,var(--color-emerald-50) 50%,transparent)}}.bg-emerald-200\/50{background-color:#a4f4cf80}@supports (color:color-mix(in lab,red,red)){.bg-emerald-200\/50{background-color:color-mix(in oklab,var(--color-emerald-200) 50%,transparent)}}.bg-indigo-50{background-color:var(--color-indigo-50)}.bg-indigo-50\/50{background-color:#eef2ff80}@supports (color:color-mix(in lab,red,red)){.bg-indigo-50\/50{background-color:color-mix(in oklab,var(--color-indigo-50) 50%,transparent)}}.bg-red-50{background-color:var(--color-red-50)}.bg-stone-50{background-color:var(--color-stone-50)}.bg-stone-50\/40{background-color:#fafaf966}@supports (color:color-mix(in lab,red,red)){.bg-stone-50\/40{background-color:color-mix(in oklab,var(--color-stone-50) 40%,transparent)}}.bg-stone-100{background-color:var(--color-stone-100)}.bg-stone-200\/50{background-color:#e7e5e480}@supports (color:color-mix(in lab,red,red)){.bg-stone-200\/50{background-color:color-mix(in oklab,var(--color-stone-200) 50%,transparent)}}.bg-stone-200\/60{background-color:#e7e5e499}@supports (color:color-mix(in lab,red,red)){.bg-stone-200\/60{background-color:color-mix(in oklab,var(--color-stone-200) 60%,transparent)}}.bg-stone-800{background-color:var(--color-stone-800)}.bg-stone-900{background-color:var(--color-stone-900)}.bg-white{background-color:var(--color-white)}.bg-\[radial-gradient\(ellipse_at_top\,\#eef2ff_0\%\,\#faf9f7_35\%\,\#faf9f7_100\%\)\]{background-image:radial-gradient(at top,#eef2ff,#faf9f7 35%,#faf9f7)}.p-0\.5{padding:calc(var(--spacing) * .5)}.p-1{padding:calc(var(--spacing) * 1)}.p-4{padding:calc(var(--spacing) * 4)}.p-5{padding:calc(var(--spacing) * 5)}.px-2{padding-inline:calc(var(--spacing) * 2)}.px-2\.5{padding-inline:calc(var(--spacing) * 2.5)}.px-3{padding-inline:calc(var(--spacing) * 3)}.px-3\.5{padding-inline:calc(var(--spacing) * 3.5)}.px-4{padding-inline:calc(var(--spacing) * 4)}.px-5{padding-inline:calc(var(--spacing) * 5)}.px-6{padding-inline:calc(var(--spacing) * 6)}.py-0\.5{padding-block:calc(var(--spacing) * .5)}.py-1{padding-block:calc(var(--spacing) * 1)}.py-1\.5{padding-block:calc(var(--spacing) * 1.5)}.py-2{padding-block:calc(var(--spacing) * 2)}.py-2\.5{padding-block:calc(var(--spacing) * 2.5)}.py-3{padding-block:calc(var(--spacing) * 3)}.py-8{padding-block:calc(var(--spacing) * 8)}.py-10{padding-block:calc(var(--spacing) * 10)}.pt-0\.5{padding-top:calc(var(--spacing) * .5)}.pt-1{padding-top:calc(var(--spacing) * 1)}.pt-2\.5{padding-top:calc(var(--spacing) * 2.5)}.pb-0\.5{padding-bottom:calc(var(--spacing) * .5)}.pb-2{padding-bottom:calc(var(--spacing) * 2)}.text-center{text-align:center}.text-left{text-align:left}.text-right{text-align:right}.font-mono{font-family:var(--font-mono)}.text-2xl{font-size:var(--text-2xl);line-height:var(--tw-leading,var(--text-2xl--line-height))}.text-3xl{font-size:var(--text-3xl);line-height:var(--tw-leading,var(--text-3xl--line-height))}.text-base{font-size:var(--text-base);line-height:var(--tw-leading,var(--text-base--line-height))}.text-lg{font-size:var(--text-lg);line-height:var(--tw-leading,var(--text-lg--line-height))}.text-sm{font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height))}.text-xs{font-size:var(--text-xs);line-height:var(--tw-leading,var(--text-xs--line-height))}.text-\[9px\]{font-size:9px}.text-\[10px\]{font-size:10px}.text-\[11px\]{font-size:11px}.text-\[12px\]{font-size:12px}.text-\[13px\]{font-size:13px}.text-\[14px\]{font-size:14px}.text-\[15px\]{font-size:15px}.leading-relaxed{--tw-leading:var(--leading-relaxed);line-height:var(--leading-relaxed)}.font-black{--tw-font-weight:var(--font-weight-black);font-weight:var(--font-weight-black)}.font-bold{--tw-font-weight:var(--font-weight-bold);font-weight:var(--font-weight-bold)}.font-extrabold{--tw-font-weight:var(--font-weight-extrabold);font-weight:var(--font-weight-extrabold)}.font-medium{--tw-font-weight:var(--font-weight-medium);font-weight:var(--font-weight-medium)}.font-semibold{--tw-font-weight:var(--font-weight-semibold);font-weight:var(--font-weight-semibold)}.tracking-tight{--tw-tracking:var(--tracking-tight);letter-spacing:var(--tracking-tight)}.tracking-tighter{--tw-tracking:var(--tracking-tighter);letter-spacing:var(--tracking-tighter)}.tracking-wide{--tw-tracking:var(--tracking-wide);letter-spacing:var(--tracking-wide)}.tracking-wider{--tw-tracking:var(--tracking-wider);letter-spacing:var(--tracking-wider)}.whitespace-nowrap{white-space:nowrap}.text-amber-400{color:var(--color-amber-400)}.text-amber-600{color:var(--color-amber-600)}.text-amber-700{color:var(--color-amber-700)}.text-emerald-500{color:var(--color-emerald-500)}.text-emerald-600{color:var(--color-emerald-600)}.text-emerald-600\/70{color:#009767b3}@supports (color:color-mix(in lab,red,red)){.text-emerald-600\/70{color:color-mix(in oklab,var(--color-emerald-600) 70%,transparent)}}.text-emerald-700\/80{color:#007956cc}@supports (color:color-mix(in lab,red,red)){.text-emerald-700\/80{color:color-mix(in oklab,var(--color-emerald-700) 80%,transparent)}}.text-indigo-500\/70{color:#625fffb3}@supports (color:color-mix(in lab,red,red)){.text-indigo-500\/70{color:color-mix(in oklab,var(--color-indigo-500) 70%,transparent)}}.text-indigo-600{color:var(--color-indigo-600)}.text-orange-600{color:var(--color-orange-600)}.text-red-600{color:var(--color-red-600)}.text-stone-400{color:var(--color-stone-400)}.text-stone-500{color:var(--color-stone-500)}.text-stone-600{color:var(--color-stone-600)}.text-stone-700{color:var(--color-stone-700)}.text-stone-800{color:var(--color-stone-800)}.text-stone-900{color:var(--color-stone-900)}.text-white{color:var(--color-white)}.uppercase{text-transform:uppercase}.antialiased{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.opacity-0{opacity:0}.opacity-25{opacity:.25}.opacity-75{opacity:.75}.shadow-\[0_1px_3px_rgba\(0\,0\,0\,0\.1\)\]{--tw-shadow:0 1px 3px var(--tw-shadow-color,#0000001a);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-\[0_1px_3px_rgba\(120\,113\,108\,0\.06\)\]{--tw-shadow:0 1px 3px var(--tw-shadow-color,#78716c0f);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-\[0_8px_30px_rgba\(120\,113\,108\,0\.12\)\]{--tw-shadow:0 8px 30px var(--tw-shadow-color,#78716c1f);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-\[0_8px_30px_rgba\(120\,113\,108\,0\.15\)\]{--tw-shadow:0 8px 30px var(--tw-shadow-color,#78716c26);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-inner{--tw-shadow:inset 0 2px 4px 0 var(--tw-shadow-color,#0000000d);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-lg{--tw-shadow:0 10px 15px -3px var(--tw-shadow-color,#0000001a), 0 4px 6px -4px var(--tw-shadow-color,#0000001a);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-sm{--tw-shadow:0 1px 3px 0 var(--tw-shadow-color,#0000001a), 0 1px 2px -1px var(--tw-shadow-color,#0000001a);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.ring-1{--tw-ring-shadow:var(--tw-ring-inset,) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.ring-stone-900\/5{--tw-ring-color:#1c19170d}@supports (color:color-mix(in lab,red,red)){.ring-stone-900\/5{--tw-ring-color:color-mix(in oklab, var(--color-stone-900) 5%, transparent)}}.filter{filter:var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,)}.transition{transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to,opacity,box-shadow,transform,translate,scale,rotate,filter,-webkit-backdrop-filter,backdrop-filter,display,content-visibility,overlay,pointer-events;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.transition-all{transition-property:all;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.transition-colors{transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.transition-shadow{transition-property:box-shadow;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.duration-200{--tw-duration:.2s;transition-duration:.2s}.outline-none{--tw-outline-style:none;outline-style:none}@media(hover:hover){.group-hover\:opacity-100:is(:where(.group):hover *){opacity:1}.hover\:z-10:hover{z-index:10}.hover\:bg-indigo-50:hover{background-color:var(--color-indigo-50)}.hover\:bg-stone-50:hover{background-color:var(--color-stone-50)}.hover\:bg-stone-50\/60:hover{background-color:#fafaf999}@supports (color:color-mix(in lab,red,red)){.hover\:bg-stone-50\/60:hover{background-color:color-mix(in oklab,var(--color-stone-50) 60%,transparent)}}.hover\:bg-stone-200\/50:hover{background-color:#e7e5e480}@supports (color:color-mix(in lab,red,red)){.hover\:bg-stone-200\/50:hover{background-color:color-mix(in oklab,var(--color-stone-200) 50%,transparent)}}.hover\:text-indigo-600:hover{color:var(--color-indigo-600)}.hover\:text-stone-800:hover{color:var(--color-stone-800)}.hover\:shadow-\[0_4px_12px_rgba\(120\,113\,108\,0\.09\)\]:hover{--tw-shadow:0 4px 12px var(--tw-shadow-color,#78716c17);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.hover\:ring-2:hover{--tw-ring-shadow:var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.hover\:ring-emerald-400:hover{--tw-ring-color:var(--color-emerald-400)}.hover\:ring-offset-1:hover{--tw-ring-offset-width:1px;--tw-ring-offset-shadow:var(--tw-ring-inset,) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color)}}.focus\:border-indigo-500:focus{border-color:var(--color-indigo-500)}.focus\:ring-2:focus{--tw-ring-shadow:var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.focus\:ring-indigo-500\/20:focus{--tw-ring-color:#625fff33}@supports (color:color-mix(in lab,red,red)){.focus\:ring-indigo-500\/20:focus{--tw-ring-color:color-mix(in oklab, var(--color-indigo-500) 20%, transparent)}}@media(min-width:40rem){.sm\:block{display:block}}@media(min-width:48rem){.md\:grid-cols-5{grid-template-columns:repeat(5,minmax(0,1fr))}.md\:grid-cols-6{grid-template-columns:repeat(6,minmax(0,1fr))}.md\:flex-row{flex-direction:row}.md\:items-center{align-items:center}}@media(min-width:64rem){.lg\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}}}html,body{background-color:#faf9f7!important}@font-face{font-family:Geist;src:url(https://cdn.jsdelivr.net/npm/geist@1.3.1/dist/fonts/geist-sans/Geist-Variable.woff2)format("woff2");font-weight:100 900;font-display:swap;font-style:normal}@font-face{font-family:Geist Mono;src:url(https://cdn.jsdelivr.net/npm/geist@1.3.1/dist/fonts/geist-mono/GeistMono-Variable.woff2)format("woff2");font-weight:100 900;font-display:swap;font-style:normal}body:before{content:"";z-index:9999;pointer-events:none;opacity:.015;background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");background-repeat:repeat;background-size:200px 200px;position:fixed;top:0;right:0;bottom:0;left:0}.recharts-cartesian-grid-horizontal line,.recharts-cartesian-grid-vertical line{stroke:#e7e5e4}.recharts-text{fill:#78716c;font-family:var(--font-sans);font-size:11px}.recharts-legend-item-text{color:#57534e;font-size:12px}.recharts-tooltip-wrapper{outline:none}::-webkit-scrollbar{width:6px;height:6px}::-webkit-scrollbar-track{background:0 0}::-webkit-scrollbar-thumb{background:#c8c4be;border-radius:3px}::-webkit-scrollbar-thumb:hover{background:#a8a29e}@keyframes shimmer{0%{background-position:-200% 0}to{background-position:200% 0}}.skeleton{background:linear-gradient(90deg,#e7e5e4 25%,#d6d3d1,#e7e5e4 75%) 0 0/200% 100%;animation:1.5s ease-in-out infinite shimmer}@property --tw-translate-x{syntax:"*";inherits:false;initial-value:0}@property --tw-translate-y{syntax:"*";inherits:false;initial-value:0}@property --tw-translate-z{syntax:"*";inherits:false;initial-value:0}@property --tw-space-y-reverse{syntax:"*";inherits:false;initial-value:0}@property --tw-border-style{syntax:"*";inherits:false;initial-value:solid}@property --tw-leading{syntax:"*";inherits:false}@property --tw-font-weight{syntax:"*";inherits:false}@property --tw-tracking{syntax:"*";inherits:false}@property --tw-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-shadow-color{syntax:"*";inherits:false}@property --tw-shadow-alpha{syntax:"<percentage>";inherits:false;initial-value:100%}@property --tw-inset-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-inset-shadow-color{syntax:"*";inherits:false}@property --tw-inset-shadow-alpha{syntax:"<percentage>";inherits:false;initial-value:100%}@property --tw-ring-color{syntax:"*";inherits:false}@property --tw-ring-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-inset-ring-color{syntax:"*";inherits:false}@property --tw-inset-ring-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-ring-inset{syntax:"*";inherits:false}@property --tw-ring-offset-width{syntax:"<length>";inherits:false;initial-value:0}@property --tw-ring-offset-color{syntax:"*";inherits:false;initial-value:#fff}@property --tw-ring-offset-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-blur{syntax:"*";inherits:false}@property --tw-brightness{syntax:"*";inherits:false}@property --tw-contrast{syntax:"*";inherits:false}@property --tw-grayscale{syntax:"*";inherits:false}@property --tw-hue-rotate{syntax:"*";inherits:false}@property --tw-invert{syntax:"*";inherits:false}@property --tw-opacity{syntax:"*";inherits:false}@property --tw-saturate{syntax:"*";inherits:false}@property --tw-sepia{syntax:"*";inherits:false}@property --tw-drop-shadow{syntax:"*";inherits:false}@property --tw-drop-shadow-color{syntax:"*";inherits:false}@property --tw-drop-shadow-alpha{syntax:"<percentage>";inherits:false;initial-value:100%}@property --tw-drop-shadow-size{syntax:"*";inherits:false}@property --tw-duration{syntax:"*";inherits:false}@keyframes spin{to{transform:rotate(360deg)}}
|