@amsom-habitat/ui 2.14.0 → 2.14.2
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.
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { defineComponent as Kt, computed as Db, watch as $s, h as wt, resolveComponent as zb, openBlock as
|
|
1
|
+
import { defineComponent as Kt, computed as Db, watch as $s, h as wt, resolveComponent as zb, openBlock as C0, createElementBlock as H0, createElementVNode as j0, normalizeClass as _1, withModifiers as Ee, createBlock as PM, createCommentVNode as o2, renderSlot as _M, createTextVNode as xt, toDisplayString as C2, normalizeStyle as IM, Fragment as N2, renderList as tM, useCssVars as bA, createVNode as tb, withCtx as Xt, withDirectives as Ha, vModelCheckbox as Ya, pushScopeId as MA, popScopeId as pA } from "vue";
|
|
2
2
|
const Ga = () => {
|
|
3
3
|
};
|
|
4
4
|
let L3 = {}, tO = {}, nO = null, cO = {
|
|
@@ -3153,29 +3153,36 @@ const u4 = {
|
|
|
3153
3153
|
data() {
|
|
3154
3154
|
return {
|
|
3155
3155
|
alreadyHidden: !1,
|
|
3156
|
-
vwWidth: 80,
|
|
3157
|
-
// default width : normal
|
|
3158
3156
|
modalId: "modal-" + Math.random().toString(36).substring(2, 9),
|
|
3159
|
-
modalKeyUpdate: 0,
|
|
3160
3157
|
reduced: !1
|
|
3161
3158
|
};
|
|
3162
3159
|
},
|
|
3163
3160
|
computed: {
|
|
3164
|
-
|
|
3165
|
-
|
|
3161
|
+
// Dimension de la modal
|
|
3162
|
+
modalSize() {
|
|
3163
|
+
switch (this.size) {
|
|
3164
|
+
case "xl":
|
|
3165
|
+
return "col-12";
|
|
3166
|
+
case "lg":
|
|
3167
|
+
return "col-12 col-md-10";
|
|
3168
|
+
case "sm":
|
|
3169
|
+
return "col-12 col-md-6";
|
|
3170
|
+
case "xs":
|
|
3171
|
+
return "col-12 col-md-4";
|
|
3172
|
+
case "xxs":
|
|
3173
|
+
return "col-12 col-md-3";
|
|
3174
|
+
default:
|
|
3175
|
+
return "col-12 col-md-8";
|
|
3176
|
+
}
|
|
3166
3177
|
}
|
|
3167
3178
|
},
|
|
3168
3179
|
mounted() {
|
|
3169
|
-
|
|
3180
|
+
document.body.style.overflow.includes("hidden") ? this.alreadyHidden = !0 : document.body.style.overflow = "hidden", this.closeOption && (this.registerModal(), document.addEventListener("keydown", this.closeEsc));
|
|
3170
3181
|
},
|
|
3171
3182
|
beforeUnmount() {
|
|
3172
3183
|
this.alreadyHidden || (document.body.style.overflow = ""), this.closeOption && (this.unregisterModal(), document.removeEventListener("keydown", this.closeEsc));
|
|
3173
3184
|
},
|
|
3174
3185
|
methods: {
|
|
3175
|
-
// Redimensionnement de la modal
|
|
3176
|
-
resizeModal() {
|
|
3177
|
-
this.size === "xl" && window.innerWidth > 480 ? this.vwWidth = 99 : this.size === "lg" && window.innerWidth > 480 ? this.vwWidth = 85 : this.size === "md" && window.innerWidth > 1024 ? this.vwWidth = 70 : this.size === "sm" && window.innerWidth > 1024 ? this.vwWidth = 60 : this.size === "xs" && window.innerWidth > 1024 ? this.vwWidth = 40 : this.size === "xxs" && window.innerWidth > 1024 ? this.vwWidth = 35 : window.innerWidth <= 480 ? this.vwWidth = 100 : this.vwWidth = 80, this.modalKeyUpdate += 1;
|
|
3178
|
-
},
|
|
3179
3186
|
// Enregistrement de l'ID de la modal dans localStorage
|
|
3180
3187
|
registerModal() {
|
|
3181
3188
|
let b = JSON.parse(localStorage.getItem("openModals")) || [];
|
|
@@ -3194,36 +3201,32 @@ const u4 = {
|
|
|
3194
3201
|
}
|
|
3195
3202
|
}
|
|
3196
3203
|
}
|
|
3197
|
-
}, W4 = {
|
|
3198
|
-
class: "amsom-modal-body overflow-y-auto mt-2",
|
|
3199
|
-
style: { "max-height": "80vh" }
|
|
3200
|
-
}, h4 = {
|
|
3204
|
+
}, W4 = ["id"], h4 = { class: "amsom-modal-body overflow-y-auto mt-2" }, m4 = {
|
|
3201
3205
|
key: 0,
|
|
3202
3206
|
class: "h4"
|
|
3203
|
-
},
|
|
3207
|
+
}, R4 = /* @__PURE__ */ j0("hr", null, null, -1), g4 = /* @__PURE__ */ j0("p", null, " Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante. ", -1), L4 = {
|
|
3204
3208
|
key: 0,
|
|
3205
3209
|
class: "position-fixed bottom-0 end-0 mb-3 me-3"
|
|
3206
|
-
},
|
|
3210
|
+
}, N4 = {
|
|
3207
3211
|
key: 0,
|
|
3208
3212
|
class: "position-fixed bottom-0 end-0 mb-3 me-3"
|
|
3209
3213
|
};
|
|
3210
|
-
function
|
|
3214
|
+
function v4(b, M, p, o, e, z) {
|
|
3211
3215
|
const n = zb("font-awesome-icon");
|
|
3212
|
-
return
|
|
3213
|
-
|
|
3214
|
-
class: _1(["bg-black bg-opacity-25 h-100 w-100 position-fixed top-50 start-50 translate-middle min-vw-100 min-vh-100 d-flex justify-content-center align-items-center overflow-y-auto", { "d-none": e.reduced }]),
|
|
3216
|
+
return C0(), H0("div", null, [
|
|
3217
|
+
j0("div", {
|
|
3218
|
+
class: _1(["p-2 bg-black bg-opacity-25 h-100 w-100 position-fixed top-50 start-50 translate-middle min-vw-100 min-vh-100 d-flex justify-content-center align-items-center overflow-y-auto", { "d-none": e.reduced }]),
|
|
3215
3219
|
style: { "z-index": "1055" },
|
|
3216
3220
|
onClick: M[2] || (M[2] = Ee((c) => p.closeOption ? b.$emit("close") : "", ["self"]))
|
|
3217
3221
|
}, [
|
|
3218
|
-
(
|
|
3219
|
-
|
|
3220
|
-
class: _1(["container-fluid bg-white rounded-4 p-3 m-
|
|
3221
|
-
"mb-auto": p.position === "
|
|
3222
|
-
|
|
3223
|
-
|
|
3224
|
-
style: IM({ width: z.modalWitdh })
|
|
3222
|
+
j0("div", {
|
|
3223
|
+
id: e.modalId,
|
|
3224
|
+
class: _1(["container-fluid bg-white rounded-4 p-3 m-2 position-relative", [
|
|
3225
|
+
p.position === "top" ? "mb-auto" : p.position === "bottom" ? "mt-auto" : "",
|
|
3226
|
+
z.modalSize
|
|
3227
|
+
]])
|
|
3225
3228
|
}, [
|
|
3226
|
-
p.closeOption ? (
|
|
3229
|
+
p.closeOption ? (C0(), PM(n, {
|
|
3227
3230
|
key: 0,
|
|
3228
3231
|
icon: "fa-solid fa-times",
|
|
3229
3232
|
role: "button",
|
|
@@ -3231,34 +3234,34 @@ function N4(b, M, p, o, e, z) {
|
|
|
3231
3234
|
size: "lg",
|
|
3232
3235
|
onClick: M[0] || (M[0] = (c) => b.$emit("close"))
|
|
3233
3236
|
})) : o2("", !0),
|
|
3234
|
-
|
|
3237
|
+
j0("div", h4, [
|
|
3235
3238
|
_M(b.$slots, "title", {}, () => [
|
|
3236
|
-
p.title ? (
|
|
3239
|
+
p.title ? (C0(), H0("span", m4, [
|
|
3237
3240
|
xt(C2(p.title) + " ", 1),
|
|
3238
|
-
|
|
3241
|
+
R4
|
|
3239
3242
|
])) : o2("", !0)
|
|
3240
3243
|
]),
|
|
3241
3244
|
_M(b.$slots, "default", {}, () => [
|
|
3242
|
-
|
|
3245
|
+
g4
|
|
3243
3246
|
])
|
|
3244
3247
|
])
|
|
3245
|
-
],
|
|
3246
|
-
p.reducible ? (
|
|
3247
|
-
|
|
3248
|
+
], 10, W4),
|
|
3249
|
+
p.reducible ? (C0(), H0("div", L4, [
|
|
3250
|
+
j0("button", {
|
|
3248
3251
|
class: "btn btn-primary",
|
|
3249
3252
|
onClick: M[1] || (M[1] = (c) => e.reduced = !e.reduced)
|
|
3250
3253
|
}, " Réduire la fenêtre ")
|
|
3251
3254
|
])) : o2("", !0)
|
|
3252
3255
|
], 2),
|
|
3253
|
-
p.reducible && e.reduced ? (
|
|
3254
|
-
|
|
3256
|
+
p.reducible && e.reduced ? (C0(), H0("div", N4, [
|
|
3257
|
+
j0("button", {
|
|
3255
3258
|
class: "btn btn-primary",
|
|
3256
3259
|
onClick: M[3] || (M[3] = (c) => e.reduced = !e.reduced)
|
|
3257
3260
|
}, " Restaurer la fenêtre ")
|
|
3258
3261
|
])) : o2("", !0)
|
|
3259
3262
|
]);
|
|
3260
3263
|
}
|
|
3261
|
-
const
|
|
3264
|
+
const y4 = /* @__PURE__ */ dM(u4, [["render", v4]]), B4 = {
|
|
3262
3265
|
name: "AmsomCard",
|
|
3263
3266
|
props: {
|
|
3264
3267
|
//string or null
|
|
@@ -3299,6 +3302,10 @@ const v4 = /* @__PURE__ */ dM(u4, [["render", N4]]), y4 = {
|
|
|
3299
3302
|
type: String,
|
|
3300
3303
|
default: ""
|
|
3301
3304
|
},
|
|
3305
|
+
cardStyle: {
|
|
3306
|
+
type: String,
|
|
3307
|
+
default: ""
|
|
3308
|
+
},
|
|
3302
3309
|
footer: {
|
|
3303
3310
|
type: Boolean,
|
|
3304
3311
|
default: !1
|
|
@@ -3308,60 +3315,76 @@ const v4 = /* @__PURE__ */ dM(u4, [["render", N4]]), y4 = {
|
|
|
3308
3315
|
default: ""
|
|
3309
3316
|
}
|
|
3310
3317
|
}
|
|
3311
|
-
},
|
|
3318
|
+
}, w4 = { class: "position-relative" }, x4 = {
|
|
3312
3319
|
key: 0,
|
|
3313
3320
|
class: "card-title"
|
|
3314
|
-
};
|
|
3315
|
-
function
|
|
3316
|
-
return
|
|
3317
|
-
|
|
3318
|
-
}, [
|
|
3319
|
-
p.header ? (P0(), H0("div", {
|
|
3321
|
+
}, X4 = ["src"];
|
|
3322
|
+
function S4(b, M, p, o, e, z) {
|
|
3323
|
+
return C0(), H0("div", w4, [
|
|
3324
|
+
p.header ? (C0(), H0("div", {
|
|
3320
3325
|
key: 0,
|
|
3321
|
-
class: _1(["card-header", p.headerClass])
|
|
3326
|
+
class: _1(["card card-header", p.headerClass])
|
|
3322
3327
|
}, [
|
|
3323
3328
|
_M(b.$slots, "header")
|
|
3324
3329
|
], 2)) : o2("", !0),
|
|
3325
|
-
|
|
3326
|
-
|
|
3327
|
-
|
|
3328
|
-
src: p.bgImage,
|
|
3329
|
-
class: _1(["img img-fluid bg-white card-img", {
|
|
3330
|
+
j0("div", {
|
|
3331
|
+
class: _1(["card position-relative", [
|
|
3332
|
+
{
|
|
3330
3333
|
"rounded-top-0": p.header,
|
|
3331
3334
|
"rounded-bottom-0": p.footer
|
|
3332
|
-
}
|
|
3333
|
-
|
|
3334
|
-
|
|
3335
|
-
|
|
3336
|
-
|
|
3337
|
-
class:
|
|
3335
|
+
},
|
|
3336
|
+
p.cardClass
|
|
3337
|
+
]])
|
|
3338
|
+
}, [
|
|
3339
|
+
j0("div", {
|
|
3340
|
+
class: "position-relative overflow-y-auto",
|
|
3341
|
+
style: IM(p.cardStyle)
|
|
3342
|
+
}, [
|
|
3343
|
+
j0("div", {
|
|
3344
|
+
class: _1([
|
|
3345
|
+
{
|
|
3346
|
+
"card-body": !p.noBody
|
|
3347
|
+
}
|
|
3348
|
+
]),
|
|
3349
|
+
style: { position: "relative", "z-index": "1" }
|
|
3350
|
+
}, [
|
|
3351
|
+
_M(b.$slots, "title", {}, () => [
|
|
3352
|
+
p.title && !p.bubbleTitle ? (C0(), H0("h4", x4, C2(p.title), 1)) : o2("", !0)
|
|
3353
|
+
]),
|
|
3354
|
+
_M(b.$slots, "default")
|
|
3355
|
+
], 2)
|
|
3356
|
+
], 4),
|
|
3357
|
+
p.bgImage ? (C0(), H0("img", {
|
|
3358
|
+
key: 0,
|
|
3359
|
+
src: p.bgImage,
|
|
3360
|
+
class: _1(["img img-fluid bg-white object-fit-cover h-100 w-100 position-absolute top-0 start-0 rounded-1", [
|
|
3338
3361
|
{
|
|
3339
|
-
"card-body": !p.noBody,
|
|
3340
|
-
"card-img-overlay": p.bgImage,
|
|
3341
3362
|
"rounded-top-0": p.header,
|
|
3342
3363
|
"rounded-bottom-0": p.footer
|
|
3343
3364
|
}
|
|
3344
|
-
])
|
|
3345
|
-
|
|
3346
|
-
|
|
3347
|
-
|
|
3348
|
-
|
|
3349
|
-
|
|
3350
|
-
|
|
3351
|
-
|
|
3352
|
-
|
|
3353
|
-
_M(b.$slots, "default")
|
|
3354
|
-
], 2)
|
|
3355
|
-
]),
|
|
3356
|
-
p.footer ? (P0(), H0("div", {
|
|
3365
|
+
]]),
|
|
3366
|
+
alt: "Image de fond du widget",
|
|
3367
|
+
style: IM({
|
|
3368
|
+
opacity: p.bgOpacity,
|
|
3369
|
+
zIndex: 0
|
|
3370
|
+
})
|
|
3371
|
+
}, null, 14, X4)) : o2("", !0)
|
|
3372
|
+
], 2),
|
|
3373
|
+
p.title && p.bubbleTitle ? (C0(), H0("span", {
|
|
3357
3374
|
key: 1,
|
|
3358
|
-
|
|
3375
|
+
id: "bubble-title",
|
|
3376
|
+
class: _1(["position-absolute top-0 start-0 translate-middle-y rounded-pill shadow px-1", p.bubbleTitleClass]),
|
|
3377
|
+
style: { "z-index": "2" }
|
|
3378
|
+
}, C2(p.title), 3)) : o2("", !0),
|
|
3379
|
+
p.footer ? (C0(), H0("div", {
|
|
3380
|
+
key: 2,
|
|
3381
|
+
class: _1(["card card-footer", p.footerClass])
|
|
3359
3382
|
}, [
|
|
3360
3383
|
_M(b.$slots, "footer")
|
|
3361
3384
|
], 2)) : o2("", !0)
|
|
3362
|
-
]
|
|
3385
|
+
]);
|
|
3363
3386
|
}
|
|
3364
|
-
const
|
|
3387
|
+
const _4 = /* @__PURE__ */ dM(B4, [["render", S4]]), T4 = {
|
|
3365
3388
|
name: "AmsomOverlay",
|
|
3366
3389
|
props: {
|
|
3367
3390
|
loading: {
|
|
@@ -3376,32 +3399,32 @@ const S4 = /* @__PURE__ */ dM(y4, [["render", X4]]), _4 = {
|
|
|
3376
3399
|
validator: (b) => b >= 0 && b <= 100
|
|
3377
3400
|
}
|
|
3378
3401
|
}
|
|
3379
|
-
},
|
|
3402
|
+
}, k4 = { class: "position-relative" }, P4 = /* @__PURE__ */ j0("div", {
|
|
3380
3403
|
class: "spinner-border text-primary position-sticky sticky-top",
|
|
3381
3404
|
role: "status"
|
|
3382
3405
|
}, [
|
|
3383
|
-
/* @__PURE__ */
|
|
3384
|
-
], -1),
|
|
3385
|
-
|
|
3386
|
-
],
|
|
3387
|
-
function
|
|
3388
|
-
return
|
|
3389
|
-
p.loading ? (
|
|
3406
|
+
/* @__PURE__ */ j0("span", { class: "sr-only visually-hidden" }, "Chargement...")
|
|
3407
|
+
], -1), C4 = [
|
|
3408
|
+
P4
|
|
3409
|
+
], E4 = /* @__PURE__ */ j0("p", null, " Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante. ", -1);
|
|
3410
|
+
function D4(b, M, p, o, e, z) {
|
|
3411
|
+
return C0(), H0("div", k4, [
|
|
3412
|
+
p.loading ? (C0(), H0("div", {
|
|
3390
3413
|
key: 0,
|
|
3391
3414
|
class: "position-absolute w-100 h-100 d-flex align-items-center justify-content-center rounded",
|
|
3392
3415
|
style: IM([{
|
|
3393
3416
|
backgroundColor: "rgba(193, 193, 193," + p.opacity / 100 + ")",
|
|
3394
3417
|
boxShadow: "inset 0 0 0 10px rgba(193, 193, 193, 0.5)"
|
|
3395
3418
|
}, { "z-index": "1100" }])
|
|
3396
|
-
},
|
|
3419
|
+
}, C4, 4)) : o2("", !0),
|
|
3397
3420
|
_M(b.$slots, "default", {}, () => [
|
|
3398
|
-
|
|
3421
|
+
E4
|
|
3399
3422
|
])
|
|
3400
3423
|
]);
|
|
3401
3424
|
}
|
|
3402
|
-
const
|
|
3425
|
+
const I4 = /* @__PURE__ */ dM(T4, [["render", D4]]);
|
|
3403
3426
|
Zp.add(IO);
|
|
3404
|
-
const
|
|
3427
|
+
const F4 = {
|
|
3405
3428
|
name: "WorkflowAssuranceBlock",
|
|
3406
3429
|
components: {
|
|
3407
3430
|
FontAwesomeIcon: $p
|
|
@@ -3507,19 +3530,19 @@ const I4 = {
|
|
|
3507
3530
|
}
|
|
3508
3531
|
}
|
|
3509
3532
|
}
|
|
3510
|
-
},
|
|
3533
|
+
}, j4 = { class: "d-flex flex-column align-items-center" }, U4 = {
|
|
3511
3534
|
key: 0,
|
|
3512
3535
|
class: "line h-100",
|
|
3513
3536
|
style: { height: "30px", "min-height": "30px" }
|
|
3514
3537
|
};
|
|
3515
|
-
function
|
|
3538
|
+
function H4(b, M, p, o, e, z) {
|
|
3516
3539
|
const n = zb("font-awesome-icon");
|
|
3517
|
-
return
|
|
3540
|
+
return C0(!0), H0(N2, null, tM(p.steps, (c, i) => (C0(), H0("div", {
|
|
3518
3541
|
key: c.numero,
|
|
3519
3542
|
class: "d-flex mb-1"
|
|
3520
3543
|
}, [
|
|
3521
|
-
|
|
3522
|
-
|
|
3544
|
+
j0("div", j4, [
|
|
3545
|
+
j0("div", {
|
|
3523
3546
|
style: IM({
|
|
3524
3547
|
width: z.bubbleSize + "rem",
|
|
3525
3548
|
minHeight: z.bubbleSize + "rem",
|
|
@@ -3533,16 +3556,16 @@ function U4(b, M, p, o, e, z) {
|
|
|
3533
3556
|
]]),
|
|
3534
3557
|
onClick: M[0] || (M[0] = (r) => b.$emit("clickStep", b.s.numero))
|
|
3535
3558
|
}, [
|
|
3536
|
-
i + 1 < p.currentStep && p.checkPassedStep ? (
|
|
3559
|
+
i + 1 < p.currentStep && p.checkPassedStep ? (C0(), PM(n, {
|
|
3537
3560
|
key: 0,
|
|
3538
3561
|
icon: ["fas", "check"]
|
|
3539
|
-
})) : (
|
|
3562
|
+
})) : (C0(), H0(N2, { key: 1 }, [
|
|
3540
3563
|
xt(C2(c.numero), 1)
|
|
3541
3564
|
], 64))
|
|
3542
3565
|
], 6),
|
|
3543
|
-
i < p.steps.length - 1 ? (
|
|
3566
|
+
i < p.steps.length - 1 ? (C0(), H0("div", U4)) : o2("", !0)
|
|
3544
3567
|
]),
|
|
3545
|
-
p.hideText ? o2("", !0) : (
|
|
3568
|
+
p.hideText ? o2("", !0) : (C0(), H0("span", {
|
|
3546
3569
|
key: 0,
|
|
3547
3570
|
class: _1(["ms-1", [i + 1 < p.currentStep ? p.passedStepTextCss : i + 1 === p.currentStep ? p.currentStepTextCss : p.futureStepTextCss]]),
|
|
3548
3571
|
style: IM({
|
|
@@ -3556,7 +3579,7 @@ function U4(b, M, p, o, e, z) {
|
|
|
3556
3579
|
], 6))
|
|
3557
3580
|
]))), 128);
|
|
3558
3581
|
}
|
|
3559
|
-
const
|
|
3582
|
+
const dh = /* @__PURE__ */ dM(F4, [["render", H4], ["__scopeId", "data-v-be1b899b"]]);
|
|
3560
3583
|
Zp.add(IO);
|
|
3561
3584
|
const P3 = {
|
|
3562
3585
|
name: "AmsomHorizontalStepper",
|
|
@@ -3691,11 +3714,11 @@ const P3 = {
|
|
|
3691
3714
|
}));
|
|
3692
3715
|
}, Wi = P3.setup;
|
|
3693
3716
|
P3.setup = Wi ? (b, M) => (ui(), Wi(b, M)) : ui;
|
|
3694
|
-
const
|
|
3695
|
-
function
|
|
3717
|
+
const Y4 = { class: "d-flex justify-content-between" }, G4 = ["role", "onClick"];
|
|
3718
|
+
function V4(b, M, p, o, e, z) {
|
|
3696
3719
|
const n = zb("font-awesome-icon");
|
|
3697
|
-
return
|
|
3698
|
-
(
|
|
3720
|
+
return C0(), H0("div", Y4, [
|
|
3721
|
+
(C0(!0), H0(N2, null, tM(p.steps, (c, i) => (C0(), H0("div", {
|
|
3699
3722
|
key: c.numero,
|
|
3700
3723
|
role: c.numero < p.currentStep ? "button" : "none",
|
|
3701
3724
|
class: _1(["stepper-item", [
|
|
@@ -3706,29 +3729,29 @@ function G4(b, M, p, o, e, z) {
|
|
|
3706
3729
|
]]),
|
|
3707
3730
|
onClick: (r) => b.$emit("clickStep", c.numero)
|
|
3708
3731
|
}, [
|
|
3709
|
-
|
|
3732
|
+
j0("div", {
|
|
3710
3733
|
class: _1(["step-counter", [
|
|
3711
3734
|
"bg-" + (i + 1 < p.currentStep ? p.passedStepBgColor : i + 1 === p.currentStep ? p.currentStepBgColor : p.futureStepBgColor),
|
|
3712
3735
|
i + 1 < p.currentStep ? p.passedStepCss : i + 1 === p.currentStep ? p.currentStepCss : p.futureStepCss
|
|
3713
3736
|
]]),
|
|
3714
3737
|
style: IM({ fontSize: z.fontSizeStep + "rem" })
|
|
3715
3738
|
}, [
|
|
3716
|
-
i + 1 < p.currentStep && p.checkPassedStep ? (
|
|
3739
|
+
i + 1 < p.currentStep && p.checkPassedStep ? (C0(), PM(n, {
|
|
3717
3740
|
key: 0,
|
|
3718
3741
|
icon: ["fas", "check"]
|
|
3719
|
-
})) : (
|
|
3742
|
+
})) : (C0(), H0(N2, { key: 1 }, [
|
|
3720
3743
|
xt(C2(c.numero), 1)
|
|
3721
3744
|
], 64))
|
|
3722
3745
|
], 6),
|
|
3723
|
-
p.hideText ? o2("", !0) : (
|
|
3746
|
+
p.hideText ? o2("", !0) : (C0(), H0("div", {
|
|
3724
3747
|
key: 0,
|
|
3725
3748
|
class: _1(["step-name", [i + 1 < p.currentStep ? p.passedStepTextCss : i + 1 === p.currentStep ? p.currentStepTextCss : p.futureStepTextCss]]),
|
|
3726
3749
|
style: IM({ fontSize: z.fontSizeText + "rem" })
|
|
3727
3750
|
}, C2(c.texte), 7))
|
|
3728
|
-
], 10,
|
|
3751
|
+
], 10, G4))), 128))
|
|
3729
3752
|
]);
|
|
3730
3753
|
}
|
|
3731
|
-
const
|
|
3754
|
+
const lh = /* @__PURE__ */ dM(P3, [["render", V4]]);
|
|
3732
3755
|
function x1(b) {
|
|
3733
3756
|
"@babel/helpers - typeof";
|
|
3734
3757
|
return x1 = typeof Symbol == "function" && typeof Symbol.iterator == "symbol" ? function(M) {
|
|
@@ -3815,7 +3838,7 @@ var K2 = Uint8Array, E2 = Uint16Array, ez = Uint32Array, bn = new K2([
|
|
|
3815
3838
|
return [p, e];
|
|
3816
3839
|
}, jO = FO(bn, 2), UO = jO[0], M3 = jO[1];
|
|
3817
3840
|
UO[28] = 258, M3[258] = 28;
|
|
3818
|
-
var HO = FO(Mn, 0),
|
|
3841
|
+
var HO = FO(Mn, 0), K4 = HO[0], hi = HO[1], p3 = new E2(32768);
|
|
3819
3842
|
for (var I1 = 0; I1 < 32768; ++I1) {
|
|
3820
3843
|
var sp = (I1 & 43690) >>> 1 | (I1 & 21845) << 1;
|
|
3821
3844
|
sp = (sp & 52428) >>> 2 | (sp & 13107) << 2, sp = (sp & 61680) >>> 4 | (sp & 3855) << 4, p3[I1] = ((sp & 65280) >>> 8 | (sp & 255) << 8) >>> 1;
|
|
@@ -3850,7 +3873,7 @@ for (var I1 = 280; I1 < 288; ++I1)
|
|
|
3850
3873
|
var zz = new K2(32);
|
|
3851
3874
|
for (var I1 = 0; I1 < 32; ++I1)
|
|
3852
3875
|
zz[I1] = 5;
|
|
3853
|
-
var
|
|
3876
|
+
var J4 = /* @__PURE__ */ iM(Np, 9, 0), Q4 = /* @__PURE__ */ iM(Np, 9, 1), Z4 = /* @__PURE__ */ iM(zz, 5, 0), $4 = /* @__PURE__ */ iM(zz, 5, 1), sc = function(b) {
|
|
3854
3877
|
for (var M = b[0], p = 1; p < b.length; ++p)
|
|
3855
3878
|
b[p] > M && (M = b[p]);
|
|
3856
3879
|
return M;
|
|
@@ -3866,7 +3889,7 @@ var K4 = /* @__PURE__ */ iM(Np, 9, 0), J4 = /* @__PURE__ */ iM(Np, 9, 1), Q4 = /
|
|
|
3866
3889
|
(p == null || p > b.length) && (p = b.length);
|
|
3867
3890
|
var o = new (b instanceof E2 ? E2 : b instanceof ez ? ez : K2)(p - M);
|
|
3868
3891
|
return o.set(b.subarray(M, p)), o;
|
|
3869
|
-
},
|
|
3892
|
+
}, bd = function(b, M, p) {
|
|
3870
3893
|
var o = b.length, e = !M || p, z = !p || p.i;
|
|
3871
3894
|
p || (p = {}), M || (M = new K2(o * 3));
|
|
3872
3895
|
var n = function(K) {
|
|
@@ -3882,7 +3905,7 @@ var K4 = /* @__PURE__ */ iM(Np, 9, 0), J4 = /* @__PURE__ */ iM(Np, 9, 1), Q4 = /
|
|
|
3882
3905
|
var v = Pb(b, i + 1, 3);
|
|
3883
3906
|
if (i += 3, v)
|
|
3884
3907
|
if (v == 1)
|
|
3885
|
-
d =
|
|
3908
|
+
d = Q4, q = $4, W = 9, A = 5;
|
|
3886
3909
|
else if (v == 2) {
|
|
3887
3910
|
var U = Pb(b, i, 31) + 257, M0 = Pb(b, i + 10, 15) + 4, t0 = U + Pb(b, i + 5, 31) + 1;
|
|
3888
3911
|
i += 14;
|
|
@@ -3943,7 +3966,7 @@ var K4 = /* @__PURE__ */ iM(Np, 9, 0), J4 = /* @__PURE__ */ iM(Np, 9, 1), Q4 = /
|
|
|
3943
3966
|
if (!T)
|
|
3944
3967
|
throw "invalid distance";
|
|
3945
3968
|
i += T & 15;
|
|
3946
|
-
var b0 =
|
|
3969
|
+
var b0 = K4[C];
|
|
3947
3970
|
if (C > 3) {
|
|
3948
3971
|
var R = Mn[C];
|
|
3949
3972
|
b0 += Ac(b, i) & (1 << R) - 1, i += R;
|
|
@@ -4068,7 +4091,7 @@ var K4 = /* @__PURE__ */ iM(Np, 9, 0), J4 = /* @__PURE__ */ iM(Np, 9, 1), Q4 = /
|
|
|
4068
4091
|
xM(M, d, A0[C]), d += l0[C], C > 15 && (xM(M, d, T[D] >>> 5 & 127), d += T[D] >>> 12);
|
|
4069
4092
|
}
|
|
4070
4093
|
} else
|
|
4071
|
-
b0 =
|
|
4094
|
+
b0 = J4, O0 = Np, p0 = Z4, d0 = zz;
|
|
4072
4095
|
for (var D = 0; D < c; ++D)
|
|
4073
4096
|
if (o[D] > 255) {
|
|
4074
4097
|
var C = o[D] >>> 18 & 31;
|
|
@@ -4078,7 +4101,7 @@ var K4 = /* @__PURE__ */ iM(Np, 9, 0), J4 = /* @__PURE__ */ iM(Np, 9, 1), Q4 = /
|
|
|
4078
4101
|
} else
|
|
4079
4102
|
Te(M, d, b0[o[D]]), d += O0[o[D]];
|
|
4080
4103
|
return Te(M, d, b0[256]), d + O0[256];
|
|
4081
|
-
},
|
|
4104
|
+
}, Md = /* @__PURE__ */ new ez([65540, 131080, 131088, 131104, 262176, 1048704, 1048832, 2114560, 2117632]), pd = function(b, M, p, o, e, z) {
|
|
4082
4105
|
var n = b.length, c = new K2(o + n + 5 * (1 + Math.floor(n / 7e3)) + e), i = c.subarray(o, c.length - e), r = 0;
|
|
4083
4106
|
if (!M || n < 8)
|
|
4084
4107
|
for (var d = 0; d <= n; d += 65535) {
|
|
@@ -4086,7 +4109,7 @@ var K4 = /* @__PURE__ */ iM(Np, 9, 0), J4 = /* @__PURE__ */ iM(Np, 9, 1), Q4 = /
|
|
|
4086
4109
|
q < n ? r = e3(i, r, b.subarray(d, q)) : (i[d] = z, r = e3(i, r, b.subarray(d, n)));
|
|
4087
4110
|
}
|
|
4088
4111
|
else {
|
|
4089
|
-
for (var W =
|
|
4112
|
+
for (var W = Md[M - 1], A = W >>> 13, w = W & 8191, v = (1 << p) - 1, _ = new E2(32768), m = new E2(v + 1), y = Math.ceil(p / 3), U = 2 * y, M0 = function(n0) {
|
|
4090
4113
|
return (b[n0] ^ b[n0 + 1] << y ^ b[n0 + 2] << U) & v;
|
|
4091
4114
|
}, t0 = new ez(25e3), q0 = new E2(288), $ = new E2(32), D = 0, r0 = 0, d = 0, l0 = 0, x = 0, X = 0; d < n; ++d) {
|
|
4092
4115
|
var F = M0(d), E = d & 32767, a0 = m[F];
|
|
@@ -4127,7 +4150,7 @@ var K4 = /* @__PURE__ */ iM(Np, 9, 0), J4 = /* @__PURE__ */ iM(Np, 9, 1), Q4 = /
|
|
|
4127
4150
|
r = Ri(b, i, z, t0, q0, $, r0, l0, X, d - X, r);
|
|
4128
4151
|
}
|
|
4129
4152
|
return YO(c, 0, o + C3(r) + e);
|
|
4130
|
-
},
|
|
4153
|
+
}, od = function() {
|
|
4131
4154
|
var b = 1, M = 0;
|
|
4132
4155
|
return {
|
|
4133
4156
|
p: function(p) {
|
|
@@ -4142,15 +4165,15 @@ var K4 = /* @__PURE__ */ iM(Np, 9, 0), J4 = /* @__PURE__ */ iM(Np, 9, 1), Q4 = /
|
|
|
4142
4165
|
return (b >>> 8 << 16 | (M & 255) << 8 | M >>> 8) + ((b & 255) << 23) * 2;
|
|
4143
4166
|
}
|
|
4144
4167
|
};
|
|
4145
|
-
},
|
|
4146
|
-
return
|
|
4147
|
-
},
|
|
4168
|
+
}, ed = function(b, M, p, o, e) {
|
|
4169
|
+
return pd(b, M.level == null ? 6 : M.level, M.mem == null ? Math.ceil(Math.max(8, Math.min(13, Math.log(b.length))) * 1.5) : 12 + M.mem, p, o, !e);
|
|
4170
|
+
}, zd = function(b, M, p) {
|
|
4148
4171
|
for (; p; ++M)
|
|
4149
4172
|
b[M] = p, p >>>= 8;
|
|
4150
|
-
},
|
|
4173
|
+
}, td = function(b, M) {
|
|
4151
4174
|
var p = M.level, o = p == 0 ? 0 : p < 6 ? 1 : p == 9 ? 3 : 2;
|
|
4152
4175
|
b[0] = 120, b[1] = o << 6 | (o ? 32 - 2 * o : 1);
|
|
4153
|
-
},
|
|
4176
|
+
}, nd = function(b) {
|
|
4154
4177
|
if ((b[0] & 15) != 8 || b[0] >>> 4 > 7 || (b[0] << 8 | b[1]) % 31)
|
|
4155
4178
|
throw "invalid zlib data";
|
|
4156
4179
|
if (b[1] & 32)
|
|
@@ -4158,13 +4181,13 @@ var K4 = /* @__PURE__ */ iM(Np, 9, 0), J4 = /* @__PURE__ */ iM(Np, 9, 1), Q4 = /
|
|
|
4158
4181
|
};
|
|
4159
4182
|
function z3(b, M) {
|
|
4160
4183
|
M === void 0 && (M = {});
|
|
4161
|
-
var p =
|
|
4184
|
+
var p = od();
|
|
4162
4185
|
p.p(b);
|
|
4163
|
-
var o =
|
|
4164
|
-
return
|
|
4186
|
+
var o = ed(b, M, 2, 4);
|
|
4187
|
+
return td(o, M), zd(o, o.length - 4, p.d()), o;
|
|
4165
4188
|
}
|
|
4166
|
-
function
|
|
4167
|
-
return
|
|
4189
|
+
function cd(b, M) {
|
|
4190
|
+
return bd((nd(b), b.subarray(2, -4)), M);
|
|
4168
4191
|
}
|
|
4169
4192
|
/** @license
|
|
4170
4193
|
*
|
|
@@ -4342,36 +4365,36 @@ function S2(b, M, p, o, e, z, n) {
|
|
|
4342
4365
|
}
|
|
4343
4366
|
function VO(b) {
|
|
4344
4367
|
var M, p = b.length, o = [1732584193, -271733879, -1732584194, 271733878];
|
|
4345
|
-
for (M = 64; M <= b.length; M += 64) fc(o,
|
|
4368
|
+
for (M = 64; M <= b.length; M += 64) fc(o, ad(b.substring(M - 64, M)));
|
|
4346
4369
|
b = b.substring(M - 64);
|
|
4347
4370
|
var e = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0];
|
|
4348
4371
|
for (M = 0; M < b.length; M++) e[M >> 2] |= b.charCodeAt(M) << (M % 4 << 3);
|
|
4349
4372
|
if (e[M >> 2] |= 128 << (M % 4 << 3), M > 55) for (fc(o, e), M = 0; M < 16; M++) e[M] = 0;
|
|
4350
4373
|
return e[14] = 8 * p, fc(o, e), o;
|
|
4351
4374
|
}
|
|
4352
|
-
function
|
|
4375
|
+
function ad(b) {
|
|
4353
4376
|
var M, p = [];
|
|
4354
4377
|
for (M = 0; M < 64; M += 4) p[M >> 2] = b.charCodeAt(M) + (b.charCodeAt(M + 1) << 8) + (b.charCodeAt(M + 2) << 16) + (b.charCodeAt(M + 3) << 24);
|
|
4355
4378
|
return p;
|
|
4356
4379
|
}
|
|
4357
4380
|
Ve = Z0.atob.bind(Z0), t3 = Z0.btoa.bind(Z0);
|
|
4358
4381
|
var Li = "0123456789abcdef".split("");
|
|
4359
|
-
function
|
|
4382
|
+
function id(b) {
|
|
4360
4383
|
for (var M = "", p = 0; p < 4; p++) M += Li[b >> 8 * p + 4 & 15] + Li[b >> 8 * p & 15];
|
|
4361
4384
|
return M;
|
|
4362
4385
|
}
|
|
4363
|
-
function
|
|
4386
|
+
function Od(b) {
|
|
4364
4387
|
return String.fromCharCode((255 & b) >> 0, (65280 & b) >> 8, (16711680 & b) >> 16, (4278190080 & b) >> 24);
|
|
4365
4388
|
}
|
|
4366
4389
|
function n3(b) {
|
|
4367
|
-
return VO(b).map(
|
|
4390
|
+
return VO(b).map(Od).join("");
|
|
4368
4391
|
}
|
|
4369
|
-
var
|
|
4370
|
-
for (var M = 0; M < b.length; M++) b[M] =
|
|
4392
|
+
var rd = function(b) {
|
|
4393
|
+
for (var M = 0; M < b.length; M++) b[M] = id(b[M]);
|
|
4371
4394
|
return b.join("");
|
|
4372
4395
|
}(VO("hello")) != "5d41402abc4b2a76b9719d911017c592";
|
|
4373
4396
|
function fp(b, M) {
|
|
4374
|
-
if (
|
|
4397
|
+
if (rd) {
|
|
4375
4398
|
var p = (65535 & b) + (65535 & M);
|
|
4376
4399
|
return (b >> 16) + (M >> 16) + (p >> 16) << 16 | 65535 & p;
|
|
4377
4400
|
}
|
|
@@ -4497,7 +4520,7 @@ function M1(b) {
|
|
|
4497
4520
|
e = e || "a4";
|
|
4498
4521
|
var y = { COMPAT: "compat", ADVANCED: "advanced" }, U = y.COMPAT;
|
|
4499
4522
|
function M0() {
|
|
4500
|
-
this.saveGraphicsState(), B(new Q0(
|
|
4523
|
+
this.saveGraphicsState(), B(new Q0(P0, 0, 0, -P0, 0, $M() * P0).toString() + " cm"), this.setFontSize(this.getFontSize() / P0), r = "n", U = y.ADVANCED;
|
|
4501
4524
|
}
|
|
4502
4525
|
function t0() {
|
|
4503
4526
|
this.restoreGraphicsState(), r = "S", U = y.COMPAT;
|
|
@@ -4540,7 +4563,7 @@ function M1(b) {
|
|
|
4540
4563
|
return r0(O, 3);
|
|
4541
4564
|
}, X = A.scale = A.__private__.scale = function(O) {
|
|
4542
4565
|
if (isNaN(O)) throw new Error("Invalid argument passed to jsPDF.scale");
|
|
4543
|
-
return U === y.COMPAT ? O *
|
|
4566
|
+
return U === y.COMPAT ? O * P0 : U === y.ADVANCED ? O : void 0;
|
|
4544
4567
|
}, F = function(O) {
|
|
4545
4568
|
return U === y.COMPAT ? $M() - O : U === y.ADVANCED ? O : void 0;
|
|
4546
4569
|
}, E = function(O) {
|
|
@@ -4613,10 +4636,10 @@ function M1(b) {
|
|
|
4613
4636
|
};
|
|
4614
4637
|
var m0 = b.fontSize || 16;
|
|
4615
4638
|
A.__private__.setFontSize = A.setFontSize = function(O) {
|
|
4616
|
-
return m0 = U === y.ADVANCED ? O /
|
|
4639
|
+
return m0 = U === y.ADVANCED ? O / P0 : O, this;
|
|
4617
4640
|
};
|
|
4618
4641
|
var L0, T0 = A.__private__.getFontSize = A.getFontSize = function() {
|
|
4619
|
-
return U === y.COMPAT ? m0 : m0 *
|
|
4642
|
+
return U === y.COMPAT ? m0 : m0 * P0;
|
|
4620
4643
|
}, G0 = b.R2L || !1;
|
|
4621
4644
|
A.__private__.setR2L = A.setR2L = function(O) {
|
|
4622
4645
|
return G0 = O, this;
|
|
@@ -4663,7 +4686,7 @@ function M1(b) {
|
|
|
4663
4686
|
if (Object.keys(p1).indexOf(O) === -1) throw new Error("Invalid arguments passed to jsPDF.setDocumentProperty");
|
|
4664
4687
|
return p1[O] = u;
|
|
4665
4688
|
};
|
|
4666
|
-
var A1,
|
|
4689
|
+
var A1, P0, v2, m1, mb, k1 = {}, H1 = {}, Vb = [], v1 = {}, yp = {}, J1 = {}, Rb = {}, uM = null, Q1 = 0, z1 = [], y1 = new vi(A), Bp = b.hotfixes || [], R2 = {}, Kb = {}, Jb = [], Q0 = function O(u, k, j, Z, s0, g0) {
|
|
4667
4690
|
if (!(this instanceof O)) return new O(u, k, j, Z, s0, g0);
|
|
4668
4691
|
isNaN(u) && (u = 1), isNaN(k) && (k = 0), isNaN(j) && (j = 0), isNaN(Z) && (Z = 1), isNaN(s0) && (s0 = 0), isNaN(g0) && (g0 = 0), this._matrix = [u, k, j, Z, s0, g0];
|
|
4669
4692
|
};
|
|
@@ -5005,7 +5028,7 @@ Q`), Q2(Z, !0), Ob({ data: s0, filters: Zb(), objectId: Z }), B("endobj"), j;
|
|
|
5005
5028
|
y0[++Q1] = [], z1[Q1] = { objId: 0, contentsObjId: 0, userUnit: Number(c), artBox: null, bleedBox: null, cropBox: null, trimBox: null, mediaBox: { bottomLeftX: 0, bottomLeftY: 0, topRightX: Number(O[0]), topRightY: Number(O[1]) } }, Lz(Q1), I(y0[T]);
|
|
5006
5029
|
}, gz = function(O, u) {
|
|
5007
5030
|
var k, j, Z;
|
|
5008
|
-
switch (p = u || p, typeof O == "string" && (k = m(O.toLowerCase()), Array.isArray(k) && (j = k[0], Z = k[1])), Array.isArray(O) && (j = O[0] *
|
|
5031
|
+
switch (p = u || p, typeof O == "string" && (k = m(O.toLowerCase()), Array.isArray(k) && (j = k[0], Z = k[1])), Array.isArray(O) && (j = O[0] * P0, Z = O[1] * P0), isNaN(j) && (j = e[0], Z = e[1]), (j > 14400 || Z > 14400) && (C1.warn("A page in a PDF can not be wider or taller than 14400 userUnit. jsPDF limits the width/height to 14400"), j = Math.min(14400, j), Z = Math.min(14400, Z)), e = [j, Z], p.substr(0, 1)) {
|
|
5009
5032
|
case "l":
|
|
5010
5033
|
Z > j && (e = [Z, j]);
|
|
5011
5034
|
break;
|
|
@@ -5140,30 +5163,30 @@ Q`), Q2(Z, !0), Ob({ data: s0, filters: Zb(), objectId: Z }), B("endobj"), j;
|
|
|
5140
5163
|
};
|
|
5141
5164
|
switch (o) {
|
|
5142
5165
|
case "pt":
|
|
5143
|
-
|
|
5166
|
+
P0 = 1;
|
|
5144
5167
|
break;
|
|
5145
5168
|
case "mm":
|
|
5146
|
-
|
|
5169
|
+
P0 = 72 / 25.4;
|
|
5147
5170
|
break;
|
|
5148
5171
|
case "cm":
|
|
5149
|
-
|
|
5172
|
+
P0 = 72 / 2.54;
|
|
5150
5173
|
break;
|
|
5151
5174
|
case "in":
|
|
5152
|
-
|
|
5175
|
+
P0 = 72;
|
|
5153
5176
|
break;
|
|
5154
5177
|
case "px":
|
|
5155
|
-
|
|
5178
|
+
P0 = vz("px_scaling") == 1 ? 0.75 : 96 / 72;
|
|
5156
5179
|
break;
|
|
5157
5180
|
case "pc":
|
|
5158
5181
|
case "em":
|
|
5159
|
-
|
|
5182
|
+
P0 = 12;
|
|
5160
5183
|
break;
|
|
5161
5184
|
case "ex":
|
|
5162
|
-
|
|
5185
|
+
P0 = 6;
|
|
5163
5186
|
break;
|
|
5164
5187
|
default:
|
|
5165
5188
|
if (typeof o != "number") throw new Error("Invalid unit: " + o);
|
|
5166
|
-
|
|
5189
|
+
P0 = o;
|
|
5167
5190
|
}
|
|
5168
5191
|
var y2 = null;
|
|
5169
5192
|
S0(), p0();
|
|
@@ -5680,15 +5703,15 @@ T* `) : O.join(` Tj
|
|
|
5680
5703
|
for (Z = u.length - 1; Z !== -1; Z--) k = u[Z][0], j = u[Z][1], O.subscribe.apply(O, [k].concat(typeof j == "function" ? [j] : j));
|
|
5681
5704
|
}(y1, M1.API.events) : A[qo] = M1.API[qo]);
|
|
5682
5705
|
var _p = A.getPageWidth = function(O) {
|
|
5683
|
-
return (z1[O = O || T].mediaBox.topRightX - z1[O].mediaBox.bottomLeftX) /
|
|
5706
|
+
return (z1[O = O || T].mediaBox.topRightX - z1[O].mediaBox.bottomLeftX) / P0;
|
|
5684
5707
|
}, fe = A.setPageWidth = function(O, u) {
|
|
5685
|
-
z1[O].mediaBox.topRightX = u *
|
|
5708
|
+
z1[O].mediaBox.topRightX = u * P0 + z1[O].mediaBox.bottomLeftX;
|
|
5686
5709
|
}, $M = A.getPageHeight = function(O) {
|
|
5687
|
-
return (z1[O = O || T].mediaBox.topRightY - z1[O].mediaBox.bottomLeftY) /
|
|
5710
|
+
return (z1[O = O || T].mediaBox.topRightY - z1[O].mediaBox.bottomLeftY) / P0;
|
|
5688
5711
|
}, ue = A.setPageHeight = function(O, u) {
|
|
5689
|
-
z1[O].mediaBox.topRightY = u *
|
|
5712
|
+
z1[O].mediaBox.topRightY = u * P0 + z1[O].mediaBox.bottomLeftY;
|
|
5690
5713
|
};
|
|
5691
|
-
return A.internal = { pdfEscape: I2, getStyle: Bz, getFont: Pn, getFontSize: T0, getCharSpace: Dn, getTextColor: En, getLineHeight: Xz, getLineHeightFactor: _z, getLineWidth: so, write: w0, getHorizontalCoordinate: mM, getVerticalCoordinate: QM, getCoordinateString: Cn, getVerticalCoordinateString: ZM, collections: {}, newObject: d2, newAdditionalObject: po, newObjectDeferred: i2, newObjectDeferredBegin: Q2, getFilters: Zb, putStream: Ob, events: y1, scaleFactor:
|
|
5714
|
+
return A.internal = { pdfEscape: I2, getStyle: Bz, getFont: Pn, getFontSize: T0, getCharSpace: Dn, getTextColor: En, getLineHeight: Xz, getLineHeightFactor: _z, getLineWidth: so, write: w0, getHorizontalCoordinate: mM, getVerticalCoordinate: QM, getCoordinateString: Cn, getVerticalCoordinateString: ZM, collections: {}, newObject: d2, newAdditionalObject: po, newObjectDeferred: i2, newObjectDeferredBegin: Q2, getFilters: Zb, putStream: Ob, events: y1, scaleFactor: P0, pageSize: { getWidth: function() {
|
|
5692
5715
|
return _p(T);
|
|
5693
5716
|
}, setWidth: function(O) {
|
|
5694
5717
|
fe(T, O);
|
|
@@ -5748,30 +5771,30 @@ var J2 = function(b, M) {
|
|
|
5748
5771
|
}, yi = function(b) {
|
|
5749
5772
|
return b * E3;
|
|
5750
5773
|
}, oM = function(b) {
|
|
5751
|
-
var M = new QO(), p =
|
|
5774
|
+
var M = new QO(), p = U0.internal.getHeight(b) || 0, o = U0.internal.getWidth(b) || 0;
|
|
5752
5775
|
return M.BBox = [0, 0, Number(t1(o)), Number(t1(p))], M;
|
|
5753
|
-
},
|
|
5776
|
+
}, sd = p2.__acroform__.setBit = function(b, M) {
|
|
5754
5777
|
if (b = b || 0, M = M || 0, isNaN(b) || isNaN(M)) throw new Error("Invalid arguments passed to jsPDF.API.__acroform__.setBit");
|
|
5755
5778
|
return b |= 1 << M;
|
|
5756
|
-
},
|
|
5779
|
+
}, Ad = p2.__acroform__.clearBit = function(b, M) {
|
|
5757
5780
|
if (b = b || 0, M = M || 0, isNaN(b) || isNaN(M)) throw new Error("Invalid arguments passed to jsPDF.API.__acroform__.clearBit");
|
|
5758
5781
|
return b &= ~(1 << M);
|
|
5759
|
-
},
|
|
5782
|
+
}, dd = p2.__acroform__.getBit = function(b, M) {
|
|
5760
5783
|
if (isNaN(b) || isNaN(M)) throw new Error("Invalid arguments passed to jsPDF.API.__acroform__.getBit");
|
|
5761
5784
|
return b & 1 << M ? 1 : 0;
|
|
5762
5785
|
}, n2 = p2.__acroform__.getBitForPdf = function(b, M) {
|
|
5763
5786
|
if (isNaN(b) || isNaN(M)) throw new Error("Invalid arguments passed to jsPDF.API.__acroform__.getBitForPdf");
|
|
5764
|
-
return
|
|
5787
|
+
return dd(b, M - 1);
|
|
5765
5788
|
}, c2 = p2.__acroform__.setBitForPdf = function(b, M) {
|
|
5766
5789
|
if (isNaN(b) || isNaN(M)) throw new Error("Invalid arguments passed to jsPDF.API.__acroform__.setBitForPdf");
|
|
5767
|
-
return
|
|
5790
|
+
return sd(b, M - 1);
|
|
5768
5791
|
}, a2 = p2.__acroform__.clearBitForPdf = function(b, M) {
|
|
5769
5792
|
if (isNaN(b) || isNaN(M)) throw new Error("Invalid arguments passed to jsPDF.API.__acroform__.clearBitForPdf");
|
|
5770
|
-
return
|
|
5771
|
-
},
|
|
5793
|
+
return Ad(b, M - 1);
|
|
5794
|
+
}, ld = p2.__acroform__.calculateCoordinates = function(b, M) {
|
|
5772
5795
|
var p = M.internal.getHorizontalCoordinate, o = M.internal.getVerticalCoordinate, e = b[0], z = b[1], n = b[2], c = b[3], i = {};
|
|
5773
5796
|
return i.lowerLeft_X = p(e) || 0, i.lowerLeft_Y = o(z + c) || 0, i.upperRight_X = p(e + n) || 0, i.upperRight_Y = o(z) || 0, [Number(t1(i.lowerLeft_X)), Number(t1(i.lowerLeft_Y)), Number(t1(i.upperRight_X)), Number(t1(i.upperRight_Y))];
|
|
5774
|
-
},
|
|
5797
|
+
}, qd = function(b) {
|
|
5775
5798
|
if (b.appearanceStreamContent) return b.appearanceStreamContent;
|
|
5776
5799
|
if (b.V || b.DV) {
|
|
5777
5800
|
var M = [], p = b._V || b.DV, o = a3(b, p), e = b.scope.internal.getFont(b.fontName, b.fontStyle).id;
|
|
@@ -5788,9 +5811,9 @@ var J2 = function(b, M) {
|
|
|
5788
5811
|
}) : e.map(function(x) {
|
|
5789
5812
|
return [x];
|
|
5790
5813
|
});
|
|
5791
|
-
var z = p, n =
|
|
5814
|
+
var z = p, n = U0.internal.getHeight(b) || 0;
|
|
5792
5815
|
n = n < 0 ? -n : n;
|
|
5793
|
-
var c =
|
|
5816
|
+
var c = U0.internal.getWidth(b) || 0;
|
|
5794
5817
|
c = c < 0 ? -c : c;
|
|
5795
5818
|
var i = function(x, X, F) {
|
|
5796
5819
|
if (x + 1 < e.length) {
|
|
@@ -5865,19 +5888,19 @@ var J2 = function(b, M) {
|
|
|
5865
5888
|
}, nt = function(b, M, p) {
|
|
5866
5889
|
var o = M.scope.internal.getFont(M.fontName, M.fontStyle), e = M.scope.getStringUnitWidth(b, { font: o, fontSize: parseFloat(p), charSpace: 0 }) * parseFloat(p);
|
|
5867
5890
|
return { height: M.scope.getStringUnitWidth("3", { font: o, fontSize: parseFloat(p), charSpace: 0 }) * parseFloat(p) * 1.5, width: e };
|
|
5868
|
-
},
|
|
5891
|
+
}, fd = { fields: [], xForms: [], acroFormDictionaryRoot: null, printedOut: !1, internal: null, isInitialized: !1 }, ud = function(b, M) {
|
|
5869
5892
|
var p = { type: "reference", object: b };
|
|
5870
5893
|
M.internal.getPageInfo(b.page).pageContext.annotations.find(function(o) {
|
|
5871
5894
|
return o.type === p.type && o.object === p.object;
|
|
5872
5895
|
}) === void 0 && M.internal.getPageInfo(b.page).pageContext.annotations.push(p);
|
|
5873
|
-
},
|
|
5896
|
+
}, Wd = function(b, M) {
|
|
5874
5897
|
for (var p in b) if (b.hasOwnProperty(p)) {
|
|
5875
5898
|
var o = p, e = b[p];
|
|
5876
5899
|
M.internal.newObjectDeferredBegin(e.objId, !0), x1(e) === "object" && typeof e.putStream == "function" && e.putStream(), delete b[o];
|
|
5877
5900
|
}
|
|
5878
|
-
},
|
|
5901
|
+
}, hd = function(b, M) {
|
|
5879
5902
|
if (M.scope = b, b.internal !== void 0 && (b.internal.acroformPlugin === void 0 || b.internal.acroformPlugin.isInitialized === !1)) {
|
|
5880
|
-
if (Hb.FieldNum = 0, b.internal.acroformPlugin = JSON.parse(JSON.stringify(
|
|
5903
|
+
if (Hb.FieldNum = 0, b.internal.acroformPlugin = JSON.parse(JSON.stringify(fd)), b.internal.acroformPlugin.acroFormDictionaryRoot) throw new Error("Exception while creating AcroformDictionary");
|
|
5881
5904
|
E3 = b.internal.scaleFactor, b.internal.acroformPlugin.acroFormDictionaryRoot = new ZO(), b.internal.acroformPlugin.acroFormDictionaryRoot.scope = b, b.internal.acroformPlugin.acroFormDictionaryRoot._eventID = b.internal.events.subscribe("postPutResources", function() {
|
|
5882
5905
|
(function(p) {
|
|
5883
5906
|
p.internal.events.unsubscribe(p.internal.acroformPlugin.acroFormDictionaryRoot._eventID), delete p.internal.acroformPlugin.acroFormDictionaryRoot._eventID, p.internal.acroformPlugin.printedOut = !0;
|
|
@@ -5888,7 +5911,7 @@ var J2 = function(b, M) {
|
|
|
5888
5911
|
var o = p.internal.acroformPlugin.acroFormDictionaryRoot.Fields;
|
|
5889
5912
|
for (var e in o) if (o.hasOwnProperty(e)) {
|
|
5890
5913
|
var z = o[e];
|
|
5891
|
-
z.objId = void 0, z.hasAnnotation &&
|
|
5914
|
+
z.objId = void 0, z.hasAnnotation && ud(z, p);
|
|
5892
5915
|
}
|
|
5893
5916
|
})(b);
|
|
5894
5917
|
}), b.internal.events.subscribe("putCatalog", function() {
|
|
@@ -5901,8 +5924,8 @@ var J2 = function(b, M) {
|
|
|
5901
5924
|
var z = !o;
|
|
5902
5925
|
for (var n in o || (e.internal.newObjectDeferredBegin(e.internal.acroformPlugin.acroFormDictionaryRoot.objId, !0), e.internal.acroformPlugin.acroFormDictionaryRoot.putStream()), o = o || e.internal.acroformPlugin.acroFormDictionaryRoot.Kids) if (o.hasOwnProperty(n)) {
|
|
5903
5926
|
var c = o[n], i = [], r = c.Rect;
|
|
5904
|
-
if (c.Rect && (c.Rect =
|
|
5905
|
-
var d =
|
|
5927
|
+
if (c.Rect && (c.Rect = ld(c.Rect, e)), e.internal.newObjectDeferredBegin(c.objId, !0), c.DA = U0.createDefaultAppearanceStream(c), x1(c) === "object" && typeof c.getKeyValueListForStream == "function" && (i = c.getKeyValueListForStream()), c.Rect = r, c.hasAppearanceStream && !c.appearanceStreamContent) {
|
|
5928
|
+
var d = qd(c);
|
|
5906
5929
|
i.push({ key: "AP", value: "<</N " + d + ">>" }), e.internal.acroformPlugin.xForms.push(d);
|
|
5907
5930
|
}
|
|
5908
5931
|
if (c.appearanceStreamContent) {
|
|
@@ -5922,7 +5945,7 @@ var J2 = function(b, M) {
|
|
|
5922
5945
|
}
|
|
5923
5946
|
e.internal.putStream({ additionalKeyValues: i, objectId: c.objId }), e.internal.out("endobj");
|
|
5924
5947
|
}
|
|
5925
|
-
z &&
|
|
5948
|
+
z && Wd(e.internal.acroformPlugin.xForms, e);
|
|
5926
5949
|
})(p, b);
|
|
5927
5950
|
}), b.internal.acroformPlugin.isInitialized = !0;
|
|
5928
5951
|
}
|
|
@@ -6371,7 +6394,7 @@ var Ct = function() {
|
|
|
6371
6394
|
return p.substr(1, p.length - 1);
|
|
6372
6395
|
}, set: function(e) {
|
|
6373
6396
|
p = "/" + e;
|
|
6374
|
-
} }), this.caption = "l", this.appearanceState = "Off", this._AppearanceType =
|
|
6397
|
+
} }), this.caption = "l", this.appearanceState = "Off", this._AppearanceType = U0.RadioButton.Circle, this.appearanceStreamContent = this._AppearanceType.createAppearanceStream(this.optionName);
|
|
6375
6398
|
};
|
|
6376
6399
|
J2(Ct, Hb), Vo.prototype.setAppearance = function(b) {
|
|
6377
6400
|
if (!("createAppearanceStream" in b) || !("getCA" in b)) throw new Error("Couldn't assign Appearance to RadioButton. Appearance was Invalid!");
|
|
@@ -6381,10 +6404,10 @@ J2(Ct, Hb), Vo.prototype.setAppearance = function(b) {
|
|
|
6381
6404
|
}
|
|
6382
6405
|
}, Vo.prototype.createOption = function(b) {
|
|
6383
6406
|
var M = new Ct();
|
|
6384
|
-
return M.Parent = this, M.optionName = b, this.Kids.push(M),
|
|
6407
|
+
return M.Parent = this, M.optionName = b, this.Kids.push(M), md.call(this.scope, M), M;
|
|
6385
6408
|
};
|
|
6386
6409
|
var Wt = function() {
|
|
6387
|
-
m2.call(this), this.fontName = "zapfdingbats", this.caption = "3", this.appearanceState = "On", this.value = "On", this.textAlign = "center", this.appearanceStreamContent =
|
|
6410
|
+
m2.call(this), this.fontName = "zapfdingbats", this.caption = "3", this.appearanceState = "On", this.value = "On", this.textAlign = "center", this.appearanceStreamContent = U0.CheckBox.createAppearanceStream();
|
|
6388
6411
|
};
|
|
6389
6412
|
J2(Wt, m2);
|
|
6390
6413
|
var Vp = function() {
|
|
@@ -6435,98 +6458,98 @@ var ht = function() {
|
|
|
6435
6458
|
} }), this.password = !0;
|
|
6436
6459
|
};
|
|
6437
6460
|
J2(ht, Vp);
|
|
6438
|
-
var
|
|
6439
|
-
return { N: { On:
|
|
6461
|
+
var U0 = { CheckBox: { createAppearanceStream: function() {
|
|
6462
|
+
return { N: { On: U0.CheckBox.YesNormal }, D: { On: U0.CheckBox.YesPushDown, Off: U0.CheckBox.OffPushDown } };
|
|
6440
6463
|
}, YesPushDown: function(b) {
|
|
6441
6464
|
var M = oM(b);
|
|
6442
6465
|
M.scope = b.scope;
|
|
6443
6466
|
var p = [], o = b.scope.internal.getFont(b.fontName, b.fontStyle).id, e = b.scope.__private__.encodeColorString(b.color), z = a3(b, b.caption);
|
|
6444
|
-
return p.push("0.749023 g"), p.push("0 0 " + t1(
|
|
6467
|
+
return p.push("0.749023 g"), p.push("0 0 " + t1(U0.internal.getWidth(b)) + " " + t1(U0.internal.getHeight(b)) + " re"), p.push("f"), p.push("BMC"), p.push("q"), p.push("0 0 1 rg"), p.push("/" + o + " " + t1(z.fontSize) + " Tf " + e), p.push("BT"), p.push(z.text), p.push("ET"), p.push("Q"), p.push("EMC"), M.stream = p.join(`
|
|
6445
6468
|
`), M;
|
|
6446
6469
|
}, YesNormal: function(b) {
|
|
6447
6470
|
var M = oM(b);
|
|
6448
6471
|
M.scope = b.scope;
|
|
6449
|
-
var p = b.scope.internal.getFont(b.fontName, b.fontStyle).id, o = b.scope.__private__.encodeColorString(b.color), e = [], z =
|
|
6472
|
+
var p = b.scope.internal.getFont(b.fontName, b.fontStyle).id, o = b.scope.__private__.encodeColorString(b.color), e = [], z = U0.internal.getHeight(b), n = U0.internal.getWidth(b), c = a3(b, b.caption);
|
|
6450
6473
|
return e.push("1 g"), e.push("0 0 " + t1(n) + " " + t1(z) + " re"), e.push("f"), e.push("q"), e.push("0 0 1 rg"), e.push("0 0 " + t1(n - 1) + " " + t1(z - 1) + " re"), e.push("W"), e.push("n"), e.push("0 g"), e.push("BT"), e.push("/" + p + " " + t1(c.fontSize) + " Tf " + o), e.push(c.text), e.push("ET"), e.push("Q"), M.stream = e.join(`
|
|
6451
6474
|
`), M;
|
|
6452
6475
|
}, OffPushDown: function(b) {
|
|
6453
6476
|
var M = oM(b);
|
|
6454
6477
|
M.scope = b.scope;
|
|
6455
6478
|
var p = [];
|
|
6456
|
-
return p.push("0.749023 g"), p.push("0 0 " + t1(
|
|
6479
|
+
return p.push("0.749023 g"), p.push("0 0 " + t1(U0.internal.getWidth(b)) + " " + t1(U0.internal.getHeight(b)) + " re"), p.push("f"), M.stream = p.join(`
|
|
6457
6480
|
`), M;
|
|
6458
6481
|
} }, RadioButton: { Circle: { createAppearanceStream: function(b) {
|
|
6459
|
-
var M = { D: { Off:
|
|
6460
|
-
return M.N[b] =
|
|
6482
|
+
var M = { D: { Off: U0.RadioButton.Circle.OffPushDown }, N: {} };
|
|
6483
|
+
return M.N[b] = U0.RadioButton.Circle.YesNormal, M.D[b] = U0.RadioButton.Circle.YesPushDown, M;
|
|
6461
6484
|
}, getCA: function() {
|
|
6462
6485
|
return "l";
|
|
6463
6486
|
}, YesNormal: function(b) {
|
|
6464
6487
|
var M = oM(b);
|
|
6465
6488
|
M.scope = b.scope;
|
|
6466
|
-
var p = [], o =
|
|
6489
|
+
var p = [], o = U0.internal.getWidth(b) <= U0.internal.getHeight(b) ? U0.internal.getWidth(b) / 4 : U0.internal.getHeight(b) / 4;
|
|
6467
6490
|
o = Number((0.9 * o).toFixed(5));
|
|
6468
|
-
var e =
|
|
6469
|
-
return p.push("q"), p.push("1 0 0 1 " + Ap(
|
|
6491
|
+
var e = U0.internal.Bezier_C, z = Number((o * e).toFixed(5));
|
|
6492
|
+
return p.push("q"), p.push("1 0 0 1 " + Ap(U0.internal.getWidth(b) / 2) + " " + Ap(U0.internal.getHeight(b) / 2) + " cm"), p.push(o + " 0 m"), p.push(o + " " + z + " " + z + " " + o + " 0 " + o + " c"), p.push("-" + z + " " + o + " -" + o + " " + z + " -" + o + " 0 c"), p.push("-" + o + " -" + z + " -" + z + " -" + o + " 0 -" + o + " c"), p.push(z + " -" + o + " " + o + " -" + z + " " + o + " 0 c"), p.push("f"), p.push("Q"), M.stream = p.join(`
|
|
6470
6493
|
`), M;
|
|
6471
6494
|
}, YesPushDown: function(b) {
|
|
6472
6495
|
var M = oM(b);
|
|
6473
6496
|
M.scope = b.scope;
|
|
6474
|
-
var p = [], o =
|
|
6497
|
+
var p = [], o = U0.internal.getWidth(b) <= U0.internal.getHeight(b) ? U0.internal.getWidth(b) / 4 : U0.internal.getHeight(b) / 4;
|
|
6475
6498
|
o = Number((0.9 * o).toFixed(5));
|
|
6476
|
-
var e = Number((2 * o).toFixed(5)), z = Number((e *
|
|
6477
|
-
return p.push("0.749023 g"), p.push("q"), p.push("1 0 0 1 " + Ap(
|
|
6499
|
+
var e = Number((2 * o).toFixed(5)), z = Number((e * U0.internal.Bezier_C).toFixed(5)), n = Number((o * U0.internal.Bezier_C).toFixed(5));
|
|
6500
|
+
return p.push("0.749023 g"), p.push("q"), p.push("1 0 0 1 " + Ap(U0.internal.getWidth(b) / 2) + " " + Ap(U0.internal.getHeight(b) / 2) + " cm"), p.push(e + " 0 m"), p.push(e + " " + z + " " + z + " " + e + " 0 " + e + " c"), p.push("-" + z + " " + e + " -" + e + " " + z + " -" + e + " 0 c"), p.push("-" + e + " -" + z + " -" + z + " -" + e + " 0 -" + e + " c"), p.push(z + " -" + e + " " + e + " -" + z + " " + e + " 0 c"), p.push("f"), p.push("Q"), p.push("0 g"), p.push("q"), p.push("1 0 0 1 " + Ap(U0.internal.getWidth(b) / 2) + " " + Ap(U0.internal.getHeight(b) / 2) + " cm"), p.push(o + " 0 m"), p.push(o + " " + n + " " + n + " " + o + " 0 " + o + " c"), p.push("-" + n + " " + o + " -" + o + " " + n + " -" + o + " 0 c"), p.push("-" + o + " -" + n + " -" + n + " -" + o + " 0 -" + o + " c"), p.push(n + " -" + o + " " + o + " -" + n + " " + o + " 0 c"), p.push("f"), p.push("Q"), M.stream = p.join(`
|
|
6478
6501
|
`), M;
|
|
6479
6502
|
}, OffPushDown: function(b) {
|
|
6480
6503
|
var M = oM(b);
|
|
6481
6504
|
M.scope = b.scope;
|
|
6482
|
-
var p = [], o =
|
|
6505
|
+
var p = [], o = U0.internal.getWidth(b) <= U0.internal.getHeight(b) ? U0.internal.getWidth(b) / 4 : U0.internal.getHeight(b) / 4;
|
|
6483
6506
|
o = Number((0.9 * o).toFixed(5));
|
|
6484
|
-
var e = Number((2 * o).toFixed(5)), z = Number((e *
|
|
6485
|
-
return p.push("0.749023 g"), p.push("q"), p.push("1 0 0 1 " + Ap(
|
|
6507
|
+
var e = Number((2 * o).toFixed(5)), z = Number((e * U0.internal.Bezier_C).toFixed(5));
|
|
6508
|
+
return p.push("0.749023 g"), p.push("q"), p.push("1 0 0 1 " + Ap(U0.internal.getWidth(b) / 2) + " " + Ap(U0.internal.getHeight(b) / 2) + " cm"), p.push(e + " 0 m"), p.push(e + " " + z + " " + z + " " + e + " 0 " + e + " c"), p.push("-" + z + " " + e + " -" + e + " " + z + " -" + e + " 0 c"), p.push("-" + e + " -" + z + " -" + z + " -" + e + " 0 -" + e + " c"), p.push(z + " -" + e + " " + e + " -" + z + " " + e + " 0 c"), p.push("f"), p.push("Q"), M.stream = p.join(`
|
|
6486
6509
|
`), M;
|
|
6487
6510
|
} }, Cross: { createAppearanceStream: function(b) {
|
|
6488
|
-
var M = { D: { Off:
|
|
6489
|
-
return M.N[b] =
|
|
6511
|
+
var M = { D: { Off: U0.RadioButton.Cross.OffPushDown }, N: {} };
|
|
6512
|
+
return M.N[b] = U0.RadioButton.Cross.YesNormal, M.D[b] = U0.RadioButton.Cross.YesPushDown, M;
|
|
6490
6513
|
}, getCA: function() {
|
|
6491
6514
|
return "8";
|
|
6492
6515
|
}, YesNormal: function(b) {
|
|
6493
6516
|
var M = oM(b);
|
|
6494
6517
|
M.scope = b.scope;
|
|
6495
|
-
var p = [], o =
|
|
6496
|
-
return p.push("q"), p.push("1 1 " + t1(
|
|
6518
|
+
var p = [], o = U0.internal.calculateCross(b);
|
|
6519
|
+
return p.push("q"), p.push("1 1 " + t1(U0.internal.getWidth(b) - 2) + " " + t1(U0.internal.getHeight(b) - 2) + " re"), p.push("W"), p.push("n"), p.push(t1(o.x1.x) + " " + t1(o.x1.y) + " m"), p.push(t1(o.x2.x) + " " + t1(o.x2.y) + " l"), p.push(t1(o.x4.x) + " " + t1(o.x4.y) + " m"), p.push(t1(o.x3.x) + " " + t1(o.x3.y) + " l"), p.push("s"), p.push("Q"), M.stream = p.join(`
|
|
6497
6520
|
`), M;
|
|
6498
6521
|
}, YesPushDown: function(b) {
|
|
6499
6522
|
var M = oM(b);
|
|
6500
6523
|
M.scope = b.scope;
|
|
6501
|
-
var p =
|
|
6502
|
-
return o.push("0.749023 g"), o.push("0 0 " + t1(
|
|
6524
|
+
var p = U0.internal.calculateCross(b), o = [];
|
|
6525
|
+
return o.push("0.749023 g"), o.push("0 0 " + t1(U0.internal.getWidth(b)) + " " + t1(U0.internal.getHeight(b)) + " re"), o.push("f"), o.push("q"), o.push("1 1 " + t1(U0.internal.getWidth(b) - 2) + " " + t1(U0.internal.getHeight(b) - 2) + " re"), o.push("W"), o.push("n"), o.push(t1(p.x1.x) + " " + t1(p.x1.y) + " m"), o.push(t1(p.x2.x) + " " + t1(p.x2.y) + " l"), o.push(t1(p.x4.x) + " " + t1(p.x4.y) + " m"), o.push(t1(p.x3.x) + " " + t1(p.x3.y) + " l"), o.push("s"), o.push("Q"), M.stream = o.join(`
|
|
6503
6526
|
`), M;
|
|
6504
6527
|
}, OffPushDown: function(b) {
|
|
6505
6528
|
var M = oM(b);
|
|
6506
6529
|
M.scope = b.scope;
|
|
6507
6530
|
var p = [];
|
|
6508
|
-
return p.push("0.749023 g"), p.push("0 0 " + t1(
|
|
6531
|
+
return p.push("0.749023 g"), p.push("0 0 " + t1(U0.internal.getWidth(b)) + " " + t1(U0.internal.getHeight(b)) + " re"), p.push("f"), M.stream = p.join(`
|
|
6509
6532
|
`), M;
|
|
6510
6533
|
} } }, createDefaultAppearanceStream: function(b) {
|
|
6511
6534
|
var M = b.scope.internal.getFont(b.fontName, b.fontStyle).id, p = b.scope.__private__.encodeColorString(b.color);
|
|
6512
6535
|
return "/" + M + " " + b.fontSize + " Tf " + p;
|
|
6513
6536
|
} };
|
|
6514
|
-
|
|
6515
|
-
var M =
|
|
6537
|
+
U0.internal = { Bezier_C: 0.551915024494, calculateCross: function(b) {
|
|
6538
|
+
var M = U0.internal.getWidth(b), p = U0.internal.getHeight(b), o = Math.min(M, p);
|
|
6516
6539
|
return { x1: { x: (M - o) / 2, y: (p - o) / 2 + o }, x2: { x: (M - o) / 2 + o, y: (p - o) / 2 }, x3: { x: (M - o) / 2, y: (p - o) / 2 }, x4: { x: (M - o) / 2 + o, y: (p - o) / 2 + o } };
|
|
6517
|
-
} },
|
|
6540
|
+
} }, U0.internal.getWidth = function(b) {
|
|
6518
6541
|
var M = 0;
|
|
6519
6542
|
return x1(b) === "object" && (M = yi(b.Rect[2])), M;
|
|
6520
|
-
},
|
|
6543
|
+
}, U0.internal.getHeight = function(b) {
|
|
6521
6544
|
var M = 0;
|
|
6522
6545
|
return x1(b) === "object" && (M = yi(b.Rect[3])), M;
|
|
6523
6546
|
};
|
|
6524
|
-
var
|
|
6525
|
-
if (
|
|
6547
|
+
var md = p2.addField = function(b) {
|
|
6548
|
+
if (hd(this, b), !(b instanceof Hb)) throw new Error("Invalid argument passed to jsPDF.addField.");
|
|
6526
6549
|
var M;
|
|
6527
6550
|
return (M = b).scope.internal.acroformPlugin.printedOut && (M.scope.internal.acroformPlugin.printedOut = !1, M.scope.internal.acroformPlugin.acroFormDictionaryRoot = null), M.scope.internal.acroformPlugin.acroFormDictionaryRoot.Fields.push(M), b.page = b.scope.internal.getCurrentPageInfo().pageNumber, this;
|
|
6528
6551
|
};
|
|
6529
|
-
p2.AcroFormChoiceField = Ho, p2.AcroFormListBox = Yo, p2.AcroFormComboBox = Go, p2.AcroFormEditBox = ft, p2.AcroFormButton = m2, p2.AcroFormPushButton = ut, p2.AcroFormRadioButton = Vo, p2.AcroFormCheckBox = Wt, p2.AcroFormTextField = Vp, p2.AcroFormPasswordField = ht, p2.AcroFormAppearance =
|
|
6552
|
+
p2.AcroFormChoiceField = Ho, p2.AcroFormListBox = Yo, p2.AcroFormComboBox = Go, p2.AcroFormEditBox = ft, p2.AcroFormButton = m2, p2.AcroFormPushButton = ut, p2.AcroFormRadioButton = Vo, p2.AcroFormCheckBox = Wt, p2.AcroFormTextField = Vp, p2.AcroFormPasswordField = ht, p2.AcroFormAppearance = U0, p2.AcroForm = { ChoiceField: Ho, ListBox: Yo, ComboBox: Go, EditBox: ft, Button: m2, PushButton: ut, RadioButton: Vo, CheckBox: Wt, TextField: Vp, PasswordField: ht, Appearance: U0 }, M1.AcroForm = { ChoiceField: Ho, ListBox: Yo, ComboBox: Go, EditBox: ft, Button: m2, PushButton: ut, RadioButton: Vo, CheckBox: Wt, TextField: Vp, PasswordField: ht, Appearance: U0 };
|
|
6530
6553
|
function $O(b) {
|
|
6531
6554
|
return b.reduce(function(M, p, o) {
|
|
6532
6555
|
return M[p] = o, M;
|
|
@@ -7080,7 +7103,7 @@ function(b) {
|
|
|
7080
7103
|
W.length > 0 && this.setTableHeaderRow(W), this.setFont(void 0, "normal"), p = !1;
|
|
7081
7104
|
};
|
|
7082
7105
|
}(M1.API);
|
|
7083
|
-
var br = { italic: ["italic", "oblique", "normal"], oblique: ["oblique", "italic", "normal"], normal: ["normal", "oblique", "italic"] }, Mr = ["ultra-condensed", "extra-condensed", "condensed", "semi-condensed", "normal", "semi-expanded", "expanded", "extra-expanded", "ultra-expanded"], i3 = $O(Mr), pr = [100, 200, 300, 400, 500, 600, 700, 800, 900],
|
|
7106
|
+
var br = { italic: ["italic", "oblique", "normal"], oblique: ["oblique", "italic", "normal"], normal: ["normal", "oblique", "italic"] }, Mr = ["ultra-condensed", "extra-condensed", "condensed", "semi-condensed", "normal", "semi-expanded", "expanded", "extra-expanded", "ultra-expanded"], i3 = $O(Mr), pr = [100, 200, 300, 400, 500, 600, 700, 800, 900], Rd = $O(pr);
|
|
7084
7107
|
function O3(b) {
|
|
7085
7108
|
var M = b.family.replace(/"|'/g, "").toLowerCase(), p = function(z) {
|
|
7086
7109
|
return br[z = z || "normal"] ? z : "normal";
|
|
@@ -7105,12 +7128,12 @@ function Bi(b, M, p, o) {
|
|
|
7105
7128
|
for (e = p; e >= 0 && e < M.length; e += o) if (b[M[e]]) return b[M[e]];
|
|
7106
7129
|
for (e = p; e >= 0 && e < M.length; e -= o) if (b[M[e]]) return b[M[e]];
|
|
7107
7130
|
}
|
|
7108
|
-
var
|
|
7131
|
+
var gd = { "sans-serif": "helvetica", fixed: "courier", monospace: "courier", terminal: "courier", cursive: "times", fantasy: "times", serif: "times" }, wi = { caption: "times", icon: "times", menu: "times", "message-box": "times", "small-caption": "times", "status-bar": "times" };
|
|
7109
7132
|
function xi(b) {
|
|
7110
7133
|
return [b.stretch, b.style, b.weight, b.family].join(" ");
|
|
7111
7134
|
}
|
|
7112
|
-
function
|
|
7113
|
-
for (var o = (p = p || {}).defaultFontFamily || "times", e = Object.assign({},
|
|
7135
|
+
function Ld(b, M, p) {
|
|
7136
|
+
for (var o = (p = p || {}).defaultFontFamily || "times", e = Object.assign({}, gd, p.genericFontFamilies || {}), z = null, n = null, c = 0; c < M.length; ++c) if (e[(z = O3(M[c])).family] && (z.family = e[z.family]), b.hasOwnProperty(z.family)) {
|
|
7114
7137
|
n = b[z.family];
|
|
7115
7138
|
break;
|
|
7116
7139
|
}
|
|
@@ -7128,7 +7151,7 @@ function gd(b, M, p) {
|
|
|
7128
7151
|
if (r[i]) return r[i];
|
|
7129
7152
|
if (i === 400 && r[500]) return r[500];
|
|
7130
7153
|
if (i === 500 && r[400]) return r[400];
|
|
7131
|
-
var d =
|
|
7154
|
+
var d = Rd[i], q = Bi(r, pr, d, i < 400 ? -1 : 1);
|
|
7132
7155
|
if (!q) throw new Error("Could not find a matching font-weight for value " + i);
|
|
7133
7156
|
return q;
|
|
7134
7157
|
}(z.weight, n))) throw new Error("Failed to resolve a font for the rule '" + xi(z) + "'.");
|
|
@@ -7137,14 +7160,14 @@ function gd(b, M, p) {
|
|
|
7137
7160
|
function Xi(b) {
|
|
7138
7161
|
return b.trimLeft();
|
|
7139
7162
|
}
|
|
7140
|
-
function
|
|
7163
|
+
function Nd(b, M) {
|
|
7141
7164
|
for (var p = 0; p < b.length; ) {
|
|
7142
7165
|
if (b.charAt(p) === M) return [b.substring(0, p), b.substring(p + 1)];
|
|
7143
7166
|
p += 1;
|
|
7144
7167
|
}
|
|
7145
7168
|
return null;
|
|
7146
7169
|
}
|
|
7147
|
-
function
|
|
7170
|
+
function vd(b) {
|
|
7148
7171
|
var M = b.match(/^(-[a-z_]|[a-z_])[a-z0-9_-]*/i);
|
|
7149
7172
|
return M === null ? null : [M[0], b.substring(M[0].length)];
|
|
7150
7173
|
}
|
|
@@ -7308,25 +7331,25 @@ var ct, Si, _i, Wc = ["times"];
|
|
|
7308
7331
|
var w0 = B[1], N0 = (B[2], B[3]), u0 = B[4], m0 = (B[5], B[6]), L0 = /^([.\d]+)((?:%|in|[cem]m|ex|p[ctx]))$/i.exec(u0)[2];
|
|
7309
7332
|
u0 = Math.floor(L0 === "px" ? parseFloat(u0) * this.pdf.internal.scaleFactor : L0 === "em" ? parseFloat(u0) * this.pdf.getFontSize() : parseFloat(u0) * this.pdf.internal.scaleFactor), this.pdf.setFontSize(u0);
|
|
7310
7333
|
var T0 = function(p1) {
|
|
7311
|
-
var A1,
|
|
7334
|
+
var A1, P0, v2 = [], m1 = p1.trim();
|
|
7312
7335
|
if (m1 === "") return Wc;
|
|
7313
7336
|
if (m1 in wi) return [wi[m1]];
|
|
7314
7337
|
for (; m1 !== ""; ) {
|
|
7315
|
-
switch (
|
|
7338
|
+
switch (P0 = null, A1 = (m1 = Xi(m1)).charAt(0)) {
|
|
7316
7339
|
case '"':
|
|
7317
7340
|
case "'":
|
|
7318
|
-
|
|
7341
|
+
P0 = Nd(m1.substring(1), A1);
|
|
7319
7342
|
break;
|
|
7320
7343
|
default:
|
|
7321
|
-
|
|
7344
|
+
P0 = vd(m1);
|
|
7322
7345
|
}
|
|
7323
|
-
if (
|
|
7346
|
+
if (P0 === null || (v2.push(P0[0]), (m1 = Xi(P0[1])) !== "" && m1.charAt(0) !== ",")) return Wc;
|
|
7324
7347
|
m1 = m1.replace(/^,/, "");
|
|
7325
7348
|
}
|
|
7326
7349
|
return v2;
|
|
7327
7350
|
}(m0);
|
|
7328
7351
|
if (this.fontFaces) {
|
|
7329
|
-
var G0 =
|
|
7352
|
+
var G0 = Ld(P(this.pdf, this.fontFaces), T0.map(function(p1) {
|
|
7330
7353
|
return { family: p1, stretch: "normal", weight: N0, style: w0 };
|
|
7331
7354
|
}));
|
|
7332
7355
|
this.pdf.setFont(G0.ref.name, G0.ref.style);
|
|
@@ -7523,13 +7546,13 @@ var ct, Si, _i, Wc = ["times"];
|
|
|
7523
7546
|
for (var B, w0 = this.ctx.transform.decompose(), N0 = p0(w0.rotate.shx), u0 = new i(), m0 = (u0 = (u0 = (u0 = u0.multiply(w0.translate)).multiply(w0.skew)).multiply(w0.scale)).applyToRectangle(new c(Q - T * n0, z0 - C * I, H * _0, K * P)), L0 = _.call(this, m0), T0 = [], G0 = 0; G0 < L0.length; G0 += 1) T0.indexOf(L0[G0]) === -1 && T0.push(L0[G0]);
|
|
7524
7547
|
if (U(T0), this.autoPaging) for (var e1 = T0[0], i1 = T0[T0.length - 1], s1 = e1; s1 < i1 + 1; s1++) {
|
|
7525
7548
|
this.pdf.setPage(s1);
|
|
7526
|
-
var u1 = this.pdf.internal.pageSize.width - this.margin[3] - this.margin[1], X1 = s1 === 1 ? this.posY + this.margin[0] : this.margin[0], p1 = this.pdf.internal.pageSize.height - this.posY - this.margin[0] - this.margin[2], A1 = this.pdf.internal.pageSize.height - this.margin[0] - this.margin[2],
|
|
7549
|
+
var u1 = this.pdf.internal.pageSize.width - this.margin[3] - this.margin[1], X1 = s1 === 1 ? this.posY + this.margin[0] : this.margin[0], p1 = this.pdf.internal.pageSize.height - this.posY - this.margin[0] - this.margin[2], A1 = this.pdf.internal.pageSize.height - this.margin[0] - this.margin[2], P0 = s1 === 1 ? 0 : p1 + (s1 - 2) * A1;
|
|
7527
7550
|
if (this.ctx.clip_path.length !== 0) {
|
|
7528
7551
|
var v2 = this.path;
|
|
7529
|
-
B = JSON.parse(JSON.stringify(this.ctx.clip_path)), this.path = y(B, this.posX + this.margin[3], -
|
|
7552
|
+
B = JSON.parse(JSON.stringify(this.ctx.clip_path)), this.path = y(B, this.posX + this.margin[3], -P0 + X1 + this.ctx.prevPageLastElemOffset), t0.call(this, "fill", !0), this.path = v2;
|
|
7530
7553
|
}
|
|
7531
7554
|
var m1 = JSON.parse(JSON.stringify(m0));
|
|
7532
|
-
m1 = y([m1], this.posX + this.margin[3], -
|
|
7555
|
+
m1 = y([m1], this.posX + this.margin[3], -P0 + X1 + this.ctx.prevPageLastElemOffset)[0];
|
|
7533
7556
|
var mb = (s1 > e1 || s1 < i1) && v.call(this);
|
|
7534
7557
|
mb && (this.pdf.saveGraphicsState(), this.pdf.rect(this.margin[3], this.margin[0], u1, A1, null).clip().discardPath()), this.pdf.addImage(R, "JPEG", m1.x, m1.y, m1.w, m1.h, null, null, N0), mb && this.pdf.restoreGraphicsState();
|
|
7535
7558
|
}
|
|
@@ -7726,8 +7749,8 @@ var ct, Si, _i, Wc = ["times"];
|
|
|
7726
7749
|
var A1 = this.autoPaging !== "text";
|
|
7727
7750
|
if (A1 || p1.y + p1.h <= G0) {
|
|
7728
7751
|
if (A1 || p1.y >= L0 && p1.x <= i1) {
|
|
7729
|
-
var
|
|
7730
|
-
m1 && (this.pdf.saveGraphicsState(), this.pdf.rect(this.margin[3], this.margin[0], s1, e1, null).clip().discardPath()), this.pdf.text(
|
|
7752
|
+
var P0 = A1 ? R.text : this.pdf.splitTextToSize(R.text, R.maxWidth || i1 - p1.x)[0], v2 = y([JSON.parse(JSON.stringify(P))], this.posX + this.margin[3], -u1 + L0 + this.ctx.prevPageLastElemOffset)[0], m1 = A1 && (m0 > N0 || m0 < u0) && v.call(this);
|
|
7753
|
+
m1 && (this.pdf.saveGraphicsState(), this.pdf.rect(this.margin[3], this.margin[0], s1, e1, null).clip().discardPath()), this.pdf.text(P0, v2.x, v2.y, { angle: R.angle, align: T, renderingMode: R.renderingMode }), m1 && this.pdf.restoreGraphicsState();
|
|
7731
7754
|
}
|
|
7732
7755
|
} else p1.y < G0 && (this.ctx.prevPageLastElemOffset += G0 - p1.y);
|
|
7733
7756
|
R.scale >= 0.01 && (this.pdf.setFontSize(y0), this.lineWidth = _0);
|
|
@@ -8272,7 +8295,7 @@ function(b) {
|
|
|
8272
8295
|
return d;
|
|
8273
8296
|
};
|
|
8274
8297
|
}(M1.API);
|
|
8275
|
-
var Xo, at, Ti, ki, Pi,
|
|
8298
|
+
var Xo, at, Ti, ki, Pi, yd = function() {
|
|
8276
8299
|
var b, M, p;
|
|
8277
8300
|
function o(z) {
|
|
8278
8301
|
var n, c, i, r, d, q, W, A, w, v, _, m, y, U;
|
|
@@ -8382,7 +8405,7 @@ var Xo, at, Ti, ki, Pi, vd = function() {
|
|
|
8382
8405
|
x++;
|
|
8383
8406
|
}
|
|
8384
8407
|
}
|
|
8385
|
-
return z =
|
|
8408
|
+
return z = cd(z), r.interlaceMethod == 1 ? (d(0, 0, 8, 8), d(4, 0, 8, 8), d(0, 4, 4, 8), d(2, 0, 4, 4), d(0, 2, 2, 4), d(1, 0, 2, 2), d(0, 1, 1, 2)) : d(0, 0, 1, 1), c;
|
|
8386
8409
|
}, o.prototype.decodePalette = function() {
|
|
8387
8410
|
var z, n, c, i, r, d, q, W, A;
|
|
8388
8411
|
for (c = this.palette, d = this.transparency.indexed || [], r = new Uint8Array((d.length || 0) + c.length), i = 0, z = 0, n = q = 0, W = c.length; q < W; n = q += 3) r[i++] = c[n], r[i++] = c[n + 1], r[i++] = c[n + 2], r[i++] = (A = d[z++]) != null ? A : 255;
|
|
@@ -8486,7 +8509,7 @@ var Xo, at, Ti, ki, Pi, vd = function() {
|
|
|
8486
8509
|
* including animation and compression. It does not rely on any specific
|
|
8487
8510
|
* underlying system, so should run in the browser, Node, or Plask.
|
|
8488
8511
|
*/
|
|
8489
|
-
function
|
|
8512
|
+
function Bd(b) {
|
|
8490
8513
|
var M = 0;
|
|
8491
8514
|
if (b[M++] !== 71 || b[M++] !== 73 || b[M++] !== 70 || b[M++] !== 56 || (b[M++] + 1 & 253) != 56 || b[M++] !== 97) throw new Error("Invalid GIF 87a/89a header.");
|
|
8492
8515
|
var p = b[M++] | b[M++] << 8, o = b[M++] | b[M++] << 8, e = b[M++], z = e >> 7, n = 1 << (7 & e) + 1;
|
|
@@ -8650,24 +8673,24 @@ function hc(b) {
|
|
|
8650
8673
|
}
|
|
8651
8674
|
function A0(R, T, C, H, K) {
|
|
8652
8675
|
for (var Q, z0 = K[0], c0 = K[240], B0 = function(u0, m0) {
|
|
8653
|
-
var L0, T0, G0, e1, i1, s1, u1, X1, p1, A1,
|
|
8676
|
+
var L0, T0, G0, e1, i1, s1, u1, X1, p1, A1, P0 = 0;
|
|
8654
8677
|
for (p1 = 0; p1 < 8; ++p1) {
|
|
8655
|
-
L0 = u0[
|
|
8656
|
-
var v2 = L0 + (X1 = u0[
|
|
8657
|
-
u0[
|
|
8678
|
+
L0 = u0[P0], T0 = u0[P0 + 1], G0 = u0[P0 + 2], e1 = u0[P0 + 3], i1 = u0[P0 + 4], s1 = u0[P0 + 5], u1 = u0[P0 + 6];
|
|
8679
|
+
var v2 = L0 + (X1 = u0[P0 + 7]), m1 = L0 - X1, mb = T0 + u1, k1 = T0 - u1, H1 = G0 + s1, Vb = G0 - s1, v1 = e1 + i1, yp = e1 - i1, J1 = v2 + v1, Rb = v2 - v1, uM = mb + H1, Q1 = mb - H1;
|
|
8680
|
+
u0[P0] = J1 + uM, u0[P0 + 4] = J1 - uM;
|
|
8658
8681
|
var z1 = 0.707106781 * (Q1 + Rb);
|
|
8659
|
-
u0[
|
|
8682
|
+
u0[P0 + 2] = Rb + z1, u0[P0 + 6] = Rb - z1;
|
|
8660
8683
|
var y1 = 0.382683433 * ((J1 = yp + Vb) - (Q1 = k1 + m1)), Bp = 0.5411961 * J1 + y1, R2 = 1.306562965 * Q1 + y1, Kb = 0.707106781 * (uM = Vb + k1), Jb = m1 + Kb, Q0 = m1 - Kb;
|
|
8661
|
-
u0[
|
|
8684
|
+
u0[P0 + 5] = Q0 + Bp, u0[P0 + 3] = Q0 - Bp, u0[P0 + 1] = Jb + R2, u0[P0 + 7] = Jb - R2, P0 += 8;
|
|
8662
8685
|
}
|
|
8663
|
-
for (
|
|
8664
|
-
L0 = u0[
|
|
8665
|
-
var gb = L0 + (X1 = u0[
|
|
8666
|
-
u0[
|
|
8686
|
+
for (P0 = 0, p1 = 0; p1 < 8; ++p1) {
|
|
8687
|
+
L0 = u0[P0], T0 = u0[P0 + 8], G0 = u0[P0 + 16], e1 = u0[P0 + 24], i1 = u0[P0 + 32], s1 = u0[P0 + 40], u1 = u0[P0 + 48];
|
|
8688
|
+
var gb = L0 + (X1 = u0[P0 + 56]), Qb = L0 - X1, D2 = T0 + u1, d2 = T0 - u1, i2 = G0 + s1, Q2 = G0 - s1, po = e1 + i1, WM = e1 - i1, Lb = gb + po, Nb = gb - po, vb = D2 + i2, Zb = D2 - i2;
|
|
8689
|
+
u0[P0] = Lb + vb, u0[P0 + 32] = Lb - vb;
|
|
8667
8690
|
var Ob = 0.707106781 * (Zb + Nb);
|
|
8668
|
-
u0[
|
|
8691
|
+
u0[P0 + 16] = Nb + Ob, u0[P0 + 48] = Nb - Ob;
|
|
8669
8692
|
var $b = 0.382683433 * ((Lb = WM + Q2) - (Zb = d2 + Qb)), wp = 0.5411961 * Lb + $b, oo = 1.306562965 * Zb + $b, eo = 0.707106781 * (vb = Q2 + d2), zo = Qb + eo, to = Qb - eo;
|
|
8670
|
-
u0[
|
|
8693
|
+
u0[P0 + 40] = to + wp, u0[P0 + 24] = to - wp, u0[P0 + 8] = zo + oo, u0[P0 + 56] = zo - oo, P0++;
|
|
8671
8694
|
}
|
|
8672
8695
|
for (p1 = 0; p1 < 64; ++p1) A1 = u0[p1] * m0[p1], A[p1] = A1 > 0 ? A1 + 0.5 | 0 : A1 - 0.5 | 0;
|
|
8673
8696
|
return A;
|
|
@@ -8989,7 +9012,7 @@ function Ei(b) {
|
|
|
8989
9012
|
else D["VP8LMapColor" + s](N, S, h0, i0, Y, o0, g, L, J);
|
|
8990
9013
|
};
|
|
8991
9014
|
}
|
|
8992
|
-
function
|
|
9015
|
+
function P0(t, a, s, l, f) {
|
|
8993
9016
|
for (s = a + s; a < s; ) {
|
|
8994
9017
|
var h = t[a++];
|
|
8995
9018
|
l[f++] = h >> 16 & 255, l[f++] = h >> 8 & 255, l[f++] = h >> 0 & 255;
|
|
@@ -9292,7 +9315,7 @@ function Ei(b) {
|
|
|
9292
9315
|
}
|
|
9293
9316
|
function Ob() {
|
|
9294
9317
|
var t = new In();
|
|
9295
|
-
return t == null ? null : (t.a = 0, t.xb = ha, Vb("Predictor", "VP8LPredictors"), Vb("Predictor", "VP8LPredictors_C"), Vb("PredictorAdd", "VP8LPredictorsAdd"), Vb("PredictorAdd", "VP8LPredictorsAdd_C"), Cz = u1, rb = p1, Xb =
|
|
9318
|
+
return t == null ? null : (t.a = 0, t.xb = ha, Vb("Predictor", "VP8LPredictors"), Vb("Predictor", "VP8LPredictors_C"), Vb("PredictorAdd", "VP8LPredictorsAdd"), Vb("PredictorAdd", "VP8LPredictorsAdd_C"), Cz = u1, rb = p1, Xb = P0, Mp = v2, MM = m1, gM = mb, Ro = k1, D.VP8LMapColor32b = Ne, D.VP8LMapColor8b = Un, t);
|
|
9296
9319
|
}
|
|
9297
9320
|
function $b(t, a, s, l, f) {
|
|
9298
9321
|
var h = 1, g = [t], L = [a], N = l.m, S = l.s, Y = null, o0 = 0;
|
|
@@ -10680,7 +10703,7 @@ function Ei(b) {
|
|
|
10680
10703
|
b.processPNG = function(W, A, w, v) {
|
|
10681
10704
|
var _, m, y, U, M0, t0, q0, $, D, r0, l0, x, X, F, E, a0 = this.decode.FLATE_DECODE, b0 = "";
|
|
10682
10705
|
if (this.__addimage__.isArrayBuffer(W) && (W = new Uint8Array(W)), this.__addimage__.isArrayBufferView(W)) {
|
|
10683
|
-
if (W = (y = new
|
|
10706
|
+
if (W = (y = new yd(W)).imgData, m = y.bits, _ = y.colorSpace, M0 = y.colors, [4, 6].indexOf(y.colorType) !== -1) {
|
|
10684
10707
|
if (y.bits === 8) {
|
|
10685
10708
|
D = ($ = y.pixelBitlength == 32 ? new Uint32Array(y.decodePixels().buffer) : y.pixelBitlength == 16 ? new Uint16Array(y.decodePixels().buffer) : new Uint8Array(y.decodePixels().buffer)).length, l0 = new Uint8Array(D * y.colors), r0 = new Uint8Array(D);
|
|
10686
10709
|
var O0, p0 = y.pixelBitlength - y.bits;
|
|
@@ -10727,7 +10750,7 @@ function Ei(b) {
|
|
|
10727
10750
|
};
|
|
10728
10751
|
})(M1.API), function(b) {
|
|
10729
10752
|
b.processGIF89A = function(M, p, o, e) {
|
|
10730
|
-
var z = new
|
|
10753
|
+
var z = new Bd(M), n = z.width, c = z.height, i = [];
|
|
10731
10754
|
z.decodeAndBlitFrameRGBA(0, i);
|
|
10732
10755
|
var r = { data: i, width: n, height: c }, d = new hc(100).encode(r, 100);
|
|
10733
10756
|
return b.processJPEG.call(this, d, p, o, e);
|
|
@@ -10982,7 +11005,7 @@ function(b) {
|
|
|
10982
11005
|
*/
|
|
10983
11006
|
function(b) {
|
|
10984
11007
|
function M() {
|
|
10985
|
-
return (Z0.canvg ? Promise.resolve(Z0.canvg) : import("./index.es-
|
|
11008
|
+
return (Z0.canvg ? Promise.resolve(Z0.canvg) : import("./index.es-7nmkQv5U.js")).catch(function(p) {
|
|
10986
11009
|
return Promise.reject(new Error("Could not load canvg: " + p));
|
|
10987
11010
|
}).then(function(p) {
|
|
10988
11011
|
return p.default ? p.default : p;
|
|
@@ -11349,12 +11372,12 @@ function(b) {
|
|
|
11349
11372
|
function b(M) {
|
|
11350
11373
|
var p;
|
|
11351
11374
|
if (this.rawData = M, p = this.contents = new vp(M), this.contents.pos = 4, p.readString(4) === "ttcf") throw new Error("TTCF not supported.");
|
|
11352
|
-
p.pos = 0, this.parse(), this.subset = new
|
|
11375
|
+
p.pos = 0, this.parse(), this.subset = new Ud(this), this.registerTTF();
|
|
11353
11376
|
}
|
|
11354
11377
|
return b.open = function(M) {
|
|
11355
11378
|
return new b(M);
|
|
11356
11379
|
}, b.prototype.parse = function() {
|
|
11357
|
-
return this.directory = new
|
|
11380
|
+
return this.directory = new wd(this.contents), this.head = new Xd(this), this.name = new Pd(this), this.cmap = new or(this), this.toUnicode = {}, this.hhea = new Sd(this), this.maxp = new Cd(this), this.hmtx = new Ed(this), this.post = new Td(this), this.os2 = new _d(this), this.loca = new jd(this), this.glyf = new Dd(this), this.ascender = this.os2.exists && this.os2.ascender || this.hhea.ascender, this.decender = this.os2.exists && this.os2.decender || this.hhea.decender, this.lineGap = this.os2.exists && this.os2.lineGap || this.hhea.lineGap, this.bbox = [this.head.xMin, this.head.yMin, this.head.xMax, this.head.yMax];
|
|
11358
11381
|
}, b.prototype.registerTTF = function() {
|
|
11359
11382
|
var M, p, o, e, z;
|
|
11360
11383
|
if (this.scaleFactor = 1e3 / this.head.unitsPerEm, this.bbox = (function() {
|
|
@@ -11434,7 +11457,7 @@ var Yb, vp = function() {
|
|
|
11434
11457
|
for (z = [], o = 0, e = M.length; o < e; o++) p = M[o], z.push(this.writeByte(p));
|
|
11435
11458
|
return z;
|
|
11436
11459
|
}, b;
|
|
11437
|
-
}(),
|
|
11460
|
+
}(), wd = function() {
|
|
11438
11461
|
var b;
|
|
11439
11462
|
function M(p) {
|
|
11440
11463
|
var o, e, z;
|
|
@@ -11450,8 +11473,8 @@ var Yb, vp = function() {
|
|
|
11450
11473
|
for (z = new vp(p), e = 0, o = 0, n = p.length; o < n; o = o += 4) e += z.readUInt32();
|
|
11451
11474
|
return 4294967295 & e;
|
|
11452
11475
|
}, M;
|
|
11453
|
-
}(),
|
|
11454
|
-
for (var p in M)
|
|
11476
|
+
}(), xd = {}.hasOwnProperty, lM = function(b, M) {
|
|
11477
|
+
for (var p in M) xd.call(M, p) && (b[p] = M[p]);
|
|
11455
11478
|
function o() {
|
|
11456
11479
|
this.constructor = b;
|
|
11457
11480
|
}
|
|
@@ -11468,7 +11491,7 @@ Yb = function() {
|
|
|
11468
11491
|
return this.exists ? (this.file.contents.pos = this.offset, this.file.contents.read(this.length)) : null;
|
|
11469
11492
|
}, b;
|
|
11470
11493
|
}();
|
|
11471
|
-
var
|
|
11494
|
+
var Xd = function(b) {
|
|
11472
11495
|
function M() {
|
|
11473
11496
|
return M.__super__.constructor.apply(this, arguments);
|
|
11474
11497
|
}
|
|
@@ -11552,14 +11575,14 @@ var xd = function(b) {
|
|
|
11552
11575
|
var e, z;
|
|
11553
11576
|
return o == null && (o = "macroman"), e = Di.encode(p, o), (z = new vp()).writeUInt16(0), z.writeUInt16(1), e.table = z.data.concat(e.subtable), e;
|
|
11554
11577
|
}, M;
|
|
11555
|
-
}(),
|
|
11578
|
+
}(), Sd = function(b) {
|
|
11556
11579
|
function M() {
|
|
11557
11580
|
return M.__super__.constructor.apply(this, arguments);
|
|
11558
11581
|
}
|
|
11559
11582
|
return lM(M, Yb), M.prototype.tag = "hhea", M.prototype.parse = function(p) {
|
|
11560
11583
|
return p.pos = this.offset, this.version = p.readInt(), this.ascender = p.readShort(), this.decender = p.readShort(), this.lineGap = p.readShort(), this.advanceWidthMax = p.readShort(), this.minLeftSideBearing = p.readShort(), this.minRightSideBearing = p.readShort(), this.xMaxExtent = p.readShort(), this.caretSlopeRise = p.readShort(), this.caretSlopeRun = p.readShort(), this.caretOffset = p.readShort(), p.pos += 8, this.metricDataFormat = p.readShort(), this.numberOfMetrics = p.readUInt16();
|
|
11561
11584
|
}, M;
|
|
11562
|
-
}(),
|
|
11585
|
+
}(), _d = function(b) {
|
|
11563
11586
|
function M() {
|
|
11564
11587
|
return M.__super__.constructor.apply(this, arguments);
|
|
11565
11588
|
}
|
|
@@ -11578,7 +11601,7 @@ var xd = function(b) {
|
|
|
11578
11601
|
return e;
|
|
11579
11602
|
}(), this.version > 1)) return this.xHeight = p.readShort(), this.capHeight = p.readShort(), this.defaultChar = p.readShort(), this.breakChar = p.readShort(), this.maxContext = p.readShort();
|
|
11580
11603
|
}, M;
|
|
11581
|
-
}(),
|
|
11604
|
+
}(), Td = function(b) {
|
|
11582
11605
|
function M() {
|
|
11583
11606
|
return M.__super__.constructor.apply(this, arguments);
|
|
11584
11607
|
}
|
|
@@ -11604,16 +11627,16 @@ var xd = function(b) {
|
|
|
11604
11627
|
}).call(this);
|
|
11605
11628
|
}
|
|
11606
11629
|
}, M;
|
|
11607
|
-
}(),
|
|
11630
|
+
}(), kd = function(b, M) {
|
|
11608
11631
|
this.raw = b, this.length = b.length, this.platformID = M.platformID, this.encodingID = M.encodingID, this.languageID = M.languageID;
|
|
11609
|
-
},
|
|
11632
|
+
}, Pd = function(b) {
|
|
11610
11633
|
function M() {
|
|
11611
11634
|
return M.__super__.constructor.apply(this, arguments);
|
|
11612
11635
|
}
|
|
11613
11636
|
return lM(M, Yb), M.prototype.tag = "name", M.prototype.parse = function(p) {
|
|
11614
11637
|
var o, e, z, n, c, i, r, d, q, W, A;
|
|
11615
11638
|
for (p.pos = this.offset, p.readShort(), o = p.readShort(), i = p.readShort(), e = [], n = 0; 0 <= o ? n < o : n > o; n = 0 <= o ? ++n : --n) e.push({ platformID: p.readShort(), encodingID: p.readShort(), languageID: p.readShort(), nameID: p.readShort(), length: p.readShort(), offset: this.offset + i + p.readShort() });
|
|
11616
|
-
for (r = {}, n = q = 0, W = e.length; q < W; n = ++q) z = e[n], p.pos = z.offset, d = p.readString(z.length), c = new
|
|
11639
|
+
for (r = {}, n = q = 0, W = e.length; q < W; n = ++q) z = e[n], p.pos = z.offset, d = p.readString(z.length), c = new kd(d, z), r[A = z.nameID] == null && (r[A] = []), r[z.nameID].push(c);
|
|
11617
11640
|
this.strings = r, this.copyright = r[0], this.fontFamily = r[1], this.fontSubfamily = r[2], this.uniqueSubfamily = r[3], this.fontName = r[4], this.version = r[5];
|
|
11618
11641
|
try {
|
|
11619
11642
|
this.postscriptName = r[6][0].raw.replace(/[\x00-\x19\x80-\xff]/g, "");
|
|
@@ -11622,14 +11645,14 @@ var xd = function(b) {
|
|
|
11622
11645
|
}
|
|
11623
11646
|
return this.trademark = r[7], this.manufacturer = r[8], this.designer = r[9], this.description = r[10], this.vendorUrl = r[11], this.designerUrl = r[12], this.license = r[13], this.licenseUrl = r[14], this.preferredFamily = r[15], this.preferredSubfamily = r[17], this.compatibleFull = r[18], this.sampleText = r[19];
|
|
11624
11647
|
}, M;
|
|
11625
|
-
}(),
|
|
11648
|
+
}(), Cd = function(b) {
|
|
11626
11649
|
function M() {
|
|
11627
11650
|
return M.__super__.constructor.apply(this, arguments);
|
|
11628
11651
|
}
|
|
11629
11652
|
return lM(M, Yb), M.prototype.tag = "maxp", M.prototype.parse = function(p) {
|
|
11630
11653
|
return p.pos = this.offset, this.version = p.readInt(), this.numGlyphs = p.readUInt16(), this.maxPoints = p.readUInt16(), this.maxContours = p.readUInt16(), this.maxCompositePoints = p.readUInt16(), this.maxComponentContours = p.readUInt16(), this.maxZones = p.readUInt16(), this.maxTwilightPoints = p.readUInt16(), this.maxStorage = p.readUInt16(), this.maxFunctionDefs = p.readUInt16(), this.maxInstructionDefs = p.readUInt16(), this.maxStackElements = p.readUInt16(), this.maxSizeOfInstructions = p.readUInt16(), this.maxComponentElements = p.readUInt16(), this.maxComponentDepth = p.readUInt16();
|
|
11631
11654
|
}, M;
|
|
11632
|
-
}(),
|
|
11655
|
+
}(), Ed = function(b) {
|
|
11633
11656
|
function M() {
|
|
11634
11657
|
return M.__super__.constructor.apply(this, arguments);
|
|
11635
11658
|
}
|
|
@@ -11649,7 +11672,7 @@ var xd = function(b) {
|
|
|
11649
11672
|
}, M.prototype.forGlyph = function(p) {
|
|
11650
11673
|
return p in this.metrics ? this.metrics[p] : { advance: this.metrics[this.metrics.length - 1].advance, lsb: this.leftSideBearings[p - this.metrics.length] };
|
|
11651
11674
|
}, M;
|
|
11652
|
-
}(), er = [].slice,
|
|
11675
|
+
}(), er = [].slice, Dd = function(b) {
|
|
11653
11676
|
function M() {
|
|
11654
11677
|
return M.__super__.constructor.apply(this, arguments);
|
|
11655
11678
|
}
|
|
@@ -11657,20 +11680,20 @@ var xd = function(b) {
|
|
|
11657
11680
|
return this.cache = {};
|
|
11658
11681
|
}, M.prototype.glyphFor = function(p) {
|
|
11659
11682
|
var o, e, z, n, c, i, r, d, q, W;
|
|
11660
|
-
return p in this.cache ? this.cache[p] : (n = this.file.loca, o = this.file.contents, e = n.indexOf(p), (z = n.lengthOf(p)) === 0 ? this.cache[p] = null : (o.pos = this.offset + e, c = (i = new vp(o.read(z))).readShort(), d = i.readShort(), W = i.readShort(), r = i.readShort(), q = i.readShort(), this.cache[p] = c === -1 ? new
|
|
11683
|
+
return p in this.cache ? this.cache[p] : (n = this.file.loca, o = this.file.contents, e = n.indexOf(p), (z = n.lengthOf(p)) === 0 ? this.cache[p] = null : (o.pos = this.offset + e, c = (i = new vp(o.read(z))).readShort(), d = i.readShort(), W = i.readShort(), r = i.readShort(), q = i.readShort(), this.cache[p] = c === -1 ? new Fd(i, d, W, r, q) : new Id(i, c, d, W, r, q), this.cache[p]));
|
|
11661
11684
|
}, M.prototype.encode = function(p, o, e) {
|
|
11662
11685
|
var z, n, c, i, r;
|
|
11663
11686
|
for (c = [], n = [], i = 0, r = o.length; i < r; i++) z = p[o[i]], n.push(c.length), z && (c = c.concat(z.encode(e)));
|
|
11664
11687
|
return n.push(c.length), { table: c, offsets: n };
|
|
11665
11688
|
}, M;
|
|
11666
|
-
}(),
|
|
11689
|
+
}(), Id = function() {
|
|
11667
11690
|
function b(M, p, o, e, z, n) {
|
|
11668
11691
|
this.raw = M, this.numberOfContours = p, this.xMin = o, this.yMin = e, this.xMax = z, this.yMax = n, this.compound = !1;
|
|
11669
11692
|
}
|
|
11670
11693
|
return b.prototype.encode = function() {
|
|
11671
11694
|
return this.raw.data;
|
|
11672
11695
|
}, b;
|
|
11673
|
-
}(),
|
|
11696
|
+
}(), Fd = function() {
|
|
11674
11697
|
function b(M, p, o, e, z) {
|
|
11675
11698
|
var n, c;
|
|
11676
11699
|
for (this.raw = M, this.xMin = p, this.yMin = o, this.xMax = e, this.yMax = z, this.compound = !0, this.glyphIDs = [], this.glyphOffsets = [], n = this.raw; c = n.readShort(), this.glyphOffsets.push(n.pos), this.glyphIDs.push(n.readUInt16()), 32 & c; ) n.pos += 1 & c ? 4 : 2, 128 & c ? n.pos += 8 : 64 & c ? n.pos += 4 : 8 & c && (n.pos += 2);
|
|
@@ -11680,7 +11703,7 @@ var xd = function(b) {
|
|
|
11680
11703
|
for (p = new vp(er.call(this.raw.data)), M = 0, o = this.glyphIDs.length; M < o; ++M) p.pos = this.glyphOffsets[M];
|
|
11681
11704
|
return p.data;
|
|
11682
11705
|
}, b;
|
|
11683
|
-
}(),
|
|
11706
|
+
}(), jd = function(b) {
|
|
11684
11707
|
function M() {
|
|
11685
11708
|
return M.__super__.constructor.apply(this, arguments);
|
|
11686
11709
|
}
|
|
@@ -11708,7 +11731,7 @@ var xd = function(b) {
|
|
|
11708
11731
|
for (var d = new Array(4 * e.length), q = 0; q < e.length; ++q) d[4 * q + 3] = 255 & e[q], d[4 * q + 2] = (65280 & e[q]) >> 8, d[4 * q + 1] = (16711680 & e[q]) >> 16, d[4 * q] = (4278190080 & e[q]) >> 24;
|
|
11709
11732
|
return d;
|
|
11710
11733
|
}, M;
|
|
11711
|
-
}(),
|
|
11734
|
+
}(), Ud = function() {
|
|
11712
11735
|
function b(M) {
|
|
11713
11736
|
this.font = M, this.subset = {}, this.unicodes = {}, this.next = 33;
|
|
11714
11737
|
}
|
|
@@ -11763,11 +11786,11 @@ M1.API.PDFObject = function() {
|
|
|
11763
11786
|
return "" + p;
|
|
11764
11787
|
}, M;
|
|
11765
11788
|
}();
|
|
11766
|
-
var
|
|
11789
|
+
var Hd = typeof globalThis < "u" ? globalThis : typeof window < "u" ? window : typeof global < "u" ? global : typeof self < "u" ? self : {};
|
|
11767
11790
|
function zr(b) {
|
|
11768
11791
|
return b && b.__esModule && Object.prototype.hasOwnProperty.call(b, "default") ? b.default : b;
|
|
11769
11792
|
}
|
|
11770
|
-
function
|
|
11793
|
+
function Yd(b) {
|
|
11771
11794
|
if (b.__esModule) return b;
|
|
11772
11795
|
var M = b.default;
|
|
11773
11796
|
if (typeof M == "function") {
|
|
@@ -11822,10 +11845,10 @@ on.prototype.getType = function(b) {
|
|
|
11822
11845
|
on.prototype.getExtension = function(b) {
|
|
11823
11846
|
return b = /^\s*([^;\s]*)/.test(b) && RegExp.$1, b && this._extensions[b.toLowerCase()] || null;
|
|
11824
11847
|
};
|
|
11825
|
-
var Yd = on, Gd = { "application/andrew-inset": ["ez"], "application/applixware": ["aw"], "application/atom+xml": ["atom"], "application/atomcat+xml": ["atomcat"], "application/atomdeleted+xml": ["atomdeleted"], "application/atomsvc+xml": ["atomsvc"], "application/atsc-dwd+xml": ["dwd"], "application/atsc-held+xml": ["held"], "application/atsc-rsat+xml": ["rsat"], "application/bdoc": ["bdoc"], "application/calendar+xml": ["xcs"], "application/ccxml+xml": ["ccxml"], "application/cdfx+xml": ["cdfx"], "application/cdmi-capability": ["cdmia"], "application/cdmi-container": ["cdmic"], "application/cdmi-domain": ["cdmid"], "application/cdmi-object": ["cdmio"], "application/cdmi-queue": ["cdmiq"], "application/cu-seeme": ["cu"], "application/dash+xml": ["mpd"], "application/davmount+xml": ["davmount"], "application/docbook+xml": ["dbk"], "application/dssc+der": ["dssc"], "application/dssc+xml": ["xdssc"], "application/ecmascript": ["es", "ecma"], "application/emma+xml": ["emma"], "application/emotionml+xml": ["emotionml"], "application/epub+zip": ["epub"], "application/exi": ["exi"], "application/express": ["exp"], "application/fdt+xml": ["fdt"], "application/font-tdpfr": ["pfr"], "application/geo+json": ["geojson"], "application/gml+xml": ["gml"], "application/gpx+xml": ["gpx"], "application/gxf": ["gxf"], "application/gzip": ["gz"], "application/hjson": ["hjson"], "application/hyperstudio": ["stk"], "application/inkml+xml": ["ink", "inkml"], "application/ipfix": ["ipfix"], "application/its+xml": ["its"], "application/java-archive": ["jar", "war", "ear"], "application/java-serialized-object": ["ser"], "application/java-vm": ["class"], "application/javascript": ["js", "mjs"], "application/json": ["json", "map"], "application/json5": ["json5"], "application/jsonml+json": ["jsonml"], "application/ld+json": ["jsonld"], "application/lgr+xml": ["lgr"], "application/lost+xml": ["lostxml"], "application/mac-binhex40": ["hqx"], "application/mac-compactpro": ["cpt"], "application/mads+xml": ["mads"], "application/manifest+json": ["webmanifest"], "application/marc": ["mrc"], "application/marcxml+xml": ["mrcx"], "application/mathematica": ["ma", "nb", "mb"], "application/mathml+xml": ["mathml"], "application/mbox": ["mbox"], "application/mediaservercontrol+xml": ["mscml"], "application/metalink+xml": ["metalink"], "application/metalink4+xml": ["meta4"], "application/mets+xml": ["mets"], "application/mmt-aei+xml": ["maei"], "application/mmt-usd+xml": ["musd"], "application/mods+xml": ["mods"], "application/mp21": ["m21", "mp21"], "application/mp4": ["mp4s", "m4p"], "application/msword": ["doc", "dot"], "application/mxf": ["mxf"], "application/n-quads": ["nq"], "application/n-triples": ["nt"], "application/node": ["cjs"], "application/octet-stream": ["bin", "dms", "lrf", "mar", "so", "dist", "distz", "pkg", "bpk", "dump", "elc", "deploy", "exe", "dll", "deb", "dmg", "iso", "img", "msi", "msp", "msm", "buffer"], "application/oda": ["oda"], "application/oebps-package+xml": ["opf"], "application/ogg": ["ogx"], "application/omdoc+xml": ["omdoc"], "application/onenote": ["onetoc", "onetoc2", "onetmp", "onepkg"], "application/oxps": ["oxps"], "application/p2p-overlay+xml": ["relo"], "application/patch-ops-error+xml": ["xer"], "application/pdf": ["pdf"], "application/pgp-encrypted": ["pgp"], "application/pgp-signature": ["asc", "sig"], "application/pics-rules": ["prf"], "application/pkcs10": ["p10"], "application/pkcs7-mime": ["p7m", "p7c"], "application/pkcs7-signature": ["p7s"], "application/pkcs8": ["p8"], "application/pkix-attr-cert": ["ac"], "application/pkix-cert": ["cer"], "application/pkix-crl": ["crl"], "application/pkix-pkipath": ["pkipath"], "application/pkixcmp": ["pki"], "application/pls+xml": ["pls"], "application/postscript": ["ai", "eps", "ps"], "application/provenance+xml": ["provx"], "application/pskc+xml": ["pskcxml"], "application/raml+yaml": ["raml"], "application/rdf+xml": ["rdf", "owl"], "application/reginfo+xml": ["rif"], "application/relax-ng-compact-syntax": ["rnc"], "application/resource-lists+xml": ["rl"], "application/resource-lists-diff+xml": ["rld"], "application/rls-services+xml": ["rs"], "application/route-apd+xml": ["rapd"], "application/route-s-tsid+xml": ["sls"], "application/route-usd+xml": ["rusd"], "application/rpki-ghostbusters": ["gbr"], "application/rpki-manifest": ["mft"], "application/rpki-roa": ["roa"], "application/rsd+xml": ["rsd"], "application/rss+xml": ["rss"], "application/rtf": ["rtf"], "application/sbml+xml": ["sbml"], "application/scvp-cv-request": ["scq"], "application/scvp-cv-response": ["scs"], "application/scvp-vp-request": ["spq"], "application/scvp-vp-response": ["spp"], "application/sdp": ["sdp"], "application/senml+xml": ["senmlx"], "application/sensml+xml": ["sensmlx"], "application/set-payment-initiation": ["setpay"], "application/set-registration-initiation": ["setreg"], "application/shf+xml": ["shf"], "application/sieve": ["siv", "sieve"], "application/smil+xml": ["smi", "smil"], "application/sparql-query": ["rq"], "application/sparql-results+xml": ["srx"], "application/srgs": ["gram"], "application/srgs+xml": ["grxml"], "application/sru+xml": ["sru"], "application/ssdl+xml": ["ssdl"], "application/ssml+xml": ["ssml"], "application/swid+xml": ["swidtag"], "application/tei+xml": ["tei", "teicorpus"], "application/thraud+xml": ["tfi"], "application/timestamped-data": ["tsd"], "application/toml": ["toml"], "application/trig": ["trig"], "application/ttml+xml": ["ttml"], "application/ubjson": ["ubj"], "application/urc-ressheet+xml": ["rsheet"], "application/urc-targetdesc+xml": ["td"], "application/voicexml+xml": ["vxml"], "application/wasm": ["wasm"], "application/widget": ["wgt"], "application/winhlp": ["hlp"], "application/wsdl+xml": ["wsdl"], "application/wspolicy+xml": ["wspolicy"], "application/xaml+xml": ["xaml"], "application/xcap-att+xml": ["xav"], "application/xcap-caps+xml": ["xca"], "application/xcap-diff+xml": ["xdf"], "application/xcap-el+xml": ["xel"], "application/xcap-ns+xml": ["xns"], "application/xenc+xml": ["xenc"], "application/xhtml+xml": ["xhtml", "xht"], "application/xliff+xml": ["xlf"], "application/xml": ["xml", "xsl", "xsd", "rng"], "application/xml-dtd": ["dtd"], "application/xop+xml": ["xop"], "application/xproc+xml": ["xpl"], "application/xslt+xml": ["*xsl", "xslt"], "application/xspf+xml": ["xspf"], "application/xv+xml": ["mxml", "xhvml", "xvml", "xvm"], "application/yang": ["yang"], "application/yin+xml": ["yin"], "application/zip": ["zip"], "audio/3gpp": ["*3gpp"], "audio/adpcm": ["adp"], "audio/amr": ["amr"], "audio/basic": ["au", "snd"], "audio/midi": ["mid", "midi", "kar", "rmi"], "audio/mobile-xmf": ["mxmf"], "audio/mp3": ["*mp3"], "audio/mp4": ["m4a", "mp4a"], "audio/mpeg": ["mpga", "mp2", "mp2a", "mp3", "m2a", "m3a"], "audio/ogg": ["oga", "ogg", "spx", "opus"], "audio/s3m": ["s3m"], "audio/silk": ["sil"], "audio/wav": ["wav"], "audio/wave": ["*wav"], "audio/webm": ["weba"], "audio/xm": ["xm"], "font/collection": ["ttc"], "font/otf": ["otf"], "font/ttf": ["ttf"], "font/woff": ["woff"], "font/woff2": ["woff2"], "image/aces": ["exr"], "image/apng": ["apng"], "image/avif": ["avif"], "image/bmp": ["bmp"], "image/cgm": ["cgm"], "image/dicom-rle": ["drle"], "image/emf": ["emf"], "image/fits": ["fits"], "image/g3fax": ["g3"], "image/gif": ["gif"], "image/heic": ["heic"], "image/heic-sequence": ["heics"], "image/heif": ["heif"], "image/heif-sequence": ["heifs"], "image/hej2k": ["hej2"], "image/hsj2": ["hsj2"], "image/ief": ["ief"], "image/jls": ["jls"], "image/jp2": ["jp2", "jpg2"], "image/jpeg": ["jpeg", "jpg", "jpe"], "image/jph": ["jph"], "image/jphc": ["jhc"], "image/jpm": ["jpm"], "image/jpx": ["jpx", "jpf"], "image/jxr": ["jxr"], "image/jxra": ["jxra"], "image/jxrs": ["jxrs"], "image/jxs": ["jxs"], "image/jxsc": ["jxsc"], "image/jxsi": ["jxsi"], "image/jxss": ["jxss"], "image/ktx": ["ktx"], "image/ktx2": ["ktx2"], "image/png": ["png"], "image/sgi": ["sgi"], "image/svg+xml": ["svg", "svgz"], "image/t38": ["t38"], "image/tiff": ["tif", "tiff"], "image/tiff-fx": ["tfx"], "image/webp": ["webp"], "image/wmf": ["wmf"], "message/disposition-notification": ["disposition-notification"], "message/global": ["u8msg"], "message/global-delivery-status": ["u8dsn"], "message/global-disposition-notification": ["u8mdn"], "message/global-headers": ["u8hdr"], "message/rfc822": ["eml", "mime"], "model/3mf": ["3mf"], "model/gltf+json": ["gltf"], "model/gltf-binary": ["glb"], "model/iges": ["igs", "iges"], "model/mesh": ["msh", "mesh", "silo"], "model/mtl": ["mtl"], "model/obj": ["obj"], "model/step+xml": ["stpx"], "model/step+zip": ["stpz"], "model/step-xml+zip": ["stpxz"], "model/stl": ["stl"], "model/vrml": ["wrl", "vrml"], "model/x3d+binary": ["*x3db", "x3dbz"], "model/x3d+fastinfoset": ["x3db"], "model/x3d+vrml": ["*x3dv", "x3dvz"], "model/x3d+xml": ["x3d", "x3dz"], "model/x3d-vrml": ["x3dv"], "text/cache-manifest": ["appcache", "manifest"], "text/calendar": ["ics", "ifb"], "text/coffeescript": ["coffee", "litcoffee"], "text/css": ["css"], "text/csv": ["csv"], "text/html": ["html", "htm", "shtml"], "text/jade": ["jade"], "text/jsx": ["jsx"], "text/less": ["less"], "text/markdown": ["markdown", "md"], "text/mathml": ["mml"], "text/mdx": ["mdx"], "text/n3": ["n3"], "text/plain": ["txt", "text", "conf", "def", "list", "log", "in", "ini"], "text/richtext": ["rtx"], "text/rtf": ["*rtf"], "text/sgml": ["sgml", "sgm"], "text/shex": ["shex"], "text/slim": ["slim", "slm"], "text/spdx": ["spdx"], "text/stylus": ["stylus", "styl"], "text/tab-separated-values": ["tsv"], "text/troff": ["t", "tr", "roff", "man", "me", "ms"], "text/turtle": ["ttl"], "text/uri-list": ["uri", "uris", "urls"], "text/vcard": ["vcard"], "text/vtt": ["vtt"], "text/xml": ["*xml"], "text/yaml": ["yaml", "yml"], "video/3gpp": ["3gp", "3gpp"], "video/3gpp2": ["3g2"], "video/h261": ["h261"], "video/h263": ["h263"], "video/h264": ["h264"], "video/iso.segment": ["m4s"], "video/jpeg": ["jpgv"], "video/jpm": ["*jpm", "jpgm"], "video/mj2": ["mj2", "mjp2"], "video/mp2t": ["ts"], "video/mp4": ["mp4", "mp4v", "mpg4"], "video/mpeg": ["mpeg", "mpg", "mpe", "m1v", "m2v"], "video/ogg": ["ogv"], "video/quicktime": ["qt", "mov"], "video/webm": ["webm"] }, Vd = { "application/prs.cww": ["cww"], "application/vnd.1000minds.decision-model+xml": ["1km"], "application/vnd.3gpp.pic-bw-large": ["plb"], "application/vnd.3gpp.pic-bw-small": ["psb"], "application/vnd.3gpp.pic-bw-var": ["pvb"], "application/vnd.3gpp2.tcap": ["tcap"], "application/vnd.3m.post-it-notes": ["pwn"], "application/vnd.accpac.simply.aso": ["aso"], "application/vnd.accpac.simply.imp": ["imp"], "application/vnd.acucobol": ["acu"], "application/vnd.acucorp": ["atc", "acutc"], "application/vnd.adobe.air-application-installer-package+zip": ["air"], "application/vnd.adobe.formscentral.fcdt": ["fcdt"], "application/vnd.adobe.fxp": ["fxp", "fxpl"], "application/vnd.adobe.xdp+xml": ["xdp"], "application/vnd.adobe.xfdf": ["xfdf"], "application/vnd.ahead.space": ["ahead"], "application/vnd.airzip.filesecure.azf": ["azf"], "application/vnd.airzip.filesecure.azs": ["azs"], "application/vnd.amazon.ebook": ["azw"], "application/vnd.americandynamics.acc": ["acc"], "application/vnd.amiga.ami": ["ami"], "application/vnd.android.package-archive": ["apk"], "application/vnd.anser-web-certificate-issue-initiation": ["cii"], "application/vnd.anser-web-funds-transfer-initiation": ["fti"], "application/vnd.antix.game-component": ["atx"], "application/vnd.apple.installer+xml": ["mpkg"], "application/vnd.apple.keynote": ["key"], "application/vnd.apple.mpegurl": ["m3u8"], "application/vnd.apple.numbers": ["numbers"], "application/vnd.apple.pages": ["pages"], "application/vnd.apple.pkpass": ["pkpass"], "application/vnd.aristanetworks.swi": ["swi"], "application/vnd.astraea-software.iota": ["iota"], "application/vnd.audiograph": ["aep"], "application/vnd.balsamiq.bmml+xml": ["bmml"], "application/vnd.blueice.multipass": ["mpm"], "application/vnd.bmi": ["bmi"], "application/vnd.businessobjects": ["rep"], "application/vnd.chemdraw+xml": ["cdxml"], "application/vnd.chipnuts.karaoke-mmd": ["mmd"], "application/vnd.cinderella": ["cdy"], "application/vnd.citationstyles.style+xml": ["csl"], "application/vnd.claymore": ["cla"], "application/vnd.cloanto.rp9": ["rp9"], "application/vnd.clonk.c4group": ["c4g", "c4d", "c4f", "c4p", "c4u"], "application/vnd.cluetrust.cartomobile-config": ["c11amc"], "application/vnd.cluetrust.cartomobile-config-pkg": ["c11amz"], "application/vnd.commonspace": ["csp"], "application/vnd.contact.cmsg": ["cdbcmsg"], "application/vnd.cosmocaller": ["cmc"], "application/vnd.crick.clicker": ["clkx"], "application/vnd.crick.clicker.keyboard": ["clkk"], "application/vnd.crick.clicker.palette": ["clkp"], "application/vnd.crick.clicker.template": ["clkt"], "application/vnd.crick.clicker.wordbank": ["clkw"], "application/vnd.criticaltools.wbs+xml": ["wbs"], "application/vnd.ctc-posml": ["pml"], "application/vnd.cups-ppd": ["ppd"], "application/vnd.curl.car": ["car"], "application/vnd.curl.pcurl": ["pcurl"], "application/vnd.dart": ["dart"], "application/vnd.data-vision.rdz": ["rdz"], "application/vnd.dbf": ["dbf"], "application/vnd.dece.data": ["uvf", "uvvf", "uvd", "uvvd"], "application/vnd.dece.ttml+xml": ["uvt", "uvvt"], "application/vnd.dece.unspecified": ["uvx", "uvvx"], "application/vnd.dece.zip": ["uvz", "uvvz"], "application/vnd.denovo.fcselayout-link": ["fe_launch"], "application/vnd.dna": ["dna"], "application/vnd.dolby.mlp": ["mlp"], "application/vnd.dpgraph": ["dpg"], "application/vnd.dreamfactory": ["dfac"], "application/vnd.ds-keypoint": ["kpxx"], "application/vnd.dvb.ait": ["ait"], "application/vnd.dvb.service": ["svc"], "application/vnd.dynageo": ["geo"], "application/vnd.ecowin.chart": ["mag"], "application/vnd.enliven": ["nml"], "application/vnd.epson.esf": ["esf"], "application/vnd.epson.msf": ["msf"], "application/vnd.epson.quickanime": ["qam"], "application/vnd.epson.salt": ["slt"], "application/vnd.epson.ssf": ["ssf"], "application/vnd.eszigno3+xml": ["es3", "et3"], "application/vnd.ezpix-album": ["ez2"], "application/vnd.ezpix-package": ["ez3"], "application/vnd.fdf": ["fdf"], "application/vnd.fdsn.mseed": ["mseed"], "application/vnd.fdsn.seed": ["seed", "dataless"], "application/vnd.flographit": ["gph"], "application/vnd.fluxtime.clip": ["ftc"], "application/vnd.framemaker": ["fm", "frame", "maker", "book"], "application/vnd.frogans.fnc": ["fnc"], "application/vnd.frogans.ltf": ["ltf"], "application/vnd.fsc.weblaunch": ["fsc"], "application/vnd.fujitsu.oasys": ["oas"], "application/vnd.fujitsu.oasys2": ["oa2"], "application/vnd.fujitsu.oasys3": ["oa3"], "application/vnd.fujitsu.oasysgp": ["fg5"], "application/vnd.fujitsu.oasysprs": ["bh2"], "application/vnd.fujixerox.ddd": ["ddd"], "application/vnd.fujixerox.docuworks": ["xdw"], "application/vnd.fujixerox.docuworks.binder": ["xbd"], "application/vnd.fuzzysheet": ["fzs"], "application/vnd.genomatix.tuxedo": ["txd"], "application/vnd.geogebra.file": ["ggb"], "application/vnd.geogebra.tool": ["ggt"], "application/vnd.geometry-explorer": ["gex", "gre"], "application/vnd.geonext": ["gxt"], "application/vnd.geoplan": ["g2w"], "application/vnd.geospace": ["g3w"], "application/vnd.gmx": ["gmx"], "application/vnd.google-apps.document": ["gdoc"], "application/vnd.google-apps.presentation": ["gslides"], "application/vnd.google-apps.spreadsheet": ["gsheet"], "application/vnd.google-earth.kml+xml": ["kml"], "application/vnd.google-earth.kmz": ["kmz"], "application/vnd.grafeq": ["gqf", "gqs"], "application/vnd.groove-account": ["gac"], "application/vnd.groove-help": ["ghf"], "application/vnd.groove-identity-message": ["gim"], "application/vnd.groove-injector": ["grv"], "application/vnd.groove-tool-message": ["gtm"], "application/vnd.groove-tool-template": ["tpl"], "application/vnd.groove-vcard": ["vcg"], "application/vnd.hal+xml": ["hal"], "application/vnd.handheld-entertainment+xml": ["zmm"], "application/vnd.hbci": ["hbci"], "application/vnd.hhe.lesson-player": ["les"], "application/vnd.hp-hpgl": ["hpgl"], "application/vnd.hp-hpid": ["hpid"], "application/vnd.hp-hps": ["hps"], "application/vnd.hp-jlyt": ["jlt"], "application/vnd.hp-pcl": ["pcl"], "application/vnd.hp-pclxl": ["pclxl"], "application/vnd.hydrostatix.sof-data": ["sfd-hdstx"], "application/vnd.ibm.minipay": ["mpy"], "application/vnd.ibm.modcap": ["afp", "listafp", "list3820"], "application/vnd.ibm.rights-management": ["irm"], "application/vnd.ibm.secure-container": ["sc"], "application/vnd.iccprofile": ["icc", "icm"], "application/vnd.igloader": ["igl"], "application/vnd.immervision-ivp": ["ivp"], "application/vnd.immervision-ivu": ["ivu"], "application/vnd.insors.igm": ["igm"], "application/vnd.intercon.formnet": ["xpw", "xpx"], "application/vnd.intergeo": ["i2g"], "application/vnd.intu.qbo": ["qbo"], "application/vnd.intu.qfx": ["qfx"], "application/vnd.ipunplugged.rcprofile": ["rcprofile"], "application/vnd.irepository.package+xml": ["irp"], "application/vnd.is-xpr": ["xpr"], "application/vnd.isac.fcs": ["fcs"], "application/vnd.jam": ["jam"], "application/vnd.jcp.javame.midlet-rms": ["rms"], "application/vnd.jisp": ["jisp"], "application/vnd.joost.joda-archive": ["joda"], "application/vnd.kahootz": ["ktz", "ktr"], "application/vnd.kde.karbon": ["karbon"], "application/vnd.kde.kchart": ["chrt"], "application/vnd.kde.kformula": ["kfo"], "application/vnd.kde.kivio": ["flw"], "application/vnd.kde.kontour": ["kon"], "application/vnd.kde.kpresenter": ["kpr", "kpt"], "application/vnd.kde.kspread": ["ksp"], "application/vnd.kde.kword": ["kwd", "kwt"], "application/vnd.kenameaapp": ["htke"], "application/vnd.kidspiration": ["kia"], "application/vnd.kinar": ["kne", "knp"], "application/vnd.koan": ["skp", "skd", "skt", "skm"], "application/vnd.kodak-descriptor": ["sse"], "application/vnd.las.las+xml": ["lasxml"], "application/vnd.llamagraphics.life-balance.desktop": ["lbd"], "application/vnd.llamagraphics.life-balance.exchange+xml": ["lbe"], "application/vnd.lotus-1-2-3": ["123"], "application/vnd.lotus-approach": ["apr"], "application/vnd.lotus-freelance": ["pre"], "application/vnd.lotus-notes": ["nsf"], "application/vnd.lotus-organizer": ["org"], "application/vnd.lotus-screencam": ["scm"], "application/vnd.lotus-wordpro": ["lwp"], "application/vnd.macports.portpkg": ["portpkg"], "application/vnd.mapbox-vector-tile": ["mvt"], "application/vnd.mcd": ["mcd"], "application/vnd.medcalcdata": ["mc1"], "application/vnd.mediastation.cdkey": ["cdkey"], "application/vnd.mfer": ["mwf"], "application/vnd.mfmp": ["mfm"], "application/vnd.micrografx.flo": ["flo"], "application/vnd.micrografx.igx": ["igx"], "application/vnd.mif": ["mif"], "application/vnd.mobius.daf": ["daf"], "application/vnd.mobius.dis": ["dis"], "application/vnd.mobius.mbk": ["mbk"], "application/vnd.mobius.mqy": ["mqy"], "application/vnd.mobius.msl": ["msl"], "application/vnd.mobius.plc": ["plc"], "application/vnd.mobius.txf": ["txf"], "application/vnd.mophun.application": ["mpn"], "application/vnd.mophun.certificate": ["mpc"], "application/vnd.mozilla.xul+xml": ["xul"], "application/vnd.ms-artgalry": ["cil"], "application/vnd.ms-cab-compressed": ["cab"], "application/vnd.ms-excel": ["xls", "xlm", "xla", "xlc", "xlt", "xlw"], "application/vnd.ms-excel.addin.macroenabled.12": ["xlam"], "application/vnd.ms-excel.sheet.binary.macroenabled.12": ["xlsb"], "application/vnd.ms-excel.sheet.macroenabled.12": ["xlsm"], "application/vnd.ms-excel.template.macroenabled.12": ["xltm"], "application/vnd.ms-fontobject": ["eot"], "application/vnd.ms-htmlhelp": ["chm"], "application/vnd.ms-ims": ["ims"], "application/vnd.ms-lrm": ["lrm"], "application/vnd.ms-officetheme": ["thmx"], "application/vnd.ms-outlook": ["msg"], "application/vnd.ms-pki.seccat": ["cat"], "application/vnd.ms-pki.stl": ["*stl"], "application/vnd.ms-powerpoint": ["ppt", "pps", "pot"], "application/vnd.ms-powerpoint.addin.macroenabled.12": ["ppam"], "application/vnd.ms-powerpoint.presentation.macroenabled.12": ["pptm"], "application/vnd.ms-powerpoint.slide.macroenabled.12": ["sldm"], "application/vnd.ms-powerpoint.slideshow.macroenabled.12": ["ppsm"], "application/vnd.ms-powerpoint.template.macroenabled.12": ["potm"], "application/vnd.ms-project": ["mpp", "mpt"], "application/vnd.ms-word.document.macroenabled.12": ["docm"], "application/vnd.ms-word.template.macroenabled.12": ["dotm"], "application/vnd.ms-works": ["wps", "wks", "wcm", "wdb"], "application/vnd.ms-wpl": ["wpl"], "application/vnd.ms-xpsdocument": ["xps"], "application/vnd.mseq": ["mseq"], "application/vnd.musician": ["mus"], "application/vnd.muvee.style": ["msty"], "application/vnd.mynfc": ["taglet"], "application/vnd.neurolanguage.nlu": ["nlu"], "application/vnd.nitf": ["ntf", "nitf"], "application/vnd.noblenet-directory": ["nnd"], "application/vnd.noblenet-sealer": ["nns"], "application/vnd.noblenet-web": ["nnw"], "application/vnd.nokia.n-gage.ac+xml": ["*ac"], "application/vnd.nokia.n-gage.data": ["ngdat"], "application/vnd.nokia.n-gage.symbian.install": ["n-gage"], "application/vnd.nokia.radio-preset": ["rpst"], "application/vnd.nokia.radio-presets": ["rpss"], "application/vnd.novadigm.edm": ["edm"], "application/vnd.novadigm.edx": ["edx"], "application/vnd.novadigm.ext": ["ext"], "application/vnd.oasis.opendocument.chart": ["odc"], "application/vnd.oasis.opendocument.chart-template": ["otc"], "application/vnd.oasis.opendocument.database": ["odb"], "application/vnd.oasis.opendocument.formula": ["odf"], "application/vnd.oasis.opendocument.formula-template": ["odft"], "application/vnd.oasis.opendocument.graphics": ["odg"], "application/vnd.oasis.opendocument.graphics-template": ["otg"], "application/vnd.oasis.opendocument.image": ["odi"], "application/vnd.oasis.opendocument.image-template": ["oti"], "application/vnd.oasis.opendocument.presentation": ["odp"], "application/vnd.oasis.opendocument.presentation-template": ["otp"], "application/vnd.oasis.opendocument.spreadsheet": ["ods"], "application/vnd.oasis.opendocument.spreadsheet-template": ["ots"], "application/vnd.oasis.opendocument.text": ["odt"], "application/vnd.oasis.opendocument.text-master": ["odm"], "application/vnd.oasis.opendocument.text-template": ["ott"], "application/vnd.oasis.opendocument.text-web": ["oth"], "application/vnd.olpc-sugar": ["xo"], "application/vnd.oma.dd2+xml": ["dd2"], "application/vnd.openblox.game+xml": ["obgx"], "application/vnd.openofficeorg.extension": ["oxt"], "application/vnd.openstreetmap.data+xml": ["osm"], "application/vnd.openxmlformats-officedocument.presentationml.presentation": ["pptx"], "application/vnd.openxmlformats-officedocument.presentationml.slide": ["sldx"], "application/vnd.openxmlformats-officedocument.presentationml.slideshow": ["ppsx"], "application/vnd.openxmlformats-officedocument.presentationml.template": ["potx"], "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet": ["xlsx"], "application/vnd.openxmlformats-officedocument.spreadsheetml.template": ["xltx"], "application/vnd.openxmlformats-officedocument.wordprocessingml.document": ["docx"], "application/vnd.openxmlformats-officedocument.wordprocessingml.template": ["dotx"], "application/vnd.osgeo.mapguide.package": ["mgp"], "application/vnd.osgi.dp": ["dp"], "application/vnd.osgi.subsystem": ["esa"], "application/vnd.palm": ["pdb", "pqa", "oprc"], "application/vnd.pawaafile": ["paw"], "application/vnd.pg.format": ["str"], "application/vnd.pg.osasli": ["ei6"], "application/vnd.picsel": ["efif"], "application/vnd.pmi.widget": ["wg"], "application/vnd.pocketlearn": ["plf"], "application/vnd.powerbuilder6": ["pbd"], "application/vnd.previewsystems.box": ["box"], "application/vnd.proteus.magazine": ["mgz"], "application/vnd.publishare-delta-tree": ["qps"], "application/vnd.pvi.ptid1": ["ptid"], "application/vnd.quark.quarkxpress": ["qxd", "qxt", "qwd", "qwt", "qxl", "qxb"], "application/vnd.rar": ["rar"], "application/vnd.realvnc.bed": ["bed"], "application/vnd.recordare.musicxml": ["mxl"], "application/vnd.recordare.musicxml+xml": ["musicxml"], "application/vnd.rig.cryptonote": ["cryptonote"], "application/vnd.rim.cod": ["cod"], "application/vnd.rn-realmedia": ["rm"], "application/vnd.rn-realmedia-vbr": ["rmvb"], "application/vnd.route66.link66+xml": ["link66"], "application/vnd.sailingtracker.track": ["st"], "application/vnd.seemail": ["see"], "application/vnd.sema": ["sema"], "application/vnd.semd": ["semd"], "application/vnd.semf": ["semf"], "application/vnd.shana.informed.formdata": ["ifm"], "application/vnd.shana.informed.formtemplate": ["itp"], "application/vnd.shana.informed.interchange": ["iif"], "application/vnd.shana.informed.package": ["ipk"], "application/vnd.simtech-mindmapper": ["twd", "twds"], "application/vnd.smaf": ["mmf"], "application/vnd.smart.teacher": ["teacher"], "application/vnd.software602.filler.form+xml": ["fo"], "application/vnd.solent.sdkm+xml": ["sdkm", "sdkd"], "application/vnd.spotfire.dxp": ["dxp"], "application/vnd.spotfire.sfs": ["sfs"], "application/vnd.stardivision.calc": ["sdc"], "application/vnd.stardivision.draw": ["sda"], "application/vnd.stardivision.impress": ["sdd"], "application/vnd.stardivision.math": ["smf"], "application/vnd.stardivision.writer": ["sdw", "vor"], "application/vnd.stardivision.writer-global": ["sgl"], "application/vnd.stepmania.package": ["smzip"], "application/vnd.stepmania.stepchart": ["sm"], "application/vnd.sun.wadl+xml": ["wadl"], "application/vnd.sun.xml.calc": ["sxc"], "application/vnd.sun.xml.calc.template": ["stc"], "application/vnd.sun.xml.draw": ["sxd"], "application/vnd.sun.xml.draw.template": ["std"], "application/vnd.sun.xml.impress": ["sxi"], "application/vnd.sun.xml.impress.template": ["sti"], "application/vnd.sun.xml.math": ["sxm"], "application/vnd.sun.xml.writer": ["sxw"], "application/vnd.sun.xml.writer.global": ["sxg"], "application/vnd.sun.xml.writer.template": ["stw"], "application/vnd.sus-calendar": ["sus", "susp"], "application/vnd.svd": ["svd"], "application/vnd.symbian.install": ["sis", "sisx"], "application/vnd.syncml+xml": ["xsm"], "application/vnd.syncml.dm+wbxml": ["bdm"], "application/vnd.syncml.dm+xml": ["xdm"], "application/vnd.syncml.dmddf+xml": ["ddf"], "application/vnd.tao.intent-module-archive": ["tao"], "application/vnd.tcpdump.pcap": ["pcap", "cap", "dmp"], "application/vnd.tmobile-livetv": ["tmo"], "application/vnd.trid.tpt": ["tpt"], "application/vnd.triscape.mxs": ["mxs"], "application/vnd.trueapp": ["tra"], "application/vnd.ufdl": ["ufd", "ufdl"], "application/vnd.uiq.theme": ["utz"], "application/vnd.umajin": ["umj"], "application/vnd.unity": ["unityweb"], "application/vnd.uoml+xml": ["uoml"], "application/vnd.vcx": ["vcx"], "application/vnd.visio": ["vsd", "vst", "vss", "vsw"], "application/vnd.visionary": ["vis"], "application/vnd.vsf": ["vsf"], "application/vnd.wap.wbxml": ["wbxml"], "application/vnd.wap.wmlc": ["wmlc"], "application/vnd.wap.wmlscriptc": ["wmlsc"], "application/vnd.webturbo": ["wtb"], "application/vnd.wolfram.player": ["nbp"], "application/vnd.wordperfect": ["wpd"], "application/vnd.wqd": ["wqd"], "application/vnd.wt.stf": ["stf"], "application/vnd.xara": ["xar"], "application/vnd.xfdl": ["xfdl"], "application/vnd.yamaha.hv-dic": ["hvd"], "application/vnd.yamaha.hv-script": ["hvs"], "application/vnd.yamaha.hv-voice": ["hvp"], "application/vnd.yamaha.openscoreformat": ["osf"], "application/vnd.yamaha.openscoreformat.osfpvg+xml": ["osfpvg"], "application/vnd.yamaha.smaf-audio": ["saf"], "application/vnd.yamaha.smaf-phrase": ["spf"], "application/vnd.yellowriver-custom-menu": ["cmp"], "application/vnd.zul": ["zir", "zirz"], "application/vnd.zzazz.deck+xml": ["zaz"], "application/x-7z-compressed": ["7z"], "application/x-abiword": ["abw"], "application/x-ace-compressed": ["ace"], "application/x-apple-diskimage": ["*dmg"], "application/x-arj": ["arj"], "application/x-authorware-bin": ["aab", "x32", "u32", "vox"], "application/x-authorware-map": ["aam"], "application/x-authorware-seg": ["aas"], "application/x-bcpio": ["bcpio"], "application/x-bdoc": ["*bdoc"], "application/x-bittorrent": ["torrent"], "application/x-blorb": ["blb", "blorb"], "application/x-bzip": ["bz"], "application/x-bzip2": ["bz2", "boz"], "application/x-cbr": ["cbr", "cba", "cbt", "cbz", "cb7"], "application/x-cdlink": ["vcd"], "application/x-cfs-compressed": ["cfs"], "application/x-chat": ["chat"], "application/x-chess-pgn": ["pgn"], "application/x-chrome-extension": ["crx"], "application/x-cocoa": ["cco"], "application/x-conference": ["nsc"], "application/x-cpio": ["cpio"], "application/x-csh": ["csh"], "application/x-debian-package": ["*deb", "udeb"], "application/x-dgc-compressed": ["dgc"], "application/x-director": ["dir", "dcr", "dxr", "cst", "cct", "cxt", "w3d", "fgd", "swa"], "application/x-doom": ["wad"], "application/x-dtbncx+xml": ["ncx"], "application/x-dtbook+xml": ["dtb"], "application/x-dtbresource+xml": ["res"], "application/x-dvi": ["dvi"], "application/x-envoy": ["evy"], "application/x-eva": ["eva"], "application/x-font-bdf": ["bdf"], "application/x-font-ghostscript": ["gsf"], "application/x-font-linux-psf": ["psf"], "application/x-font-pcf": ["pcf"], "application/x-font-snf": ["snf"], "application/x-font-type1": ["pfa", "pfb", "pfm", "afm"], "application/x-freearc": ["arc"], "application/x-futuresplash": ["spl"], "application/x-gca-compressed": ["gca"], "application/x-glulx": ["ulx"], "application/x-gnumeric": ["gnumeric"], "application/x-gramps-xml": ["gramps"], "application/x-gtar": ["gtar"], "application/x-hdf": ["hdf"], "application/x-httpd-php": ["php"], "application/x-install-instructions": ["install"], "application/x-iso9660-image": ["*iso"], "application/x-iwork-keynote-sffkey": ["*key"], "application/x-iwork-numbers-sffnumbers": ["*numbers"], "application/x-iwork-pages-sffpages": ["*pages"], "application/x-java-archive-diff": ["jardiff"], "application/x-java-jnlp-file": ["jnlp"], "application/x-keepass2": ["kdbx"], "application/x-latex": ["latex"], "application/x-lua-bytecode": ["luac"], "application/x-lzh-compressed": ["lzh", "lha"], "application/x-makeself": ["run"], "application/x-mie": ["mie"], "application/x-mobipocket-ebook": ["prc", "mobi"], "application/x-ms-application": ["application"], "application/x-ms-shortcut": ["lnk"], "application/x-ms-wmd": ["wmd"], "application/x-ms-wmz": ["wmz"], "application/x-ms-xbap": ["xbap"], "application/x-msaccess": ["mdb"], "application/x-msbinder": ["obd"], "application/x-mscardfile": ["crd"], "application/x-msclip": ["clp"], "application/x-msdos-program": ["*exe"], "application/x-msdownload": ["*exe", "*dll", "com", "bat", "*msi"], "application/x-msmediaview": ["mvb", "m13", "m14"], "application/x-msmetafile": ["*wmf", "*wmz", "*emf", "emz"], "application/x-msmoney": ["mny"], "application/x-mspublisher": ["pub"], "application/x-msschedule": ["scd"], "application/x-msterminal": ["trm"], "application/x-mswrite": ["wri"], "application/x-netcdf": ["nc", "cdf"], "application/x-ns-proxy-autoconfig": ["pac"], "application/x-nzb": ["nzb"], "application/x-perl": ["pl", "pm"], "application/x-pilot": ["*prc", "*pdb"], "application/x-pkcs12": ["p12", "pfx"], "application/x-pkcs7-certificates": ["p7b", "spc"], "application/x-pkcs7-certreqresp": ["p7r"], "application/x-rar-compressed": ["*rar"], "application/x-redhat-package-manager": ["rpm"], "application/x-research-info-systems": ["ris"], "application/x-sea": ["sea"], "application/x-sh": ["sh"], "application/x-shar": ["shar"], "application/x-shockwave-flash": ["swf"], "application/x-silverlight-app": ["xap"], "application/x-sql": ["sql"], "application/x-stuffit": ["sit"], "application/x-stuffitx": ["sitx"], "application/x-subrip": ["srt"], "application/x-sv4cpio": ["sv4cpio"], "application/x-sv4crc": ["sv4crc"], "application/x-t3vm-image": ["t3"], "application/x-tads": ["gam"], "application/x-tar": ["tar"], "application/x-tcl": ["tcl", "tk"], "application/x-tex": ["tex"], "application/x-tex-tfm": ["tfm"], "application/x-texinfo": ["texinfo", "texi"], "application/x-tgif": ["*obj"], "application/x-ustar": ["ustar"], "application/x-virtualbox-hdd": ["hdd"], "application/x-virtualbox-ova": ["ova"], "application/x-virtualbox-ovf": ["ovf"], "application/x-virtualbox-vbox": ["vbox"], "application/x-virtualbox-vbox-extpack": ["vbox-extpack"], "application/x-virtualbox-vdi": ["vdi"], "application/x-virtualbox-vhd": ["vhd"], "application/x-virtualbox-vmdk": ["vmdk"], "application/x-wais-source": ["src"], "application/x-web-app-manifest+json": ["webapp"], "application/x-x509-ca-cert": ["der", "crt", "pem"], "application/x-xfig": ["fig"], "application/x-xliff+xml": ["*xlf"], "application/x-xpinstall": ["xpi"], "application/x-xz": ["xz"], "application/x-zmachine": ["z1", "z2", "z3", "z4", "z5", "z6", "z7", "z8"], "audio/vnd.dece.audio": ["uva", "uvva"], "audio/vnd.digital-winds": ["eol"], "audio/vnd.dra": ["dra"], "audio/vnd.dts": ["dts"], "audio/vnd.dts.hd": ["dtshd"], "audio/vnd.lucent.voice": ["lvp"], "audio/vnd.ms-playready.media.pya": ["pya"], "audio/vnd.nuera.ecelp4800": ["ecelp4800"], "audio/vnd.nuera.ecelp7470": ["ecelp7470"], "audio/vnd.nuera.ecelp9600": ["ecelp9600"], "audio/vnd.rip": ["rip"], "audio/x-aac": ["aac"], "audio/x-aiff": ["aif", "aiff", "aifc"], "audio/x-caf": ["caf"], "audio/x-flac": ["flac"], "audio/x-m4a": ["*m4a"], "audio/x-matroska": ["mka"], "audio/x-mpegurl": ["m3u"], "audio/x-ms-wax": ["wax"], "audio/x-ms-wma": ["wma"], "audio/x-pn-realaudio": ["ram", "ra"], "audio/x-pn-realaudio-plugin": ["rmp"], "audio/x-realaudio": ["*ra"], "audio/x-wav": ["*wav"], "chemical/x-cdx": ["cdx"], "chemical/x-cif": ["cif"], "chemical/x-cmdf": ["cmdf"], "chemical/x-cml": ["cml"], "chemical/x-csml": ["csml"], "chemical/x-xyz": ["xyz"], "image/prs.btif": ["btif"], "image/prs.pti": ["pti"], "image/vnd.adobe.photoshop": ["psd"], "image/vnd.airzip.accelerator.azv": ["azv"], "image/vnd.dece.graphic": ["uvi", "uvvi", "uvg", "uvvg"], "image/vnd.djvu": ["djvu", "djv"], "image/vnd.dvb.subtitle": ["*sub"], "image/vnd.dwg": ["dwg"], "image/vnd.dxf": ["dxf"], "image/vnd.fastbidsheet": ["fbs"], "image/vnd.fpx": ["fpx"], "image/vnd.fst": ["fst"], "image/vnd.fujixerox.edmics-mmr": ["mmr"], "image/vnd.fujixerox.edmics-rlc": ["rlc"], "image/vnd.microsoft.icon": ["ico"], "image/vnd.ms-dds": ["dds"], "image/vnd.ms-modi": ["mdi"], "image/vnd.ms-photo": ["wdp"], "image/vnd.net-fpx": ["npx"], "image/vnd.pco.b16": ["b16"], "image/vnd.tencent.tap": ["tap"], "image/vnd.valve.source.texture": ["vtf"], "image/vnd.wap.wbmp": ["wbmp"], "image/vnd.xiff": ["xif"], "image/vnd.zbrush.pcx": ["pcx"], "image/x-3ds": ["3ds"], "image/x-cmu-raster": ["ras"], "image/x-cmx": ["cmx"], "image/x-freehand": ["fh", "fhc", "fh4", "fh5", "fh7"], "image/x-icon": ["*ico"], "image/x-jng": ["jng"], "image/x-mrsid-image": ["sid"], "image/x-ms-bmp": ["*bmp"], "image/x-pcx": ["*pcx"], "image/x-pict": ["pic", "pct"], "image/x-portable-anymap": ["pnm"], "image/x-portable-bitmap": ["pbm"], "image/x-portable-graymap": ["pgm"], "image/x-portable-pixmap": ["ppm"], "image/x-rgb": ["rgb"], "image/x-tga": ["tga"], "image/x-xbitmap": ["xbm"], "image/x-xpixmap": ["xpm"], "image/x-xwindowdump": ["xwd"], "message/vnd.wfa.wsc": ["wsc"], "model/vnd.collada+xml": ["dae"], "model/vnd.dwf": ["dwf"], "model/vnd.gdl": ["gdl"], "model/vnd.gtw": ["gtw"], "model/vnd.mts": ["mts"], "model/vnd.opengex": ["ogex"], "model/vnd.parasolid.transmit.binary": ["x_b"], "model/vnd.parasolid.transmit.text": ["x_t"], "model/vnd.sap.vds": ["vds"], "model/vnd.usdz+zip": ["usdz"], "model/vnd.valve.source.compiled-map": ["bsp"], "model/vnd.vtu": ["vtu"], "text/prs.lines.tag": ["dsc"], "text/vnd.curl": ["curl"], "text/vnd.curl.dcurl": ["dcurl"], "text/vnd.curl.mcurl": ["mcurl"], "text/vnd.curl.scurl": ["scurl"], "text/vnd.dvb.subtitle": ["sub"], "text/vnd.fly": ["fly"], "text/vnd.fmi.flexstor": ["flx"], "text/vnd.graphviz": ["gv"], "text/vnd.in3d.3dml": ["3dml"], "text/vnd.in3d.spot": ["spot"], "text/vnd.sun.j2me.app-descriptor": ["jad"], "text/vnd.wap.wml": ["wml"], "text/vnd.wap.wmlscript": ["wmls"], "text/x-asm": ["s", "asm"], "text/x-c": ["c", "cc", "cxx", "cpp", "h", "hh", "dic"], "text/x-component": ["htc"], "text/x-fortran": ["f", "for", "f77", "f90"], "text/x-handlebars-template": ["hbs"], "text/x-java-source": ["java"], "text/x-lua": ["lua"], "text/x-markdown": ["mkd"], "text/x-nfo": ["nfo"], "text/x-opml": ["opml"], "text/x-org": ["*org"], "text/x-pascal": ["p", "pas"], "text/x-processing": ["pde"], "text/x-sass": ["sass"], "text/x-scss": ["scss"], "text/x-setext": ["etx"], "text/x-sfv": ["sfv"], "text/x-suse-ymp": ["ymp"], "text/x-uuencode": ["uu"], "text/x-vcalendar": ["vcs"], "text/x-vcard": ["vcf"], "video/vnd.dece.hd": ["uvh", "uvvh"], "video/vnd.dece.mobile": ["uvm", "uvvm"], "video/vnd.dece.pd": ["uvp", "uvvp"], "video/vnd.dece.sd": ["uvs", "uvvs"], "video/vnd.dece.video": ["uvv", "uvvv"], "video/vnd.dvb.file": ["dvb"], "video/vnd.fvt": ["fvt"], "video/vnd.mpegurl": ["mxu", "m4u"], "video/vnd.ms-playready.media.pyv": ["pyv"], "video/vnd.uvvu.mp4": ["uvu", "uvvu"], "video/vnd.vivo": ["viv"], "video/x-f4v": ["f4v"], "video/x-fli": ["fli"], "video/x-flv": ["flv"], "video/x-m4v": ["m4v"], "video/x-matroska": ["mkv", "mk3d", "mks"], "video/x-mng": ["mng"], "video/x-ms-asf": ["asf", "asx"], "video/x-ms-vob": ["vob"], "video/x-ms-wm": ["wm"], "video/x-ms-wmv": ["wmv"], "video/x-ms-wmx": ["wmx"], "video/x-ms-wvx": ["wvx"], "video/x-msvideo": ["avi"], "video/x-sgi-movie": ["movie"], "video/x-smv": ["smv"], "x-conference/x-cooltalk": ["ice"] };
|
|
11826
|
-
let
|
|
11827
|
-
var
|
|
11828
|
-
const
|
|
11848
|
+
var Gd = on, Vd = { "application/andrew-inset": ["ez"], "application/applixware": ["aw"], "application/atom+xml": ["atom"], "application/atomcat+xml": ["atomcat"], "application/atomdeleted+xml": ["atomdeleted"], "application/atomsvc+xml": ["atomsvc"], "application/atsc-dwd+xml": ["dwd"], "application/atsc-held+xml": ["held"], "application/atsc-rsat+xml": ["rsat"], "application/bdoc": ["bdoc"], "application/calendar+xml": ["xcs"], "application/ccxml+xml": ["ccxml"], "application/cdfx+xml": ["cdfx"], "application/cdmi-capability": ["cdmia"], "application/cdmi-container": ["cdmic"], "application/cdmi-domain": ["cdmid"], "application/cdmi-object": ["cdmio"], "application/cdmi-queue": ["cdmiq"], "application/cu-seeme": ["cu"], "application/dash+xml": ["mpd"], "application/davmount+xml": ["davmount"], "application/docbook+xml": ["dbk"], "application/dssc+der": ["dssc"], "application/dssc+xml": ["xdssc"], "application/ecmascript": ["es", "ecma"], "application/emma+xml": ["emma"], "application/emotionml+xml": ["emotionml"], "application/epub+zip": ["epub"], "application/exi": ["exi"], "application/express": ["exp"], "application/fdt+xml": ["fdt"], "application/font-tdpfr": ["pfr"], "application/geo+json": ["geojson"], "application/gml+xml": ["gml"], "application/gpx+xml": ["gpx"], "application/gxf": ["gxf"], "application/gzip": ["gz"], "application/hjson": ["hjson"], "application/hyperstudio": ["stk"], "application/inkml+xml": ["ink", "inkml"], "application/ipfix": ["ipfix"], "application/its+xml": ["its"], "application/java-archive": ["jar", "war", "ear"], "application/java-serialized-object": ["ser"], "application/java-vm": ["class"], "application/javascript": ["js", "mjs"], "application/json": ["json", "map"], "application/json5": ["json5"], "application/jsonml+json": ["jsonml"], "application/ld+json": ["jsonld"], "application/lgr+xml": ["lgr"], "application/lost+xml": ["lostxml"], "application/mac-binhex40": ["hqx"], "application/mac-compactpro": ["cpt"], "application/mads+xml": ["mads"], "application/manifest+json": ["webmanifest"], "application/marc": ["mrc"], "application/marcxml+xml": ["mrcx"], "application/mathematica": ["ma", "nb", "mb"], "application/mathml+xml": ["mathml"], "application/mbox": ["mbox"], "application/mediaservercontrol+xml": ["mscml"], "application/metalink+xml": ["metalink"], "application/metalink4+xml": ["meta4"], "application/mets+xml": ["mets"], "application/mmt-aei+xml": ["maei"], "application/mmt-usd+xml": ["musd"], "application/mods+xml": ["mods"], "application/mp21": ["m21", "mp21"], "application/mp4": ["mp4s", "m4p"], "application/msword": ["doc", "dot"], "application/mxf": ["mxf"], "application/n-quads": ["nq"], "application/n-triples": ["nt"], "application/node": ["cjs"], "application/octet-stream": ["bin", "dms", "lrf", "mar", "so", "dist", "distz", "pkg", "bpk", "dump", "elc", "deploy", "exe", "dll", "deb", "dmg", "iso", "img", "msi", "msp", "msm", "buffer"], "application/oda": ["oda"], "application/oebps-package+xml": ["opf"], "application/ogg": ["ogx"], "application/omdoc+xml": ["omdoc"], "application/onenote": ["onetoc", "onetoc2", "onetmp", "onepkg"], "application/oxps": ["oxps"], "application/p2p-overlay+xml": ["relo"], "application/patch-ops-error+xml": ["xer"], "application/pdf": ["pdf"], "application/pgp-encrypted": ["pgp"], "application/pgp-signature": ["asc", "sig"], "application/pics-rules": ["prf"], "application/pkcs10": ["p10"], "application/pkcs7-mime": ["p7m", "p7c"], "application/pkcs7-signature": ["p7s"], "application/pkcs8": ["p8"], "application/pkix-attr-cert": ["ac"], "application/pkix-cert": ["cer"], "application/pkix-crl": ["crl"], "application/pkix-pkipath": ["pkipath"], "application/pkixcmp": ["pki"], "application/pls+xml": ["pls"], "application/postscript": ["ai", "eps", "ps"], "application/provenance+xml": ["provx"], "application/pskc+xml": ["pskcxml"], "application/raml+yaml": ["raml"], "application/rdf+xml": ["rdf", "owl"], "application/reginfo+xml": ["rif"], "application/relax-ng-compact-syntax": ["rnc"], "application/resource-lists+xml": ["rl"], "application/resource-lists-diff+xml": ["rld"], "application/rls-services+xml": ["rs"], "application/route-apd+xml": ["rapd"], "application/route-s-tsid+xml": ["sls"], "application/route-usd+xml": ["rusd"], "application/rpki-ghostbusters": ["gbr"], "application/rpki-manifest": ["mft"], "application/rpki-roa": ["roa"], "application/rsd+xml": ["rsd"], "application/rss+xml": ["rss"], "application/rtf": ["rtf"], "application/sbml+xml": ["sbml"], "application/scvp-cv-request": ["scq"], "application/scvp-cv-response": ["scs"], "application/scvp-vp-request": ["spq"], "application/scvp-vp-response": ["spp"], "application/sdp": ["sdp"], "application/senml+xml": ["senmlx"], "application/sensml+xml": ["sensmlx"], "application/set-payment-initiation": ["setpay"], "application/set-registration-initiation": ["setreg"], "application/shf+xml": ["shf"], "application/sieve": ["siv", "sieve"], "application/smil+xml": ["smi", "smil"], "application/sparql-query": ["rq"], "application/sparql-results+xml": ["srx"], "application/srgs": ["gram"], "application/srgs+xml": ["grxml"], "application/sru+xml": ["sru"], "application/ssdl+xml": ["ssdl"], "application/ssml+xml": ["ssml"], "application/swid+xml": ["swidtag"], "application/tei+xml": ["tei", "teicorpus"], "application/thraud+xml": ["tfi"], "application/timestamped-data": ["tsd"], "application/toml": ["toml"], "application/trig": ["trig"], "application/ttml+xml": ["ttml"], "application/ubjson": ["ubj"], "application/urc-ressheet+xml": ["rsheet"], "application/urc-targetdesc+xml": ["td"], "application/voicexml+xml": ["vxml"], "application/wasm": ["wasm"], "application/widget": ["wgt"], "application/winhlp": ["hlp"], "application/wsdl+xml": ["wsdl"], "application/wspolicy+xml": ["wspolicy"], "application/xaml+xml": ["xaml"], "application/xcap-att+xml": ["xav"], "application/xcap-caps+xml": ["xca"], "application/xcap-diff+xml": ["xdf"], "application/xcap-el+xml": ["xel"], "application/xcap-ns+xml": ["xns"], "application/xenc+xml": ["xenc"], "application/xhtml+xml": ["xhtml", "xht"], "application/xliff+xml": ["xlf"], "application/xml": ["xml", "xsl", "xsd", "rng"], "application/xml-dtd": ["dtd"], "application/xop+xml": ["xop"], "application/xproc+xml": ["xpl"], "application/xslt+xml": ["*xsl", "xslt"], "application/xspf+xml": ["xspf"], "application/xv+xml": ["mxml", "xhvml", "xvml", "xvm"], "application/yang": ["yang"], "application/yin+xml": ["yin"], "application/zip": ["zip"], "audio/3gpp": ["*3gpp"], "audio/adpcm": ["adp"], "audio/amr": ["amr"], "audio/basic": ["au", "snd"], "audio/midi": ["mid", "midi", "kar", "rmi"], "audio/mobile-xmf": ["mxmf"], "audio/mp3": ["*mp3"], "audio/mp4": ["m4a", "mp4a"], "audio/mpeg": ["mpga", "mp2", "mp2a", "mp3", "m2a", "m3a"], "audio/ogg": ["oga", "ogg", "spx", "opus"], "audio/s3m": ["s3m"], "audio/silk": ["sil"], "audio/wav": ["wav"], "audio/wave": ["*wav"], "audio/webm": ["weba"], "audio/xm": ["xm"], "font/collection": ["ttc"], "font/otf": ["otf"], "font/ttf": ["ttf"], "font/woff": ["woff"], "font/woff2": ["woff2"], "image/aces": ["exr"], "image/apng": ["apng"], "image/avif": ["avif"], "image/bmp": ["bmp"], "image/cgm": ["cgm"], "image/dicom-rle": ["drle"], "image/emf": ["emf"], "image/fits": ["fits"], "image/g3fax": ["g3"], "image/gif": ["gif"], "image/heic": ["heic"], "image/heic-sequence": ["heics"], "image/heif": ["heif"], "image/heif-sequence": ["heifs"], "image/hej2k": ["hej2"], "image/hsj2": ["hsj2"], "image/ief": ["ief"], "image/jls": ["jls"], "image/jp2": ["jp2", "jpg2"], "image/jpeg": ["jpeg", "jpg", "jpe"], "image/jph": ["jph"], "image/jphc": ["jhc"], "image/jpm": ["jpm"], "image/jpx": ["jpx", "jpf"], "image/jxr": ["jxr"], "image/jxra": ["jxra"], "image/jxrs": ["jxrs"], "image/jxs": ["jxs"], "image/jxsc": ["jxsc"], "image/jxsi": ["jxsi"], "image/jxss": ["jxss"], "image/ktx": ["ktx"], "image/ktx2": ["ktx2"], "image/png": ["png"], "image/sgi": ["sgi"], "image/svg+xml": ["svg", "svgz"], "image/t38": ["t38"], "image/tiff": ["tif", "tiff"], "image/tiff-fx": ["tfx"], "image/webp": ["webp"], "image/wmf": ["wmf"], "message/disposition-notification": ["disposition-notification"], "message/global": ["u8msg"], "message/global-delivery-status": ["u8dsn"], "message/global-disposition-notification": ["u8mdn"], "message/global-headers": ["u8hdr"], "message/rfc822": ["eml", "mime"], "model/3mf": ["3mf"], "model/gltf+json": ["gltf"], "model/gltf-binary": ["glb"], "model/iges": ["igs", "iges"], "model/mesh": ["msh", "mesh", "silo"], "model/mtl": ["mtl"], "model/obj": ["obj"], "model/step+xml": ["stpx"], "model/step+zip": ["stpz"], "model/step-xml+zip": ["stpxz"], "model/stl": ["stl"], "model/vrml": ["wrl", "vrml"], "model/x3d+binary": ["*x3db", "x3dbz"], "model/x3d+fastinfoset": ["x3db"], "model/x3d+vrml": ["*x3dv", "x3dvz"], "model/x3d+xml": ["x3d", "x3dz"], "model/x3d-vrml": ["x3dv"], "text/cache-manifest": ["appcache", "manifest"], "text/calendar": ["ics", "ifb"], "text/coffeescript": ["coffee", "litcoffee"], "text/css": ["css"], "text/csv": ["csv"], "text/html": ["html", "htm", "shtml"], "text/jade": ["jade"], "text/jsx": ["jsx"], "text/less": ["less"], "text/markdown": ["markdown", "md"], "text/mathml": ["mml"], "text/mdx": ["mdx"], "text/n3": ["n3"], "text/plain": ["txt", "text", "conf", "def", "list", "log", "in", "ini"], "text/richtext": ["rtx"], "text/rtf": ["*rtf"], "text/sgml": ["sgml", "sgm"], "text/shex": ["shex"], "text/slim": ["slim", "slm"], "text/spdx": ["spdx"], "text/stylus": ["stylus", "styl"], "text/tab-separated-values": ["tsv"], "text/troff": ["t", "tr", "roff", "man", "me", "ms"], "text/turtle": ["ttl"], "text/uri-list": ["uri", "uris", "urls"], "text/vcard": ["vcard"], "text/vtt": ["vtt"], "text/xml": ["*xml"], "text/yaml": ["yaml", "yml"], "video/3gpp": ["3gp", "3gpp"], "video/3gpp2": ["3g2"], "video/h261": ["h261"], "video/h263": ["h263"], "video/h264": ["h264"], "video/iso.segment": ["m4s"], "video/jpeg": ["jpgv"], "video/jpm": ["*jpm", "jpgm"], "video/mj2": ["mj2", "mjp2"], "video/mp2t": ["ts"], "video/mp4": ["mp4", "mp4v", "mpg4"], "video/mpeg": ["mpeg", "mpg", "mpe", "m1v", "m2v"], "video/ogg": ["ogv"], "video/quicktime": ["qt", "mov"], "video/webm": ["webm"] }, Kd = { "application/prs.cww": ["cww"], "application/vnd.1000minds.decision-model+xml": ["1km"], "application/vnd.3gpp.pic-bw-large": ["plb"], "application/vnd.3gpp.pic-bw-small": ["psb"], "application/vnd.3gpp.pic-bw-var": ["pvb"], "application/vnd.3gpp2.tcap": ["tcap"], "application/vnd.3m.post-it-notes": ["pwn"], "application/vnd.accpac.simply.aso": ["aso"], "application/vnd.accpac.simply.imp": ["imp"], "application/vnd.acucobol": ["acu"], "application/vnd.acucorp": ["atc", "acutc"], "application/vnd.adobe.air-application-installer-package+zip": ["air"], "application/vnd.adobe.formscentral.fcdt": ["fcdt"], "application/vnd.adobe.fxp": ["fxp", "fxpl"], "application/vnd.adobe.xdp+xml": ["xdp"], "application/vnd.adobe.xfdf": ["xfdf"], "application/vnd.ahead.space": ["ahead"], "application/vnd.airzip.filesecure.azf": ["azf"], "application/vnd.airzip.filesecure.azs": ["azs"], "application/vnd.amazon.ebook": ["azw"], "application/vnd.americandynamics.acc": ["acc"], "application/vnd.amiga.ami": ["ami"], "application/vnd.android.package-archive": ["apk"], "application/vnd.anser-web-certificate-issue-initiation": ["cii"], "application/vnd.anser-web-funds-transfer-initiation": ["fti"], "application/vnd.antix.game-component": ["atx"], "application/vnd.apple.installer+xml": ["mpkg"], "application/vnd.apple.keynote": ["key"], "application/vnd.apple.mpegurl": ["m3u8"], "application/vnd.apple.numbers": ["numbers"], "application/vnd.apple.pages": ["pages"], "application/vnd.apple.pkpass": ["pkpass"], "application/vnd.aristanetworks.swi": ["swi"], "application/vnd.astraea-software.iota": ["iota"], "application/vnd.audiograph": ["aep"], "application/vnd.balsamiq.bmml+xml": ["bmml"], "application/vnd.blueice.multipass": ["mpm"], "application/vnd.bmi": ["bmi"], "application/vnd.businessobjects": ["rep"], "application/vnd.chemdraw+xml": ["cdxml"], "application/vnd.chipnuts.karaoke-mmd": ["mmd"], "application/vnd.cinderella": ["cdy"], "application/vnd.citationstyles.style+xml": ["csl"], "application/vnd.claymore": ["cla"], "application/vnd.cloanto.rp9": ["rp9"], "application/vnd.clonk.c4group": ["c4g", "c4d", "c4f", "c4p", "c4u"], "application/vnd.cluetrust.cartomobile-config": ["c11amc"], "application/vnd.cluetrust.cartomobile-config-pkg": ["c11amz"], "application/vnd.commonspace": ["csp"], "application/vnd.contact.cmsg": ["cdbcmsg"], "application/vnd.cosmocaller": ["cmc"], "application/vnd.crick.clicker": ["clkx"], "application/vnd.crick.clicker.keyboard": ["clkk"], "application/vnd.crick.clicker.palette": ["clkp"], "application/vnd.crick.clicker.template": ["clkt"], "application/vnd.crick.clicker.wordbank": ["clkw"], "application/vnd.criticaltools.wbs+xml": ["wbs"], "application/vnd.ctc-posml": ["pml"], "application/vnd.cups-ppd": ["ppd"], "application/vnd.curl.car": ["car"], "application/vnd.curl.pcurl": ["pcurl"], "application/vnd.dart": ["dart"], "application/vnd.data-vision.rdz": ["rdz"], "application/vnd.dbf": ["dbf"], "application/vnd.dece.data": ["uvf", "uvvf", "uvd", "uvvd"], "application/vnd.dece.ttml+xml": ["uvt", "uvvt"], "application/vnd.dece.unspecified": ["uvx", "uvvx"], "application/vnd.dece.zip": ["uvz", "uvvz"], "application/vnd.denovo.fcselayout-link": ["fe_launch"], "application/vnd.dna": ["dna"], "application/vnd.dolby.mlp": ["mlp"], "application/vnd.dpgraph": ["dpg"], "application/vnd.dreamfactory": ["dfac"], "application/vnd.ds-keypoint": ["kpxx"], "application/vnd.dvb.ait": ["ait"], "application/vnd.dvb.service": ["svc"], "application/vnd.dynageo": ["geo"], "application/vnd.ecowin.chart": ["mag"], "application/vnd.enliven": ["nml"], "application/vnd.epson.esf": ["esf"], "application/vnd.epson.msf": ["msf"], "application/vnd.epson.quickanime": ["qam"], "application/vnd.epson.salt": ["slt"], "application/vnd.epson.ssf": ["ssf"], "application/vnd.eszigno3+xml": ["es3", "et3"], "application/vnd.ezpix-album": ["ez2"], "application/vnd.ezpix-package": ["ez3"], "application/vnd.fdf": ["fdf"], "application/vnd.fdsn.mseed": ["mseed"], "application/vnd.fdsn.seed": ["seed", "dataless"], "application/vnd.flographit": ["gph"], "application/vnd.fluxtime.clip": ["ftc"], "application/vnd.framemaker": ["fm", "frame", "maker", "book"], "application/vnd.frogans.fnc": ["fnc"], "application/vnd.frogans.ltf": ["ltf"], "application/vnd.fsc.weblaunch": ["fsc"], "application/vnd.fujitsu.oasys": ["oas"], "application/vnd.fujitsu.oasys2": ["oa2"], "application/vnd.fujitsu.oasys3": ["oa3"], "application/vnd.fujitsu.oasysgp": ["fg5"], "application/vnd.fujitsu.oasysprs": ["bh2"], "application/vnd.fujixerox.ddd": ["ddd"], "application/vnd.fujixerox.docuworks": ["xdw"], "application/vnd.fujixerox.docuworks.binder": ["xbd"], "application/vnd.fuzzysheet": ["fzs"], "application/vnd.genomatix.tuxedo": ["txd"], "application/vnd.geogebra.file": ["ggb"], "application/vnd.geogebra.tool": ["ggt"], "application/vnd.geometry-explorer": ["gex", "gre"], "application/vnd.geonext": ["gxt"], "application/vnd.geoplan": ["g2w"], "application/vnd.geospace": ["g3w"], "application/vnd.gmx": ["gmx"], "application/vnd.google-apps.document": ["gdoc"], "application/vnd.google-apps.presentation": ["gslides"], "application/vnd.google-apps.spreadsheet": ["gsheet"], "application/vnd.google-earth.kml+xml": ["kml"], "application/vnd.google-earth.kmz": ["kmz"], "application/vnd.grafeq": ["gqf", "gqs"], "application/vnd.groove-account": ["gac"], "application/vnd.groove-help": ["ghf"], "application/vnd.groove-identity-message": ["gim"], "application/vnd.groove-injector": ["grv"], "application/vnd.groove-tool-message": ["gtm"], "application/vnd.groove-tool-template": ["tpl"], "application/vnd.groove-vcard": ["vcg"], "application/vnd.hal+xml": ["hal"], "application/vnd.handheld-entertainment+xml": ["zmm"], "application/vnd.hbci": ["hbci"], "application/vnd.hhe.lesson-player": ["les"], "application/vnd.hp-hpgl": ["hpgl"], "application/vnd.hp-hpid": ["hpid"], "application/vnd.hp-hps": ["hps"], "application/vnd.hp-jlyt": ["jlt"], "application/vnd.hp-pcl": ["pcl"], "application/vnd.hp-pclxl": ["pclxl"], "application/vnd.hydrostatix.sof-data": ["sfd-hdstx"], "application/vnd.ibm.minipay": ["mpy"], "application/vnd.ibm.modcap": ["afp", "listafp", "list3820"], "application/vnd.ibm.rights-management": ["irm"], "application/vnd.ibm.secure-container": ["sc"], "application/vnd.iccprofile": ["icc", "icm"], "application/vnd.igloader": ["igl"], "application/vnd.immervision-ivp": ["ivp"], "application/vnd.immervision-ivu": ["ivu"], "application/vnd.insors.igm": ["igm"], "application/vnd.intercon.formnet": ["xpw", "xpx"], "application/vnd.intergeo": ["i2g"], "application/vnd.intu.qbo": ["qbo"], "application/vnd.intu.qfx": ["qfx"], "application/vnd.ipunplugged.rcprofile": ["rcprofile"], "application/vnd.irepository.package+xml": ["irp"], "application/vnd.is-xpr": ["xpr"], "application/vnd.isac.fcs": ["fcs"], "application/vnd.jam": ["jam"], "application/vnd.jcp.javame.midlet-rms": ["rms"], "application/vnd.jisp": ["jisp"], "application/vnd.joost.joda-archive": ["joda"], "application/vnd.kahootz": ["ktz", "ktr"], "application/vnd.kde.karbon": ["karbon"], "application/vnd.kde.kchart": ["chrt"], "application/vnd.kde.kformula": ["kfo"], "application/vnd.kde.kivio": ["flw"], "application/vnd.kde.kontour": ["kon"], "application/vnd.kde.kpresenter": ["kpr", "kpt"], "application/vnd.kde.kspread": ["ksp"], "application/vnd.kde.kword": ["kwd", "kwt"], "application/vnd.kenameaapp": ["htke"], "application/vnd.kidspiration": ["kia"], "application/vnd.kinar": ["kne", "knp"], "application/vnd.koan": ["skp", "skd", "skt", "skm"], "application/vnd.kodak-descriptor": ["sse"], "application/vnd.las.las+xml": ["lasxml"], "application/vnd.llamagraphics.life-balance.desktop": ["lbd"], "application/vnd.llamagraphics.life-balance.exchange+xml": ["lbe"], "application/vnd.lotus-1-2-3": ["123"], "application/vnd.lotus-approach": ["apr"], "application/vnd.lotus-freelance": ["pre"], "application/vnd.lotus-notes": ["nsf"], "application/vnd.lotus-organizer": ["org"], "application/vnd.lotus-screencam": ["scm"], "application/vnd.lotus-wordpro": ["lwp"], "application/vnd.macports.portpkg": ["portpkg"], "application/vnd.mapbox-vector-tile": ["mvt"], "application/vnd.mcd": ["mcd"], "application/vnd.medcalcdata": ["mc1"], "application/vnd.mediastation.cdkey": ["cdkey"], "application/vnd.mfer": ["mwf"], "application/vnd.mfmp": ["mfm"], "application/vnd.micrografx.flo": ["flo"], "application/vnd.micrografx.igx": ["igx"], "application/vnd.mif": ["mif"], "application/vnd.mobius.daf": ["daf"], "application/vnd.mobius.dis": ["dis"], "application/vnd.mobius.mbk": ["mbk"], "application/vnd.mobius.mqy": ["mqy"], "application/vnd.mobius.msl": ["msl"], "application/vnd.mobius.plc": ["plc"], "application/vnd.mobius.txf": ["txf"], "application/vnd.mophun.application": ["mpn"], "application/vnd.mophun.certificate": ["mpc"], "application/vnd.mozilla.xul+xml": ["xul"], "application/vnd.ms-artgalry": ["cil"], "application/vnd.ms-cab-compressed": ["cab"], "application/vnd.ms-excel": ["xls", "xlm", "xla", "xlc", "xlt", "xlw"], "application/vnd.ms-excel.addin.macroenabled.12": ["xlam"], "application/vnd.ms-excel.sheet.binary.macroenabled.12": ["xlsb"], "application/vnd.ms-excel.sheet.macroenabled.12": ["xlsm"], "application/vnd.ms-excel.template.macroenabled.12": ["xltm"], "application/vnd.ms-fontobject": ["eot"], "application/vnd.ms-htmlhelp": ["chm"], "application/vnd.ms-ims": ["ims"], "application/vnd.ms-lrm": ["lrm"], "application/vnd.ms-officetheme": ["thmx"], "application/vnd.ms-outlook": ["msg"], "application/vnd.ms-pki.seccat": ["cat"], "application/vnd.ms-pki.stl": ["*stl"], "application/vnd.ms-powerpoint": ["ppt", "pps", "pot"], "application/vnd.ms-powerpoint.addin.macroenabled.12": ["ppam"], "application/vnd.ms-powerpoint.presentation.macroenabled.12": ["pptm"], "application/vnd.ms-powerpoint.slide.macroenabled.12": ["sldm"], "application/vnd.ms-powerpoint.slideshow.macroenabled.12": ["ppsm"], "application/vnd.ms-powerpoint.template.macroenabled.12": ["potm"], "application/vnd.ms-project": ["mpp", "mpt"], "application/vnd.ms-word.document.macroenabled.12": ["docm"], "application/vnd.ms-word.template.macroenabled.12": ["dotm"], "application/vnd.ms-works": ["wps", "wks", "wcm", "wdb"], "application/vnd.ms-wpl": ["wpl"], "application/vnd.ms-xpsdocument": ["xps"], "application/vnd.mseq": ["mseq"], "application/vnd.musician": ["mus"], "application/vnd.muvee.style": ["msty"], "application/vnd.mynfc": ["taglet"], "application/vnd.neurolanguage.nlu": ["nlu"], "application/vnd.nitf": ["ntf", "nitf"], "application/vnd.noblenet-directory": ["nnd"], "application/vnd.noblenet-sealer": ["nns"], "application/vnd.noblenet-web": ["nnw"], "application/vnd.nokia.n-gage.ac+xml": ["*ac"], "application/vnd.nokia.n-gage.data": ["ngdat"], "application/vnd.nokia.n-gage.symbian.install": ["n-gage"], "application/vnd.nokia.radio-preset": ["rpst"], "application/vnd.nokia.radio-presets": ["rpss"], "application/vnd.novadigm.edm": ["edm"], "application/vnd.novadigm.edx": ["edx"], "application/vnd.novadigm.ext": ["ext"], "application/vnd.oasis.opendocument.chart": ["odc"], "application/vnd.oasis.opendocument.chart-template": ["otc"], "application/vnd.oasis.opendocument.database": ["odb"], "application/vnd.oasis.opendocument.formula": ["odf"], "application/vnd.oasis.opendocument.formula-template": ["odft"], "application/vnd.oasis.opendocument.graphics": ["odg"], "application/vnd.oasis.opendocument.graphics-template": ["otg"], "application/vnd.oasis.opendocument.image": ["odi"], "application/vnd.oasis.opendocument.image-template": ["oti"], "application/vnd.oasis.opendocument.presentation": ["odp"], "application/vnd.oasis.opendocument.presentation-template": ["otp"], "application/vnd.oasis.opendocument.spreadsheet": ["ods"], "application/vnd.oasis.opendocument.spreadsheet-template": ["ots"], "application/vnd.oasis.opendocument.text": ["odt"], "application/vnd.oasis.opendocument.text-master": ["odm"], "application/vnd.oasis.opendocument.text-template": ["ott"], "application/vnd.oasis.opendocument.text-web": ["oth"], "application/vnd.olpc-sugar": ["xo"], "application/vnd.oma.dd2+xml": ["dd2"], "application/vnd.openblox.game+xml": ["obgx"], "application/vnd.openofficeorg.extension": ["oxt"], "application/vnd.openstreetmap.data+xml": ["osm"], "application/vnd.openxmlformats-officedocument.presentationml.presentation": ["pptx"], "application/vnd.openxmlformats-officedocument.presentationml.slide": ["sldx"], "application/vnd.openxmlformats-officedocument.presentationml.slideshow": ["ppsx"], "application/vnd.openxmlformats-officedocument.presentationml.template": ["potx"], "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet": ["xlsx"], "application/vnd.openxmlformats-officedocument.spreadsheetml.template": ["xltx"], "application/vnd.openxmlformats-officedocument.wordprocessingml.document": ["docx"], "application/vnd.openxmlformats-officedocument.wordprocessingml.template": ["dotx"], "application/vnd.osgeo.mapguide.package": ["mgp"], "application/vnd.osgi.dp": ["dp"], "application/vnd.osgi.subsystem": ["esa"], "application/vnd.palm": ["pdb", "pqa", "oprc"], "application/vnd.pawaafile": ["paw"], "application/vnd.pg.format": ["str"], "application/vnd.pg.osasli": ["ei6"], "application/vnd.picsel": ["efif"], "application/vnd.pmi.widget": ["wg"], "application/vnd.pocketlearn": ["plf"], "application/vnd.powerbuilder6": ["pbd"], "application/vnd.previewsystems.box": ["box"], "application/vnd.proteus.magazine": ["mgz"], "application/vnd.publishare-delta-tree": ["qps"], "application/vnd.pvi.ptid1": ["ptid"], "application/vnd.quark.quarkxpress": ["qxd", "qxt", "qwd", "qwt", "qxl", "qxb"], "application/vnd.rar": ["rar"], "application/vnd.realvnc.bed": ["bed"], "application/vnd.recordare.musicxml": ["mxl"], "application/vnd.recordare.musicxml+xml": ["musicxml"], "application/vnd.rig.cryptonote": ["cryptonote"], "application/vnd.rim.cod": ["cod"], "application/vnd.rn-realmedia": ["rm"], "application/vnd.rn-realmedia-vbr": ["rmvb"], "application/vnd.route66.link66+xml": ["link66"], "application/vnd.sailingtracker.track": ["st"], "application/vnd.seemail": ["see"], "application/vnd.sema": ["sema"], "application/vnd.semd": ["semd"], "application/vnd.semf": ["semf"], "application/vnd.shana.informed.formdata": ["ifm"], "application/vnd.shana.informed.formtemplate": ["itp"], "application/vnd.shana.informed.interchange": ["iif"], "application/vnd.shana.informed.package": ["ipk"], "application/vnd.simtech-mindmapper": ["twd", "twds"], "application/vnd.smaf": ["mmf"], "application/vnd.smart.teacher": ["teacher"], "application/vnd.software602.filler.form+xml": ["fo"], "application/vnd.solent.sdkm+xml": ["sdkm", "sdkd"], "application/vnd.spotfire.dxp": ["dxp"], "application/vnd.spotfire.sfs": ["sfs"], "application/vnd.stardivision.calc": ["sdc"], "application/vnd.stardivision.draw": ["sda"], "application/vnd.stardivision.impress": ["sdd"], "application/vnd.stardivision.math": ["smf"], "application/vnd.stardivision.writer": ["sdw", "vor"], "application/vnd.stardivision.writer-global": ["sgl"], "application/vnd.stepmania.package": ["smzip"], "application/vnd.stepmania.stepchart": ["sm"], "application/vnd.sun.wadl+xml": ["wadl"], "application/vnd.sun.xml.calc": ["sxc"], "application/vnd.sun.xml.calc.template": ["stc"], "application/vnd.sun.xml.draw": ["sxd"], "application/vnd.sun.xml.draw.template": ["std"], "application/vnd.sun.xml.impress": ["sxi"], "application/vnd.sun.xml.impress.template": ["sti"], "application/vnd.sun.xml.math": ["sxm"], "application/vnd.sun.xml.writer": ["sxw"], "application/vnd.sun.xml.writer.global": ["sxg"], "application/vnd.sun.xml.writer.template": ["stw"], "application/vnd.sus-calendar": ["sus", "susp"], "application/vnd.svd": ["svd"], "application/vnd.symbian.install": ["sis", "sisx"], "application/vnd.syncml+xml": ["xsm"], "application/vnd.syncml.dm+wbxml": ["bdm"], "application/vnd.syncml.dm+xml": ["xdm"], "application/vnd.syncml.dmddf+xml": ["ddf"], "application/vnd.tao.intent-module-archive": ["tao"], "application/vnd.tcpdump.pcap": ["pcap", "cap", "dmp"], "application/vnd.tmobile-livetv": ["tmo"], "application/vnd.trid.tpt": ["tpt"], "application/vnd.triscape.mxs": ["mxs"], "application/vnd.trueapp": ["tra"], "application/vnd.ufdl": ["ufd", "ufdl"], "application/vnd.uiq.theme": ["utz"], "application/vnd.umajin": ["umj"], "application/vnd.unity": ["unityweb"], "application/vnd.uoml+xml": ["uoml"], "application/vnd.vcx": ["vcx"], "application/vnd.visio": ["vsd", "vst", "vss", "vsw"], "application/vnd.visionary": ["vis"], "application/vnd.vsf": ["vsf"], "application/vnd.wap.wbxml": ["wbxml"], "application/vnd.wap.wmlc": ["wmlc"], "application/vnd.wap.wmlscriptc": ["wmlsc"], "application/vnd.webturbo": ["wtb"], "application/vnd.wolfram.player": ["nbp"], "application/vnd.wordperfect": ["wpd"], "application/vnd.wqd": ["wqd"], "application/vnd.wt.stf": ["stf"], "application/vnd.xara": ["xar"], "application/vnd.xfdl": ["xfdl"], "application/vnd.yamaha.hv-dic": ["hvd"], "application/vnd.yamaha.hv-script": ["hvs"], "application/vnd.yamaha.hv-voice": ["hvp"], "application/vnd.yamaha.openscoreformat": ["osf"], "application/vnd.yamaha.openscoreformat.osfpvg+xml": ["osfpvg"], "application/vnd.yamaha.smaf-audio": ["saf"], "application/vnd.yamaha.smaf-phrase": ["spf"], "application/vnd.yellowriver-custom-menu": ["cmp"], "application/vnd.zul": ["zir", "zirz"], "application/vnd.zzazz.deck+xml": ["zaz"], "application/x-7z-compressed": ["7z"], "application/x-abiword": ["abw"], "application/x-ace-compressed": ["ace"], "application/x-apple-diskimage": ["*dmg"], "application/x-arj": ["arj"], "application/x-authorware-bin": ["aab", "x32", "u32", "vox"], "application/x-authorware-map": ["aam"], "application/x-authorware-seg": ["aas"], "application/x-bcpio": ["bcpio"], "application/x-bdoc": ["*bdoc"], "application/x-bittorrent": ["torrent"], "application/x-blorb": ["blb", "blorb"], "application/x-bzip": ["bz"], "application/x-bzip2": ["bz2", "boz"], "application/x-cbr": ["cbr", "cba", "cbt", "cbz", "cb7"], "application/x-cdlink": ["vcd"], "application/x-cfs-compressed": ["cfs"], "application/x-chat": ["chat"], "application/x-chess-pgn": ["pgn"], "application/x-chrome-extension": ["crx"], "application/x-cocoa": ["cco"], "application/x-conference": ["nsc"], "application/x-cpio": ["cpio"], "application/x-csh": ["csh"], "application/x-debian-package": ["*deb", "udeb"], "application/x-dgc-compressed": ["dgc"], "application/x-director": ["dir", "dcr", "dxr", "cst", "cct", "cxt", "w3d", "fgd", "swa"], "application/x-doom": ["wad"], "application/x-dtbncx+xml": ["ncx"], "application/x-dtbook+xml": ["dtb"], "application/x-dtbresource+xml": ["res"], "application/x-dvi": ["dvi"], "application/x-envoy": ["evy"], "application/x-eva": ["eva"], "application/x-font-bdf": ["bdf"], "application/x-font-ghostscript": ["gsf"], "application/x-font-linux-psf": ["psf"], "application/x-font-pcf": ["pcf"], "application/x-font-snf": ["snf"], "application/x-font-type1": ["pfa", "pfb", "pfm", "afm"], "application/x-freearc": ["arc"], "application/x-futuresplash": ["spl"], "application/x-gca-compressed": ["gca"], "application/x-glulx": ["ulx"], "application/x-gnumeric": ["gnumeric"], "application/x-gramps-xml": ["gramps"], "application/x-gtar": ["gtar"], "application/x-hdf": ["hdf"], "application/x-httpd-php": ["php"], "application/x-install-instructions": ["install"], "application/x-iso9660-image": ["*iso"], "application/x-iwork-keynote-sffkey": ["*key"], "application/x-iwork-numbers-sffnumbers": ["*numbers"], "application/x-iwork-pages-sffpages": ["*pages"], "application/x-java-archive-diff": ["jardiff"], "application/x-java-jnlp-file": ["jnlp"], "application/x-keepass2": ["kdbx"], "application/x-latex": ["latex"], "application/x-lua-bytecode": ["luac"], "application/x-lzh-compressed": ["lzh", "lha"], "application/x-makeself": ["run"], "application/x-mie": ["mie"], "application/x-mobipocket-ebook": ["prc", "mobi"], "application/x-ms-application": ["application"], "application/x-ms-shortcut": ["lnk"], "application/x-ms-wmd": ["wmd"], "application/x-ms-wmz": ["wmz"], "application/x-ms-xbap": ["xbap"], "application/x-msaccess": ["mdb"], "application/x-msbinder": ["obd"], "application/x-mscardfile": ["crd"], "application/x-msclip": ["clp"], "application/x-msdos-program": ["*exe"], "application/x-msdownload": ["*exe", "*dll", "com", "bat", "*msi"], "application/x-msmediaview": ["mvb", "m13", "m14"], "application/x-msmetafile": ["*wmf", "*wmz", "*emf", "emz"], "application/x-msmoney": ["mny"], "application/x-mspublisher": ["pub"], "application/x-msschedule": ["scd"], "application/x-msterminal": ["trm"], "application/x-mswrite": ["wri"], "application/x-netcdf": ["nc", "cdf"], "application/x-ns-proxy-autoconfig": ["pac"], "application/x-nzb": ["nzb"], "application/x-perl": ["pl", "pm"], "application/x-pilot": ["*prc", "*pdb"], "application/x-pkcs12": ["p12", "pfx"], "application/x-pkcs7-certificates": ["p7b", "spc"], "application/x-pkcs7-certreqresp": ["p7r"], "application/x-rar-compressed": ["*rar"], "application/x-redhat-package-manager": ["rpm"], "application/x-research-info-systems": ["ris"], "application/x-sea": ["sea"], "application/x-sh": ["sh"], "application/x-shar": ["shar"], "application/x-shockwave-flash": ["swf"], "application/x-silverlight-app": ["xap"], "application/x-sql": ["sql"], "application/x-stuffit": ["sit"], "application/x-stuffitx": ["sitx"], "application/x-subrip": ["srt"], "application/x-sv4cpio": ["sv4cpio"], "application/x-sv4crc": ["sv4crc"], "application/x-t3vm-image": ["t3"], "application/x-tads": ["gam"], "application/x-tar": ["tar"], "application/x-tcl": ["tcl", "tk"], "application/x-tex": ["tex"], "application/x-tex-tfm": ["tfm"], "application/x-texinfo": ["texinfo", "texi"], "application/x-tgif": ["*obj"], "application/x-ustar": ["ustar"], "application/x-virtualbox-hdd": ["hdd"], "application/x-virtualbox-ova": ["ova"], "application/x-virtualbox-ovf": ["ovf"], "application/x-virtualbox-vbox": ["vbox"], "application/x-virtualbox-vbox-extpack": ["vbox-extpack"], "application/x-virtualbox-vdi": ["vdi"], "application/x-virtualbox-vhd": ["vhd"], "application/x-virtualbox-vmdk": ["vmdk"], "application/x-wais-source": ["src"], "application/x-web-app-manifest+json": ["webapp"], "application/x-x509-ca-cert": ["der", "crt", "pem"], "application/x-xfig": ["fig"], "application/x-xliff+xml": ["*xlf"], "application/x-xpinstall": ["xpi"], "application/x-xz": ["xz"], "application/x-zmachine": ["z1", "z2", "z3", "z4", "z5", "z6", "z7", "z8"], "audio/vnd.dece.audio": ["uva", "uvva"], "audio/vnd.digital-winds": ["eol"], "audio/vnd.dra": ["dra"], "audio/vnd.dts": ["dts"], "audio/vnd.dts.hd": ["dtshd"], "audio/vnd.lucent.voice": ["lvp"], "audio/vnd.ms-playready.media.pya": ["pya"], "audio/vnd.nuera.ecelp4800": ["ecelp4800"], "audio/vnd.nuera.ecelp7470": ["ecelp7470"], "audio/vnd.nuera.ecelp9600": ["ecelp9600"], "audio/vnd.rip": ["rip"], "audio/x-aac": ["aac"], "audio/x-aiff": ["aif", "aiff", "aifc"], "audio/x-caf": ["caf"], "audio/x-flac": ["flac"], "audio/x-m4a": ["*m4a"], "audio/x-matroska": ["mka"], "audio/x-mpegurl": ["m3u"], "audio/x-ms-wax": ["wax"], "audio/x-ms-wma": ["wma"], "audio/x-pn-realaudio": ["ram", "ra"], "audio/x-pn-realaudio-plugin": ["rmp"], "audio/x-realaudio": ["*ra"], "audio/x-wav": ["*wav"], "chemical/x-cdx": ["cdx"], "chemical/x-cif": ["cif"], "chemical/x-cmdf": ["cmdf"], "chemical/x-cml": ["cml"], "chemical/x-csml": ["csml"], "chemical/x-xyz": ["xyz"], "image/prs.btif": ["btif"], "image/prs.pti": ["pti"], "image/vnd.adobe.photoshop": ["psd"], "image/vnd.airzip.accelerator.azv": ["azv"], "image/vnd.dece.graphic": ["uvi", "uvvi", "uvg", "uvvg"], "image/vnd.djvu": ["djvu", "djv"], "image/vnd.dvb.subtitle": ["*sub"], "image/vnd.dwg": ["dwg"], "image/vnd.dxf": ["dxf"], "image/vnd.fastbidsheet": ["fbs"], "image/vnd.fpx": ["fpx"], "image/vnd.fst": ["fst"], "image/vnd.fujixerox.edmics-mmr": ["mmr"], "image/vnd.fujixerox.edmics-rlc": ["rlc"], "image/vnd.microsoft.icon": ["ico"], "image/vnd.ms-dds": ["dds"], "image/vnd.ms-modi": ["mdi"], "image/vnd.ms-photo": ["wdp"], "image/vnd.net-fpx": ["npx"], "image/vnd.pco.b16": ["b16"], "image/vnd.tencent.tap": ["tap"], "image/vnd.valve.source.texture": ["vtf"], "image/vnd.wap.wbmp": ["wbmp"], "image/vnd.xiff": ["xif"], "image/vnd.zbrush.pcx": ["pcx"], "image/x-3ds": ["3ds"], "image/x-cmu-raster": ["ras"], "image/x-cmx": ["cmx"], "image/x-freehand": ["fh", "fhc", "fh4", "fh5", "fh7"], "image/x-icon": ["*ico"], "image/x-jng": ["jng"], "image/x-mrsid-image": ["sid"], "image/x-ms-bmp": ["*bmp"], "image/x-pcx": ["*pcx"], "image/x-pict": ["pic", "pct"], "image/x-portable-anymap": ["pnm"], "image/x-portable-bitmap": ["pbm"], "image/x-portable-graymap": ["pgm"], "image/x-portable-pixmap": ["ppm"], "image/x-rgb": ["rgb"], "image/x-tga": ["tga"], "image/x-xbitmap": ["xbm"], "image/x-xpixmap": ["xpm"], "image/x-xwindowdump": ["xwd"], "message/vnd.wfa.wsc": ["wsc"], "model/vnd.collada+xml": ["dae"], "model/vnd.dwf": ["dwf"], "model/vnd.gdl": ["gdl"], "model/vnd.gtw": ["gtw"], "model/vnd.mts": ["mts"], "model/vnd.opengex": ["ogex"], "model/vnd.parasolid.transmit.binary": ["x_b"], "model/vnd.parasolid.transmit.text": ["x_t"], "model/vnd.sap.vds": ["vds"], "model/vnd.usdz+zip": ["usdz"], "model/vnd.valve.source.compiled-map": ["bsp"], "model/vnd.vtu": ["vtu"], "text/prs.lines.tag": ["dsc"], "text/vnd.curl": ["curl"], "text/vnd.curl.dcurl": ["dcurl"], "text/vnd.curl.mcurl": ["mcurl"], "text/vnd.curl.scurl": ["scurl"], "text/vnd.dvb.subtitle": ["sub"], "text/vnd.fly": ["fly"], "text/vnd.fmi.flexstor": ["flx"], "text/vnd.graphviz": ["gv"], "text/vnd.in3d.3dml": ["3dml"], "text/vnd.in3d.spot": ["spot"], "text/vnd.sun.j2me.app-descriptor": ["jad"], "text/vnd.wap.wml": ["wml"], "text/vnd.wap.wmlscript": ["wmls"], "text/x-asm": ["s", "asm"], "text/x-c": ["c", "cc", "cxx", "cpp", "h", "hh", "dic"], "text/x-component": ["htc"], "text/x-fortran": ["f", "for", "f77", "f90"], "text/x-handlebars-template": ["hbs"], "text/x-java-source": ["java"], "text/x-lua": ["lua"], "text/x-markdown": ["mkd"], "text/x-nfo": ["nfo"], "text/x-opml": ["opml"], "text/x-org": ["*org"], "text/x-pascal": ["p", "pas"], "text/x-processing": ["pde"], "text/x-sass": ["sass"], "text/x-scss": ["scss"], "text/x-setext": ["etx"], "text/x-sfv": ["sfv"], "text/x-suse-ymp": ["ymp"], "text/x-uuencode": ["uu"], "text/x-vcalendar": ["vcs"], "text/x-vcard": ["vcf"], "video/vnd.dece.hd": ["uvh", "uvvh"], "video/vnd.dece.mobile": ["uvm", "uvvm"], "video/vnd.dece.pd": ["uvp", "uvvp"], "video/vnd.dece.sd": ["uvs", "uvvs"], "video/vnd.dece.video": ["uvv", "uvvv"], "video/vnd.dvb.file": ["dvb"], "video/vnd.fvt": ["fvt"], "video/vnd.mpegurl": ["mxu", "m4u"], "video/vnd.ms-playready.media.pyv": ["pyv"], "video/vnd.uvvu.mp4": ["uvu", "uvvu"], "video/vnd.vivo": ["viv"], "video/x-f4v": ["f4v"], "video/x-fli": ["fli"], "video/x-flv": ["flv"], "video/x-m4v": ["m4v"], "video/x-matroska": ["mkv", "mk3d", "mks"], "video/x-mng": ["mng"], "video/x-ms-asf": ["asf", "asx"], "video/x-ms-vob": ["vob"], "video/x-ms-wm": ["wm"], "video/x-ms-wmv": ["wmv"], "video/x-ms-wmx": ["wmx"], "video/x-ms-wvx": ["wvx"], "video/x-msvideo": ["avi"], "video/x-sgi-movie": ["movie"], "video/x-smv": ["smv"], "x-conference/x-cooltalk": ["ice"] };
|
|
11849
|
+
let Jd = Gd;
|
|
11850
|
+
var Qd = new Jd(Vd, Kd);
|
|
11851
|
+
const Zd = /* @__PURE__ */ zr(Qd), tr = window.FileReader_native ?? window.FileReader, nr = function(b) {
|
|
11829
11852
|
let M = b.file, p = (b == null ? void 0 : b.maxWidth) ?? 1080, o = (b == null ? void 0 : b.maxHeigth) ?? 1920, e = new tr(), z = new window.Image(), n = document.createElement("canvas"), c = function() {
|
|
11830
11853
|
let i = z.width, r = z.height;
|
|
11831
11854
|
for (; i > p || r > o; )
|
|
@@ -11862,32 +11885,32 @@ const Qd = /* @__PURE__ */ zr(Jd), tr = window.FileReader_native ?? window.FileR
|
|
|
11862
11885
|
return p.some(
|
|
11863
11886
|
(n) => n.every((c, i) => c === z[i])
|
|
11864
11887
|
);
|
|
11865
|
-
},
|
|
11888
|
+
}, $d = async function(b, M = null) {
|
|
11866
11889
|
let p = M ?? b.name.slice(b.name.lastIndexOf(".")), o;
|
|
11867
11890
|
return await cr(b) ? o = await nr({
|
|
11868
11891
|
file: b,
|
|
11869
11892
|
maxWidth: 1e3,
|
|
11870
11893
|
maxHeigth: 1900
|
|
11871
|
-
}) : o = await
|
|
11894
|
+
}) : o = await bl(b), o = o.split(",")[1], {
|
|
11872
11895
|
file: o,
|
|
11873
11896
|
extension: p,
|
|
11874
11897
|
type: b.type
|
|
11875
11898
|
};
|
|
11876
|
-
},
|
|
11899
|
+
}, bl = (b) => new Promise((M, p) => {
|
|
11877
11900
|
const o = new tr();
|
|
11878
11901
|
o.readAsDataURL(b), o.onload = () => M(o.result), o.onerror = (e) => p(e);
|
|
11879
|
-
}),
|
|
11902
|
+
}), Ml = function(b, M = "application/pdf") {
|
|
11880
11903
|
let p;
|
|
11881
11904
|
b.split(",")[1] ? (M = b.split(",")[0].split(":")[1].split(";")[0], p = b.split(",")[1]) : p = b;
|
|
11882
11905
|
let o = atob(p), e = new window.ArrayBuffer(o.length), z = new window.Uint8Array(e);
|
|
11883
11906
|
for (let c = 0; c < o.length; c++)
|
|
11884
11907
|
z[c] = o.charCodeAt(c);
|
|
11885
11908
|
return new window.Blob([z], { type: M });
|
|
11886
|
-
},
|
|
11909
|
+
}, pl = function(b, M = "document") {
|
|
11887
11910
|
new window.Blob([b], {
|
|
11888
11911
|
type: b.type
|
|
11889
11912
|
});
|
|
11890
|
-
let p =
|
|
11913
|
+
let p = Zd.getExtension(b.type);
|
|
11891
11914
|
if (M = M + "." + p, window.cordova && cordova.platformId !== "browser")
|
|
11892
11915
|
ar(M, b);
|
|
11893
11916
|
else {
|
|
@@ -11948,15 +11971,15 @@ const Qd = /* @__PURE__ */ zr(Jd), tr = window.FileReader_native ?? window.FileR
|
|
|
11948
11971
|
}
|
|
11949
11972
|
);
|
|
11950
11973
|
}) : saveAs(M, b);
|
|
11951
|
-
},
|
|
11974
|
+
}, ol = function(b) {
|
|
11952
11975
|
let M = URL.createObjectURL(b);
|
|
11953
11976
|
window.cordova && cordova.platformId !== "browser" ? ar("Fichier", b) : window.open(M, "_blank");
|
|
11954
11977
|
};
|
|
11955
11978
|
Zp.add(s4, O4, i4, r4);
|
|
11956
|
-
const
|
|
11979
|
+
const el = {
|
|
11957
11980
|
name: "PhotoComponent",
|
|
11958
11981
|
components: {
|
|
11959
|
-
AmsomModal:
|
|
11982
|
+
AmsomModal: y4,
|
|
11960
11983
|
FontAwesomeIcon: $p
|
|
11961
11984
|
},
|
|
11962
11985
|
props: {
|
|
@@ -12018,24 +12041,24 @@ const ol = {
|
|
|
12018
12041
|
this.imagesLimit !== -1 && (M = Array.from(M), M = M.slice(0, this.imagesLimit));
|
|
12019
12042
|
for (let p of M)
|
|
12020
12043
|
cr(p) && nr({ file: p, maxWidth: this.maxWidth, maxHeigth: this.maxHeigth }).then((o) => {
|
|
12021
|
-
|
|
12044
|
+
$d(Ml(o), p.type.split("/")[1]).then((e) => {
|
|
12022
12045
|
e.nomFichier = p.name, this.$emit("update:images", [...this.images, e]);
|
|
12023
12046
|
});
|
|
12024
12047
|
});
|
|
12025
12048
|
}
|
|
12026
12049
|
}
|
|
12027
12050
|
}
|
|
12028
|
-
},
|
|
12051
|
+
}, zl = { class: "border border-1 border-grey rounded-4 p-2 d-flex align-items-center" }, tl = ["disabled"], nl = ["capture"], cl = {
|
|
12029
12052
|
key: 0,
|
|
12030
12053
|
class: "d-flex overflow-x-auto w-100"
|
|
12031
|
-
},
|
|
12054
|
+
}, al = ["onClick"], il = ["src", "alt"], Ol = {
|
|
12032
12055
|
key: 1,
|
|
12033
12056
|
class: "fs-7"
|
|
12034
|
-
},
|
|
12035
|
-
function
|
|
12057
|
+
}, rl = { class: "row w-100 mx-auto" }, sl = { class: "col-12 mb-3" }, Al = ["src", "alt"], dl = { class: "col-12 d-flex justify-content-center" };
|
|
12058
|
+
function ll(b, M, p, o, e, z) {
|
|
12036
12059
|
const n = zb("font-awesome-icon"), c = zb("amsom-modal");
|
|
12037
|
-
return
|
|
12038
|
-
|
|
12060
|
+
return C0(), H0("div", zl, [
|
|
12061
|
+
j0("button", {
|
|
12039
12062
|
type: "button",
|
|
12040
12063
|
class: "btn rounded-4 me-1 d-flex justify-content-center align-items-center",
|
|
12041
12064
|
style: IM({
|
|
@@ -12053,7 +12076,7 @@ function dl(b, M, p, o, e, z) {
|
|
|
12053
12076
|
size: "lg",
|
|
12054
12077
|
class: "text-white"
|
|
12055
12078
|
}),
|
|
12056
|
-
p.capture === "file" ? (
|
|
12079
|
+
p.capture === "file" ? (C0(), H0("input", {
|
|
12057
12080
|
key: 0,
|
|
12058
12081
|
id: "file",
|
|
12059
12082
|
ref: "fileInput",
|
|
@@ -12063,7 +12086,7 @@ function dl(b, M, p, o, e, z) {
|
|
|
12063
12086
|
style: { display: "none" },
|
|
12064
12087
|
multiple: "",
|
|
12065
12088
|
onInput: M[0] || (M[0] = (...i) => z.getDataFiles && z.getDataFiles(...i))
|
|
12066
|
-
}, null, 544)) : (
|
|
12089
|
+
}, null, 544)) : (C0(), H0("input", {
|
|
12067
12090
|
key: 1,
|
|
12068
12091
|
id: "file",
|
|
12069
12092
|
ref: "fileInput",
|
|
@@ -12074,10 +12097,10 @@ function dl(b, M, p, o, e, z) {
|
|
|
12074
12097
|
multiple: "",
|
|
12075
12098
|
capture: p.capture,
|
|
12076
12099
|
onInput: M[1] || (M[1] = (...i) => z.getDataFiles && z.getDataFiles(...i))
|
|
12077
|
-
}, null, 40,
|
|
12078
|
-
], 12,
|
|
12079
|
-
p.images.length > 0 ? (
|
|
12080
|
-
(
|
|
12100
|
+
}, null, 40, nl))
|
|
12101
|
+
], 12, tl),
|
|
12102
|
+
p.images.length > 0 ? (C0(), H0("div", cl, [
|
|
12103
|
+
(C0(!0), H0(N2, null, tM(p.images, (i) => (C0(), H0("button", {
|
|
12081
12104
|
key: i,
|
|
12082
12105
|
type: "button",
|
|
12083
12106
|
class: "btn p-0 mx-1 rounded-1",
|
|
@@ -12089,14 +12112,14 @@ function dl(b, M, p, o, e, z) {
|
|
|
12089
12112
|
}),
|
|
12090
12113
|
onClick: (r) => z.openPhoto(i)
|
|
12091
12114
|
}, [
|
|
12092
|
-
|
|
12115
|
+
j0("img", {
|
|
12093
12116
|
src: "data:" + (i == null ? void 0 : i.type) + ";base64," + (i == null ? void 0 : i.file),
|
|
12094
12117
|
class: "h-100 w-100 rounded-1",
|
|
12095
12118
|
alt: i == null ? void 0 : i.nomFichier
|
|
12096
|
-
}, null, 8,
|
|
12097
|
-
], 12,
|
|
12098
|
-
])) : (
|
|
12099
|
-
e.showModal ? (
|
|
12119
|
+
}, null, 8, il)
|
|
12120
|
+
], 12, al))), 128))
|
|
12121
|
+
])) : (C0(), H0("div", Ol, " Ajouter une image ")),
|
|
12122
|
+
e.showModal ? (C0(), PM(c, {
|
|
12100
12123
|
key: 2,
|
|
12101
12124
|
size: "sm",
|
|
12102
12125
|
"close-option": "",
|
|
@@ -12105,16 +12128,16 @@ function dl(b, M, p, o, e, z) {
|
|
|
12105
12128
|
default: Xt(() => {
|
|
12106
12129
|
var i, r, d;
|
|
12107
12130
|
return [
|
|
12108
|
-
|
|
12109
|
-
|
|
12110
|
-
|
|
12131
|
+
j0("div", rl, [
|
|
12132
|
+
j0("div", sl, [
|
|
12133
|
+
j0("img", {
|
|
12111
12134
|
src: "data:" + ((i = p.images[e.selectedPhotoIndex]) == null ? void 0 : i.type) + ";base64," + ((r = p.images[e.selectedPhotoIndex]) == null ? void 0 : r.file),
|
|
12112
12135
|
alt: (d = p.images[e.selectedPhotoIndex]) == null ? void 0 : d.nomFichier,
|
|
12113
12136
|
class: "h-100 w-100"
|
|
12114
|
-
}, null, 8,
|
|
12137
|
+
}, null, 8, Al)
|
|
12115
12138
|
]),
|
|
12116
|
-
|
|
12117
|
-
|
|
12139
|
+
j0("div", dl, [
|
|
12140
|
+
j0("button", {
|
|
12118
12141
|
type: "button",
|
|
12119
12142
|
class: "btn btn-primary mx-1",
|
|
12120
12143
|
onClick: M[3] || (M[3] = (q) => z.changeIndex(0))
|
|
@@ -12124,7 +12147,7 @@ function dl(b, M, p, o, e, z) {
|
|
|
12124
12147
|
size: "lg"
|
|
12125
12148
|
})
|
|
12126
12149
|
]),
|
|
12127
|
-
|
|
12150
|
+
j0("button", {
|
|
12128
12151
|
type: "button",
|
|
12129
12152
|
class: "btn btn-primary mx-1",
|
|
12130
12153
|
onClick: M[4] || (M[4] = (q) => z.changeIndex(1))
|
|
@@ -12134,7 +12157,7 @@ function dl(b, M, p, o, e, z) {
|
|
|
12134
12157
|
size: "lg"
|
|
12135
12158
|
})
|
|
12136
12159
|
]),
|
|
12137
|
-
|
|
12160
|
+
j0("button", {
|
|
12138
12161
|
type: "button",
|
|
12139
12162
|
class: "btn btn-danger ms-auto",
|
|
12140
12163
|
onClick: M[5] || (M[5] = (...q) => z.deleteImage && z.deleteImage(...q))
|
|
@@ -12152,7 +12175,7 @@ function dl(b, M, p, o, e, z) {
|
|
|
12152
12175
|
}, 8, ["onClose"])) : o2("", !0)
|
|
12153
12176
|
]);
|
|
12154
12177
|
}
|
|
12155
|
-
const
|
|
12178
|
+
const qh = /* @__PURE__ */ dM(el, [["render", ll]]);
|
|
12156
12179
|
/*!
|
|
12157
12180
|
* vue-draggable-next v2.2.0
|
|
12158
12181
|
* (c) 2023 Anish George
|
|
@@ -12178,7 +12201,7 @@ function sM(b) {
|
|
|
12178
12201
|
for (var M = 1; M < arguments.length; M++) {
|
|
12179
12202
|
var p = arguments[M] != null ? arguments[M] : {};
|
|
12180
12203
|
M % 2 ? Ii(Object(p), !0).forEach(function(o) {
|
|
12181
|
-
|
|
12204
|
+
ql(b, o, p[o]);
|
|
12182
12205
|
}) : Object.getOwnPropertyDescriptors ? Object.defineProperties(b, Object.getOwnPropertyDescriptors(p)) : Ii(Object(p)).forEach(function(o) {
|
|
12183
12206
|
Object.defineProperty(b, o, Object.getOwnPropertyDescriptor(p, o));
|
|
12184
12207
|
});
|
|
@@ -12193,7 +12216,7 @@ function mt(b) {
|
|
|
12193
12216
|
return M && typeof Symbol == "function" && M.constructor === Symbol && M !== Symbol.prototype ? "symbol" : typeof M;
|
|
12194
12217
|
}, mt(b);
|
|
12195
12218
|
}
|
|
12196
|
-
function
|
|
12219
|
+
function ql(b, M, p) {
|
|
12197
12220
|
return M in b ? Object.defineProperty(b, M, {
|
|
12198
12221
|
value: p,
|
|
12199
12222
|
enumerable: !0,
|
|
@@ -12211,16 +12234,16 @@ function UM() {
|
|
|
12211
12234
|
return b;
|
|
12212
12235
|
}, UM.apply(this, arguments);
|
|
12213
12236
|
}
|
|
12214
|
-
function
|
|
12237
|
+
function fl(b, M) {
|
|
12215
12238
|
if (b == null) return {};
|
|
12216
12239
|
var p = {}, o = Object.keys(b), e, z;
|
|
12217
12240
|
for (z = 0; z < o.length; z++)
|
|
12218
12241
|
e = o[z], !(M.indexOf(e) >= 0) && (p[e] = b[e]);
|
|
12219
12242
|
return p;
|
|
12220
12243
|
}
|
|
12221
|
-
function
|
|
12244
|
+
function ul(b, M) {
|
|
12222
12245
|
if (b == null) return {};
|
|
12223
|
-
var p =
|
|
12246
|
+
var p = fl(b, M), o, e;
|
|
12224
12247
|
if (Object.getOwnPropertySymbols) {
|
|
12225
12248
|
var z = Object.getOwnPropertySymbols(b);
|
|
12226
12249
|
for (e = 0; e < z.length; e++)
|
|
@@ -12228,12 +12251,12 @@ function fl(b, M) {
|
|
|
12228
12251
|
}
|
|
12229
12252
|
return p;
|
|
12230
12253
|
}
|
|
12231
|
-
var
|
|
12254
|
+
var Wl = "1.14.0";
|
|
12232
12255
|
function CM(b) {
|
|
12233
12256
|
if (typeof window < "u" && window.navigator)
|
|
12234
12257
|
return !!/* @__PURE__ */ navigator.userAgent.match(b);
|
|
12235
12258
|
}
|
|
12236
|
-
var GM = CM(/(?:Trident.*rv[ :]?11\.|msie|iemobile|Windows Phone)/i), rz = CM(/Edge/i), Fi = CM(/firefox/i), Ke = CM(/safari/i) && !CM(/chrome/i) && !CM(/android/i), ir = CM(/iP(ad|od|hone)/i),
|
|
12259
|
+
var GM = CM(/(?:Trident.*rv[ :]?11\.|msie|iemobile|Windows Phone)/i), rz = CM(/Edge/i), Fi = CM(/firefox/i), Ke = CM(/safari/i) && !CM(/chrome/i) && !CM(/android/i), ir = CM(/iP(ad|od|hone)/i), hl = CM(/chrome/i) && CM(/android/i), Or = {
|
|
12237
12260
|
capture: !1,
|
|
12238
12261
|
passive: !1
|
|
12239
12262
|
};
|
|
@@ -12259,7 +12282,7 @@ function Et(b, M) {
|
|
|
12259
12282
|
return !1;
|
|
12260
12283
|
}
|
|
12261
12284
|
}
|
|
12262
|
-
function
|
|
12285
|
+
function ml(b) {
|
|
12263
12286
|
return b.host && b !== document && b.host.nodeType ? b.host : b.parentNode;
|
|
12264
12287
|
}
|
|
12265
12288
|
function eM(b, M, p, o) {
|
|
@@ -12269,7 +12292,7 @@ function eM(b, M, p, o) {
|
|
|
12269
12292
|
if (M != null && (M[0] === ">" ? b.parentNode === p && Et(b, M) : Et(b, M)) || o && b === p)
|
|
12270
12293
|
return b;
|
|
12271
12294
|
if (b === p) break;
|
|
12272
|
-
} while (b =
|
|
12295
|
+
} while (b = ml(b));
|
|
12273
12296
|
}
|
|
12274
12297
|
return null;
|
|
12275
12298
|
}
|
|
@@ -12384,7 +12407,7 @@ function Hi(b) {
|
|
|
12384
12407
|
} while (b !== o && (b = b.parentNode));
|
|
12385
12408
|
return [M, p];
|
|
12386
12409
|
}
|
|
12387
|
-
function
|
|
12410
|
+
function Rl(b, M) {
|
|
12388
12411
|
for (var p in b)
|
|
12389
12412
|
if (b.hasOwnProperty(p)) {
|
|
12390
12413
|
for (var o in M)
|
|
@@ -12407,7 +12430,7 @@ function up(b, M) {
|
|
|
12407
12430
|
while (p = p.parentNode);
|
|
12408
12431
|
return OM();
|
|
12409
12432
|
}
|
|
12410
|
-
function
|
|
12433
|
+
function gl(b, M) {
|
|
12411
12434
|
if (b && M)
|
|
12412
12435
|
for (var p in M)
|
|
12413
12436
|
M.hasOwnProperty(p) && (b[p] = M[p]);
|
|
@@ -12427,7 +12450,7 @@ function sr(b, M) {
|
|
|
12427
12450
|
}
|
|
12428
12451
|
};
|
|
12429
12452
|
}
|
|
12430
|
-
function
|
|
12453
|
+
function Ll() {
|
|
12431
12454
|
clearTimeout(Je), Je = void 0;
|
|
12432
12455
|
}
|
|
12433
12456
|
function Ar(b, M, p) {
|
|
@@ -12438,7 +12461,7 @@ function dr(b) {
|
|
|
12438
12461
|
return M && M.dom ? M.dom(b).cloneNode(!0) : p ? p(b).clone(!0)[0] : b.cloneNode(!0);
|
|
12439
12462
|
}
|
|
12440
12463
|
var eb = "Sortable" + (/* @__PURE__ */ new Date()).getTime();
|
|
12441
|
-
function
|
|
12464
|
+
function Nl() {
|
|
12442
12465
|
var b = [], M;
|
|
12443
12466
|
return {
|
|
12444
12467
|
captureAnimationState: function() {
|
|
@@ -12464,7 +12487,7 @@ function Ll() {
|
|
|
12464
12487
|
b.push(o);
|
|
12465
12488
|
},
|
|
12466
12489
|
removeAnimationState: function(o) {
|
|
12467
|
-
b.splice(
|
|
12490
|
+
b.splice(Rl(b, {
|
|
12468
12491
|
target: o
|
|
12469
12492
|
}), 1);
|
|
12470
12493
|
},
|
|
@@ -12478,7 +12501,7 @@ function Ll() {
|
|
|
12478
12501
|
b.forEach(function(c) {
|
|
12479
12502
|
var i = 0, r = c.target, d = r.fromRect, q = q2(r), W = r.prevFromRect, A = r.prevToRect, w = c.rect, v = Ko(r, !0);
|
|
12480
12503
|
v && (q.top -= v.f, q.left -= v.e), r.toRect = q, r.thisAnimationDuration && mc(W, q) && !mc(d, q) && // Make sure animatingRect is on line between toRect & fromRect
|
|
12481
|
-
(w.top - q.top) / (w.left - q.left) === (d.top - q.top) / (d.left - q.left) && (i =
|
|
12504
|
+
(w.top - q.top) / (w.left - q.left) === (d.top - q.top) / (d.left - q.left) && (i = yl(w, W, A, e.options)), mc(q, d) || (r.prevFromRect = d, r.prevToRect = q, i || (i = e.options.animation), e.animate(r, w, q, i)), i && (z = !0, n = Math.max(n, i), clearTimeout(r.animationResetTimer), r.animationResetTimer = setTimeout(function() {
|
|
12482
12505
|
r.animationTime = 0, r.prevFromRect = null, r.fromRect = null, r.prevToRect = null, r.thisAnimationDuration = null;
|
|
12483
12506
|
}, i), r.thisAnimationDuration = i);
|
|
12484
12507
|
}), clearTimeout(M), z ? M = setTimeout(function() {
|
|
@@ -12489,17 +12512,17 @@ function Ll() {
|
|
|
12489
12512
|
if (n) {
|
|
12490
12513
|
$0(o, "transition", ""), $0(o, "transform", "");
|
|
12491
12514
|
var c = Ko(this.el), i = c && c.a, r = c && c.d, d = (e.left - z.left) / (i || 1), q = (e.top - z.top) / (r || 1);
|
|
12492
|
-
o.animatingX = !!d, o.animatingY = !!q, $0(o, "transform", "translate3d(" + d + "px," + q + "px,0)"), this.forRepaintDummy =
|
|
12515
|
+
o.animatingX = !!d, o.animatingY = !!q, $0(o, "transform", "translate3d(" + d + "px," + q + "px,0)"), this.forRepaintDummy = vl(o), $0(o, "transition", "transform " + n + "ms" + (this.options.easing ? " " + this.options.easing : "")), $0(o, "transform", "translate3d(0,0,0)"), typeof o.animated == "number" && clearTimeout(o.animated), o.animated = setTimeout(function() {
|
|
12493
12516
|
$0(o, "transition", ""), $0(o, "transform", ""), o.animated = !1, o.animatingX = !1, o.animatingY = !1;
|
|
12494
12517
|
}, n);
|
|
12495
12518
|
}
|
|
12496
12519
|
}
|
|
12497
12520
|
};
|
|
12498
12521
|
}
|
|
12499
|
-
function
|
|
12522
|
+
function vl(b) {
|
|
12500
12523
|
return b.offsetWidth;
|
|
12501
12524
|
}
|
|
12502
|
-
function
|
|
12525
|
+
function yl(b, M, p, o) {
|
|
12503
12526
|
return Math.sqrt(Math.pow(M.top - b.top, 2) + Math.pow(M.left - b.left, 2)) / Math.sqrt(Math.pow(M.top - p.top, 2) + Math.pow(M.left - p.left, 2)) * o.animation;
|
|
12504
12527
|
}
|
|
12505
12528
|
var So = [], Rc = {
|
|
@@ -12554,7 +12577,7 @@ var So = [], Rc = {
|
|
|
12554
12577
|
}), e;
|
|
12555
12578
|
}
|
|
12556
12579
|
};
|
|
12557
|
-
function
|
|
12580
|
+
function Bl(b) {
|
|
12558
12581
|
var M = b.sortable, p = b.rootEl, o = b.name, e = b.targetEl, z = b.cloneEl, n = b.toEl, c = b.fromEl, i = b.oldIndex, r = b.newIndex, d = b.oldDraggableIndex, q = b.newDraggableIndex, W = b.originalEvent, A = b.putSortable, w = b.extraEventProperties;
|
|
12559
12582
|
if (M = M || p && p[eb], !!M) {
|
|
12560
12583
|
var v, _ = M.options, m = "on" + o.charAt(0).toUpperCase() + o.substr(1);
|
|
@@ -12568,8 +12591,8 @@ function yl(b) {
|
|
|
12568
12591
|
p && p.dispatchEvent(v), _[m] && _[m].call(M, v);
|
|
12569
12592
|
}
|
|
12570
12593
|
}
|
|
12571
|
-
var
|
|
12572
|
-
var o = arguments.length > 2 && arguments[2] !== void 0 ? arguments[2] : {}, e = o.evt, z =
|
|
12594
|
+
var wl = ["evt"], Y2 = function(M, p) {
|
|
12595
|
+
var o = arguments.length > 2 && arguments[2] !== void 0 ? arguments[2] : {}, e = o.evt, z = ul(o, wl);
|
|
12573
12596
|
sz.pluginEvent.bind(b1)(M, p, sM({
|
|
12574
12597
|
dragEl: x0,
|
|
12575
12598
|
parentEl: b2,
|
|
@@ -12605,7 +12628,7 @@ var Bl = ["evt"], Y2 = function(M, p) {
|
|
|
12605
12628
|
}, z));
|
|
12606
12629
|
};
|
|
12607
12630
|
function P2(b) {
|
|
12608
|
-
|
|
12631
|
+
Bl(sM({
|
|
12609
12632
|
putSortable: L2,
|
|
12610
12633
|
cloneEl: M2,
|
|
12611
12634
|
targetEl: x0,
|
|
@@ -12616,7 +12639,7 @@ function P2(b) {
|
|
|
12616
12639
|
newDraggableIndex: dp
|
|
12617
12640
|
}, b));
|
|
12618
12641
|
}
|
|
12619
|
-
var x0, b2, a1, Y1, Fp, Rt, M2, lp, Fo, ob, Qe, dp, it, L2, Co = !1, Dt = !1, It = [], Cp, Eb, gc, Lc, Yi, Gi, Fe, _o, Ze, $e = !1, Ot = !1, gt, _2, Nc = [], r3 = !1, Ft = [], en = typeof document < "u", rt = ir, Vi = rz || GM ? "cssFloat" : "float",
|
|
12642
|
+
var x0, b2, a1, Y1, Fp, Rt, M2, lp, Fo, ob, Qe, dp, it, L2, Co = !1, Dt = !1, It = [], Cp, Eb, gc, Lc, Yi, Gi, Fe, _o, Ze, $e = !1, Ot = !1, gt, _2, Nc = [], r3 = !1, Ft = [], en = typeof document < "u", rt = ir, Vi = rz || GM ? "cssFloat" : "float", xl = en && !hl && !ir && "draggable" in document.createElement("div"), lr = function() {
|
|
12620
12643
|
if (en) {
|
|
12621
12644
|
if (GM)
|
|
12622
12645
|
return !1;
|
|
@@ -12634,10 +12657,10 @@ var x0, b2, a1, Y1, Fp, Rt, M2, lp, Fo, ob, Qe, dp, it, L2, Co = !1, Dt = !1, It
|
|
|
12634
12657
|
return n && (i.clear === "both" || i.clear === q) ? "vertical" : "horizontal";
|
|
12635
12658
|
}
|
|
12636
12659
|
return z && (c.display === "block" || c.display === "flex" || c.display === "table" || c.display === "grid" || r >= e && o[Vi] === "none" || n && o[Vi] === "none" && r + d > e) ? "vertical" : "horizontal";
|
|
12637
|
-
},
|
|
12660
|
+
}, Xl = function(M, p, o) {
|
|
12638
12661
|
var e = o ? M.left : M.top, z = o ? M.right : M.bottom, n = o ? M.width : M.height, c = o ? p.left : p.top, i = o ? p.right : p.bottom, r = o ? p.width : p.height;
|
|
12639
12662
|
return e === c || z === i || e + n / 2 === c + r / 2;
|
|
12640
|
-
},
|
|
12663
|
+
}, Sl = function(M, p) {
|
|
12641
12664
|
var o;
|
|
12642
12665
|
return It.some(function(e) {
|
|
12643
12666
|
var z = e[eb].options.emptyInsertThreshold;
|
|
@@ -12679,7 +12702,7 @@ en && document.addEventListener("click", function(b) {
|
|
|
12679
12702
|
var Ep = function(M) {
|
|
12680
12703
|
if (x0) {
|
|
12681
12704
|
M = M.touches ? M.touches[0] : M;
|
|
12682
|
-
var p =
|
|
12705
|
+
var p = Sl(M.clientX, M.clientY);
|
|
12683
12706
|
if (p) {
|
|
12684
12707
|
var o = {};
|
|
12685
12708
|
for (var e in M)
|
|
@@ -12687,7 +12710,7 @@ var Ep = function(M) {
|
|
|
12687
12710
|
o.target = o.rootEl = p, o.preventDefault = void 0, o.stopPropagation = void 0, p[eb]._onDragOver(o);
|
|
12688
12711
|
}
|
|
12689
12712
|
}
|
|
12690
|
-
},
|
|
12713
|
+
}, _l = function(M) {
|
|
12691
12714
|
x0 && x0.parentNode[eb]._isOutsideThisEl(M.target);
|
|
12692
12715
|
};
|
|
12693
12716
|
function b1(b, M) {
|
|
@@ -12745,7 +12768,7 @@ function b1(b, M) {
|
|
|
12745
12768
|
fr(M);
|
|
12746
12769
|
for (var e in this)
|
|
12747
12770
|
e.charAt(0) === "_" && typeof this[e] == "function" && (this[e] = this[e].bind(this));
|
|
12748
|
-
this.nativeDraggable = M.forceFallback ? !1 :
|
|
12771
|
+
this.nativeDraggable = M.forceFallback ? !1 : xl, this.nativeDraggable && (this.options.touchStartThreshold = 1), M.supportPointer ? N1(b, "pointerdown", this._onTapStart) : (N1(b, "mousedown", this._onTapStart), N1(b, "touchstart", this._onTapStart)), this.nativeDraggable && (N1(b, "dragover", this), N1(b, "dragenter", this)), It.push(this.el), M.store && M.store.get && this.sort(M.store.get(this) || []), UM(this, Nl());
|
|
12749
12772
|
}
|
|
12750
12773
|
b1.prototype = /** @lends Sortable.prototype */
|
|
12751
12774
|
{
|
|
@@ -12759,7 +12782,7 @@ b1.prototype = /** @lends Sortable.prototype */
|
|
|
12759
12782
|
_onTapStart: function(M) {
|
|
12760
12783
|
if (M.cancelable) {
|
|
12761
12784
|
var p = this, o = this.el, e = this.options, z = e.preventOnFilter, n = M.type, c = M.touches && M.touches[0] || M.pointerType && M.pointerType === "touch" && M, i = (c || M).target, r = M.target.shadowRoot && (M.path && M.path[0] || M.composedPath && M.composedPath()[0]) || i, d = e.filter;
|
|
12762
|
-
if (
|
|
12785
|
+
if (Fl(o), !x0 && !(/mousedown|pointerdown/.test(n) && M.button !== 0 || e.disabled) && !r.isContentEditable && !(!this.nativeDraggable && Ke && i && i.tagName.toUpperCase() === "SELECT") && (i = eM(i, e.draggable, o, !1), !(i && i.animated) && Rt !== i)) {
|
|
12763
12786
|
if (Fo = qb(i), Qe = qb(i, e.draggable), typeof d == "function") {
|
|
12764
12787
|
if (d.call(this, M, i, this)) {
|
|
12765
12788
|
P2({
|
|
@@ -12852,7 +12875,7 @@ b1.prototype = /** @lends Sortable.prototype */
|
|
|
12852
12875
|
if (Co = !1, Y1 && x0) {
|
|
12853
12876
|
Y2("dragStarted", this, {
|
|
12854
12877
|
evt: p
|
|
12855
|
-
}), this.nativeDraggable && N1(document, "dragover",
|
|
12878
|
+
}), this.nativeDraggable && N1(document, "dragover", _l);
|
|
12856
12879
|
var o = this.options;
|
|
12857
12880
|
!M && pb(x0, o.dragClass, !1), pb(x0, o.ghostClass, !0), b1.active = this, M && this._appendGhost(), P2({
|
|
12858
12881
|
sortable: this,
|
|
@@ -12983,12 +13006,12 @@ b1.prototype = /** @lends Sortable.prototype */
|
|
|
12983
13006
|
if (n)
|
|
12984
13007
|
return b2 = Y1, m(), this._hideClone(), _("revert"), b1.eventCanceled || (Fp ? Y1.insertBefore(x0, Fp) : Y1.appendChild(x0)), y(!0);
|
|
12985
13008
|
var M0 = D3(p, c.draggable);
|
|
12986
|
-
if (!M0 ||
|
|
13009
|
+
if (!M0 || Cl(M, A, this) && !M0.animated) {
|
|
12987
13010
|
if (M0 === x0)
|
|
12988
13011
|
return y(!1);
|
|
12989
13012
|
if (M0 && p === M.target && (o = M0), o && (z = q2(o)), st(Y1, p, x0, e, o, z, M, !!o) !== !1)
|
|
12990
13013
|
return m(), p.appendChild(x0), b2 = p, U(), y(!0);
|
|
12991
|
-
} else if (M0 &&
|
|
13014
|
+
} else if (M0 && Pl(M, A, this)) {
|
|
12992
13015
|
var t0 = Me(p, 0, c, !0);
|
|
12993
13016
|
if (t0 === x0)
|
|
12994
13017
|
return y(!1);
|
|
@@ -12996,8 +13019,8 @@ b1.prototype = /** @lends Sortable.prototype */
|
|
|
12996
13019
|
return m(), p.insertBefore(x0, t0), b2 = p, U(), y(!0);
|
|
12997
13020
|
} else if (o.parentNode === p) {
|
|
12998
13021
|
z = q2(o);
|
|
12999
|
-
var q0 = 0, $, D = x0.parentNode !== p, r0 = !
|
|
13000
|
-
_o !== o && ($ = z[l0], $e = !1, Ot = !r0 && c.invertSwap || D), q0 =
|
|
13022
|
+
var q0 = 0, $, D = x0.parentNode !== p, r0 = !Xl(x0.animated && x0.toRect || e, o.animated && o.toRect || z, A), l0 = A ? "top" : "left", x = Ui(o, "top", "top") || Ui(x0, "top", "top"), X = x ? x.scrollTop : void 0;
|
|
13023
|
+
_o !== o && ($ = z[l0], $e = !1, Ot = !r0 && c.invertSwap || D), q0 = El(M, o, z, A, r0 ? 1 : c.swapThreshold, c.invertedSwapThreshold == null ? c.swapThreshold : c.invertedSwapThreshold, Ot, _o === o);
|
|
13001
13024
|
var F;
|
|
13002
13025
|
if (q0 !== 0) {
|
|
13003
13026
|
var E = qb(x0);
|
|
@@ -13012,7 +13035,7 @@ b1.prototype = /** @lends Sortable.prototype */
|
|
|
13012
13035
|
b0 = q0 === 1;
|
|
13013
13036
|
var O0 = st(Y1, p, x0, e, o, z, M, b0);
|
|
13014
13037
|
if (O0 !== !1)
|
|
13015
|
-
return (O0 === 1 || O0 === -1) && (b0 = O0 === 1), r3 = !0, setTimeout(
|
|
13038
|
+
return (O0 === 1 || O0 === -1) && (b0 = O0 === 1), r3 = !0, setTimeout(kl, 30), m(), b0 && !a0 ? p.appendChild(x0) : o.parentNode.insertBefore(x0, b0 ? a0 : o), x && Ar(x, 0, X - x.scrollTop), b2 = x0.parentNode, $ !== void 0 && !Ot && (gt = Math.abs($ - q2(o)[l0])), U(), y(!0);
|
|
13016
13039
|
}
|
|
13017
13040
|
if (p.contains(x0))
|
|
13018
13041
|
return y(!1);
|
|
@@ -13094,7 +13117,7 @@ b1.prototype = /** @lends Sortable.prototype */
|
|
|
13094
13117
|
break;
|
|
13095
13118
|
case "dragenter":
|
|
13096
13119
|
case "dragover":
|
|
13097
|
-
x0 && (this._onDragOver(M),
|
|
13120
|
+
x0 && (this._onDragOver(M), Tl(M));
|
|
13098
13121
|
break;
|
|
13099
13122
|
case "selectstart":
|
|
13100
13123
|
M.preventDefault();
|
|
@@ -13107,7 +13130,7 @@ b1.prototype = /** @lends Sortable.prototype */
|
|
|
13107
13130
|
*/
|
|
13108
13131
|
toArray: function() {
|
|
13109
13132
|
for (var M = [], p, o = this.el.children, e = 0, z = o.length, n = this.options; e < z; e++)
|
|
13110
|
-
p = o[e], eM(p, n.draggable, this.el, !1) && M.push(p.getAttribute(n.dataIdAttr) ||
|
|
13133
|
+
p = o[e], eM(p, n.draggable, this.el, !1) && M.push(p.getAttribute(n.dataIdAttr) || Il(p));
|
|
13111
13134
|
return M;
|
|
13112
13135
|
},
|
|
13113
13136
|
/**
|
|
@@ -13179,7 +13202,7 @@ b1.prototype = /** @lends Sortable.prototype */
|
|
|
13179
13202
|
}
|
|
13180
13203
|
}
|
|
13181
13204
|
};
|
|
13182
|
-
function
|
|
13205
|
+
function Tl(b) {
|
|
13183
13206
|
b.dataTransfer && (b.dataTransfer.dropEffect = "move"), b.cancelable && b.preventDefault();
|
|
13184
13207
|
}
|
|
13185
13208
|
function st(b, M, p, o, e, z, n, c) {
|
|
@@ -13192,18 +13215,18 @@ function st(b, M, p, o, e, z, n, c) {
|
|
|
13192
13215
|
function vc(b) {
|
|
13193
13216
|
b.draggable = !1;
|
|
13194
13217
|
}
|
|
13195
|
-
function
|
|
13218
|
+
function kl() {
|
|
13196
13219
|
r3 = !1;
|
|
13197
13220
|
}
|
|
13198
|
-
function
|
|
13221
|
+
function Pl(b, M, p) {
|
|
13199
13222
|
var o = q2(Me(p.el, 0, p.options, !0)), e = 10;
|
|
13200
13223
|
return M ? b.clientX < o.left - e || b.clientY < o.top && b.clientX < o.right : b.clientY < o.top - e || b.clientY < o.bottom && b.clientX < o.left;
|
|
13201
13224
|
}
|
|
13202
|
-
function
|
|
13225
|
+
function Cl(b, M, p) {
|
|
13203
13226
|
var o = q2(D3(p.el, p.options.draggable)), e = 10;
|
|
13204
13227
|
return M ? b.clientX > o.right + e || b.clientX <= o.right && b.clientY > o.bottom && b.clientX >= o.left : b.clientX > o.right && b.clientY > o.top || b.clientX <= o.right && b.clientY > o.bottom + e;
|
|
13205
13228
|
}
|
|
13206
|
-
function
|
|
13229
|
+
function El(b, M, p, o, e, z, n, c) {
|
|
13207
13230
|
var i = o ? b.clientY : b.clientX, r = o ? p.height : p.width, d = o ? p.top : p.left, q = o ? p.bottom : p.right, W = !1;
|
|
13208
13231
|
if (!n) {
|
|
13209
13232
|
if (c && gt < r * e) {
|
|
@@ -13212,19 +13235,19 @@ function Cl(b, M, p, o, e, z, n, c) {
|
|
|
13212
13235
|
else if (Ze === 1 ? i < d + gt : i > q - gt)
|
|
13213
13236
|
return -Ze;
|
|
13214
13237
|
} else if (i > d + r * (1 - e) / 2 && i < q - r * (1 - e) / 2)
|
|
13215
|
-
return
|
|
13238
|
+
return Dl(M);
|
|
13216
13239
|
}
|
|
13217
13240
|
return W = W || n, W && (i < d + r * z / 2 || i > q - r * z / 2) ? i > d + r / 2 ? 1 : -1 : 0;
|
|
13218
13241
|
}
|
|
13219
|
-
function
|
|
13242
|
+
function Dl(b) {
|
|
13220
13243
|
return qb(x0) < qb(b) ? 1 : -1;
|
|
13221
13244
|
}
|
|
13222
|
-
function
|
|
13245
|
+
function Il(b) {
|
|
13223
13246
|
for (var M = b.tagName + b.className + b.src + b.href + b.textContent, p = M.length, o = 0; p--; )
|
|
13224
13247
|
o += M.charCodeAt(p);
|
|
13225
13248
|
return o.toString(36);
|
|
13226
13249
|
}
|
|
13227
|
-
function
|
|
13250
|
+
function Fl(b) {
|
|
13228
13251
|
Ft.length = 0;
|
|
13229
13252
|
for (var M = b.getElementsByTagName("input"), p = M.length; p--; ) {
|
|
13230
13253
|
var o = M[p];
|
|
@@ -13248,7 +13271,7 @@ b1.utils = {
|
|
|
13248
13271
|
is: function(M, p) {
|
|
13249
13272
|
return !!eM(M, p, M, !1);
|
|
13250
13273
|
},
|
|
13251
|
-
extend:
|
|
13274
|
+
extend: gl,
|
|
13252
13275
|
throttle: sr,
|
|
13253
13276
|
closest: eM,
|
|
13254
13277
|
toggleClass: pb,
|
|
@@ -13274,9 +13297,9 @@ b1.mount = function() {
|
|
|
13274
13297
|
b1.create = function(b, M) {
|
|
13275
13298
|
return new b1(b, M);
|
|
13276
13299
|
};
|
|
13277
|
-
b1.version =
|
|
13300
|
+
b1.version = Wl;
|
|
13278
13301
|
var A2 = [], je, A3, d3 = !1, yc, Bc, jt, Ue;
|
|
13279
|
-
function
|
|
13302
|
+
function jl() {
|
|
13280
13303
|
function b() {
|
|
13281
13304
|
this.defaults = {
|
|
13282
13305
|
scroll: !0,
|
|
@@ -13298,7 +13321,7 @@ function Fl() {
|
|
|
13298
13321
|
!this.options.dragOverBubble && !o.rootEl && this._handleAutoScroll(o);
|
|
13299
13322
|
},
|
|
13300
13323
|
drop: function() {
|
|
13301
|
-
this.sortable.nativeDraggable ? h1(document, "dragover", this._handleAutoScroll) : (h1(document, "pointermove", this._handleFallbackAutoScroll), h1(document, "touchmove", this._handleFallbackAutoScroll), h1(document, "mousemove", this._handleFallbackAutoScroll)), Ki(), Nt(),
|
|
13324
|
+
this.sortable.nativeDraggable ? h1(document, "dragover", this._handleAutoScroll) : (h1(document, "pointermove", this._handleFallbackAutoScroll), h1(document, "touchmove", this._handleFallbackAutoScroll), h1(document, "mousemove", this._handleFallbackAutoScroll)), Ki(), Nt(), Ll();
|
|
13302
13325
|
},
|
|
13303
13326
|
nulling: function() {
|
|
13304
13327
|
jt = A3 = je = d3 = Ue = yc = Bc = null, A2.length = 0;
|
|
@@ -13401,19 +13424,19 @@ F3.prototype = {
|
|
|
13401
13424
|
UM(F3, {
|
|
13402
13425
|
pluginName: "removeOnSpill"
|
|
13403
13426
|
});
|
|
13404
|
-
b1.mount(new
|
|
13427
|
+
b1.mount(new jl());
|
|
13405
13428
|
b1.mount(F3, I3);
|
|
13406
|
-
function
|
|
13429
|
+
function Ul() {
|
|
13407
13430
|
return typeof window < "u" ? window.console : global.console;
|
|
13408
13431
|
}
|
|
13409
|
-
const
|
|
13410
|
-
function
|
|
13432
|
+
const Hl = Ul();
|
|
13433
|
+
function Yl(b) {
|
|
13411
13434
|
const M = /* @__PURE__ */ Object.create(null);
|
|
13412
13435
|
return function(o) {
|
|
13413
13436
|
return M[o] || (M[o] = b(o));
|
|
13414
13437
|
};
|
|
13415
13438
|
}
|
|
13416
|
-
const
|
|
13439
|
+
const Gl = /-(\w)/g, Ji = Yl((b) => b.replace(Gl, (M, p) => p ? p.toUpperCase() : ""));
|
|
13417
13440
|
function xc(b) {
|
|
13418
13441
|
b.parentElement !== null && b.parentElement.removeChild(b);
|
|
13419
13442
|
}
|
|
@@ -13421,10 +13444,10 @@ function Qi(b, M, p) {
|
|
|
13421
13444
|
const o = p === 0 ? b.children[0] : b.children[p - 1].nextSibling;
|
|
13422
13445
|
b.insertBefore(M, o);
|
|
13423
13446
|
}
|
|
13424
|
-
function
|
|
13447
|
+
function Vl(b, M) {
|
|
13425
13448
|
return Object.values(b).indexOf(M);
|
|
13426
13449
|
}
|
|
13427
|
-
function
|
|
13450
|
+
function Kl(b, M, p, o) {
|
|
13428
13451
|
if (!b)
|
|
13429
13452
|
return [];
|
|
13430
13453
|
const e = Object.values(b), z = M.length - o;
|
|
@@ -13433,26 +13456,26 @@ function Vl(b, M, p, o) {
|
|
|
13433
13456
|
function mr(b, M) {
|
|
13434
13457
|
this.$nextTick(() => this.$emit(b.toLowerCase(), M));
|
|
13435
13458
|
}
|
|
13436
|
-
function
|
|
13459
|
+
function Jl(b) {
|
|
13437
13460
|
return (M) => {
|
|
13438
13461
|
this.realList !== null && this["onDrag" + b](M), mr.call(this, b, M);
|
|
13439
13462
|
};
|
|
13440
13463
|
}
|
|
13441
|
-
function
|
|
13464
|
+
function Ql(b) {
|
|
13442
13465
|
return ["transition-group", "TransitionGroup"].includes(b);
|
|
13443
13466
|
}
|
|
13444
|
-
function
|
|
13467
|
+
function Zl(b) {
|
|
13445
13468
|
if (!b || b.length !== 1)
|
|
13446
13469
|
return !1;
|
|
13447
13470
|
const [{ type: M }] = b;
|
|
13448
|
-
return M ?
|
|
13471
|
+
return M ? Ql(M.name) : !1;
|
|
13449
13472
|
}
|
|
13450
|
-
function
|
|
13473
|
+
function $l(b, M) {
|
|
13451
13474
|
return M ? { ...M.props, ...M.attrs } : b;
|
|
13452
13475
|
}
|
|
13453
|
-
const l3 = ["Start", "Add", "Remove", "Update", "End"], q3 = ["Choose", "Unchoose", "Sort", "Filter", "Clone"],
|
|
13476
|
+
const l3 = ["Start", "Add", "Remove", "Update", "End"], q3 = ["Choose", "Unchoose", "Sort", "Filter", "Clone"], bq = ["Move", ...l3, ...q3].map((b) => "on" + b);
|
|
13454
13477
|
let Xc = null;
|
|
13455
|
-
const
|
|
13478
|
+
const Mq = {
|
|
13456
13479
|
options: Object,
|
|
13457
13480
|
list: {
|
|
13458
13481
|
type: Array,
|
|
@@ -13489,7 +13512,7 @@ const bq = {
|
|
|
13489
13512
|
required: !1,
|
|
13490
13513
|
default: null
|
|
13491
13514
|
}
|
|
13492
|
-
},
|
|
13515
|
+
}, pq = Kt({
|
|
13493
13516
|
name: "VueDraggableNext",
|
|
13494
13517
|
inheritAttrs: !1,
|
|
13495
13518
|
emits: [
|
|
@@ -13499,7 +13522,7 @@ const bq = {
|
|
|
13499
13522
|
...l3.map((b) => b.toLowerCase()),
|
|
13500
13523
|
...q3.map((b) => b.toLowerCase())
|
|
13501
13524
|
],
|
|
13502
|
-
props:
|
|
13525
|
+
props: Mq,
|
|
13503
13526
|
data() {
|
|
13504
13527
|
return {
|
|
13505
13528
|
transitionMode: !1,
|
|
@@ -13512,16 +13535,16 @@ const bq = {
|
|
|
13512
13535
|
};
|
|
13513
13536
|
},
|
|
13514
13537
|
render() {
|
|
13515
|
-
const b = this.$slots.default ? this.$slots.default() : null, M =
|
|
13516
|
-
return b ? (this.transitionMode =
|
|
13538
|
+
const b = this.$slots.default ? this.$slots.default() : null, M = $l(this.$attrs, this.componentData);
|
|
13539
|
+
return b ? (this.transitionMode = Zl(b), wt(this.getTag(), M, b)) : wt(this.getTag(), M, []);
|
|
13517
13540
|
},
|
|
13518
13541
|
created() {
|
|
13519
|
-
this.list !== null && this.modelValue !== null &&
|
|
13542
|
+
this.list !== null && this.modelValue !== null && Hl.error("list props are mutually exclusive! Please set one.");
|
|
13520
13543
|
},
|
|
13521
13544
|
mounted() {
|
|
13522
13545
|
const b = {};
|
|
13523
13546
|
l3.forEach((e) => {
|
|
13524
|
-
b["on" + e] =
|
|
13547
|
+
b["on" + e] = Jl.call(this, e);
|
|
13525
13548
|
}), q3.forEach((e) => {
|
|
13526
13549
|
b["on" + e] = mr.bind(this, e);
|
|
13527
13550
|
});
|
|
@@ -13561,7 +13584,7 @@ const bq = {
|
|
|
13561
13584
|
updateOptions(b) {
|
|
13562
13585
|
for (var M in b) {
|
|
13563
13586
|
const p = Ji(M);
|
|
13564
|
-
|
|
13587
|
+
bq.indexOf(p) === -1 && this._sortable.option(p, b[M]);
|
|
13565
13588
|
}
|
|
13566
13589
|
},
|
|
13567
13590
|
getChildrenNodes() {
|
|
@@ -13569,11 +13592,11 @@ const bq = {
|
|
|
13569
13592
|
},
|
|
13570
13593
|
computeIndexes() {
|
|
13571
13594
|
this.$nextTick(() => {
|
|
13572
|
-
this.visibleIndexes =
|
|
13595
|
+
this.visibleIndexes = Kl(this.getChildrenNodes(), this.$el.children, this.transitionMode, this.footerOffset);
|
|
13573
13596
|
});
|
|
13574
13597
|
},
|
|
13575
13598
|
getUnderlyingVm(b) {
|
|
13576
|
-
const M =
|
|
13599
|
+
const M = Vl(this.getChildrenNodes() || [], b);
|
|
13577
13600
|
if (M === -1)
|
|
13578
13601
|
return null;
|
|
13579
13602
|
const p = this.realList[M];
|
|
@@ -13702,7 +13725,7 @@ var Lr;
|
|
|
13702
13725
|
function E0() {
|
|
13703
13726
|
return Lr.apply(null, arguments);
|
|
13704
13727
|
}
|
|
13705
|
-
function
|
|
13728
|
+
function oq(b) {
|
|
13706
13729
|
Lr = b;
|
|
13707
13730
|
}
|
|
13708
13731
|
function jb(b) {
|
|
@@ -13746,7 +13769,7 @@ function Wp(b, M) {
|
|
|
13746
13769
|
function qM(b, M, p, o) {
|
|
13747
13770
|
return Kr(b, M, p, o, !0).utc();
|
|
13748
13771
|
}
|
|
13749
|
-
function
|
|
13772
|
+
function eq() {
|
|
13750
13773
|
return {
|
|
13751
13774
|
empty: !1,
|
|
13752
13775
|
unusedTokens: [],
|
|
@@ -13767,7 +13790,7 @@ function oq() {
|
|
|
13767
13790
|
};
|
|
13768
13791
|
}
|
|
13769
13792
|
function O1(b) {
|
|
13770
|
-
return b._pf == null && (b._pf =
|
|
13793
|
+
return b._pf == null && (b._pf = eq()), b._pf;
|
|
13771
13794
|
}
|
|
13772
13795
|
var f3;
|
|
13773
13796
|
Array.prototype.some ? f3 = Array.prototype.some : f3 = function(b) {
|
|
@@ -13842,7 +13865,7 @@ E0.deprecationHandler = null;
|
|
|
13842
13865
|
function fM(b) {
|
|
13843
13866
|
return typeof Function < "u" && b instanceof Function || Object.prototype.toString.call(b) === "[object Function]";
|
|
13844
13867
|
}
|
|
13845
|
-
function
|
|
13868
|
+
function zq(b) {
|
|
13846
13869
|
var M, p;
|
|
13847
13870
|
for (p in b)
|
|
13848
13871
|
R1(b, p) && (M = b[p], fM(M) ? this[p] = M : this["_" + p] = M);
|
|
@@ -13868,7 +13891,7 @@ Object.keys ? W3 = Object.keys : W3 = function(b) {
|
|
|
13868
13891
|
R1(b, M) && p.push(M);
|
|
13869
13892
|
return p;
|
|
13870
13893
|
};
|
|
13871
|
-
var
|
|
13894
|
+
var tq = {
|
|
13872
13895
|
sameDay: "[Today at] LT",
|
|
13873
13896
|
nextDay: "[Tomorrow at] LT",
|
|
13874
13897
|
nextWeek: "dddd [at] LT",
|
|
@@ -13876,7 +13899,7 @@ var zq = {
|
|
|
13876
13899
|
lastWeek: "[Last] dddd [at] LT",
|
|
13877
13900
|
sameElse: "L"
|
|
13878
13901
|
};
|
|
13879
|
-
function
|
|
13902
|
+
function nq(b, M, p) {
|
|
13880
13903
|
var o = this._calendar[b] || this._calendar.sameElse;
|
|
13881
13904
|
return fM(o) ? o.call(M, p) : o;
|
|
13882
13905
|
}
|
|
@@ -13898,13 +13921,13 @@ function V0(b, M, p, o) {
|
|
|
13898
13921
|
);
|
|
13899
13922
|
});
|
|
13900
13923
|
}
|
|
13901
|
-
function
|
|
13924
|
+
function cq(b) {
|
|
13902
13925
|
return b.match(/\[[\s\S]/) ? b.replace(/^\[|\]$/g, "") : b.replace(/\\/g, "");
|
|
13903
13926
|
}
|
|
13904
|
-
function
|
|
13927
|
+
function aq(b) {
|
|
13905
13928
|
var M = b.match(G3), p, o;
|
|
13906
13929
|
for (p = 0, o = M.length; p < o; p++)
|
|
13907
|
-
Jo[M[p]] ? M[p] = Jo[M[p]] : M[p] =
|
|
13930
|
+
Jo[M[p]] ? M[p] = Jo[M[p]] : M[p] = cq(M[p]);
|
|
13908
13931
|
return function(e) {
|
|
13909
13932
|
var z = "", n;
|
|
13910
13933
|
for (n = 0; n < o; n++)
|
|
@@ -13913,7 +13936,7 @@ function cq(b) {
|
|
|
13913
13936
|
};
|
|
13914
13937
|
}
|
|
13915
13938
|
function vt(b, M) {
|
|
13916
|
-
return b.isValid() ? (M = Br(M, b.localeData()), _c[M] = _c[M] ||
|
|
13939
|
+
return b.isValid() ? (M = Br(M, b.localeData()), _c[M] = _c[M] || aq(M), _c[M](b)) : b.localeData().invalidDate();
|
|
13917
13940
|
}
|
|
13918
13941
|
function Br(b, M) {
|
|
13919
13942
|
var p = 5;
|
|
@@ -13927,7 +13950,7 @@ function Br(b, M) {
|
|
|
13927
13950
|
), At.lastIndex = 0, p -= 1;
|
|
13928
13951
|
return b;
|
|
13929
13952
|
}
|
|
13930
|
-
var
|
|
13953
|
+
var iq = {
|
|
13931
13954
|
LTS: "h:mm:ss A",
|
|
13932
13955
|
LT: "h:mm A",
|
|
13933
13956
|
L: "MM/DD/YYYY",
|
|
@@ -13935,21 +13958,21 @@ var aq = {
|
|
|
13935
13958
|
LLL: "MMMM D, YYYY h:mm A",
|
|
13936
13959
|
LLLL: "dddd, MMMM D, YYYY h:mm A"
|
|
13937
13960
|
};
|
|
13938
|
-
function
|
|
13961
|
+
function Oq(b) {
|
|
13939
13962
|
var M = this._longDateFormat[b], p = this._longDateFormat[b.toUpperCase()];
|
|
13940
13963
|
return M || !p ? M : (this._longDateFormat[b] = p.match(G3).map(function(o) {
|
|
13941
13964
|
return o === "MMMM" || o === "MM" || o === "DD" || o === "dddd" ? o.slice(1) : o;
|
|
13942
13965
|
}).join(""), this._longDateFormat[b]);
|
|
13943
13966
|
}
|
|
13944
|
-
var
|
|
13945
|
-
function
|
|
13967
|
+
var rq = "Invalid date";
|
|
13968
|
+
function sq() {
|
|
13946
13969
|
return this._invalidDate;
|
|
13947
13970
|
}
|
|
13948
|
-
var
|
|
13949
|
-
function
|
|
13971
|
+
var Aq = "%d", dq = /\d{1,2}/;
|
|
13972
|
+
function lq(b) {
|
|
13950
13973
|
return this._ordinal.replace("%d", b);
|
|
13951
13974
|
}
|
|
13952
|
-
var
|
|
13975
|
+
var qq = {
|
|
13953
13976
|
future: "in %s",
|
|
13954
13977
|
past: "%s ago",
|
|
13955
13978
|
s: "a few seconds",
|
|
@@ -13967,11 +13990,11 @@ var lq = {
|
|
|
13967
13990
|
y: "a year",
|
|
13968
13991
|
yy: "%d years"
|
|
13969
13992
|
};
|
|
13970
|
-
function
|
|
13993
|
+
function fq(b, M, p, o) {
|
|
13971
13994
|
var e = this._relativeTime[p];
|
|
13972
13995
|
return fM(e) ? e(b, M, p, o) : e.replace(/%d/i, b);
|
|
13973
13996
|
}
|
|
13974
|
-
function
|
|
13997
|
+
function uq(b, M) {
|
|
13975
13998
|
var p = this._relativeTime[b > 0 ? "future" : "past"];
|
|
13976
13999
|
return fM(p) ? p(M) : p.replace(/%s/i, M);
|
|
13977
14000
|
}
|
|
@@ -14034,7 +14057,7 @@ function V3(b) {
|
|
|
14034
14057
|
R1(b, o) && (p = hb(o), p && (M[p] = b[o]));
|
|
14035
14058
|
return M;
|
|
14036
14059
|
}
|
|
14037
|
-
var
|
|
14060
|
+
var Wq = {
|
|
14038
14061
|
date: 9,
|
|
14039
14062
|
day: 11,
|
|
14040
14063
|
weekday: 11,
|
|
@@ -14052,25 +14075,25 @@ var uq = {
|
|
|
14052
14075
|
isoWeek: 5,
|
|
14053
14076
|
year: 1
|
|
14054
14077
|
};
|
|
14055
|
-
function
|
|
14078
|
+
function hq(b) {
|
|
14056
14079
|
var M = [], p;
|
|
14057
14080
|
for (p in b)
|
|
14058
|
-
R1(b, p) && M.push({ unit: p, priority:
|
|
14081
|
+
R1(b, p) && M.push({ unit: p, priority: Wq[p] });
|
|
14059
14082
|
return M.sort(function(o, e) {
|
|
14060
14083
|
return o.priority - e.priority;
|
|
14061
14084
|
}), M;
|
|
14062
14085
|
}
|
|
14063
|
-
var wr = /\d/, ib = /\d\d/, xr = /\d{3}/, K3 = /\d{4}/, tn = /[+-]?\d{6}/, U1 = /\d\d?/, Xr = /\d\d\d\d?/, Sr = /\d\d\d\d\d\d?/, nn = /\d{1,3}/, J3 = /\d{1,4}/, cn = /[+-]?\d{1,6}/, oe = /\d+/, an = /[+-]?\d+/,
|
|
14086
|
+
var wr = /\d/, ib = /\d\d/, xr = /\d{3}/, K3 = /\d{4}/, tn = /[+-]?\d{6}/, U1 = /\d\d?/, Xr = /\d\d\d\d?/, Sr = /\d\d\d\d\d\d?/, nn = /\d{1,3}/, J3 = /\d{1,4}/, cn = /[+-]?\d{1,6}/, oe = /\d+/, an = /[+-]?\d+/, mq = /Z|[+-]\d\d:?\d\d/gi, On = /Z|[+-]\d\d(?::?\d\d)?/gi, Rq = /[+-]?\d+(\.\d{1,3})?/, lz = /[0-9]{0,256}['a-z\u00A0-\u05FF\u0700-\uD7FF\uF900-\uFDCF\uFDF0-\uFF07\uFF10-\uFFEF]{1,256}|[\u0600-\u06FF\/]{1,256}(\s*?[\u0600-\u06FF]{1,256}){1,2}/i, ee = /^[1-9]\d?/, Q3 = /^([1-9]\d|\d)/, Ut;
|
|
14064
14087
|
Ut = {};
|
|
14065
14088
|
function F0(b, M, p) {
|
|
14066
14089
|
Ut[b] = fM(M) ? M : function(o, e) {
|
|
14067
14090
|
return o && p ? p : M;
|
|
14068
14091
|
};
|
|
14069
14092
|
}
|
|
14070
|
-
function
|
|
14071
|
-
return R1(Ut, b) ? Ut[b](M._strict, M._locale) : new RegExp(
|
|
14093
|
+
function gq(b, M) {
|
|
14094
|
+
return R1(Ut, b) ? Ut[b](M._strict, M._locale) : new RegExp(Lq(b));
|
|
14072
14095
|
}
|
|
14073
|
-
function
|
|
14096
|
+
function Lq(b) {
|
|
14074
14097
|
return EM(
|
|
14075
14098
|
b.replace("\\", "").replace(
|
|
14076
14099
|
/\\(\[)|\\(\])|\[([^\]\[]*)\]|\\(.)/g,
|
|
@@ -14103,13 +14126,13 @@ function qz(b, M) {
|
|
|
14103
14126
|
e._w = e._w || {}, M(p, e._w, e, z);
|
|
14104
14127
|
});
|
|
14105
14128
|
}
|
|
14106
|
-
function
|
|
14129
|
+
function Nq(b, M, p) {
|
|
14107
14130
|
M != null && R1(h3, b) && h3[b](M, p._a, p, b);
|
|
14108
14131
|
}
|
|
14109
14132
|
function rn(b) {
|
|
14110
14133
|
return b % 4 === 0 && b % 100 !== 0 || b % 400 === 0;
|
|
14111
14134
|
}
|
|
14112
|
-
var T2 = 0, TM = 1, zM = 2, f2 = 3, Fb = 4, kM = 5, Hp = 6,
|
|
14135
|
+
var T2 = 0, TM = 1, zM = 2, f2 = 3, Fb = 4, kM = 5, Hp = 6, vq = 7, yq = 8;
|
|
14113
14136
|
V0("Y", 0, 0, function() {
|
|
14114
14137
|
var b = this.year();
|
|
14115
14138
|
return b <= 9999 ? AM(b, 4) : "+" + b;
|
|
@@ -14142,7 +14165,7 @@ E0.parseTwoDigitYear = function(b) {
|
|
|
14142
14165
|
return l1(b) + (l1(b) > 68 ? 1900 : 2e3);
|
|
14143
14166
|
};
|
|
14144
14167
|
var _r = ze("FullYear", !0);
|
|
14145
|
-
function
|
|
14168
|
+
function Bq() {
|
|
14146
14169
|
return rn(this.year());
|
|
14147
14170
|
}
|
|
14148
14171
|
function ze(b, M) {
|
|
@@ -14197,20 +14220,20 @@ function Tr(b, M, p) {
|
|
|
14197
14220
|
z = p, n = b.month(), c = b.date(), c = c === 29 && n === 1 && !rn(z) ? 28 : c, e ? o.setUTCFullYear(z, n, c) : o.setFullYear(z, n, c);
|
|
14198
14221
|
}
|
|
14199
14222
|
}
|
|
14200
|
-
function
|
|
14223
|
+
function wq(b) {
|
|
14201
14224
|
return b = hb(b), fM(this[b]) ? this[b]() : this;
|
|
14202
14225
|
}
|
|
14203
|
-
function
|
|
14226
|
+
function xq(b, M) {
|
|
14204
14227
|
if (typeof b == "object") {
|
|
14205
14228
|
b = V3(b);
|
|
14206
|
-
var p =
|
|
14229
|
+
var p = hq(b), o, e = p.length;
|
|
14207
14230
|
for (o = 0; o < e; o++)
|
|
14208
14231
|
this[p[o].unit](b[p[o].unit]);
|
|
14209
14232
|
} else if (b = hb(b), fM(this[b]))
|
|
14210
14233
|
return this[b](M);
|
|
14211
14234
|
return this;
|
|
14212
14235
|
}
|
|
14213
|
-
function
|
|
14236
|
+
function Xq(b, M) {
|
|
14214
14237
|
return (b % M + M) % M;
|
|
14215
14238
|
}
|
|
14216
14239
|
var t2;
|
|
@@ -14224,7 +14247,7 @@ Array.prototype.indexOf ? t2 = Array.prototype.indexOf : t2 = function(b) {
|
|
|
14224
14247
|
function Z3(b, M) {
|
|
14225
14248
|
if (isNaN(b) || isNaN(M))
|
|
14226
14249
|
return NaN;
|
|
14227
|
-
var p =
|
|
14250
|
+
var p = Xq(M, 12);
|
|
14228
14251
|
return b += (M - p) / 12, p === 1 ? rn(b) ? 29 : 28 : 31 - p % 7 % 2;
|
|
14229
14252
|
}
|
|
14230
14253
|
V0("M", ["MM", 2], "Mo", function() {
|
|
@@ -14251,16 +14274,16 @@ T1(["MMM", "MMMM"], function(b, M, p, o) {
|
|
|
14251
14274
|
var e = p._locale.monthsParse(b, o, p._strict);
|
|
14252
14275
|
e != null ? M[TM] = e : O1(p).invalidMonth = b;
|
|
14253
14276
|
});
|
|
14254
|
-
var
|
|
14277
|
+
var Sq = "January_February_March_April_May_June_July_August_September_October_November_December".split(
|
|
14255
14278
|
"_"
|
|
14256
|
-
), kr = "Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"), Pr = /D[oD]?(\[[^\[\]]*\]|\s)+MMMM?/,
|
|
14257
|
-
function
|
|
14279
|
+
), kr = "Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"), Pr = /D[oD]?(\[[^\[\]]*\]|\s)+MMMM?/, _q = lz, Tq = lz;
|
|
14280
|
+
function kq(b, M) {
|
|
14258
14281
|
return b ? jb(this._months) ? this._months[b.month()] : this._months[(this._months.isFormat || Pr).test(M) ? "format" : "standalone"][b.month()] : jb(this._months) ? this._months : this._months.standalone;
|
|
14259
14282
|
}
|
|
14260
|
-
function
|
|
14283
|
+
function Pq(b, M) {
|
|
14261
14284
|
return b ? jb(this._monthsShort) ? this._monthsShort[b.month()] : this._monthsShort[Pr.test(M) ? "format" : "standalone"][b.month()] : jb(this._monthsShort) ? this._monthsShort : this._monthsShort.standalone;
|
|
14262
14285
|
}
|
|
14263
|
-
function
|
|
14286
|
+
function Cq(b, M, p) {
|
|
14264
14287
|
var o, e, z, n = b.toLocaleLowerCase();
|
|
14265
14288
|
if (!this._monthsParse)
|
|
14266
14289
|
for (this._monthsParse = [], this._longMonthsParse = [], this._shortMonthsParse = [], o = 0; o < 12; ++o)
|
|
@@ -14270,10 +14293,10 @@ function Pq(b, M, p) {
|
|
|
14270
14293
|
).toLocaleLowerCase(), this._longMonthsParse[o] = this.months(z, "").toLocaleLowerCase();
|
|
14271
14294
|
return p ? M === "MMM" ? (e = t2.call(this._shortMonthsParse, n), e !== -1 ? e : null) : (e = t2.call(this._longMonthsParse, n), e !== -1 ? e : null) : M === "MMM" ? (e = t2.call(this._shortMonthsParse, n), e !== -1 ? e : (e = t2.call(this._longMonthsParse, n), e !== -1 ? e : null)) : (e = t2.call(this._longMonthsParse, n), e !== -1 ? e : (e = t2.call(this._shortMonthsParse, n), e !== -1 ? e : null));
|
|
14272
14295
|
}
|
|
14273
|
-
function
|
|
14296
|
+
function Eq(b, M, p) {
|
|
14274
14297
|
var o, e, z;
|
|
14275
14298
|
if (this._monthsParseExact)
|
|
14276
|
-
return
|
|
14299
|
+
return Cq.call(this, b, M, p);
|
|
14277
14300
|
for (this._monthsParse || (this._monthsParse = [], this._longMonthsParse = [], this._shortMonthsParse = []), o = 0; o < 12; o++) {
|
|
14278
14301
|
if (e = qM([2e3, o]), p && !this._longMonthsParse[o] && (this._longMonthsParse[o] = new RegExp(
|
|
14279
14302
|
"^" + this.months(e, "").replace(".", "") + "$",
|
|
@@ -14304,14 +14327,14 @@ function Cr(b, M) {
|
|
|
14304
14327
|
function Er(b) {
|
|
14305
14328
|
return b != null ? (Cr(this, b), E0.updateOffset(this, !0), this) : tz(this, "Month");
|
|
14306
14329
|
}
|
|
14307
|
-
function
|
|
14330
|
+
function Dq() {
|
|
14308
14331
|
return Z3(this.year(), this.month());
|
|
14309
14332
|
}
|
|
14310
|
-
function Dq(b) {
|
|
14311
|
-
return this._monthsParseExact ? (R1(this, "_monthsRegex") || Dr.call(this), b ? this._monthsShortStrictRegex : this._monthsShortRegex) : (R1(this, "_monthsShortRegex") || (this._monthsShortRegex = Sq), this._monthsShortStrictRegex && b ? this._monthsShortStrictRegex : this._monthsShortRegex);
|
|
14312
|
-
}
|
|
14313
14333
|
function Iq(b) {
|
|
14314
|
-
return this._monthsParseExact ? (R1(this, "_monthsRegex") || Dr.call(this), b ? this.
|
|
14334
|
+
return this._monthsParseExact ? (R1(this, "_monthsRegex") || Dr.call(this), b ? this._monthsShortStrictRegex : this._monthsShortRegex) : (R1(this, "_monthsShortRegex") || (this._monthsShortRegex = _q), this._monthsShortStrictRegex && b ? this._monthsShortStrictRegex : this._monthsShortRegex);
|
|
14335
|
+
}
|
|
14336
|
+
function Fq(b) {
|
|
14337
|
+
return this._monthsParseExact ? (R1(this, "_monthsRegex") || Dr.call(this), b ? this._monthsStrictRegex : this._monthsRegex) : (R1(this, "_monthsRegex") || (this._monthsRegex = Tq), this._monthsStrictRegex && b ? this._monthsStrictRegex : this._monthsRegex);
|
|
14315
14338
|
}
|
|
14316
14339
|
function Dr() {
|
|
14317
14340
|
function b(i, r) {
|
|
@@ -14328,7 +14351,7 @@ function Dr() {
|
|
|
14328
14351
|
"i"
|
|
14329
14352
|
);
|
|
14330
14353
|
}
|
|
14331
|
-
function
|
|
14354
|
+
function jq(b, M, p, o, e, z, n) {
|
|
14332
14355
|
var c;
|
|
14333
14356
|
return b < 100 && b >= 0 ? (c = new Date(b + 400, M, p, o, e, z, n), isFinite(c.getFullYear()) && c.setFullYear(b)) : c = new Date(b, M, p, o, e, z, n), c;
|
|
14334
14357
|
}
|
|
@@ -14370,26 +14393,26 @@ qz(
|
|
|
14370
14393
|
M[o.substr(0, 1)] = l1(b);
|
|
14371
14394
|
}
|
|
14372
14395
|
);
|
|
14373
|
-
function
|
|
14396
|
+
function Uq(b) {
|
|
14374
14397
|
return cz(b, this._week.dow, this._week.doy).week;
|
|
14375
14398
|
}
|
|
14376
|
-
var
|
|
14399
|
+
var Hq = {
|
|
14377
14400
|
dow: 0,
|
|
14378
14401
|
// Sunday is the first day of the week.
|
|
14379
14402
|
doy: 6
|
|
14380
14403
|
// The week that contains Jan 6th is the first week of the year.
|
|
14381
14404
|
};
|
|
14382
|
-
function
|
|
14405
|
+
function Yq() {
|
|
14383
14406
|
return this._week.dow;
|
|
14384
14407
|
}
|
|
14385
|
-
function
|
|
14408
|
+
function Gq() {
|
|
14386
14409
|
return this._week.doy;
|
|
14387
14410
|
}
|
|
14388
|
-
function
|
|
14411
|
+
function Vq(b) {
|
|
14389
14412
|
var M = this.localeData().week(this);
|
|
14390
14413
|
return b == null ? M : this.add((b - M) * 7, "d");
|
|
14391
14414
|
}
|
|
14392
|
-
function
|
|
14415
|
+
function Kq(b) {
|
|
14393
14416
|
var M = cz(this, 1, 4).week;
|
|
14394
14417
|
return b == null ? M : this.add((b - M) * 7, "d");
|
|
14395
14418
|
}
|
|
@@ -14424,27 +14447,27 @@ qz(["dd", "ddd", "dddd"], function(b, M, p, o) {
|
|
|
14424
14447
|
qz(["d", "e", "E"], function(b, M, p, o) {
|
|
14425
14448
|
M[o] = l1(b);
|
|
14426
14449
|
});
|
|
14427
|
-
function
|
|
14450
|
+
function Jq(b, M) {
|
|
14428
14451
|
return typeof b != "string" ? b : isNaN(b) ? (b = M.weekdaysParse(b), typeof b == "number" ? b : null) : parseInt(b, 10);
|
|
14429
14452
|
}
|
|
14430
|
-
function
|
|
14453
|
+
function Qq(b, M) {
|
|
14431
14454
|
return typeof b == "string" ? M.weekdaysParse(b) % 7 || 7 : isNaN(b) ? null : b;
|
|
14432
14455
|
}
|
|
14433
14456
|
function $3(b, M) {
|
|
14434
14457
|
return b.slice(M, 7).concat(b.slice(0, M));
|
|
14435
14458
|
}
|
|
14436
|
-
var
|
|
14437
|
-
function
|
|
14459
|
+
var Zq = "Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"), Fr = "Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"), $q = "Su_Mo_Tu_We_Th_Fr_Sa".split("_"), bf = lz, Mf = lz, pf = lz;
|
|
14460
|
+
function of(b, M) {
|
|
14438
14461
|
var p = jb(this._weekdays) ? this._weekdays : this._weekdays[b && b !== !0 && this._weekdays.isFormat.test(M) ? "format" : "standalone"];
|
|
14439
14462
|
return b === !0 ? $3(p, this._week.dow) : b ? p[b.day()] : p;
|
|
14440
14463
|
}
|
|
14441
|
-
function
|
|
14464
|
+
function ef(b) {
|
|
14442
14465
|
return b === !0 ? $3(this._weekdaysShort, this._week.dow) : b ? this._weekdaysShort[b.day()] : this._weekdaysShort;
|
|
14443
14466
|
}
|
|
14444
|
-
function
|
|
14467
|
+
function zf(b) {
|
|
14445
14468
|
return b === !0 ? $3(this._weekdaysMin, this._week.dow) : b ? this._weekdaysMin[b.day()] : this._weekdaysMin;
|
|
14446
14469
|
}
|
|
14447
|
-
function
|
|
14470
|
+
function tf(b, M, p) {
|
|
14448
14471
|
var o, e, z, n = b.toLocaleLowerCase();
|
|
14449
14472
|
if (!this._weekdaysParse)
|
|
14450
14473
|
for (this._weekdaysParse = [], this._shortWeekdaysParse = [], this._minWeekdaysParse = [], o = 0; o < 7; ++o)
|
|
@@ -14457,10 +14480,10 @@ function zf(b, M, p) {
|
|
|
14457
14480
|
).toLocaleLowerCase(), this._weekdaysParse[o] = this.weekdays(z, "").toLocaleLowerCase();
|
|
14458
14481
|
return p ? M === "dddd" ? (e = t2.call(this._weekdaysParse, n), e !== -1 ? e : null) : M === "ddd" ? (e = t2.call(this._shortWeekdaysParse, n), e !== -1 ? e : null) : (e = t2.call(this._minWeekdaysParse, n), e !== -1 ? e : null) : M === "dddd" ? (e = t2.call(this._weekdaysParse, n), e !== -1 || (e = t2.call(this._shortWeekdaysParse, n), e !== -1) ? e : (e = t2.call(this._minWeekdaysParse, n), e !== -1 ? e : null)) : M === "ddd" ? (e = t2.call(this._shortWeekdaysParse, n), e !== -1 || (e = t2.call(this._weekdaysParse, n), e !== -1) ? e : (e = t2.call(this._minWeekdaysParse, n), e !== -1 ? e : null)) : (e = t2.call(this._minWeekdaysParse, n), e !== -1 || (e = t2.call(this._weekdaysParse, n), e !== -1) ? e : (e = t2.call(this._shortWeekdaysParse, n), e !== -1 ? e : null));
|
|
14459
14482
|
}
|
|
14460
|
-
function
|
|
14483
|
+
function nf(b, M, p) {
|
|
14461
14484
|
var o, e, z;
|
|
14462
14485
|
if (this._weekdaysParseExact)
|
|
14463
|
-
return
|
|
14486
|
+
return tf.call(this, b, M, p);
|
|
14464
14487
|
for (this._weekdaysParse || (this._weekdaysParse = [], this._minWeekdaysParse = [], this._shortWeekdaysParse = [], this._fullWeekdaysParse = []), o = 0; o < 7; o++) {
|
|
14465
14488
|
if (e = qM([2e3, 1]).day(o), p && !this._fullWeekdaysParse[o] && (this._fullWeekdaysParse[o] = new RegExp(
|
|
14466
14489
|
"^" + this.weekdays(e, "").replace(".", "\\.?") + "$",
|
|
@@ -14481,35 +14504,35 @@ function tf(b, M, p) {
|
|
|
14481
14504
|
return o;
|
|
14482
14505
|
}
|
|
14483
14506
|
}
|
|
14484
|
-
function
|
|
14507
|
+
function cf(b) {
|
|
14485
14508
|
if (!this.isValid())
|
|
14486
14509
|
return b != null ? this : NaN;
|
|
14487
14510
|
var M = tz(this, "Day");
|
|
14488
|
-
return b != null ? (b =
|
|
14511
|
+
return b != null ? (b = Jq(b, this.localeData()), this.add(b - M, "d")) : M;
|
|
14489
14512
|
}
|
|
14490
|
-
function
|
|
14513
|
+
function af(b) {
|
|
14491
14514
|
if (!this.isValid())
|
|
14492
14515
|
return b != null ? this : NaN;
|
|
14493
14516
|
var M = (this.day() + 7 - this.localeData()._week.dow) % 7;
|
|
14494
14517
|
return b == null ? M : this.add(b - M, "d");
|
|
14495
14518
|
}
|
|
14496
|
-
function
|
|
14519
|
+
function Of(b) {
|
|
14497
14520
|
if (!this.isValid())
|
|
14498
14521
|
return b != null ? this : NaN;
|
|
14499
14522
|
if (b != null) {
|
|
14500
|
-
var M =
|
|
14523
|
+
var M = Qq(b, this.localeData());
|
|
14501
14524
|
return this.day(this.day() % 7 ? M : M - 7);
|
|
14502
14525
|
} else
|
|
14503
14526
|
return this.day() || 7;
|
|
14504
14527
|
}
|
|
14505
|
-
function Of(b) {
|
|
14506
|
-
return this._weekdaysParseExact ? (R1(this, "_weekdaysRegex") || ba.call(this), b ? this._weekdaysStrictRegex : this._weekdaysRegex) : (R1(this, "_weekdaysRegex") || (this._weekdaysRegex = $q), this._weekdaysStrictRegex && b ? this._weekdaysStrictRegex : this._weekdaysRegex);
|
|
14507
|
-
}
|
|
14508
14528
|
function rf(b) {
|
|
14509
|
-
return this._weekdaysParseExact ? (R1(this, "_weekdaysRegex") || ba.call(this), b ? this.
|
|
14529
|
+
return this._weekdaysParseExact ? (R1(this, "_weekdaysRegex") || ba.call(this), b ? this._weekdaysStrictRegex : this._weekdaysRegex) : (R1(this, "_weekdaysRegex") || (this._weekdaysRegex = bf), this._weekdaysStrictRegex && b ? this._weekdaysStrictRegex : this._weekdaysRegex);
|
|
14510
14530
|
}
|
|
14511
14531
|
function sf(b) {
|
|
14512
|
-
return this._weekdaysParseExact ? (R1(this, "_weekdaysRegex") || ba.call(this), b ? this.
|
|
14532
|
+
return this._weekdaysParseExact ? (R1(this, "_weekdaysRegex") || ba.call(this), b ? this._weekdaysShortStrictRegex : this._weekdaysShortRegex) : (R1(this, "_weekdaysShortRegex") || (this._weekdaysShortRegex = Mf), this._weekdaysShortStrictRegex && b ? this._weekdaysShortStrictRegex : this._weekdaysShortRegex);
|
|
14533
|
+
}
|
|
14534
|
+
function Af(b) {
|
|
14535
|
+
return this._weekdaysParseExact ? (R1(this, "_weekdaysRegex") || ba.call(this), b ? this._weekdaysMinStrictRegex : this._weekdaysMinRegex) : (R1(this, "_weekdaysMinRegex") || (this._weekdaysMinRegex = pf), this._weekdaysMinStrictRegex && b ? this._weekdaysMinStrictRegex : this._weekdaysMinRegex);
|
|
14513
14536
|
}
|
|
14514
14537
|
function ba() {
|
|
14515
14538
|
function b(d, q) {
|
|
@@ -14532,12 +14555,12 @@ function ba() {
|
|
|
14532
14555
|
function Ma() {
|
|
14533
14556
|
return this.hours() % 12 || 12;
|
|
14534
14557
|
}
|
|
14535
|
-
function
|
|
14558
|
+
function df() {
|
|
14536
14559
|
return this.hours() || 24;
|
|
14537
14560
|
}
|
|
14538
14561
|
V0("H", ["HH", 2], 0, "hour");
|
|
14539
14562
|
V0("h", ["hh", 2], 0, Ma);
|
|
14540
|
-
V0("k", ["kk", 2], 0,
|
|
14563
|
+
V0("k", ["kk", 2], 0, df);
|
|
14541
14564
|
V0("hmm", 0, 0, function() {
|
|
14542
14565
|
return "" + Ma.apply(this) + AM(this.minutes(), 2);
|
|
14543
14566
|
});
|
|
@@ -14603,29 +14626,29 @@ T1("Hmmss", function(b, M, p) {
|
|
|
14603
14626
|
var o = b.length - 4, e = b.length - 2;
|
|
14604
14627
|
M[f2] = l1(b.substr(0, o)), M[Fb] = l1(b.substr(o, 2)), M[kM] = l1(b.substr(e));
|
|
14605
14628
|
});
|
|
14606
|
-
function
|
|
14629
|
+
function lf(b) {
|
|
14607
14630
|
return (b + "").toLowerCase().charAt(0) === "p";
|
|
14608
14631
|
}
|
|
14609
|
-
var
|
|
14610
|
-
function
|
|
14632
|
+
var qf = /[ap]\.?m?\.?/i, ff = ze("Hours", !0);
|
|
14633
|
+
function uf(b, M, p) {
|
|
14611
14634
|
return b > 11 ? p ? "pm" : "PM" : p ? "am" : "AM";
|
|
14612
14635
|
}
|
|
14613
14636
|
var Hr = {
|
|
14614
|
-
calendar:
|
|
14615
|
-
longDateFormat:
|
|
14616
|
-
invalidDate:
|
|
14617
|
-
ordinal:
|
|
14618
|
-
dayOfMonthOrdinalParse:
|
|
14619
|
-
relativeTime:
|
|
14620
|
-
months:
|
|
14637
|
+
calendar: tq,
|
|
14638
|
+
longDateFormat: iq,
|
|
14639
|
+
invalidDate: rq,
|
|
14640
|
+
ordinal: Aq,
|
|
14641
|
+
dayOfMonthOrdinalParse: dq,
|
|
14642
|
+
relativeTime: qq,
|
|
14643
|
+
months: Sq,
|
|
14621
14644
|
monthsShort: kr,
|
|
14622
|
-
week:
|
|
14623
|
-
weekdays:
|
|
14624
|
-
weekdaysMin:
|
|
14645
|
+
week: Hq,
|
|
14646
|
+
weekdays: Zq,
|
|
14647
|
+
weekdaysMin: $q,
|
|
14625
14648
|
weekdaysShort: Fr,
|
|
14626
|
-
meridiemParse:
|
|
14649
|
+
meridiemParse: qf
|
|
14627
14650
|
}, G1 = {}, Pe = {}, az;
|
|
14628
|
-
function
|
|
14651
|
+
function Wf(b, M) {
|
|
14629
14652
|
var p, o = Math.min(b.length, M.length);
|
|
14630
14653
|
for (p = 0; p < o; p += 1)
|
|
14631
14654
|
if (b[p] !== M[p])
|
|
@@ -14635,12 +14658,12 @@ function uf(b, M) {
|
|
|
14635
14658
|
function MO(b) {
|
|
14636
14659
|
return b && b.toLowerCase().replace("_", "-");
|
|
14637
14660
|
}
|
|
14638
|
-
function
|
|
14661
|
+
function hf(b) {
|
|
14639
14662
|
for (var M = 0, p, o, e, z; M < b.length; ) {
|
|
14640
14663
|
for (z = MO(b[M]).split("-"), p = z.length, o = MO(b[M + 1]), o = o ? o.split("-") : null; p > 0; ) {
|
|
14641
14664
|
if (e = sn(z.slice(0, p).join("-")), e)
|
|
14642
14665
|
return e;
|
|
14643
|
-
if (o && o.length >= p &&
|
|
14666
|
+
if (o && o.length >= p && Wf(z, o) >= p - 1)
|
|
14644
14667
|
break;
|
|
14645
14668
|
p--;
|
|
14646
14669
|
}
|
|
@@ -14648,12 +14671,12 @@ function Wf(b) {
|
|
|
14648
14671
|
}
|
|
14649
14672
|
return az;
|
|
14650
14673
|
}
|
|
14651
|
-
function
|
|
14674
|
+
function mf(b) {
|
|
14652
14675
|
return !!(b && b.match("^[^/\\\\]*$"));
|
|
14653
14676
|
}
|
|
14654
14677
|
function sn(b) {
|
|
14655
14678
|
var M = null, p;
|
|
14656
|
-
if (G1[b] === void 0 && typeof module < "u" && module && module.exports &&
|
|
14679
|
+
if (G1[b] === void 0 && typeof module < "u" && module && module.exports && mf(b))
|
|
14657
14680
|
try {
|
|
14658
14681
|
M = az._abbr, p = require, p("./locale/" + b), mp(M);
|
|
14659
14682
|
} catch {
|
|
@@ -14691,7 +14714,7 @@ function pa(b, M) {
|
|
|
14691
14714
|
} else
|
|
14692
14715
|
return delete G1[b], null;
|
|
14693
14716
|
}
|
|
14694
|
-
function
|
|
14717
|
+
function Rf(b, M) {
|
|
14695
14718
|
if (M != null) {
|
|
14696
14719
|
var p, o, e = Hr;
|
|
14697
14720
|
G1[b] != null && G1[b].parentLocale != null ? G1[b].set(u3(G1[b]._config, M)) : (o = sn(b), o != null && (e = o._config), M = u3(e, M), o == null && (M.abbr = b), p = new Y3(M), p.parentLocale = G1[b], G1[b] = p), mp(b);
|
|
@@ -14708,16 +14731,16 @@ function VM(b) {
|
|
|
14708
14731
|
return M;
|
|
14709
14732
|
b = [b];
|
|
14710
14733
|
}
|
|
14711
|
-
return
|
|
14734
|
+
return hf(b);
|
|
14712
14735
|
}
|
|
14713
|
-
function
|
|
14736
|
+
function gf() {
|
|
14714
14737
|
return W3(G1);
|
|
14715
14738
|
}
|
|
14716
14739
|
function oa(b) {
|
|
14717
14740
|
var M, p = b._a;
|
|
14718
|
-
return p && O1(b).overflow === -2 && (M = p[TM] < 0 || p[TM] > 11 ? TM : p[zM] < 1 || p[zM] > Z3(p[T2], p[TM]) ? zM : p[f2] < 0 || p[f2] > 24 || p[f2] === 24 && (p[Fb] !== 0 || p[kM] !== 0 || p[Hp] !== 0) ? f2 : p[Fb] < 0 || p[Fb] > 59 ? Fb : p[kM] < 0 || p[kM] > 59 ? kM : p[Hp] < 0 || p[Hp] > 999 ? Hp : -1, O1(b)._overflowDayOfYear && (M < T2 || M > zM) && (M = zM), O1(b)._overflowWeeks && M === -1 && (M =
|
|
14741
|
+
return p && O1(b).overflow === -2 && (M = p[TM] < 0 || p[TM] > 11 ? TM : p[zM] < 1 || p[zM] > Z3(p[T2], p[TM]) ? zM : p[f2] < 0 || p[f2] > 24 || p[f2] === 24 && (p[Fb] !== 0 || p[kM] !== 0 || p[Hp] !== 0) ? f2 : p[Fb] < 0 || p[Fb] > 59 ? Fb : p[kM] < 0 || p[kM] > 59 ? kM : p[Hp] < 0 || p[Hp] > 999 ? Hp : -1, O1(b)._overflowDayOfYear && (M < T2 || M > zM) && (M = zM), O1(b)._overflowWeeks && M === -1 && (M = vq), O1(b)._overflowWeekday && M === -1 && (M = yq), O1(b).overflow = M), b;
|
|
14719
14742
|
}
|
|
14720
|
-
var
|
|
14743
|
+
var Lf = /^\s*((?:[+-]\d{6}|\d{4})-(?:\d\d-\d\d|W\d\d-\d|W\d\d|\d\d\d|\d\d))(?:(T| )(\d\d(?::\d\d(?::\d\d(?:[.,]\d+)?)?)?)([+-]\d\d(?::?\d\d)?|\s*Z)?)?$/, Nf = /^\s*((?:[+-]\d{6}|\d{4})(?:\d\d\d\d|W\d\d\d|W\d\d|\d\d\d|\d\d|))(?:(T| )(\d\d(?:\d\d(?:\d\d(?:[.,]\d+)?)?)?)([+-]\d\d(?::?\d\d)?|\s*Z)?)?$/, vf = /Z|[+-]\d\d(?::?\d\d)?/, dt = [
|
|
14721
14744
|
["YYYYYY-MM-DD", /[+-]\d{6}-\d\d-\d\d/],
|
|
14722
14745
|
["YYYY-MM-DD", /\d{4}-\d\d-\d\d/],
|
|
14723
14746
|
["GGGG-[W]WW-E", /\d{4}-W\d\d-\d/],
|
|
@@ -14741,7 +14764,7 @@ var gf = /^\s*((?:[+-]\d{6}|\d{4})-(?:\d\d-\d\d|W\d\d-\d|W\d\d|\d\d\d|\d\d))(?:(
|
|
|
14741
14764
|
["HHmmss", /\d\d\d\d\d\d/],
|
|
14742
14765
|
["HHmm", /\d\d\d\d/],
|
|
14743
14766
|
["HH", /\d\d/]
|
|
14744
|
-
],
|
|
14767
|
+
], yf = /^\/?Date\((-?\d+)/i, Bf = /^(?:(Mon|Tue|Wed|Thu|Fri|Sat|Sun),?\s)?(\d{1,2})\s(Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)\s(\d{2,4})\s(\d\d):(\d\d)(?::(\d\d))?\s(?:(UT|GMT|[ECMP][SD]T)|([Zz])|([+-]\d{4}))$/, wf = {
|
|
14745
14768
|
UT: 0,
|
|
14746
14769
|
GMT: 0,
|
|
14747
14770
|
EDT: -4 * 60,
|
|
@@ -14754,7 +14777,7 @@ var gf = /^\s*((?:[+-]\d{6}|\d{4})-(?:\d\d-\d\d|W\d\d-\d|W\d\d|\d\d\d|\d\d))(?:(
|
|
|
14754
14777
|
PST: -8 * 60
|
|
14755
14778
|
};
|
|
14756
14779
|
function Yr(b) {
|
|
14757
|
-
var M, p, o = b._i, e =
|
|
14780
|
+
var M, p, o = b._i, e = Lf.exec(o) || Nf.exec(o), z, n, c, i, r = dt.length, d = Tc.length;
|
|
14758
14781
|
if (e) {
|
|
14759
14782
|
for (O1(b).iso = !0, M = 0, p = r; M < p; M++)
|
|
14760
14783
|
if (dt[M][1].exec(e[1])) {
|
|
@@ -14781,7 +14804,7 @@ function Yr(b) {
|
|
|
14781
14804
|
return;
|
|
14782
14805
|
}
|
|
14783
14806
|
if (e[4])
|
|
14784
|
-
if (
|
|
14807
|
+
if (vf.exec(e[4]))
|
|
14785
14808
|
i = "Z";
|
|
14786
14809
|
else {
|
|
14787
14810
|
b._isValid = !1;
|
|
@@ -14791,9 +14814,9 @@ function Yr(b) {
|
|
|
14791
14814
|
} else
|
|
14792
14815
|
b._isValid = !1;
|
|
14793
14816
|
}
|
|
14794
|
-
function
|
|
14817
|
+
function xf(b, M, p, o, e, z) {
|
|
14795
14818
|
var n = [
|
|
14796
|
-
|
|
14819
|
+
Xf(b),
|
|
14797
14820
|
kr.indexOf(M),
|
|
14798
14821
|
parseInt(p, 10),
|
|
14799
14822
|
parseInt(o, 10),
|
|
@@ -14801,14 +14824,14 @@ function wf(b, M, p, o, e, z) {
|
|
|
14801
14824
|
];
|
|
14802
14825
|
return z && n.push(parseInt(z, 10)), n;
|
|
14803
14826
|
}
|
|
14804
|
-
function
|
|
14827
|
+
function Xf(b) {
|
|
14805
14828
|
var M = parseInt(b, 10);
|
|
14806
14829
|
return M <= 49 ? 2e3 + M : M <= 999 ? 1900 + M : M;
|
|
14807
14830
|
}
|
|
14808
|
-
function
|
|
14831
|
+
function Sf(b) {
|
|
14809
14832
|
return b.replace(/\([^()]*\)|[\n\t]/g, " ").replace(/(\s\s+)/g, " ").replace(/^\s\s*/, "").replace(/\s\s*$/, "");
|
|
14810
14833
|
}
|
|
14811
|
-
function
|
|
14834
|
+
function _f(b, M, p) {
|
|
14812
14835
|
if (b) {
|
|
14813
14836
|
var o = Fr.indexOf(b), e = new Date(
|
|
14814
14837
|
M[0],
|
|
@@ -14820,32 +14843,32 @@ function Sf(b, M, p) {
|
|
|
14820
14843
|
}
|
|
14821
14844
|
return !0;
|
|
14822
14845
|
}
|
|
14823
|
-
function
|
|
14846
|
+
function Tf(b, M, p) {
|
|
14824
14847
|
if (b)
|
|
14825
|
-
return
|
|
14848
|
+
return wf[b];
|
|
14826
14849
|
if (M)
|
|
14827
14850
|
return 0;
|
|
14828
14851
|
var o = parseInt(p, 10), e = o % 100, z = (o - e) / 100;
|
|
14829
14852
|
return z * 60 + e;
|
|
14830
14853
|
}
|
|
14831
14854
|
function Gr(b) {
|
|
14832
|
-
var M =
|
|
14855
|
+
var M = Bf.exec(Sf(b._i)), p;
|
|
14833
14856
|
if (M) {
|
|
14834
|
-
if (p =
|
|
14857
|
+
if (p = xf(
|
|
14835
14858
|
M[4],
|
|
14836
14859
|
M[3],
|
|
14837
14860
|
M[2],
|
|
14838
14861
|
M[5],
|
|
14839
14862
|
M[6],
|
|
14840
14863
|
M[7]
|
|
14841
|
-
), !
|
|
14864
|
+
), !_f(M[1], p, b))
|
|
14842
14865
|
return;
|
|
14843
|
-
b._a = p, b._tzm =
|
|
14866
|
+
b._a = p, b._tzm = Tf(M[8], M[9], M[10]), b._d = nz.apply(null, b._a), b._d.setUTCMinutes(b._d.getUTCMinutes() - b._tzm), O1(b).rfc2822 = !0;
|
|
14844
14867
|
} else
|
|
14845
14868
|
b._isValid = !1;
|
|
14846
14869
|
}
|
|
14847
|
-
function
|
|
14848
|
-
var M =
|
|
14870
|
+
function kf(b) {
|
|
14871
|
+
var M = yf.exec(b._i);
|
|
14849
14872
|
if (M !== null) {
|
|
14850
14873
|
b._d = /* @__PURE__ */ new Date(+M[1]);
|
|
14851
14874
|
return;
|
|
@@ -14869,7 +14892,7 @@ E0.createFromInputFallback = Wb(
|
|
|
14869
14892
|
function Eo(b, M, p) {
|
|
14870
14893
|
return b ?? M ?? p;
|
|
14871
14894
|
}
|
|
14872
|
-
function
|
|
14895
|
+
function Pf(b) {
|
|
14873
14896
|
var M = new Date(E0.now());
|
|
14874
14897
|
return b._useUTC ? [
|
|
14875
14898
|
M.getUTCFullYear(),
|
|
@@ -14880,17 +14903,17 @@ function kf(b) {
|
|
|
14880
14903
|
function ea(b) {
|
|
14881
14904
|
var M, p, o = [], e, z, n;
|
|
14882
14905
|
if (!b._d) {
|
|
14883
|
-
for (e =
|
|
14906
|
+
for (e = Pf(b), b._w && b._a[zM] == null && b._a[TM] == null && Cf(b), b._dayOfYear != null && (n = Eo(b._a[T2], e[T2]), (b._dayOfYear > bz(n) || b._dayOfYear === 0) && (O1(b)._overflowDayOfYear = !0), p = nz(n, 0, b._dayOfYear), b._a[TM] = p.getUTCMonth(), b._a[zM] = p.getUTCDate()), M = 0; M < 3 && b._a[M] == null; ++M)
|
|
14884
14907
|
b._a[M] = o[M] = e[M];
|
|
14885
14908
|
for (; M < 7; M++)
|
|
14886
14909
|
b._a[M] = o[M] = b._a[M] == null ? M === 2 ? 1 : 0 : b._a[M];
|
|
14887
|
-
b._a[f2] === 24 && b._a[Fb] === 0 && b._a[kM] === 0 && b._a[Hp] === 0 && (b._nextDay = !0, b._a[f2] = 0), b._d = (b._useUTC ? nz :
|
|
14910
|
+
b._a[f2] === 24 && b._a[Fb] === 0 && b._a[kM] === 0 && b._a[Hp] === 0 && (b._nextDay = !0, b._a[f2] = 0), b._d = (b._useUTC ? nz : jq).apply(
|
|
14888
14911
|
null,
|
|
14889
14912
|
o
|
|
14890
14913
|
), z = b._useUTC ? b._d.getUTCDay() : b._d.getDay(), b._tzm != null && b._d.setUTCMinutes(b._d.getUTCMinutes() - b._tzm), b._nextDay && (b._a[f2] = 24), b._w && typeof b._w.d < "u" && b._w.d !== z && (O1(b).weekdayMismatch = !0);
|
|
14891
14914
|
}
|
|
14892
14915
|
}
|
|
14893
|
-
function
|
|
14916
|
+
function Cf(b) {
|
|
14894
14917
|
var M, p, o, e, z, n, c, i, r;
|
|
14895
14918
|
M = b._w, M.GG != null || M.W != null || M.E != null ? (z = 1, n = 4, p = Eo(
|
|
14896
14919
|
M.GG,
|
|
@@ -14914,20 +14937,20 @@ function za(b) {
|
|
|
14914
14937
|
b._a = [], O1(b).empty = !0;
|
|
14915
14938
|
var M = "" + b._i, p, o, e, z, n, c = M.length, i = 0, r, d;
|
|
14916
14939
|
for (e = Br(b._f, b._locale).match(G3) || [], d = e.length, p = 0; p < d; p++)
|
|
14917
|
-
z = e[p], o = (M.match(
|
|
14940
|
+
z = e[p], o = (M.match(gq(z, b)) || [])[0], o && (n = M.substr(0, M.indexOf(o)), n.length > 0 && O1(b).unusedInput.push(n), M = M.slice(
|
|
14918
14941
|
M.indexOf(o) + o.length
|
|
14919
|
-
), i += o.length), Jo[z] ? (o ? O1(b).empty = !1 : O1(b).unusedTokens.push(z),
|
|
14920
|
-
O1(b).charsLeftOver = c - i, M.length > 0 && O1(b).unusedInput.push(M), b._a[f2] <= 12 && O1(b).bigHour === !0 && b._a[f2] > 0 && (O1(b).bigHour = void 0), O1(b).parsedDateParts = b._a.slice(0), O1(b).meridiem = b._meridiem, b._a[f2] =
|
|
14942
|
+
), i += o.length), Jo[z] ? (o ? O1(b).empty = !1 : O1(b).unusedTokens.push(z), Nq(z, o, b)) : b._strict && !o && O1(b).unusedTokens.push(z);
|
|
14943
|
+
O1(b).charsLeftOver = c - i, M.length > 0 && O1(b).unusedInput.push(M), b._a[f2] <= 12 && O1(b).bigHour === !0 && b._a[f2] > 0 && (O1(b).bigHour = void 0), O1(b).parsedDateParts = b._a.slice(0), O1(b).meridiem = b._meridiem, b._a[f2] = Ef(
|
|
14921
14944
|
b._locale,
|
|
14922
14945
|
b._a[f2],
|
|
14923
14946
|
b._meridiem
|
|
14924
14947
|
), r = O1(b).era, r !== null && (b._a[T2] = b._locale.erasConvertYear(r, b._a[T2])), ea(b), oa(b);
|
|
14925
14948
|
}
|
|
14926
|
-
function
|
|
14949
|
+
function Ef(b, M, p) {
|
|
14927
14950
|
var o;
|
|
14928
14951
|
return p == null ? M : b.meridiemHour != null ? b.meridiemHour(M, p) : (b.isPM != null && (o = b.isPM(p), o && M < 12 && (M += 12), !o && M === 12 && (M = 0)), M);
|
|
14929
14952
|
}
|
|
14930
|
-
function
|
|
14953
|
+
function Df(b) {
|
|
14931
14954
|
var M, p, o, e, z, n, c = !1, i = b._f.length;
|
|
14932
14955
|
if (i === 0) {
|
|
14933
14956
|
O1(b).invalidFormat = !0, b._d = /* @__PURE__ */ new Date(NaN);
|
|
@@ -14937,7 +14960,7 @@ function Ef(b) {
|
|
|
14937
14960
|
z = 0, n = !1, M = H3({}, b), b._useUTC != null && (M._useUTC = b._useUTC), M._f = b._f[e], za(M), U3(M) && (n = !0), z += O1(M).charsLeftOver, z += O1(M).unusedTokens.length * 10, O1(M).score = z, c ? z < o && (o = z, p = M) : (o == null || z < o || n) && (o = z, p = M, n && (c = !0));
|
|
14938
14961
|
Wp(b, p || M);
|
|
14939
14962
|
}
|
|
14940
|
-
function
|
|
14963
|
+
function If(b) {
|
|
14941
14964
|
if (!b._d) {
|
|
14942
14965
|
var M = V3(b._i), p = M.day === void 0 ? M.date : M.day;
|
|
14943
14966
|
b._a = Nr(
|
|
@@ -14948,34 +14971,34 @@ function Df(b) {
|
|
|
14948
14971
|
), ea(b);
|
|
14949
14972
|
}
|
|
14950
14973
|
}
|
|
14951
|
-
function
|
|
14974
|
+
function Ff(b) {
|
|
14952
14975
|
var M = new dz(oa(Vr(b)));
|
|
14953
14976
|
return M._nextDay && (M.add(1, "d"), M._nextDay = void 0), M;
|
|
14954
14977
|
}
|
|
14955
14978
|
function Vr(b) {
|
|
14956
14979
|
var M = b._i, p = b._f;
|
|
14957
|
-
return b._locale = b._locale || VM(b._l), M === null || p === void 0 && M === "" ? zn({ nullInput: !0 }) : (typeof M == "string" && (b._i = M = b._locale.preparse(M)), Ub(M) ? new dz(oa(M)) : (Az(M) ? b._d = M : jb(p) ?
|
|
14980
|
+
return b._locale = b._locale || VM(b._l), M === null || p === void 0 && M === "" ? zn({ nullInput: !0 }) : (typeof M == "string" && (b._i = M = b._locale.preparse(M)), Ub(M) ? new dz(oa(M)) : (Az(M) ? b._d = M : jb(p) ? Df(b) : p ? za(b) : jf(b), U3(b) || (b._d = null), b));
|
|
14958
14981
|
}
|
|
14959
|
-
function
|
|
14982
|
+
function jf(b) {
|
|
14960
14983
|
var M = b._i;
|
|
14961
|
-
V2(M) ? b._d = new Date(E0.now()) : Az(M) ? b._d = new Date(M.valueOf()) : typeof M == "string" ?
|
|
14984
|
+
V2(M) ? b._d = new Date(E0.now()) : Az(M) ? b._d = new Date(M.valueOf()) : typeof M == "string" ? kf(b) : jb(M) ? (b._a = Nr(M.slice(0), function(p) {
|
|
14962
14985
|
return parseInt(p, 10);
|
|
14963
|
-
}), ea(b)) : Kp(M) ?
|
|
14986
|
+
}), ea(b)) : Kp(M) ? If(b) : HM(M) ? b._d = new Date(M) : E0.createFromInputFallback(b);
|
|
14964
14987
|
}
|
|
14965
14988
|
function Kr(b, M, p, o, e) {
|
|
14966
14989
|
var z = {};
|
|
14967
|
-
return (M === !0 || M === !1) && (o = M, M = void 0), (p === !0 || p === !1) && (o = p, p = void 0), (Kp(b) && j3(b) || jb(b) && b.length === 0) && (b = void 0), z._isAMomentObject = !0, z._useUTC = z._isUTC = e, z._l = p, z._i = b, z._f = M, z._strict = o,
|
|
14990
|
+
return (M === !0 || M === !1) && (o = M, M = void 0), (p === !0 || p === !1) && (o = p, p = void 0), (Kp(b) && j3(b) || jb(b) && b.length === 0) && (b = void 0), z._isAMomentObject = !0, z._useUTC = z._isUTC = e, z._l = p, z._i = b, z._f = M, z._strict = o, Ff(z);
|
|
14968
14991
|
}
|
|
14969
14992
|
function j1(b, M, p, o) {
|
|
14970
14993
|
return Kr(b, M, p, o, !1);
|
|
14971
14994
|
}
|
|
14972
|
-
var
|
|
14995
|
+
var Uf = Wb(
|
|
14973
14996
|
"moment().min is deprecated, use moment.max instead. http://momentjs.com/guides/#/warnings/min-max/",
|
|
14974
14997
|
function() {
|
|
14975
14998
|
var b = j1.apply(null, arguments);
|
|
14976
14999
|
return this.isValid() && b.isValid() ? b < this ? this : b : zn();
|
|
14977
15000
|
}
|
|
14978
|
-
),
|
|
15001
|
+
), Hf = Wb(
|
|
14979
15002
|
"moment().max is deprecated, use moment.min instead. http://momentjs.com/guides/#/warnings/min-max/",
|
|
14980
15003
|
function() {
|
|
14981
15004
|
var b = j1.apply(null, arguments);
|
|
@@ -14990,15 +15013,15 @@ function Jr(b, M) {
|
|
|
14990
15013
|
(!M[o].isValid() || M[o][b](p)) && (p = M[o]);
|
|
14991
15014
|
return p;
|
|
14992
15015
|
}
|
|
14993
|
-
function
|
|
15016
|
+
function Yf() {
|
|
14994
15017
|
var b = [].slice.call(arguments, 0);
|
|
14995
15018
|
return Jr("isBefore", b);
|
|
14996
15019
|
}
|
|
14997
|
-
function
|
|
15020
|
+
function Gf() {
|
|
14998
15021
|
var b = [].slice.call(arguments, 0);
|
|
14999
15022
|
return Jr("isAfter", b);
|
|
15000
15023
|
}
|
|
15001
|
-
var
|
|
15024
|
+
var Vf = function() {
|
|
15002
15025
|
return Date.now ? Date.now() : +/* @__PURE__ */ new Date();
|
|
15003
15026
|
}, Ce = [
|
|
15004
15027
|
"year",
|
|
@@ -15011,7 +15034,7 @@ var Gf = function() {
|
|
|
15011
15034
|
"second",
|
|
15012
15035
|
"millisecond"
|
|
15013
15036
|
];
|
|
15014
|
-
function
|
|
15037
|
+
function Kf(b) {
|
|
15015
15038
|
var M, p = !1, o, e = Ce.length;
|
|
15016
15039
|
for (M in b)
|
|
15017
15040
|
if (R1(b, M) && !(t2.call(Ce, M) !== -1 && (b[M] == null || !isNaN(b[M]))))
|
|
@@ -15024,15 +15047,15 @@ function Vf(b) {
|
|
|
15024
15047
|
}
|
|
15025
15048
|
return !0;
|
|
15026
15049
|
}
|
|
15027
|
-
function
|
|
15050
|
+
function Jf() {
|
|
15028
15051
|
return this._isValid;
|
|
15029
15052
|
}
|
|
15030
|
-
function
|
|
15053
|
+
function Qf() {
|
|
15031
15054
|
return Gb(NaN);
|
|
15032
15055
|
}
|
|
15033
15056
|
function An(b) {
|
|
15034
15057
|
var M = V3(b), p = M.year || 0, o = M.quarter || 0, e = M.month || 0, z = M.week || M.isoWeek || 0, n = M.day || 0, c = M.hour || 0, i = M.minute || 0, r = M.second || 0, d = M.millisecond || 0;
|
|
15035
|
-
this._isValid =
|
|
15058
|
+
this._isValid = Kf(M), this._milliseconds = +d + r * 1e3 + // 1000
|
|
15036
15059
|
i * 6e4 + // 1000 * 60
|
|
15037
15060
|
c * 1e3 * 60 * 60, this._days = +n + z * 7, this._months = +e + o * 3 + p * 12, this._data = {}, this._locale = VM(), this._bubble();
|
|
15038
15061
|
}
|
|
@@ -15042,7 +15065,7 @@ function yt(b) {
|
|
|
15042
15065
|
function m3(b) {
|
|
15043
15066
|
return b < 0 ? Math.round(-1 * b) * -1 : Math.round(b);
|
|
15044
15067
|
}
|
|
15045
|
-
function
|
|
15068
|
+
function Zf(b, M, p) {
|
|
15046
15069
|
var o = Math.min(b.length, M.length), e = Math.abs(b.length - M.length), z = 0, n;
|
|
15047
15070
|
for (n = 0; n < o; n++)
|
|
15048
15071
|
l1(b[n]) !== l1(M[n]) && z++;
|
|
@@ -15061,10 +15084,10 @@ F0("ZZ", On);
|
|
|
15061
15084
|
T1(["Z", "ZZ"], function(b, M, p) {
|
|
15062
15085
|
p._useUTC = !0, p._tzm = ta(On, b);
|
|
15063
15086
|
});
|
|
15064
|
-
var
|
|
15087
|
+
var $f = /([\+\-]|\d\d)/gi;
|
|
15065
15088
|
function ta(b, M) {
|
|
15066
15089
|
var p = (M || "").match(b), o, e, z;
|
|
15067
|
-
return p === null ? null : (o = p[p.length - 1] || [], e = (o + "").match(
|
|
15090
|
+
return p === null ? null : (o = p[p.length - 1] || [], e = (o + "").match($f) || ["-", 0, 0], z = +(e[1] * 60) + l1(e[2]), z === 0 ? 0 : e[0] === "+" ? z : -z);
|
|
15068
15091
|
}
|
|
15069
15092
|
function na(b, M) {
|
|
15070
15093
|
var p, o;
|
|
@@ -15075,7 +15098,7 @@ function R3(b) {
|
|
|
15075
15098
|
}
|
|
15076
15099
|
E0.updateOffset = function() {
|
|
15077
15100
|
};
|
|
15078
|
-
function
|
|
15101
|
+
function bu(b, M, p) {
|
|
15079
15102
|
var o = this._offset || 0, e;
|
|
15080
15103
|
if (!this.isValid())
|
|
15081
15104
|
return b != null ? this : NaN;
|
|
@@ -15093,53 +15116,53 @@ function $f(b, M, p) {
|
|
|
15093
15116
|
} else
|
|
15094
15117
|
return this._isUTC ? o : R3(this);
|
|
15095
15118
|
}
|
|
15096
|
-
function
|
|
15119
|
+
function Mu(b, M) {
|
|
15097
15120
|
return b != null ? (typeof b != "string" && (b = -b), this.utcOffset(b, M), this) : -this.utcOffset();
|
|
15098
15121
|
}
|
|
15099
|
-
function
|
|
15122
|
+
function pu(b) {
|
|
15100
15123
|
return this.utcOffset(0, b);
|
|
15101
15124
|
}
|
|
15102
|
-
function
|
|
15125
|
+
function ou(b) {
|
|
15103
15126
|
return this._isUTC && (this.utcOffset(0, b), this._isUTC = !1, b && this.subtract(R3(this), "m")), this;
|
|
15104
15127
|
}
|
|
15105
|
-
function
|
|
15128
|
+
function eu() {
|
|
15106
15129
|
if (this._tzm != null)
|
|
15107
15130
|
this.utcOffset(this._tzm, !1, !0);
|
|
15108
15131
|
else if (typeof this._i == "string") {
|
|
15109
|
-
var b = ta(
|
|
15132
|
+
var b = ta(mq, this._i);
|
|
15110
15133
|
b != null ? this.utcOffset(b) : this.utcOffset(0, !0);
|
|
15111
15134
|
}
|
|
15112
15135
|
return this;
|
|
15113
15136
|
}
|
|
15114
|
-
function
|
|
15137
|
+
function zu(b) {
|
|
15115
15138
|
return this.isValid() ? (b = b ? j1(b).utcOffset() : 0, (this.utcOffset() - b) % 60 === 0) : !1;
|
|
15116
15139
|
}
|
|
15117
|
-
function
|
|
15140
|
+
function tu() {
|
|
15118
15141
|
return this.utcOffset() > this.clone().month(0).utcOffset() || this.utcOffset() > this.clone().month(5).utcOffset();
|
|
15119
15142
|
}
|
|
15120
|
-
function
|
|
15143
|
+
function nu() {
|
|
15121
15144
|
if (!V2(this._isDSTShifted))
|
|
15122
15145
|
return this._isDSTShifted;
|
|
15123
15146
|
var b = {}, M;
|
|
15124
|
-
return H3(b, this), b = Vr(b), b._a ? (M = b._isUTC ? qM(b._a) : j1(b._a), this._isDSTShifted = this.isValid() &&
|
|
15147
|
+
return H3(b, this), b = Vr(b), b._a ? (M = b._isUTC ? qM(b._a) : j1(b._a), this._isDSTShifted = this.isValid() && Zf(b._a, M.toArray()) > 0) : this._isDSTShifted = !1, this._isDSTShifted;
|
|
15125
15148
|
}
|
|
15126
|
-
function
|
|
15149
|
+
function cu() {
|
|
15127
15150
|
return this.isValid() ? !this._isUTC : !1;
|
|
15128
15151
|
}
|
|
15129
|
-
function
|
|
15152
|
+
function au() {
|
|
15130
15153
|
return this.isValid() ? this._isUTC : !1;
|
|
15131
15154
|
}
|
|
15132
15155
|
function Zr() {
|
|
15133
15156
|
return this.isValid() ? this._isUTC && this._offset === 0 : !1;
|
|
15134
15157
|
}
|
|
15135
|
-
var
|
|
15158
|
+
var iu = /^(-|\+)?(?:(\d*)[. ])?(\d+):(\d+)(?::(\d+)(\.\d*)?)?$/, Ou = /^(-|\+)?P(?:([-+]?[0-9,.]*)Y)?(?:([-+]?[0-9,.]*)M)?(?:([-+]?[0-9,.]*)W)?(?:([-+]?[0-9,.]*)D)?(?:T(?:([-+]?[0-9,.]*)H)?(?:([-+]?[0-9,.]*)M)?(?:([-+]?[0-9,.]*)S)?)?$/;
|
|
15136
15159
|
function Gb(b, M) {
|
|
15137
15160
|
var p = b, o = null, e, z, n;
|
|
15138
15161
|
return yt(b) ? p = {
|
|
15139
15162
|
ms: b._milliseconds,
|
|
15140
15163
|
d: b._days,
|
|
15141
15164
|
M: b._months
|
|
15142
|
-
} : HM(b) || !isNaN(+b) ? (p = {}, M ? p[M] = +b : p.milliseconds = +b) : (o =
|
|
15165
|
+
} : HM(b) || !isNaN(+b) ? (p = {}, M ? p[M] = +b : p.milliseconds = +b) : (o = iu.exec(b)) ? (e = o[1] === "-" ? -1 : 1, p = {
|
|
15143
15166
|
y: 0,
|
|
15144
15167
|
d: l1(o[zM]) * e,
|
|
15145
15168
|
h: l1(o[f2]) * e,
|
|
@@ -15147,7 +15170,7 @@ function Gb(b, M) {
|
|
|
15147
15170
|
s: l1(o[kM]) * e,
|
|
15148
15171
|
ms: l1(m3(o[Hp] * 1e3)) * e
|
|
15149
15172
|
// the millisecond decimal point is included in the match
|
|
15150
|
-
}) : (o =
|
|
15173
|
+
}) : (o = Ou.exec(b)) ? (e = o[1] === "-" ? -1 : 1, p = {
|
|
15151
15174
|
y: Dp(o[2], e),
|
|
15152
15175
|
M: Dp(o[3], e),
|
|
15153
15176
|
w: Dp(o[4], e),
|
|
@@ -15155,13 +15178,13 @@ function Gb(b, M) {
|
|
|
15155
15178
|
h: Dp(o[6], e),
|
|
15156
15179
|
m: Dp(o[7], e),
|
|
15157
15180
|
s: Dp(o[8], e)
|
|
15158
|
-
}) : p == null ? p = {} : typeof p == "object" && ("from" in p || "to" in p) && (n =
|
|
15181
|
+
}) : p == null ? p = {} : typeof p == "object" && ("from" in p || "to" in p) && (n = ru(
|
|
15159
15182
|
j1(p.from),
|
|
15160
15183
|
j1(p.to)
|
|
15161
15184
|
), p = {}, p.ms = n.milliseconds, p.M = n.months), z = new An(p), yt(b) && R1(b, "_locale") && (z._locale = b._locale), yt(b) && R1(b, "_isValid") && (z._isValid = b._isValid), z;
|
|
15162
15185
|
}
|
|
15163
15186
|
Gb.fn = An.prototype;
|
|
15164
|
-
Gb.invalid =
|
|
15187
|
+
Gb.invalid = Qf;
|
|
15165
15188
|
function Dp(b, M) {
|
|
15166
15189
|
var p = b && parseFloat(b.replace(",", "."));
|
|
15167
15190
|
return (isNaN(p) ? 0 : p) * M;
|
|
@@ -15170,7 +15193,7 @@ function pO(b, M) {
|
|
|
15170
15193
|
var p = {};
|
|
15171
15194
|
return p.months = M.month() - b.month() + (M.year() - b.year()) * 12, b.clone().add(p.months, "M").isAfter(M) && --p.months, p.milliseconds = +M - +b.clone().add(p.months, "M"), p;
|
|
15172
15195
|
}
|
|
15173
|
-
function
|
|
15196
|
+
function ru(b, M) {
|
|
15174
15197
|
var p;
|
|
15175
15198
|
return b.isValid() && M.isValid() ? (M = na(M, b), b.isBefore(M) ? p = pO(b, M) : (p = pO(M, b), p.milliseconds = -p.milliseconds, p.months = -p.months), p) : { milliseconds: 0, months: 0 };
|
|
15176
15199
|
}
|
|
@@ -15187,14 +15210,14 @@ function bs(b, M, p, o) {
|
|
|
15187
15210
|
var e = M._milliseconds, z = m3(M._days), n = m3(M._months);
|
|
15188
15211
|
b.isValid() && (o = o ?? !0, n && Cr(b, tz(b, "Month") + n * p), z && Tr(b, "Date", tz(b, "Date") + z * p), e && b._d.setTime(b._d.valueOf() + e * p), o && E0.updateOffset(b, z || n));
|
|
15189
15212
|
}
|
|
15190
|
-
var
|
|
15213
|
+
var su = $r(1, "add"), Au = $r(-1, "subtract");
|
|
15191
15214
|
function Ms(b) {
|
|
15192
15215
|
return typeof b == "string" || b instanceof String;
|
|
15193
15216
|
}
|
|
15194
|
-
function Au(b) {
|
|
15195
|
-
return Ub(b) || Az(b) || Ms(b) || HM(b) || lu(b) || du(b) || b === null || b === void 0;
|
|
15196
|
-
}
|
|
15197
15217
|
function du(b) {
|
|
15218
|
+
return Ub(b) || Az(b) || Ms(b) || HM(b) || qu(b) || lu(b) || b === null || b === void 0;
|
|
15219
|
+
}
|
|
15220
|
+
function lu(b) {
|
|
15198
15221
|
var M = Kp(b) && !j3(b), p = !1, o = [
|
|
15199
15222
|
"years",
|
|
15200
15223
|
"year",
|
|
@@ -15225,13 +15248,13 @@ function du(b) {
|
|
|
15225
15248
|
z = o[e], p = p || R1(b, z);
|
|
15226
15249
|
return M && p;
|
|
15227
15250
|
}
|
|
15228
|
-
function
|
|
15251
|
+
function qu(b) {
|
|
15229
15252
|
var M = jb(b), p = !1;
|
|
15230
15253
|
return M && (p = b.filter(function(o) {
|
|
15231
15254
|
return !HM(o) && Ms(b);
|
|
15232
15255
|
}).length === 0), M && p;
|
|
15233
15256
|
}
|
|
15234
|
-
function
|
|
15257
|
+
function fu(b) {
|
|
15235
15258
|
var M = Kp(b) && !j3(b), p = !1, o = [
|
|
15236
15259
|
"sameDay",
|
|
15237
15260
|
"nextDay",
|
|
@@ -15244,43 +15267,43 @@ function qu(b) {
|
|
|
15244
15267
|
z = o[e], p = p || R1(b, z);
|
|
15245
15268
|
return M && p;
|
|
15246
15269
|
}
|
|
15247
|
-
function
|
|
15270
|
+
function uu(b, M) {
|
|
15248
15271
|
var p = b.diff(M, "days", !0);
|
|
15249
15272
|
return p < -6 ? "sameElse" : p < -1 ? "lastWeek" : p < 0 ? "lastDay" : p < 1 ? "sameDay" : p < 2 ? "nextDay" : p < 7 ? "nextWeek" : "sameElse";
|
|
15250
15273
|
}
|
|
15251
|
-
function
|
|
15252
|
-
arguments.length === 1 && (arguments[0] ?
|
|
15274
|
+
function Wu(b, M) {
|
|
15275
|
+
arguments.length === 1 && (arguments[0] ? du(arguments[0]) ? (b = arguments[0], M = void 0) : fu(arguments[0]) && (M = arguments[0], b = void 0) : (b = void 0, M = void 0));
|
|
15253
15276
|
var p = b || j1(), o = na(p, this).startOf("day"), e = E0.calendarFormat(this, o) || "sameElse", z = M && (fM(M[e]) ? M[e].call(this, p) : M[e]);
|
|
15254
15277
|
return this.format(
|
|
15255
15278
|
z || this.localeData().calendar(e, this, j1(p))
|
|
15256
15279
|
);
|
|
15257
15280
|
}
|
|
15258
|
-
function
|
|
15281
|
+
function hu() {
|
|
15259
15282
|
return new dz(this);
|
|
15260
15283
|
}
|
|
15261
|
-
function
|
|
15284
|
+
function mu(b, M) {
|
|
15262
15285
|
var p = Ub(b) ? b : j1(b);
|
|
15263
15286
|
return this.isValid() && p.isValid() ? (M = hb(M) || "millisecond", M === "millisecond" ? this.valueOf() > p.valueOf() : p.valueOf() < this.clone().startOf(M).valueOf()) : !1;
|
|
15264
15287
|
}
|
|
15265
|
-
function
|
|
15288
|
+
function Ru(b, M) {
|
|
15266
15289
|
var p = Ub(b) ? b : j1(b);
|
|
15267
15290
|
return this.isValid() && p.isValid() ? (M = hb(M) || "millisecond", M === "millisecond" ? this.valueOf() < p.valueOf() : this.clone().endOf(M).valueOf() < p.valueOf()) : !1;
|
|
15268
15291
|
}
|
|
15269
|
-
function
|
|
15292
|
+
function gu(b, M, p, o) {
|
|
15270
15293
|
var e = Ub(b) ? b : j1(b), z = Ub(M) ? M : j1(M);
|
|
15271
15294
|
return this.isValid() && e.isValid() && z.isValid() ? (o = o || "()", (o[0] === "(" ? this.isAfter(e, p) : !this.isBefore(e, p)) && (o[1] === ")" ? this.isBefore(z, p) : !this.isAfter(z, p))) : !1;
|
|
15272
15295
|
}
|
|
15273
|
-
function
|
|
15296
|
+
function Lu(b, M) {
|
|
15274
15297
|
var p = Ub(b) ? b : j1(b), o;
|
|
15275
15298
|
return this.isValid() && p.isValid() ? (M = hb(M) || "millisecond", M === "millisecond" ? this.valueOf() === p.valueOf() : (o = p.valueOf(), this.clone().startOf(M).valueOf() <= o && o <= this.clone().endOf(M).valueOf())) : !1;
|
|
15276
15299
|
}
|
|
15277
|
-
function
|
|
15300
|
+
function Nu(b, M) {
|
|
15278
15301
|
return this.isSame(b, M) || this.isAfter(b, M);
|
|
15279
15302
|
}
|
|
15280
|
-
function
|
|
15303
|
+
function vu(b, M) {
|
|
15281
15304
|
return this.isSame(b, M) || this.isBefore(b, M);
|
|
15282
15305
|
}
|
|
15283
|
-
function
|
|
15306
|
+
function yu(b, M, p) {
|
|
15284
15307
|
var o, e, z;
|
|
15285
15308
|
if (!this.isValid())
|
|
15286
15309
|
return NaN;
|
|
@@ -15324,10 +15347,10 @@ function Bt(b, M) {
|
|
|
15324
15347
|
}
|
|
15325
15348
|
E0.defaultFormat = "YYYY-MM-DDTHH:mm:ssZ";
|
|
15326
15349
|
E0.defaultFormatUtc = "YYYY-MM-DDTHH:mm:ss[Z]";
|
|
15327
|
-
function
|
|
15350
|
+
function Bu() {
|
|
15328
15351
|
return this.clone().locale("en").format("ddd MMM DD YYYY HH:mm:ss [GMT]ZZ");
|
|
15329
15352
|
}
|
|
15330
|
-
function
|
|
15353
|
+
function wu(b) {
|
|
15331
15354
|
if (!this.isValid())
|
|
15332
15355
|
return null;
|
|
15333
15356
|
var M = b !== !0, p = M ? this.clone().utc() : this;
|
|
@@ -15339,27 +15362,27 @@ function Bu(b) {
|
|
|
15339
15362
|
M ? "YYYY-MM-DD[T]HH:mm:ss.SSS[Z]" : "YYYY-MM-DD[T]HH:mm:ss.SSSZ"
|
|
15340
15363
|
);
|
|
15341
15364
|
}
|
|
15342
|
-
function
|
|
15365
|
+
function xu() {
|
|
15343
15366
|
if (!this.isValid())
|
|
15344
15367
|
return "moment.invalid(/* " + this._i + " */)";
|
|
15345
15368
|
var b = "moment", M = "", p, o, e, z;
|
|
15346
15369
|
return this.isLocal() || (b = this.utcOffset() === 0 ? "moment.utc" : "moment.parseZone", M = "Z"), p = "[" + b + '("]', o = 0 <= this.year() && this.year() <= 9999 ? "YYYY" : "YYYYYY", e = "-MM-DD[T]HH:mm:ss.SSS", z = M + '[")]', this.format(p + o + e + z);
|
|
15347
15370
|
}
|
|
15348
|
-
function
|
|
15371
|
+
function Xu(b) {
|
|
15349
15372
|
b || (b = this.isUtc() ? E0.defaultFormatUtc : E0.defaultFormat);
|
|
15350
15373
|
var M = vt(this, b);
|
|
15351
15374
|
return this.localeData().postformat(M);
|
|
15352
15375
|
}
|
|
15353
|
-
function
|
|
15376
|
+
function Su(b, M) {
|
|
15354
15377
|
return this.isValid() && (Ub(b) && b.isValid() || j1(b).isValid()) ? Gb({ to: this, from: b }).locale(this.locale()).humanize(!M) : this.localeData().invalidDate();
|
|
15355
15378
|
}
|
|
15356
|
-
function
|
|
15379
|
+
function _u(b) {
|
|
15357
15380
|
return this.from(j1(), b);
|
|
15358
15381
|
}
|
|
15359
|
-
function
|
|
15382
|
+
function Tu(b, M) {
|
|
15360
15383
|
return this.isValid() && (Ub(b) && b.isValid() || j1(b).isValid()) ? Gb({ from: this, to: b }).locale(this.locale()).humanize(!M) : this.localeData().invalidDate();
|
|
15361
15384
|
}
|
|
15362
|
-
function
|
|
15385
|
+
function ku(b) {
|
|
15363
15386
|
return this.to(j1(), b);
|
|
15364
15387
|
}
|
|
15365
15388
|
function ps(b) {
|
|
@@ -15385,7 +15408,7 @@ function ts(b, M, p) {
|
|
|
15385
15408
|
function ns(b, M, p) {
|
|
15386
15409
|
return b < 100 && b >= 0 ? Date.UTC(b + 400, M, p) - zs : Date.UTC(b, M, p);
|
|
15387
15410
|
}
|
|
15388
|
-
function
|
|
15411
|
+
function Pu(b) {
|
|
15389
15412
|
var M, p;
|
|
15390
15413
|
if (b = hb(b), b === void 0 || b === "millisecond" || !this.isValid())
|
|
15391
15414
|
return this;
|
|
@@ -15436,7 +15459,7 @@ function ku(b) {
|
|
|
15436
15459
|
}
|
|
15437
15460
|
return this._d.setTime(M), E0.updateOffset(this, !0), this;
|
|
15438
15461
|
}
|
|
15439
|
-
function
|
|
15462
|
+
function Cu(b) {
|
|
15440
15463
|
var M, p;
|
|
15441
15464
|
if (b = hb(b), b === void 0 || b === "millisecond" || !this.isValid())
|
|
15442
15465
|
return this;
|
|
@@ -15487,16 +15510,16 @@ function Pu(b) {
|
|
|
15487
15510
|
}
|
|
15488
15511
|
return this._d.setTime(M), E0.updateOffset(this, !0), this;
|
|
15489
15512
|
}
|
|
15490
|
-
function
|
|
15513
|
+
function Eu() {
|
|
15491
15514
|
return this._d.valueOf() - (this._offset || 0) * 6e4;
|
|
15492
15515
|
}
|
|
15493
|
-
function
|
|
15516
|
+
function Du() {
|
|
15494
15517
|
return Math.floor(this.valueOf() / 1e3);
|
|
15495
15518
|
}
|
|
15496
|
-
function
|
|
15519
|
+
function Iu() {
|
|
15497
15520
|
return new Date(this.valueOf());
|
|
15498
15521
|
}
|
|
15499
|
-
function
|
|
15522
|
+
function Fu() {
|
|
15500
15523
|
var b = this;
|
|
15501
15524
|
return [
|
|
15502
15525
|
b.year(),
|
|
@@ -15508,7 +15531,7 @@ function Iu() {
|
|
|
15508
15531
|
b.millisecond()
|
|
15509
15532
|
];
|
|
15510
15533
|
}
|
|
15511
|
-
function
|
|
15534
|
+
function ju() {
|
|
15512
15535
|
var b = this;
|
|
15513
15536
|
return {
|
|
15514
15537
|
years: b.year(),
|
|
@@ -15520,19 +15543,19 @@ function Fu() {
|
|
|
15520
15543
|
milliseconds: b.milliseconds()
|
|
15521
15544
|
};
|
|
15522
15545
|
}
|
|
15523
|
-
function
|
|
15546
|
+
function Uu() {
|
|
15524
15547
|
return this.isValid() ? this.toISOString() : null;
|
|
15525
15548
|
}
|
|
15526
|
-
function
|
|
15549
|
+
function Hu() {
|
|
15527
15550
|
return U3(this);
|
|
15528
15551
|
}
|
|
15529
|
-
function
|
|
15552
|
+
function Yu() {
|
|
15530
15553
|
return Wp({}, O1(this));
|
|
15531
15554
|
}
|
|
15532
|
-
function
|
|
15555
|
+
function Gu() {
|
|
15533
15556
|
return O1(this).overflow;
|
|
15534
15557
|
}
|
|
15535
|
-
function
|
|
15558
|
+
function Vu() {
|
|
15536
15559
|
return {
|
|
15537
15560
|
input: this._i,
|
|
15538
15561
|
format: this._f,
|
|
@@ -15553,8 +15576,8 @@ V0("y", ["yyyy", 4], 0, "eraYear");
|
|
|
15553
15576
|
F0("N", ca);
|
|
15554
15577
|
F0("NN", ca);
|
|
15555
15578
|
F0("NNN", ca);
|
|
15556
|
-
F0("NNNN",
|
|
15557
|
-
F0("NNNNN",
|
|
15579
|
+
F0("NNNN", z6);
|
|
15580
|
+
F0("NNNNN", t6);
|
|
15558
15581
|
T1(
|
|
15559
15582
|
["N", "NN", "NNN", "NNNN", "NNNNN"],
|
|
15560
15583
|
function(b, M, p, o) {
|
|
@@ -15566,13 +15589,13 @@ F0("y", oe);
|
|
|
15566
15589
|
F0("yy", oe);
|
|
15567
15590
|
F0("yyy", oe);
|
|
15568
15591
|
F0("yyyy", oe);
|
|
15569
|
-
F0("yo",
|
|
15592
|
+
F0("yo", n6);
|
|
15570
15593
|
T1(["y", "yy", "yyy", "yyyy"], T2);
|
|
15571
15594
|
T1(["yo"], function(b, M, p, o) {
|
|
15572
15595
|
var e;
|
|
15573
15596
|
p._locale._eraYearOrdinalRegex && (e = b.match(p._locale._eraYearOrdinalRegex)), p._locale.eraYearOrdinalParse ? M[T2] = p._locale.eraYearOrdinalParse(b, e) : M[T2] = parseInt(b, 10);
|
|
15574
15597
|
});
|
|
15575
|
-
function
|
|
15598
|
+
function Ku(b, M) {
|
|
15576
15599
|
var p, o, e, z = this._eras || VM("en")._eras;
|
|
15577
15600
|
for (p = 0, o = z.length; p < o; ++p) {
|
|
15578
15601
|
switch (typeof z[p].since) {
|
|
@@ -15591,7 +15614,7 @@ function Vu(b, M) {
|
|
|
15591
15614
|
}
|
|
15592
15615
|
return z;
|
|
15593
15616
|
}
|
|
15594
|
-
function
|
|
15617
|
+
function Ju(b, M, p) {
|
|
15595
15618
|
var o, e, z = this.eras(), n, c, i;
|
|
15596
15619
|
for (b = b.toUpperCase(), o = 0, e = z.length; o < e; ++o)
|
|
15597
15620
|
if (n = z[o].name.toUpperCase(), c = z[o].abbr.toUpperCase(), i = z[o].narrow.toUpperCase(), p)
|
|
@@ -15614,57 +15637,57 @@ function Ku(b, M, p) {
|
|
|
15614
15637
|
else if ([n, c, i].indexOf(b) >= 0)
|
|
15615
15638
|
return z[o];
|
|
15616
15639
|
}
|
|
15617
|
-
function
|
|
15640
|
+
function Qu(b, M) {
|
|
15618
15641
|
var p = b.since <= b.until ? 1 : -1;
|
|
15619
15642
|
return M === void 0 ? E0(b.since).year() : E0(b.since).year() + (M - b.offset) * p;
|
|
15620
15643
|
}
|
|
15621
|
-
function
|
|
15644
|
+
function Zu() {
|
|
15622
15645
|
var b, M, p, o = this.localeData().eras();
|
|
15623
15646
|
for (b = 0, M = o.length; b < M; ++b)
|
|
15624
15647
|
if (p = this.clone().startOf("day").valueOf(), o[b].since <= p && p <= o[b].until || o[b].until <= p && p <= o[b].since)
|
|
15625
15648
|
return o[b].name;
|
|
15626
15649
|
return "";
|
|
15627
15650
|
}
|
|
15628
|
-
function
|
|
15651
|
+
function $u() {
|
|
15629
15652
|
var b, M, p, o = this.localeData().eras();
|
|
15630
15653
|
for (b = 0, M = o.length; b < M; ++b)
|
|
15631
15654
|
if (p = this.clone().startOf("day").valueOf(), o[b].since <= p && p <= o[b].until || o[b].until <= p && p <= o[b].since)
|
|
15632
15655
|
return o[b].narrow;
|
|
15633
15656
|
return "";
|
|
15634
15657
|
}
|
|
15635
|
-
function
|
|
15658
|
+
function b6() {
|
|
15636
15659
|
var b, M, p, o = this.localeData().eras();
|
|
15637
15660
|
for (b = 0, M = o.length; b < M; ++b)
|
|
15638
15661
|
if (p = this.clone().startOf("day").valueOf(), o[b].since <= p && p <= o[b].until || o[b].until <= p && p <= o[b].since)
|
|
15639
15662
|
return o[b].abbr;
|
|
15640
15663
|
return "";
|
|
15641
15664
|
}
|
|
15642
|
-
function
|
|
15665
|
+
function M6() {
|
|
15643
15666
|
var b, M, p, o, e = this.localeData().eras();
|
|
15644
15667
|
for (b = 0, M = e.length; b < M; ++b)
|
|
15645
15668
|
if (p = e[b].since <= e[b].until ? 1 : -1, o = this.clone().startOf("day").valueOf(), e[b].since <= o && o <= e[b].until || e[b].until <= o && o <= e[b].since)
|
|
15646
15669
|
return (this.year() - E0(e[b].since).year()) * p + e[b].offset;
|
|
15647
15670
|
return this.year();
|
|
15648
15671
|
}
|
|
15649
|
-
function
|
|
15672
|
+
function p6(b) {
|
|
15650
15673
|
return R1(this, "_erasNameRegex") || aa.call(this), b ? this._erasNameRegex : this._erasRegex;
|
|
15651
15674
|
}
|
|
15652
|
-
function
|
|
15675
|
+
function o6(b) {
|
|
15653
15676
|
return R1(this, "_erasAbbrRegex") || aa.call(this), b ? this._erasAbbrRegex : this._erasRegex;
|
|
15654
15677
|
}
|
|
15655
|
-
function
|
|
15678
|
+
function e6(b) {
|
|
15656
15679
|
return R1(this, "_erasNarrowRegex") || aa.call(this), b ? this._erasNarrowRegex : this._erasRegex;
|
|
15657
15680
|
}
|
|
15658
15681
|
function ca(b, M) {
|
|
15659
15682
|
return M.erasAbbrRegex(b);
|
|
15660
15683
|
}
|
|
15661
|
-
function
|
|
15684
|
+
function z6(b, M) {
|
|
15662
15685
|
return M.erasNameRegex(b);
|
|
15663
15686
|
}
|
|
15664
|
-
function
|
|
15687
|
+
function t6(b, M) {
|
|
15665
15688
|
return M.erasNarrowRegex(b);
|
|
15666
15689
|
}
|
|
15667
|
-
function
|
|
15690
|
+
function n6(b, M) {
|
|
15668
15691
|
return M._eraYearOrdinalRegex || oe;
|
|
15669
15692
|
}
|
|
15670
15693
|
function aa() {
|
|
@@ -15706,7 +15729,7 @@ qz(
|
|
|
15706
15729
|
qz(["gg", "GG"], function(b, M, p, o) {
|
|
15707
15730
|
M[o] = E0.parseTwoDigitYear(b);
|
|
15708
15731
|
});
|
|
15709
|
-
function
|
|
15732
|
+
function c6(b) {
|
|
15710
15733
|
return cs.call(
|
|
15711
15734
|
this,
|
|
15712
15735
|
b,
|
|
@@ -15716,7 +15739,7 @@ function n6(b) {
|
|
|
15716
15739
|
this.localeData()._week.doy
|
|
15717
15740
|
);
|
|
15718
15741
|
}
|
|
15719
|
-
function
|
|
15742
|
+
function a6(b) {
|
|
15720
15743
|
return cs.call(
|
|
15721
15744
|
this,
|
|
15722
15745
|
b,
|
|
@@ -15726,25 +15749,25 @@ function c6(b) {
|
|
|
15726
15749
|
4
|
|
15727
15750
|
);
|
|
15728
15751
|
}
|
|
15729
|
-
function
|
|
15752
|
+
function i6() {
|
|
15730
15753
|
return DM(this.year(), 1, 4);
|
|
15731
15754
|
}
|
|
15732
|
-
function
|
|
15755
|
+
function O6() {
|
|
15733
15756
|
return DM(this.isoWeekYear(), 1, 4);
|
|
15734
15757
|
}
|
|
15735
|
-
function
|
|
15758
|
+
function r6() {
|
|
15736
15759
|
var b = this.localeData()._week;
|
|
15737
15760
|
return DM(this.year(), b.dow, b.doy);
|
|
15738
15761
|
}
|
|
15739
|
-
function
|
|
15762
|
+
function s6() {
|
|
15740
15763
|
var b = this.localeData()._week;
|
|
15741
15764
|
return DM(this.weekYear(), b.dow, b.doy);
|
|
15742
15765
|
}
|
|
15743
15766
|
function cs(b, M, p, o, e) {
|
|
15744
15767
|
var z;
|
|
15745
|
-
return b == null ? cz(this, o, e).year : (z = DM(b, o, e), M > z && (M = z),
|
|
15768
|
+
return b == null ? cz(this, o, e).year : (z = DM(b, o, e), M > z && (M = z), A6.call(this, b, M, p, o, e));
|
|
15746
15769
|
}
|
|
15747
|
-
function
|
|
15770
|
+
function A6(b, M, p, o, e) {
|
|
15748
15771
|
var z = Ir(b, M, p, o, e), n = nz(z.year, 0, z.dayOfYear);
|
|
15749
15772
|
return this.year(n.getUTCFullYear()), this.month(n.getUTCMonth()), this.date(n.getUTCDate()), this;
|
|
15750
15773
|
}
|
|
@@ -15753,7 +15776,7 @@ F0("Q", wr);
|
|
|
15753
15776
|
T1("Q", function(b, M) {
|
|
15754
15777
|
M[TM] = (l1(b) - 1) * 3;
|
|
15755
15778
|
});
|
|
15756
|
-
function
|
|
15779
|
+
function d6(b) {
|
|
15757
15780
|
return b == null ? Math.ceil((this.month() + 1) / 3) : this.month((b - 1) * 3 + this.month() % 3);
|
|
15758
15781
|
}
|
|
15759
15782
|
V0("D", ["DD", 2], "Do", "date");
|
|
@@ -15773,7 +15796,7 @@ F0("DDDD", xr);
|
|
|
15773
15796
|
T1(["DDD", "DDDD"], function(b, M, p) {
|
|
15774
15797
|
p._dayOfYear = l1(b);
|
|
15775
15798
|
});
|
|
15776
|
-
function
|
|
15799
|
+
function l6(b) {
|
|
15777
15800
|
var M = Math.round(
|
|
15778
15801
|
(this.clone().startOf("day") - this.clone().startOf("year")) / 864e5
|
|
15779
15802
|
) + 1;
|
|
@@ -15783,12 +15806,12 @@ V0("m", ["mm", 2], 0, "minute");
|
|
|
15783
15806
|
F0("m", U1, Q3);
|
|
15784
15807
|
F0("mm", U1, ib);
|
|
15785
15808
|
T1(["m", "mm"], Fb);
|
|
15786
|
-
var
|
|
15809
|
+
var q6 = ze("Minutes", !1);
|
|
15787
15810
|
V0("s", ["ss", 2], 0, "second");
|
|
15788
15811
|
F0("s", U1, Q3);
|
|
15789
15812
|
F0("ss", U1, ib);
|
|
15790
15813
|
T1(["s", "ss"], kM);
|
|
15791
|
-
var
|
|
15814
|
+
var f6 = ze("Seconds", !1);
|
|
15792
15815
|
V0("S", 0, 0, function() {
|
|
15793
15816
|
return ~~(this.millisecond() / 100);
|
|
15794
15817
|
});
|
|
@@ -15820,100 +15843,100 @@ F0("SSS", nn, xr);
|
|
|
15820
15843
|
var hp, is;
|
|
15821
15844
|
for (hp = "SSSS"; hp.length <= 9; hp += "S")
|
|
15822
15845
|
F0(hp, oe);
|
|
15823
|
-
function
|
|
15846
|
+
function u6(b, M) {
|
|
15824
15847
|
M[Hp] = l1(("0." + b) * 1e3);
|
|
15825
15848
|
}
|
|
15826
15849
|
for (hp = "S"; hp.length <= 9; hp += "S")
|
|
15827
|
-
T1(hp,
|
|
15850
|
+
T1(hp, u6);
|
|
15828
15851
|
is = ze("Milliseconds", !1);
|
|
15829
15852
|
V0("z", 0, 0, "zoneAbbr");
|
|
15830
15853
|
V0("zz", 0, 0, "zoneName");
|
|
15831
|
-
function
|
|
15854
|
+
function W6() {
|
|
15832
15855
|
return this._isUTC ? "UTC" : "";
|
|
15833
15856
|
}
|
|
15834
|
-
function
|
|
15857
|
+
function h6() {
|
|
15835
15858
|
return this._isUTC ? "Coordinated Universal Time" : "";
|
|
15836
15859
|
}
|
|
15837
15860
|
var v0 = dz.prototype;
|
|
15838
|
-
v0.add =
|
|
15839
|
-
v0.calendar =
|
|
15840
|
-
v0.clone =
|
|
15841
|
-
v0.diff =
|
|
15842
|
-
v0.endOf =
|
|
15843
|
-
v0.format =
|
|
15844
|
-
v0.from =
|
|
15845
|
-
v0.fromNow =
|
|
15846
|
-
v0.to =
|
|
15847
|
-
v0.toNow =
|
|
15848
|
-
v0.get =
|
|
15849
|
-
v0.invalidAt =
|
|
15850
|
-
v0.isAfter =
|
|
15851
|
-
v0.isBefore =
|
|
15852
|
-
v0.isBetween =
|
|
15853
|
-
v0.isSame =
|
|
15854
|
-
v0.isSameOrAfter =
|
|
15855
|
-
v0.isSameOrBefore =
|
|
15856
|
-
v0.isValid =
|
|
15861
|
+
v0.add = su;
|
|
15862
|
+
v0.calendar = Wu;
|
|
15863
|
+
v0.clone = hu;
|
|
15864
|
+
v0.diff = yu;
|
|
15865
|
+
v0.endOf = Cu;
|
|
15866
|
+
v0.format = Xu;
|
|
15867
|
+
v0.from = Su;
|
|
15868
|
+
v0.fromNow = _u;
|
|
15869
|
+
v0.to = Tu;
|
|
15870
|
+
v0.toNow = ku;
|
|
15871
|
+
v0.get = wq;
|
|
15872
|
+
v0.invalidAt = Gu;
|
|
15873
|
+
v0.isAfter = mu;
|
|
15874
|
+
v0.isBefore = Ru;
|
|
15875
|
+
v0.isBetween = gu;
|
|
15876
|
+
v0.isSame = Lu;
|
|
15877
|
+
v0.isSameOrAfter = Nu;
|
|
15878
|
+
v0.isSameOrBefore = vu;
|
|
15879
|
+
v0.isValid = Hu;
|
|
15857
15880
|
v0.lang = os;
|
|
15858
15881
|
v0.locale = ps;
|
|
15859
15882
|
v0.localeData = es;
|
|
15860
|
-
v0.max =
|
|
15861
|
-
v0.min =
|
|
15862
|
-
v0.parsingFlags =
|
|
15863
|
-
v0.set =
|
|
15864
|
-
v0.startOf =
|
|
15865
|
-
v0.subtract =
|
|
15866
|
-
v0.toArray =
|
|
15867
|
-
v0.toObject =
|
|
15868
|
-
v0.toDate =
|
|
15869
|
-
v0.toISOString =
|
|
15870
|
-
v0.inspect =
|
|
15883
|
+
v0.max = Hf;
|
|
15884
|
+
v0.min = Uf;
|
|
15885
|
+
v0.parsingFlags = Yu;
|
|
15886
|
+
v0.set = xq;
|
|
15887
|
+
v0.startOf = Pu;
|
|
15888
|
+
v0.subtract = Au;
|
|
15889
|
+
v0.toArray = Fu;
|
|
15890
|
+
v0.toObject = ju;
|
|
15891
|
+
v0.toDate = Iu;
|
|
15892
|
+
v0.toISOString = wu;
|
|
15893
|
+
v0.inspect = xu;
|
|
15871
15894
|
typeof Symbol < "u" && Symbol.for != null && (v0[Symbol.for("nodejs.util.inspect.custom")] = function() {
|
|
15872
15895
|
return "Moment<" + this.format() + ">";
|
|
15873
15896
|
});
|
|
15874
|
-
v0.toJSON =
|
|
15875
|
-
v0.toString =
|
|
15876
|
-
v0.unix =
|
|
15877
|
-
v0.valueOf =
|
|
15878
|
-
v0.creationData =
|
|
15879
|
-
v0.eraName =
|
|
15880
|
-
v0.eraNarrow =
|
|
15881
|
-
v0.eraAbbr =
|
|
15882
|
-
v0.eraYear =
|
|
15897
|
+
v0.toJSON = Uu;
|
|
15898
|
+
v0.toString = Bu;
|
|
15899
|
+
v0.unix = Du;
|
|
15900
|
+
v0.valueOf = Eu;
|
|
15901
|
+
v0.creationData = Vu;
|
|
15902
|
+
v0.eraName = Zu;
|
|
15903
|
+
v0.eraNarrow = $u;
|
|
15904
|
+
v0.eraAbbr = b6;
|
|
15905
|
+
v0.eraYear = M6;
|
|
15883
15906
|
v0.year = _r;
|
|
15884
|
-
v0.isLeapYear =
|
|
15885
|
-
v0.weekYear =
|
|
15886
|
-
v0.isoWeekYear =
|
|
15887
|
-
v0.quarter = v0.quarters =
|
|
15907
|
+
v0.isLeapYear = Bq;
|
|
15908
|
+
v0.weekYear = c6;
|
|
15909
|
+
v0.isoWeekYear = a6;
|
|
15910
|
+
v0.quarter = v0.quarters = d6;
|
|
15888
15911
|
v0.month = Er;
|
|
15889
|
-
v0.daysInMonth =
|
|
15890
|
-
v0.week = v0.weeks =
|
|
15891
|
-
v0.isoWeek = v0.isoWeeks =
|
|
15892
|
-
v0.weeksInYear =
|
|
15893
|
-
v0.weeksInWeekYear =
|
|
15894
|
-
v0.isoWeeksInYear =
|
|
15895
|
-
v0.isoWeeksInISOWeekYear =
|
|
15912
|
+
v0.daysInMonth = Dq;
|
|
15913
|
+
v0.week = v0.weeks = Vq;
|
|
15914
|
+
v0.isoWeek = v0.isoWeeks = Kq;
|
|
15915
|
+
v0.weeksInYear = r6;
|
|
15916
|
+
v0.weeksInWeekYear = s6;
|
|
15917
|
+
v0.isoWeeksInYear = i6;
|
|
15918
|
+
v0.isoWeeksInISOWeekYear = O6;
|
|
15896
15919
|
v0.date = as;
|
|
15897
|
-
v0.day = v0.days =
|
|
15898
|
-
v0.weekday =
|
|
15899
|
-
v0.isoWeekday =
|
|
15900
|
-
v0.dayOfYear =
|
|
15901
|
-
v0.hour = v0.hours =
|
|
15902
|
-
v0.minute = v0.minutes =
|
|
15903
|
-
v0.second = v0.seconds =
|
|
15920
|
+
v0.day = v0.days = cf;
|
|
15921
|
+
v0.weekday = af;
|
|
15922
|
+
v0.isoWeekday = Of;
|
|
15923
|
+
v0.dayOfYear = l6;
|
|
15924
|
+
v0.hour = v0.hours = ff;
|
|
15925
|
+
v0.minute = v0.minutes = q6;
|
|
15926
|
+
v0.second = v0.seconds = f6;
|
|
15904
15927
|
v0.millisecond = v0.milliseconds = is;
|
|
15905
|
-
v0.utcOffset =
|
|
15906
|
-
v0.utc =
|
|
15907
|
-
v0.local =
|
|
15908
|
-
v0.parseZone =
|
|
15909
|
-
v0.hasAlignedHourOffset =
|
|
15910
|
-
v0.isDST =
|
|
15911
|
-
v0.isLocal =
|
|
15912
|
-
v0.isUtcOffset =
|
|
15928
|
+
v0.utcOffset = bu;
|
|
15929
|
+
v0.utc = pu;
|
|
15930
|
+
v0.local = ou;
|
|
15931
|
+
v0.parseZone = eu;
|
|
15932
|
+
v0.hasAlignedHourOffset = zu;
|
|
15933
|
+
v0.isDST = tu;
|
|
15934
|
+
v0.isLocal = cu;
|
|
15935
|
+
v0.isUtcOffset = au;
|
|
15913
15936
|
v0.isUtc = Zr;
|
|
15914
15937
|
v0.isUTC = Zr;
|
|
15915
|
-
v0.zoneAbbr =
|
|
15916
|
-
v0.zoneName =
|
|
15938
|
+
v0.zoneAbbr = W6;
|
|
15939
|
+
v0.zoneName = h6;
|
|
15917
15940
|
v0.dates = Wb(
|
|
15918
15941
|
"dates accessor is deprecated. Use date instead.",
|
|
15919
15942
|
as
|
|
@@ -15928,54 +15951,54 @@ v0.years = Wb(
|
|
|
15928
15951
|
);
|
|
15929
15952
|
v0.zone = Wb(
|
|
15930
15953
|
"moment().zone is deprecated, use moment().utcOffset instead. http://momentjs.com/guides/#/warnings/zone/",
|
|
15931
|
-
|
|
15954
|
+
Mu
|
|
15932
15955
|
);
|
|
15933
15956
|
v0.isDSTShifted = Wb(
|
|
15934
15957
|
"isDSTShifted is deprecated. See http://momentjs.com/guides/#/warnings/dst-shifted/ for more information",
|
|
15935
|
-
|
|
15958
|
+
nu
|
|
15936
15959
|
);
|
|
15937
|
-
function
|
|
15960
|
+
function m6(b) {
|
|
15938
15961
|
return j1(b * 1e3);
|
|
15939
15962
|
}
|
|
15940
|
-
function
|
|
15963
|
+
function R6() {
|
|
15941
15964
|
return j1.apply(null, arguments).parseZone();
|
|
15942
15965
|
}
|
|
15943
15966
|
function Os(b) {
|
|
15944
15967
|
return b;
|
|
15945
15968
|
}
|
|
15946
15969
|
var g1 = Y3.prototype;
|
|
15947
|
-
g1.calendar =
|
|
15948
|
-
g1.longDateFormat =
|
|
15949
|
-
g1.invalidDate =
|
|
15950
|
-
g1.ordinal =
|
|
15970
|
+
g1.calendar = nq;
|
|
15971
|
+
g1.longDateFormat = Oq;
|
|
15972
|
+
g1.invalidDate = sq;
|
|
15973
|
+
g1.ordinal = lq;
|
|
15951
15974
|
g1.preparse = Os;
|
|
15952
15975
|
g1.postformat = Os;
|
|
15953
|
-
g1.relativeTime =
|
|
15954
|
-
g1.pastFuture =
|
|
15955
|
-
g1.set =
|
|
15956
|
-
g1.eras =
|
|
15957
|
-
g1.erasParse =
|
|
15958
|
-
g1.erasConvertYear =
|
|
15959
|
-
g1.erasAbbrRegex =
|
|
15960
|
-
g1.erasNameRegex =
|
|
15961
|
-
g1.erasNarrowRegex =
|
|
15962
|
-
g1.months =
|
|
15963
|
-
g1.monthsShort =
|
|
15964
|
-
g1.monthsParse =
|
|
15965
|
-
g1.monthsRegex =
|
|
15966
|
-
g1.monthsShortRegex =
|
|
15967
|
-
g1.week =
|
|
15968
|
-
g1.firstDayOfYear =
|
|
15969
|
-
g1.firstDayOfWeek =
|
|
15970
|
-
g1.weekdays =
|
|
15971
|
-
g1.weekdaysMin =
|
|
15972
|
-
g1.weekdaysShort =
|
|
15973
|
-
g1.weekdaysParse =
|
|
15974
|
-
g1.weekdaysRegex =
|
|
15975
|
-
g1.weekdaysShortRegex =
|
|
15976
|
-
g1.weekdaysMinRegex =
|
|
15977
|
-
g1.isPM =
|
|
15978
|
-
g1.meridiem =
|
|
15976
|
+
g1.relativeTime = fq;
|
|
15977
|
+
g1.pastFuture = uq;
|
|
15978
|
+
g1.set = zq;
|
|
15979
|
+
g1.eras = Ku;
|
|
15980
|
+
g1.erasParse = Ju;
|
|
15981
|
+
g1.erasConvertYear = Qu;
|
|
15982
|
+
g1.erasAbbrRegex = o6;
|
|
15983
|
+
g1.erasNameRegex = p6;
|
|
15984
|
+
g1.erasNarrowRegex = e6;
|
|
15985
|
+
g1.months = kq;
|
|
15986
|
+
g1.monthsShort = Pq;
|
|
15987
|
+
g1.monthsParse = Eq;
|
|
15988
|
+
g1.monthsRegex = Fq;
|
|
15989
|
+
g1.monthsShortRegex = Iq;
|
|
15990
|
+
g1.week = Uq;
|
|
15991
|
+
g1.firstDayOfYear = Gq;
|
|
15992
|
+
g1.firstDayOfWeek = Yq;
|
|
15993
|
+
g1.weekdays = of;
|
|
15994
|
+
g1.weekdaysMin = zf;
|
|
15995
|
+
g1.weekdaysShort = ef;
|
|
15996
|
+
g1.weekdaysParse = nf;
|
|
15997
|
+
g1.weekdaysRegex = rf;
|
|
15998
|
+
g1.weekdaysShortRegex = sf;
|
|
15999
|
+
g1.weekdaysMinRegex = Af;
|
|
16000
|
+
g1.isPM = lf;
|
|
16001
|
+
g1.meridiem = uf;
|
|
15979
16002
|
function Vt(b, M, p, o) {
|
|
15980
16003
|
var e = VM(), z = qM().set(o, M);
|
|
15981
16004
|
return e[p](z, b);
|
|
@@ -15997,19 +16020,19 @@ function ia(b, M, p, o) {
|
|
|
15997
16020
|
c[n] = Vt(M, (n + z) % 7, o, "day");
|
|
15998
16021
|
return c;
|
|
15999
16022
|
}
|
|
16000
|
-
function
|
|
16023
|
+
function g6(b, M) {
|
|
16001
16024
|
return rs(b, M, "months");
|
|
16002
16025
|
}
|
|
16003
|
-
function
|
|
16026
|
+
function L6(b, M) {
|
|
16004
16027
|
return rs(b, M, "monthsShort");
|
|
16005
16028
|
}
|
|
16006
|
-
function
|
|
16029
|
+
function N6(b, M, p) {
|
|
16007
16030
|
return ia(b, M, p, "weekdays");
|
|
16008
16031
|
}
|
|
16009
|
-
function
|
|
16032
|
+
function v6(b, M, p) {
|
|
16010
16033
|
return ia(b, M, p, "weekdaysShort");
|
|
16011
16034
|
}
|
|
16012
|
-
function
|
|
16035
|
+
function y6(b, M, p) {
|
|
16013
16036
|
return ia(b, M, p, "weekdaysMin");
|
|
16014
16037
|
}
|
|
16015
16038
|
mp("en", {
|
|
@@ -16046,7 +16069,7 @@ E0.langData = Wb(
|
|
|
16046
16069
|
VM
|
|
16047
16070
|
);
|
|
16048
16071
|
var XM = Math.abs;
|
|
16049
|
-
function
|
|
16072
|
+
function B6() {
|
|
16050
16073
|
var b = this._data;
|
|
16051
16074
|
return this._milliseconds = XM(this._milliseconds), this._days = XM(this._days), this._months = XM(this._months), b.milliseconds = XM(b.milliseconds), b.seconds = XM(b.seconds), b.minutes = XM(b.minutes), b.hours = XM(b.hours), b.months = XM(b.months), b.years = XM(b.years), this;
|
|
16052
16075
|
}
|
|
@@ -16054,16 +16077,16 @@ function ss(b, M, p, o) {
|
|
|
16054
16077
|
var e = Gb(M, p);
|
|
16055
16078
|
return b._milliseconds += o * e._milliseconds, b._days += o * e._days, b._months += o * e._months, b._bubble();
|
|
16056
16079
|
}
|
|
16057
|
-
function
|
|
16080
|
+
function w6(b, M) {
|
|
16058
16081
|
return ss(this, b, M, 1);
|
|
16059
16082
|
}
|
|
16060
|
-
function
|
|
16083
|
+
function x6(b, M) {
|
|
16061
16084
|
return ss(this, b, M, -1);
|
|
16062
16085
|
}
|
|
16063
16086
|
function oO(b) {
|
|
16064
16087
|
return b < 0 ? Math.floor(b) : Math.ceil(b);
|
|
16065
16088
|
}
|
|
16066
|
-
function
|
|
16089
|
+
function X6() {
|
|
16067
16090
|
var b = this._milliseconds, M = this._days, p = this._months, o = this._data, e, z, n, c, i;
|
|
16068
16091
|
return b >= 0 && M >= 0 && p >= 0 || b <= 0 && M <= 0 && p <= 0 || (b += oO(g3(p) + M) * 864e5, M = 0, p = 0), o.milliseconds = b % 1e3, e = fb(b / 1e3), o.seconds = e % 60, z = fb(e / 60), o.minutes = z % 60, n = fb(z / 60), o.hours = n % 24, M += fb(n / 24), i = fb(As(M)), p += i, M -= oO(g3(i)), c = fb(p / 12), p %= 12, o.days = M, o.months = p, o.years = c, this;
|
|
16069
16092
|
}
|
|
@@ -16073,7 +16096,7 @@ function As(b) {
|
|
|
16073
16096
|
function g3(b) {
|
|
16074
16097
|
return b * 146097 / 4800;
|
|
16075
16098
|
}
|
|
16076
|
-
function
|
|
16099
|
+
function S6(b) {
|
|
16077
16100
|
if (!this.isValid())
|
|
16078
16101
|
return NaN;
|
|
16079
16102
|
var M, p, o = this._milliseconds;
|
|
@@ -16109,11 +16132,11 @@ function KM(b) {
|
|
|
16109
16132
|
return this.as(b);
|
|
16110
16133
|
};
|
|
16111
16134
|
}
|
|
16112
|
-
var ds = KM("ms"),
|
|
16113
|
-
function
|
|
16135
|
+
var ds = KM("ms"), _6 = KM("s"), T6 = KM("m"), k6 = KM("h"), P6 = KM("d"), C6 = KM("w"), E6 = KM("M"), D6 = KM("Q"), I6 = KM("y"), F6 = ds;
|
|
16136
|
+
function j6() {
|
|
16114
16137
|
return Gb(this);
|
|
16115
16138
|
}
|
|
16116
|
-
function
|
|
16139
|
+
function U6(b) {
|
|
16117
16140
|
return b = hb(b), this.isValid() ? this[b + "s"]() : NaN;
|
|
16118
16141
|
}
|
|
16119
16142
|
function Mo(b) {
|
|
@@ -16121,8 +16144,8 @@ function Mo(b) {
|
|
|
16121
16144
|
return this.isValid() ? this._data[b] : NaN;
|
|
16122
16145
|
};
|
|
16123
16146
|
}
|
|
16124
|
-
var
|
|
16125
|
-
function
|
|
16147
|
+
var H6 = Mo("milliseconds"), Y6 = Mo("seconds"), G6 = Mo("minutes"), V6 = Mo("hours"), K6 = Mo("days"), J6 = Mo("months"), Q6 = Mo("years");
|
|
16148
|
+
function Z6() {
|
|
16126
16149
|
return fb(this.days() / 7);
|
|
16127
16150
|
}
|
|
16128
16151
|
var SM = Math.round, jo = {
|
|
@@ -16141,24 +16164,24 @@ var SM = Math.round, jo = {
|
|
|
16141
16164
|
M: 11
|
|
16142
16165
|
// months to year
|
|
16143
16166
|
};
|
|
16144
|
-
function
|
|
16167
|
+
function $6(b, M, p, o, e) {
|
|
16145
16168
|
return e.relativeTime(M || 1, !!p, b, o);
|
|
16146
16169
|
}
|
|
16147
|
-
function
|
|
16170
|
+
function bW(b, M, p, o) {
|
|
16148
16171
|
var e = Gb(b).abs(), z = SM(e.as("s")), n = SM(e.as("m")), c = SM(e.as("h")), i = SM(e.as("d")), r = SM(e.as("M")), d = SM(e.as("w")), q = SM(e.as("y")), W = z <= p.ss && ["s", z] || z < p.s && ["ss", z] || n <= 1 && ["m"] || n < p.m && ["mm", n] || c <= 1 && ["h"] || c < p.h && ["hh", c] || i <= 1 && ["d"] || i < p.d && ["dd", i];
|
|
16149
|
-
return p.w != null && (W = W || d <= 1 && ["w"] || d < p.w && ["ww", d]), W = W || r <= 1 && ["M"] || r < p.M && ["MM", r] || q <= 1 && ["y"] || ["yy", q], W[2] = M, W[3] = +b > 0, W[4] = o,
|
|
16172
|
+
return p.w != null && (W = W || d <= 1 && ["w"] || d < p.w && ["ww", d]), W = W || r <= 1 && ["M"] || r < p.M && ["MM", r] || q <= 1 && ["y"] || ["yy", q], W[2] = M, W[3] = +b > 0, W[4] = o, $6.apply(null, W);
|
|
16150
16173
|
}
|
|
16151
|
-
function
|
|
16174
|
+
function MW(b) {
|
|
16152
16175
|
return b === void 0 ? SM : typeof b == "function" ? (SM = b, !0) : !1;
|
|
16153
16176
|
}
|
|
16154
|
-
function
|
|
16177
|
+
function pW(b, M) {
|
|
16155
16178
|
return jo[b] === void 0 ? !1 : M === void 0 ? jo[b] : (jo[b] = M, b === "s" && (jo.ss = M - 1), !0);
|
|
16156
16179
|
}
|
|
16157
|
-
function
|
|
16180
|
+
function oW(b, M) {
|
|
16158
16181
|
if (!this.isValid())
|
|
16159
16182
|
return this.localeData().invalidDate();
|
|
16160
16183
|
var p = !1, o = jo, e, z;
|
|
16161
|
-
return typeof b == "object" && (M = b, b = !1), typeof b == "boolean" && (p = b), typeof M == "object" && (o = Object.assign({}, jo, M), M.s != null && M.ss == null && (o.ss = M.s - 1)), e = this.localeData(), z =
|
|
16184
|
+
return typeof b == "object" && (M = b, b = !1), typeof b == "boolean" && (p = b), typeof M == "object" && (o = Object.assign({}, jo, M), M.s != null && M.ss == null && (o.ss = M.s - 1)), e = this.localeData(), z = bW(this, !p, o, e), p && (z = e.pastFuture(+this, z)), e.postformat(z);
|
|
16162
16185
|
}
|
|
16163
16186
|
var kc = Math.abs;
|
|
16164
16187
|
function To(b) {
|
|
@@ -16171,33 +16194,33 @@ function ln() {
|
|
|
16171
16194
|
return c ? (o = fb(b / 60), e = fb(o / 60), b %= 60, o %= 60, z = fb(p / 12), p %= 12, n = b ? b.toFixed(3).replace(/\.?0+$/, "") : "", i = c < 0 ? "-" : "", r = To(this._months) !== To(c) ? "-" : "", d = To(this._days) !== To(c) ? "-" : "", q = To(this._milliseconds) !== To(c) ? "-" : "", i + "P" + (z ? r + z + "Y" : "") + (p ? r + p + "M" : "") + (M ? d + M + "D" : "") + (e || o || b ? "T" : "") + (e ? q + e + "H" : "") + (o ? q + o + "M" : "") + (b ? q + n + "S" : "")) : "P0D";
|
|
16172
16195
|
}
|
|
16173
16196
|
var f1 = An.prototype;
|
|
16174
|
-
f1.isValid =
|
|
16175
|
-
f1.abs =
|
|
16176
|
-
f1.add =
|
|
16177
|
-
f1.subtract =
|
|
16178
|
-
f1.as =
|
|
16197
|
+
f1.isValid = Jf;
|
|
16198
|
+
f1.abs = B6;
|
|
16199
|
+
f1.add = w6;
|
|
16200
|
+
f1.subtract = x6;
|
|
16201
|
+
f1.as = S6;
|
|
16179
16202
|
f1.asMilliseconds = ds;
|
|
16180
|
-
f1.asSeconds =
|
|
16181
|
-
f1.asMinutes =
|
|
16182
|
-
f1.asHours =
|
|
16183
|
-
f1.asDays =
|
|
16184
|
-
f1.asWeeks =
|
|
16185
|
-
f1.asMonths =
|
|
16186
|
-
f1.asQuarters =
|
|
16187
|
-
f1.asYears =
|
|
16188
|
-
f1.valueOf =
|
|
16189
|
-
f1._bubble =
|
|
16190
|
-
f1.clone =
|
|
16191
|
-
f1.get =
|
|
16192
|
-
f1.milliseconds =
|
|
16193
|
-
f1.seconds =
|
|
16194
|
-
f1.minutes =
|
|
16195
|
-
f1.hours =
|
|
16196
|
-
f1.days =
|
|
16197
|
-
f1.weeks =
|
|
16198
|
-
f1.months =
|
|
16199
|
-
f1.years =
|
|
16200
|
-
f1.humanize =
|
|
16203
|
+
f1.asSeconds = _6;
|
|
16204
|
+
f1.asMinutes = T6;
|
|
16205
|
+
f1.asHours = k6;
|
|
16206
|
+
f1.asDays = P6;
|
|
16207
|
+
f1.asWeeks = C6;
|
|
16208
|
+
f1.asMonths = E6;
|
|
16209
|
+
f1.asQuarters = D6;
|
|
16210
|
+
f1.asYears = I6;
|
|
16211
|
+
f1.valueOf = F6;
|
|
16212
|
+
f1._bubble = X6;
|
|
16213
|
+
f1.clone = j6;
|
|
16214
|
+
f1.get = U6;
|
|
16215
|
+
f1.milliseconds = H6;
|
|
16216
|
+
f1.seconds = Y6;
|
|
16217
|
+
f1.minutes = G6;
|
|
16218
|
+
f1.hours = V6;
|
|
16219
|
+
f1.days = K6;
|
|
16220
|
+
f1.weeks = Z6;
|
|
16221
|
+
f1.months = J6;
|
|
16222
|
+
f1.years = Q6;
|
|
16223
|
+
f1.humanize = oW;
|
|
16201
16224
|
f1.toISOString = ln;
|
|
16202
16225
|
f1.toString = ln;
|
|
16203
16226
|
f1.toJSON = ln;
|
|
@@ -16211,7 +16234,7 @@ f1.lang = os;
|
|
|
16211
16234
|
V0("X", 0, 0, "unix");
|
|
16212
16235
|
V0("x", 0, 0, "valueOf");
|
|
16213
16236
|
F0("x", an);
|
|
16214
|
-
F0("X",
|
|
16237
|
+
F0("X", Rq);
|
|
16215
16238
|
T1("X", function(b, M, p) {
|
|
16216
16239
|
p._d = new Date(parseFloat(b) * 1e3);
|
|
16217
16240
|
});
|
|
@@ -16220,33 +16243,33 @@ T1("x", function(b, M, p) {
|
|
|
16220
16243
|
});
|
|
16221
16244
|
//! moment.js
|
|
16222
16245
|
E0.version = "2.30.1";
|
|
16223
|
-
|
|
16246
|
+
oq(j1);
|
|
16224
16247
|
E0.fn = v0;
|
|
16225
|
-
E0.min =
|
|
16226
|
-
E0.max =
|
|
16227
|
-
E0.now =
|
|
16248
|
+
E0.min = Yf;
|
|
16249
|
+
E0.max = Gf;
|
|
16250
|
+
E0.now = Vf;
|
|
16228
16251
|
E0.utc = qM;
|
|
16229
|
-
E0.unix =
|
|
16230
|
-
E0.months =
|
|
16252
|
+
E0.unix = m6;
|
|
16253
|
+
E0.months = g6;
|
|
16231
16254
|
E0.isDate = Az;
|
|
16232
16255
|
E0.locale = mp;
|
|
16233
16256
|
E0.invalid = zn;
|
|
16234
16257
|
E0.duration = Gb;
|
|
16235
16258
|
E0.isMoment = Ub;
|
|
16236
|
-
E0.weekdays =
|
|
16237
|
-
E0.parseZone =
|
|
16259
|
+
E0.weekdays = N6;
|
|
16260
|
+
E0.parseZone = R6;
|
|
16238
16261
|
E0.localeData = VM;
|
|
16239
16262
|
E0.isDuration = yt;
|
|
16240
|
-
E0.monthsShort =
|
|
16241
|
-
E0.weekdaysMin =
|
|
16263
|
+
E0.monthsShort = L6;
|
|
16264
|
+
E0.weekdaysMin = y6;
|
|
16242
16265
|
E0.defineLocale = pa;
|
|
16243
|
-
E0.updateLocale =
|
|
16244
|
-
E0.locales =
|
|
16245
|
-
E0.weekdaysShort =
|
|
16266
|
+
E0.updateLocale = Rf;
|
|
16267
|
+
E0.locales = gf;
|
|
16268
|
+
E0.weekdaysShort = v6;
|
|
16246
16269
|
E0.normalizeUnits = hb;
|
|
16247
|
-
E0.relativeTimeRounding =
|
|
16248
|
-
E0.relativeTimeThreshold =
|
|
16249
|
-
E0.calendarFormat =
|
|
16270
|
+
E0.relativeTimeRounding = MW;
|
|
16271
|
+
E0.relativeTimeThreshold = pW;
|
|
16272
|
+
E0.calendarFormat = uu;
|
|
16250
16273
|
E0.prototype = v0;
|
|
16251
16274
|
E0.HTML5_FMT = {
|
|
16252
16275
|
DATETIME_LOCAL: "YYYY-MM-DDTHH:mm",
|
|
@@ -16268,10 +16291,10 @@ E0.HTML5_FMT = {
|
|
|
16268
16291
|
MONTH: "YYYY-MM"
|
|
16269
16292
|
// <input type="month" />
|
|
16270
16293
|
};
|
|
16271
|
-
const
|
|
16294
|
+
const eW = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
16272
16295
|
__proto__: null,
|
|
16273
16296
|
default: E0
|
|
16274
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
16297
|
+
}, Symbol.toStringTag, { value: "Module" })), zW = /* @__PURE__ */ Yd(eW);
|
|
16275
16298
|
(function(b) {
|
|
16276
16299
|
//! moment-timezone.js
|
|
16277
16300
|
//! version : 0.5.45
|
|
@@ -16279,8 +16302,8 @@ const oW = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
16279
16302
|
//! license : MIT
|
|
16280
16303
|
//! github.com/moment/moment-timezone
|
|
16281
16304
|
(function(M, p) {
|
|
16282
|
-
b.exports ? b.exports = p(
|
|
16283
|
-
})(
|
|
16305
|
+
b.exports ? b.exports = p(zW) : p(M.moment);
|
|
16306
|
+
})(Hd, function(M) {
|
|
16284
16307
|
M.version === void 0 && M.default && (M = M.default);
|
|
16285
16308
|
var p = "0.5.45", o = {}, e = {}, z = {}, n = {}, c = {}, i;
|
|
16286
16309
|
(!M || typeof M.version != "string") && K("Moment Timezone requires Moment.js. See https://momentjs.com/timezone/docs/#/use-it/browser/");
|
|
@@ -16546,8 +16569,8 @@ const oW = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
16546
16569
|
return Object.prototype.toString.call(_0) === "[object Array]" ? (_0.push("_z"), _0.push("_a")) : _0 && (_0._z = null), M;
|
|
16547
16570
|
});
|
|
16548
16571
|
})(gr);
|
|
16549
|
-
var
|
|
16550
|
-
const
|
|
16572
|
+
var tW = gr.exports;
|
|
16573
|
+
const nW = "2024a", cW = [
|
|
16551
16574
|
"Africa/Abidjan|LMT GMT|g.8 0|01|-2ldXH.Q|48e5",
|
|
16552
16575
|
"Africa/Nairobi|LMT +0230 EAT +0245|-2r.g -2u -30 -2J|012132|-2ua2r.g N6nV.g 3Fbu h1cu dzbJ|47e5",
|
|
16553
16576
|
"Africa/Algiers|LMT PMT WET WEST CET CEST|-c.c -9.l 0 -10 -10 -20|01232323232323232454542423234542324|-3bQ0c.c MDA2.P cNb9.l HA0 19A0 1iM0 11c0 1oo0 Wo0 1rc0 QM0 1EM0 UM0 DA0 Imo0 rd0 De0 9Xz0 1fb0 1ap0 16K0 2yo0 mEp0 hwL0 jxA0 11A0 dDd0 17b0 11B0 1cN0 2Dy0 1cN0 1fB0 1cL0|26e5",
|
|
@@ -16899,7 +16922,7 @@ const tW = "2024a", nW = [
|
|
|
16899
16922
|
"Pacific/Tongatapu|LMT +1220 +13 +14|-cj.c -ck -d0 -e0|01232323232|-XbMj.c BgLX.c 1yndk 15A0 1wo0 xz0 1Q10 xz0 zWN0 s00|75e3",
|
|
16900
16923
|
"PST8PDT|PST PDT PWT PPT|80 70 70 70|010102301010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|-261q0 1nX0 11B0 1nX0 SgN0 8x10 iy0 QwN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1cN0 1cL0 1cN0 1cL0 s10 1Vz0 LB0 1BX0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 1cN0 1fz0 1a10 1fz0 1cN0 1cL0 1cN0 1cL0 1cN0 1cL0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|",
|
|
16901
16924
|
"WET|WET WEST|0 -10|010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010|hDB0 1a00 1fA0 1cM0 1cM0 1cM0 1fA0 1a00 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00|"
|
|
16902
|
-
],
|
|
16925
|
+
], aW = [
|
|
16903
16926
|
"Africa/Abidjan|Africa/Accra",
|
|
16904
16927
|
"Africa/Abidjan|Africa/Bamako",
|
|
16905
16928
|
"Africa/Abidjan|Africa/Banjul",
|
|
@@ -17145,7 +17168,7 @@ const tW = "2024a", nW = [
|
|
|
17145
17168
|
"Pacific/Tarawa|Pacific/Majuro",
|
|
17146
17169
|
"Pacific/Tarawa|Pacific/Wake",
|
|
17147
17170
|
"Pacific/Tarawa|Pacific/Wallis"
|
|
17148
|
-
],
|
|
17171
|
+
], iW = [
|
|
17149
17172
|
"AD|Europe/Andorra",
|
|
17150
17173
|
"AE|Asia/Dubai",
|
|
17151
17174
|
"AF|Asia/Kabul",
|
|
@@ -17393,17 +17416,17 @@ const tW = "2024a", nW = [
|
|
|
17393
17416
|
"ZA|Africa/Johannesburg",
|
|
17394
17417
|
"ZM|Africa/Maputo Africa/Lusaka",
|
|
17395
17418
|
"ZW|Africa/Maputo Africa/Harare"
|
|
17396
|
-
],
|
|
17397
|
-
version:
|
|
17398
|
-
zones:
|
|
17399
|
-
links:
|
|
17400
|
-
countries:
|
|
17419
|
+
], OW = {
|
|
17420
|
+
version: nW,
|
|
17421
|
+
zones: cW,
|
|
17422
|
+
links: aW,
|
|
17423
|
+
countries: iW
|
|
17401
17424
|
};
|
|
17402
|
-
var
|
|
17403
|
-
|
|
17404
|
-
var
|
|
17405
|
-
const ub = /* @__PURE__ */ zr(
|
|
17406
|
-
function
|
|
17425
|
+
var rW = Rr.exports = tW;
|
|
17426
|
+
rW.tz.load(OW);
|
|
17427
|
+
var sW = Rr.exports;
|
|
17428
|
+
const ub = /* @__PURE__ */ zr(sW);
|
|
17429
|
+
function AW(b, M, p = !1, o = !1) {
|
|
17407
17430
|
return b && b.sort((e, z) => {
|
|
17408
17431
|
const n = new RegExp("(0|[1-9]\\d*)\\.(0|[1-9]\\d*)\\.(0|[1-9]\\d*)?$");
|
|
17409
17432
|
if (n.test(e[M]) && n.test(z[M]))
|
|
@@ -17470,7 +17493,7 @@ function zO(b, M) {
|
|
|
17470
17493
|
}
|
|
17471
17494
|
Mz(b, p);
|
|
17472
17495
|
}
|
|
17473
|
-
function
|
|
17496
|
+
function dW(b, M, p = null) {
|
|
17474
17497
|
let o = qn(b);
|
|
17475
17498
|
o ? p && !o[p] && (o[p] = M) : p ? (o = {}, o[p] = M) : o = M, Mz(b, o);
|
|
17476
17499
|
}
|
|
@@ -17482,9 +17505,9 @@ function Mz(b, M, p = null) {
|
|
|
17482
17505
|
return p ? o[p] = M : o = M, window.localStorage.setItem(b, JSON.stringify(o));
|
|
17483
17506
|
}
|
|
17484
17507
|
Zp.add(DO, z4, c4, q4);
|
|
17485
|
-
const
|
|
17508
|
+
const lW = {
|
|
17486
17509
|
name: "TableDraggableComponent",
|
|
17487
|
-
components: { VueDraggableNext:
|
|
17510
|
+
components: { VueDraggableNext: pq, FontAwesomeIcon: $p },
|
|
17488
17511
|
props: {
|
|
17489
17512
|
defaultColumns: {
|
|
17490
17513
|
type: Array,
|
|
@@ -17574,7 +17597,7 @@ const dW = {
|
|
|
17574
17597
|
},
|
|
17575
17598
|
showeditems() {
|
|
17576
17599
|
const b = this.filtereditems.slice((this.currentPage - 1) * this.maxItemsPerPage, this.currentPage * this.maxItemsPerPage);
|
|
17577
|
-
return !this.sortKey || !this.filtereditems ? b :
|
|
17600
|
+
return !this.sortKey || !this.filtereditems ? b : AW(b, this.sortKey, this.sortAsc);
|
|
17578
17601
|
}
|
|
17579
17602
|
},
|
|
17580
17603
|
watch: {
|
|
@@ -17596,7 +17619,7 @@ const dW = {
|
|
|
17596
17619
|
},
|
|
17597
17620
|
mounted() {
|
|
17598
17621
|
if (this.localStorageItemName !== null) {
|
|
17599
|
-
zO(this.localStorageItemName, this.columns),
|
|
17622
|
+
zO(this.localStorageItemName, this.columns), dW(this.localStorageItemName, this.maxItemPerPage, "maxItemPerPage");
|
|
17600
17623
|
let b = qn(this.localStorageItemName);
|
|
17601
17624
|
this.maxItemsPerPage = b.maxItemPerPage, this.columns = b.columns;
|
|
17602
17625
|
}
|
|
@@ -17652,38 +17675,38 @@ const dW = {
|
|
|
17652
17675
|
this.headerEditMode = !0;
|
|
17653
17676
|
}
|
|
17654
17677
|
}
|
|
17655
|
-
},
|
|
17678
|
+
}, qW = (b) => (MA("data-v-028b4348"), b = b(), pA(), b), fW = { class: "row mb-3 overflow-x-auto" }, uW = { class: "col-12" }, WW = {
|
|
17656
17679
|
key: 0,
|
|
17657
17680
|
class: "position-absolute start-50 translate-middle",
|
|
17658
17681
|
style: { top: "25px" }
|
|
17659
|
-
},
|
|
17682
|
+
}, hW = { class: "d-inline-flex text-nowrap" }, mW = { class: "my-auto" }, RW = {
|
|
17660
17683
|
key: 0,
|
|
17661
17684
|
class: "ms-2 float-end"
|
|
17662
|
-
},
|
|
17663
|
-
|
|
17664
|
-
],
|
|
17685
|
+
}, gW = { key: 0 }, LW = ["colspan"], NW = /* @__PURE__ */ qW(() => /* @__PURE__ */ j0("span", { class: "text-danger fs-5" }, "Aucune valeur", -1)), vW = [
|
|
17686
|
+
NW
|
|
17687
|
+
], yW = ["onClick"], BW = ["onClick"], wW = ["id", "value"], xW = { class: "row mb-2" }, XW = {
|
|
17665
17688
|
key: 0,
|
|
17666
17689
|
class: "col"
|
|
17667
|
-
},
|
|
17690
|
+
}, SW = { class: "m-0 pagination pagination-sm" }, _W = { class: "page-item hoverable" }, TW = { class: "page-item hoverable" }, kW = ["onClick"], PW = { class: "page-item hoverable" }, CW = { class: "page-item hoverable" }, EW = {
|
|
17668
17691
|
key: 1,
|
|
17669
17692
|
class: "col d-flex justify-content-end"
|
|
17670
|
-
},
|
|
17693
|
+
}, DW = { class: "d-flex mb-1" }, IW = {
|
|
17671
17694
|
key: 0,
|
|
17672
17695
|
class: "d-flex"
|
|
17673
17696
|
};
|
|
17674
|
-
function
|
|
17697
|
+
function FW(b, M, p, o, e, z) {
|
|
17675
17698
|
var i;
|
|
17676
17699
|
const n = zb("font-awesome-icon"), c = zb("vue-draggable-next");
|
|
17677
|
-
return
|
|
17678
|
-
|
|
17679
|
-
|
|
17680
|
-
(
|
|
17700
|
+
return C0(), H0(N2, null, [
|
|
17701
|
+
j0("div", fW, [
|
|
17702
|
+
j0("div", uW, [
|
|
17703
|
+
(C0(), H0("table", {
|
|
17681
17704
|
id: "table-draggable",
|
|
17682
17705
|
key: e.forceTableUpdateIndex,
|
|
17683
17706
|
class: "table table-striped table-hover table-responsive overflow-hidden table-bordered align-middle border-1 border-top border-bottom",
|
|
17684
17707
|
style: { "border-radius": "10px !important", "border-collapse": "separate", "border-spacing": "0" }
|
|
17685
17708
|
}, [
|
|
17686
|
-
|
|
17709
|
+
j0("thead", null, [
|
|
17687
17710
|
tb(c, {
|
|
17688
17711
|
modelValue: e.columns,
|
|
17689
17712
|
"onUpdate:modelValue": M[3] || (M[3] = (r) => e.columns = r),
|
|
@@ -17693,16 +17716,16 @@ function IW(b, M, p, o, e, z) {
|
|
|
17693
17716
|
group: "columns"
|
|
17694
17717
|
}, {
|
|
17695
17718
|
default: Xt(() => [
|
|
17696
|
-
(
|
|
17719
|
+
(C0(!0), H0(N2, null, tM(e.columns, (r) => (C0(), H0(N2, {
|
|
17697
17720
|
key: r.id
|
|
17698
17721
|
}, [
|
|
17699
|
-
r.id === "checkBox" ? (
|
|
17722
|
+
r.id === "checkBox" ? (C0(), H0("th", {
|
|
17700
17723
|
key: 0,
|
|
17701
17724
|
class: "text-center bg-secondary",
|
|
17702
17725
|
scope: "col",
|
|
17703
17726
|
onClick: M[2] || (M[2] = Ee((...d) => z.toggleAllCheckBox && z.toggleAllCheckBox(...d), ["stop"]))
|
|
17704
17727
|
}, [
|
|
17705
|
-
Ha(
|
|
17728
|
+
Ha(j0("input", {
|
|
17706
17729
|
id: "checkBoxSelectAll",
|
|
17707
17730
|
"onUpdate:modelValue": M[0] || (M[0] = (d) => e.checkAllCheckBox = d),
|
|
17708
17731
|
class: "form-check-input",
|
|
@@ -17711,7 +17734,7 @@ function IW(b, M, p, o, e, z) {
|
|
|
17711
17734
|
}, null, 512), [
|
|
17712
17735
|
[Ya, e.checkAllCheckBox]
|
|
17713
17736
|
])
|
|
17714
|
-
])) : r.show || e.headerEditMode ? (
|
|
17737
|
+
])) : r.show || e.headerEditMode ? (C0(), H0("th", {
|
|
17715
17738
|
key: 1,
|
|
17716
17739
|
scope: "col",
|
|
17717
17740
|
class: _1(["text-white bg-secondary hoverable position-relative text-center", [
|
|
@@ -17721,22 +17744,22 @@ function IW(b, M, p, o, e, z) {
|
|
|
17721
17744
|
}
|
|
17722
17745
|
]])
|
|
17723
17746
|
}, [
|
|
17724
|
-
e.headerEditMode ? (
|
|
17725
|
-
r.show ? (
|
|
17747
|
+
e.headerEditMode ? (C0(), H0("div", WW, [
|
|
17748
|
+
r.show ? (C0(), PM(n, {
|
|
17726
17749
|
key: 0,
|
|
17727
17750
|
icon: "fa-solid fa-eye",
|
|
17728
17751
|
class: "fa-xl",
|
|
17729
17752
|
onClick: (d) => r.show = !1
|
|
17730
|
-
}, null, 8, ["onClick"])) : (
|
|
17753
|
+
}, null, 8, ["onClick"])) : (C0(), PM(n, {
|
|
17731
17754
|
key: 1,
|
|
17732
17755
|
icon: "fa-solid fa-eye-slash",
|
|
17733
17756
|
class: "fa-xl",
|
|
17734
17757
|
onClick: (d) => r.show = !0
|
|
17735
17758
|
}, null, 8, ["onClick"]))
|
|
17736
17759
|
])) : o2("", !0),
|
|
17737
|
-
|
|
17738
|
-
|
|
17739
|
-
r.isSortable ? (
|
|
17760
|
+
j0("div", hW, [
|
|
17761
|
+
j0("span", mW, C2(r.libelle), 1),
|
|
17762
|
+
r.isSortable ? (C0(), H0("div", RW, [
|
|
17740
17763
|
tb(n, {
|
|
17741
17764
|
icon: e.sortKey !== r.id || e.sortKey === r.id && !e.sortAsc ? "fa-solid fa-arrow-down-wide-short" : "fa-solid fa-arrow-up-short-wide",
|
|
17742
17765
|
onClick: (d) => z.updateCurrentSort(r)
|
|
@@ -17749,26 +17772,26 @@ function IW(b, M, p, o, e, z) {
|
|
|
17749
17772
|
_: 1
|
|
17750
17773
|
}, 8, ["modelValue", "move"])
|
|
17751
17774
|
]),
|
|
17752
|
-
|
|
17753
|
-
((i = z.showeditems) == null ? void 0 : i.length) === 0 ? (
|
|
17754
|
-
|
|
17775
|
+
j0("tbody", null, [
|
|
17776
|
+
((i = z.showeditems) == null ? void 0 : i.length) === 0 ? (C0(), H0("tr", gW, [
|
|
17777
|
+
j0("th", {
|
|
17755
17778
|
colspan: e.columns.length,
|
|
17756
17779
|
class: "text-center"
|
|
17757
|
-
},
|
|
17758
|
-
])) : (
|
|
17780
|
+
}, vW, 8, LW)
|
|
17781
|
+
])) : (C0(!0), H0(N2, { key: 1 }, tM(z.showeditems, (r, d) => (C0(), H0("tr", {
|
|
17759
17782
|
key: r.id,
|
|
17760
17783
|
class: _1({ hoverable: p.clickable }),
|
|
17761
17784
|
onClick: (q) => p.clickable ? z.selectSubject(r) : null
|
|
17762
17785
|
}, [
|
|
17763
|
-
(
|
|
17786
|
+
(C0(!0), H0(N2, null, tM(e.columns, (q) => (C0(), H0(N2, {
|
|
17764
17787
|
key: q.id
|
|
17765
17788
|
}, [
|
|
17766
|
-
q.id === "checkBox" ? (
|
|
17789
|
+
q.id === "checkBox" ? (C0(), H0("td", {
|
|
17767
17790
|
key: 0,
|
|
17768
17791
|
class: "text-center",
|
|
17769
17792
|
onClick: Ee((W) => z.checkItem(r.id), ["stop"])
|
|
17770
17793
|
}, [
|
|
17771
|
-
Ha(
|
|
17794
|
+
Ha(j0("input", {
|
|
17772
17795
|
id: `checkbox-${d}`,
|
|
17773
17796
|
"onUpdate:modelValue": M[4] || (M[4] = (W) => e.selectedItems = W),
|
|
17774
17797
|
type: "checkbox",
|
|
@@ -17776,10 +17799,10 @@ function IW(b, M, p, o, e, z) {
|
|
|
17776
17799
|
value: r.id,
|
|
17777
17800
|
onClick: M[5] || (M[5] = Ee(() => {
|
|
17778
17801
|
}, ["stop"]))
|
|
17779
|
-
}, null, 8,
|
|
17802
|
+
}, null, 8, wW), [
|
|
17780
17803
|
[Ya, e.selectedItems]
|
|
17781
17804
|
])
|
|
17782
|
-
], 8,
|
|
17805
|
+
], 8, BW)) : q.show || e.headerEditMode ? (C0(), H0("td", {
|
|
17783
17806
|
key: 1,
|
|
17784
17807
|
class: _1([[
|
|
17785
17808
|
{
|
|
@@ -17794,65 +17817,65 @@ function IW(b, M, p, o, e, z) {
|
|
|
17794
17817
|
}, void 0, !0)
|
|
17795
17818
|
], 2)) : o2("", !0)
|
|
17796
17819
|
], 64))), 128))
|
|
17797
|
-
], 10,
|
|
17820
|
+
], 10, yW))), 128))
|
|
17798
17821
|
])
|
|
17799
17822
|
]))
|
|
17800
17823
|
])
|
|
17801
17824
|
]),
|
|
17802
|
-
|
|
17803
|
-
e.totalPages && e.totalPages > 1 ? (
|
|
17804
|
-
|
|
17805
|
-
|
|
17806
|
-
|
|
17825
|
+
j0("div", xW, [
|
|
17826
|
+
e.totalPages && e.totalPages > 1 ? (C0(), H0("div", XW, [
|
|
17827
|
+
j0("ul", SW, [
|
|
17828
|
+
j0("li", _W, [
|
|
17829
|
+
j0("a", {
|
|
17807
17830
|
class: _1(["page-link", { disabled: e.currentPage === 1 }]),
|
|
17808
17831
|
onClick: M[6] || (M[6] = (r) => e.currentPage = 1)
|
|
17809
17832
|
}, " « ", 2)
|
|
17810
17833
|
]),
|
|
17811
|
-
|
|
17812
|
-
|
|
17834
|
+
j0("li", TW, [
|
|
17835
|
+
j0("a", {
|
|
17813
17836
|
class: _1(["page-link", { disabled: e.currentPage === 1 }]),
|
|
17814
17837
|
onClick: M[7] || (M[7] = (r) => e.currentPage -= 1)
|
|
17815
17838
|
}, " < ", 2)
|
|
17816
17839
|
]),
|
|
17817
|
-
(
|
|
17840
|
+
(C0(!0), H0(N2, null, tM(z.currentDisplayPagination, (r) => (C0(), H0("li", {
|
|
17818
17841
|
key: r,
|
|
17819
17842
|
class: _1(["page-item hoverable", { active: e.currentPage === r }])
|
|
17820
17843
|
}, [
|
|
17821
|
-
|
|
17844
|
+
j0("a", {
|
|
17822
17845
|
class: "page-link",
|
|
17823
17846
|
onClick: (d) => e.currentPage = r
|
|
17824
|
-
}, C2(r), 9,
|
|
17847
|
+
}, C2(r), 9, kW)
|
|
17825
17848
|
], 2))), 128)),
|
|
17826
|
-
|
|
17827
|
-
|
|
17849
|
+
j0("li", PW, [
|
|
17850
|
+
j0("a", {
|
|
17828
17851
|
class: _1(["page-link", { disabled: e.currentPage === e.totalPages }]),
|
|
17829
17852
|
onClick: M[8] || (M[8] = (r) => e.currentPage += 1)
|
|
17830
17853
|
}, " > ", 2)
|
|
17831
17854
|
]),
|
|
17832
|
-
|
|
17833
|
-
|
|
17855
|
+
j0("li", CW, [
|
|
17856
|
+
j0("a", {
|
|
17834
17857
|
class: _1(["page-link", { disabled: e.currentPage === e.totalPages }]),
|
|
17835
17858
|
onClick: M[9] || (M[9] = (r) => e.currentPage = e.totalPages)
|
|
17836
17859
|
}, " » ", 2)
|
|
17837
17860
|
])
|
|
17838
17861
|
])
|
|
17839
17862
|
])) : o2("", !0),
|
|
17840
|
-
p.showModifyColumnsBtn ? (
|
|
17841
|
-
|
|
17842
|
-
e.headerEditMode ? (
|
|
17843
|
-
|
|
17863
|
+
p.showModifyColumnsBtn ? (C0(), H0("div", EW, [
|
|
17864
|
+
j0("div", DW, [
|
|
17865
|
+
e.headerEditMode ? (C0(), H0("div", IW, [
|
|
17866
|
+
j0("button", {
|
|
17844
17867
|
id: "btn-save-table",
|
|
17845
17868
|
class: "btn btn-sm btn-success d-flex justify-content-center align-items-center ms-auto me-2",
|
|
17846
17869
|
type: "button",
|
|
17847
17870
|
onClick: M[10] || (M[10] = (...r) => z.saveTablePreferences && z.saveTablePreferences(...r))
|
|
17848
17871
|
}, " Sauvegarder "),
|
|
17849
|
-
|
|
17872
|
+
j0("button", {
|
|
17850
17873
|
id: "btn-reset-table",
|
|
17851
17874
|
class: "btn btn-sm btn-outline-danger d-flex justify-content-center align-items-center",
|
|
17852
17875
|
type: "button",
|
|
17853
17876
|
onClick: M[11] || (M[11] = (...r) => z.resetTablePreferences && z.resetTablePreferences(...r))
|
|
17854
17877
|
}, " Réinitialiser le tableau ")
|
|
17855
|
-
])) : (
|
|
17878
|
+
])) : (C0(), H0("button", {
|
|
17856
17879
|
key: 1,
|
|
17857
17880
|
id: "btn-edit-table",
|
|
17858
17881
|
class: "btn btn-sm btn-outline-secondary d-flex justify-content-center align-items-center fs-7 p-1 rounded-3",
|
|
@@ -17864,9 +17887,9 @@ function IW(b, M, p, o, e, z) {
|
|
|
17864
17887
|
])
|
|
17865
17888
|
], 64);
|
|
17866
17889
|
}
|
|
17867
|
-
const
|
|
17890
|
+
const fh = /* @__PURE__ */ dM(lW, [["render", FW], ["__scopeId", "data-v-028b4348"]]);
|
|
17868
17891
|
Zp.add(l4, f4, t4, n4);
|
|
17869
|
-
const
|
|
17892
|
+
const jW = {
|
|
17870
17893
|
name: "AmsomPagination",
|
|
17871
17894
|
components: {
|
|
17872
17895
|
FontAwesomeIcon: $p
|
|
@@ -17917,16 +17940,16 @@ const FW = {
|
|
|
17917
17940
|
return b;
|
|
17918
17941
|
}
|
|
17919
17942
|
}
|
|
17920
|
-
},
|
|
17943
|
+
}, UW = {
|
|
17921
17944
|
key: 0,
|
|
17922
17945
|
class: "w-100 user-select-none"
|
|
17923
|
-
},
|
|
17924
|
-
function
|
|
17946
|
+
}, HW = { class: "pagination pagination mb-0" }, YW = { class: "page-item" }, GW = { class: "page-item" }, VW = ["onClick"], KW = { class: "page-item" }, JW = { class: "page-item" };
|
|
17947
|
+
function QW(b, M, p, o, e, z) {
|
|
17925
17948
|
const n = zb("font-awesome-icon");
|
|
17926
|
-
return p.totalPages && p.totalPages > 1 ? (
|
|
17927
|
-
|
|
17928
|
-
|
|
17929
|
-
|
|
17949
|
+
return p.totalPages && p.totalPages > 1 ? (C0(), H0("div", UW, [
|
|
17950
|
+
j0("ul", HW, [
|
|
17951
|
+
j0("li", YW, [
|
|
17952
|
+
j0("span", {
|
|
17930
17953
|
role: "button",
|
|
17931
17954
|
class: _1(["page-link", { disabled: p.modelValue === 1 }]),
|
|
17932
17955
|
onClick: M[0] || (M[0] = (...c) => z.goFirstPage && z.goFirstPage(...c))
|
|
@@ -17934,8 +17957,8 @@ function JW(b, M, p, o, e, z) {
|
|
|
17934
17957
|
tb(n, { icon: "fa-angles-left" })
|
|
17935
17958
|
], 2)
|
|
17936
17959
|
]),
|
|
17937
|
-
|
|
17938
|
-
|
|
17960
|
+
j0("li", GW, [
|
|
17961
|
+
j0("span", {
|
|
17939
17962
|
role: "button",
|
|
17940
17963
|
class: _1(["page-link", { disabled: p.modelValue === 1 }]),
|
|
17941
17964
|
onClick: M[1] || (M[1] = (...c) => z.goPreviousPage && z.goPreviousPage(...c))
|
|
@@ -17943,18 +17966,18 @@ function JW(b, M, p, o, e, z) {
|
|
|
17943
17966
|
tb(n, { icon: "fa-angle-left" })
|
|
17944
17967
|
], 2)
|
|
17945
17968
|
]),
|
|
17946
|
-
(
|
|
17969
|
+
(C0(!0), H0(N2, null, tM(z.toDisplayPagination, (c) => (C0(), H0("li", {
|
|
17947
17970
|
key: c,
|
|
17948
17971
|
class: _1(["page-item", { active: p.modelValue === c }])
|
|
17949
17972
|
}, [
|
|
17950
|
-
|
|
17973
|
+
j0("span", {
|
|
17951
17974
|
role: "button",
|
|
17952
17975
|
class: "page-link",
|
|
17953
17976
|
onClick: (i) => z.goToPage(c)
|
|
17954
|
-
}, C2(c), 9,
|
|
17977
|
+
}, C2(c), 9, VW)
|
|
17955
17978
|
], 2))), 128)),
|
|
17956
|
-
|
|
17957
|
-
|
|
17979
|
+
j0("li", KW, [
|
|
17980
|
+
j0("span", {
|
|
17958
17981
|
role: "button",
|
|
17959
17982
|
class: _1(["page-link", { disabled: p.modelValue === p.totalPages }]),
|
|
17960
17983
|
onClick: M[2] || (M[2] = (...c) => z.goNextPage && z.goNextPage(...c))
|
|
@@ -17962,8 +17985,8 @@ function JW(b, M, p, o, e, z) {
|
|
|
17962
17985
|
tb(n, { icon: "fa-angle-right" })
|
|
17963
17986
|
], 2)
|
|
17964
17987
|
]),
|
|
17965
|
-
|
|
17966
|
-
|
|
17988
|
+
j0("li", JW, [
|
|
17989
|
+
j0("span", {
|
|
17967
17990
|
role: "button",
|
|
17968
17991
|
class: _1(["page-link", { disabled: p.modelValue === p.totalPages }]),
|
|
17969
17992
|
onClick: M[3] || (M[3] = (...c) => z.goLastPage && z.goLastPage(...c))
|
|
@@ -17974,7 +17997,7 @@ function JW(b, M, p, o, e, z) {
|
|
|
17974
17997
|
])
|
|
17975
17998
|
])) : o2("", !0);
|
|
17976
17999
|
}
|
|
17977
|
-
const
|
|
18000
|
+
const uh = /* @__PURE__ */ dM(jW, [["render", QW]]), ZW = {
|
|
17978
18001
|
name: "AmsomSkeleton",
|
|
17979
18002
|
props: {
|
|
17980
18003
|
/**
|
|
@@ -17996,26 +18019,26 @@ const fh = /* @__PURE__ */ dM(FW, [["render", JW]]), QW = {
|
|
|
17996
18019
|
}
|
|
17997
18020
|
}
|
|
17998
18021
|
};
|
|
17999
|
-
function
|
|
18000
|
-
return
|
|
18022
|
+
function $W(b, M, p, o, e, z) {
|
|
18023
|
+
return C0(), H0("div", {
|
|
18001
18024
|
class: _1(["container row placeholder-wave", p.rowClass])
|
|
18002
18025
|
}, [
|
|
18003
|
-
(
|
|
18026
|
+
(C0(!0), H0(N2, null, tM(p.config, (n, c) => (C0(), H0("div", {
|
|
18004
18027
|
key: c,
|
|
18005
18028
|
class: _1(["placeholder mt-1", [p.loaderClass, "col-" + n]])
|
|
18006
18029
|
}, null, 2))), 128))
|
|
18007
18030
|
], 2);
|
|
18008
18031
|
}
|
|
18009
|
-
const
|
|
18032
|
+
const bh = /* @__PURE__ */ dM(ZW, [["render", $W]]), Mh = function(b, M = "DD/MM/YYYY") {
|
|
18010
18033
|
return ub.unix(b).isValid() ? ub.unix(b).format(M) : b;
|
|
18011
18034
|
};
|
|
18012
18035
|
Zp.add(a4, DO);
|
|
18013
|
-
const
|
|
18036
|
+
const ph = {
|
|
18014
18037
|
name: "AmsomDocumentList",
|
|
18015
18038
|
components: {
|
|
18016
|
-
AmsomSkeleton:
|
|
18017
|
-
AmsomOverlay:
|
|
18018
|
-
AmsomCard:
|
|
18039
|
+
AmsomSkeleton: bh,
|
|
18040
|
+
AmsomOverlay: I4,
|
|
18041
|
+
AmsomCard: _4,
|
|
18019
18042
|
FontAwesomeIcon: $p
|
|
18020
18043
|
},
|
|
18021
18044
|
props: {
|
|
@@ -18052,67 +18075,67 @@ const Mh = {
|
|
|
18052
18075
|
};
|
|
18053
18076
|
},
|
|
18054
18077
|
methods: {
|
|
18055
|
-
unixToDateString:
|
|
18078
|
+
unixToDateString: Mh,
|
|
18056
18079
|
handleClick(b, M) {
|
|
18057
18080
|
this.clickAction === "download" ? this.downloadFile(b, M) : this.viewFile(b);
|
|
18058
18081
|
},
|
|
18059
18082
|
async downloadFile(b, M) {
|
|
18060
18083
|
this.processing = !0;
|
|
18061
18084
|
let p = this.anonym ? "Document " + (M + 1) : (b == null ? void 0 : b.titre) ?? "Document", o = await this.getDocumentBlob(b);
|
|
18062
|
-
|
|
18085
|
+
pl(o, p), this.processing = !1;
|
|
18063
18086
|
},
|
|
18064
18087
|
async viewFile(b) {
|
|
18065
18088
|
this.processing = !0;
|
|
18066
18089
|
let M = await this.getDocumentBlob(b);
|
|
18067
|
-
|
|
18090
|
+
ol(M), this.processing = !1;
|
|
18068
18091
|
}
|
|
18069
18092
|
}
|
|
18070
|
-
},
|
|
18071
|
-
|
|
18072
|
-
],
|
|
18093
|
+
}, oh = { key: 0 }, eh = /* @__PURE__ */ j0("p", null, "Aucun document", -1), zh = [
|
|
18094
|
+
eh
|
|
18095
|
+
], th = { class: "d-flex justify-content-between text-primary" }, nh = { class: "mb-0" }, ch = { class: "mb-0" }, ah = ["onClick"], ih = {
|
|
18073
18096
|
role: "button",
|
|
18074
18097
|
class: "d-flex justify-content-between align-items-center p-2 px-3 text-secondary"
|
|
18075
|
-
},
|
|
18076
|
-
function
|
|
18098
|
+
}, Oh = { key: 0 }, rh = { key: 1 };
|
|
18099
|
+
function sh(b, M, p, o, e, z) {
|
|
18077
18100
|
const n = zb("amsom-skeleton"), c = zb("font-awesome-icon"), i = zb("amsom-card"), r = zb("amsom-overlay");
|
|
18078
|
-
return
|
|
18101
|
+
return C0(), PM(r, { loading: e.processing }, {
|
|
18079
18102
|
default: Xt(() => [
|
|
18080
18103
|
tb(i, null, {
|
|
18081
18104
|
default: Xt(() => {
|
|
18082
18105
|
var d;
|
|
18083
18106
|
return [
|
|
18084
|
-
|
|
18085
|
-
p.loading ? (
|
|
18107
|
+
j0("h5", null, C2(p.title), 1),
|
|
18108
|
+
p.loading ? (C0(), H0(N2, { key: 0 }, [
|
|
18086
18109
|
tb(n, {
|
|
18087
18110
|
config: [3, 3],
|
|
18088
18111
|
"row-class": "justify-content-between"
|
|
18089
18112
|
}),
|
|
18090
18113
|
tb(n, { config: [12] })
|
|
18091
|
-
], 64)) : (
|
|
18092
|
-
(d = p.documentList) != null && d.length ? (
|
|
18114
|
+
], 64)) : (C0(), H0(N2, { key: 1 }, [
|
|
18115
|
+
(d = p.documentList) != null && d.length ? (C0(!0), H0(N2, { key: 1 }, tM(p.documentList, (q, W) => (C0(), H0("div", {
|
|
18093
18116
|
key: W,
|
|
18094
18117
|
class: "document-item pt-2"
|
|
18095
18118
|
}, [
|
|
18096
|
-
|
|
18097
|
-
|
|
18098
|
-
|
|
18119
|
+
j0("div", th, [
|
|
18120
|
+
j0("p", nh, C2(q.categorie), 1),
|
|
18121
|
+
j0("p", ch, C2(z.unixToDateString(q.dateFichier)), 1)
|
|
18099
18122
|
]),
|
|
18100
|
-
|
|
18123
|
+
j0("div", {
|
|
18101
18124
|
class: "bg-primary bg-opacity-25 mt-0 rounded-3",
|
|
18102
18125
|
onClick: (A) => z.handleClick(q, W)
|
|
18103
18126
|
}, [
|
|
18104
|
-
|
|
18105
|
-
p.anonym ? (
|
|
18106
|
-
p.clickAction === "download" ? (
|
|
18127
|
+
j0("div", ih, [
|
|
18128
|
+
p.anonym ? (C0(), H0("strong", rh, "Document " + C2(W + 1), 1)) : (C0(), H0("strong", Oh, C2(q.titre), 1)),
|
|
18129
|
+
p.clickAction === "download" ? (C0(), PM(c, {
|
|
18107
18130
|
key: 2,
|
|
18108
18131
|
icon: "fa-solid fa-cloud-arrow-down"
|
|
18109
|
-
})) : p.clickAction === "view" ? (
|
|
18132
|
+
})) : p.clickAction === "view" ? (C0(), PM(c, {
|
|
18110
18133
|
key: 3,
|
|
18111
18134
|
icon: "fa-solid fa-eye"
|
|
18112
18135
|
})) : o2("", !0)
|
|
18113
18136
|
])
|
|
18114
|
-
], 8,
|
|
18115
|
-
]))), 128)) : (
|
|
18137
|
+
], 8, ah)
|
|
18138
|
+
]))), 128)) : (C0(), H0("div", oh, zh))
|
|
18116
18139
|
], 64))
|
|
18117
18140
|
];
|
|
18118
18141
|
}),
|
|
@@ -18122,19 +18145,19 @@ function rh(b, M, p, o, e, z) {
|
|
|
18122
18145
|
_: 1
|
|
18123
18146
|
}, 8, ["loading"]);
|
|
18124
18147
|
}
|
|
18125
|
-
const
|
|
18148
|
+
const Wh = /* @__PURE__ */ dM(ph, [["render", sh]]);
|
|
18126
18149
|
export {
|
|
18127
|
-
|
|
18150
|
+
y4 as A,
|
|
18128
18151
|
x1 as _,
|
|
18129
|
-
|
|
18130
|
-
|
|
18131
|
-
|
|
18132
|
-
|
|
18133
|
-
|
|
18134
|
-
|
|
18152
|
+
_4 as a,
|
|
18153
|
+
I4 as b,
|
|
18154
|
+
Hd as c,
|
|
18155
|
+
dh as d,
|
|
18156
|
+
lh as e,
|
|
18157
|
+
qh as f,
|
|
18135
18158
|
zr as g,
|
|
18136
|
-
|
|
18137
|
-
|
|
18138
|
-
|
|
18139
|
-
|
|
18159
|
+
fh as h,
|
|
18160
|
+
uh as i,
|
|
18161
|
+
bh as j,
|
|
18162
|
+
Wh as k
|
|
18140
18163
|
};
|