@kl1/contracts 1.0.97 → 1.0.99-uat
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/index.js +10 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +10 -1
- package/dist/index.mjs.map +1 -1
- package/dist/src/chat/index.d.ts +162 -54
- package/dist/src/chat/index.d.ts.map +1 -1
- package/dist/src/chat/schema.d.ts +24 -8
- package/dist/src/chat/schema.d.ts.map +1 -1
- package/dist/src/chat/validation.d.ts +68 -7
- package/dist/src/chat/validation.d.ts.map +1 -1
- package/dist/src/contract.d.ts +434 -82
- package/dist/src/contract.d.ts.map +1 -1
- package/dist/src/instagram/index.d.ts +68 -7
- package/dist/src/instagram/index.d.ts.map +1 -1
- package/dist/src/line/index.d.ts +68 -7
- package/dist/src/line/index.d.ts.map +1 -1
- package/dist/src/messenger/index.d.ts +68 -7
- package/dist/src/messenger/index.d.ts.map +1 -1
- package/dist/src/viber/index.d.ts +68 -7
- package/dist/src/viber/index.d.ts.map +1 -1
- package/package.json +1 -1
@@ -1111,6 +1111,7 @@ export declare const viberContract: {
|
|
1111
1111
|
createdAt: z.ZodString;
|
1112
1112
|
updatedAt: z.ZodString;
|
1113
1113
|
platformContact: z.ZodObject<{
|
1114
|
+
id: z.ZodString;
|
1114
1115
|
channelId: z.ZodString;
|
1115
1116
|
socialPlatformId: z.ZodNullable<z.ZodString>;
|
1116
1117
|
type: z.ZodEnum<["whatsapp", "messenger", "telegram", "instagram", "line", "viber", "kakao", "shopee", "lazada"]>;
|
@@ -1154,6 +1155,7 @@ export declare const viberContract: {
|
|
1154
1155
|
}>;
|
1155
1156
|
}, "strip", z.ZodTypeAny, {
|
1156
1157
|
type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
|
1158
|
+
id: string;
|
1157
1159
|
metadata: {
|
1158
1160
|
id: string;
|
1159
1161
|
name: string;
|
@@ -1172,6 +1174,7 @@ export declare const viberContract: {
|
|
1172
1174
|
socialPlatformId: string | null;
|
1173
1175
|
}, {
|
1174
1176
|
type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
|
1177
|
+
id: string;
|
1175
1178
|
metadata: {
|
1176
1179
|
id: string;
|
1177
1180
|
name: string;
|
@@ -1190,21 +1193,37 @@ export declare const viberContract: {
|
|
1190
1193
|
socialPlatformId: string | null;
|
1191
1194
|
}>;
|
1192
1195
|
actor: z.ZodNullable<z.ZodObject<{
|
1196
|
+
id: z.ZodString;
|
1193
1197
|
name: z.ZodString;
|
1194
1198
|
email: z.ZodString;
|
1195
1199
|
address: z.ZodNullable<z.ZodString>;
|
1196
1200
|
phone: z.ZodNullable<z.ZodString>;
|
1197
1201
|
}, "strip", z.ZodTypeAny, {
|
1202
|
+
id: string;
|
1198
1203
|
address: string | null;
|
1199
1204
|
name: string;
|
1200
1205
|
email: string;
|
1201
1206
|
phone: string | null;
|
1202
1207
|
}, {
|
1208
|
+
id: string;
|
1203
1209
|
address: string | null;
|
1204
1210
|
name: string;
|
1205
1211
|
email: string;
|
1206
1212
|
phone: string | null;
|
1207
1213
|
}>>;
|
1214
|
+
assignee: z.ZodNullable<z.ZodObject<{
|
1215
|
+
id: z.ZodString;
|
1216
|
+
name: z.ZodString;
|
1217
|
+
email: z.ZodString;
|
1218
|
+
}, "strip", z.ZodTypeAny, {
|
1219
|
+
id: string;
|
1220
|
+
name: string;
|
1221
|
+
email: string;
|
1222
|
+
}, {
|
1223
|
+
id: string;
|
1224
|
+
name: string;
|
1225
|
+
email: string;
|
1226
|
+
}>>;
|
1208
1227
|
channel: z.ZodObject<{
|
1209
1228
|
id: z.ZodString;
|
1210
1229
|
name: z.ZodString;
|
@@ -1330,6 +1349,7 @@ export declare const viberContract: {
|
|
1330
1349
|
createdAt: string;
|
1331
1350
|
updatedAt: string;
|
1332
1351
|
actor: {
|
1352
|
+
id: string;
|
1333
1353
|
address: string | null;
|
1334
1354
|
name: string;
|
1335
1355
|
email: string;
|
@@ -1338,6 +1358,7 @@ export declare const viberContract: {
|
|
1338
1358
|
isLatest: boolean;
|
1339
1359
|
platformContact: {
|
1340
1360
|
type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
|
1361
|
+
id: string;
|
1341
1362
|
metadata: {
|
1342
1363
|
id: string;
|
1343
1364
|
name: string;
|
@@ -1355,6 +1376,11 @@ export declare const viberContract: {
|
|
1355
1376
|
channelId: string;
|
1356
1377
|
socialPlatformId: string | null;
|
1357
1378
|
};
|
1379
|
+
assignee: {
|
1380
|
+
id: string;
|
1381
|
+
name: string;
|
1382
|
+
email: string;
|
1383
|
+
} | null;
|
1358
1384
|
lastMessage?: string | undefined;
|
1359
1385
|
handleTime?: number | undefined;
|
1360
1386
|
messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
|
@@ -1388,6 +1414,7 @@ export declare const viberContract: {
|
|
1388
1414
|
createdAt: string;
|
1389
1415
|
updatedAt: string;
|
1390
1416
|
actor: {
|
1417
|
+
id: string;
|
1391
1418
|
address: string | null;
|
1392
1419
|
name: string;
|
1393
1420
|
email: string;
|
@@ -1396,6 +1423,7 @@ export declare const viberContract: {
|
|
1396
1423
|
isLatest: boolean;
|
1397
1424
|
platformContact: {
|
1398
1425
|
type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
|
1426
|
+
id: string;
|
1399
1427
|
metadata: {
|
1400
1428
|
id: string;
|
1401
1429
|
name: string;
|
@@ -1413,6 +1441,11 @@ export declare const viberContract: {
|
|
1413
1441
|
channelId: string;
|
1414
1442
|
socialPlatformId: string | null;
|
1415
1443
|
};
|
1444
|
+
assignee: {
|
1445
|
+
id: string;
|
1446
|
+
name: string;
|
1447
|
+
email: string;
|
1448
|
+
} | null;
|
1416
1449
|
lastMessage?: string | undefined;
|
1417
1450
|
handleTime?: number | undefined;
|
1418
1451
|
messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
|
@@ -1580,6 +1613,7 @@ export declare const viberContract: {
|
|
1580
1613
|
createdAt: string;
|
1581
1614
|
updatedAt: string;
|
1582
1615
|
actor: {
|
1616
|
+
id: string;
|
1583
1617
|
address: string | null;
|
1584
1618
|
name: string;
|
1585
1619
|
email: string;
|
@@ -1588,6 +1622,7 @@ export declare const viberContract: {
|
|
1588
1622
|
isLatest: boolean;
|
1589
1623
|
platformContact: {
|
1590
1624
|
type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
|
1625
|
+
id: string;
|
1591
1626
|
metadata: {
|
1592
1627
|
id: string;
|
1593
1628
|
name: string;
|
@@ -1605,6 +1640,11 @@ export declare const viberContract: {
|
|
1605
1640
|
channelId: string;
|
1606
1641
|
socialPlatformId: string | null;
|
1607
1642
|
};
|
1643
|
+
assignee: {
|
1644
|
+
id: string;
|
1645
|
+
name: string;
|
1646
|
+
email: string;
|
1647
|
+
} | null;
|
1608
1648
|
lastMessage?: string | undefined;
|
1609
1649
|
handleTime?: number | undefined;
|
1610
1650
|
messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
|
@@ -1668,6 +1708,7 @@ export declare const viberContract: {
|
|
1668
1708
|
createdAt: string;
|
1669
1709
|
updatedAt: string;
|
1670
1710
|
actor: {
|
1711
|
+
id: string;
|
1671
1712
|
address: string | null;
|
1672
1713
|
name: string;
|
1673
1714
|
email: string;
|
@@ -1676,6 +1717,7 @@ export declare const viberContract: {
|
|
1676
1717
|
isLatest: boolean;
|
1677
1718
|
platformContact: {
|
1678
1719
|
type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
|
1720
|
+
id: string;
|
1679
1721
|
metadata: {
|
1680
1722
|
id: string;
|
1681
1723
|
name: string;
|
@@ -1693,6 +1735,11 @@ export declare const viberContract: {
|
|
1693
1735
|
channelId: string;
|
1694
1736
|
socialPlatformId: string | null;
|
1695
1737
|
};
|
1738
|
+
assignee: {
|
1739
|
+
id: string;
|
1740
|
+
name: string;
|
1741
|
+
email: string;
|
1742
|
+
} | null;
|
1696
1743
|
lastMessage?: string | undefined;
|
1697
1744
|
handleTime?: number | undefined;
|
1698
1745
|
messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
|
@@ -1727,7 +1774,9 @@ export declare const viberContract: {
|
|
1727
1774
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
1728
1775
|
lastMessage: z.ZodString;
|
1729
1776
|
handleTime: z.ZodNumber;
|
1730
|
-
|
1777
|
+
closedAt: z.ZodDate;
|
1778
|
+
lastMessageAt: z.ZodNullable<z.ZodDate>;
|
1779
|
+
status: z.ZodNumber;
|
1731
1780
|
unreadCount: z.ZodNumber;
|
1732
1781
|
firstResponseAt: z.ZodDate;
|
1733
1782
|
firstResponseTime: z.ZodNumber;
|
@@ -3652,6 +3701,7 @@ export declare const viberContract: {
|
|
3652
3701
|
connectedUserId: string;
|
3653
3702
|
};
|
3654
3703
|
direction: "incoming" | "outgoing" | "system";
|
3704
|
+
status: number;
|
3655
3705
|
createdAt: Date;
|
3656
3706
|
updatedAt: Date;
|
3657
3707
|
deletedAt: Date | null;
|
@@ -3702,7 +3752,6 @@ export declare const viberContract: {
|
|
3702
3752
|
firstResponseTime: number;
|
3703
3753
|
lastMessage: string;
|
3704
3754
|
handleTime: number;
|
3705
|
-
closeAt: Date;
|
3706
3755
|
unreadCount: number;
|
3707
3756
|
firstResponseAt: Date;
|
3708
3757
|
isLatest: boolean;
|
@@ -3862,6 +3911,8 @@ export declare const viberContract: {
|
|
3862
3911
|
telephonySignature: string | null;
|
3863
3912
|
};
|
3864
3913
|
};
|
3914
|
+
closedAt: Date;
|
3915
|
+
lastMessageAt: Date | null;
|
3865
3916
|
cxlog: {
|
3866
3917
|
id: string;
|
3867
3918
|
channel: string | null;
|
@@ -3964,6 +4015,7 @@ export declare const viberContract: {
|
|
3964
4015
|
connectedUserId: string;
|
3965
4016
|
};
|
3966
4017
|
direction: "incoming" | "outgoing" | "system";
|
4018
|
+
status: number;
|
3967
4019
|
createdAt: Date;
|
3968
4020
|
updatedAt: Date;
|
3969
4021
|
deletedAt: Date | null;
|
@@ -4014,7 +4066,6 @@ export declare const viberContract: {
|
|
4014
4066
|
firstResponseTime: number;
|
4015
4067
|
lastMessage: string;
|
4016
4068
|
handleTime: number;
|
4017
|
-
closeAt: Date;
|
4018
4069
|
unreadCount: number;
|
4019
4070
|
firstResponseAt: Date;
|
4020
4071
|
isLatest: boolean;
|
@@ -4174,6 +4225,8 @@ export declare const viberContract: {
|
|
4174
4225
|
telephonySignature: string | null;
|
4175
4226
|
};
|
4176
4227
|
};
|
4228
|
+
closedAt: Date;
|
4229
|
+
lastMessageAt: Date | null;
|
4177
4230
|
cxlog: {
|
4178
4231
|
id: string;
|
4179
4232
|
channel: string | null;
|
@@ -6022,6 +6075,7 @@ export declare const viberContract: {
|
|
6022
6075
|
connectedUserId: string;
|
6023
6076
|
};
|
6024
6077
|
direction: "incoming" | "outgoing" | "system";
|
6078
|
+
status: number;
|
6025
6079
|
createdAt: Date;
|
6026
6080
|
updatedAt: Date;
|
6027
6081
|
deletedAt: Date | null;
|
@@ -6072,7 +6126,6 @@ export declare const viberContract: {
|
|
6072
6126
|
firstResponseTime: number;
|
6073
6127
|
lastMessage: string;
|
6074
6128
|
handleTime: number;
|
6075
|
-
closeAt: Date;
|
6076
6129
|
unreadCount: number;
|
6077
6130
|
firstResponseAt: Date;
|
6078
6131
|
isLatest: boolean;
|
@@ -6232,6 +6285,8 @@ export declare const viberContract: {
|
|
6232
6285
|
telephonySignature: string | null;
|
6233
6286
|
};
|
6234
6287
|
};
|
6288
|
+
closedAt: Date;
|
6289
|
+
lastMessageAt: Date | null;
|
6235
6290
|
cxlog: {
|
6236
6291
|
id: string;
|
6237
6292
|
channel: string | null;
|
@@ -6660,6 +6715,7 @@ export declare const viberContract: {
|
|
6660
6715
|
connectedUserId: string;
|
6661
6716
|
};
|
6662
6717
|
direction: "incoming" | "outgoing" | "system";
|
6718
|
+
status: number;
|
6663
6719
|
createdAt: Date;
|
6664
6720
|
updatedAt: Date;
|
6665
6721
|
deletedAt: Date | null;
|
@@ -6710,7 +6766,6 @@ export declare const viberContract: {
|
|
6710
6766
|
firstResponseTime: number;
|
6711
6767
|
lastMessage: string;
|
6712
6768
|
handleTime: number;
|
6713
|
-
closeAt: Date;
|
6714
6769
|
unreadCount: number;
|
6715
6770
|
firstResponseAt: Date;
|
6716
6771
|
isLatest: boolean;
|
@@ -6870,6 +6925,8 @@ export declare const viberContract: {
|
|
6870
6925
|
telephonySignature: string | null;
|
6871
6926
|
};
|
6872
6927
|
};
|
6928
|
+
closedAt: Date;
|
6929
|
+
lastMessageAt: Date | null;
|
6873
6930
|
cxlog: {
|
6874
6931
|
id: string;
|
6875
6932
|
channel: string | null;
|
@@ -7300,6 +7357,7 @@ export declare const viberContract: {
|
|
7300
7357
|
connectedUserId: string;
|
7301
7358
|
};
|
7302
7359
|
direction: "incoming" | "outgoing" | "system";
|
7360
|
+
status: number;
|
7303
7361
|
createdAt: Date;
|
7304
7362
|
updatedAt: Date;
|
7305
7363
|
deletedAt: Date | null;
|
@@ -7350,7 +7408,6 @@ export declare const viberContract: {
|
|
7350
7408
|
firstResponseTime: number;
|
7351
7409
|
lastMessage: string;
|
7352
7410
|
handleTime: number;
|
7353
|
-
closeAt: Date;
|
7354
7411
|
unreadCount: number;
|
7355
7412
|
firstResponseAt: Date;
|
7356
7413
|
isLatest: boolean;
|
@@ -7510,6 +7567,8 @@ export declare const viberContract: {
|
|
7510
7567
|
telephonySignature: string | null;
|
7511
7568
|
};
|
7512
7569
|
};
|
7570
|
+
closedAt: Date;
|
7571
|
+
lastMessageAt: Date | null;
|
7513
7572
|
cxlog: {
|
7514
7573
|
id: string;
|
7515
7574
|
channel: string | null;
|
@@ -7941,6 +8000,7 @@ export declare const viberContract: {
|
|
7941
8000
|
connectedUserId: string;
|
7942
8001
|
};
|
7943
8002
|
direction: "incoming" | "outgoing" | "system";
|
8003
|
+
status: number;
|
7944
8004
|
createdAt: Date;
|
7945
8005
|
updatedAt: Date;
|
7946
8006
|
deletedAt: Date | null;
|
@@ -7991,7 +8051,6 @@ export declare const viberContract: {
|
|
7991
8051
|
firstResponseTime: number;
|
7992
8052
|
lastMessage: string;
|
7993
8053
|
handleTime: number;
|
7994
|
-
closeAt: Date;
|
7995
8054
|
unreadCount: number;
|
7996
8055
|
firstResponseAt: Date;
|
7997
8056
|
isLatest: boolean;
|
@@ -8151,6 +8210,8 @@ export declare const viberContract: {
|
|
8151
8210
|
telephonySignature: string | null;
|
8152
8211
|
};
|
8153
8212
|
};
|
8213
|
+
closedAt: Date;
|
8214
|
+
lastMessageAt: Date | null;
|
8154
8215
|
cxlog: {
|
8155
8216
|
id: string;
|
8156
8217
|
channel: string | null;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/viber/index.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AACpB,OAAO,EAAE,kBAAkB,EAAE,MAAM,cAAc,CAAC;AAalD,MAAM,MAAM,mBAAmB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAC;AAErE,eAAO,MAAM,aAAa
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/viber/index.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AACpB,OAAO,EAAE,kBAAkB,EAAE,MAAM,cAAc,CAAC;AAalD,MAAM,MAAM,mBAAmB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAC;AAErE,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAmExB,CAAC"}
|