rizzo-css 0.0.41 → 0.0.43
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 +3 -3
- package/bin/rizzo-css.js +66 -25
- package/dist/fonts/DMMono/DMMono-Italic.ttf +0 -0
- package/dist/fonts/DMMono/DMMono-Regular.ttf +0 -0
- package/dist/fonts/DMMono/OFL.txt +93 -0
- package/dist/fonts/DMSans/DMSans-Italic-VariableFont_opsz,wght.ttf +0 -0
- package/dist/fonts/DMSans/DMSans-VariableFont_opsz,wght.ttf +0 -0
- package/dist/fonts/DMSans/OFL.txt +93 -0
- package/dist/fonts/DMSans/README.txt +136 -0
- package/dist/fonts/Outfit/OFL.txt +93 -0
- package/dist/fonts/Outfit/Outfit-VariableFont_wght.ttf +0 -0
- package/dist/fonts/Outfit/README.txt +71 -0
- package/dist/rizzo.min.css +10 -6
- package/package.json +1 -1
- package/scaffold/astro/FontSwitcher.astro +221 -0
- package/scaffold/astro/Footer.astro +56 -0
- package/scaffold/astro/Modal.astro +14 -8
- package/scaffold/astro/Settings.astro +12 -49
- package/scaffold/astro/SoundEffects.astro +49 -0
- package/scaffold/astro/ThemeIcon.astro +2 -1
- package/scaffold/astro-core/README-RIZZO.md +1 -1
- package/scaffold/astro-core/src/layouts/Layout.astro +1 -1
- package/scaffold/astro-core/src/pages/index.astro +42 -1
- package/scaffold/config/fonts.ts +12 -4
- package/scaffold/svelte/DocsSidebar.svelte +49 -0
- package/scaffold/svelte/FontSwitcher.svelte +180 -0
- package/scaffold/svelte/Footer.svelte +49 -0
- package/scaffold/svelte/Modal.svelte +2 -0
- package/scaffold/svelte/Settings.svelte +18 -0
- package/scaffold/svelte/SoundEffects.svelte +43 -0
- package/scaffold/svelte/index.ts +2 -0
- package/scaffold/svelte-core/README-RIZZO.md +1 -1
- package/scaffold/svelte-core/src/routes/+page.svelte +42 -1
- package/scaffold/vanilla/README-RIZZO.md +1 -1
- package/scaffold/vanilla/components/accordion.html +42 -0
- package/scaffold/vanilla/components/alert.html +42 -0
- package/scaffold/vanilla/components/avatar.html +42 -0
- package/scaffold/vanilla/components/badge.html +42 -0
- package/scaffold/vanilla/components/breadcrumb.html +42 -0
- package/scaffold/vanilla/components/button.html +42 -0
- package/scaffold/vanilla/components/cards.html +42 -0
- package/scaffold/vanilla/components/copy-to-clipboard.html +42 -0
- package/scaffold/vanilla/components/divider.html +42 -0
- package/scaffold/vanilla/components/docs-sidebar.html +528 -0
- package/scaffold/vanilla/components/dropdown.html +42 -0
- package/scaffold/vanilla/components/font-switcher.html +528 -0
- package/scaffold/vanilla/components/footer.html +528 -0
- package/scaffold/vanilla/components/forms.html +42 -0
- package/scaffold/vanilla/components/icons.html +42 -0
- package/scaffold/vanilla/components/index.html +62 -16
- package/scaffold/vanilla/components/modal.html +42 -0
- package/scaffold/vanilla/components/navbar.html +42 -0
- package/scaffold/vanilla/components/pagination.html +42 -0
- package/scaffold/vanilla/components/progress-bar.html +42 -0
- package/scaffold/vanilla/components/search.html +42 -0
- package/scaffold/vanilla/components/settings.html +42 -0
- package/scaffold/vanilla/components/sound-effects.html +528 -0
- package/scaffold/vanilla/components/spinner.html +42 -0
- package/scaffold/vanilla/components/table.html +42 -0
- package/scaffold/vanilla/components/tabs.html +42 -0
- package/scaffold/vanilla/components/theme-switcher.html +42 -0
- package/scaffold/vanilla/components/toast.html +42 -0
- package/scaffold/vanilla/components/tooltip.html +42 -0
- package/scaffold/vanilla/index.html +83 -1
|
@@ -38,6 +38,12 @@
|
|
|
38
38
|
} else if (savedFontPair === 'source') {
|
|
39
39
|
document.documentElement.style.setProperty('--font-family', 'var(--font-family-source-sans-3)');
|
|
40
40
|
document.documentElement.style.setProperty('--font-family-mono', 'var(--font-family-source-code-pro)');
|
|
41
|
+
} else if (savedFontPair === 'dm') {
|
|
42
|
+
document.documentElement.style.setProperty('--font-family', 'var(--font-family-dm-sans)');
|
|
43
|
+
document.documentElement.style.setProperty('--font-family-mono', 'var(--font-family-dm-mono)');
|
|
44
|
+
} else if (savedFontPair === 'outfit-jetbrains') {
|
|
45
|
+
document.documentElement.style.setProperty('--font-family', 'var(--font-family-outfit)');
|
|
46
|
+
document.documentElement.style.setProperty('--font-family-mono', 'var(--font-family-jetbrains-mono)');
|
|
41
47
|
}
|
|
42
48
|
if (localStorage.getItem('reducedMotion') === 'true') {
|
|
43
49
|
document.documentElement.classList.add('reduced-motion');
|
|
@@ -185,6 +191,8 @@
|
|
|
185
191
|
<option value="inter-jetbrains" data-sans="var(--font-family-inter)" data-mono="var(--font-family-jetbrains-mono)">Inter + JetBrains Mono</option>
|
|
186
192
|
<option value="ibm-plex" data-sans="var(--font-family-ibm-plex-sans)" data-mono="var(--font-family-ibm-plex-mono)">IBM Plex Sans + Mono</option>
|
|
187
193
|
<option value="source" data-sans="var(--font-family-source-sans-3)" data-mono="var(--font-family-source-code-pro)">Source Sans 3 + Source Code Pro</option>
|
|
194
|
+
<option value="dm" data-sans="var(--font-family-dm-sans)" data-mono="var(--font-family-dm-mono)">DM Sans + DM Mono</option>
|
|
195
|
+
<option value="outfit-jetbrains" data-sans="var(--font-family-outfit)" data-mono="var(--font-family-jetbrains-mono)">Outfit + JetBrains Mono</option>
|
|
188
196
|
</select>
|
|
189
197
|
<p class="settings__help-text">Body text and code blocks use the selected pair.</p>
|
|
190
198
|
</div>
|
|
@@ -333,6 +341,23 @@
|
|
|
333
341
|
|
|
334
342
|
|
|
335
343
|
|
|
344
|
+
|
|
345
|
+
|
|
346
|
+
|
|
347
|
+
|
|
348
|
+
|
|
349
|
+
|
|
350
|
+
|
|
351
|
+
|
|
352
|
+
|
|
353
|
+
|
|
354
|
+
|
|
355
|
+
|
|
356
|
+
|
|
357
|
+
|
|
358
|
+
|
|
359
|
+
|
|
360
|
+
|
|
336
361
|
|
|
337
362
|
|
|
338
363
|
|
|
@@ -463,6 +488,23 @@
|
|
|
463
488
|
|
|
464
489
|
|
|
465
490
|
|
|
491
|
+
|
|
492
|
+
|
|
493
|
+
|
|
494
|
+
|
|
495
|
+
|
|
496
|
+
|
|
497
|
+
|
|
498
|
+
|
|
499
|
+
|
|
500
|
+
|
|
501
|
+
|
|
502
|
+
|
|
503
|
+
|
|
504
|
+
|
|
505
|
+
|
|
506
|
+
|
|
507
|
+
|
|
466
508
|
|
|
467
509
|
|
|
468
510
|
|
|
@@ -38,6 +38,12 @@
|
|
|
38
38
|
} else if (savedFontPair === 'source') {
|
|
39
39
|
document.documentElement.style.setProperty('--font-family', 'var(--font-family-source-sans-3)');
|
|
40
40
|
document.documentElement.style.setProperty('--font-family-mono', 'var(--font-family-source-code-pro)');
|
|
41
|
+
} else if (savedFontPair === 'dm') {
|
|
42
|
+
document.documentElement.style.setProperty('--font-family', 'var(--font-family-dm-sans)');
|
|
43
|
+
document.documentElement.style.setProperty('--font-family-mono', 'var(--font-family-dm-mono)');
|
|
44
|
+
} else if (savedFontPair === 'outfit-jetbrains') {
|
|
45
|
+
document.documentElement.style.setProperty('--font-family', 'var(--font-family-outfit)');
|
|
46
|
+
document.documentElement.style.setProperty('--font-family-mono', 'var(--font-family-jetbrains-mono)');
|
|
41
47
|
}
|
|
42
48
|
if (localStorage.getItem('reducedMotion') === 'true') {
|
|
43
49
|
document.documentElement.classList.add('reduced-motion');
|
|
@@ -185,6 +191,8 @@
|
|
|
185
191
|
<option value="inter-jetbrains" data-sans="var(--font-family-inter)" data-mono="var(--font-family-jetbrains-mono)">Inter + JetBrains Mono</option>
|
|
186
192
|
<option value="ibm-plex" data-sans="var(--font-family-ibm-plex-sans)" data-mono="var(--font-family-ibm-plex-mono)">IBM Plex Sans + Mono</option>
|
|
187
193
|
<option value="source" data-sans="var(--font-family-source-sans-3)" data-mono="var(--font-family-source-code-pro)">Source Sans 3 + Source Code Pro</option>
|
|
194
|
+
<option value="dm" data-sans="var(--font-family-dm-sans)" data-mono="var(--font-family-dm-mono)">DM Sans + DM Mono</option>
|
|
195
|
+
<option value="outfit-jetbrains" data-sans="var(--font-family-outfit)" data-mono="var(--font-family-jetbrains-mono)">Outfit + JetBrains Mono</option>
|
|
188
196
|
</select>
|
|
189
197
|
<p class="settings__help-text">Body text and code blocks use the selected pair.</p>
|
|
190
198
|
</div>
|
|
@@ -333,6 +341,23 @@
|
|
|
333
341
|
|
|
334
342
|
|
|
335
343
|
|
|
344
|
+
|
|
345
|
+
|
|
346
|
+
|
|
347
|
+
|
|
348
|
+
|
|
349
|
+
|
|
350
|
+
|
|
351
|
+
|
|
352
|
+
|
|
353
|
+
|
|
354
|
+
|
|
355
|
+
|
|
356
|
+
|
|
357
|
+
|
|
358
|
+
|
|
359
|
+
|
|
360
|
+
|
|
336
361
|
|
|
337
362
|
|
|
338
363
|
|
|
@@ -463,6 +488,23 @@
|
|
|
463
488
|
|
|
464
489
|
|
|
465
490
|
|
|
491
|
+
|
|
492
|
+
|
|
493
|
+
|
|
494
|
+
|
|
495
|
+
|
|
496
|
+
|
|
497
|
+
|
|
498
|
+
|
|
499
|
+
|
|
500
|
+
|
|
501
|
+
|
|
502
|
+
|
|
503
|
+
|
|
504
|
+
|
|
505
|
+
|
|
506
|
+
|
|
507
|
+
|
|
466
508
|
|
|
467
509
|
|
|
468
510
|
|
|
@@ -38,6 +38,12 @@
|
|
|
38
38
|
} else if (savedFontPair === 'source') {
|
|
39
39
|
document.documentElement.style.setProperty('--font-family', 'var(--font-family-source-sans-3)');
|
|
40
40
|
document.documentElement.style.setProperty('--font-family-mono', 'var(--font-family-source-code-pro)');
|
|
41
|
+
} else if (savedFontPair === 'dm') {
|
|
42
|
+
document.documentElement.style.setProperty('--font-family', 'var(--font-family-dm-sans)');
|
|
43
|
+
document.documentElement.style.setProperty('--font-family-mono', 'var(--font-family-dm-mono)');
|
|
44
|
+
} else if (savedFontPair === 'outfit-jetbrains') {
|
|
45
|
+
document.documentElement.style.setProperty('--font-family', 'var(--font-family-outfit)');
|
|
46
|
+
document.documentElement.style.setProperty('--font-family-mono', 'var(--font-family-jetbrains-mono)');
|
|
41
47
|
}
|
|
42
48
|
if (localStorage.getItem('reducedMotion') === 'true') {
|
|
43
49
|
document.documentElement.classList.add('reduced-motion');
|
|
@@ -185,6 +191,8 @@
|
|
|
185
191
|
<option value="inter-jetbrains" data-sans="var(--font-family-inter)" data-mono="var(--font-family-jetbrains-mono)">Inter + JetBrains Mono</option>
|
|
186
192
|
<option value="ibm-plex" data-sans="var(--font-family-ibm-plex-sans)" data-mono="var(--font-family-ibm-plex-mono)">IBM Plex Sans + Mono</option>
|
|
187
193
|
<option value="source" data-sans="var(--font-family-source-sans-3)" data-mono="var(--font-family-source-code-pro)">Source Sans 3 + Source Code Pro</option>
|
|
194
|
+
<option value="dm" data-sans="var(--font-family-dm-sans)" data-mono="var(--font-family-dm-mono)">DM Sans + DM Mono</option>
|
|
195
|
+
<option value="outfit-jetbrains" data-sans="var(--font-family-outfit)" data-mono="var(--font-family-jetbrains-mono)">Outfit + JetBrains Mono</option>
|
|
188
196
|
</select>
|
|
189
197
|
<p class="settings__help-text">Body text and code blocks use the selected pair.</p>
|
|
190
198
|
</div>
|
|
@@ -333,6 +341,23 @@
|
|
|
333
341
|
|
|
334
342
|
|
|
335
343
|
|
|
344
|
+
|
|
345
|
+
|
|
346
|
+
|
|
347
|
+
|
|
348
|
+
|
|
349
|
+
|
|
350
|
+
|
|
351
|
+
|
|
352
|
+
|
|
353
|
+
|
|
354
|
+
|
|
355
|
+
|
|
356
|
+
|
|
357
|
+
|
|
358
|
+
|
|
359
|
+
|
|
360
|
+
|
|
336
361
|
|
|
337
362
|
|
|
338
363
|
|
|
@@ -463,6 +488,23 @@
|
|
|
463
488
|
|
|
464
489
|
|
|
465
490
|
|
|
491
|
+
|
|
492
|
+
|
|
493
|
+
|
|
494
|
+
|
|
495
|
+
|
|
496
|
+
|
|
497
|
+
|
|
498
|
+
|
|
499
|
+
|
|
500
|
+
|
|
501
|
+
|
|
502
|
+
|
|
503
|
+
|
|
504
|
+
|
|
505
|
+
|
|
506
|
+
|
|
507
|
+
|
|
466
508
|
|
|
467
509
|
|
|
468
510
|
|
|
@@ -38,6 +38,12 @@
|
|
|
38
38
|
} else if (savedFontPair === 'source') {
|
|
39
39
|
document.documentElement.style.setProperty('--font-family', 'var(--font-family-source-sans-3)');
|
|
40
40
|
document.documentElement.style.setProperty('--font-family-mono', 'var(--font-family-source-code-pro)');
|
|
41
|
+
} else if (savedFontPair === 'dm') {
|
|
42
|
+
document.documentElement.style.setProperty('--font-family', 'var(--font-family-dm-sans)');
|
|
43
|
+
document.documentElement.style.setProperty('--font-family-mono', 'var(--font-family-dm-mono)');
|
|
44
|
+
} else if (savedFontPair === 'outfit-jetbrains') {
|
|
45
|
+
document.documentElement.style.setProperty('--font-family', 'var(--font-family-outfit)');
|
|
46
|
+
document.documentElement.style.setProperty('--font-family-mono', 'var(--font-family-jetbrains-mono)');
|
|
41
47
|
}
|
|
42
48
|
if (localStorage.getItem('reducedMotion') === 'true') {
|
|
43
49
|
document.documentElement.classList.add('reduced-motion');
|
|
@@ -185,6 +191,8 @@
|
|
|
185
191
|
<option value="inter-jetbrains" data-sans="var(--font-family-inter)" data-mono="var(--font-family-jetbrains-mono)">Inter + JetBrains Mono</option>
|
|
186
192
|
<option value="ibm-plex" data-sans="var(--font-family-ibm-plex-sans)" data-mono="var(--font-family-ibm-plex-mono)">IBM Plex Sans + Mono</option>
|
|
187
193
|
<option value="source" data-sans="var(--font-family-source-sans-3)" data-mono="var(--font-family-source-code-pro)">Source Sans 3 + Source Code Pro</option>
|
|
194
|
+
<option value="dm" data-sans="var(--font-family-dm-sans)" data-mono="var(--font-family-dm-mono)">DM Sans + DM Mono</option>
|
|
195
|
+
<option value="outfit-jetbrains" data-sans="var(--font-family-outfit)" data-mono="var(--font-family-jetbrains-mono)">Outfit + JetBrains Mono</option>
|
|
188
196
|
</select>
|
|
189
197
|
<p class="settings__help-text">Body text and code blocks use the selected pair.</p>
|
|
190
198
|
</div>
|
|
@@ -333,6 +341,23 @@
|
|
|
333
341
|
|
|
334
342
|
|
|
335
343
|
|
|
344
|
+
|
|
345
|
+
|
|
346
|
+
|
|
347
|
+
|
|
348
|
+
|
|
349
|
+
|
|
350
|
+
|
|
351
|
+
|
|
352
|
+
|
|
353
|
+
|
|
354
|
+
|
|
355
|
+
|
|
356
|
+
|
|
357
|
+
|
|
358
|
+
|
|
359
|
+
|
|
360
|
+
|
|
336
361
|
|
|
337
362
|
|
|
338
363
|
|
|
@@ -463,6 +488,23 @@
|
|
|
463
488
|
|
|
464
489
|
|
|
465
490
|
|
|
491
|
+
|
|
492
|
+
|
|
493
|
+
|
|
494
|
+
|
|
495
|
+
|
|
496
|
+
|
|
497
|
+
|
|
498
|
+
|
|
499
|
+
|
|
500
|
+
|
|
501
|
+
|
|
502
|
+
|
|
503
|
+
|
|
504
|
+
|
|
505
|
+
|
|
506
|
+
|
|
507
|
+
|
|
466
508
|
|
|
467
509
|
|
|
468
510
|
|
|
@@ -38,6 +38,12 @@
|
|
|
38
38
|
} else if (savedFontPair === 'source') {
|
|
39
39
|
document.documentElement.style.setProperty('--font-family', 'var(--font-family-source-sans-3)');
|
|
40
40
|
document.documentElement.style.setProperty('--font-family-mono', 'var(--font-family-source-code-pro)');
|
|
41
|
+
} else if (savedFontPair === 'dm') {
|
|
42
|
+
document.documentElement.style.setProperty('--font-family', 'var(--font-family-dm-sans)');
|
|
43
|
+
document.documentElement.style.setProperty('--font-family-mono', 'var(--font-family-dm-mono)');
|
|
44
|
+
} else if (savedFontPair === 'outfit-jetbrains') {
|
|
45
|
+
document.documentElement.style.setProperty('--font-family', 'var(--font-family-outfit)');
|
|
46
|
+
document.documentElement.style.setProperty('--font-family-mono', 'var(--font-family-jetbrains-mono)');
|
|
41
47
|
}
|
|
42
48
|
if (localStorage.getItem('reducedMotion') === 'true') {
|
|
43
49
|
document.documentElement.classList.add('reduced-motion');
|
|
@@ -185,6 +191,8 @@
|
|
|
185
191
|
<option value="inter-jetbrains" data-sans="var(--font-family-inter)" data-mono="var(--font-family-jetbrains-mono)">Inter + JetBrains Mono</option>
|
|
186
192
|
<option value="ibm-plex" data-sans="var(--font-family-ibm-plex-sans)" data-mono="var(--font-family-ibm-plex-mono)">IBM Plex Sans + Mono</option>
|
|
187
193
|
<option value="source" data-sans="var(--font-family-source-sans-3)" data-mono="var(--font-family-source-code-pro)">Source Sans 3 + Source Code Pro</option>
|
|
194
|
+
<option value="dm" data-sans="var(--font-family-dm-sans)" data-mono="var(--font-family-dm-mono)">DM Sans + DM Mono</option>
|
|
195
|
+
<option value="outfit-jetbrains" data-sans="var(--font-family-outfit)" data-mono="var(--font-family-jetbrains-mono)">Outfit + JetBrains Mono</option>
|
|
188
196
|
</select>
|
|
189
197
|
<p class="settings__help-text">Body text and code blocks use the selected pair.</p>
|
|
190
198
|
</div>
|
|
@@ -333,6 +341,23 @@
|
|
|
333
341
|
|
|
334
342
|
|
|
335
343
|
|
|
344
|
+
|
|
345
|
+
|
|
346
|
+
|
|
347
|
+
|
|
348
|
+
|
|
349
|
+
|
|
350
|
+
|
|
351
|
+
|
|
352
|
+
|
|
353
|
+
|
|
354
|
+
|
|
355
|
+
|
|
356
|
+
|
|
357
|
+
|
|
358
|
+
|
|
359
|
+
|
|
360
|
+
|
|
336
361
|
|
|
337
362
|
|
|
338
363
|
|
|
@@ -463,6 +488,23 @@
|
|
|
463
488
|
|
|
464
489
|
|
|
465
490
|
|
|
491
|
+
|
|
492
|
+
|
|
493
|
+
|
|
494
|
+
|
|
495
|
+
|
|
496
|
+
|
|
497
|
+
|
|
498
|
+
|
|
499
|
+
|
|
500
|
+
|
|
501
|
+
|
|
502
|
+
|
|
503
|
+
|
|
504
|
+
|
|
505
|
+
|
|
506
|
+
|
|
507
|
+
|
|
466
508
|
|
|
467
509
|
|
|
468
510
|
|
|
@@ -38,6 +38,12 @@
|
|
|
38
38
|
} else if (savedFontPair === 'source') {
|
|
39
39
|
document.documentElement.style.setProperty('--font-family', 'var(--font-family-source-sans-3)');
|
|
40
40
|
document.documentElement.style.setProperty('--font-family-mono', 'var(--font-family-source-code-pro)');
|
|
41
|
+
} else if (savedFontPair === 'dm') {
|
|
42
|
+
document.documentElement.style.setProperty('--font-family', 'var(--font-family-dm-sans)');
|
|
43
|
+
document.documentElement.style.setProperty('--font-family-mono', 'var(--font-family-dm-mono)');
|
|
44
|
+
} else if (savedFontPair === 'outfit-jetbrains') {
|
|
45
|
+
document.documentElement.style.setProperty('--font-family', 'var(--font-family-outfit)');
|
|
46
|
+
document.documentElement.style.setProperty('--font-family-mono', 'var(--font-family-jetbrains-mono)');
|
|
41
47
|
}
|
|
42
48
|
if (localStorage.getItem('reducedMotion') === 'true') {
|
|
43
49
|
document.documentElement.classList.add('reduced-motion');
|
|
@@ -185,6 +191,8 @@
|
|
|
185
191
|
<option value="inter-jetbrains" data-sans="var(--font-family-inter)" data-mono="var(--font-family-jetbrains-mono)">Inter + JetBrains Mono</option>
|
|
186
192
|
<option value="ibm-plex" data-sans="var(--font-family-ibm-plex-sans)" data-mono="var(--font-family-ibm-plex-mono)">IBM Plex Sans + Mono</option>
|
|
187
193
|
<option value="source" data-sans="var(--font-family-source-sans-3)" data-mono="var(--font-family-source-code-pro)">Source Sans 3 + Source Code Pro</option>
|
|
194
|
+
<option value="dm" data-sans="var(--font-family-dm-sans)" data-mono="var(--font-family-dm-mono)">DM Sans + DM Mono</option>
|
|
195
|
+
<option value="outfit-jetbrains" data-sans="var(--font-family-outfit)" data-mono="var(--font-family-jetbrains-mono)">Outfit + JetBrains Mono</option>
|
|
188
196
|
</select>
|
|
189
197
|
<p class="settings__help-text">Body text and code blocks use the selected pair.</p>
|
|
190
198
|
</div>
|
|
@@ -333,6 +341,23 @@
|
|
|
333
341
|
|
|
334
342
|
|
|
335
343
|
|
|
344
|
+
|
|
345
|
+
|
|
346
|
+
|
|
347
|
+
|
|
348
|
+
|
|
349
|
+
|
|
350
|
+
|
|
351
|
+
|
|
352
|
+
|
|
353
|
+
|
|
354
|
+
|
|
355
|
+
|
|
356
|
+
|
|
357
|
+
|
|
358
|
+
|
|
359
|
+
|
|
360
|
+
|
|
336
361
|
|
|
337
362
|
|
|
338
363
|
|
|
@@ -463,6 +488,23 @@
|
|
|
463
488
|
|
|
464
489
|
|
|
465
490
|
|
|
491
|
+
|
|
492
|
+
|
|
493
|
+
|
|
494
|
+
|
|
495
|
+
|
|
496
|
+
|
|
497
|
+
|
|
498
|
+
|
|
499
|
+
|
|
500
|
+
|
|
501
|
+
|
|
502
|
+
|
|
503
|
+
|
|
504
|
+
|
|
505
|
+
|
|
506
|
+
|
|
507
|
+
|
|
466
508
|
|
|
467
509
|
|
|
468
510
|
|