@kl1/contracts 1.0.98 → 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 +768 -856
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +768 -855
- package/dist/index.mjs.map +1 -1
- package/dist/src/chat/index.d.ts +165 -57
- 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 +76 -15
- package/dist/src/chat/validation.d.ts.map +1 -1
- package/dist/src/contract.d.ts +1453 -1941
- package/dist/src/contract.d.ts.map +1 -1
- package/dist/src/index.d.ts +0 -1
- package/dist/src/index.d.ts.map +1 -1
- package/dist/src/instagram/index.d.ts +73 -12
- package/dist/src/instagram/index.d.ts.map +1 -1
- package/dist/src/line/index.d.ts +73 -12
- package/dist/src/line/index.d.ts.map +1 -1
- package/dist/src/mail/account-contract.d.ts +132 -132
- package/dist/src/mail/mail-contract.d.ts +258 -715
- package/dist/src/mail/mail-contract.d.ts.map +1 -1
- package/dist/src/mail/mail-server-contract.d.ts +18 -477
- package/dist/src/mail/mail-server-contract.d.ts.map +1 -1
- package/dist/src/mail/room-contract.d.ts +108 -108
- package/dist/src/mail/schemas/account-validation.schema.d.ts +140 -140
- package/dist/src/mail/schemas/account.schema.d.ts +32 -32
- package/dist/src/mail/schemas/room-validation.schema.d.ts +36 -36
- package/dist/src/mail/schemas/room.schema.d.ts +28 -28
- package/dist/src/messenger/index.d.ts +73 -12
- package/dist/src/messenger/index.d.ts.map +1 -1
- package/dist/src/user/index.d.ts +4 -388
- package/dist/src/user/index.d.ts.map +1 -1
- package/dist/src/user/validation.d.ts +0 -7
- package/dist/src/user/validation.d.ts.map +1 -1
- package/dist/src/viber/index.d.ts +73 -12
- package/dist/src/viber/index.d.ts.map +1 -1
- package/package.json +1 -1
@@ -17,6 +17,7 @@ export declare const messengerContract: {
|
|
17
17
|
createdAt: z.ZodString;
|
18
18
|
updatedAt: z.ZodString;
|
19
19
|
platformContact: z.ZodObject<{
|
20
|
+
id: z.ZodString;
|
20
21
|
channelId: z.ZodString;
|
21
22
|
socialPlatformId: z.ZodNullable<z.ZodString>;
|
22
23
|
type: z.ZodEnum<["whatsapp", "messenger", "telegram", "instagram", "line", "viber", "kakao", "shopee", "lazada"]>;
|
@@ -60,6 +61,7 @@ export declare const messengerContract: {
|
|
60
61
|
}>;
|
61
62
|
}, "strip", z.ZodTypeAny, {
|
62
63
|
type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
|
64
|
+
id: string;
|
63
65
|
metadata: {
|
64
66
|
id: string;
|
65
67
|
name: string;
|
@@ -78,6 +80,7 @@ export declare const messengerContract: {
|
|
78
80
|
socialPlatformId: string | null;
|
79
81
|
}, {
|
80
82
|
type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
|
83
|
+
id: string;
|
81
84
|
metadata: {
|
82
85
|
id: string;
|
83
86
|
name: string;
|
@@ -96,21 +99,37 @@ export declare const messengerContract: {
|
|
96
99
|
socialPlatformId: string | null;
|
97
100
|
}>;
|
98
101
|
actor: z.ZodNullable<z.ZodObject<{
|
102
|
+
id: z.ZodString;
|
99
103
|
name: z.ZodString;
|
100
104
|
email: z.ZodString;
|
101
105
|
address: z.ZodNullable<z.ZodString>;
|
102
106
|
phone: z.ZodNullable<z.ZodString>;
|
103
107
|
}, "strip", z.ZodTypeAny, {
|
108
|
+
id: string;
|
104
109
|
address: string | null;
|
105
110
|
name: string;
|
106
111
|
email: string;
|
107
112
|
phone: string | null;
|
108
113
|
}, {
|
114
|
+
id: string;
|
109
115
|
address: string | null;
|
110
116
|
name: string;
|
111
117
|
email: string;
|
112
118
|
phone: string | null;
|
113
119
|
}>>;
|
120
|
+
assignee: z.ZodNullable<z.ZodObject<{
|
121
|
+
id: z.ZodString;
|
122
|
+
name: z.ZodString;
|
123
|
+
email: z.ZodString;
|
124
|
+
}, "strip", z.ZodTypeAny, {
|
125
|
+
id: string;
|
126
|
+
name: string;
|
127
|
+
email: string;
|
128
|
+
}, {
|
129
|
+
id: string;
|
130
|
+
name: string;
|
131
|
+
email: string;
|
132
|
+
}>>;
|
114
133
|
channel: z.ZodObject<{
|
115
134
|
id: z.ZodString;
|
116
135
|
name: z.ZodString;
|
@@ -205,7 +224,7 @@ export declare const messengerContract: {
|
|
205
224
|
phone: string | null;
|
206
225
|
} | undefined;
|
207
226
|
}>;
|
208
|
-
|
227
|
+
messengerTags: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"post_purchase_update">, z.ZodLiteral<"account_update">, z.ZodLiteral<"confirmed_event_update">]>>;
|
209
228
|
}, "strip", z.ZodTypeAny, {
|
210
229
|
id: string;
|
211
230
|
channel: {
|
@@ -233,10 +252,10 @@ export declare const messengerContract: {
|
|
233
252
|
} | undefined;
|
234
253
|
};
|
235
254
|
direction: "incoming" | "outgoing" | "system";
|
236
|
-
status: number;
|
237
255
|
createdAt: string;
|
238
256
|
updatedAt: string;
|
239
257
|
actor: {
|
258
|
+
id: string;
|
240
259
|
address: string | null;
|
241
260
|
name: string;
|
242
261
|
email: string;
|
@@ -245,6 +264,7 @@ export declare const messengerContract: {
|
|
245
264
|
isLatest: boolean;
|
246
265
|
platformContact: {
|
247
266
|
type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
|
267
|
+
id: string;
|
248
268
|
metadata: {
|
249
269
|
id: string;
|
250
270
|
name: string;
|
@@ -262,8 +282,14 @@ export declare const messengerContract: {
|
|
262
282
|
channelId: string;
|
263
283
|
socialPlatformId: string | null;
|
264
284
|
};
|
285
|
+
assignee: {
|
286
|
+
id: string;
|
287
|
+
name: string;
|
288
|
+
email: string;
|
289
|
+
} | null;
|
265
290
|
lastMessage?: string | undefined;
|
266
291
|
handleTime?: number | undefined;
|
292
|
+
messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
|
267
293
|
}, {
|
268
294
|
id: string;
|
269
295
|
channel: {
|
@@ -291,10 +317,10 @@ export declare const messengerContract: {
|
|
291
317
|
} | undefined;
|
292
318
|
};
|
293
319
|
direction: "incoming" | "outgoing" | "system";
|
294
|
-
status: number;
|
295
320
|
createdAt: string;
|
296
321
|
updatedAt: string;
|
297
322
|
actor: {
|
323
|
+
id: string;
|
298
324
|
address: string | null;
|
299
325
|
name: string;
|
300
326
|
email: string;
|
@@ -303,6 +329,7 @@ export declare const messengerContract: {
|
|
303
329
|
isLatest: boolean;
|
304
330
|
platformContact: {
|
305
331
|
type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
|
332
|
+
id: string;
|
306
333
|
metadata: {
|
307
334
|
id: string;
|
308
335
|
name: string;
|
@@ -320,8 +347,14 @@ export declare const messengerContract: {
|
|
320
347
|
channelId: string;
|
321
348
|
socialPlatformId: string | null;
|
322
349
|
};
|
350
|
+
assignee: {
|
351
|
+
id: string;
|
352
|
+
name: string;
|
353
|
+
email: string;
|
354
|
+
} | null;
|
323
355
|
lastMessage?: string | undefined;
|
324
356
|
handleTime?: number | undefined;
|
357
|
+
messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
|
325
358
|
}>;
|
326
359
|
message: z.ZodObject<{
|
327
360
|
message: z.ZodOptional<z.ZodString>;
|
@@ -483,10 +516,10 @@ export declare const messengerContract: {
|
|
483
516
|
} | undefined;
|
484
517
|
};
|
485
518
|
direction: "incoming" | "outgoing" | "system";
|
486
|
-
status: number;
|
487
519
|
createdAt: string;
|
488
520
|
updatedAt: string;
|
489
521
|
actor: {
|
522
|
+
id: string;
|
490
523
|
address: string | null;
|
491
524
|
name: string;
|
492
525
|
email: string;
|
@@ -495,6 +528,7 @@ export declare const messengerContract: {
|
|
495
528
|
isLatest: boolean;
|
496
529
|
platformContact: {
|
497
530
|
type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
|
531
|
+
id: string;
|
498
532
|
metadata: {
|
499
533
|
id: string;
|
500
534
|
name: string;
|
@@ -512,8 +546,14 @@ export declare const messengerContract: {
|
|
512
546
|
channelId: string;
|
513
547
|
socialPlatformId: string | null;
|
514
548
|
};
|
549
|
+
assignee: {
|
550
|
+
id: string;
|
551
|
+
name: string;
|
552
|
+
email: string;
|
553
|
+
} | null;
|
515
554
|
lastMessage?: string | undefined;
|
516
555
|
handleTime?: number | undefined;
|
556
|
+
messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
|
517
557
|
};
|
518
558
|
}, {
|
519
559
|
message: {
|
@@ -571,10 +611,10 @@ export declare const messengerContract: {
|
|
571
611
|
} | undefined;
|
572
612
|
};
|
573
613
|
direction: "incoming" | "outgoing" | "system";
|
574
|
-
status: number;
|
575
614
|
createdAt: string;
|
576
615
|
updatedAt: string;
|
577
616
|
actor: {
|
617
|
+
id: string;
|
578
618
|
address: string | null;
|
579
619
|
name: string;
|
580
620
|
email: string;
|
@@ -583,6 +623,7 @@ export declare const messengerContract: {
|
|
583
623
|
isLatest: boolean;
|
584
624
|
platformContact: {
|
585
625
|
type: "line" | "whatsapp" | "messenger" | "telegram" | "instagram" | "viber" | "kakao" | "shopee" | "lazada";
|
626
|
+
id: string;
|
586
627
|
metadata: {
|
587
628
|
id: string;
|
588
629
|
name: string;
|
@@ -600,8 +641,14 @@ export declare const messengerContract: {
|
|
600
641
|
channelId: string;
|
601
642
|
socialPlatformId: string | null;
|
602
643
|
};
|
644
|
+
assignee: {
|
645
|
+
id: string;
|
646
|
+
name: string;
|
647
|
+
email: string;
|
648
|
+
} | null;
|
603
649
|
lastMessage?: string | undefined;
|
604
650
|
handleTime?: number | undefined;
|
651
|
+
messengerTags?: "post_purchase_update" | "account_update" | "confirmed_event_update" | undefined;
|
605
652
|
};
|
606
653
|
}>;
|
607
654
|
method: "POST";
|
@@ -633,7 +680,9 @@ export declare const messengerContract: {
|
|
633
680
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
634
681
|
lastMessage: z.ZodString;
|
635
682
|
handleTime: z.ZodNumber;
|
636
|
-
|
683
|
+
closedAt: z.ZodDate;
|
684
|
+
lastMessageAt: z.ZodNullable<z.ZodDate>;
|
685
|
+
status: z.ZodNumber;
|
637
686
|
unreadCount: z.ZodNumber;
|
638
687
|
firstResponseAt: z.ZodDate;
|
639
688
|
firstResponseTime: z.ZodNumber;
|
@@ -2558,6 +2607,7 @@ export declare const messengerContract: {
|
|
2558
2607
|
connectedUserId: string;
|
2559
2608
|
};
|
2560
2609
|
direction: "incoming" | "outgoing" | "system";
|
2610
|
+
status: number;
|
2561
2611
|
createdAt: Date;
|
2562
2612
|
updatedAt: Date;
|
2563
2613
|
deletedAt: Date | null;
|
@@ -2608,7 +2658,6 @@ export declare const messengerContract: {
|
|
2608
2658
|
firstResponseTime: number;
|
2609
2659
|
lastMessage: string;
|
2610
2660
|
handleTime: number;
|
2611
|
-
closeAt: Date;
|
2612
2661
|
unreadCount: number;
|
2613
2662
|
firstResponseAt: Date;
|
2614
2663
|
isLatest: boolean;
|
@@ -2768,6 +2817,8 @@ export declare const messengerContract: {
|
|
2768
2817
|
telephonySignature: string | null;
|
2769
2818
|
};
|
2770
2819
|
};
|
2820
|
+
closedAt: Date;
|
2821
|
+
lastMessageAt: Date | null;
|
2771
2822
|
cxlog: {
|
2772
2823
|
id: string;
|
2773
2824
|
channel: string | null;
|
@@ -2870,6 +2921,7 @@ export declare const messengerContract: {
|
|
2870
2921
|
connectedUserId: string;
|
2871
2922
|
};
|
2872
2923
|
direction: "incoming" | "outgoing" | "system";
|
2924
|
+
status: number;
|
2873
2925
|
createdAt: Date;
|
2874
2926
|
updatedAt: Date;
|
2875
2927
|
deletedAt: Date | null;
|
@@ -2920,7 +2972,6 @@ export declare const messengerContract: {
|
|
2920
2972
|
firstResponseTime: number;
|
2921
2973
|
lastMessage: string;
|
2922
2974
|
handleTime: number;
|
2923
|
-
closeAt: Date;
|
2924
2975
|
unreadCount: number;
|
2925
2976
|
firstResponseAt: Date;
|
2926
2977
|
isLatest: boolean;
|
@@ -3080,6 +3131,8 @@ export declare const messengerContract: {
|
|
3080
3131
|
telephonySignature: string | null;
|
3081
3132
|
};
|
3082
3133
|
};
|
3134
|
+
closedAt: Date;
|
3135
|
+
lastMessageAt: Date | null;
|
3083
3136
|
cxlog: {
|
3084
3137
|
id: string;
|
3085
3138
|
channel: string | null;
|
@@ -4928,6 +4981,7 @@ export declare const messengerContract: {
|
|
4928
4981
|
connectedUserId: string;
|
4929
4982
|
};
|
4930
4983
|
direction: "incoming" | "outgoing" | "system";
|
4984
|
+
status: number;
|
4931
4985
|
createdAt: Date;
|
4932
4986
|
updatedAt: Date;
|
4933
4987
|
deletedAt: Date | null;
|
@@ -4978,7 +5032,6 @@ export declare const messengerContract: {
|
|
4978
5032
|
firstResponseTime: number;
|
4979
5033
|
lastMessage: string;
|
4980
5034
|
handleTime: number;
|
4981
|
-
closeAt: Date;
|
4982
5035
|
unreadCount: number;
|
4983
5036
|
firstResponseAt: Date;
|
4984
5037
|
isLatest: boolean;
|
@@ -5138,6 +5191,8 @@ export declare const messengerContract: {
|
|
5138
5191
|
telephonySignature: string | null;
|
5139
5192
|
};
|
5140
5193
|
};
|
5194
|
+
closedAt: Date;
|
5195
|
+
lastMessageAt: Date | null;
|
5141
5196
|
cxlog: {
|
5142
5197
|
id: string;
|
5143
5198
|
channel: string | null;
|
@@ -5566,6 +5621,7 @@ export declare const messengerContract: {
|
|
5566
5621
|
connectedUserId: string;
|
5567
5622
|
};
|
5568
5623
|
direction: "incoming" | "outgoing" | "system";
|
5624
|
+
status: number;
|
5569
5625
|
createdAt: Date;
|
5570
5626
|
updatedAt: Date;
|
5571
5627
|
deletedAt: Date | null;
|
@@ -5616,7 +5672,6 @@ export declare const messengerContract: {
|
|
5616
5672
|
firstResponseTime: number;
|
5617
5673
|
lastMessage: string;
|
5618
5674
|
handleTime: number;
|
5619
|
-
closeAt: Date;
|
5620
5675
|
unreadCount: number;
|
5621
5676
|
firstResponseAt: Date;
|
5622
5677
|
isLatest: boolean;
|
@@ -5776,6 +5831,8 @@ export declare const messengerContract: {
|
|
5776
5831
|
telephonySignature: string | null;
|
5777
5832
|
};
|
5778
5833
|
};
|
5834
|
+
closedAt: Date;
|
5835
|
+
lastMessageAt: Date | null;
|
5779
5836
|
cxlog: {
|
5780
5837
|
id: string;
|
5781
5838
|
channel: string | null;
|
@@ -6206,6 +6263,7 @@ export declare const messengerContract: {
|
|
6206
6263
|
connectedUserId: string;
|
6207
6264
|
};
|
6208
6265
|
direction: "incoming" | "outgoing" | "system";
|
6266
|
+
status: number;
|
6209
6267
|
createdAt: Date;
|
6210
6268
|
updatedAt: Date;
|
6211
6269
|
deletedAt: Date | null;
|
@@ -6256,7 +6314,6 @@ export declare const messengerContract: {
|
|
6256
6314
|
firstResponseTime: number;
|
6257
6315
|
lastMessage: string;
|
6258
6316
|
handleTime: number;
|
6259
|
-
closeAt: Date;
|
6260
6317
|
unreadCount: number;
|
6261
6318
|
firstResponseAt: Date;
|
6262
6319
|
isLatest: boolean;
|
@@ -6416,6 +6473,8 @@ export declare const messengerContract: {
|
|
6416
6473
|
telephonySignature: string | null;
|
6417
6474
|
};
|
6418
6475
|
};
|
6476
|
+
closedAt: Date;
|
6477
|
+
lastMessageAt: Date | null;
|
6419
6478
|
cxlog: {
|
6420
6479
|
id: string;
|
6421
6480
|
channel: string | null;
|
@@ -6847,6 +6906,7 @@ export declare const messengerContract: {
|
|
6847
6906
|
connectedUserId: string;
|
6848
6907
|
};
|
6849
6908
|
direction: "incoming" | "outgoing" | "system";
|
6909
|
+
status: number;
|
6850
6910
|
createdAt: Date;
|
6851
6911
|
updatedAt: Date;
|
6852
6912
|
deletedAt: Date | null;
|
@@ -6897,7 +6957,6 @@ export declare const messengerContract: {
|
|
6897
6957
|
firstResponseTime: number;
|
6898
6958
|
lastMessage: string;
|
6899
6959
|
handleTime: number;
|
6900
|
-
closeAt: Date;
|
6901
6960
|
unreadCount: number;
|
6902
6961
|
firstResponseAt: Date;
|
6903
6962
|
isLatest: boolean;
|
@@ -7057,6 +7116,8 @@ export declare const messengerContract: {
|
|
7057
7116
|
telephonySignature: string | null;
|
7058
7117
|
};
|
7059
7118
|
};
|
7119
|
+
closedAt: Date;
|
7120
|
+
lastMessageAt: Date | null;
|
7060
7121
|
cxlog: {
|
7061
7122
|
id: string;
|
7062
7123
|
channel: string | null;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/messenger/index.ts"],"names":[],"mappings":"AACA,OAAO,CAAC,MAAM,KAAK,CAAC;AAKpB,OAAO,EACL,aAAa,EAKd,MAAM,oBAAoB,CAAC;AAC5B,OAAO,EACL,2BAA2B,EAC3B,sBAAsB,EACtB,wBAAwB,EACzB,MAAM,cAAc,CAAC;AAEtB,MAAM,MAAM,wBAAwB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC;AAC9E,MAAM,MAAM,qBAAqB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,2BAA2B,CAAC,CAAC;AAChF,MAAM,MAAM,uBAAuB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;AACpE,MAAM,MAAM,yBAAyB,GAAG,CAAC,CAAC,KAAK,CAC7C,OAAO,wBAAwB,CAChC,CAAC;AAEF,eAAO,MAAM,iBAAiB
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/messenger/index.ts"],"names":[],"mappings":"AACA,OAAO,CAAC,MAAM,KAAK,CAAC;AAKpB,OAAO,EACL,aAAa,EAKd,MAAM,oBAAoB,CAAC;AAC5B,OAAO,EACL,2BAA2B,EAC3B,sBAAsB,EACtB,wBAAwB,EACzB,MAAM,cAAc,CAAC;AAEtB,MAAM,MAAM,wBAAwB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC;AAC9E,MAAM,MAAM,qBAAqB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,2BAA2B,CAAC,CAAC;AAChF,MAAM,MAAM,uBAAuB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;AACpE,MAAM,MAAM,yBAAyB,GAAG,CAAC,CAAC,KAAK,CAC7C,OAAO,wBAAwB,CAChC,CAAC;AAEF,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAiF5B,CAAC"}
|