@json-to-office/core-docx 0.34.0 → 0.35.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/components/visual.d.ts +15 -2
- package/dist/components/visual.d.ts.map +1 -1
- package/dist/core/flattenVisuals.d.ts +8 -1
- package/dist/core/flattenVisuals.d.ts.map +1 -1
- package/dist/core/fontResolution.d.ts +15 -1
- package/dist/core/fontResolution.d.ts.map +1 -1
- package/dist/core/generator.d.ts.map +1 -1
- package/dist/core/prerasterizeVisuals.d.ts +8 -1
- package/dist/core/prerasterizeVisuals.d.ts.map +1 -1
- package/dist/core/render.d.ts +8 -1
- package/dist/core/render.d.ts.map +1 -1
- package/dist/index.js +127 -37
- package/dist/index.js.map +1 -1
- package/dist/plugin/createDocumentGenerator.d.ts.map +1 -1
- package/dist/plugin/example/index.js +3268 -3196
- package/dist/plugin/example/index.js.map +1 -1
- package/dist/templates/themes/index.d.ts +156 -8
- package/dist/templates/themes/index.d.ts.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/types/index.d.ts +8 -1
- package/dist/types/index.d.ts.map +1 -1
- package/package.json +3 -3
|
@@ -5,6 +5,43 @@
|
|
|
5
5
|
import { type ThemeConfigJson } from '@json-to-office/shared-docx';
|
|
6
6
|
export declare const themes: Record<string, {
|
|
7
7
|
$schema?: string | undefined;
|
|
8
|
+
fontRegistry?: {
|
|
9
|
+
category?: "mono" | "sans" | "serif" | "display" | "handwriting" | undefined;
|
|
10
|
+
family: string;
|
|
11
|
+
id: string;
|
|
12
|
+
sources: ({
|
|
13
|
+
family: string;
|
|
14
|
+
kind: "safe";
|
|
15
|
+
} | {
|
|
16
|
+
weights?: number[] | undefined;
|
|
17
|
+
italics?: boolean | undefined;
|
|
18
|
+
family: string;
|
|
19
|
+
kind: "google";
|
|
20
|
+
} | {
|
|
21
|
+
italic?: boolean | undefined;
|
|
22
|
+
weight?: number | undefined;
|
|
23
|
+
kind: "file";
|
|
24
|
+
path: string;
|
|
25
|
+
} | {
|
|
26
|
+
italic?: boolean | undefined;
|
|
27
|
+
weight?: number | undefined;
|
|
28
|
+
kind: "data";
|
|
29
|
+
data: string;
|
|
30
|
+
} | {
|
|
31
|
+
italic?: boolean | undefined;
|
|
32
|
+
weight?: number | undefined;
|
|
33
|
+
kind: "url";
|
|
34
|
+
url: string;
|
|
35
|
+
} | {
|
|
36
|
+
italic?: boolean | undefined;
|
|
37
|
+
axes?: {
|
|
38
|
+
[x: string]: number;
|
|
39
|
+
} | undefined;
|
|
40
|
+
kind: "variable";
|
|
41
|
+
weight: number;
|
|
42
|
+
url: string;
|
|
43
|
+
})[];
|
|
44
|
+
}[] | undefined;
|
|
8
45
|
styles?: {
|
|
9
46
|
normal?: {
|
|
10
47
|
size?: number | undefined;
|
|
@@ -1078,6 +1115,7 @@ export declare const themes: Record<string, {
|
|
|
1078
1115
|
before?: number | undefined;
|
|
1079
1116
|
after?: number | undefined;
|
|
1080
1117
|
} | undefined;
|
|
1118
|
+
id?: string | undefined;
|
|
1081
1119
|
alignment?: "left" | "right" | "center" | "justify" | undefined;
|
|
1082
1120
|
keepNext?: boolean | undefined;
|
|
1083
1121
|
indent?: {
|
|
@@ -1118,7 +1156,6 @@ export declare const themes: Record<string, {
|
|
|
1118
1156
|
pageBreak?: boolean | undefined;
|
|
1119
1157
|
columnBreak?: boolean | undefined;
|
|
1120
1158
|
keepLines?: boolean | undefined;
|
|
1121
|
-
id?: string | undefined;
|
|
1122
1159
|
themeStyle?: string | undefined;
|
|
1123
1160
|
boldColor?: string | undefined;
|
|
1124
1161
|
floating?: {
|
|
@@ -1145,6 +1182,7 @@ export declare const themes: Record<string, {
|
|
|
1145
1182
|
before?: number | undefined;
|
|
1146
1183
|
after?: number | undefined;
|
|
1147
1184
|
} | undefined;
|
|
1185
|
+
path?: string | undefined;
|
|
1148
1186
|
width?: string | number | undefined;
|
|
1149
1187
|
height?: string | number | undefined;
|
|
1150
1188
|
alignment?: "left" | "right" | "center" | undefined;
|
|
@@ -1179,7 +1217,6 @@ export declare const themes: Record<string, {
|
|
|
1179
1217
|
rotation?: number | undefined;
|
|
1180
1218
|
visibility?: "hidden" | "inherit" | undefined;
|
|
1181
1219
|
} | undefined;
|
|
1182
|
-
path?: string | undefined;
|
|
1183
1220
|
base64?: string | undefined;
|
|
1184
1221
|
svg?: string | undefined;
|
|
1185
1222
|
alt?: string | undefined;
|
|
@@ -1450,6 +1487,43 @@ export declare const isValidThemeName: (themeName: string) => themeName is strin
|
|
|
1450
1487
|
export declare const getThemeNames: () => string[];
|
|
1451
1488
|
export declare const minimalTheme: {
|
|
1452
1489
|
$schema?: string | undefined;
|
|
1490
|
+
fontRegistry?: {
|
|
1491
|
+
category?: "mono" | "sans" | "serif" | "display" | "handwriting" | undefined;
|
|
1492
|
+
family: string;
|
|
1493
|
+
id: string;
|
|
1494
|
+
sources: ({
|
|
1495
|
+
family: string;
|
|
1496
|
+
kind: "safe";
|
|
1497
|
+
} | {
|
|
1498
|
+
weights?: number[] | undefined;
|
|
1499
|
+
italics?: boolean | undefined;
|
|
1500
|
+
family: string;
|
|
1501
|
+
kind: "google";
|
|
1502
|
+
} | {
|
|
1503
|
+
italic?: boolean | undefined;
|
|
1504
|
+
weight?: number | undefined;
|
|
1505
|
+
kind: "file";
|
|
1506
|
+
path: string;
|
|
1507
|
+
} | {
|
|
1508
|
+
italic?: boolean | undefined;
|
|
1509
|
+
weight?: number | undefined;
|
|
1510
|
+
kind: "data";
|
|
1511
|
+
data: string;
|
|
1512
|
+
} | {
|
|
1513
|
+
italic?: boolean | undefined;
|
|
1514
|
+
weight?: number | undefined;
|
|
1515
|
+
kind: "url";
|
|
1516
|
+
url: string;
|
|
1517
|
+
} | {
|
|
1518
|
+
italic?: boolean | undefined;
|
|
1519
|
+
axes?: {
|
|
1520
|
+
[x: string]: number;
|
|
1521
|
+
} | undefined;
|
|
1522
|
+
kind: "variable";
|
|
1523
|
+
weight: number;
|
|
1524
|
+
url: string;
|
|
1525
|
+
})[];
|
|
1526
|
+
}[] | undefined;
|
|
1453
1527
|
styles?: {
|
|
1454
1528
|
normal?: {
|
|
1455
1529
|
size?: number | undefined;
|
|
@@ -2523,6 +2597,7 @@ export declare const minimalTheme: {
|
|
|
2523
2597
|
before?: number | undefined;
|
|
2524
2598
|
after?: number | undefined;
|
|
2525
2599
|
} | undefined;
|
|
2600
|
+
id?: string | undefined;
|
|
2526
2601
|
alignment?: "left" | "right" | "center" | "justify" | undefined;
|
|
2527
2602
|
keepNext?: boolean | undefined;
|
|
2528
2603
|
indent?: {
|
|
@@ -2563,7 +2638,6 @@ export declare const minimalTheme: {
|
|
|
2563
2638
|
pageBreak?: boolean | undefined;
|
|
2564
2639
|
columnBreak?: boolean | undefined;
|
|
2565
2640
|
keepLines?: boolean | undefined;
|
|
2566
|
-
id?: string | undefined;
|
|
2567
2641
|
themeStyle?: string | undefined;
|
|
2568
2642
|
boldColor?: string | undefined;
|
|
2569
2643
|
floating?: {
|
|
@@ -2590,6 +2664,7 @@ export declare const minimalTheme: {
|
|
|
2590
2664
|
before?: number | undefined;
|
|
2591
2665
|
after?: number | undefined;
|
|
2592
2666
|
} | undefined;
|
|
2667
|
+
path?: string | undefined;
|
|
2593
2668
|
width?: string | number | undefined;
|
|
2594
2669
|
height?: string | number | undefined;
|
|
2595
2670
|
alignment?: "left" | "right" | "center" | undefined;
|
|
@@ -2624,7 +2699,6 @@ export declare const minimalTheme: {
|
|
|
2624
2699
|
rotation?: number | undefined;
|
|
2625
2700
|
visibility?: "hidden" | "inherit" | undefined;
|
|
2626
2701
|
} | undefined;
|
|
2627
|
-
path?: string | undefined;
|
|
2628
2702
|
base64?: string | undefined;
|
|
2629
2703
|
svg?: string | undefined;
|
|
2630
2704
|
alt?: string | undefined;
|
|
@@ -2860,6 +2934,43 @@ export declare const minimalTheme: {
|
|
|
2860
2934
|
};
|
|
2861
2935
|
export declare const corporateTheme: {
|
|
2862
2936
|
$schema?: string | undefined;
|
|
2937
|
+
fontRegistry?: {
|
|
2938
|
+
category?: "mono" | "sans" | "serif" | "display" | "handwriting" | undefined;
|
|
2939
|
+
family: string;
|
|
2940
|
+
id: string;
|
|
2941
|
+
sources: ({
|
|
2942
|
+
family: string;
|
|
2943
|
+
kind: "safe";
|
|
2944
|
+
} | {
|
|
2945
|
+
weights?: number[] | undefined;
|
|
2946
|
+
italics?: boolean | undefined;
|
|
2947
|
+
family: string;
|
|
2948
|
+
kind: "google";
|
|
2949
|
+
} | {
|
|
2950
|
+
italic?: boolean | undefined;
|
|
2951
|
+
weight?: number | undefined;
|
|
2952
|
+
kind: "file";
|
|
2953
|
+
path: string;
|
|
2954
|
+
} | {
|
|
2955
|
+
italic?: boolean | undefined;
|
|
2956
|
+
weight?: number | undefined;
|
|
2957
|
+
kind: "data";
|
|
2958
|
+
data: string;
|
|
2959
|
+
} | {
|
|
2960
|
+
italic?: boolean | undefined;
|
|
2961
|
+
weight?: number | undefined;
|
|
2962
|
+
kind: "url";
|
|
2963
|
+
url: string;
|
|
2964
|
+
} | {
|
|
2965
|
+
italic?: boolean | undefined;
|
|
2966
|
+
axes?: {
|
|
2967
|
+
[x: string]: number;
|
|
2968
|
+
} | undefined;
|
|
2969
|
+
kind: "variable";
|
|
2970
|
+
weight: number;
|
|
2971
|
+
url: string;
|
|
2972
|
+
})[];
|
|
2973
|
+
}[] | undefined;
|
|
2863
2974
|
styles?: {
|
|
2864
2975
|
normal?: {
|
|
2865
2976
|
size?: number | undefined;
|
|
@@ -3933,6 +4044,7 @@ export declare const corporateTheme: {
|
|
|
3933
4044
|
before?: number | undefined;
|
|
3934
4045
|
after?: number | undefined;
|
|
3935
4046
|
} | undefined;
|
|
4047
|
+
id?: string | undefined;
|
|
3936
4048
|
alignment?: "left" | "right" | "center" | "justify" | undefined;
|
|
3937
4049
|
keepNext?: boolean | undefined;
|
|
3938
4050
|
indent?: {
|
|
@@ -3973,7 +4085,6 @@ export declare const corporateTheme: {
|
|
|
3973
4085
|
pageBreak?: boolean | undefined;
|
|
3974
4086
|
columnBreak?: boolean | undefined;
|
|
3975
4087
|
keepLines?: boolean | undefined;
|
|
3976
|
-
id?: string | undefined;
|
|
3977
4088
|
themeStyle?: string | undefined;
|
|
3978
4089
|
boldColor?: string | undefined;
|
|
3979
4090
|
floating?: {
|
|
@@ -4000,6 +4111,7 @@ export declare const corporateTheme: {
|
|
|
4000
4111
|
before?: number | undefined;
|
|
4001
4112
|
after?: number | undefined;
|
|
4002
4113
|
} | undefined;
|
|
4114
|
+
path?: string | undefined;
|
|
4003
4115
|
width?: string | number | undefined;
|
|
4004
4116
|
height?: string | number | undefined;
|
|
4005
4117
|
alignment?: "left" | "right" | "center" | undefined;
|
|
@@ -4034,7 +4146,6 @@ export declare const corporateTheme: {
|
|
|
4034
4146
|
rotation?: number | undefined;
|
|
4035
4147
|
visibility?: "hidden" | "inherit" | undefined;
|
|
4036
4148
|
} | undefined;
|
|
4037
|
-
path?: string | undefined;
|
|
4038
4149
|
base64?: string | undefined;
|
|
4039
4150
|
svg?: string | undefined;
|
|
4040
4151
|
alt?: string | undefined;
|
|
@@ -4270,6 +4381,43 @@ export declare const corporateTheme: {
|
|
|
4270
4381
|
};
|
|
4271
4382
|
export declare const modernTheme: {
|
|
4272
4383
|
$schema?: string | undefined;
|
|
4384
|
+
fontRegistry?: {
|
|
4385
|
+
category?: "mono" | "sans" | "serif" | "display" | "handwriting" | undefined;
|
|
4386
|
+
family: string;
|
|
4387
|
+
id: string;
|
|
4388
|
+
sources: ({
|
|
4389
|
+
family: string;
|
|
4390
|
+
kind: "safe";
|
|
4391
|
+
} | {
|
|
4392
|
+
weights?: number[] | undefined;
|
|
4393
|
+
italics?: boolean | undefined;
|
|
4394
|
+
family: string;
|
|
4395
|
+
kind: "google";
|
|
4396
|
+
} | {
|
|
4397
|
+
italic?: boolean | undefined;
|
|
4398
|
+
weight?: number | undefined;
|
|
4399
|
+
kind: "file";
|
|
4400
|
+
path: string;
|
|
4401
|
+
} | {
|
|
4402
|
+
italic?: boolean | undefined;
|
|
4403
|
+
weight?: number | undefined;
|
|
4404
|
+
kind: "data";
|
|
4405
|
+
data: string;
|
|
4406
|
+
} | {
|
|
4407
|
+
italic?: boolean | undefined;
|
|
4408
|
+
weight?: number | undefined;
|
|
4409
|
+
kind: "url";
|
|
4410
|
+
url: string;
|
|
4411
|
+
} | {
|
|
4412
|
+
italic?: boolean | undefined;
|
|
4413
|
+
axes?: {
|
|
4414
|
+
[x: string]: number;
|
|
4415
|
+
} | undefined;
|
|
4416
|
+
kind: "variable";
|
|
4417
|
+
weight: number;
|
|
4418
|
+
url: string;
|
|
4419
|
+
})[];
|
|
4420
|
+
}[] | undefined;
|
|
4273
4421
|
styles?: {
|
|
4274
4422
|
normal?: {
|
|
4275
4423
|
size?: number | undefined;
|
|
@@ -5343,6 +5491,7 @@ export declare const modernTheme: {
|
|
|
5343
5491
|
before?: number | undefined;
|
|
5344
5492
|
after?: number | undefined;
|
|
5345
5493
|
} | undefined;
|
|
5494
|
+
id?: string | undefined;
|
|
5346
5495
|
alignment?: "left" | "right" | "center" | "justify" | undefined;
|
|
5347
5496
|
keepNext?: boolean | undefined;
|
|
5348
5497
|
indent?: {
|
|
@@ -5383,7 +5532,6 @@ export declare const modernTheme: {
|
|
|
5383
5532
|
pageBreak?: boolean | undefined;
|
|
5384
5533
|
columnBreak?: boolean | undefined;
|
|
5385
5534
|
keepLines?: boolean | undefined;
|
|
5386
|
-
id?: string | undefined;
|
|
5387
5535
|
themeStyle?: string | undefined;
|
|
5388
5536
|
boldColor?: string | undefined;
|
|
5389
5537
|
floating?: {
|
|
@@ -5410,6 +5558,7 @@ export declare const modernTheme: {
|
|
|
5410
5558
|
before?: number | undefined;
|
|
5411
5559
|
after?: number | undefined;
|
|
5412
5560
|
} | undefined;
|
|
5561
|
+
path?: string | undefined;
|
|
5413
5562
|
width?: string | number | undefined;
|
|
5414
5563
|
height?: string | number | undefined;
|
|
5415
5564
|
alignment?: "left" | "right" | "center" | undefined;
|
|
@@ -5444,7 +5593,6 @@ export declare const modernTheme: {
|
|
|
5444
5593
|
rotation?: number | undefined;
|
|
5445
5594
|
visibility?: "hidden" | "inherit" | undefined;
|
|
5446
5595
|
} | undefined;
|
|
5447
|
-
path?: string | undefined;
|
|
5448
5596
|
base64?: string | undefined;
|
|
5449
5597
|
svg?: string | undefined;
|
|
5450
5598
|
alt?: string | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/templates/themes/index.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAKH,OAAO,EAEL,KAAK,eAAe,EACrB,MAAM,6BAA6B,CAAC;AAkFrC,eAAO,MAAM,MAAM
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/templates/themes/index.ts"],"names":[],"mappings":"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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAAoB,CAAC;AAC9C,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAAsB,CAAC;AAClD,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAAmB,CAAC"}
|