@vellira-ui/tokens 2.26.0 → 2.27.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/dist/css/tokens.css +721 -352
- package/dist/dark/components/button.d.ts +263 -95
- package/dist/dark/components/button.d.ts.map +1 -1
- package/dist/dark/components/button.js +136 -151
- package/dist/dark/components/checkbox.d.ts +4 -3
- package/dist/dark/components/checkbox.d.ts.map +1 -1
- package/dist/dark/components/checkbox.js +2 -3
- package/dist/dark/components/formField.d.ts +1 -1
- package/dist/dark/components/input.d.ts +3 -3
- package/dist/dark/components/radio.d.ts +1 -1
- package/dist/dark/components/tabs.d.ts +1 -1
- package/dist/dark/semantic/action.d.ts +8 -8
- package/dist/dark/semantic/action.js +6 -6
- package/dist/dark/semantic/control.d.ts +2 -2
- package/dist/dark/semantic/icons.d.ts +1 -1
- package/dist/dark/semantic/status.d.ts +4 -4
- package/dist/dark/semantic/text.d.ts +1 -1
- package/dist/dark/theme.d.ts +12 -12
- package/dist/generated/token-types.d.ts +4 -4
- package/dist/generated/token-types.d.ts.map +1 -1
- package/dist/generated/token-types.js +708 -216
- package/dist/highContrast/components/button.d.ts +264 -96
- package/dist/highContrast/components/button.d.ts.map +1 -1
- package/dist/highContrast/components/button.js +135 -150
- package/dist/highContrast/components/checkbox.d.ts +1 -0
- package/dist/highContrast/components/checkbox.d.ts.map +1 -1
- package/dist/highContrast/components/checkbox.js +4 -1
- package/dist/highContrast/components/formField.d.ts +1 -1
- package/dist/highContrast/components/input.d.ts +3 -3
- package/dist/highContrast/semantic/action.d.ts +10 -10
- package/dist/highContrast/semantic/action.js +9 -9
- package/dist/highContrast/semantic/icons.d.ts +1 -1
- package/dist/highContrast/semantic/status.d.ts +5 -5
- package/dist/highContrast/theme.d.ts +12 -12
- package/dist/light/components/button.d.ts +264 -96
- package/dist/light/components/button.d.ts.map +1 -1
- package/dist/light/components/button.js +136 -151
- package/dist/light/components/checkbox.d.ts +1 -0
- package/dist/light/components/checkbox.d.ts.map +1 -1
- package/dist/light/components/checkbox.js +4 -1
- package/dist/light/components/formField.d.ts +2 -2
- package/dist/light/components/input.d.ts +3 -3
- package/dist/light/semantic/icons.d.ts +1 -1
- package/dist/light/semantic/status.d.ts +7 -7
- package/dist/light/semantic/status.js +3 -3
- package/dist/light/theme.d.ts +12 -12
- package/dist/primitives/colors.d.ts +12 -12
- package/dist/primitives/colors.js +12 -12
- package/dist/utils/createButtonPalette.d.ts +106 -0
- package/dist/utils/createButtonPalette.d.ts.map +1 -0
- package/dist/utils/createButtonPalette.js +72 -0
- package/package.json +1 -1
|
@@ -1,212 +1,380 @@
|
|
|
1
1
|
export declare const button: {
|
|
2
2
|
readonly primary: {
|
|
3
|
+
readonly ring: string;
|
|
3
4
|
readonly solid: {
|
|
5
|
+
default: import("../../utils/createButtonPalette.js").ButtonState;
|
|
6
|
+
hover: import("../../utils/createButtonPalette.js").ButtonState;
|
|
7
|
+
pressed: import("../../utils/createButtonPalette.js").ButtonState;
|
|
8
|
+
};
|
|
9
|
+
readonly outline: {
|
|
4
10
|
readonly default: {
|
|
5
|
-
readonly bg: "
|
|
6
|
-
readonly fg:
|
|
7
|
-
readonly border:
|
|
11
|
+
readonly bg: "transparent";
|
|
12
|
+
readonly fg: string;
|
|
13
|
+
readonly border: string;
|
|
8
14
|
};
|
|
9
15
|
readonly hover: {
|
|
10
|
-
readonly bg:
|
|
11
|
-
readonly fg:
|
|
12
|
-
readonly border:
|
|
16
|
+
readonly bg: string;
|
|
17
|
+
readonly fg: string;
|
|
18
|
+
readonly border: string;
|
|
13
19
|
};
|
|
14
20
|
readonly pressed: {
|
|
15
|
-
readonly bg:
|
|
16
|
-
readonly fg:
|
|
17
|
-
readonly border:
|
|
21
|
+
readonly bg: string;
|
|
22
|
+
readonly fg: string;
|
|
23
|
+
readonly border: string;
|
|
18
24
|
};
|
|
19
25
|
};
|
|
20
|
-
readonly
|
|
26
|
+
readonly ghost: {
|
|
21
27
|
readonly default: {
|
|
28
|
+
readonly fg: string;
|
|
22
29
|
readonly bg: "transparent";
|
|
23
|
-
readonly
|
|
24
|
-
readonly border: "#7C5CFF";
|
|
30
|
+
readonly border: "transparent";
|
|
25
31
|
};
|
|
26
32
|
readonly hover: {
|
|
27
|
-
readonly bg:
|
|
28
|
-
readonly fg:
|
|
29
|
-
readonly border: "
|
|
33
|
+
readonly bg: string;
|
|
34
|
+
readonly fg: string;
|
|
35
|
+
readonly border: "transparent";
|
|
30
36
|
};
|
|
31
37
|
readonly pressed: {
|
|
32
|
-
readonly bg:
|
|
33
|
-
readonly fg:
|
|
34
|
-
readonly border: "
|
|
38
|
+
readonly bg: string;
|
|
39
|
+
readonly fg: string;
|
|
40
|
+
readonly border: "transparent";
|
|
35
41
|
};
|
|
36
42
|
};
|
|
37
|
-
readonly
|
|
43
|
+
readonly soft: {
|
|
38
44
|
readonly default: {
|
|
39
|
-
readonly
|
|
45
|
+
readonly bg: string;
|
|
46
|
+
readonly fg: string;
|
|
47
|
+
readonly border: string;
|
|
48
|
+
};
|
|
49
|
+
readonly hover: {
|
|
50
|
+
readonly bg: string;
|
|
51
|
+
readonly fg: string;
|
|
52
|
+
readonly border: string;
|
|
53
|
+
};
|
|
54
|
+
readonly pressed: {
|
|
55
|
+
readonly bg: string;
|
|
56
|
+
readonly fg: string;
|
|
57
|
+
readonly border: string;
|
|
58
|
+
};
|
|
59
|
+
};
|
|
60
|
+
readonly link: {
|
|
61
|
+
readonly default: {
|
|
62
|
+
readonly fg: string;
|
|
40
63
|
readonly bg: "transparent";
|
|
41
64
|
readonly border: "transparent";
|
|
42
65
|
};
|
|
43
66
|
readonly hover: {
|
|
44
|
-
readonly
|
|
45
|
-
readonly
|
|
67
|
+
readonly fg: string;
|
|
68
|
+
readonly bg: "transparent";
|
|
46
69
|
readonly border: "transparent";
|
|
47
70
|
};
|
|
48
71
|
readonly pressed: {
|
|
49
|
-
readonly
|
|
50
|
-
readonly
|
|
72
|
+
readonly fg: string;
|
|
73
|
+
readonly bg: "transparent";
|
|
51
74
|
readonly border: "transparent";
|
|
52
75
|
};
|
|
53
76
|
};
|
|
54
77
|
};
|
|
55
|
-
readonly
|
|
78
|
+
readonly neutral: {
|
|
79
|
+
readonly ring: string;
|
|
56
80
|
readonly solid: {
|
|
81
|
+
default: import("../../utils/createButtonPalette.js").ButtonState;
|
|
82
|
+
hover: import("../../utils/createButtonPalette.js").ButtonState;
|
|
83
|
+
pressed: import("../../utils/createButtonPalette.js").ButtonState;
|
|
84
|
+
};
|
|
85
|
+
readonly outline: {
|
|
57
86
|
readonly default: {
|
|
58
|
-
readonly bg: "
|
|
59
|
-
readonly fg:
|
|
60
|
-
readonly border:
|
|
87
|
+
readonly bg: "transparent";
|
|
88
|
+
readonly fg: string;
|
|
89
|
+
readonly border: string;
|
|
61
90
|
};
|
|
62
91
|
readonly hover: {
|
|
63
|
-
readonly bg:
|
|
64
|
-
readonly fg:
|
|
65
|
-
readonly border:
|
|
92
|
+
readonly bg: string;
|
|
93
|
+
readonly fg: string;
|
|
94
|
+
readonly border: string;
|
|
66
95
|
};
|
|
67
96
|
readonly pressed: {
|
|
68
|
-
readonly bg:
|
|
69
|
-
readonly fg:
|
|
70
|
-
readonly border:
|
|
97
|
+
readonly bg: string;
|
|
98
|
+
readonly fg: string;
|
|
99
|
+
readonly border: string;
|
|
71
100
|
};
|
|
72
101
|
};
|
|
73
|
-
readonly
|
|
102
|
+
readonly ghost: {
|
|
74
103
|
readonly default: {
|
|
104
|
+
readonly fg: string;
|
|
75
105
|
readonly bg: "transparent";
|
|
76
|
-
readonly
|
|
77
|
-
|
|
106
|
+
readonly border: "transparent";
|
|
107
|
+
};
|
|
108
|
+
readonly hover: {
|
|
109
|
+
readonly bg: string;
|
|
110
|
+
readonly fg: string;
|
|
111
|
+
readonly border: "transparent";
|
|
112
|
+
};
|
|
113
|
+
readonly pressed: {
|
|
114
|
+
readonly bg: string;
|
|
115
|
+
readonly fg: string;
|
|
116
|
+
readonly border: "transparent";
|
|
117
|
+
};
|
|
118
|
+
};
|
|
119
|
+
readonly soft: {
|
|
120
|
+
readonly default: {
|
|
121
|
+
readonly bg: string;
|
|
122
|
+
readonly fg: string;
|
|
123
|
+
readonly border: string;
|
|
78
124
|
};
|
|
79
125
|
readonly hover: {
|
|
80
|
-
readonly bg:
|
|
81
|
-
readonly fg:
|
|
82
|
-
readonly border:
|
|
126
|
+
readonly bg: string;
|
|
127
|
+
readonly fg: string;
|
|
128
|
+
readonly border: string;
|
|
83
129
|
};
|
|
84
130
|
readonly pressed: {
|
|
85
|
-
readonly bg:
|
|
86
|
-
readonly fg:
|
|
87
|
-
readonly border:
|
|
131
|
+
readonly bg: string;
|
|
132
|
+
readonly fg: string;
|
|
133
|
+
readonly border: string;
|
|
88
134
|
};
|
|
89
135
|
};
|
|
90
|
-
readonly
|
|
136
|
+
readonly link: {
|
|
91
137
|
readonly default: {
|
|
92
|
-
readonly fg:
|
|
138
|
+
readonly fg: string;
|
|
93
139
|
readonly bg: "transparent";
|
|
94
140
|
readonly border: "transparent";
|
|
95
141
|
};
|
|
96
142
|
readonly hover: {
|
|
97
|
-
readonly
|
|
98
|
-
readonly
|
|
143
|
+
readonly fg: string;
|
|
144
|
+
readonly bg: "transparent";
|
|
99
145
|
readonly border: "transparent";
|
|
100
146
|
};
|
|
101
147
|
readonly pressed: {
|
|
102
|
-
readonly
|
|
103
|
-
readonly
|
|
148
|
+
readonly fg: string;
|
|
149
|
+
readonly bg: "transparent";
|
|
104
150
|
readonly border: "transparent";
|
|
105
151
|
};
|
|
106
152
|
};
|
|
107
153
|
};
|
|
108
|
-
readonly
|
|
154
|
+
readonly success: {
|
|
155
|
+
readonly ring: string;
|
|
109
156
|
readonly solid: {
|
|
157
|
+
default: import("../../utils/createButtonPalette.js").ButtonState;
|
|
158
|
+
hover: import("../../utils/createButtonPalette.js").ButtonState;
|
|
159
|
+
pressed: import("../../utils/createButtonPalette.js").ButtonState;
|
|
160
|
+
};
|
|
161
|
+
readonly outline: {
|
|
110
162
|
readonly default: {
|
|
111
|
-
readonly bg: "
|
|
112
|
-
readonly fg:
|
|
113
|
-
readonly border:
|
|
163
|
+
readonly bg: "transparent";
|
|
164
|
+
readonly fg: string;
|
|
165
|
+
readonly border: string;
|
|
114
166
|
};
|
|
115
167
|
readonly hover: {
|
|
116
|
-
readonly bg:
|
|
117
|
-
readonly fg:
|
|
118
|
-
readonly border:
|
|
168
|
+
readonly bg: string;
|
|
169
|
+
readonly fg: string;
|
|
170
|
+
readonly border: string;
|
|
119
171
|
};
|
|
120
172
|
readonly pressed: {
|
|
121
|
-
readonly bg:
|
|
122
|
-
readonly fg:
|
|
123
|
-
readonly border:
|
|
173
|
+
readonly bg: string;
|
|
174
|
+
readonly fg: string;
|
|
175
|
+
readonly border: string;
|
|
124
176
|
};
|
|
125
177
|
};
|
|
126
|
-
readonly
|
|
178
|
+
readonly ghost: {
|
|
127
179
|
readonly default: {
|
|
180
|
+
readonly fg: string;
|
|
128
181
|
readonly bg: "transparent";
|
|
129
|
-
readonly
|
|
130
|
-
readonly border: "#6B6386";
|
|
182
|
+
readonly border: "transparent";
|
|
131
183
|
};
|
|
132
184
|
readonly hover: {
|
|
133
|
-
readonly bg:
|
|
134
|
-
readonly fg:
|
|
135
|
-
readonly border: "
|
|
185
|
+
readonly bg: string;
|
|
186
|
+
readonly fg: string;
|
|
187
|
+
readonly border: "transparent";
|
|
136
188
|
};
|
|
137
189
|
readonly pressed: {
|
|
138
|
-
readonly bg:
|
|
139
|
-
readonly fg:
|
|
140
|
-
readonly border: "
|
|
190
|
+
readonly bg: string;
|
|
191
|
+
readonly fg: string;
|
|
192
|
+
readonly border: "transparent";
|
|
141
193
|
};
|
|
142
194
|
};
|
|
143
|
-
readonly
|
|
195
|
+
readonly soft: {
|
|
196
|
+
readonly default: {
|
|
197
|
+
readonly bg: string;
|
|
198
|
+
readonly fg: string;
|
|
199
|
+
readonly border: string;
|
|
200
|
+
};
|
|
201
|
+
readonly hover: {
|
|
202
|
+
readonly bg: string;
|
|
203
|
+
readonly fg: string;
|
|
204
|
+
readonly border: string;
|
|
205
|
+
};
|
|
206
|
+
readonly pressed: {
|
|
207
|
+
readonly bg: string;
|
|
208
|
+
readonly fg: string;
|
|
209
|
+
readonly border: string;
|
|
210
|
+
};
|
|
211
|
+
};
|
|
212
|
+
readonly link: {
|
|
144
213
|
readonly default: {
|
|
145
|
-
readonly fg:
|
|
214
|
+
readonly fg: string;
|
|
146
215
|
readonly bg: "transparent";
|
|
147
216
|
readonly border: "transparent";
|
|
148
217
|
};
|
|
149
218
|
readonly hover: {
|
|
150
|
-
readonly
|
|
151
|
-
readonly
|
|
219
|
+
readonly fg: string;
|
|
220
|
+
readonly bg: "transparent";
|
|
152
221
|
readonly border: "transparent";
|
|
153
222
|
};
|
|
154
223
|
readonly pressed: {
|
|
155
|
-
readonly
|
|
156
|
-
readonly
|
|
224
|
+
readonly fg: string;
|
|
225
|
+
readonly bg: "transparent";
|
|
157
226
|
readonly border: "transparent";
|
|
158
227
|
};
|
|
159
228
|
};
|
|
160
229
|
};
|
|
161
|
-
readonly
|
|
230
|
+
readonly warning: {
|
|
231
|
+
readonly ring: string;
|
|
162
232
|
readonly solid: {
|
|
233
|
+
default: import("../../utils/createButtonPalette.js").ButtonState;
|
|
234
|
+
hover: import("../../utils/createButtonPalette.js").ButtonState;
|
|
235
|
+
pressed: import("../../utils/createButtonPalette.js").ButtonState;
|
|
236
|
+
};
|
|
237
|
+
readonly outline: {
|
|
163
238
|
readonly default: {
|
|
164
|
-
readonly bg: "
|
|
165
|
-
readonly fg:
|
|
166
|
-
readonly border:
|
|
239
|
+
readonly bg: "transparent";
|
|
240
|
+
readonly fg: string;
|
|
241
|
+
readonly border: string;
|
|
167
242
|
};
|
|
168
243
|
readonly hover: {
|
|
169
|
-
readonly bg:
|
|
170
|
-
readonly fg:
|
|
171
|
-
readonly border:
|
|
244
|
+
readonly bg: string;
|
|
245
|
+
readonly fg: string;
|
|
246
|
+
readonly border: string;
|
|
172
247
|
};
|
|
173
248
|
readonly pressed: {
|
|
174
|
-
readonly bg:
|
|
175
|
-
readonly fg:
|
|
176
|
-
readonly border:
|
|
249
|
+
readonly bg: string;
|
|
250
|
+
readonly fg: string;
|
|
251
|
+
readonly border: string;
|
|
177
252
|
};
|
|
178
253
|
};
|
|
254
|
+
readonly ghost: {
|
|
255
|
+
readonly default: {
|
|
256
|
+
readonly fg: string;
|
|
257
|
+
readonly bg: "transparent";
|
|
258
|
+
readonly border: "transparent";
|
|
259
|
+
};
|
|
260
|
+
readonly hover: {
|
|
261
|
+
readonly bg: string;
|
|
262
|
+
readonly fg: string;
|
|
263
|
+
readonly border: "transparent";
|
|
264
|
+
};
|
|
265
|
+
readonly pressed: {
|
|
266
|
+
readonly bg: string;
|
|
267
|
+
readonly fg: string;
|
|
268
|
+
readonly border: "transparent";
|
|
269
|
+
};
|
|
270
|
+
};
|
|
271
|
+
readonly soft: {
|
|
272
|
+
readonly default: {
|
|
273
|
+
readonly bg: string;
|
|
274
|
+
readonly fg: string;
|
|
275
|
+
readonly border: string;
|
|
276
|
+
};
|
|
277
|
+
readonly hover: {
|
|
278
|
+
readonly bg: string;
|
|
279
|
+
readonly fg: string;
|
|
280
|
+
readonly border: string;
|
|
281
|
+
};
|
|
282
|
+
readonly pressed: {
|
|
283
|
+
readonly bg: string;
|
|
284
|
+
readonly fg: string;
|
|
285
|
+
readonly border: string;
|
|
286
|
+
};
|
|
287
|
+
};
|
|
288
|
+
readonly link: {
|
|
289
|
+
readonly default: {
|
|
290
|
+
readonly fg: string;
|
|
291
|
+
readonly bg: "transparent";
|
|
292
|
+
readonly border: "transparent";
|
|
293
|
+
};
|
|
294
|
+
readonly hover: {
|
|
295
|
+
readonly fg: string;
|
|
296
|
+
readonly bg: "transparent";
|
|
297
|
+
readonly border: "transparent";
|
|
298
|
+
};
|
|
299
|
+
readonly pressed: {
|
|
300
|
+
readonly fg: string;
|
|
301
|
+
readonly bg: "transparent";
|
|
302
|
+
readonly border: "transparent";
|
|
303
|
+
};
|
|
304
|
+
};
|
|
305
|
+
};
|
|
306
|
+
readonly danger: {
|
|
307
|
+
readonly ring: string;
|
|
308
|
+
readonly solid: {
|
|
309
|
+
default: import("../../utils/createButtonPalette.js").ButtonState;
|
|
310
|
+
hover: import("../../utils/createButtonPalette.js").ButtonState;
|
|
311
|
+
pressed: import("../../utils/createButtonPalette.js").ButtonState;
|
|
312
|
+
};
|
|
179
313
|
readonly outline: {
|
|
180
314
|
readonly default: {
|
|
181
315
|
readonly bg: "transparent";
|
|
182
|
-
readonly fg:
|
|
183
|
-
readonly border:
|
|
316
|
+
readonly fg: string;
|
|
317
|
+
readonly border: string;
|
|
184
318
|
};
|
|
185
319
|
readonly hover: {
|
|
186
|
-
readonly bg:
|
|
187
|
-
readonly fg:
|
|
188
|
-
readonly border:
|
|
320
|
+
readonly bg: string;
|
|
321
|
+
readonly fg: string;
|
|
322
|
+
readonly border: string;
|
|
189
323
|
};
|
|
190
324
|
readonly pressed: {
|
|
191
325
|
readonly bg: string;
|
|
192
|
-
readonly fg:
|
|
193
|
-
readonly border:
|
|
326
|
+
readonly fg: string;
|
|
327
|
+
readonly border: string;
|
|
194
328
|
};
|
|
195
329
|
};
|
|
196
330
|
readonly ghost: {
|
|
197
331
|
readonly default: {
|
|
198
|
-
readonly fg:
|
|
332
|
+
readonly fg: string;
|
|
199
333
|
readonly bg: "transparent";
|
|
200
334
|
readonly border: "transparent";
|
|
201
335
|
};
|
|
202
336
|
readonly hover: {
|
|
203
|
-
readonly bg:
|
|
204
|
-
readonly fg:
|
|
337
|
+
readonly bg: string;
|
|
338
|
+
readonly fg: string;
|
|
205
339
|
readonly border: "transparent";
|
|
206
340
|
};
|
|
207
341
|
readonly pressed: {
|
|
208
342
|
readonly bg: string;
|
|
209
|
-
readonly fg:
|
|
343
|
+
readonly fg: string;
|
|
344
|
+
readonly border: "transparent";
|
|
345
|
+
};
|
|
346
|
+
};
|
|
347
|
+
readonly soft: {
|
|
348
|
+
readonly default: {
|
|
349
|
+
readonly bg: string;
|
|
350
|
+
readonly fg: string;
|
|
351
|
+
readonly border: string;
|
|
352
|
+
};
|
|
353
|
+
readonly hover: {
|
|
354
|
+
readonly bg: string;
|
|
355
|
+
readonly fg: string;
|
|
356
|
+
readonly border: string;
|
|
357
|
+
};
|
|
358
|
+
readonly pressed: {
|
|
359
|
+
readonly bg: string;
|
|
360
|
+
readonly fg: string;
|
|
361
|
+
readonly border: string;
|
|
362
|
+
};
|
|
363
|
+
};
|
|
364
|
+
readonly link: {
|
|
365
|
+
readonly default: {
|
|
366
|
+
readonly fg: string;
|
|
367
|
+
readonly bg: "transparent";
|
|
368
|
+
readonly border: "transparent";
|
|
369
|
+
};
|
|
370
|
+
readonly hover: {
|
|
371
|
+
readonly fg: string;
|
|
372
|
+
readonly bg: "transparent";
|
|
373
|
+
readonly border: "transparent";
|
|
374
|
+
};
|
|
375
|
+
readonly pressed: {
|
|
376
|
+
readonly fg: string;
|
|
377
|
+
readonly bg: "transparent";
|
|
210
378
|
readonly border: "transparent";
|
|
211
379
|
};
|
|
212
380
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"button.d.ts","sourceRoot":"","sources":["../../../src/dark/components/button.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"button.d.ts","sourceRoot":"","sources":["../../../src/dark/components/button.ts"],"names":[],"mappings":"AA2KA,eAAO,MAAM,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAYT,CAAC"}
|